@appsemble/utils
Version:
Utility functions used in Appsemble internally
36 lines • 1.4 kB
JavaScript
export const pathItems = {
get: {
tags: ['main', 'app', 'quota', 'email'],
operationId: 'getAppEmailQuota',
parameters: [{ $ref: '#/components/parameters/appId' }],
security: [{ studio: [] }, {}],
responses: {
200: {
description: 'Email quota for an app',
content: {
'application/json': {
schema: {
type: 'object',
properties: {
used: {
type: 'number',
description: 'Number of emails sent today',
},
limit: {
type: 'number',
description: 'Maximum number of emails that can be sent today',
},
reset: {
type: 'string',
format: 'date-time',
description: 'Date and time when the quota resets',
},
},
},
},
},
},
},
},
};
//# sourceMappingURL=emails.js.map