You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Argument of type '{ config: string; project: string; secrets: { TEST_SECRET: string; }; }' is not assignable to parameter of type 'UpdateRequest'.
Types of property 'secrets' are incompatible.
Property 'STRIPE' is missing in type '{ TEST_SECRET: string; }' but required in type 'Secrets'.
Please make the STRIPE property optional.
The text was updated successfully, but these errors were encountered:
The STRIPE property is required as part of the
Secrets
interface. It is not possible to callsecrets.update()
without including this property.Example code:
Resulting error:
Please make the STRIPE property optional.
The text was updated successfully, but these errors were encountered: