@goauthentik/api 2022.5.3-1653766088 → 2022.5.3-1653936924
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/apis/EventsApi.d.ts +1 -0
- package/dist/apis/EventsApi.js +1 -0
- package/dist/esm/apis/EventsApi.d.ts +1 -0
- package/dist/esm/apis/EventsApi.js +1 -0
- package/dist/esm/models/NotificationTransportModeEnum.d.ts +1 -0
- package/dist/esm/models/NotificationTransportModeEnum.js +1 -0
- package/dist/models/NotificationTransportModeEnum.d.ts +1 -0
- package/dist/models/NotificationTransportModeEnum.js +1 -0
- package/package.json +1 -1
- package/src/apis/EventsApi.ts +1 -0
- package/src/models/NotificationTransportModeEnum.ts +1 -0
package/dist/apis/EventsApi.d.ts
CHANGED
|
@@ -417,6 +417,7 @@ export declare type EventsRulesListSeverityEnum = typeof EventsRulesListSeverity
|
|
|
417
417
|
*/
|
|
418
418
|
export declare const EventsTransportsListModeEnum: {
|
|
419
419
|
readonly Email: "email";
|
|
420
|
+
readonly Local: "local";
|
|
420
421
|
readonly Webhook: "webhook";
|
|
421
422
|
readonly WebhookSlack: "webhook_slack";
|
|
422
423
|
};
|
package/dist/apis/EventsApi.js
CHANGED
|
@@ -417,6 +417,7 @@ export declare type EventsRulesListSeverityEnum = typeof EventsRulesListSeverity
|
|
|
417
417
|
*/
|
|
418
418
|
export declare const EventsTransportsListModeEnum: {
|
|
419
419
|
readonly Email: "email";
|
|
420
|
+
readonly Local: "local";
|
|
420
421
|
readonly Webhook: "webhook";
|
|
421
422
|
readonly WebhookSlack: "webhook_slack";
|
|
422
423
|
};
|
package/package.json
CHANGED
package/src/apis/EventsApi.ts
CHANGED
|
@@ -1495,6 +1495,7 @@ export type EventsRulesListSeverityEnum = typeof EventsRulesListSeverityEnum[key
|
|
|
1495
1495
|
*/
|
|
1496
1496
|
export const EventsTransportsListModeEnum = {
|
|
1497
1497
|
Email: 'email',
|
|
1498
|
+
Local: 'local',
|
|
1498
1499
|
Webhook: 'webhook',
|
|
1499
1500
|
WebhookSlack: 'webhook_slack'
|
|
1500
1501
|
} as const;
|