The programmatic-execution paywall is active only when billing is enforced AND the gate flag is on.
()
| 5 | |
| 6 | /** The programmatic-execution paywall is active only when billing is enforced AND the gate flag is on. */ |
| 7 | function isApiExecutionGateActive(): boolean { |
| 8 | return isBillingEnabled && isFreeApiDeploymentGateEnabled |
| 9 | } |
| 10 | |
| 11 | /** |
| 12 | * Message for the 402 returned when a free-plan account attempts programmatic |
no outgoing calls
no test coverage detected