@closerplatform/spinner-openapi 0.12.1127 → 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 +13 -6
- package/dist/api.js +1 -0
- 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
|
*
|
|
@@ -5752,7 +5758,7 @@ export interface RegisterInPushService {
|
|
|
5752
5758
|
* @type {string}
|
|
5753
5759
|
* @memberof RegisterInPushService
|
|
5754
5760
|
*/
|
|
5755
|
-
deviceType
|
|
5761
|
+
deviceType: RegisterInPushService.DeviceTypeEnum;
|
|
5756
5762
|
}
|
|
5757
5763
|
/**
|
|
5758
5764
|
* @export
|
|
@@ -5765,7 +5771,8 @@ export declare namespace RegisterInPushService {
|
|
|
5765
5771
|
*/
|
|
5766
5772
|
enum DeviceTypeEnum {
|
|
5767
5773
|
Android = "android",
|
|
5768
|
-
Ios = "ios"
|
|
5774
|
+
Ios = "ios",
|
|
5775
|
+
IosVoip = "ios_voip"
|
|
5769
5776
|
}
|
|
5770
5777
|
}
|
|
5771
5778
|
/**
|
package/dist/api.js
CHANGED
|
@@ -309,6 +309,7 @@ var RegisterInPushService;
|
|
|
309
309
|
(function (DeviceTypeEnum) {
|
|
310
310
|
DeviceTypeEnum["Android"] = "android";
|
|
311
311
|
DeviceTypeEnum["Ios"] = "ios";
|
|
312
|
+
DeviceTypeEnum["IosVoip"] = "ios_voip";
|
|
312
313
|
})(DeviceTypeEnum = RegisterInPushService.DeviceTypeEnum || (RegisterInPushService.DeviceTypeEnum = {}));
|
|
313
314
|
})(RegisterInPushService = exports.RegisterInPushService || (exports.RegisterInPushService = {}));
|
|
314
315
|
/**
|