@onesignal/node-onesignal 5.7.0 → 5.9.0
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/README.md +9 -0
- package/dist/apis/DefaultApi.js +2282 -4372
- package/dist/apis/baseapi.js +11 -30
- package/dist/apis/exception.d.ts +1 -0
- package/dist/apis/exception.js +52 -26
- package/dist/auth/auth.js +17 -83
- package/dist/configuration.js +9 -9
- package/dist/errors.d.ts +8 -0
- package/dist/errors.js +11 -0
- package/dist/helpers.d.ts +12 -0
- package/dist/helpers.js +79 -0
- package/dist/http/http.js +53 -132
- package/dist/http/isomorphic-fetch.js +15 -18
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/middleware.js +8 -9
- package/dist/models/ApiKeyToken.js +45 -46
- package/dist/models/ApiKeyTokensListResponse.js +15 -16
- package/dist/models/App.js +213 -214
- package/dist/models/BasicNotification.js +711 -712
- package/dist/models/BasicNotificationAllOf.js +627 -628
- package/dist/models/BasicNotificationAllOfAndroidBackgroundLayout.js +27 -28
- package/dist/models/Button.js +27 -28
- package/dist/models/CopyTemplateRequest.js +15 -16
- package/dist/models/CreateApiKeyRequest.js +27 -28
- package/dist/models/CreateApiKeyResponse.js +21 -22
- package/dist/models/CreateNotificationSuccessResponse.js +27 -28
- package/dist/models/CreateSegmentConflictResponse.js +21 -22
- package/dist/models/CreateSegmentSuccessResponse.js +21 -22
- package/dist/models/CreateTemplateRequest.js +75 -76
- package/dist/models/CreateUserConflictResponse.js +15 -16
- package/dist/models/CreateUserConflictResponseErrorsInner.js +27 -28
- package/dist/models/CreateUserConflictResponseErrorsItemsMeta.js +15 -16
- package/dist/models/CustomEvent.js +39 -40
- package/dist/models/CustomEventsRequest.js +15 -16
- package/dist/models/DeliveryData.js +39 -40
- package/dist/models/ExportEventsSuccessResponse.js +15 -16
- package/dist/models/ExportSubscriptionsRequestBody.js +27 -28
- package/dist/models/ExportSubscriptionsSuccessResponse.js +15 -16
- package/dist/models/Filter.js +57 -58
- package/dist/models/FilterExpression.js +63 -64
- package/dist/models/GenericError.js +27 -28
- package/dist/models/GenericSuccessBoolResponse.js +15 -16
- package/dist/models/GetNotificationHistoryRequestBody.js +27 -28
- package/dist/models/GetSegmentsSuccessResponse.js +33 -34
- package/dist/models/LanguageStringMap.js +267 -268
- package/dist/models/Notification.js +717 -718
- package/dist/models/NotificationAllOf.js +15 -16
- package/dist/models/NotificationHistorySuccessResponse.js +21 -22
- package/dist/models/NotificationSlice.js +33 -34
- package/dist/models/NotificationTarget.js +93 -94
- package/dist/models/NotificationWithMeta.js +789 -790
- package/dist/models/NotificationWithMetaAllOf.js +93 -94
- package/dist/models/ObjectSerializer.js +111 -115
- package/dist/models/Operator.js +15 -16
- package/dist/models/OutcomeData.js +27 -28
- package/dist/models/OutcomesData.js +15 -16
- package/dist/models/PlatformDeliveryData.js +57 -58
- package/dist/models/PlatformDeliveryDataEmailAllOf.js +51 -52
- package/dist/models/PlatformDeliveryDataSmsAllOf.js +27 -28
- package/dist/models/PropertiesBody.js +15 -16
- package/dist/models/PropertiesDeltas.js +27 -28
- package/dist/models/PropertiesObject.js +75 -76
- package/dist/models/Purchase.js +33 -34
- package/dist/models/RateLimitError.js +21 -22
- package/dist/models/Segment.js +27 -28
- package/dist/models/SegmentData.js +51 -52
- package/dist/models/SegmentNotificationTarget.js +21 -22
- package/dist/models/StartLiveActivityRequest.js +105 -106
- package/dist/models/StartLiveActivitySuccessResponse.js +15 -16
- package/dist/models/Subscription.js +111 -112
- package/dist/models/SubscriptionBody.js +15 -16
- package/dist/models/SubscriptionNotificationTarget.js +81 -82
- package/dist/models/TemplateResource.js +45 -46
- package/dist/models/TemplatesListResponse.js +15 -16
- package/dist/models/TransferSubscriptionRequestBody.js +15 -16
- package/dist/models/UpdateApiKeyRequest.js +27 -28
- package/dist/models/UpdateLiveActivityRequest.js +63 -64
- package/dist/models/UpdateLiveActivitySuccessResponse.js +15 -16
- package/dist/models/UpdateTemplateRequest.js +69 -70
- package/dist/models/UpdateUserRequest.js +27 -28
- package/dist/models/User.js +27 -28
- package/dist/models/UserIdentityBody.js +15 -16
- package/dist/models/WebButton.js +33 -34
- package/dist/rxjsStub.js +8 -9
- package/dist/servers.js +14 -15
- package/dist/types/ObjectParamAPI.js +92 -94
- package/dist/types/ObservableAPI.js +534 -931
- package/dist/types/PromiseAPI.d.ts +4 -0
- package/dist/types/PromiseAPI.js +141 -137
- package/dist/util.js +2 -2
- package/package.json +4 -2
|
@@ -1,28 +1,27 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.RateLimitError = void 0;
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
7
|
-
RateLimitError.getAttributeTypeMap = function () {
|
|
4
|
+
class RateLimitError {
|
|
5
|
+
static getAttributeTypeMap() {
|
|
8
6
|
return RateLimitError.attributeTypeMap;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"name": "errors",
|
|
14
|
-
"baseName": "errors",
|
|
15
|
-
"type": "Array<string>",
|
|
16
|
-
"format": ""
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"name": "limit",
|
|
20
|
-
"baseName": "limit",
|
|
21
|
-
"type": "string",
|
|
22
|
-
"format": ""
|
|
23
|
-
}
|
|
24
|
-
];
|
|
25
|
-
return RateLimitError;
|
|
26
|
-
}());
|
|
7
|
+
}
|
|
8
|
+
constructor() {
|
|
9
|
+
}
|
|
10
|
+
}
|
|
27
11
|
exports.RateLimitError = RateLimitError;
|
|
12
|
+
RateLimitError.discriminator = undefined;
|
|
13
|
+
RateLimitError.attributeTypeMap = [
|
|
14
|
+
{
|
|
15
|
+
"name": "errors",
|
|
16
|
+
"baseName": "errors",
|
|
17
|
+
"type": "Array<string>",
|
|
18
|
+
"format": ""
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "limit",
|
|
22
|
+
"baseName": "limit",
|
|
23
|
+
"type": "string",
|
|
24
|
+
"format": ""
|
|
25
|
+
}
|
|
26
|
+
];
|
|
28
27
|
//# sourceMappingURL=RateLimitError.js.map
|
package/dist/models/Segment.js
CHANGED
|
@@ -1,34 +1,33 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Segment = void 0;
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
7
|
-
Segment.getAttributeTypeMap = function () {
|
|
4
|
+
class Segment {
|
|
5
|
+
static getAttributeTypeMap() {
|
|
8
6
|
return Segment.attributeTypeMap;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"name": "id",
|
|
14
|
-
"baseName": "id",
|
|
15
|
-
"type": "string",
|
|
16
|
-
"format": ""
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"name": "name",
|
|
20
|
-
"baseName": "name",
|
|
21
|
-
"type": "string",
|
|
22
|
-
"format": ""
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
"name": "filters",
|
|
26
|
-
"baseName": "filters",
|
|
27
|
-
"type": "Array<FilterExpression>",
|
|
28
|
-
"format": ""
|
|
29
|
-
}
|
|
30
|
-
];
|
|
31
|
-
return Segment;
|
|
32
|
-
}());
|
|
7
|
+
}
|
|
8
|
+
constructor() {
|
|
9
|
+
}
|
|
10
|
+
}
|
|
33
11
|
exports.Segment = Segment;
|
|
12
|
+
Segment.discriminator = undefined;
|
|
13
|
+
Segment.attributeTypeMap = [
|
|
14
|
+
{
|
|
15
|
+
"name": "id",
|
|
16
|
+
"baseName": "id",
|
|
17
|
+
"type": "string",
|
|
18
|
+
"format": ""
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "name",
|
|
22
|
+
"baseName": "name",
|
|
23
|
+
"type": "string",
|
|
24
|
+
"format": ""
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "filters",
|
|
28
|
+
"baseName": "filters",
|
|
29
|
+
"type": "Array<FilterExpression>",
|
|
30
|
+
"format": ""
|
|
31
|
+
}
|
|
32
|
+
];
|
|
34
33
|
//# sourceMappingURL=Segment.js.map
|
|
@@ -1,58 +1,57 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.SegmentData = void 0;
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
7
|
-
SegmentData.getAttributeTypeMap = function () {
|
|
4
|
+
class SegmentData {
|
|
5
|
+
static getAttributeTypeMap() {
|
|
8
6
|
return SegmentData.attributeTypeMap;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"name": "id",
|
|
14
|
-
"baseName": "id",
|
|
15
|
-
"type": "string",
|
|
16
|
-
"format": ""
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"name": "name",
|
|
20
|
-
"baseName": "name",
|
|
21
|
-
"type": "string",
|
|
22
|
-
"format": ""
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
"name": "created_at",
|
|
26
|
-
"baseName": "created_at",
|
|
27
|
-
"type": "string",
|
|
28
|
-
"format": ""
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"name": "updated_at",
|
|
32
|
-
"baseName": "updated_at",
|
|
33
|
-
"type": "string",
|
|
34
|
-
"format": ""
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
"name": "app_id",
|
|
38
|
-
"baseName": "app_id",
|
|
39
|
-
"type": "string",
|
|
40
|
-
"format": ""
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
"name": "read_only",
|
|
44
|
-
"baseName": "read_only",
|
|
45
|
-
"type": "boolean",
|
|
46
|
-
"format": ""
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
"name": "is_active",
|
|
50
|
-
"baseName": "is_active",
|
|
51
|
-
"type": "boolean",
|
|
52
|
-
"format": ""
|
|
53
|
-
}
|
|
54
|
-
];
|
|
55
|
-
return SegmentData;
|
|
56
|
-
}());
|
|
7
|
+
}
|
|
8
|
+
constructor() {
|
|
9
|
+
}
|
|
10
|
+
}
|
|
57
11
|
exports.SegmentData = SegmentData;
|
|
12
|
+
SegmentData.discriminator = undefined;
|
|
13
|
+
SegmentData.attributeTypeMap = [
|
|
14
|
+
{
|
|
15
|
+
"name": "id",
|
|
16
|
+
"baseName": "id",
|
|
17
|
+
"type": "string",
|
|
18
|
+
"format": ""
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "name",
|
|
22
|
+
"baseName": "name",
|
|
23
|
+
"type": "string",
|
|
24
|
+
"format": ""
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "created_at",
|
|
28
|
+
"baseName": "created_at",
|
|
29
|
+
"type": "string",
|
|
30
|
+
"format": ""
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "updated_at",
|
|
34
|
+
"baseName": "updated_at",
|
|
35
|
+
"type": "string",
|
|
36
|
+
"format": ""
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "app_id",
|
|
40
|
+
"baseName": "app_id",
|
|
41
|
+
"type": "string",
|
|
42
|
+
"format": ""
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "read_only",
|
|
46
|
+
"baseName": "read_only",
|
|
47
|
+
"type": "boolean",
|
|
48
|
+
"format": ""
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "is_active",
|
|
52
|
+
"baseName": "is_active",
|
|
53
|
+
"type": "boolean",
|
|
54
|
+
"format": ""
|
|
55
|
+
}
|
|
56
|
+
];
|
|
58
57
|
//# sourceMappingURL=SegmentData.js.map
|
|
@@ -1,28 +1,27 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.SegmentNotificationTarget = void 0;
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
7
|
-
SegmentNotificationTarget.getAttributeTypeMap = function () {
|
|
4
|
+
class SegmentNotificationTarget {
|
|
5
|
+
static getAttributeTypeMap() {
|
|
8
6
|
return SegmentNotificationTarget.attributeTypeMap;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"name": "included_segments",
|
|
14
|
-
"baseName": "included_segments",
|
|
15
|
-
"type": "Array<string>",
|
|
16
|
-
"format": ""
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"name": "excluded_segments",
|
|
20
|
-
"baseName": "excluded_segments",
|
|
21
|
-
"type": "Array<string>",
|
|
22
|
-
"format": ""
|
|
23
|
-
}
|
|
24
|
-
];
|
|
25
|
-
return SegmentNotificationTarget;
|
|
26
|
-
}());
|
|
7
|
+
}
|
|
8
|
+
constructor() {
|
|
9
|
+
}
|
|
10
|
+
}
|
|
27
11
|
exports.SegmentNotificationTarget = SegmentNotificationTarget;
|
|
12
|
+
SegmentNotificationTarget.discriminator = undefined;
|
|
13
|
+
SegmentNotificationTarget.attributeTypeMap = [
|
|
14
|
+
{
|
|
15
|
+
"name": "included_segments",
|
|
16
|
+
"baseName": "included_segments",
|
|
17
|
+
"type": "Array<string>",
|
|
18
|
+
"format": ""
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "excluded_segments",
|
|
22
|
+
"baseName": "excluded_segments",
|
|
23
|
+
"type": "Array<string>",
|
|
24
|
+
"format": ""
|
|
25
|
+
}
|
|
26
|
+
];
|
|
28
27
|
//# sourceMappingURL=SegmentNotificationTarget.js.map
|
|
@@ -1,112 +1,111 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.StartLiveActivityRequest = void 0;
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
7
|
-
StartLiveActivityRequest.getAttributeTypeMap = function () {
|
|
4
|
+
class StartLiveActivityRequest {
|
|
5
|
+
static getAttributeTypeMap() {
|
|
8
6
|
return StartLiveActivityRequest.attributeTypeMap;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"name": "name",
|
|
14
|
-
"baseName": "name",
|
|
15
|
-
"type": "string",
|
|
16
|
-
"format": ""
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"name": "event",
|
|
20
|
-
"baseName": "event",
|
|
21
|
-
"type": "StartLiveActivityRequestEventEnum",
|
|
22
|
-
"format": ""
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
"name": "activity_id",
|
|
26
|
-
"baseName": "activity_id",
|
|
27
|
-
"type": "string",
|
|
28
|
-
"format": ""
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"name": "event_attributes",
|
|
32
|
-
"baseName": "event_attributes",
|
|
33
|
-
"type": "object",
|
|
34
|
-
"format": ""
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
"name": "event_updates",
|
|
38
|
-
"baseName": "event_updates",
|
|
39
|
-
"type": "object",
|
|
40
|
-
"format": ""
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
"name": "contents",
|
|
44
|
-
"baseName": "contents",
|
|
45
|
-
"type": "LanguageStringMap",
|
|
46
|
-
"format": ""
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
"name": "headings",
|
|
50
|
-
"baseName": "headings",
|
|
51
|
-
"type": "LanguageStringMap",
|
|
52
|
-
"format": ""
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
"name": "stale_date",
|
|
56
|
-
"baseName": "stale_date",
|
|
57
|
-
"type": "number",
|
|
58
|
-
"format": ""
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
"name": "priority",
|
|
62
|
-
"baseName": "priority",
|
|
63
|
-
"type": "number",
|
|
64
|
-
"format": ""
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
"name": "ios_relevance_score",
|
|
68
|
-
"baseName": "ios_relevance_score",
|
|
69
|
-
"type": "number",
|
|
70
|
-
"format": ""
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
"name": "idempotency_key",
|
|
74
|
-
"baseName": "idempotency_key",
|
|
75
|
-
"type": "string",
|
|
76
|
-
"format": ""
|
|
77
|
-
},
|
|
78
|
-
{
|
|
79
|
-
"name": "include_aliases",
|
|
80
|
-
"baseName": "include_aliases",
|
|
81
|
-
"type": "{ [key: string]: Array<string>; }",
|
|
82
|
-
"format": ""
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
"name": "include_subscription_ids",
|
|
86
|
-
"baseName": "include_subscription_ids",
|
|
87
|
-
"type": "Array<string>",
|
|
88
|
-
"format": ""
|
|
89
|
-
},
|
|
90
|
-
{
|
|
91
|
-
"name": "included_segments",
|
|
92
|
-
"baseName": "included_segments",
|
|
93
|
-
"type": "Array<string>",
|
|
94
|
-
"format": ""
|
|
95
|
-
},
|
|
96
|
-
{
|
|
97
|
-
"name": "excluded_segments",
|
|
98
|
-
"baseName": "excluded_segments",
|
|
99
|
-
"type": "Array<string>",
|
|
100
|
-
"format": ""
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
"name": "filters",
|
|
104
|
-
"baseName": "filters",
|
|
105
|
-
"type": "Array<FilterExpression>",
|
|
106
|
-
"format": ""
|
|
107
|
-
}
|
|
108
|
-
];
|
|
109
|
-
return StartLiveActivityRequest;
|
|
110
|
-
}());
|
|
7
|
+
}
|
|
8
|
+
constructor() {
|
|
9
|
+
}
|
|
10
|
+
}
|
|
111
11
|
exports.StartLiveActivityRequest = StartLiveActivityRequest;
|
|
12
|
+
StartLiveActivityRequest.discriminator = undefined;
|
|
13
|
+
StartLiveActivityRequest.attributeTypeMap = [
|
|
14
|
+
{
|
|
15
|
+
"name": "name",
|
|
16
|
+
"baseName": "name",
|
|
17
|
+
"type": "string",
|
|
18
|
+
"format": ""
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "event",
|
|
22
|
+
"baseName": "event",
|
|
23
|
+
"type": "StartLiveActivityRequestEventEnum",
|
|
24
|
+
"format": ""
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "activity_id",
|
|
28
|
+
"baseName": "activity_id",
|
|
29
|
+
"type": "string",
|
|
30
|
+
"format": ""
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "event_attributes",
|
|
34
|
+
"baseName": "event_attributes",
|
|
35
|
+
"type": "object",
|
|
36
|
+
"format": ""
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "event_updates",
|
|
40
|
+
"baseName": "event_updates",
|
|
41
|
+
"type": "object",
|
|
42
|
+
"format": ""
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "contents",
|
|
46
|
+
"baseName": "contents",
|
|
47
|
+
"type": "LanguageStringMap",
|
|
48
|
+
"format": ""
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "headings",
|
|
52
|
+
"baseName": "headings",
|
|
53
|
+
"type": "LanguageStringMap",
|
|
54
|
+
"format": ""
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"name": "stale_date",
|
|
58
|
+
"baseName": "stale_date",
|
|
59
|
+
"type": "number",
|
|
60
|
+
"format": ""
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"name": "priority",
|
|
64
|
+
"baseName": "priority",
|
|
65
|
+
"type": "number",
|
|
66
|
+
"format": ""
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "ios_relevance_score",
|
|
70
|
+
"baseName": "ios_relevance_score",
|
|
71
|
+
"type": "number",
|
|
72
|
+
"format": ""
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"name": "idempotency_key",
|
|
76
|
+
"baseName": "idempotency_key",
|
|
77
|
+
"type": "string",
|
|
78
|
+
"format": ""
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"name": "include_aliases",
|
|
82
|
+
"baseName": "include_aliases",
|
|
83
|
+
"type": "{ [key: string]: Array<string>; }",
|
|
84
|
+
"format": ""
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "include_subscription_ids",
|
|
88
|
+
"baseName": "include_subscription_ids",
|
|
89
|
+
"type": "Array<string>",
|
|
90
|
+
"format": ""
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"name": "included_segments",
|
|
94
|
+
"baseName": "included_segments",
|
|
95
|
+
"type": "Array<string>",
|
|
96
|
+
"format": ""
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"name": "excluded_segments",
|
|
100
|
+
"baseName": "excluded_segments",
|
|
101
|
+
"type": "Array<string>",
|
|
102
|
+
"format": ""
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"name": "filters",
|
|
106
|
+
"baseName": "filters",
|
|
107
|
+
"type": "Array<FilterExpression>",
|
|
108
|
+
"format": ""
|
|
109
|
+
}
|
|
110
|
+
];
|
|
112
111
|
//# sourceMappingURL=StartLiveActivityRequest.js.map
|
|
@@ -1,22 +1,21 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.StartLiveActivitySuccessResponse = void 0;
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
7
|
-
StartLiveActivitySuccessResponse.getAttributeTypeMap = function () {
|
|
4
|
+
class StartLiveActivitySuccessResponse {
|
|
5
|
+
static getAttributeTypeMap() {
|
|
8
6
|
return StartLiveActivitySuccessResponse.attributeTypeMap;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"name": "notification_id",
|
|
14
|
-
"baseName": "notification_id",
|
|
15
|
-
"type": "string",
|
|
16
|
-
"format": ""
|
|
17
|
-
}
|
|
18
|
-
];
|
|
19
|
-
return StartLiveActivitySuccessResponse;
|
|
20
|
-
}());
|
|
7
|
+
}
|
|
8
|
+
constructor() {
|
|
9
|
+
}
|
|
10
|
+
}
|
|
21
11
|
exports.StartLiveActivitySuccessResponse = StartLiveActivitySuccessResponse;
|
|
12
|
+
StartLiveActivitySuccessResponse.discriminator = undefined;
|
|
13
|
+
StartLiveActivitySuccessResponse.attributeTypeMap = [
|
|
14
|
+
{
|
|
15
|
+
"name": "notification_id",
|
|
16
|
+
"baseName": "notification_id",
|
|
17
|
+
"type": "string",
|
|
18
|
+
"format": ""
|
|
19
|
+
}
|
|
20
|
+
];
|
|
22
21
|
//# sourceMappingURL=StartLiveActivitySuccessResponse.js.map
|