@closerplatform/spinner-openapi 0.12.1127 → 0.12.1128
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 +3 -2
- package/dist/api.js +1 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -5752,7 +5752,7 @@ export interface RegisterInPushService {
|
|
|
5752
5752
|
* @type {string}
|
|
5753
5753
|
* @memberof RegisterInPushService
|
|
5754
5754
|
*/
|
|
5755
|
-
deviceType
|
|
5755
|
+
deviceType: RegisterInPushService.DeviceTypeEnum;
|
|
5756
5756
|
}
|
|
5757
5757
|
/**
|
|
5758
5758
|
* @export
|
|
@@ -5765,7 +5765,8 @@ export declare namespace RegisterInPushService {
|
|
|
5765
5765
|
*/
|
|
5766
5766
|
enum DeviceTypeEnum {
|
|
5767
5767
|
Android = "android",
|
|
5768
|
-
Ios = "ios"
|
|
5768
|
+
Ios = "ios",
|
|
5769
|
+
IosVoip = "ios_voip"
|
|
5769
5770
|
}
|
|
5770
5771
|
}
|
|
5771
5772
|
/**
|
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
|
/**
|