@closerplatform/spinner-openapi 0.12.1128 → 0.12.1129
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/api.d.ts +10 -4
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -4338,7 +4338,13 @@ export interface OauthConfigCreateForm {
|
|
|
4338
4338
|
* @type {boolean}
|
|
4339
4339
|
* @memberof OauthConfigCreateForm
|
|
4340
4340
|
*/
|
|
4341
|
-
oauthConfigEnabled
|
|
4341
|
+
oauthConfigEnabled: boolean;
|
|
4342
|
+
/**
|
|
4343
|
+
*
|
|
4344
|
+
* @type {boolean}
|
|
4345
|
+
* @memberof OauthConfigCreateForm
|
|
4346
|
+
*/
|
|
4347
|
+
allowAnonymousSignUp: boolean;
|
|
4342
4348
|
}
|
|
4343
4349
|
/**
|
|
4344
4350
|
*
|
|
@@ -4372,16 +4378,16 @@ export interface OauthConfigPatchForm {
|
|
|
4372
4378
|
clientSecret?: string;
|
|
4373
4379
|
/**
|
|
4374
4380
|
*
|
|
4375
|
-
* @type {
|
|
4381
|
+
* @type {boolean}
|
|
4376
4382
|
* @memberof OauthConfigPatchForm
|
|
4377
4383
|
*/
|
|
4378
|
-
|
|
4384
|
+
oauthConfigEnabled?: boolean;
|
|
4379
4385
|
/**
|
|
4380
4386
|
*
|
|
4381
4387
|
* @type {boolean}
|
|
4382
4388
|
* @memberof OauthConfigPatchForm
|
|
4383
4389
|
*/
|
|
4384
|
-
|
|
4390
|
+
allowAnonymousSignUp?: boolean;
|
|
4385
4391
|
}
|
|
4386
4392
|
/**
|
|
4387
4393
|
*
|