The Forge
Auth
Encrypted credentials
type
'encryptedCredentials'
requiredThe authentication type.
name
string
requiredThe name of the credentials. I.e. Twitter account
, OpenAI account
, Stripe keys
, etc.
schema
z.ZodObject<any>
requiredThe schema of the data that needs to be stored. See Options for more information.
Example:
option.object({
apiKey: option.string.layout({
isRequired: true,
label: 'API key',
withVariableButton: false,
}),
})