@goauthentik/api 2022.9.0-1664575649 → 2022.9.0-1665393071
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.
|
@@ -25,6 +25,7 @@ export declare const ProviderTypeEnum: {
|
|
|
25
25
|
readonly Reddit: "reddit";
|
|
26
26
|
readonly Twitter: "twitter";
|
|
27
27
|
readonly Mailcow: "mailcow";
|
|
28
|
+
readonly Twitch: "twitch";
|
|
28
29
|
};
|
|
29
30
|
export declare type ProviderTypeEnum = typeof ProviderTypeEnum[keyof typeof ProviderTypeEnum];
|
|
30
31
|
export declare function ProviderTypeEnumFromJSON(json: any): ProviderTypeEnum;
|
|
@@ -26,7 +26,8 @@ export const ProviderTypeEnum = {
|
|
|
26
26
|
Okta: 'okta',
|
|
27
27
|
Reddit: 'reddit',
|
|
28
28
|
Twitter: 'twitter',
|
|
29
|
-
Mailcow: 'mailcow'
|
|
29
|
+
Mailcow: 'mailcow',
|
|
30
|
+
Twitch: 'twitch'
|
|
30
31
|
};
|
|
31
32
|
export function ProviderTypeEnumFromJSON(json) {
|
|
32
33
|
return ProviderTypeEnumFromJSONTyped(json, false);
|
|
@@ -25,6 +25,7 @@ export declare const ProviderTypeEnum: {
|
|
|
25
25
|
readonly Reddit: "reddit";
|
|
26
26
|
readonly Twitter: "twitter";
|
|
27
27
|
readonly Mailcow: "mailcow";
|
|
28
|
+
readonly Twitch: "twitch";
|
|
28
29
|
};
|
|
29
30
|
export declare type ProviderTypeEnum = typeof ProviderTypeEnum[keyof typeof ProviderTypeEnum];
|
|
30
31
|
export declare function ProviderTypeEnumFromJSON(json: any): ProviderTypeEnum;
|
|
@@ -29,7 +29,8 @@ exports.ProviderTypeEnum = {
|
|
|
29
29
|
Okta: 'okta',
|
|
30
30
|
Reddit: 'reddit',
|
|
31
31
|
Twitter: 'twitter',
|
|
32
|
-
Mailcow: 'mailcow'
|
|
32
|
+
Mailcow: 'mailcow',
|
|
33
|
+
Twitch: 'twitch'
|
|
33
34
|
};
|
|
34
35
|
function ProviderTypeEnumFromJSON(json) {
|
|
35
36
|
return ProviderTypeEnumFromJSONTyped(json, false);
|
package/package.json
CHANGED
|
@@ -28,7 +28,8 @@ export const ProviderTypeEnum = {
|
|
|
28
28
|
Okta: 'okta',
|
|
29
29
|
Reddit: 'reddit',
|
|
30
30
|
Twitter: 'twitter',
|
|
31
|
-
Mailcow: 'mailcow'
|
|
31
|
+
Mailcow: 'mailcow',
|
|
32
|
+
Twitch: 'twitch'
|
|
32
33
|
} as const;
|
|
33
34
|
export type ProviderTypeEnum = typeof ProviderTypeEnum[keyof typeof ProviderTypeEnum];
|
|
34
35
|
|