@pushwoosh/rpc-v2-http-api-data 0.1.883 → 0.1.885
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/account_groups.d.ts +9 -0
- package/account_invites.d.ts +2 -0
- package/account_overview.d.ts +21 -0
- package/account_users.d.ts +3 -0
- package/accounts.d.ts +29 -0
- package/accounts_get_auth_info.d.ts +4 -0
- package/api_tokens.d.ts +1 -0
- package/applications.d.ts +7 -0
- package/applications_alerts.d.ts +7 -1
- package/applications_groups.d.ts +2 -0
- package/applications_statistics.d.ts +28 -0
- package/categories.d.ts +1 -0
- package/cloud_pages.d.ts +2 -0
- package/data.js +330 -1314
- package/deeplinks.d.ts +3 -0
- package/devices.d.ts +5 -0
- package/email_categories.d.ts +3 -0
- package/emails_configurations.d.ts +1 -0
- package/events.d.ts +3 -0
- package/filters.d.ts +28 -0
- package/inapp_messages.d.ts +13 -0
- package/integrations.d.ts +38 -0
- package/ios_categories.d.ts +1 -0
- package/kakao_presets.d.ts +2 -0
- package/line_presets.d.ts +5 -0
- package/messages.d.ts +15 -2
- package/package.json +1 -1
- package/presets.d.ts +71 -0
- package/pushwoosh_accounts_alerts_v1.d.ts +2 -0
- package/pushwoosh_channels_messagingApi_v2.d.ts +51 -2
- package/pushwoosh_export_messages_v2.d.ts +17 -2
- package/pushwoosh_objects_filters_v1.d.ts +70 -11
- package/pushwoosh_objects_restrictionValues_v1.d.ts +86 -427
- package/pushwoosh_rpc_errors_v3.d.ts +20 -0
- package/pushwoosh_rpc_popup_forms_contents_v3.d.ts +48 -0
- package/pushwoosh_rpc_segments_v3.d.ts +54 -0
- package/referral_partners.d.ts +1 -0
- package/rich_medias.d.ts +6 -0
- package/sms_presets.d.ts +5 -0
- package/statistics_dashboards_widgets.d.ts +291 -3
- package/tags.d.ts +3 -0
- package/test_devices.d.ts +37 -0
- package/types.d.ts +6 -0
- package/whatsapp.d.ts +10 -0
- package/whatsapp_presets.d.ts +3 -0
|
@@ -1,16 +1,55 @@
|
|
|
1
1
|
import { RpcMethod } from './commonTypes';
|
|
2
|
+
/**
|
|
3
|
+
* This struct is used to avoid protoc compiler warnings about unused includes in case when
|
|
4
|
+
* there are no usage for timestamp.* and wrappers.*
|
|
5
|
+
* This can be removed if you figure out how to remove unused includes.
|
|
6
|
+
*/
|
|
2
7
|
export type __restrictionValue_collection_internal = {
|
|
3
8
|
f1: string;
|
|
4
9
|
f2: Date;
|
|
5
10
|
f3: RestrictionValue;
|
|
6
11
|
};
|
|
7
12
|
export type LogicExpression_Binary_Operator = 'INVALID' | 'AND' | 'OR';
|
|
13
|
+
/**
|
|
14
|
+
* BinaryExpression is a kind of expression that allows to combine
|
|
15
|
+
* two other expressions with application of some binary logic operator.
|
|
16
|
+
*/
|
|
8
17
|
export type LogicExpression_Binary = {
|
|
9
18
|
operator: LogicExpression_Binary_Operator;
|
|
10
19
|
left: LogicExpression;
|
|
11
20
|
right: LogicExpression;
|
|
12
21
|
};
|
|
13
|
-
export type LogicExpression_Field_Operator = 'INVALID'
|
|
22
|
+
export type LogicExpression_Field_Operator = 'INVALID'
|
|
23
|
+
/** field = value */
|
|
24
|
+
| 'EQ'
|
|
25
|
+
/** field != value */
|
|
26
|
+
| 'NEQ'
|
|
27
|
+
/** field in value */
|
|
28
|
+
| 'IN'
|
|
29
|
+
/** field > value */
|
|
30
|
+
| 'GT'
|
|
31
|
+
/** field >= value */
|
|
32
|
+
| 'GTE'
|
|
33
|
+
/** field < value */
|
|
34
|
+
| 'LT'
|
|
35
|
+
/** field <= value */
|
|
36
|
+
| 'LTE'
|
|
37
|
+
/** field like 'value%' */
|
|
38
|
+
| 'STARTS_WITH'
|
|
39
|
+
/** field like '%value' */
|
|
40
|
+
| 'ENDS_WITH'
|
|
41
|
+
/** field like '%value%' */
|
|
42
|
+
| 'LIKE'
|
|
43
|
+
/** field is null */
|
|
44
|
+
| 'IS_NULL'
|
|
45
|
+
/** field is not null */
|
|
46
|
+
| 'NOT_NULL'
|
|
47
|
+
/** field is ilike '%value%' */
|
|
48
|
+
| 'ILIKE'
|
|
49
|
+
/** field '@>' array */
|
|
50
|
+
| 'ARRAY_CONTAINS'
|
|
51
|
+
/** field '<@' array */
|
|
52
|
+
| 'ARRAY_INCLUDES';
|
|
14
53
|
export type LogicExpression_Field_ID = {
|
|
15
54
|
operator: LogicExpression_Field_Operator;
|
|
16
55
|
value: number;
|
|
@@ -21,36 +60,6 @@ export type LogicExpression_Field_IsLocked = {
|
|
|
21
60
|
value: boolean;
|
|
22
61
|
values: boolean[];
|
|
23
62
|
};
|
|
24
|
-
export type LogicExpression_Field_MaxCampaigns = {
|
|
25
|
-
operator: LogicExpression_Field_Operator;
|
|
26
|
-
value: number;
|
|
27
|
-
values: number[];
|
|
28
|
-
};
|
|
29
|
-
export type LogicExpression_Field_MaxDeeplinks = {
|
|
30
|
-
operator: LogicExpression_Field_Operator;
|
|
31
|
-
value: number;
|
|
32
|
-
values: number[];
|
|
33
|
-
};
|
|
34
|
-
export type LogicExpression_Field_MaxApplicationGroups = {
|
|
35
|
-
operator: LogicExpression_Field_Operator;
|
|
36
|
-
value: number;
|
|
37
|
-
values: number[];
|
|
38
|
-
};
|
|
39
|
-
export type LogicExpression_Field_MaxApps = {
|
|
40
|
-
operator: LogicExpression_Field_Operator;
|
|
41
|
-
value: number;
|
|
42
|
-
values: number[];
|
|
43
|
-
};
|
|
44
|
-
export type LogicExpression_Field_MaxTags = {
|
|
45
|
-
operator: LogicExpression_Field_Operator;
|
|
46
|
-
value: number;
|
|
47
|
-
values: number[];
|
|
48
|
-
};
|
|
49
|
-
export type LogicExpression_Field_MaxGeozones = {
|
|
50
|
-
operator: LogicExpression_Field_Operator;
|
|
51
|
-
value: number;
|
|
52
|
-
values: number[];
|
|
53
|
-
};
|
|
54
63
|
export type LogicExpression_Field_MaxDevices = {
|
|
55
64
|
operator: LogicExpression_Field_Operator;
|
|
56
65
|
value: number;
|
|
@@ -61,71 +70,11 @@ export type LogicExpression_Field_MaxUsers = {
|
|
|
61
70
|
value: number;
|
|
62
71
|
values: number[];
|
|
63
72
|
};
|
|
64
|
-
export type LogicExpression_Field_MaxApiTokens = {
|
|
65
|
-
operator: LogicExpression_Field_Operator;
|
|
66
|
-
value: number;
|
|
67
|
-
values: number[];
|
|
68
|
-
};
|
|
69
|
-
export type LogicExpression_Field_MaxPresets = {
|
|
70
|
-
operator: LogicExpression_Field_Operator;
|
|
71
|
-
value: number;
|
|
72
|
-
values: number[];
|
|
73
|
-
};
|
|
74
|
-
export type LogicExpression_Field_MaxTestDevices = {
|
|
75
|
-
operator: LogicExpression_Field_Operator;
|
|
76
|
-
value: number;
|
|
77
|
-
values: number[];
|
|
78
|
-
};
|
|
79
|
-
export type LogicExpression_Field_MaxGeozoneRange = {
|
|
80
|
-
operator: LogicExpression_Field_Operator;
|
|
81
|
-
value: number;
|
|
82
|
-
values: number[];
|
|
83
|
-
};
|
|
84
|
-
export type LogicExpression_Field_MaxRssFeeds = {
|
|
85
|
-
operator: LogicExpression_Field_Operator;
|
|
86
|
-
value: number;
|
|
87
|
-
values: number[];
|
|
88
|
-
};
|
|
89
|
-
export type LogicExpression_Field_MaxIOSCategories = {
|
|
90
|
-
operator: LogicExpression_Field_Operator;
|
|
91
|
-
value: number;
|
|
92
|
-
values: number[];
|
|
93
|
-
};
|
|
94
|
-
export type LogicExpression_Field_MaxTwitterFeeds = {
|
|
95
|
-
operator: LogicExpression_Field_Operator;
|
|
96
|
-
value: number;
|
|
97
|
-
values: number[];
|
|
98
|
-
};
|
|
99
|
-
export type LogicExpression_Field_MaxInapps = {
|
|
100
|
-
operator: LogicExpression_Field_Operator;
|
|
101
|
-
value: number;
|
|
102
|
-
values: number[];
|
|
103
|
-
};
|
|
104
|
-
export type LogicExpression_Field_MaxEvents = {
|
|
105
|
-
operator: LogicExpression_Field_Operator;
|
|
106
|
-
value: number;
|
|
107
|
-
values: number[];
|
|
108
|
-
};
|
|
109
|
-
export type LogicExpression_Field_MaxCreateMessage = {
|
|
110
|
-
operator: LogicExpression_Field_Operator;
|
|
111
|
-
value: number;
|
|
112
|
-
values: number[];
|
|
113
|
-
};
|
|
114
|
-
export type LogicExpression_Field_MaxRichmedia = {
|
|
115
|
-
operator: LogicExpression_Field_Operator;
|
|
116
|
-
value: number;
|
|
117
|
-
values: number[];
|
|
118
|
-
};
|
|
119
73
|
export type LogicExpression_Field_MaxPreparedFilters = {
|
|
120
74
|
operator: LogicExpression_Field_Operator;
|
|
121
75
|
value: number;
|
|
122
76
|
values: number[];
|
|
123
77
|
};
|
|
124
|
-
export type LogicExpression_Field_MaxFilters = {
|
|
125
|
-
operator: LogicExpression_Field_Operator;
|
|
126
|
-
value: number;
|
|
127
|
-
values: number[];
|
|
128
|
-
};
|
|
129
78
|
export type LogicExpression_Field_DevicesInactivityLimit = {
|
|
130
79
|
operator: LogicExpression_Field_Operator;
|
|
131
80
|
value: number;
|
|
@@ -136,41 +85,6 @@ export type LogicExpression_Field_AllowApi = {
|
|
|
136
85
|
value: boolean;
|
|
137
86
|
values: boolean[];
|
|
138
87
|
};
|
|
139
|
-
export type LogicExpression_Field_AllowStatsAccess = {
|
|
140
|
-
operator: LogicExpression_Field_Operator;
|
|
141
|
-
value: boolean;
|
|
142
|
-
values: boolean[];
|
|
143
|
-
};
|
|
144
|
-
export type LogicExpression_Field_AllowApiStatsAccess = {
|
|
145
|
-
operator: LogicExpression_Field_Operator;
|
|
146
|
-
value: boolean;
|
|
147
|
-
values: boolean[];
|
|
148
|
-
};
|
|
149
|
-
export type LogicExpression_Field_AllowGeozoneApi = {
|
|
150
|
-
operator: LogicExpression_Field_Operator;
|
|
151
|
-
value: boolean;
|
|
152
|
-
values: boolean[];
|
|
153
|
-
};
|
|
154
|
-
export type LogicExpression_Field_AllowABTests = {
|
|
155
|
-
operator: LogicExpression_Field_Operator;
|
|
156
|
-
value: boolean;
|
|
157
|
-
values: boolean[];
|
|
158
|
-
};
|
|
159
|
-
export type LogicExpression_Field_AllowBackup = {
|
|
160
|
-
operator: LogicExpression_Field_Operator;
|
|
161
|
-
value: boolean;
|
|
162
|
-
values: boolean[];
|
|
163
|
-
};
|
|
164
|
-
export type LogicExpression_Field_AllowApplicationApi = {
|
|
165
|
-
operator: LogicExpression_Field_Operator;
|
|
166
|
-
value: boolean;
|
|
167
|
-
values: boolean[];
|
|
168
|
-
};
|
|
169
|
-
export type LogicExpression_Field_AllowRemotePage = {
|
|
170
|
-
operator: LogicExpression_Field_Operator;
|
|
171
|
-
value: boolean;
|
|
172
|
-
values: boolean[];
|
|
173
|
-
};
|
|
174
88
|
export type LogicExpression_Field_AllowScheduling = {
|
|
175
89
|
operator: LogicExpression_Field_Operator;
|
|
176
90
|
value: boolean;
|
|
@@ -526,6 +440,16 @@ export type LogicExpression_Field_AllowAIWalletBilling = {
|
|
|
526
440
|
value: boolean;
|
|
527
441
|
values: boolean[];
|
|
528
442
|
};
|
|
443
|
+
export type LogicExpression_Field_ApplicationSpecificFilters = {
|
|
444
|
+
operator: LogicExpression_Field_Operator;
|
|
445
|
+
value: boolean;
|
|
446
|
+
values: boolean[];
|
|
447
|
+
};
|
|
448
|
+
export type LogicExpression_Field_AllowCloudPages = {
|
|
449
|
+
operator: LogicExpression_Field_Operator;
|
|
450
|
+
value: boolean;
|
|
451
|
+
values: boolean[];
|
|
452
|
+
};
|
|
529
453
|
export type LogicExpression_Field_kind_CondID = {
|
|
530
454
|
type: 'CondID';
|
|
531
455
|
data: LogicExpression_Field_ID;
|
|
@@ -534,30 +458,6 @@ export type LogicExpression_Field_kind_CondIsLocked = {
|
|
|
534
458
|
type: 'CondIsLocked';
|
|
535
459
|
data: LogicExpression_Field_IsLocked;
|
|
536
460
|
};
|
|
537
|
-
export type LogicExpression_Field_kind_CondMaxCampaigns = {
|
|
538
|
-
type: 'CondMaxCampaigns';
|
|
539
|
-
data: LogicExpression_Field_MaxCampaigns;
|
|
540
|
-
};
|
|
541
|
-
export type LogicExpression_Field_kind_CondMaxDeeplinks = {
|
|
542
|
-
type: 'CondMaxDeeplinks';
|
|
543
|
-
data: LogicExpression_Field_MaxDeeplinks;
|
|
544
|
-
};
|
|
545
|
-
export type LogicExpression_Field_kind_CondMaxApplicationGroups = {
|
|
546
|
-
type: 'CondMaxApplicationGroups';
|
|
547
|
-
data: LogicExpression_Field_MaxApplicationGroups;
|
|
548
|
-
};
|
|
549
|
-
export type LogicExpression_Field_kind_CondMaxApps = {
|
|
550
|
-
type: 'CondMaxApps';
|
|
551
|
-
data: LogicExpression_Field_MaxApps;
|
|
552
|
-
};
|
|
553
|
-
export type LogicExpression_Field_kind_CondMaxTags = {
|
|
554
|
-
type: 'CondMaxTags';
|
|
555
|
-
data: LogicExpression_Field_MaxTags;
|
|
556
|
-
};
|
|
557
|
-
export type LogicExpression_Field_kind_CondMaxGeozones = {
|
|
558
|
-
type: 'CondMaxGeozones';
|
|
559
|
-
data: LogicExpression_Field_MaxGeozones;
|
|
560
|
-
};
|
|
561
461
|
export type LogicExpression_Field_kind_CondMaxDevices = {
|
|
562
462
|
type: 'CondMaxDevices';
|
|
563
463
|
data: LogicExpression_Field_MaxDevices;
|
|
@@ -566,58 +466,10 @@ export type LogicExpression_Field_kind_CondMaxUsers = {
|
|
|
566
466
|
type: 'CondMaxUsers';
|
|
567
467
|
data: LogicExpression_Field_MaxUsers;
|
|
568
468
|
};
|
|
569
|
-
export type LogicExpression_Field_kind_CondMaxApiTokens = {
|
|
570
|
-
type: 'CondMaxApiTokens';
|
|
571
|
-
data: LogicExpression_Field_MaxApiTokens;
|
|
572
|
-
};
|
|
573
|
-
export type LogicExpression_Field_kind_CondMaxPresets = {
|
|
574
|
-
type: 'CondMaxPresets';
|
|
575
|
-
data: LogicExpression_Field_MaxPresets;
|
|
576
|
-
};
|
|
577
|
-
export type LogicExpression_Field_kind_CondMaxTestDevices = {
|
|
578
|
-
type: 'CondMaxTestDevices';
|
|
579
|
-
data: LogicExpression_Field_MaxTestDevices;
|
|
580
|
-
};
|
|
581
|
-
export type LogicExpression_Field_kind_CondMaxGeozoneRange = {
|
|
582
|
-
type: 'CondMaxGeozoneRange';
|
|
583
|
-
data: LogicExpression_Field_MaxGeozoneRange;
|
|
584
|
-
};
|
|
585
|
-
export type LogicExpression_Field_kind_CondMaxRssFeeds = {
|
|
586
|
-
type: 'CondMaxRssFeeds';
|
|
587
|
-
data: LogicExpression_Field_MaxRssFeeds;
|
|
588
|
-
};
|
|
589
|
-
export type LogicExpression_Field_kind_CondMaxIOSCategories = {
|
|
590
|
-
type: 'CondMaxIOSCategories';
|
|
591
|
-
data: LogicExpression_Field_MaxIOSCategories;
|
|
592
|
-
};
|
|
593
|
-
export type LogicExpression_Field_kind_CondMaxTwitterFeeds = {
|
|
594
|
-
type: 'CondMaxTwitterFeeds';
|
|
595
|
-
data: LogicExpression_Field_MaxTwitterFeeds;
|
|
596
|
-
};
|
|
597
|
-
export type LogicExpression_Field_kind_CondMaxInapps = {
|
|
598
|
-
type: 'CondMaxInapps';
|
|
599
|
-
data: LogicExpression_Field_MaxInapps;
|
|
600
|
-
};
|
|
601
|
-
export type LogicExpression_Field_kind_CondMaxEvents = {
|
|
602
|
-
type: 'CondMaxEvents';
|
|
603
|
-
data: LogicExpression_Field_MaxEvents;
|
|
604
|
-
};
|
|
605
|
-
export type LogicExpression_Field_kind_CondMaxCreateMessage = {
|
|
606
|
-
type: 'CondMaxCreateMessage';
|
|
607
|
-
data: LogicExpression_Field_MaxCreateMessage;
|
|
608
|
-
};
|
|
609
|
-
export type LogicExpression_Field_kind_CondMaxRichmedia = {
|
|
610
|
-
type: 'CondMaxRichmedia';
|
|
611
|
-
data: LogicExpression_Field_MaxRichmedia;
|
|
612
|
-
};
|
|
613
469
|
export type LogicExpression_Field_kind_CondMaxPreparedFilters = {
|
|
614
470
|
type: 'CondMaxPreparedFilters';
|
|
615
471
|
data: LogicExpression_Field_MaxPreparedFilters;
|
|
616
472
|
};
|
|
617
|
-
export type LogicExpression_Field_kind_CondMaxFilters = {
|
|
618
|
-
type: 'CondMaxFilters';
|
|
619
|
-
data: LogicExpression_Field_MaxFilters;
|
|
620
|
-
};
|
|
621
473
|
export type LogicExpression_Field_kind_CondDevicesInactivityLimit = {
|
|
622
474
|
type: 'CondDevicesInactivityLimit';
|
|
623
475
|
data: LogicExpression_Field_DevicesInactivityLimit;
|
|
@@ -626,34 +478,6 @@ export type LogicExpression_Field_kind_CondAllowApi = {
|
|
|
626
478
|
type: 'CondAllowApi';
|
|
627
479
|
data: LogicExpression_Field_AllowApi;
|
|
628
480
|
};
|
|
629
|
-
export type LogicExpression_Field_kind_CondAllowStatsAccess = {
|
|
630
|
-
type: 'CondAllowStatsAccess';
|
|
631
|
-
data: LogicExpression_Field_AllowStatsAccess;
|
|
632
|
-
};
|
|
633
|
-
export type LogicExpression_Field_kind_CondAllowApiStatsAccess = {
|
|
634
|
-
type: 'CondAllowApiStatsAccess';
|
|
635
|
-
data: LogicExpression_Field_AllowApiStatsAccess;
|
|
636
|
-
};
|
|
637
|
-
export type LogicExpression_Field_kind_CondAllowGeozoneApi = {
|
|
638
|
-
type: 'CondAllowGeozoneApi';
|
|
639
|
-
data: LogicExpression_Field_AllowGeozoneApi;
|
|
640
|
-
};
|
|
641
|
-
export type LogicExpression_Field_kind_CondAllowABTests = {
|
|
642
|
-
type: 'CondAllowABTests';
|
|
643
|
-
data: LogicExpression_Field_AllowABTests;
|
|
644
|
-
};
|
|
645
|
-
export type LogicExpression_Field_kind_CondAllowBackup = {
|
|
646
|
-
type: 'CondAllowBackup';
|
|
647
|
-
data: LogicExpression_Field_AllowBackup;
|
|
648
|
-
};
|
|
649
|
-
export type LogicExpression_Field_kind_CondAllowApplicationApi = {
|
|
650
|
-
type: 'CondAllowApplicationApi';
|
|
651
|
-
data: LogicExpression_Field_AllowApplicationApi;
|
|
652
|
-
};
|
|
653
|
-
export type LogicExpression_Field_kind_CondAllowRemotePage = {
|
|
654
|
-
type: 'CondAllowRemotePage';
|
|
655
|
-
data: LogicExpression_Field_AllowRemotePage;
|
|
656
|
-
};
|
|
657
481
|
export type LogicExpression_Field_kind_CondAllowScheduling = {
|
|
658
482
|
type: 'CondAllowScheduling';
|
|
659
483
|
data: LogicExpression_Field_AllowScheduling;
|
|
@@ -938,7 +762,15 @@ export type LogicExpression_Field_kind_CondAllowAIWalletBilling = {
|
|
|
938
762
|
type: 'CondAllowAIWalletBilling';
|
|
939
763
|
data: LogicExpression_Field_AllowAIWalletBilling;
|
|
940
764
|
};
|
|
941
|
-
export type
|
|
765
|
+
export type LogicExpression_Field_kind_CondApplicationSpecificFilters = {
|
|
766
|
+
type: 'CondApplicationSpecificFilters';
|
|
767
|
+
data: LogicExpression_Field_ApplicationSpecificFilters;
|
|
768
|
+
};
|
|
769
|
+
export type LogicExpression_Field_kind_CondAllowCloudPages = {
|
|
770
|
+
type: 'CondAllowCloudPages';
|
|
771
|
+
data: LogicExpression_Field_AllowCloudPages;
|
|
772
|
+
};
|
|
773
|
+
export type LogicExpression_Field_kind = LogicExpression_Field_kind_CondID | LogicExpression_Field_kind_CondIsLocked | LogicExpression_Field_kind_CondMaxDevices | LogicExpression_Field_kind_CondMaxUsers | LogicExpression_Field_kind_CondMaxPreparedFilters | LogicExpression_Field_kind_CondDevicesInactivityLimit | LogicExpression_Field_kind_CondAllowApi | 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_CondAllowShowDeliveryStatistics | LogicExpression_Field_kind_CondAllowRFMSegments | LogicExpression_Field_kind_CondAllowBestTimeToSend | LogicExpression_Field_kind_CondAllowEventSegmentation | LogicExpression_Field_kind_CondAllowSegmentsGroups | LogicExpression_Field_kind_CondAllowCjSMS | 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 | LogicExpression_Field_kind_CondAllowCjListenUserIdChanged | LogicExpression_Field_kind_CondAllowLine | LogicExpression_Field_kind_CondAllowPostEventInApp | LogicExpression_Field_kind_CondAllowAIAssistant | LogicExpression_Field_kind_CondAllowKeepUserWithoutDevice | LogicExpression_Field_kind_CondAllowCJSplitterDeviceCheck | LogicExpression_Field_kind_CondAllowTagsAutoCreation | LogicExpression_Field_kind_CondAllowAIWalletBilling | LogicExpression_Field_kind_CondApplicationSpecificFilters | LogicExpression_Field_kind_CondAllowCloudPages;
|
|
942
774
|
export type LogicExpression_Field = {
|
|
943
775
|
kind: LogicExpression_Field_kind;
|
|
944
776
|
};
|
|
@@ -951,6 +783,7 @@ export type LogicExpression_kind_field = {
|
|
|
951
783
|
data: LogicExpression_Field;
|
|
952
784
|
};
|
|
953
785
|
export type LogicExpression_kind = LogicExpression_kind_binary | LogicExpression_kind_field;
|
|
786
|
+
/** Abstract expression structure. That's an expressions container */
|
|
954
787
|
export type LogicExpression = {
|
|
955
788
|
kind: LogicExpression_kind;
|
|
956
789
|
};
|
|
@@ -968,6 +801,11 @@ export type ForExpression = {
|
|
|
968
801
|
level: LockLevel;
|
|
969
802
|
waiting: LockWaitingOption;
|
|
970
803
|
};
|
|
804
|
+
/**
|
|
805
|
+
* This struct is used to avoid protoc compiler warnings about unused includes in case when
|
|
806
|
+
* there are no usage for timestamp.* and wrappers.*
|
|
807
|
+
* This can be removed if you figure out how to remove unused includes.
|
|
808
|
+
*/
|
|
971
809
|
export type __restrictionValue_crud_service_internal = {
|
|
972
810
|
f1: string;
|
|
973
811
|
f2: Date;
|
|
@@ -983,36 +821,11 @@ export type RestrictionValuesCrudService_GetPage = RpcMethod<GetPageRequest, Get
|
|
|
983
821
|
export type RestrictionValuesCrudService_List = RpcMethod<ListRequest, ListResponse>;
|
|
984
822
|
export type RestrictionValuesCrudService_Paginate = RpcMethod<PaginateRequest, PaginateResponse>;
|
|
985
823
|
export type RestrictionValuesCrudService_UpdateIsLocked = RpcMethod<UpdateIsLockedRequest, {}>;
|
|
986
|
-
export type RestrictionValuesCrudService_UpdateMaxCampaigns = RpcMethod<UpdateMaxCampaignsRequest, {}>;
|
|
987
|
-
export type RestrictionValuesCrudService_UpdateMaxDeeplinks = RpcMethod<UpdateMaxDeeplinksRequest, {}>;
|
|
988
|
-
export type RestrictionValuesCrudService_UpdateMaxApplicationGroups = RpcMethod<UpdateMaxApplicationGroupsRequest, {}>;
|
|
989
|
-
export type RestrictionValuesCrudService_UpdateMaxApps = RpcMethod<UpdateMaxAppsRequest, {}>;
|
|
990
|
-
export type RestrictionValuesCrudService_UpdateMaxTags = RpcMethod<UpdateMaxTagsRequest, {}>;
|
|
991
|
-
export type RestrictionValuesCrudService_UpdateMaxGeozones = RpcMethod<UpdateMaxGeozonesRequest, {}>;
|
|
992
824
|
export type RestrictionValuesCrudService_UpdateMaxDevices = RpcMethod<UpdateMaxDevicesRequest, {}>;
|
|
993
825
|
export type RestrictionValuesCrudService_UpdateMaxUsers = RpcMethod<UpdateMaxUsersRequest, {}>;
|
|
994
|
-
export type RestrictionValuesCrudService_UpdateMaxApiTokens = RpcMethod<UpdateMaxApiTokensRequest, {}>;
|
|
995
|
-
export type RestrictionValuesCrudService_UpdateMaxPresets = RpcMethod<UpdateMaxPresetsRequest, {}>;
|
|
996
|
-
export type RestrictionValuesCrudService_UpdateMaxTestDevices = RpcMethod<UpdateMaxTestDevicesRequest, {}>;
|
|
997
|
-
export type RestrictionValuesCrudService_UpdateMaxGeozoneRange = RpcMethod<UpdateMaxGeozoneRangeRequest, {}>;
|
|
998
|
-
export type RestrictionValuesCrudService_UpdateMaxRssFeeds = RpcMethod<UpdateMaxRssFeedsRequest, {}>;
|
|
999
|
-
export type RestrictionValuesCrudService_UpdateMaxIOSCategories = RpcMethod<UpdateMaxIOSCategoriesRequest, {}>;
|
|
1000
|
-
export type RestrictionValuesCrudService_UpdateMaxTwitterFeeds = RpcMethod<UpdateMaxTwitterFeedsRequest, {}>;
|
|
1001
|
-
export type RestrictionValuesCrudService_UpdateMaxInapps = RpcMethod<UpdateMaxInappsRequest, {}>;
|
|
1002
|
-
export type RestrictionValuesCrudService_UpdateMaxEvents = RpcMethod<UpdateMaxEventsRequest, {}>;
|
|
1003
|
-
export type RestrictionValuesCrudService_UpdateMaxCreateMessage = RpcMethod<UpdateMaxCreateMessageRequest, {}>;
|
|
1004
|
-
export type RestrictionValuesCrudService_UpdateMaxRichmedia = RpcMethod<UpdateMaxRichmediaRequest, {}>;
|
|
1005
826
|
export type RestrictionValuesCrudService_UpdateMaxPreparedFilters = RpcMethod<UpdateMaxPreparedFiltersRequest, {}>;
|
|
1006
|
-
export type RestrictionValuesCrudService_UpdateMaxFilters = RpcMethod<UpdateMaxFiltersRequest, {}>;
|
|
1007
827
|
export type RestrictionValuesCrudService_UpdateDevicesInactivityLimit = RpcMethod<UpdateDevicesInactivityLimitRequest, {}>;
|
|
1008
828
|
export type RestrictionValuesCrudService_UpdateAllowApi = RpcMethod<UpdateAllowApiRequest, {}>;
|
|
1009
|
-
export type RestrictionValuesCrudService_UpdateAllowStatsAccess = RpcMethod<UpdateAllowStatsAccessRequest, {}>;
|
|
1010
|
-
export type RestrictionValuesCrudService_UpdateAllowApiStatsAccess = RpcMethod<UpdateAllowApiStatsAccessRequest, {}>;
|
|
1011
|
-
export type RestrictionValuesCrudService_UpdateAllowGeozoneApi = RpcMethod<UpdateAllowGeozoneApiRequest, {}>;
|
|
1012
|
-
export type RestrictionValuesCrudService_UpdateAllowABTests = RpcMethod<UpdateAllowABTestsRequest, {}>;
|
|
1013
|
-
export type RestrictionValuesCrudService_UpdateAllowBackup = RpcMethod<UpdateAllowBackupRequest, {}>;
|
|
1014
|
-
export type RestrictionValuesCrudService_UpdateAllowApplicationApi = RpcMethod<UpdateAllowApplicationApiRequest, {}>;
|
|
1015
|
-
export type RestrictionValuesCrudService_UpdateAllowRemotePage = RpcMethod<UpdateAllowRemotePageRequest, {}>;
|
|
1016
829
|
export type RestrictionValuesCrudService_UpdateAllowScheduling = RpcMethod<UpdateAllowSchedulingRequest, {}>;
|
|
1017
830
|
export type RestrictionValuesCrudService_UpdateAllowCustomData = RpcMethod<UpdateAllowCustomDataRequest, {}>;
|
|
1018
831
|
export type RestrictionValuesCrudService_UpdateAllowMultiLanguage = RpcMethod<UpdateAllowMultiLanguageRequest, {}>;
|
|
@@ -1084,6 +897,8 @@ export type RestrictionValuesCrudService_UpdateAllowKeepUserWithoutDevice = RpcM
|
|
|
1084
897
|
export type RestrictionValuesCrudService_UpdateAllowCJSplitterDeviceCheck = RpcMethod<UpdateAllowCJSplitterDeviceCheckRequest, {}>;
|
|
1085
898
|
export type RestrictionValuesCrudService_UpdateAllowTagsAutoCreation = RpcMethod<UpdateAllowTagsAutoCreationRequest, {}>;
|
|
1086
899
|
export type RestrictionValuesCrudService_UpdateAllowAIWalletBilling = RpcMethod<UpdateAllowAIWalletBillingRequest, {}>;
|
|
900
|
+
export type RestrictionValuesCrudService_UpdateApplicationSpecificFilters = RpcMethod<UpdateApplicationSpecificFiltersRequest, {}>;
|
|
901
|
+
export type RestrictionValuesCrudService_UpdateAllowCloudPages = RpcMethod<UpdateAllowCloudPagesRequest, {}>;
|
|
1087
902
|
export interface RestrictionValuesCrudService {
|
|
1088
903
|
Create: RestrictionValuesCrudService_Create;
|
|
1089
904
|
CreateMany: RestrictionValuesCrudService_CreateMany;
|
|
@@ -1095,36 +910,11 @@ export interface RestrictionValuesCrudService {
|
|
|
1095
910
|
List: RestrictionValuesCrudService_List;
|
|
1096
911
|
Paginate: RestrictionValuesCrudService_Paginate;
|
|
1097
912
|
UpdateIsLocked: RestrictionValuesCrudService_UpdateIsLocked;
|
|
1098
|
-
UpdateMaxCampaigns: RestrictionValuesCrudService_UpdateMaxCampaigns;
|
|
1099
|
-
UpdateMaxDeeplinks: RestrictionValuesCrudService_UpdateMaxDeeplinks;
|
|
1100
|
-
UpdateMaxApplicationGroups: RestrictionValuesCrudService_UpdateMaxApplicationGroups;
|
|
1101
|
-
UpdateMaxApps: RestrictionValuesCrudService_UpdateMaxApps;
|
|
1102
|
-
UpdateMaxTags: RestrictionValuesCrudService_UpdateMaxTags;
|
|
1103
|
-
UpdateMaxGeozones: RestrictionValuesCrudService_UpdateMaxGeozones;
|
|
1104
913
|
UpdateMaxDevices: RestrictionValuesCrudService_UpdateMaxDevices;
|
|
1105
914
|
UpdateMaxUsers: RestrictionValuesCrudService_UpdateMaxUsers;
|
|
1106
|
-
UpdateMaxApiTokens: RestrictionValuesCrudService_UpdateMaxApiTokens;
|
|
1107
|
-
UpdateMaxPresets: RestrictionValuesCrudService_UpdateMaxPresets;
|
|
1108
|
-
UpdateMaxTestDevices: RestrictionValuesCrudService_UpdateMaxTestDevices;
|
|
1109
|
-
UpdateMaxGeozoneRange: RestrictionValuesCrudService_UpdateMaxGeozoneRange;
|
|
1110
|
-
UpdateMaxRssFeeds: RestrictionValuesCrudService_UpdateMaxRssFeeds;
|
|
1111
|
-
UpdateMaxIOSCategories: RestrictionValuesCrudService_UpdateMaxIOSCategories;
|
|
1112
|
-
UpdateMaxTwitterFeeds: RestrictionValuesCrudService_UpdateMaxTwitterFeeds;
|
|
1113
|
-
UpdateMaxInapps: RestrictionValuesCrudService_UpdateMaxInapps;
|
|
1114
|
-
UpdateMaxEvents: RestrictionValuesCrudService_UpdateMaxEvents;
|
|
1115
|
-
UpdateMaxCreateMessage: RestrictionValuesCrudService_UpdateMaxCreateMessage;
|
|
1116
|
-
UpdateMaxRichmedia: RestrictionValuesCrudService_UpdateMaxRichmedia;
|
|
1117
915
|
UpdateMaxPreparedFilters: RestrictionValuesCrudService_UpdateMaxPreparedFilters;
|
|
1118
|
-
UpdateMaxFilters: RestrictionValuesCrudService_UpdateMaxFilters;
|
|
1119
916
|
UpdateDevicesInactivityLimit: RestrictionValuesCrudService_UpdateDevicesInactivityLimit;
|
|
1120
917
|
UpdateAllowApi: RestrictionValuesCrudService_UpdateAllowApi;
|
|
1121
|
-
UpdateAllowStatsAccess: RestrictionValuesCrudService_UpdateAllowStatsAccess;
|
|
1122
|
-
UpdateAllowApiStatsAccess: RestrictionValuesCrudService_UpdateAllowApiStatsAccess;
|
|
1123
|
-
UpdateAllowGeozoneApi: RestrictionValuesCrudService_UpdateAllowGeozoneApi;
|
|
1124
|
-
UpdateAllowABTests: RestrictionValuesCrudService_UpdateAllowABTests;
|
|
1125
|
-
UpdateAllowBackup: RestrictionValuesCrudService_UpdateAllowBackup;
|
|
1126
|
-
UpdateAllowApplicationApi: RestrictionValuesCrudService_UpdateAllowApplicationApi;
|
|
1127
|
-
UpdateAllowRemotePage: RestrictionValuesCrudService_UpdateAllowRemotePage;
|
|
1128
918
|
UpdateAllowScheduling: RestrictionValuesCrudService_UpdateAllowScheduling;
|
|
1129
919
|
UpdateAllowCustomData: RestrictionValuesCrudService_UpdateAllowCustomData;
|
|
1130
920
|
UpdateAllowMultiLanguage: RestrictionValuesCrudService_UpdateAllowMultiLanguage;
|
|
@@ -1196,39 +986,16 @@ export interface RestrictionValuesCrudService {
|
|
|
1196
986
|
UpdateAllowCJSplitterDeviceCheck: RestrictionValuesCrudService_UpdateAllowCJSplitterDeviceCheck;
|
|
1197
987
|
UpdateAllowTagsAutoCreation: RestrictionValuesCrudService_UpdateAllowTagsAutoCreation;
|
|
1198
988
|
UpdateAllowAIWalletBilling: RestrictionValuesCrudService_UpdateAllowAIWalletBilling;
|
|
989
|
+
UpdateApplicationSpecificFilters: RestrictionValuesCrudService_UpdateApplicationSpecificFilters;
|
|
990
|
+
UpdateAllowCloudPages: RestrictionValuesCrudService_UpdateAllowCloudPages;
|
|
1199
991
|
}
|
|
1200
992
|
export type CreateRequest = {
|
|
1201
993
|
IsLocked?: boolean;
|
|
1202
|
-
MaxCampaigns?: number;
|
|
1203
|
-
MaxDeeplinks?: number;
|
|
1204
|
-
MaxApplicationGroups?: number;
|
|
1205
|
-
MaxApps?: number;
|
|
1206
|
-
MaxTags?: number;
|
|
1207
|
-
MaxGeozones?: number;
|
|
1208
994
|
MaxDevices?: number;
|
|
1209
995
|
MaxUsers?: number;
|
|
1210
|
-
MaxApiTokens?: number;
|
|
1211
|
-
MaxPresets?: number;
|
|
1212
|
-
MaxTestDevices?: number;
|
|
1213
|
-
MaxGeozoneRange?: number;
|
|
1214
|
-
MaxRssFeeds?: number;
|
|
1215
|
-
MaxIOSCategories?: number;
|
|
1216
|
-
MaxTwitterFeeds?: number;
|
|
1217
|
-
MaxInapps?: number;
|
|
1218
|
-
MaxEvents?: number;
|
|
1219
|
-
MaxCreateMessage?: number;
|
|
1220
|
-
MaxRichmedia?: number;
|
|
1221
996
|
MaxPreparedFilters?: number;
|
|
1222
|
-
MaxFilters?: number;
|
|
1223
997
|
DevicesInactivityLimit?: number;
|
|
1224
998
|
AllowApi?: boolean;
|
|
1225
|
-
AllowStatsAccess?: boolean;
|
|
1226
|
-
AllowApiStatsAccess?: boolean;
|
|
1227
|
-
AllowGeozoneApi?: boolean;
|
|
1228
|
-
AllowABTests?: boolean;
|
|
1229
|
-
AllowBackup?: boolean;
|
|
1230
|
-
AllowApplicationApi?: boolean;
|
|
1231
|
-
AllowRemotePage?: boolean;
|
|
1232
999
|
AllowScheduling?: boolean;
|
|
1233
1000
|
AllowCustomData?: boolean;
|
|
1234
1001
|
AllowMultiLanguage?: boolean;
|
|
@@ -1300,6 +1067,8 @@ export type CreateRequest = {
|
|
|
1300
1067
|
AllowCJSplitterDeviceCheck?: boolean;
|
|
1301
1068
|
AllowTagsAutoCreation?: boolean;
|
|
1302
1069
|
AllowAIWalletBilling?: boolean;
|
|
1070
|
+
ApplicationSpecificFilters?: boolean;
|
|
1071
|
+
AllowCloudPages?: boolean;
|
|
1303
1072
|
};
|
|
1304
1073
|
export type CreateResponse = {
|
|
1305
1074
|
restrictionValue: RestrictionValue;
|
|
@@ -1356,30 +1125,6 @@ export type UpdateIsLockedRequest = {
|
|
|
1356
1125
|
ID?: number;
|
|
1357
1126
|
value?: boolean;
|
|
1358
1127
|
};
|
|
1359
|
-
export type UpdateMaxCampaignsRequest = {
|
|
1360
|
-
ID?: number;
|
|
1361
|
-
value?: number;
|
|
1362
|
-
};
|
|
1363
|
-
export type UpdateMaxDeeplinksRequest = {
|
|
1364
|
-
ID?: number;
|
|
1365
|
-
value?: number;
|
|
1366
|
-
};
|
|
1367
|
-
export type UpdateMaxApplicationGroupsRequest = {
|
|
1368
|
-
ID?: number;
|
|
1369
|
-
value?: number;
|
|
1370
|
-
};
|
|
1371
|
-
export type UpdateMaxAppsRequest = {
|
|
1372
|
-
ID?: number;
|
|
1373
|
-
value?: number;
|
|
1374
|
-
};
|
|
1375
|
-
export type UpdateMaxTagsRequest = {
|
|
1376
|
-
ID?: number;
|
|
1377
|
-
value?: number;
|
|
1378
|
-
};
|
|
1379
|
-
export type UpdateMaxGeozonesRequest = {
|
|
1380
|
-
ID?: number;
|
|
1381
|
-
value?: number;
|
|
1382
|
-
};
|
|
1383
1128
|
export type UpdateMaxDevicesRequest = {
|
|
1384
1129
|
ID?: number;
|
|
1385
1130
|
value?: number;
|
|
@@ -1388,58 +1133,10 @@ export type UpdateMaxUsersRequest = {
|
|
|
1388
1133
|
ID?: number;
|
|
1389
1134
|
value?: number;
|
|
1390
1135
|
};
|
|
1391
|
-
export type UpdateMaxApiTokensRequest = {
|
|
1392
|
-
ID?: number;
|
|
1393
|
-
value?: number;
|
|
1394
|
-
};
|
|
1395
|
-
export type UpdateMaxPresetsRequest = {
|
|
1396
|
-
ID?: number;
|
|
1397
|
-
value?: number;
|
|
1398
|
-
};
|
|
1399
|
-
export type UpdateMaxTestDevicesRequest = {
|
|
1400
|
-
ID?: number;
|
|
1401
|
-
value?: number;
|
|
1402
|
-
};
|
|
1403
|
-
export type UpdateMaxGeozoneRangeRequest = {
|
|
1404
|
-
ID?: number;
|
|
1405
|
-
value?: number;
|
|
1406
|
-
};
|
|
1407
|
-
export type UpdateMaxRssFeedsRequest = {
|
|
1408
|
-
ID?: number;
|
|
1409
|
-
value?: number;
|
|
1410
|
-
};
|
|
1411
|
-
export type UpdateMaxIOSCategoriesRequest = {
|
|
1412
|
-
ID?: number;
|
|
1413
|
-
value?: number;
|
|
1414
|
-
};
|
|
1415
|
-
export type UpdateMaxTwitterFeedsRequest = {
|
|
1416
|
-
ID?: number;
|
|
1417
|
-
value?: number;
|
|
1418
|
-
};
|
|
1419
|
-
export type UpdateMaxInappsRequest = {
|
|
1420
|
-
ID?: number;
|
|
1421
|
-
value?: number;
|
|
1422
|
-
};
|
|
1423
|
-
export type UpdateMaxEventsRequest = {
|
|
1424
|
-
ID?: number;
|
|
1425
|
-
value?: number;
|
|
1426
|
-
};
|
|
1427
|
-
export type UpdateMaxCreateMessageRequest = {
|
|
1428
|
-
ID?: number;
|
|
1429
|
-
value?: number;
|
|
1430
|
-
};
|
|
1431
|
-
export type UpdateMaxRichmediaRequest = {
|
|
1432
|
-
ID?: number;
|
|
1433
|
-
value?: number;
|
|
1434
|
-
};
|
|
1435
1136
|
export type UpdateMaxPreparedFiltersRequest = {
|
|
1436
1137
|
ID?: number;
|
|
1437
1138
|
value?: number;
|
|
1438
1139
|
};
|
|
1439
|
-
export type UpdateMaxFiltersRequest = {
|
|
1440
|
-
ID?: number;
|
|
1441
|
-
value?: number;
|
|
1442
|
-
};
|
|
1443
1140
|
export type UpdateDevicesInactivityLimitRequest = {
|
|
1444
1141
|
ID?: number;
|
|
1445
1142
|
value?: number;
|
|
@@ -1448,34 +1145,6 @@ export type UpdateAllowApiRequest = {
|
|
|
1448
1145
|
ID?: number;
|
|
1449
1146
|
value?: boolean;
|
|
1450
1147
|
};
|
|
1451
|
-
export type UpdateAllowStatsAccessRequest = {
|
|
1452
|
-
ID?: number;
|
|
1453
|
-
value?: boolean;
|
|
1454
|
-
};
|
|
1455
|
-
export type UpdateAllowApiStatsAccessRequest = {
|
|
1456
|
-
ID?: number;
|
|
1457
|
-
value?: boolean;
|
|
1458
|
-
};
|
|
1459
|
-
export type UpdateAllowGeozoneApiRequest = {
|
|
1460
|
-
ID?: number;
|
|
1461
|
-
value?: boolean;
|
|
1462
|
-
};
|
|
1463
|
-
export type UpdateAllowABTestsRequest = {
|
|
1464
|
-
ID?: number;
|
|
1465
|
-
value?: boolean;
|
|
1466
|
-
};
|
|
1467
|
-
export type UpdateAllowBackupRequest = {
|
|
1468
|
-
ID?: number;
|
|
1469
|
-
value?: boolean;
|
|
1470
|
-
};
|
|
1471
|
-
export type UpdateAllowApplicationApiRequest = {
|
|
1472
|
-
ID?: number;
|
|
1473
|
-
value?: boolean;
|
|
1474
|
-
};
|
|
1475
|
-
export type UpdateAllowRemotePageRequest = {
|
|
1476
|
-
ID?: number;
|
|
1477
|
-
value?: boolean;
|
|
1478
|
-
};
|
|
1479
1148
|
export type UpdateAllowSchedulingRequest = {
|
|
1480
1149
|
ID?: number;
|
|
1481
1150
|
value?: boolean;
|
|
@@ -1760,6 +1429,14 @@ export type UpdateAllowAIWalletBillingRequest = {
|
|
|
1760
1429
|
ID?: number;
|
|
1761
1430
|
value?: boolean;
|
|
1762
1431
|
};
|
|
1432
|
+
export type UpdateApplicationSpecificFiltersRequest = {
|
|
1433
|
+
ID?: number;
|
|
1434
|
+
value?: boolean;
|
|
1435
|
+
};
|
|
1436
|
+
export type UpdateAllowCloudPagesRequest = {
|
|
1437
|
+
ID?: number;
|
|
1438
|
+
value?: boolean;
|
|
1439
|
+
};
|
|
1763
1440
|
export type GetRequest = {
|
|
1764
1441
|
ID?: number;
|
|
1765
1442
|
};
|
|
@@ -1767,6 +1444,11 @@ export type GetResponse = {
|
|
|
1767
1444
|
restrictionValue: RestrictionValue;
|
|
1768
1445
|
};
|
|
1769
1446
|
export type JoinType = 'JOIN_INVALID' | 'JOIN_INNER' | 'JOIN_LEFT' | 'JOIN_RIGHT';
|
|
1447
|
+
/**
|
|
1448
|
+
* This struct is used to avoid protoc compiler warnings about unused includes in case when
|
|
1449
|
+
* there are no usage for timestamp.* and wrappers.*
|
|
1450
|
+
* This can be removed if you figure out how to remove unused includes.
|
|
1451
|
+
*/
|
|
1770
1452
|
export type __restrictionValue_model_internal = {
|
|
1771
1453
|
f1: string;
|
|
1772
1454
|
f2: Date;
|
|
@@ -1774,36 +1456,11 @@ export type __restrictionValue_model_internal = {
|
|
|
1774
1456
|
export type RestrictionValue = {
|
|
1775
1457
|
ID: number;
|
|
1776
1458
|
IsLocked: boolean;
|
|
1777
|
-
MaxCampaigns: number;
|
|
1778
|
-
MaxDeeplinks: number;
|
|
1779
|
-
MaxApplicationGroups: number;
|
|
1780
|
-
MaxApps: number;
|
|
1781
|
-
MaxTags: number;
|
|
1782
|
-
MaxGeozones: number;
|
|
1783
1459
|
MaxDevices: number;
|
|
1784
1460
|
MaxUsers: number;
|
|
1785
|
-
MaxApiTokens: number;
|
|
1786
|
-
MaxPresets: number;
|
|
1787
|
-
MaxTestDevices: number;
|
|
1788
|
-
MaxGeozoneRange: number;
|
|
1789
|
-
MaxRssFeeds: number;
|
|
1790
|
-
MaxIOSCategories: number;
|
|
1791
|
-
MaxTwitterFeeds: number;
|
|
1792
|
-
MaxInapps: number;
|
|
1793
|
-
MaxEvents: number;
|
|
1794
|
-
MaxCreateMessage: number;
|
|
1795
|
-
MaxRichmedia: number;
|
|
1796
1461
|
MaxPreparedFilters: number;
|
|
1797
|
-
MaxFilters: number;
|
|
1798
1462
|
DevicesInactivityLimit: number;
|
|
1799
1463
|
AllowApi: boolean;
|
|
1800
|
-
AllowStatsAccess: boolean;
|
|
1801
|
-
AllowApiStatsAccess: boolean;
|
|
1802
|
-
AllowGeozoneApi: boolean;
|
|
1803
|
-
AllowABTests: boolean;
|
|
1804
|
-
AllowBackup: boolean;
|
|
1805
|
-
AllowApplicationApi: boolean;
|
|
1806
|
-
AllowRemotePage: boolean;
|
|
1807
1464
|
AllowScheduling: boolean;
|
|
1808
1465
|
AllowCustomData: boolean;
|
|
1809
1466
|
AllowMultiLanguage: boolean;
|
|
@@ -1875,4 +1532,6 @@ export type RestrictionValue = {
|
|
|
1875
1532
|
AllowCJSplitterDeviceCheck: boolean;
|
|
1876
1533
|
AllowTagsAutoCreation: boolean;
|
|
1877
1534
|
AllowAIWalletBilling: boolean;
|
|
1535
|
+
ApplicationSpecificFilters: boolean;
|
|
1536
|
+
AllowCloudPages: boolean;
|
|
1878
1537
|
};
|