@onesignal/node-onesignal 5.13.2 → 5.15.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.
Files changed (65) hide show
  1. package/dist/apis/DefaultApi.d.ts +20 -0
  2. package/dist/apis/DefaultApi.js +463 -47
  3. package/dist/models/CreateJourneyRequest.d.ts +28 -0
  4. package/dist/models/CreateJourneyRequest.js +57 -0
  5. package/dist/models/Journey.d.ts +38 -0
  6. package/dist/models/Journey.js +111 -0
  7. package/dist/models/JourneyAudience.d.ts +24 -0
  8. package/dist/models/JourneyAudience.js +51 -0
  9. package/dist/models/JourneyBranch.d.ts +22 -0
  10. package/dist/models/JourneyBranch.js +39 -0
  11. package/dist/models/JourneyBranchStats.d.ts +17 -0
  12. package/dist/models/JourneyBranchStats.js +21 -0
  13. package/dist/models/JourneyCondition.d.ts +28 -0
  14. package/dist/models/JourneyCondition.js +69 -0
  15. package/dist/models/JourneyEarlyExit.d.ts +21 -0
  16. package/dist/models/JourneyEarlyExit.js +27 -0
  17. package/dist/models/JourneyEarlyExitRules.d.ts +22 -0
  18. package/dist/models/JourneyEarlyExitRules.js +39 -0
  19. package/dist/models/JourneyEarlyExitRulesOnEvent.d.ts +17 -0
  20. package/dist/models/JourneyEarlyExitRulesOnEvent.js +21 -0
  21. package/dist/models/JourneyEarlyExitRulesOnSegment.d.ts +17 -0
  22. package/dist/models/JourneyEarlyExitRulesOnSegment.js +21 -0
  23. package/dist/models/JourneyEventAttribute.d.ts +20 -0
  24. package/dist/models/JourneyEventAttribute.js +33 -0
  25. package/dist/models/JourneyListAudience.d.ts +18 -0
  26. package/dist/models/JourneyListAudience.js +21 -0
  27. package/dist/models/JourneyListItem.d.ts +32 -0
  28. package/dist/models/JourneyListItem.js +87 -0
  29. package/dist/models/JourneyListResponse.d.ts +20 -0
  30. package/dist/models/JourneyListResponse.js +33 -0
  31. package/dist/models/JourneyMessageStats.d.ts +19 -0
  32. package/dist/models/JourneyMessageStats.js +21 -0
  33. package/dist/models/JourneyNode.d.ts +40 -0
  34. package/dist/models/JourneyNode.js +117 -0
  35. package/dist/models/JourneyNodeStats.d.ts +23 -0
  36. package/dist/models/JourneyNodeStats.js +45 -0
  37. package/dist/models/JourneyReentryRules.d.ts +17 -0
  38. package/dist/models/JourneyReentryRules.js +21 -0
  39. package/dist/models/JourneySchedule.d.ts +19 -0
  40. package/dist/models/JourneySchedule.js +33 -0
  41. package/dist/models/JourneyStats.d.ts +28 -0
  42. package/dist/models/JourneyStats.js +51 -0
  43. package/dist/models/JourneyTimePoint.d.ts +18 -0
  44. package/dist/models/JourneyTimePoint.js +27 -0
  45. package/dist/models/JourneyTimeWindow.d.ts +20 -0
  46. package/dist/models/JourneyTimeWindow.js +33 -0
  47. package/dist/models/JourneyWaitUntilExpiration.d.ts +18 -0
  48. package/dist/models/JourneyWaitUntilExpiration.js +27 -0
  49. package/dist/models/ObjectSerializer.d.ts +25 -0
  50. package/dist/models/ObjectSerializer.js +87 -0
  51. package/dist/models/UpdateJourneyNodeRequest.d.ts +38 -0
  52. package/dist/models/UpdateJourneyNodeRequest.js +111 -0
  53. package/dist/models/UpdateJourneyRequest.d.ts +31 -0
  54. package/dist/models/UpdateJourneyRequest.js +69 -0
  55. package/dist/models/UpdateLiveActivityRequest.d.ts +2 -0
  56. package/dist/models/UpdateLiveActivityRequest.js +12 -0
  57. package/dist/models/all.d.ts +25 -0
  58. package/dist/models/all.js +25 -0
  59. package/dist/types/ObjectParamAPI.d.ts +45 -0
  60. package/dist/types/ObjectParamAPI.js +21 -0
  61. package/dist/types/ObservableAPI.d.ts +13 -0
  62. package/dist/types/ObservableAPI.js +105 -0
  63. package/dist/types/PromiseAPI.d.ts +13 -0
  64. package/dist/types/PromiseAPI.js +28 -0
  65. package/package.json +1 -1
@@ -0,0 +1,17 @@
1
+ export declare class JourneyEarlyExitRulesOnSegment {
2
+ 'included_segment_ids'?: Array<string>;
3
+ static readonly discriminator: string | undefined;
4
+ static readonly attributeTypeMap: Array<{
5
+ name: string;
6
+ baseName: string;
7
+ type: string;
8
+ format: string;
9
+ }>;
10
+ static getAttributeTypeMap(): {
11
+ name: string;
12
+ baseName: string;
13
+ type: string;
14
+ format: string;
15
+ }[];
16
+ constructor();
17
+ }
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.JourneyEarlyExitRulesOnSegment = void 0;
4
+ class JourneyEarlyExitRulesOnSegment {
5
+ static getAttributeTypeMap() {
6
+ return JourneyEarlyExitRulesOnSegment.attributeTypeMap;
7
+ }
8
+ constructor() {
9
+ }
10
+ }
11
+ exports.JourneyEarlyExitRulesOnSegment = JourneyEarlyExitRulesOnSegment;
12
+ JourneyEarlyExitRulesOnSegment.discriminator = undefined;
13
+ JourneyEarlyExitRulesOnSegment.attributeTypeMap = [
14
+ {
15
+ "name": "included_segment_ids",
16
+ "baseName": "included_segment_ids",
17
+ "type": "Array<string>",
18
+ "format": ""
19
+ }
20
+ ];
21
+ //# sourceMappingURL=JourneyEarlyExitRulesOnSegment.js.map
@@ -0,0 +1,20 @@
1
+ export declare class JourneyEventAttribute {
2
+ 'key': string;
3
+ 'operator': JourneyEventAttributeOperatorEnum;
4
+ 'value'?: string;
5
+ static readonly discriminator: string | undefined;
6
+ static readonly attributeTypeMap: Array<{
7
+ name: string;
8
+ baseName: string;
9
+ type: string;
10
+ format: string;
11
+ }>;
12
+ static getAttributeTypeMap(): {
13
+ name: string;
14
+ baseName: string;
15
+ type: string;
16
+ format: string;
17
+ }[];
18
+ constructor();
19
+ }
20
+ export type JourneyEventAttributeOperatorEnum = "equal" | "not_equal" | "less" | "less_or_equal" | "greater_or_equal" | "greater" | "is" | "is_not" | "exists" | "not_exists" | "before" | "after";
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.JourneyEventAttribute = void 0;
4
+ class JourneyEventAttribute {
5
+ static getAttributeTypeMap() {
6
+ return JourneyEventAttribute.attributeTypeMap;
7
+ }
8
+ constructor() {
9
+ }
10
+ }
11
+ exports.JourneyEventAttribute = JourneyEventAttribute;
12
+ JourneyEventAttribute.discriminator = undefined;
13
+ JourneyEventAttribute.attributeTypeMap = [
14
+ {
15
+ "name": "key",
16
+ "baseName": "key",
17
+ "type": "string",
18
+ "format": ""
19
+ },
20
+ {
21
+ "name": "operator",
22
+ "baseName": "operator",
23
+ "type": "JourneyEventAttributeOperatorEnum",
24
+ "format": ""
25
+ },
26
+ {
27
+ "name": "value",
28
+ "baseName": "value",
29
+ "type": "string",
30
+ "format": ""
31
+ }
32
+ ];
33
+ //# sourceMappingURL=JourneyEventAttribute.js.map
@@ -0,0 +1,18 @@
1
+ export declare class JourneyListAudience {
2
+ 'kind'?: JourneyListAudienceKindEnum;
3
+ static readonly discriminator: string | undefined;
4
+ static readonly attributeTypeMap: Array<{
5
+ name: string;
6
+ baseName: string;
7
+ type: string;
8
+ format: string;
9
+ }>;
10
+ static getAttributeTypeMap(): {
11
+ name: string;
12
+ baseName: string;
13
+ type: string;
14
+ format: string;
15
+ }[];
16
+ constructor();
17
+ }
18
+ export type JourneyListAudienceKindEnum = "segment" | "event_trigger";
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.JourneyListAudience = void 0;
4
+ class JourneyListAudience {
5
+ static getAttributeTypeMap() {
6
+ return JourneyListAudience.attributeTypeMap;
7
+ }
8
+ constructor() {
9
+ }
10
+ }
11
+ exports.JourneyListAudience = JourneyListAudience;
12
+ JourneyListAudience.discriminator = undefined;
13
+ JourneyListAudience.attributeTypeMap = [
14
+ {
15
+ "name": "kind",
16
+ "baseName": "kind",
17
+ "type": "JourneyListAudienceKindEnum",
18
+ "format": ""
19
+ }
20
+ ];
21
+ //# sourceMappingURL=JourneyListAudience.js.map
@@ -0,0 +1,32 @@
1
+ import { JourneyListAudience } from './JourneyListAudience';
2
+ import { JourneyReentryRules } from './JourneyReentryRules';
3
+ import { JourneySchedule } from './JourneySchedule';
4
+ export declare class JourneyListItem {
5
+ 'id'?: string;
6
+ 'app_id'?: string;
7
+ 'name'?: string;
8
+ 'state'?: JourneyListItemStateEnum;
9
+ 'created_at'?: string;
10
+ 'updated_at'?: string;
11
+ 'started_at'?: string;
12
+ 'archived_at'?: string;
13
+ 'created_source'?: string;
14
+ 'schedule'?: JourneySchedule;
15
+ 'audience'?: JourneyListAudience;
16
+ 'reentry_rules'?: JourneyReentryRules;
17
+ static readonly discriminator: string | undefined;
18
+ static readonly attributeTypeMap: Array<{
19
+ name: string;
20
+ baseName: string;
21
+ type: string;
22
+ format: string;
23
+ }>;
24
+ static getAttributeTypeMap(): {
25
+ name: string;
26
+ baseName: string;
27
+ type: string;
28
+ format: string;
29
+ }[];
30
+ constructor();
31
+ }
32
+ export type JourneyListItemStateEnum = "draft" | "scheduled" | "processing" | "active" | "archived";
@@ -0,0 +1,87 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.JourneyListItem = void 0;
4
+ class JourneyListItem {
5
+ static getAttributeTypeMap() {
6
+ return JourneyListItem.attributeTypeMap;
7
+ }
8
+ constructor() {
9
+ }
10
+ }
11
+ exports.JourneyListItem = JourneyListItem;
12
+ JourneyListItem.discriminator = undefined;
13
+ JourneyListItem.attributeTypeMap = [
14
+ {
15
+ "name": "id",
16
+ "baseName": "id",
17
+ "type": "string",
18
+ "format": ""
19
+ },
20
+ {
21
+ "name": "app_id",
22
+ "baseName": "app_id",
23
+ "type": "string",
24
+ "format": ""
25
+ },
26
+ {
27
+ "name": "name",
28
+ "baseName": "name",
29
+ "type": "string",
30
+ "format": ""
31
+ },
32
+ {
33
+ "name": "state",
34
+ "baseName": "state",
35
+ "type": "JourneyListItemStateEnum",
36
+ "format": ""
37
+ },
38
+ {
39
+ "name": "created_at",
40
+ "baseName": "created_at",
41
+ "type": "string",
42
+ "format": ""
43
+ },
44
+ {
45
+ "name": "updated_at",
46
+ "baseName": "updated_at",
47
+ "type": "string",
48
+ "format": ""
49
+ },
50
+ {
51
+ "name": "started_at",
52
+ "baseName": "started_at",
53
+ "type": "string",
54
+ "format": ""
55
+ },
56
+ {
57
+ "name": "archived_at",
58
+ "baseName": "archived_at",
59
+ "type": "string",
60
+ "format": ""
61
+ },
62
+ {
63
+ "name": "created_source",
64
+ "baseName": "created_source",
65
+ "type": "string",
66
+ "format": ""
67
+ },
68
+ {
69
+ "name": "schedule",
70
+ "baseName": "schedule",
71
+ "type": "JourneySchedule",
72
+ "format": ""
73
+ },
74
+ {
75
+ "name": "audience",
76
+ "baseName": "audience",
77
+ "type": "JourneyListAudience",
78
+ "format": ""
79
+ },
80
+ {
81
+ "name": "reentry_rules",
82
+ "baseName": "reentry_rules",
83
+ "type": "JourneyReentryRules",
84
+ "format": ""
85
+ }
86
+ ];
87
+ //# sourceMappingURL=JourneyListItem.js.map
@@ -0,0 +1,20 @@
1
+ import { JourneyListItem } from './JourneyListItem';
2
+ export declare class JourneyListResponse {
3
+ 'journeys'?: Array<JourneyListItem>;
4
+ 'has_more'?: boolean;
5
+ 'next_cursor'?: string;
6
+ static readonly discriminator: string | undefined;
7
+ static readonly attributeTypeMap: Array<{
8
+ name: string;
9
+ baseName: string;
10
+ type: string;
11
+ format: string;
12
+ }>;
13
+ static getAttributeTypeMap(): {
14
+ name: string;
15
+ baseName: string;
16
+ type: string;
17
+ format: string;
18
+ }[];
19
+ constructor();
20
+ }
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.JourneyListResponse = void 0;
4
+ class JourneyListResponse {
5
+ static getAttributeTypeMap() {
6
+ return JourneyListResponse.attributeTypeMap;
7
+ }
8
+ constructor() {
9
+ }
10
+ }
11
+ exports.JourneyListResponse = JourneyListResponse;
12
+ JourneyListResponse.discriminator = undefined;
13
+ JourneyListResponse.attributeTypeMap = [
14
+ {
15
+ "name": "journeys",
16
+ "baseName": "journeys",
17
+ "type": "Array<JourneyListItem>",
18
+ "format": ""
19
+ },
20
+ {
21
+ "name": "has_more",
22
+ "baseName": "has_more",
23
+ "type": "boolean",
24
+ "format": ""
25
+ },
26
+ {
27
+ "name": "next_cursor",
28
+ "baseName": "next_cursor",
29
+ "type": "string",
30
+ "format": ""
31
+ }
32
+ ];
33
+ //# sourceMappingURL=JourneyListResponse.js.map
@@ -0,0 +1,19 @@
1
+ export declare class JourneyMessageStats {
2
+ 'totals'?: {
3
+ [key: string]: number;
4
+ };
5
+ static readonly discriminator: string | undefined;
6
+ static readonly attributeTypeMap: Array<{
7
+ name: string;
8
+ baseName: string;
9
+ type: string;
10
+ format: string;
11
+ }>;
12
+ static getAttributeTypeMap(): {
13
+ name: string;
14
+ baseName: string;
15
+ type: string;
16
+ format: string;
17
+ }[];
18
+ constructor();
19
+ }
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.JourneyMessageStats = void 0;
4
+ class JourneyMessageStats {
5
+ static getAttributeTypeMap() {
6
+ return JourneyMessageStats.attributeTypeMap;
7
+ }
8
+ constructor() {
9
+ }
10
+ }
11
+ exports.JourneyMessageStats = JourneyMessageStats;
12
+ JourneyMessageStats.discriminator = undefined;
13
+ JourneyMessageStats.attributeTypeMap = [
14
+ {
15
+ "name": "totals",
16
+ "baseName": "totals",
17
+ "type": "{ [key: string]: number; }",
18
+ "format": ""
19
+ }
20
+ ];
21
+ //# sourceMappingURL=JourneyMessageStats.js.map
@@ -0,0 +1,40 @@
1
+ import { JourneyBranch } from './JourneyBranch';
2
+ import { JourneyTimeWindow } from './JourneyTimeWindow';
3
+ import { JourneyWaitUntilExpiration } from './JourneyWaitUntilExpiration';
4
+ export declare class JourneyNode {
5
+ 'id'?: string;
6
+ 'kind': JourneyNodeKindEnum;
7
+ 'client_node_id'?: string;
8
+ 'annotation'?: string;
9
+ 'duration_seconds'?: number;
10
+ 'relative_to'?: JourneyNodeRelativeToEnum;
11
+ 'windows'?: Array<JourneyTimeWindow>;
12
+ 'time_zone'?: string;
13
+ 'use_user_time_zone'?: boolean;
14
+ 'template_id'?: string;
15
+ 'iam_id'?: string;
16
+ 'user_ttl_seconds'?: number;
17
+ 'webhook_id'?: string;
18
+ 'assignments'?: {
19
+ [key: string]: string;
20
+ };
21
+ 'randomize_on_entry'?: boolean;
22
+ 'branches'?: Array<JourneyBranch>;
23
+ 'expiration'?: JourneyWaitUntilExpiration;
24
+ static readonly discriminator: string | undefined;
25
+ static readonly attributeTypeMap: Array<{
26
+ name: string;
27
+ baseName: string;
28
+ type: string;
29
+ format: string;
30
+ }>;
31
+ static getAttributeTypeMap(): {
32
+ name: string;
33
+ baseName: string;
34
+ type: string;
35
+ format: string;
36
+ }[];
37
+ constructor();
38
+ }
39
+ export type JourneyNodeKindEnum = "wait" | "time_window" | "send_push" | "send_email" | "send_sms" | "send_iam" | "send_webhook" | "tag" | "split_range" | "yes_no" | "wait_until";
40
+ export type JourneyNodeRelativeToEnum = "schedule_in_timezone" | "last_active_time";
@@ -0,0 +1,117 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.JourneyNode = void 0;
4
+ class JourneyNode {
5
+ static getAttributeTypeMap() {
6
+ return JourneyNode.attributeTypeMap;
7
+ }
8
+ constructor() {
9
+ }
10
+ }
11
+ exports.JourneyNode = JourneyNode;
12
+ JourneyNode.discriminator = undefined;
13
+ JourneyNode.attributeTypeMap = [
14
+ {
15
+ "name": "id",
16
+ "baseName": "id",
17
+ "type": "string",
18
+ "format": ""
19
+ },
20
+ {
21
+ "name": "kind",
22
+ "baseName": "kind",
23
+ "type": "JourneyNodeKindEnum",
24
+ "format": ""
25
+ },
26
+ {
27
+ "name": "client_node_id",
28
+ "baseName": "client_node_id",
29
+ "type": "string",
30
+ "format": ""
31
+ },
32
+ {
33
+ "name": "annotation",
34
+ "baseName": "annotation",
35
+ "type": "string",
36
+ "format": ""
37
+ },
38
+ {
39
+ "name": "duration_seconds",
40
+ "baseName": "duration_seconds",
41
+ "type": "number",
42
+ "format": ""
43
+ },
44
+ {
45
+ "name": "relative_to",
46
+ "baseName": "relative_to",
47
+ "type": "JourneyNodeRelativeToEnum",
48
+ "format": ""
49
+ },
50
+ {
51
+ "name": "windows",
52
+ "baseName": "windows",
53
+ "type": "Array<JourneyTimeWindow>",
54
+ "format": ""
55
+ },
56
+ {
57
+ "name": "time_zone",
58
+ "baseName": "time_zone",
59
+ "type": "string",
60
+ "format": ""
61
+ },
62
+ {
63
+ "name": "use_user_time_zone",
64
+ "baseName": "use_user_time_zone",
65
+ "type": "boolean",
66
+ "format": ""
67
+ },
68
+ {
69
+ "name": "template_id",
70
+ "baseName": "template_id",
71
+ "type": "string",
72
+ "format": ""
73
+ },
74
+ {
75
+ "name": "iam_id",
76
+ "baseName": "iam_id",
77
+ "type": "string",
78
+ "format": ""
79
+ },
80
+ {
81
+ "name": "user_ttl_seconds",
82
+ "baseName": "user_ttl_seconds",
83
+ "type": "number",
84
+ "format": ""
85
+ },
86
+ {
87
+ "name": "webhook_id",
88
+ "baseName": "webhook_id",
89
+ "type": "string",
90
+ "format": ""
91
+ },
92
+ {
93
+ "name": "assignments",
94
+ "baseName": "assignments",
95
+ "type": "{ [key: string]: string; }",
96
+ "format": ""
97
+ },
98
+ {
99
+ "name": "randomize_on_entry",
100
+ "baseName": "randomize_on_entry",
101
+ "type": "boolean",
102
+ "format": ""
103
+ },
104
+ {
105
+ "name": "branches",
106
+ "baseName": "branches",
107
+ "type": "Array<JourneyBranch>",
108
+ "format": ""
109
+ },
110
+ {
111
+ "name": "expiration",
112
+ "baseName": "expiration",
113
+ "type": "JourneyWaitUntilExpiration",
114
+ "format": ""
115
+ }
116
+ ];
117
+ //# sourceMappingURL=JourneyNode.js.map
@@ -0,0 +1,23 @@
1
+ import { JourneyMessageStats } from './JourneyMessageStats';
2
+ export declare class JourneyNodeStats {
3
+ 'kind'?: JourneyNodeStatsKindEnum;
4
+ 'waiting'?: number;
5
+ 'completed'?: number;
6
+ 'exited_early'?: number;
7
+ 'message_stats'?: JourneyMessageStats;
8
+ static readonly discriminator: string | undefined;
9
+ static readonly attributeTypeMap: Array<{
10
+ name: string;
11
+ baseName: string;
12
+ type: string;
13
+ format: string;
14
+ }>;
15
+ static getAttributeTypeMap(): {
16
+ name: string;
17
+ baseName: string;
18
+ type: string;
19
+ format: string;
20
+ }[];
21
+ constructor();
22
+ }
23
+ export type JourneyNodeStatsKindEnum = "wait" | "time_window" | "send_push" | "send_email" | "send_sms" | "send_iam" | "send_webhook" | "tag" | "split_range" | "yes_no" | "wait_until";
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.JourneyNodeStats = void 0;
4
+ class JourneyNodeStats {
5
+ static getAttributeTypeMap() {
6
+ return JourneyNodeStats.attributeTypeMap;
7
+ }
8
+ constructor() {
9
+ }
10
+ }
11
+ exports.JourneyNodeStats = JourneyNodeStats;
12
+ JourneyNodeStats.discriminator = undefined;
13
+ JourneyNodeStats.attributeTypeMap = [
14
+ {
15
+ "name": "kind",
16
+ "baseName": "kind",
17
+ "type": "JourneyNodeStatsKindEnum",
18
+ "format": ""
19
+ },
20
+ {
21
+ "name": "waiting",
22
+ "baseName": "waiting",
23
+ "type": "number",
24
+ "format": ""
25
+ },
26
+ {
27
+ "name": "completed",
28
+ "baseName": "completed",
29
+ "type": "number",
30
+ "format": ""
31
+ },
32
+ {
33
+ "name": "exited_early",
34
+ "baseName": "exited_early",
35
+ "type": "number",
36
+ "format": ""
37
+ },
38
+ {
39
+ "name": "message_stats",
40
+ "baseName": "message_stats",
41
+ "type": "JourneyMessageStats",
42
+ "format": ""
43
+ }
44
+ ];
45
+ //# sourceMappingURL=JourneyNodeStats.js.map
@@ -0,0 +1,17 @@
1
+ export declare class JourneyReentryRules {
2
+ 'duration_seconds'?: number;
3
+ static readonly discriminator: string | undefined;
4
+ static readonly attributeTypeMap: Array<{
5
+ name: string;
6
+ baseName: string;
7
+ type: string;
8
+ format: string;
9
+ }>;
10
+ static getAttributeTypeMap(): {
11
+ name: string;
12
+ baseName: string;
13
+ type: string;
14
+ format: string;
15
+ }[];
16
+ constructor();
17
+ }
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.JourneyReentryRules = void 0;
4
+ class JourneyReentryRules {
5
+ static getAttributeTypeMap() {
6
+ return JourneyReentryRules.attributeTypeMap;
7
+ }
8
+ constructor() {
9
+ }
10
+ }
11
+ exports.JourneyReentryRules = JourneyReentryRules;
12
+ JourneyReentryRules.discriminator = undefined;
13
+ JourneyReentryRules.attributeTypeMap = [
14
+ {
15
+ "name": "duration_seconds",
16
+ "baseName": "duration_seconds",
17
+ "type": "number",
18
+ "format": ""
19
+ }
20
+ ];
21
+ //# sourceMappingURL=JourneyReentryRules.js.map
@@ -0,0 +1,19 @@
1
+ export declare class JourneySchedule {
2
+ 'start_at'?: string;
3
+ 'stop_at'?: string;
4
+ 'error'?: string;
5
+ static readonly discriminator: string | undefined;
6
+ static readonly attributeTypeMap: Array<{
7
+ name: string;
8
+ baseName: string;
9
+ type: string;
10
+ format: string;
11
+ }>;
12
+ static getAttributeTypeMap(): {
13
+ name: string;
14
+ baseName: string;
15
+ type: string;
16
+ format: string;
17
+ }[];
18
+ constructor();
19
+ }
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.JourneySchedule = void 0;
4
+ class JourneySchedule {
5
+ static getAttributeTypeMap() {
6
+ return JourneySchedule.attributeTypeMap;
7
+ }
8
+ constructor() {
9
+ }
10
+ }
11
+ exports.JourneySchedule = JourneySchedule;
12
+ JourneySchedule.discriminator = undefined;
13
+ JourneySchedule.attributeTypeMap = [
14
+ {
15
+ "name": "start_at",
16
+ "baseName": "start_at",
17
+ "type": "string",
18
+ "format": ""
19
+ },
20
+ {
21
+ "name": "stop_at",
22
+ "baseName": "stop_at",
23
+ "type": "string",
24
+ "format": ""
25
+ },
26
+ {
27
+ "name": "error",
28
+ "baseName": "error",
29
+ "type": "string",
30
+ "format": ""
31
+ }
32
+ ];
33
+ //# sourceMappingURL=JourneySchedule.js.map