@parra/parra-js-sdk 0.2.150 → 0.2.151
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/ParraAPI.d.ts +9 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -994,6 +994,15 @@ export declare enum ApnsPushType {
|
|
|
994
994
|
voip = "voip",
|
|
995
995
|
mdm = "mdm"
|
|
996
996
|
}
|
|
997
|
+
export interface UpdateApnsChannelRequestBody {
|
|
998
|
+
application_id: string;
|
|
999
|
+
environment: ApnsEnvironment;
|
|
1000
|
+
push_type: ApnsPushType;
|
|
1001
|
+
expiration?: string | null;
|
|
1002
|
+
collapse_id?: string | null;
|
|
1003
|
+
priority?: number | null;
|
|
1004
|
+
payload: object;
|
|
1005
|
+
}
|
|
997
1006
|
export interface CreateApnsChannelRequestBody {
|
|
998
1007
|
application_id: string;
|
|
999
1008
|
environment: ApnsEnvironment;
|