@faable/auth-sdk 2.4.12 → 2.4.14
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/FaableAuthApi.d.ts +1 -0
- package/dist/api/generated-client.d.ts +7 -0
- package/dist/api/types.d.ts +16 -0
- package/package.json +1 -1
- package/spec/openapi.json +81 -3
package/dist/FaableAuthApi.d.ts
CHANGED
|
@@ -38,6 +38,7 @@ export declare class FaableAuthApi extends GeneratedFaableAuthApi {
|
|
|
38
38
|
token_signing_alg: "RS256";
|
|
39
39
|
default_connection?: unknown;
|
|
40
40
|
enabled_locales: string[];
|
|
41
|
+
tags?: string[] | undefined;
|
|
41
42
|
team?: string | null | undefined;
|
|
42
43
|
notification_settings: {
|
|
43
44
|
welcome_email_enabled: boolean;
|
|
@@ -35,6 +35,7 @@ export declare abstract class GeneratedFaableAuthApi extends FaableApi {
|
|
|
35
35
|
token_signing_alg: "RS256";
|
|
36
36
|
default_connection?: unknown;
|
|
37
37
|
enabled_locales: string[];
|
|
38
|
+
tags?: string[] | undefined;
|
|
38
39
|
team?: string | null | undefined;
|
|
39
40
|
notification_settings: {
|
|
40
41
|
welcome_email_enabled: boolean;
|
|
@@ -62,6 +63,7 @@ export declare abstract class GeneratedFaableAuthApi extends FaableApi {
|
|
|
62
63
|
token_signing_alg: "RS256";
|
|
63
64
|
default_connection?: unknown;
|
|
64
65
|
enabled_locales: string[];
|
|
66
|
+
tags?: string[] | undefined;
|
|
65
67
|
team?: string | null | undefined;
|
|
66
68
|
notification_settings: {
|
|
67
69
|
welcome_email_enabled: boolean;
|
|
@@ -95,6 +97,7 @@ export declare abstract class GeneratedFaableAuthApi extends FaableApi {
|
|
|
95
97
|
token_signing_alg: "RS256";
|
|
96
98
|
default_connection?: unknown;
|
|
97
99
|
enabled_locales: string[];
|
|
100
|
+
tags?: string[] | undefined;
|
|
98
101
|
team?: string | null | undefined;
|
|
99
102
|
notification_settings: {
|
|
100
103
|
welcome_email_enabled: boolean;
|
|
@@ -133,6 +136,7 @@ export declare abstract class GeneratedFaableAuthApi extends FaableApi {
|
|
|
133
136
|
token_signing_alg: "RS256";
|
|
134
137
|
default_connection?: unknown;
|
|
135
138
|
enabled_locales: string[];
|
|
139
|
+
tags?: string[] | undefined;
|
|
136
140
|
team?: string | null | undefined;
|
|
137
141
|
notification_settings: {
|
|
138
142
|
welcome_email_enabled: boolean;
|
|
@@ -155,6 +159,7 @@ export declare abstract class GeneratedFaableAuthApi extends FaableApi {
|
|
|
155
159
|
token_signing_alg: "RS256";
|
|
156
160
|
default_connection?: unknown;
|
|
157
161
|
enabled_locales: string[];
|
|
162
|
+
tags?: string[] | undefined;
|
|
158
163
|
team?: string | null | undefined;
|
|
159
164
|
notification_settings: {
|
|
160
165
|
welcome_email_enabled: boolean;
|
|
@@ -180,6 +185,7 @@ export declare abstract class GeneratedFaableAuthApi extends FaableApi {
|
|
|
180
185
|
token_signing_alg: "RS256";
|
|
181
186
|
default_connection?: unknown;
|
|
182
187
|
enabled_locales: string[];
|
|
188
|
+
tags?: string[] | undefined;
|
|
183
189
|
team?: string | null | undefined;
|
|
184
190
|
notification_settings: {
|
|
185
191
|
welcome_email_enabled: boolean;
|
|
@@ -220,6 +226,7 @@ export declare abstract class GeneratedFaableAuthApi extends FaableApi {
|
|
|
220
226
|
token_signing_alg: "RS256";
|
|
221
227
|
default_connection?: unknown;
|
|
222
228
|
enabled_locales: string[];
|
|
229
|
+
tags?: string[] | undefined;
|
|
223
230
|
team?: string | null | undefined;
|
|
224
231
|
notification_settings: {
|
|
225
232
|
welcome_email_enabled: boolean;
|
package/dist/api/types.d.ts
CHANGED
|
@@ -1644,6 +1644,8 @@ export interface components {
|
|
|
1644
1644
|
token_signing_alg: "RS256";
|
|
1645
1645
|
default_connection?: components["schemas"]["Connection"] | string | unknown;
|
|
1646
1646
|
enabled_locales: string[];
|
|
1647
|
+
/** @description Free-form labels on the account. The dashboard stores the environment as an `env:<name>` tag (e.g. `env:production`, `env:staging`, `env:test`). */
|
|
1648
|
+
tags?: string[];
|
|
1647
1649
|
team?: string | null;
|
|
1648
1650
|
notification_settings: {
|
|
1649
1651
|
/**
|
|
@@ -3102,6 +3104,7 @@ export interface components {
|
|
|
3102
3104
|
icon_src?: string;
|
|
3103
3105
|
callback_hostnames?: string[];
|
|
3104
3106
|
default_connection?: string;
|
|
3107
|
+
tags?: string[];
|
|
3105
3108
|
/** @description Add Metadata */
|
|
3106
3109
|
metadata?: {
|
|
3107
3110
|
[key: string]: unknown;
|
|
@@ -3118,6 +3121,7 @@ export interface components {
|
|
|
3118
3121
|
callback_hostnames?: string[];
|
|
3119
3122
|
default_connection?: string | null;
|
|
3120
3123
|
enabled_locales?: string[];
|
|
3124
|
+
tags?: string[];
|
|
3121
3125
|
notification_settings?: {
|
|
3122
3126
|
/**
|
|
3123
3127
|
* @description Send the built-in welcome email on user.created
|
|
@@ -3232,6 +3236,8 @@ export interface operations {
|
|
|
3232
3236
|
token_signing_alg: "RS256";
|
|
3233
3237
|
default_connection?: components["schemas"]["Connection"] | string | unknown;
|
|
3234
3238
|
enabled_locales: string[];
|
|
3239
|
+
/** @description Free-form labels on the account. The dashboard stores the environment as an `env:<name>` tag (e.g. `env:production`, `env:staging`, `env:test`). */
|
|
3240
|
+
tags?: string[];
|
|
3235
3241
|
team?: string | null;
|
|
3236
3242
|
notification_settings: {
|
|
3237
3243
|
/**
|
|
@@ -3314,6 +3320,7 @@ export interface operations {
|
|
|
3314
3320
|
icon_src?: string;
|
|
3315
3321
|
callback_hostnames?: string[];
|
|
3316
3322
|
default_connection?: string;
|
|
3323
|
+
tags?: string[];
|
|
3317
3324
|
/** @description Add Metadata */
|
|
3318
3325
|
metadata?: {
|
|
3319
3326
|
[key: string]: unknown;
|
|
@@ -3343,6 +3350,8 @@ export interface operations {
|
|
|
3343
3350
|
token_signing_alg: "RS256";
|
|
3344
3351
|
default_connection?: components["schemas"]["Connection"] | string | unknown;
|
|
3345
3352
|
enabled_locales: string[];
|
|
3353
|
+
/** @description Free-form labels on the account. The dashboard stores the environment as an `env:<name>` tag (e.g. `env:production`, `env:staging`, `env:test`). */
|
|
3354
|
+
tags?: string[];
|
|
3346
3355
|
team?: string | null;
|
|
3347
3356
|
notification_settings: {
|
|
3348
3357
|
/**
|
|
@@ -3409,6 +3418,8 @@ export interface operations {
|
|
|
3409
3418
|
token_signing_alg: "RS256";
|
|
3410
3419
|
default_connection?: components["schemas"]["Connection"] | string | unknown;
|
|
3411
3420
|
enabled_locales: string[];
|
|
3421
|
+
/** @description Free-form labels on the account. The dashboard stores the environment as an `env:<name>` tag (e.g. `env:production`, `env:staging`, `env:test`). */
|
|
3422
|
+
tags?: string[];
|
|
3412
3423
|
team?: string | null;
|
|
3413
3424
|
notification_settings: {
|
|
3414
3425
|
/**
|
|
@@ -3458,6 +3469,7 @@ export interface operations {
|
|
|
3458
3469
|
callback_hostnames?: string[];
|
|
3459
3470
|
default_connection?: string | null;
|
|
3460
3471
|
enabled_locales?: string[];
|
|
3472
|
+
tags?: string[];
|
|
3461
3473
|
notification_settings?: {
|
|
3462
3474
|
/**
|
|
3463
3475
|
* @description Send the built-in welcome email on user.created
|
|
@@ -3495,6 +3507,8 @@ export interface operations {
|
|
|
3495
3507
|
token_signing_alg: "RS256";
|
|
3496
3508
|
default_connection?: components["schemas"]["Connection"] | string | unknown;
|
|
3497
3509
|
enabled_locales: string[];
|
|
3510
|
+
/** @description Free-form labels on the account. The dashboard stores the environment as an `env:<name>` tag (e.g. `env:production`, `env:staging`, `env:test`). */
|
|
3511
|
+
tags?: string[];
|
|
3498
3512
|
team?: string | null;
|
|
3499
3513
|
notification_settings: {
|
|
3500
3514
|
/**
|
|
@@ -3570,6 +3584,8 @@ export interface operations {
|
|
|
3570
3584
|
token_signing_alg: "RS256";
|
|
3571
3585
|
default_connection?: components["schemas"]["Connection"] | string | unknown;
|
|
3572
3586
|
enabled_locales: string[];
|
|
3587
|
+
/** @description Free-form labels on the account. The dashboard stores the environment as an `env:<name>` tag (e.g. `env:production`, `env:staging`, `env:test`). */
|
|
3588
|
+
tags?: string[];
|
|
3573
3589
|
team?: string | null;
|
|
3574
3590
|
notification_settings: {
|
|
3575
3591
|
/**
|
package/package.json
CHANGED
package/spec/openapi.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "@faablecloud/auth",
|
|
5
5
|
"description": "Auth Platform made by Faable. Manage Users and Roles",
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.22.0",
|
|
7
7
|
"license": {
|
|
8
8
|
"name": "private",
|
|
9
9
|
"url": "https://faable.com/docs/platform/privacy-policy"
|
|
@@ -110,6 +110,13 @@
|
|
|
110
110
|
"type": "string"
|
|
111
111
|
}
|
|
112
112
|
},
|
|
113
|
+
"tags": {
|
|
114
|
+
"type": "array",
|
|
115
|
+
"items": {
|
|
116
|
+
"type": "string"
|
|
117
|
+
},
|
|
118
|
+
"description": "Free-form labels on the account. The dashboard stores the environment as an `env:<name>` tag (e.g. `env:production`, `env:staging`, `env:test`)."
|
|
119
|
+
},
|
|
113
120
|
"team": {
|
|
114
121
|
"type": "string",
|
|
115
122
|
"nullable": true
|
|
@@ -3848,7 +3855,9 @@
|
|
|
3848
3855
|
],
|
|
3849
3856
|
"properties": {
|
|
3850
3857
|
"name": {
|
|
3851
|
-
"type": "string"
|
|
3858
|
+
"type": "string",
|
|
3859
|
+
"minLength": 1,
|
|
3860
|
+
"maxLength": 100
|
|
3852
3861
|
},
|
|
3853
3862
|
"team": {
|
|
3854
3863
|
"type": "string"
|
|
@@ -3868,6 +3877,14 @@
|
|
|
3868
3877
|
"default_connection": {
|
|
3869
3878
|
"type": "string"
|
|
3870
3879
|
},
|
|
3880
|
+
"tags": {
|
|
3881
|
+
"type": "array",
|
|
3882
|
+
"items": {
|
|
3883
|
+
"type": "string",
|
|
3884
|
+
"maxLength": 50
|
|
3885
|
+
},
|
|
3886
|
+
"maxItems": 20
|
|
3887
|
+
},
|
|
3871
3888
|
"metadata": {
|
|
3872
3889
|
"type": "object",
|
|
3873
3890
|
"properties": {},
|
|
@@ -3911,6 +3928,14 @@
|
|
|
3911
3928
|
"type": "string"
|
|
3912
3929
|
}
|
|
3913
3930
|
},
|
|
3931
|
+
"tags": {
|
|
3932
|
+
"type": "array",
|
|
3933
|
+
"items": {
|
|
3934
|
+
"type": "string",
|
|
3935
|
+
"maxLength": 50
|
|
3936
|
+
},
|
|
3937
|
+
"maxItems": 20
|
|
3938
|
+
},
|
|
3914
3939
|
"notification_settings": {
|
|
3915
3940
|
"type": "object",
|
|
3916
3941
|
"properties": {
|
|
@@ -4280,6 +4305,13 @@
|
|
|
4280
4305
|
"type": "string"
|
|
4281
4306
|
}
|
|
4282
4307
|
},
|
|
4308
|
+
"tags": {
|
|
4309
|
+
"type": "array",
|
|
4310
|
+
"items": {
|
|
4311
|
+
"type": "string"
|
|
4312
|
+
},
|
|
4313
|
+
"description": "Free-form labels on the account. The dashboard stores the environment as an `env:<name>` tag (e.g. `env:production`, `env:staging`, `env:test`)."
|
|
4314
|
+
},
|
|
4283
4315
|
"team": {
|
|
4284
4316
|
"type": "string",
|
|
4285
4317
|
"nullable": true
|
|
@@ -4375,7 +4407,9 @@
|
|
|
4375
4407
|
],
|
|
4376
4408
|
"properties": {
|
|
4377
4409
|
"name": {
|
|
4378
|
-
"type": "string"
|
|
4410
|
+
"type": "string",
|
|
4411
|
+
"minLength": 1,
|
|
4412
|
+
"maxLength": 100
|
|
4379
4413
|
},
|
|
4380
4414
|
"team": {
|
|
4381
4415
|
"type": "string"
|
|
@@ -4395,6 +4429,14 @@
|
|
|
4395
4429
|
"default_connection": {
|
|
4396
4430
|
"type": "string"
|
|
4397
4431
|
},
|
|
4432
|
+
"tags": {
|
|
4433
|
+
"type": "array",
|
|
4434
|
+
"items": {
|
|
4435
|
+
"type": "string",
|
|
4436
|
+
"maxLength": 50
|
|
4437
|
+
},
|
|
4438
|
+
"maxItems": 20
|
|
4439
|
+
},
|
|
4398
4440
|
"metadata": {
|
|
4399
4441
|
"type": "object",
|
|
4400
4442
|
"properties": {},
|
|
@@ -4493,6 +4535,13 @@
|
|
|
4493
4535
|
"type": "string"
|
|
4494
4536
|
}
|
|
4495
4537
|
},
|
|
4538
|
+
"tags": {
|
|
4539
|
+
"type": "array",
|
|
4540
|
+
"items": {
|
|
4541
|
+
"type": "string"
|
|
4542
|
+
},
|
|
4543
|
+
"description": "Free-form labels on the account. The dashboard stores the environment as an `env:<name>` tag (e.g. `env:production`, `env:staging`, `env:test`)."
|
|
4544
|
+
},
|
|
4496
4545
|
"team": {
|
|
4497
4546
|
"type": "string",
|
|
4498
4547
|
"nullable": true
|
|
@@ -4770,6 +4819,13 @@
|
|
|
4770
4819
|
"type": "string"
|
|
4771
4820
|
}
|
|
4772
4821
|
},
|
|
4822
|
+
"tags": {
|
|
4823
|
+
"type": "array",
|
|
4824
|
+
"items": {
|
|
4825
|
+
"type": "string"
|
|
4826
|
+
},
|
|
4827
|
+
"description": "Free-form labels on the account. The dashboard stores the environment as an `env:<name>` tag (e.g. `env:production`, `env:staging`, `env:test`)."
|
|
4828
|
+
},
|
|
4773
4829
|
"team": {
|
|
4774
4830
|
"type": "string",
|
|
4775
4831
|
"nullable": true
|
|
@@ -4882,6 +4938,14 @@
|
|
|
4882
4938
|
"type": "string"
|
|
4883
4939
|
}
|
|
4884
4940
|
},
|
|
4941
|
+
"tags": {
|
|
4942
|
+
"type": "array",
|
|
4943
|
+
"items": {
|
|
4944
|
+
"type": "string",
|
|
4945
|
+
"maxLength": 50
|
|
4946
|
+
},
|
|
4947
|
+
"maxItems": 20
|
|
4948
|
+
},
|
|
4885
4949
|
"notification_settings": {
|
|
4886
4950
|
"type": "object",
|
|
4887
4951
|
"properties": {
|
|
@@ -4999,6 +5063,13 @@
|
|
|
4999
5063
|
"type": "string"
|
|
5000
5064
|
}
|
|
5001
5065
|
},
|
|
5066
|
+
"tags": {
|
|
5067
|
+
"type": "array",
|
|
5068
|
+
"items": {
|
|
5069
|
+
"type": "string"
|
|
5070
|
+
},
|
|
5071
|
+
"description": "Free-form labels on the account. The dashboard stores the environment as an `env:<name>` tag (e.g. `env:production`, `env:staging`, `env:test`)."
|
|
5072
|
+
},
|
|
5002
5073
|
"team": {
|
|
5003
5074
|
"type": "string",
|
|
5004
5075
|
"nullable": true
|
|
@@ -5195,6 +5266,13 @@
|
|
|
5195
5266
|
"type": "string"
|
|
5196
5267
|
}
|
|
5197
5268
|
},
|
|
5269
|
+
"tags": {
|
|
5270
|
+
"type": "array",
|
|
5271
|
+
"items": {
|
|
5272
|
+
"type": "string"
|
|
5273
|
+
},
|
|
5274
|
+
"description": "Free-form labels on the account. The dashboard stores the environment as an `env:<name>` tag (e.g. `env:production`, `env:staging`, `env:test`)."
|
|
5275
|
+
},
|
|
5198
5276
|
"team": {
|
|
5199
5277
|
"type": "string",
|
|
5200
5278
|
"nullable": true
|