UNPKG

@appsemble/utils

Version:

Utility functions used in Appsemble internally

25 lines 775 B
export const AppWebhookSecret = { type: 'object', description: 'App webhook secret settings', additionalProperties: false, properties: { id: { type: 'number', description: 'An autogenerated ID.', readOnly: true, }, name: { type: 'string', description: 'An optional name to give extra clarity what the secret is used for.', }, webhookName: { type: 'string', description: 'The name of the webhook the secret is tied to', }, secret: { type: 'string', description: 'The autogenerated secret to authenticate the webhook caller with.', }, }, }; //# sourceMappingURL=AppWebhookSecret.js.map