@goauthentik/api 2023.6.1-1689715510 → 2023.6.1-1690193532
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/CoreApi.d.ts +2 -2
- package/dist/apis/CoreApi.js +1 -1
- package/dist/esm/apis/CoreApi.d.ts +2 -2
- package/dist/esm/apis/CoreApi.js +1 -1
- package/dist/esm/models/UserTypeEnum.d.ts +2 -2
- package/dist/esm/models/UserTypeEnum.js +2 -2
- package/dist/models/UserTypeEnum.d.ts +2 -2
- package/dist/models/UserTypeEnum.js +2 -2
- package/package.json +1 -1
- package/src/apis/CoreApi.ts +2 -2
- package/src/models/UserTypeEnum.ts +2 -2
package/dist/apis/CoreApi.d.ts
CHANGED
|
@@ -127,7 +127,7 @@ export interface CoreTenantsListRequest {
|
|
|
127
127
|
brandingFavicon?: string;
|
|
128
128
|
brandingLogo?: string;
|
|
129
129
|
brandingTitle?: string;
|
|
130
|
-
_default?:
|
|
130
|
+
_default?: boolean;
|
|
131
131
|
domain?: string;
|
|
132
132
|
eventRetention?: string;
|
|
133
133
|
flowAuthentication?: string;
|
|
@@ -783,8 +783,8 @@ export type CoreTokensListIntentEnum = typeof CoreTokensListIntentEnum[keyof typ
|
|
|
783
783
|
* @export
|
|
784
784
|
*/
|
|
785
785
|
export declare const CoreUsersListTypeEnum: {
|
|
786
|
-
readonly Default: "default";
|
|
787
786
|
readonly External: "external";
|
|
787
|
+
readonly Internal: "internal";
|
|
788
788
|
readonly InternalServiceAccount: "internal_service_account";
|
|
789
789
|
readonly ServiceAccount: "service_account";
|
|
790
790
|
readonly UnknownDefaultOpenApi: "11184809";
|
package/dist/apis/CoreApi.js
CHANGED
|
@@ -2227,8 +2227,8 @@ exports.CoreTokensListIntentEnum = {
|
|
|
2227
2227
|
* @export
|
|
2228
2228
|
*/
|
|
2229
2229
|
exports.CoreUsersListTypeEnum = {
|
|
2230
|
-
Default: 'default',
|
|
2231
2230
|
External: 'external',
|
|
2231
|
+
Internal: 'internal',
|
|
2232
2232
|
InternalServiceAccount: 'internal_service_account',
|
|
2233
2233
|
ServiceAccount: 'service_account',
|
|
2234
2234
|
UnknownDefaultOpenApi: '11184809'
|
|
@@ -127,7 +127,7 @@ export interface CoreTenantsListRequest {
|
|
|
127
127
|
brandingFavicon?: string;
|
|
128
128
|
brandingLogo?: string;
|
|
129
129
|
brandingTitle?: string;
|
|
130
|
-
_default?:
|
|
130
|
+
_default?: boolean;
|
|
131
131
|
domain?: string;
|
|
132
132
|
eventRetention?: string;
|
|
133
133
|
flowAuthentication?: string;
|
|
@@ -783,8 +783,8 @@ export type CoreTokensListIntentEnum = typeof CoreTokensListIntentEnum[keyof typ
|
|
|
783
783
|
* @export
|
|
784
784
|
*/
|
|
785
785
|
export declare const CoreUsersListTypeEnum: {
|
|
786
|
-
readonly Default: "default";
|
|
787
786
|
readonly External: "external";
|
|
787
|
+
readonly Internal: "internal";
|
|
788
788
|
readonly InternalServiceAccount: "internal_service_account";
|
|
789
789
|
readonly ServiceAccount: "service_account";
|
|
790
790
|
readonly UnknownDefaultOpenApi: "11184809";
|
package/dist/esm/apis/CoreApi.js
CHANGED
|
@@ -2223,8 +2223,8 @@ export const CoreTokensListIntentEnum = {
|
|
|
2223
2223
|
* @export
|
|
2224
2224
|
*/
|
|
2225
2225
|
export const CoreUsersListTypeEnum = {
|
|
2226
|
-
Default: 'default',
|
|
2227
2226
|
External: 'external',
|
|
2227
|
+
Internal: 'internal',
|
|
2228
2228
|
InternalServiceAccount: 'internal_service_account',
|
|
2229
2229
|
ServiceAccount: 'service_account',
|
|
2230
2230
|
UnknownDefaultOpenApi: '11184809'
|
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
|
-
* * `
|
|
13
|
+
* * `internal` - Internal
|
|
14
14
|
* * `external` - External
|
|
15
15
|
* * `service_account` - Service Account
|
|
16
16
|
* * `internal_service_account` - Internal Service Account
|
|
17
17
|
* @export
|
|
18
18
|
*/
|
|
19
19
|
export declare const UserTypeEnum: {
|
|
20
|
-
readonly
|
|
20
|
+
readonly Internal: "internal";
|
|
21
21
|
readonly External: "external";
|
|
22
22
|
readonly ServiceAccount: "service_account";
|
|
23
23
|
readonly InternalServiceAccount: "internal_service_account";
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
14
|
/**
|
|
15
|
-
* * `
|
|
15
|
+
* * `internal` - Internal
|
|
16
16
|
* * `external` - External
|
|
17
17
|
* * `service_account` - Service Account
|
|
18
18
|
* * `internal_service_account` - Internal Service Account
|
|
19
19
|
* @export
|
|
20
20
|
*/
|
|
21
21
|
export const UserTypeEnum = {
|
|
22
|
-
|
|
22
|
+
Internal: 'internal',
|
|
23
23
|
External: 'external',
|
|
24
24
|
ServiceAccount: 'service_account',
|
|
25
25
|
InternalServiceAccount: 'internal_service_account',
|
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
|
-
* * `
|
|
13
|
+
* * `internal` - Internal
|
|
14
14
|
* * `external` - External
|
|
15
15
|
* * `service_account` - Service Account
|
|
16
16
|
* * `internal_service_account` - Internal Service Account
|
|
17
17
|
* @export
|
|
18
18
|
*/
|
|
19
19
|
export declare const UserTypeEnum: {
|
|
20
|
-
readonly
|
|
20
|
+
readonly Internal: "internal";
|
|
21
21
|
readonly External: "external";
|
|
22
22
|
readonly ServiceAccount: "service_account";
|
|
23
23
|
readonly InternalServiceAccount: "internal_service_account";
|
|
@@ -15,14 +15,14 @@
|
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.UserTypeEnumToJSON = exports.UserTypeEnumFromJSONTyped = exports.UserTypeEnumFromJSON = exports.UserTypeEnum = void 0;
|
|
17
17
|
/**
|
|
18
|
-
* * `
|
|
18
|
+
* * `internal` - Internal
|
|
19
19
|
* * `external` - External
|
|
20
20
|
* * `service_account` - Service Account
|
|
21
21
|
* * `internal_service_account` - Internal Service Account
|
|
22
22
|
* @export
|
|
23
23
|
*/
|
|
24
24
|
exports.UserTypeEnum = {
|
|
25
|
-
|
|
25
|
+
Internal: 'internal',
|
|
26
26
|
External: 'external',
|
|
27
27
|
ServiceAccount: 'service_account',
|
|
28
28
|
InternalServiceAccount: 'internal_service_account',
|
package/package.json
CHANGED
package/src/apis/CoreApi.ts
CHANGED
|
@@ -284,7 +284,7 @@ export interface CoreTenantsListRequest {
|
|
|
284
284
|
brandingFavicon?: string;
|
|
285
285
|
brandingLogo?: string;
|
|
286
286
|
brandingTitle?: string;
|
|
287
|
-
_default?:
|
|
287
|
+
_default?: boolean;
|
|
288
288
|
domain?: string;
|
|
289
289
|
eventRetention?: string;
|
|
290
290
|
flowAuthentication?: string;
|
|
@@ -2956,8 +2956,8 @@ export type CoreTokensListIntentEnum = typeof CoreTokensListIntentEnum[keyof typ
|
|
|
2956
2956
|
* @export
|
|
2957
2957
|
*/
|
|
2958
2958
|
export const CoreUsersListTypeEnum = {
|
|
2959
|
-
Default: 'default',
|
|
2960
2959
|
External: 'external',
|
|
2960
|
+
Internal: 'internal',
|
|
2961
2961
|
InternalServiceAccount: 'internal_service_account',
|
|
2962
2962
|
ServiceAccount: 'service_account',
|
|
2963
2963
|
UnknownDefaultOpenApi: '11184809'
|
|
@@ -14,14 +14,14 @@
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
/**
|
|
17
|
-
* * `
|
|
17
|
+
* * `internal` - Internal
|
|
18
18
|
* * `external` - External
|
|
19
19
|
* * `service_account` - Service Account
|
|
20
20
|
* * `internal_service_account` - Internal Service Account
|
|
21
21
|
* @export
|
|
22
22
|
*/
|
|
23
23
|
export const UserTypeEnum = {
|
|
24
|
-
|
|
24
|
+
Internal: 'internal',
|
|
25
25
|
External: 'external',
|
|
26
26
|
ServiceAccount: 'service_account',
|
|
27
27
|
InternalServiceAccount: 'internal_service_account',
|