@pushwoosh/rpc-v2-http-api-data 0.1.404 → 0.1.405
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/accounts.d.ts +2 -1
- package/api_tokens.d.ts +3 -1
- package/applications_configurations.d.ts +2 -1
- package/events.d.ts +3 -1
- package/filters.d.ts +2 -1
- package/google_api.d.ts +2 -1
- package/google_protobuf.d.ts +3 -1
- package/messages.d.ts +2 -1
- package/package.json +1 -1
- package/pushwoosh_channels_messagingApi_v2.d.ts +19 -8
- package/pushwoosh_objects_filters_v1.d.ts +64 -22
- package/pushwoosh_objects_restrictionValues_v1.d.ts +6 -2
package/accounts.d.ts
CHANGED
|
@@ -233,7 +233,8 @@ export type EmailContent_kind = EmailContent_kind_unlayer | EmailContent_kind_pu
|
|
|
233
233
|
export type EmailContent = {
|
|
234
234
|
senderInfo: EmailContent_SenderInfo;
|
|
235
235
|
subject: Record<string, string>;
|
|
236
|
-
|
|
236
|
+
kind: EmailContent_kind;
|
|
237
|
+
};
|
|
237
238
|
export type GetEmailTemplateRequest = {
|
|
238
239
|
code?: string;
|
|
239
240
|
};
|
package/api_tokens.d.ts
CHANGED
|
@@ -106,7 +106,9 @@ export type GrantRightOnApplicationRequest_kind_messageGroups = {
|
|
|
106
106
|
messageGroups: GrantRightOnApplicationRequest_MessageGroups;
|
|
107
107
|
};
|
|
108
108
|
export type GrantRightOnApplicationRequest_kind = GrantRightOnApplicationRequest_kind_modifyAccount | GrantRightOnApplicationRequest_kind_modifyApplication | GrantRightOnApplicationRequest_kind_modifyTag | GrantRightOnApplicationRequest_kind_modifyMessage | GrantRightOnApplicationRequest_kind_messageApplications | GrantRightOnApplicationRequest_kind_messageGroups;
|
|
109
|
-
export type GrantRightOnApplicationRequest = {
|
|
109
|
+
export type GrantRightOnApplicationRequest = {
|
|
110
|
+
kind: GrantRightOnApplicationRequest_kind;
|
|
111
|
+
};
|
|
110
112
|
export type GrantRightOnApplicationResponse = {};
|
|
111
113
|
export type GrantMessageRightAllRequest = {
|
|
112
114
|
code?: string;
|
|
@@ -121,7 +121,8 @@ export type ConfigurationRequest_kind_firefoxConfiguration = {
|
|
|
121
121
|
export type ConfigurationRequest_kind = ConfigurationRequest_kind_iosTokenConfiguration | ConfigurationRequest_kind_androidConfiguration | ConfigurationRequest_kind_chromeConfiguration | ConfigurationRequest_kind_emailConfiguration | ConfigurationRequest_kind_xiaomiConfiguration | ConfigurationRequest_kind_huaweiConfiguration | ConfigurationRequest_kind_safariConfiguration | ConfigurationRequest_kind_windowsConfiguration | ConfigurationRequest_kind_amazonConfiguration | ConfigurationRequest_kind_osxConfiguration | ConfigurationRequest_kind_iosConfiguration | ConfigurationRequest_kind_firefoxConfiguration;
|
|
122
122
|
export type ConfigurationRequest = {
|
|
123
123
|
code?: string;
|
|
124
|
-
|
|
124
|
+
kind: ConfigurationRequest_kind;
|
|
125
|
+
};
|
|
125
126
|
export type ConfigurationResponse = {};
|
|
126
127
|
export type EnablePlatformRequest = {
|
|
127
128
|
code?: string;
|
package/events.d.ts
CHANGED
|
@@ -115,7 +115,9 @@ export type Value_kind_timestamp = {
|
|
|
115
115
|
timestamp: Date;
|
|
116
116
|
};
|
|
117
117
|
export type Value_kind = Value_kind_string | Value_kind_integer | Value_kind_float | Value_kind_bool | Value_kind_list | Value_kind_timestamp;
|
|
118
|
-
export type Value = {
|
|
118
|
+
export type Value = {
|
|
119
|
+
kind: Value_kind;
|
|
120
|
+
};
|
|
119
121
|
export type AttributeCondition_Operator = 'OPERATOR_UNSPECIFIED' | 'EQ' | 'NOT_EQ' | 'GTE' | 'LTE' | 'BETWEEN' | 'IN' | 'NOT_IN';
|
|
120
122
|
export type AttributeCondition = {
|
|
121
123
|
name: string;
|
package/filters.d.ts
CHANGED
package/google_api.d.ts
CHANGED
package/google_protobuf.d.ts
CHANGED
|
@@ -219,7 +219,9 @@ export type Value_kind_listValue = {
|
|
|
219
219
|
listValue: ListValue;
|
|
220
220
|
};
|
|
221
221
|
export type Value_kind = Value_kind_nullValue | Value_kind_numberValue | Value_kind_stringValue | Value_kind_boolValue | Value_kind_structValue | Value_kind_listValue;
|
|
222
|
-
export type Value = {
|
|
222
|
+
export type Value = {
|
|
223
|
+
kind: Value_kind;
|
|
224
|
+
};
|
|
223
225
|
export type NullValue = 'NULL_VALUE';
|
|
224
226
|
export type ListValue = {
|
|
225
227
|
values: Value[];
|
package/messages.d.ts
CHANGED
|
@@ -43,7 +43,8 @@ export type Message = {
|
|
|
43
43
|
createdDate: Date;
|
|
44
44
|
properties: Record<string, string>;
|
|
45
45
|
schedulingType: Message_SchedulingType;
|
|
46
|
-
|
|
46
|
+
info: Message_info;
|
|
47
|
+
};
|
|
47
48
|
export type ListMessagesRequest_OrderBy = 'NAME' | 'CREATED' | 'SEND_DATE';
|
|
48
49
|
export type ListMessagesRequest_OrderDirection = 'ASC' | 'DESC';
|
|
49
50
|
export type ListMessagesRequest = {
|
package/package.json
CHANGED
|
@@ -15,7 +15,9 @@ export type NotifyRequest_kind_transactional = {
|
|
|
15
15
|
transactional: NotifyTransactional;
|
|
16
16
|
};
|
|
17
17
|
export type NotifyRequest_kind = NotifyRequest_kind_segment | NotifyRequest_kind_transactional;
|
|
18
|
-
export type NotifyRequest = {
|
|
18
|
+
export type NotifyRequest = {
|
|
19
|
+
kind: NotifyRequest_kind;
|
|
20
|
+
};
|
|
19
21
|
export type NotifyResponse = {
|
|
20
22
|
result: NotifyResult;
|
|
21
23
|
};
|
|
@@ -54,7 +56,8 @@ export type NotifySegment = {
|
|
|
54
56
|
payload: Payload;
|
|
55
57
|
frequencyCapping: FrequencyCapping;
|
|
56
58
|
campaign: string;
|
|
57
|
-
|
|
59
|
+
target: NotifySegment_target;
|
|
60
|
+
};
|
|
58
61
|
export type NotifyTransactional_HwidsList = {
|
|
59
62
|
list: string[];
|
|
60
63
|
};
|
|
@@ -89,7 +92,8 @@ export type NotifyTransactional = {
|
|
|
89
92
|
returnUnknownIdentifiers: boolean;
|
|
90
93
|
frequencyCapping: FrequencyCapping;
|
|
91
94
|
campaign: string;
|
|
92
|
-
|
|
95
|
+
target: NotifyTransactional_target;
|
|
96
|
+
};
|
|
93
97
|
export type Schedule_PastTimezonesBehaviour = 'PAST_TIMEZONES_BEHAVIOUR_DEFAULT' | 'PAST_TIMEZONES_BEHAVIOUR_SEND_IMMEDIATELY' | 'PAST_TIMEZONES_BEHAVIOUR_DO_NOT_SEND' | 'PAST_TIMEZONES_BEHAVIOUR_NEXT_DAY';
|
|
94
98
|
export type Schedule_sendDate_at = {
|
|
95
99
|
$: 'at';
|
|
@@ -103,7 +107,8 @@ export type Schedule_sendDate = Schedule_sendDate_at | Schedule_sendDate_after;
|
|
|
103
107
|
export type Schedule = {
|
|
104
108
|
followUserTimezone: boolean;
|
|
105
109
|
pastTimezonesBehaviour: Schedule_PastTimezonesBehaviour;
|
|
106
|
-
|
|
110
|
+
sendDate: Schedule_sendDate;
|
|
111
|
+
};
|
|
107
112
|
export type FrequencyCapping = {
|
|
108
113
|
days: number;
|
|
109
114
|
count: number;
|
|
@@ -131,7 +136,9 @@ export type RichMedia_kind_url = {
|
|
|
131
136
|
url: string;
|
|
132
137
|
};
|
|
133
138
|
export type RichMedia_kind = RichMedia_kind_code | RichMedia_kind_url;
|
|
134
|
-
export type RichMedia = {
|
|
139
|
+
export type RichMedia = {
|
|
140
|
+
kind: RichMedia_kind;
|
|
141
|
+
};
|
|
135
142
|
export type DeepLink = {
|
|
136
143
|
code: string;
|
|
137
144
|
params: Record<string, string>;
|
|
@@ -149,7 +156,9 @@ export type OpenAction_kind_link = {
|
|
|
149
156
|
link: Link;
|
|
150
157
|
};
|
|
151
158
|
export type OpenAction_kind = OpenAction_kind_richMedia | OpenAction_kind_deepLink | OpenAction_kind_link;
|
|
152
|
-
export type OpenAction = {
|
|
159
|
+
export type OpenAction = {
|
|
160
|
+
kind: OpenAction_kind;
|
|
161
|
+
};
|
|
153
162
|
export type Inbox = {
|
|
154
163
|
imageUrl: string;
|
|
155
164
|
expirationDate: Date;
|
|
@@ -349,7 +358,8 @@ export type Content_PlatformPropertiesWindows = {
|
|
|
349
358
|
timeToLive: Duration;
|
|
350
359
|
openAction: OpenAction;
|
|
351
360
|
customData: object;
|
|
352
|
-
|
|
361
|
+
content: Content_PlatformPropertiesWindows_content;
|
|
362
|
+
};
|
|
353
363
|
export type Content_PlatformPropertiesEmail = {};
|
|
354
364
|
export type Content_PlatformPropertiesSMS = {};
|
|
355
365
|
export type Content = {
|
|
@@ -382,4 +392,5 @@ export type Payload = {
|
|
|
382
392
|
preset: string;
|
|
383
393
|
metaData: object;
|
|
384
394
|
dynamicContentPlaceholders: Record<string, string>;
|
|
385
|
-
|
|
395
|
+
kind: Payload_kind;
|
|
396
|
+
};
|
|
@@ -164,7 +164,9 @@ export type LogicExpression_Field_kind_CondUpdated = {
|
|
|
164
164
|
CondUpdated: LogicExpression_Field_Updated;
|
|
165
165
|
};
|
|
166
166
|
export type LogicExpression_Field_kind = LogicExpression_Field_kind_CondID | LogicExpression_Field_kind_CondCode | LogicExpression_Field_kind_CondAccountID | LogicExpression_Field_kind_CondName | LogicExpression_Field_kind_CondApplicationID | LogicExpression_Field_kind_CondIsFiltrationInProgress | LogicExpression_Field_kind_CondFiltrationStartedAt | LogicExpression_Field_kind_CondFiltrationLastFilteredAt | LogicExpression_Field_kind_CondFiltrationLastCheckedAt | LogicExpression_Field_kind_CondFiltrationScheduledAt | LogicExpression_Field_kind_CondCheckerScheduledAt | LogicExpression_Field_kind_CondIsSystem | LogicExpression_Field_kind_CondExpirationDate | LogicExpression_Field_kind_CondCreated | LogicExpression_Field_kind_CondFilterExpressionRaw | LogicExpression_Field_kind_CondFiltrationID | LogicExpression_Field_kind_CondUpdated;
|
|
167
|
-
export type LogicExpression_Field = {
|
|
167
|
+
export type LogicExpression_Field = {
|
|
168
|
+
kind: LogicExpression_Field_kind;
|
|
169
|
+
};
|
|
168
170
|
export type LogicExpression_kind_binary = {
|
|
169
171
|
$: 'binary';
|
|
170
172
|
binary: LogicExpression_Binary;
|
|
@@ -174,7 +176,9 @@ export type LogicExpression_kind_field = {
|
|
|
174
176
|
field: LogicExpression_Field;
|
|
175
177
|
};
|
|
176
178
|
export type LogicExpression_kind = LogicExpression_kind_binary | LogicExpression_kind_field;
|
|
177
|
-
export type LogicExpression = {
|
|
179
|
+
export type LogicExpression = {
|
|
180
|
+
kind: LogicExpression_kind;
|
|
181
|
+
};
|
|
178
182
|
export type Sort = {
|
|
179
183
|
field: string;
|
|
180
184
|
order: SortOrder;
|
|
@@ -444,7 +448,9 @@ export type FilterExpression_BestTimeToSend_Value_kind_any = {
|
|
|
444
448
|
any: FilterExpression_BestTimeToSend_Value_Any;
|
|
445
449
|
};
|
|
446
450
|
export type FilterExpression_BestTimeToSend_Value_kind = FilterExpression_BestTimeToSend_Value_kind_eq | FilterExpression_BestTimeToSend_Value_kind_neq | FilterExpression_BestTimeToSend_Value_kind_lte | FilterExpression_BestTimeToSend_Value_kind_gte | FilterExpression_BestTimeToSend_Value_kind_any;
|
|
447
|
-
export type FilterExpression_BestTimeToSend_Value = {
|
|
451
|
+
export type FilterExpression_BestTimeToSend_Value = {
|
|
452
|
+
kind: FilterExpression_BestTimeToSend_Value_kind;
|
|
453
|
+
};
|
|
448
454
|
export type FilterExpression_BestTimeToSend = {
|
|
449
455
|
applications: string[];
|
|
450
456
|
value: FilterExpression_BestTimeToSend_Value;
|
|
@@ -526,7 +532,9 @@ export type FilterExpression_Event_Date_kind_daysAgo = {
|
|
|
526
532
|
daysAgo: FilterExpression_Event_Date_DaysAgo;
|
|
527
533
|
};
|
|
528
534
|
export type FilterExpression_Event_Date_kind = FilterExpression_Event_Date_kind_eq | FilterExpression_Event_Date_kind_neq | FilterExpression_Event_Date_kind_lte | FilterExpression_Event_Date_kind_gte | FilterExpression_Event_Date_kind_in | FilterExpression_Event_Date_kind_notIn | FilterExpression_Event_Date_kind_between | FilterExpression_Event_Date_kind_exists | FilterExpression_Event_Date_kind_daysAgo;
|
|
529
|
-
export type FilterExpression_Event_Date = {
|
|
535
|
+
export type FilterExpression_Event_Date = {
|
|
536
|
+
kind: FilterExpression_Event_Date_kind;
|
|
537
|
+
};
|
|
530
538
|
export type FilterExpression_Event_Attribute_Integer_Eq = {
|
|
531
539
|
value: number;
|
|
532
540
|
};
|
|
@@ -585,7 +593,9 @@ export type FilterExpression_Event_Attribute_Integer_kind_exists = {
|
|
|
585
593
|
exists: FilterExpression_Event_Attribute_Integer_Exists;
|
|
586
594
|
};
|
|
587
595
|
export type FilterExpression_Event_Attribute_Integer_kind = FilterExpression_Event_Attribute_Integer_kind_eq | FilterExpression_Event_Attribute_Integer_kind_neq | FilterExpression_Event_Attribute_Integer_kind_lte | FilterExpression_Event_Attribute_Integer_kind_gte | FilterExpression_Event_Attribute_Integer_kind_in | FilterExpression_Event_Attribute_Integer_kind_notIn | FilterExpression_Event_Attribute_Integer_kind_between | FilterExpression_Event_Attribute_Integer_kind_exists;
|
|
588
|
-
export type FilterExpression_Event_Attribute_Integer = {
|
|
596
|
+
export type FilterExpression_Event_Attribute_Integer = {
|
|
597
|
+
kind: FilterExpression_Event_Attribute_Integer_kind;
|
|
598
|
+
};
|
|
589
599
|
export type FilterExpression_Event_Attribute_String_Eq = {
|
|
590
600
|
value: string;
|
|
591
601
|
};
|
|
@@ -643,7 +653,9 @@ export type FilterExpression_Event_Attribute_String_kind_contains = {
|
|
|
643
653
|
contains: FilterExpression_Event_Attribute_String_Contains;
|
|
644
654
|
};
|
|
645
655
|
export type FilterExpression_Event_Attribute_String_kind = FilterExpression_Event_Attribute_String_kind_eq | FilterExpression_Event_Attribute_String_kind_neq | FilterExpression_Event_Attribute_String_kind_in | FilterExpression_Event_Attribute_String_kind_notIn | FilterExpression_Event_Attribute_String_kind_exists | FilterExpression_Event_Attribute_String_kind_startsWith | FilterExpression_Event_Attribute_String_kind_endsWith | FilterExpression_Event_Attribute_String_kind_contains;
|
|
646
|
-
export type FilterExpression_Event_Attribute_String = {
|
|
656
|
+
export type FilterExpression_Event_Attribute_String = {
|
|
657
|
+
kind: FilterExpression_Event_Attribute_String_kind;
|
|
658
|
+
};
|
|
647
659
|
export type FilterExpression_Event_Attribute_List_In = {
|
|
648
660
|
values: string[];
|
|
649
661
|
};
|
|
@@ -666,7 +678,9 @@ export type FilterExpression_Event_Attribute_List_kind_exists = {
|
|
|
666
678
|
exists: FilterExpression_Event_Attribute_List_Exists;
|
|
667
679
|
};
|
|
668
680
|
export type FilterExpression_Event_Attribute_List_kind = FilterExpression_Event_Attribute_List_kind_in | FilterExpression_Event_Attribute_List_kind_notIn | FilterExpression_Event_Attribute_List_kind_exists;
|
|
669
|
-
export type FilterExpression_Event_Attribute_List = {
|
|
681
|
+
export type FilterExpression_Event_Attribute_List = {
|
|
682
|
+
kind: FilterExpression_Event_Attribute_List_kind;
|
|
683
|
+
};
|
|
670
684
|
export type FilterExpression_Event_Attribute_Date_Eq = {
|
|
671
685
|
value: Date;
|
|
672
686
|
};
|
|
@@ -735,7 +749,9 @@ export type FilterExpression_Event_Attribute_Date_kind_daysAgo = {
|
|
|
735
749
|
daysAgo: FilterExpression_Event_Attribute_Date_DaysAgo;
|
|
736
750
|
};
|
|
737
751
|
export type FilterExpression_Event_Attribute_Date_kind = FilterExpression_Event_Attribute_Date_kind_eq | FilterExpression_Event_Attribute_Date_kind_neq | FilterExpression_Event_Attribute_Date_kind_lte | FilterExpression_Event_Attribute_Date_kind_gte | FilterExpression_Event_Attribute_Date_kind_in | FilterExpression_Event_Attribute_Date_kind_notIn | FilterExpression_Event_Attribute_Date_kind_between | FilterExpression_Event_Attribute_Date_kind_exists | FilterExpression_Event_Attribute_Date_kind_daysAgo;
|
|
738
|
-
export type FilterExpression_Event_Attribute_Date = {
|
|
752
|
+
export type FilterExpression_Event_Attribute_Date = {
|
|
753
|
+
kind: FilterExpression_Event_Attribute_Date_kind;
|
|
754
|
+
};
|
|
739
755
|
export type FilterExpression_Event_Attribute_Boolean_Eq = {
|
|
740
756
|
value: boolean;
|
|
741
757
|
};
|
|
@@ -758,7 +774,9 @@ export type FilterExpression_Event_Attribute_Boolean_kind_exists = {
|
|
|
758
774
|
exists: FilterExpression_Event_Attribute_Boolean_Exists;
|
|
759
775
|
};
|
|
760
776
|
export type FilterExpression_Event_Attribute_Boolean_kind = FilterExpression_Event_Attribute_Boolean_kind_eq | FilterExpression_Event_Attribute_Boolean_kind_neq | FilterExpression_Event_Attribute_Boolean_kind_exists;
|
|
761
|
-
export type FilterExpression_Event_Attribute_Boolean = {
|
|
777
|
+
export type FilterExpression_Event_Attribute_Boolean = {
|
|
778
|
+
kind: FilterExpression_Event_Attribute_Boolean_kind;
|
|
779
|
+
};
|
|
762
780
|
export type FilterExpression_Event_Attribute_Price_Eq = {
|
|
763
781
|
value: number;
|
|
764
782
|
};
|
|
@@ -817,7 +835,9 @@ export type FilterExpression_Event_Attribute_Price_kind_exists = {
|
|
|
817
835
|
exists: FilterExpression_Event_Attribute_Price_Exists;
|
|
818
836
|
};
|
|
819
837
|
export type FilterExpression_Event_Attribute_Price_kind = FilterExpression_Event_Attribute_Price_kind_eq | FilterExpression_Event_Attribute_Price_kind_neq | FilterExpression_Event_Attribute_Price_kind_lte | FilterExpression_Event_Attribute_Price_kind_gte | FilterExpression_Event_Attribute_Price_kind_in | FilterExpression_Event_Attribute_Price_kind_notIn | FilterExpression_Event_Attribute_Price_kind_between | FilterExpression_Event_Attribute_Price_kind_exists;
|
|
820
|
-
export type FilterExpression_Event_Attribute_Price = {
|
|
838
|
+
export type FilterExpression_Event_Attribute_Price = {
|
|
839
|
+
kind: FilterExpression_Event_Attribute_Price_kind;
|
|
840
|
+
};
|
|
821
841
|
export type FilterExpression_Event_Attribute_kind_integer = {
|
|
822
842
|
$: 'integer';
|
|
823
843
|
integer: FilterExpression_Event_Attribute_Integer;
|
|
@@ -845,7 +865,8 @@ export type FilterExpression_Event_Attribute_kind_price = {
|
|
|
845
865
|
export type FilterExpression_Event_Attribute_kind = FilterExpression_Event_Attribute_kind_integer | FilterExpression_Event_Attribute_kind_string | FilterExpression_Event_Attribute_kind_list | FilterExpression_Event_Attribute_kind_date | FilterExpression_Event_Attribute_kind_boolean | FilterExpression_Event_Attribute_kind_price;
|
|
846
866
|
export type FilterExpression_Event_Attribute = {
|
|
847
867
|
name: string;
|
|
848
|
-
|
|
868
|
+
kind: FilterExpression_Event_Attribute_kind;
|
|
869
|
+
};
|
|
849
870
|
export type FilterExpression_Event = {
|
|
850
871
|
application: string;
|
|
851
872
|
event: string;
|
|
@@ -878,7 +899,9 @@ export type FilterExpression_Updated_Condition_kind_between = {
|
|
|
878
899
|
between: FilterExpression_Updated_Condition_Between;
|
|
879
900
|
};
|
|
880
901
|
export type FilterExpression_Updated_Condition_kind = FilterExpression_Updated_Condition_kind_lte | FilterExpression_Updated_Condition_kind_gte | FilterExpression_Updated_Condition_kind_between;
|
|
881
|
-
export type FilterExpression_Updated_Condition = {
|
|
902
|
+
export type FilterExpression_Updated_Condition = {
|
|
903
|
+
kind: FilterExpression_Updated_Condition_kind;
|
|
904
|
+
};
|
|
882
905
|
export type FilterExpression_Updated = {
|
|
883
906
|
application: string;
|
|
884
907
|
condition: FilterExpression_Updated_Condition;
|
|
@@ -941,7 +964,9 @@ export type FilterExpression_Tag_Integer_kind_exists = {
|
|
|
941
964
|
exists: FilterExpression_Tag_Integer_Exists;
|
|
942
965
|
};
|
|
943
966
|
export type FilterExpression_Tag_Integer_kind = FilterExpression_Tag_Integer_kind_eq | FilterExpression_Tag_Integer_kind_neq | FilterExpression_Tag_Integer_kind_lte | FilterExpression_Tag_Integer_kind_gte | FilterExpression_Tag_Integer_kind_in | FilterExpression_Tag_Integer_kind_notIn | FilterExpression_Tag_Integer_kind_between | FilterExpression_Tag_Integer_kind_exists;
|
|
944
|
-
export type FilterExpression_Tag_Integer = {
|
|
967
|
+
export type FilterExpression_Tag_Integer = {
|
|
968
|
+
kind: FilterExpression_Tag_Integer_kind;
|
|
969
|
+
};
|
|
945
970
|
export type FilterExpression_Tag_String_Eq = {
|
|
946
971
|
value: string;
|
|
947
972
|
};
|
|
@@ -999,7 +1024,9 @@ export type FilterExpression_Tag_String_kind_contains = {
|
|
|
999
1024
|
contains: FilterExpression_Tag_String_Contains;
|
|
1000
1025
|
};
|
|
1001
1026
|
export type FilterExpression_Tag_String_kind = FilterExpression_Tag_String_kind_eq | FilterExpression_Tag_String_kind_neq | FilterExpression_Tag_String_kind_in | FilterExpression_Tag_String_kind_notIn | FilterExpression_Tag_String_kind_exists | FilterExpression_Tag_String_kind_startsWith | FilterExpression_Tag_String_kind_endsWith | FilterExpression_Tag_String_kind_contains;
|
|
1002
|
-
export type FilterExpression_Tag_String = {
|
|
1027
|
+
export type FilterExpression_Tag_String = {
|
|
1028
|
+
kind: FilterExpression_Tag_String_kind;
|
|
1029
|
+
};
|
|
1003
1030
|
export type FilterExpression_Tag_List_In = {
|
|
1004
1031
|
values: string[];
|
|
1005
1032
|
};
|
|
@@ -1022,7 +1049,9 @@ export type FilterExpression_Tag_List_kind_exists = {
|
|
|
1022
1049
|
exists: FilterExpression_Tag_List_Exists;
|
|
1023
1050
|
};
|
|
1024
1051
|
export type FilterExpression_Tag_List_kind = FilterExpression_Tag_List_kind_in | FilterExpression_Tag_List_kind_notIn | FilterExpression_Tag_List_kind_exists;
|
|
1025
|
-
export type FilterExpression_Tag_List = {
|
|
1052
|
+
export type FilterExpression_Tag_List = {
|
|
1053
|
+
kind: FilterExpression_Tag_List_kind;
|
|
1054
|
+
};
|
|
1026
1055
|
export type FilterExpression_Tag_Date_Eq = {
|
|
1027
1056
|
value: Date;
|
|
1028
1057
|
};
|
|
@@ -1091,7 +1120,9 @@ export type FilterExpression_Tag_Date_kind_daysAgo = {
|
|
|
1091
1120
|
daysAgo: FilterExpression_Tag_Date_DaysAgo;
|
|
1092
1121
|
};
|
|
1093
1122
|
export type FilterExpression_Tag_Date_kind = FilterExpression_Tag_Date_kind_eq | FilterExpression_Tag_Date_kind_neq | FilterExpression_Tag_Date_kind_lte | FilterExpression_Tag_Date_kind_gte | FilterExpression_Tag_Date_kind_in | FilterExpression_Tag_Date_kind_notIn | FilterExpression_Tag_Date_kind_between | FilterExpression_Tag_Date_kind_exists | FilterExpression_Tag_Date_kind_daysAgo;
|
|
1094
|
-
export type FilterExpression_Tag_Date = {
|
|
1123
|
+
export type FilterExpression_Tag_Date = {
|
|
1124
|
+
kind: FilterExpression_Tag_Date_kind;
|
|
1125
|
+
};
|
|
1095
1126
|
export type FilterExpression_Tag_Boolean_Eq = {
|
|
1096
1127
|
value: boolean;
|
|
1097
1128
|
};
|
|
@@ -1114,7 +1145,9 @@ export type FilterExpression_Tag_Boolean_kind_exists = {
|
|
|
1114
1145
|
exists: FilterExpression_Tag_Boolean_Exists;
|
|
1115
1146
|
};
|
|
1116
1147
|
export type FilterExpression_Tag_Boolean_kind = FilterExpression_Tag_Boolean_kind_eq | FilterExpression_Tag_Boolean_kind_neq | FilterExpression_Tag_Boolean_kind_exists;
|
|
1117
|
-
export type FilterExpression_Tag_Boolean = {
|
|
1148
|
+
export type FilterExpression_Tag_Boolean = {
|
|
1149
|
+
kind: FilterExpression_Tag_Boolean_kind;
|
|
1150
|
+
};
|
|
1118
1151
|
export type FilterExpression_Tag_Price_Eq = {
|
|
1119
1152
|
value: number;
|
|
1120
1153
|
};
|
|
@@ -1173,7 +1206,9 @@ export type FilterExpression_Tag_Price_kind_exists = {
|
|
|
1173
1206
|
exists: FilterExpression_Tag_Price_Exists;
|
|
1174
1207
|
};
|
|
1175
1208
|
export type FilterExpression_Tag_Price_kind = FilterExpression_Tag_Price_kind_eq | FilterExpression_Tag_Price_kind_neq | FilterExpression_Tag_Price_kind_lte | FilterExpression_Tag_Price_kind_gte | FilterExpression_Tag_Price_kind_in | FilterExpression_Tag_Price_kind_notIn | FilterExpression_Tag_Price_kind_between | FilterExpression_Tag_Price_kind_exists;
|
|
1176
|
-
export type FilterExpression_Tag_Price = {
|
|
1209
|
+
export type FilterExpression_Tag_Price = {
|
|
1210
|
+
kind: FilterExpression_Tag_Price_kind;
|
|
1211
|
+
};
|
|
1177
1212
|
export type FilterExpression_Tag_Version_Eq = {
|
|
1178
1213
|
value: string;
|
|
1179
1214
|
};
|
|
@@ -1232,7 +1267,9 @@ export type FilterExpression_Tag_Version_kind_exists = {
|
|
|
1232
1267
|
exists: FilterExpression_Tag_Version_Exists;
|
|
1233
1268
|
};
|
|
1234
1269
|
export type FilterExpression_Tag_Version_kind = FilterExpression_Tag_Version_kind_eq | FilterExpression_Tag_Version_kind_neq | FilterExpression_Tag_Version_kind_lte | FilterExpression_Tag_Version_kind_gte | FilterExpression_Tag_Version_kind_in | FilterExpression_Tag_Version_kind_notIn | FilterExpression_Tag_Version_kind_between | FilterExpression_Tag_Version_kind_exists;
|
|
1235
|
-
export type FilterExpression_Tag_Version = {
|
|
1270
|
+
export type FilterExpression_Tag_Version = {
|
|
1271
|
+
kind: FilterExpression_Tag_Version_kind;
|
|
1272
|
+
};
|
|
1236
1273
|
export type FilterExpression_Tag_Timezone_Eq = {
|
|
1237
1274
|
value: number;
|
|
1238
1275
|
};
|
|
@@ -1291,7 +1328,9 @@ export type FilterExpression_Tag_Timezone_kind_exists = {
|
|
|
1291
1328
|
exists: FilterExpression_Tag_Timezone_Exists;
|
|
1292
1329
|
};
|
|
1293
1330
|
export type FilterExpression_Tag_Timezone_kind = FilterExpression_Tag_Timezone_kind_eq | FilterExpression_Tag_Timezone_kind_neq | FilterExpression_Tag_Timezone_kind_lte | FilterExpression_Tag_Timezone_kind_gte | FilterExpression_Tag_Timezone_kind_in | FilterExpression_Tag_Timezone_kind_notIn | FilterExpression_Tag_Timezone_kind_between | FilterExpression_Tag_Timezone_kind_exists;
|
|
1294
|
-
export type FilterExpression_Tag_Timezone = {
|
|
1331
|
+
export type FilterExpression_Tag_Timezone = {
|
|
1332
|
+
kind: FilterExpression_Tag_Timezone_kind;
|
|
1333
|
+
};
|
|
1295
1334
|
export type FilterExpression_Tag_kind_integer = {
|
|
1296
1335
|
$: 'integer';
|
|
1297
1336
|
integer: FilterExpression_Tag_Integer;
|
|
@@ -1328,7 +1367,8 @@ export type FilterExpression_Tag_kind = FilterExpression_Tag_kind_integer | Filt
|
|
|
1328
1367
|
export type FilterExpression_Tag = {
|
|
1329
1368
|
name: string;
|
|
1330
1369
|
application: string;
|
|
1331
|
-
|
|
1370
|
+
kind: FilterExpression_Tag_kind;
|
|
1371
|
+
};
|
|
1332
1372
|
export type FilterExpression_TagDateMatch = {
|
|
1333
1373
|
name: string;
|
|
1334
1374
|
application: string;
|
|
@@ -1373,4 +1413,6 @@ export type FilterExpression_kind_tagDateMatch = {
|
|
|
1373
1413
|
tagDateMatch: FilterExpression_TagDateMatch;
|
|
1374
1414
|
};
|
|
1375
1415
|
export type FilterExpression_kind = FilterExpression_kind_operation | FilterExpression_kind_application | FilterExpression_kind_tag | FilterExpression_kind_geo | FilterExpression_kind_static | FilterExpression_kind_event | FilterExpression_kind_updated | FilterExpression_kind_bestTimeToSend | FilterExpression_kind_tagDateMatch;
|
|
1376
|
-
export type FilterExpression = {
|
|
1416
|
+
export type FilterExpression = {
|
|
1417
|
+
kind: FilterExpression_kind;
|
|
1418
|
+
};
|
|
@@ -965,7 +965,9 @@ export type LogicExpression_Field_kind_CondAllowCjAlternativeGoalsStats = {
|
|
|
965
965
|
CondAllowCjAlternativeGoalsStats: LogicExpression_Field_AllowCjAlternativeGoalsStats;
|
|
966
966
|
};
|
|
967
967
|
export type LogicExpression_Field_kind = LogicExpression_Field_kind_CondID | LogicExpression_Field_kind_CondIsLocked | LogicExpression_Field_kind_CondMaxCampaigns | LogicExpression_Field_kind_CondMaxDeeplinks | LogicExpression_Field_kind_CondMaxApplicationGroups | LogicExpression_Field_kind_CondMaxApps | LogicExpression_Field_kind_CondMaxTags | LogicExpression_Field_kind_CondMaxGeozones | LogicExpression_Field_kind_CondMaxDevices | LogicExpression_Field_kind_CondMaxUsers | LogicExpression_Field_kind_CondMaxApiTokens | LogicExpression_Field_kind_CondMaxPresets | LogicExpression_Field_kind_CondMaxTestDevices | LogicExpression_Field_kind_CondMaxGeozoneRange | LogicExpression_Field_kind_CondMaxRssFeeds | LogicExpression_Field_kind_CondMaxAutoPushes | LogicExpression_Field_kind_CondMaxIOSCategories | LogicExpression_Field_kind_CondMaxTwitterFeeds | LogicExpression_Field_kind_CondMaxInapps | LogicExpression_Field_kind_CondMaxEvents | LogicExpression_Field_kind_CondMaxCreateMessage | LogicExpression_Field_kind_CondMaxRichmedia | LogicExpression_Field_kind_CondMaxPreparedFilters | LogicExpression_Field_kind_CondMaxFilters | LogicExpression_Field_kind_CondDevicesInactivityLimit | LogicExpression_Field_kind_CondAllowApi | LogicExpression_Field_kind_CondAllowStatsAccess | LogicExpression_Field_kind_CondAllowApiStatsAccess | LogicExpression_Field_kind_CondAllowGeozoneApi | LogicExpression_Field_kind_CondAllowABTests | LogicExpression_Field_kind_CondAllowBackup | LogicExpression_Field_kind_CondAllowApplicationApi | LogicExpression_Field_kind_CondAllowRemotePage | LogicExpression_Field_kind_CondAllowScheduling | LogicExpression_Field_kind_CondAllowCustomData | LogicExpression_Field_kind_CondAllowMultiLanguage | LogicExpression_Field_kind_CondAllowAutoConfig | LogicExpression_Field_kind_CondAllowCsvMessage | LogicExpression_Field_kind_CondAllowCampaignApi | LogicExpression_Field_kind_CondAllowPushHistoryApi | LogicExpression_Field_kind_CondAllowTagsApi | LogicExpression_Field_kind_CondAllowPushByUser | LogicExpression_Field_kind_CondAllowFilterApi | LogicExpression_Field_kind_CondAllowTwoFactorAuth | LogicExpression_Field_kind_CondAllowBroadcastMessageSegmentation | LogicExpression_Field_kind_CondAllowPushOnEvent | LogicExpression_Field_kind_CondAllowCompileFilter | LogicExpression_Field_kind_CondMinSendRate | LogicExpression_Field_kind_CondMaxSendRate | LogicExpression_Field_kind_CondAllowSendToGeozone | LogicExpression_Field_kind_CondAllowUseIosNewsstand | LogicExpression_Field_kind_CondAllowGetUsersDetails | LogicExpression_Field_kind_CondAllowGoalTracking | LogicExpression_Field_kind_CondAllowIePlatformUsage | LogicExpression_Field_kind_CondAllowInbox | LogicExpression_Field_kind_CondMaxEmailTemplates | LogicExpression_Field_kind_CondMaxUserSpecificTags | LogicExpression_Field_kind_CondAllowGdpr | LogicExpression_Field_kind_CondMaxVerifyingEmails | LogicExpression_Field_kind_CondMaxVerifyingDomains | LogicExpression_Field_kind_CondAllowSendExternalStats | LogicExpression_Field_kind_CondAllowCustomRssPollingInterval | LogicExpression_Field_kind_CondAllowMetadata | LogicExpression_Field_kind_CondMaxPushOnEventDelayInDays | LogicExpression_Field_kind_CondAllowEventStatisticsApi | LogicExpression_Field_kind_CondAllowTagNotSetFilter | LogicExpression_Field_kind_CondAllowDebugMode | LogicExpression_Field_kind_CondAllowFbMessenger | LogicExpression_Field_kind_CondAllowTrackUninstalls | LogicExpression_Field_kind_CondEmailRateCounterAggregatePeriod | LogicExpression_Field_kind_CondEmailBounceRateLimit | LogicExpression_Field_kind_CondEmailComplaintRateLimit | LogicExpression_Field_kind_CondAllowFrequencyCapping | LogicExpression_Field_kind_CondMaxUsersPerDevice | LogicExpression_Field_kind_CondEmailsFreeLimit | LogicExpression_Field_kind_CondEmailsLimited | LogicExpression_Field_kind_CondAllowContentTemplates | LogicExpression_Field_kind_CondAllowBaiduAndroidPlatformUsage | LogicExpression_Field_kind_CondMaxInboxTtlDays | LogicExpression_Field_kind_CondMessageHistoryStorePeriod | LogicExpression_Field_kind_CondAllowApiGetMessageLog | LogicExpression_Field_kind_CondDetailActionHistoryStorePeriod | LogicExpression_Field_kind_CondAllowCjWebhook | LogicExpression_Field_kind_CondAllowCjInapp | LogicExpression_Field_kind_CondAllowCjScheduledSegment | LogicExpression_Field_kind_CondAllowCjContentPersonalization | LogicExpression_Field_kind_CondAllowCjSetTags | LogicExpression_Field_kind_CondAllowCjDynamicDelay | LogicExpression_Field_kind_CondAllowCjSilentHours | LogicExpression_Field_kind_CondAllowCjFrequencyCapping | LogicExpression_Field_kind_CondAllowShowDeliveryStatistics | LogicExpression_Field_kind_CondAllowRFMSegments | LogicExpression_Field_kind_CondAllowBestTimeToSend | LogicExpression_Field_kind_CondAllowEventSegmentation | LogicExpression_Field_kind_CondAllowSegmentsGroups | LogicExpression_Field_kind_CondAllowCustomerJourney | LogicExpression_Field_kind_CondAllowCjSMS | LogicExpression_Field_kind_CondAllowCjApiEntry | LogicExpression_Field_kind_CondAllowCjDynamicSetTagsInUpdateProfile | LogicExpression_Field_kind_CondAllowCjAddBranchesInWaitForTrigger | LogicExpression_Field_kind_CondAllowEventsFunnel | LogicExpression_Field_kind_CondAllowChannelsSection | LogicExpression_Field_kind_CondAllowCjEmailBcc | LogicExpression_Field_kind_CondEmailFileStorePeriod | LogicExpression_Field_kind_CondAllowWhatsApp | LogicExpression_Field_kind_CondAllowCjAlternativeGoalsStats;
|
|
968
|
-
export type LogicExpression_Field = {
|
|
968
|
+
export type LogicExpression_Field = {
|
|
969
|
+
kind: LogicExpression_Field_kind;
|
|
970
|
+
};
|
|
969
971
|
export type LogicExpression_kind_binary = {
|
|
970
972
|
$: 'binary';
|
|
971
973
|
binary: LogicExpression_Binary;
|
|
@@ -975,7 +977,9 @@ export type LogicExpression_kind_field = {
|
|
|
975
977
|
field: LogicExpression_Field;
|
|
976
978
|
};
|
|
977
979
|
export type LogicExpression_kind = LogicExpression_kind_binary | LogicExpression_kind_field;
|
|
978
|
-
export type LogicExpression = {
|
|
980
|
+
export type LogicExpression = {
|
|
981
|
+
kind: LogicExpression_kind;
|
|
982
|
+
};
|
|
979
983
|
export type Sort = {
|
|
980
984
|
field: string;
|
|
981
985
|
order: SortOrder;
|