@pushwoosh/rpc-v2-http-api-data 0.1.811 → 0.1.812

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/data.js CHANGED
@@ -7281,7 +7281,8 @@ export const data = {
7281
7281
  "TASK_TYPE_EXPORT_JOURNEY_USERS_LIST",
7282
7282
  "TASK_TYPE_EXPORT_JOURNEY_POINTS_STATISTICS",
7283
7283
  "TASK_TYPE_EXPORT_JOURNEY_GOAL_USERS",
7284
- "TASK_TYPE_EXPORT_CONTROL_GROUP"
7284
+ "TASK_TYPE_EXPORT_CONTROL_GROUP",
7285
+ "TASK_TYPE_EXPORT_SUBSCRIPTION_FORM_SUBSCRIBED_USERS"
7285
7286
  ]
7286
7287
  },
7287
7288
  "pushwoosh.export_messages.v2.ExportRequest": {
@@ -7355,6 +7356,9 @@ export const data = {
7355
7356
  },
7356
7357
  "exportControlGroup": {
7357
7358
  "type": "pushwoosh.export_messages.v2.ExportControlGroupArgs"
7359
+ },
7360
+ "exportSubscriptionFormSubscribedUsers": {
7361
+ "type": "pushwoosh.export_messages.v2.ExportSubscriptionFormSubscribedUsersArgs"
7358
7362
  }
7359
7363
  },
7360
7364
  "oneofs": {
@@ -7381,7 +7385,8 @@ export const data = {
7381
7385
  "exportJourneyUsersList",
7382
7386
  "exportJourneyPointsStatistics",
7383
7387
  "exportJourneyGoalUsers",
7384
- "exportControlGroup"
7388
+ "exportControlGroup",
7389
+ "exportSubscriptionFormSubscribedUsers"
7385
7390
  ]
7386
7391
  }
7387
7392
  }
@@ -7516,6 +7521,9 @@ export const data = {
7516
7521
  },
7517
7522
  "exportControlGroupResult": {
7518
7523
  "type": "pushwoosh.export_messages.v2.ExportControlGroupResult"
7524
+ },
7525
+ "exportSubscriptionFormSubscribedUsersResult": {
7526
+ "type": "pushwoosh.export_messages.v2.ExportSubscriptionFormSubscribedUsersResult"
7519
7527
  }
7520
7528
  },
7521
7529
  "oneofs": {
@@ -7543,7 +7551,8 @@ export const data = {
7543
7551
  "exportJourneyUsersListResult",
7544
7552
  "exportJourneyPointsStatisticsResult",
7545
7553
  "exportJourneyGoalUsersResult",
7546
- "exportControlGroupResult"
7554
+ "exportControlGroupResult",
7555
+ "exportSubscriptionFormSubscribedUsersResult"
7547
7556
  ]
7548
7557
  }
7549
7558
  }
@@ -7659,6 +7668,9 @@ export const data = {
7659
7668
  "exportControlGroup": {
7660
7669
  "type": "pushwoosh.export_messages.v2.ExportControlGroupArgs"
7661
7670
  },
7671
+ "exportSubscriptionFormSubscribedUsers": {
7672
+ "type": "pushwoosh.export_messages.v2.ExportSubscriptionFormSubscribedUsersArgs"
7673
+ },
7662
7674
  "failedTask": {
7663
7675
  "type": "pushwoosh.export_messages.v2.TaskFailed"
7664
7676
  },
@@ -7718,6 +7730,9 @@ export const data = {
7718
7730
  },
7719
7731
  "exportControlGroupResult": {
7720
7732
  "type": "pushwoosh.export_messages.v2.ExportControlGroupResult"
7733
+ },
7734
+ "exportSubscriptionFormSubscribedUsersResult": {
7735
+ "type": "pushwoosh.export_messages.v2.ExportSubscriptionFormSubscribedUsersResult"
7721
7736
  }
7722
7737
  },
7723
7738
  "oneofs": {
@@ -7741,7 +7756,8 @@ export const data = {
7741
7756
  "exportJourneyPointsStatistics",
7742
7757
  "exportJourneyGoalUsers",
7743
7758
  "exportJourneyPointUsers",
7744
- "exportControlGroup"
7759
+ "exportControlGroup",
7760
+ "exportSubscriptionFormSubscribedUsers"
7745
7761
  ]
7746
7762
  },
7747
7763
  "result": {
@@ -7765,7 +7781,8 @@ export const data = {
7765
7781
  "exportJourneyPointsStatisticsResult",
7766
7782
  "exportJourneyGoalUsersResult",
7767
7783
  "exportJourneyPointUsersResult",
7768
- "exportControlGroupResult"
7784
+ "exportControlGroupResult",
7785
+ "exportSubscriptionFormSubscribedUsersResult"
7769
7786
  ]
7770
7787
  }
7771
7788
  }
@@ -8727,6 +8744,43 @@ export const data = {
8727
8744
  }
8728
8745
  }
8729
8746
  },
8747
+ "pushwoosh.export_messages.v2.ExportSubscriptionFormSubscribedUsersArgs.SUBMISSION_STATUS": {
8748
+ "type": "E",
8749
+ "values": [
8750
+ "SUBMISSION_STATUS_UNSPECIFIED",
8751
+ "SUBMISSION_STATUS_PENDING",
8752
+ "SUBMISSION_STATUS_CONFIRMED",
8753
+ "SUBMISSION_STATUS_EXPIRED"
8754
+ ]
8755
+ },
8756
+ "pushwoosh.export_messages.v2.ExportSubscriptionFormSubscribedUsersArgs": {
8757
+ "type": "I",
8758
+ "fields": {
8759
+ "application": {
8760
+ "type": "string"
8761
+ },
8762
+ "form": {
8763
+ "type": "string"
8764
+ },
8765
+ "submissionStatus": {
8766
+ "type": "pushwoosh.export_messages.v2.ExportSubscriptionFormSubscribedUsersArgs.SUBMISSION_STATUS"
8767
+ },
8768
+ "dateFrom": {
8769
+ "type": "Date"
8770
+ },
8771
+ "dateTo": {
8772
+ "type": "Date"
8773
+ }
8774
+ }
8775
+ },
8776
+ "pushwoosh.export_messages.v2.ExportSubscriptionFormSubscribedUsersResult": {
8777
+ "type": "I",
8778
+ "fields": {
8779
+ "file": {
8780
+ "type": "string"
8781
+ }
8782
+ }
8783
+ },
8730
8784
  "pushwoosh.rpc_v2.filters.FiltersService": {
8731
8785
  "type": "S",
8732
8786
  "key": "filters",
@@ -15951,6 +16005,21 @@ export const data = {
15951
16005
  }
15952
16006
  }
15953
16007
  },
16008
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxAutoPushes": {
16009
+ "type": "I",
16010
+ "fields": {
16011
+ "operator": {
16012
+ "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
16013
+ },
16014
+ "value": {
16015
+ "type": "number"
16016
+ },
16017
+ "values": {
16018
+ "type": "number",
16019
+ "array": true
16020
+ }
16021
+ }
16022
+ },
15954
16023
  "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxIOSCategories": {
15955
16024
  "type": "I",
15956
16025
  "fields": {
@@ -17256,21 +17325,6 @@ export const data = {
17256
17325
  }
17257
17326
  }
17258
17327
  },
17259
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowAIWalletBilling": {
17260
- "type": "I",
17261
- "fields": {
17262
- "operator": {
17263
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
17264
- },
17265
- "value": {
17266
- "type": "boolean"
17267
- },
17268
- "values": {
17269
- "type": "boolean",
17270
- "array": true
17271
- }
17272
- }
17273
- },
17274
17328
  "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field": {
17275
17329
  "type": "I",
17276
17330
  "fields": {
@@ -17319,6 +17373,9 @@ export const data = {
17319
17373
  "CondMaxRssFeeds": {
17320
17374
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxRssFeeds"
17321
17375
  },
17376
+ "CondMaxAutoPushes": {
17377
+ "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxAutoPushes"
17378
+ },
17322
17379
  "CondMaxIOSCategories": {
17323
17380
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxIOSCategories"
17324
17381
  },
@@ -17579,9 +17636,6 @@ export const data = {
17579
17636
  },
17580
17637
  "CondAllowTagsAutoCreation": {
17581
17638
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowTagsAutoCreation"
17582
- },
17583
- "CondAllowAIWalletBilling": {
17584
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowAIWalletBilling"
17585
17639
  }
17586
17640
  },
17587
17641
  "oneofs": {
@@ -17602,6 +17656,7 @@ export const data = {
17602
17656
  "CondMaxTestDevices",
17603
17657
  "CondMaxGeozoneRange",
17604
17658
  "CondMaxRssFeeds",
17659
+ "CondMaxAutoPushes",
17605
17660
  "CondMaxIOSCategories",
17606
17661
  "CondMaxTwitterFeeds",
17607
17662
  "CondMaxInapps",
@@ -17688,8 +17743,7 @@ export const data = {
17688
17743
  "CondAllowAIAssistant",
17689
17744
  "CondAllowKeepUserWithoutDevice",
17690
17745
  "CondAllowCJSplitterDeviceCheck",
17691
- "CondAllowTagsAutoCreation",
17692
- "CondAllowAIWalletBilling"
17746
+ "CondAllowTagsAutoCreation"
17693
17747
  ]
17694
17748
  }
17695
17749
  }
@@ -17930,6 +17984,12 @@ export const data = {
17930
17984
  "method": "patch",
17931
17985
  "path": "/v1/objects/restrictionValues/ID/{ID}/update/MaxRssFeeds"
17932
17986
  },
17987
+ "UpdateMaxAutoPushes": {
17988
+ "request": "pushwoosh.objects.restrictionValues.v1.UpdateMaxAutoPushesRequest",
17989
+ "response": "{}",
17990
+ "method": "patch",
17991
+ "path": "/v1/objects/restrictionValues/ID/{ID}/update/MaxAutoPushes"
17992
+ },
17933
17993
  "UpdateMaxIOSCategories": {
17934
17994
  "request": "pushwoosh.objects.restrictionValues.v1.UpdateMaxIOSCategoriesRequest",
17935
17995
  "response": "{}",
@@ -18451,12 +18511,6 @@ export const data = {
18451
18511
  "response": "{}",
18452
18512
  "method": "patch",
18453
18513
  "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowTagsAutoCreation"
18454
- },
18455
- "UpdateAllowAIWalletBilling": {
18456
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowAIWalletBillingRequest",
18457
- "response": "{}",
18458
- "method": "patch",
18459
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowAIWalletBilling"
18460
18514
  }
18461
18515
  }
18462
18516
  },
@@ -18505,6 +18559,9 @@ export const data = {
18505
18559
  "MaxRssFeeds": {
18506
18560
  "type": "number"
18507
18561
  },
18562
+ "MaxAutoPushes": {
18563
+ "type": "number"
18564
+ },
18508
18565
  "MaxIOSCategories": {
18509
18566
  "type": "number"
18510
18567
  },
@@ -18765,9 +18822,6 @@ export const data = {
18765
18822
  },
18766
18823
  "AllowTagsAutoCreation": {
18767
18824
  "type": "boolean"
18768
- },
18769
- "AllowAIWalletBilling": {
18770
- "type": "boolean"
18771
18825
  }
18772
18826
  }
18773
18827
  },
@@ -19068,6 +19122,17 @@ export const data = {
19068
19122
  }
19069
19123
  }
19070
19124
  },
19125
+ "pushwoosh.objects.restrictionValues.v1.UpdateMaxAutoPushesRequest": {
19126
+ "type": "I",
19127
+ "fields": {
19128
+ "ID": {
19129
+ "type": "number"
19130
+ },
19131
+ "value": {
19132
+ "type": "number"
19133
+ }
19134
+ }
19135
+ },
19071
19136
  "pushwoosh.objects.restrictionValues.v1.UpdateMaxIOSCategoriesRequest": {
19072
19137
  "type": "I",
19073
19138
  "fields": {
@@ -20025,17 +20090,6 @@ export const data = {
20025
20090
  }
20026
20091
  }
20027
20092
  },
20028
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowAIWalletBillingRequest": {
20029
- "type": "I",
20030
- "fields": {
20031
- "ID": {
20032
- "type": "number"
20033
- },
20034
- "value": {
20035
- "type": "boolean"
20036
- }
20037
- }
20038
- },
20039
20093
  "pushwoosh.objects.restrictionValues.v1.GetRequest": {
20040
20094
  "type": "I",
20041
20095
  "fields": {
@@ -20120,6 +20174,9 @@ export const data = {
20120
20174
  "MaxRssFeeds": {
20121
20175
  "type": "number"
20122
20176
  },
20177
+ "MaxAutoPushes": {
20178
+ "type": "number"
20179
+ },
20123
20180
  "MaxIOSCategories": {
20124
20181
  "type": "number"
20125
20182
  },
@@ -20380,9 +20437,6 @@ export const data = {
20380
20437
  },
20381
20438
  "AllowTagsAutoCreation": {
20382
20439
  "type": "boolean"
20383
- },
20384
- "AllowAIWalletBilling": {
20385
- "type": "boolean"
20386
20440
  }
20387
20441
  }
20388
20442
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.811",
3
+ "version": "0.1.812",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -1,4 +1,4 @@
1
- export type TaskType = 'TASK_TYPE_UNSPECIFIED' | 'TASK_TYPE_FAILED' | 'TASK_TYPE_TRACKING_LOG_CSV' | 'TASK_TYPE_EXPORT_MESSAGES' | 'TASK_TYPE_EXPORT_MESSAGES_V2' | 'TASK_TYPE_EXPORT_UNREGISTERED_DEVICES' | 'TASK_TYPE_EXPORT_RICH_MEDIA_FORM_VALUES' | 'TASK_TYPE_APPLY_SEGMENT_TO_MESSAGE' | 'TASK_TYPE_EXPORT_APPLY_SEGMENT_TO_MESSAGE' | 'TASK_TYPE_CALCULATE_RETENTION' | 'TASK_TYPE_APPLY_SEGMENT_TO_METRIC' | 'TASK_TYPE_EXPORT_RICH_MEDIA_RECIPIENTS' | 'TASK_TYPE_EXPORT_BOUNCED_EMAILS' | 'TASK_TYPE_EXPORT_JOURNEYS_HISTORY' | 'TASK_TYPE_EXPORT_JOURNEY_POINT_USERS' | 'TASK_TYPE_EXPORT_MESSAGE_RECIPIENTS' | 'TASK_TYPE_EXPORT_MESSAGE_CLICKS_DEVICES' | 'TASK_TYPE_EXPORT_MESSAGE_EVENT_TRIGGERED_DEVICES' | 'TASK_TYPE_EXPORT_MESSAGE_ERROR_DEVICES' | 'TASK_TYPE_CREATE_SEGMENT_FROM_MESSAGE' | 'TASK_TYPE_UPDATE_SEGMENT_INSIGHTS_LIST' | 'TASK_TYPE_EXPORT_JOURNEY_USERS_LIST' | 'TASK_TYPE_EXPORT_JOURNEY_POINTS_STATISTICS' | 'TASK_TYPE_EXPORT_JOURNEY_GOAL_USERS' | 'TASK_TYPE_EXPORT_CONTROL_GROUP';
1
+ export type TaskType = 'TASK_TYPE_UNSPECIFIED' | 'TASK_TYPE_FAILED' | 'TASK_TYPE_TRACKING_LOG_CSV' | 'TASK_TYPE_EXPORT_MESSAGES' | 'TASK_TYPE_EXPORT_MESSAGES_V2' | 'TASK_TYPE_EXPORT_UNREGISTERED_DEVICES' | 'TASK_TYPE_EXPORT_RICH_MEDIA_FORM_VALUES' | 'TASK_TYPE_APPLY_SEGMENT_TO_MESSAGE' | 'TASK_TYPE_EXPORT_APPLY_SEGMENT_TO_MESSAGE' | 'TASK_TYPE_CALCULATE_RETENTION' | 'TASK_TYPE_APPLY_SEGMENT_TO_METRIC' | 'TASK_TYPE_EXPORT_RICH_MEDIA_RECIPIENTS' | 'TASK_TYPE_EXPORT_BOUNCED_EMAILS' | 'TASK_TYPE_EXPORT_JOURNEYS_HISTORY' | 'TASK_TYPE_EXPORT_JOURNEY_POINT_USERS' | 'TASK_TYPE_EXPORT_MESSAGE_RECIPIENTS' | 'TASK_TYPE_EXPORT_MESSAGE_CLICKS_DEVICES' | 'TASK_TYPE_EXPORT_MESSAGE_EVENT_TRIGGERED_DEVICES' | 'TASK_TYPE_EXPORT_MESSAGE_ERROR_DEVICES' | 'TASK_TYPE_CREATE_SEGMENT_FROM_MESSAGE' | 'TASK_TYPE_UPDATE_SEGMENT_INSIGHTS_LIST' | 'TASK_TYPE_EXPORT_JOURNEY_USERS_LIST' | 'TASK_TYPE_EXPORT_JOURNEY_POINTS_STATISTICS' | 'TASK_TYPE_EXPORT_JOURNEY_GOAL_USERS' | 'TASK_TYPE_EXPORT_CONTROL_GROUP' | 'TASK_TYPE_EXPORT_SUBSCRIPTION_FORM_SUBSCRIBED_USERS';
2
2
  export type ExportRequest_args_trackingLogCsv = {
3
3
  type: 'trackingLogCsv';
4
4
  data: TrackingLogCSVArgs;
@@ -87,7 +87,11 @@ export type ExportRequest_args_exportControlGroup = {
87
87
  type: 'exportControlGroup';
88
88
  data: ExportControlGroupArgs;
89
89
  };
90
- export type ExportRequest_args = ExportRequest_args_trackingLogCsv | ExportRequest_args_exportMessagesV2 | ExportRequest_args_exportUnregisteredDevices | ExportRequest_args_exportRichMediaFormValues | ExportRequest_args_applySegmentToMessage | ExportRequest_args_exportApplySegmentToMessage | ExportRequest_args_calculateRetention | ExportRequest_args_applySegmentToMetric | ExportRequest_args_exportRichMediaRecipients | ExportRequest_args_exportBouncedEmails | ExportRequest_args_exportJourneysHistory | ExportRequest_args_exportJourneyPointUsers | ExportRequest_args_exportMessageRecipients | ExportRequest_args_exportMessageClicksDevices | ExportRequest_args_exportMessageEventTriggeredDevices | ExportRequest_args_exportMessageErrorDevices | ExportRequest_args_createSegmentFromMessage | ExportRequest_args_updateSegmentInsightsList | ExportRequest_args_exportJourneyUsersList | ExportRequest_args_exportJourneyPointsStatistics | ExportRequest_args_exportJourneyGoalUsers | ExportRequest_args_exportControlGroup;
90
+ export type ExportRequest_args_exportSubscriptionFormSubscribedUsers = {
91
+ type: 'exportSubscriptionFormSubscribedUsers';
92
+ data: ExportSubscriptionFormSubscribedUsersArgs;
93
+ };
94
+ export type ExportRequest_args = ExportRequest_args_trackingLogCsv | ExportRequest_args_exportMessagesV2 | ExportRequest_args_exportUnregisteredDevices | ExportRequest_args_exportRichMediaFormValues | ExportRequest_args_applySegmentToMessage | ExportRequest_args_exportApplySegmentToMessage | ExportRequest_args_calculateRetention | ExportRequest_args_applySegmentToMetric | ExportRequest_args_exportRichMediaRecipients | ExportRequest_args_exportBouncedEmails | ExportRequest_args_exportJourneysHistory | ExportRequest_args_exportJourneyPointUsers | ExportRequest_args_exportMessageRecipients | ExportRequest_args_exportMessageClicksDevices | ExportRequest_args_exportMessageEventTriggeredDevices | ExportRequest_args_exportMessageErrorDevices | ExportRequest_args_createSegmentFromMessage | ExportRequest_args_updateSegmentInsightsList | ExportRequest_args_exportJourneyUsersList | ExportRequest_args_exportJourneyPointsStatistics | ExportRequest_args_exportJourneyGoalUsers | ExportRequest_args_exportControlGroup | ExportRequest_args_exportSubscriptionFormSubscribedUsers;
91
95
  export type ExportRequest = {
92
96
  type?: TaskType;
93
97
  args: ExportRequest_args;
@@ -202,7 +206,11 @@ export type ResultResponse_result_exportControlGroupResult = {
202
206
  type: 'exportControlGroupResult';
203
207
  data: ExportControlGroupResult;
204
208
  };
205
- export type ResultResponse_result = ResultResponse_result_failedTask | ResultResponse_result_trackingLogResult | ResultResponse_result_exportMessagesV2Result | ResultResponse_result_exportUnregisteredDevicesResult | ResultResponse_result_exportRichMediaFormValuesResult | ResultResponse_result_applySegmentToMessageResult | ResultResponse_result_exportApplySegmentToMessageResult | ResultResponse_result_calculateRetentionResult | ResultResponse_result_applySegmentToMetricResult | ResultResponse_result_exportRichMediaRecipientsResult | ResultResponse_result_exportBouncedEmailsResult | ResultResponse_result_exportJourneysHistoryResult | ResultResponse_result_exportJourneyPointUsersResult | ResultResponse_result_exportMessageRecipientsResult | ResultResponse_result_exportMessageClicksDevicesResult | ResultResponse_result_exportMessageEventTriggeredDevicesResult | ResultResponse_result_exportMessageErrorDevicesResult | ResultResponse_result_createSegmentFromMessageResult | ResultResponse_result_updateSegmentInsightsListResult | ResultResponse_result_exportJourneyUsersListResult | ResultResponse_result_exportJourneyPointsStatisticsResult | ResultResponse_result_exportJourneyGoalUsersResult | ResultResponse_result_exportControlGroupResult;
209
+ export type ResultResponse_result_exportSubscriptionFormSubscribedUsersResult = {
210
+ type: 'exportSubscriptionFormSubscribedUsersResult';
211
+ data: ExportSubscriptionFormSubscribedUsersResult;
212
+ };
213
+ export type ResultResponse_result = ResultResponse_result_failedTask | ResultResponse_result_trackingLogResult | ResultResponse_result_exportMessagesV2Result | ResultResponse_result_exportUnregisteredDevicesResult | ResultResponse_result_exportRichMediaFormValuesResult | ResultResponse_result_applySegmentToMessageResult | ResultResponse_result_exportApplySegmentToMessageResult | ResultResponse_result_calculateRetentionResult | ResultResponse_result_applySegmentToMetricResult | ResultResponse_result_exportRichMediaRecipientsResult | ResultResponse_result_exportBouncedEmailsResult | ResultResponse_result_exportJourneysHistoryResult | ResultResponse_result_exportJourneyPointUsersResult | ResultResponse_result_exportMessageRecipientsResult | ResultResponse_result_exportMessageClicksDevicesResult | ResultResponse_result_exportMessageEventTriggeredDevicesResult | ResultResponse_result_exportMessageErrorDevicesResult | ResultResponse_result_createSegmentFromMessageResult | ResultResponse_result_updateSegmentInsightsListResult | ResultResponse_result_exportJourneyUsersListResult | ResultResponse_result_exportJourneyPointsStatisticsResult | ResultResponse_result_exportJourneyGoalUsersResult | ResultResponse_result_exportControlGroupResult | ResultResponse_result_exportSubscriptionFormSubscribedUsersResult;
206
214
  export type ResultResponse = {
207
215
  type: TaskType;
208
216
  result: ResultResponse_result;
@@ -296,7 +304,11 @@ export type TaskInfo_args_exportControlGroup = {
296
304
  type: 'exportControlGroup';
297
305
  data: ExportControlGroupArgs;
298
306
  };
299
- export type TaskInfo_args = TaskInfo_args_trackingLogCsv | TaskInfo_args_exportMessagesV2 | TaskInfo_args_exportUnregisteredDevices | TaskInfo_args_exportRichMediaFormValues | TaskInfo_args_applySegmentToMessage | TaskInfo_args_exportRichMediaRecipients | TaskInfo_args_exportJourneysHistory | TaskInfo_args_exportMessageRecipients | TaskInfo_args_exportMessageClicksDevices | TaskInfo_args_exportMessageEventTriggeredDevices | TaskInfo_args_exportMessageErrorsDevices | TaskInfo_args_createSegmentFromMessage | TaskInfo_args_updateSegmentInsightsList | TaskInfo_args_exportBouncedEmails | TaskInfo_args_exportJourneyUsersList | TaskInfo_args_exportJourneyPointsStatistics | TaskInfo_args_exportJourneyGoalUsers | TaskInfo_args_exportJourneyPointUsers | TaskInfo_args_exportControlGroup;
307
+ export type TaskInfo_args_exportSubscriptionFormSubscribedUsers = {
308
+ type: 'exportSubscriptionFormSubscribedUsers';
309
+ data: ExportSubscriptionFormSubscribedUsersArgs;
310
+ };
311
+ export type TaskInfo_args = TaskInfo_args_trackingLogCsv | TaskInfo_args_exportMessagesV2 | TaskInfo_args_exportUnregisteredDevices | TaskInfo_args_exportRichMediaFormValues | TaskInfo_args_applySegmentToMessage | TaskInfo_args_exportRichMediaRecipients | TaskInfo_args_exportJourneysHistory | TaskInfo_args_exportMessageRecipients | TaskInfo_args_exportMessageClicksDevices | TaskInfo_args_exportMessageEventTriggeredDevices | TaskInfo_args_exportMessageErrorsDevices | TaskInfo_args_createSegmentFromMessage | TaskInfo_args_updateSegmentInsightsList | TaskInfo_args_exportBouncedEmails | TaskInfo_args_exportJourneyUsersList | TaskInfo_args_exportJourneyPointsStatistics | TaskInfo_args_exportJourneyGoalUsers | TaskInfo_args_exportJourneyPointUsers | TaskInfo_args_exportControlGroup | TaskInfo_args_exportSubscriptionFormSubscribedUsers;
300
312
  export type TaskInfo_result_failedTask = {
301
313
  type: 'failedTask';
302
314
  data: TaskFailed;
@@ -377,7 +389,11 @@ export type TaskInfo_result_exportControlGroupResult = {
377
389
  type: 'exportControlGroupResult';
378
390
  data: ExportControlGroupResult;
379
391
  };
380
- export type TaskInfo_result = TaskInfo_result_failedTask | TaskInfo_result_trackingLogResult | TaskInfo_result_exportMessagesV2Result | TaskInfo_result_exportUnregisteredDevicesResult | TaskInfo_result_exportRichMediaFormValuesResult | TaskInfo_result_applySegmentToMessageResult | TaskInfo_result_exportRichMediaRecipientsResult | TaskInfo_result_exportJourneysHistoryResult | TaskInfo_result_exportMessageRecipientsResult | TaskInfo_result_exportMessageClicksDevicesResult | TaskInfo_result_exportMessageEventTriggeredDevicesResult | TaskInfo_result_exportMessageErrorsDevicesResult | TaskInfo_result_createSegmentFromMessageResult | TaskInfo_result_updateSegmentInsightsListResult | TaskInfo_result_exportBouncedEmailsResult | TaskInfo_result_exportJourneyUsersListResult | TaskInfo_result_exportJourneyPointsStatisticsResult | TaskInfo_result_exportJourneyGoalUsersResult | TaskInfo_result_exportJourneyPointUsersResult | TaskInfo_result_exportControlGroupResult;
392
+ export type TaskInfo_result_exportSubscriptionFormSubscribedUsersResult = {
393
+ type: 'exportSubscriptionFormSubscribedUsersResult';
394
+ data: ExportSubscriptionFormSubscribedUsersResult;
395
+ };
396
+ export type TaskInfo_result = TaskInfo_result_failedTask | TaskInfo_result_trackingLogResult | TaskInfo_result_exportMessagesV2Result | TaskInfo_result_exportUnregisteredDevicesResult | TaskInfo_result_exportRichMediaFormValuesResult | TaskInfo_result_applySegmentToMessageResult | TaskInfo_result_exportRichMediaRecipientsResult | TaskInfo_result_exportJourneysHistoryResult | TaskInfo_result_exportMessageRecipientsResult | TaskInfo_result_exportMessageClicksDevicesResult | TaskInfo_result_exportMessageEventTriggeredDevicesResult | TaskInfo_result_exportMessageErrorsDevicesResult | TaskInfo_result_createSegmentFromMessageResult | TaskInfo_result_updateSegmentInsightsListResult | TaskInfo_result_exportBouncedEmailsResult | TaskInfo_result_exportJourneyUsersListResult | TaskInfo_result_exportJourneyPointsStatisticsResult | TaskInfo_result_exportJourneyGoalUsersResult | TaskInfo_result_exportJourneyPointUsersResult | TaskInfo_result_exportControlGroupResult | TaskInfo_result_exportSubscriptionFormSubscribedUsersResult;
381
397
  export type TaskInfo = {
382
398
  id: number;
383
399
  timestamp: string;
@@ -684,3 +700,14 @@ export type ExportControlGroupResult = {
684
700
  devicesCount: number;
685
701
  usersCount: number;
686
702
  };
703
+ export type ExportSubscriptionFormSubscribedUsersArgs_SUBMISSION_STATUS = 'SUBMISSION_STATUS_UNSPECIFIED' | 'SUBMISSION_STATUS_PENDING' | 'SUBMISSION_STATUS_CONFIRMED' | 'SUBMISSION_STATUS_EXPIRED';
704
+ export type ExportSubscriptionFormSubscribedUsersArgs = {
705
+ application: string;
706
+ form: string;
707
+ submissionStatus: ExportSubscriptionFormSubscribedUsersArgs_SUBMISSION_STATUS;
708
+ dateFrom: Date;
709
+ dateTo: Date;
710
+ };
711
+ export type ExportSubscriptionFormSubscribedUsersResult = {
712
+ file: string;
713
+ };
@@ -85,6 +85,11 @@ export type LogicExpression_Field_MaxRssFeeds = {
85
85
  value: number;
86
86
  values: number[];
87
87
  };
88
+ export type LogicExpression_Field_MaxAutoPushes = {
89
+ operator: LogicExpression_Field_Operator;
90
+ value: number;
91
+ values: number[];
92
+ };
88
93
  export type LogicExpression_Field_MaxIOSCategories = {
89
94
  operator: LogicExpression_Field_Operator;
90
95
  value: number;
@@ -520,11 +525,6 @@ export type LogicExpression_Field_AllowTagsAutoCreation = {
520
525
  value: boolean;
521
526
  values: boolean[];
522
527
  };
523
- export type LogicExpression_Field_AllowAIWalletBilling = {
524
- operator: LogicExpression_Field_Operator;
525
- value: boolean;
526
- values: boolean[];
527
- };
528
528
  export type LogicExpression_Field_kind_CondID = {
529
529
  type: 'CondID';
530
530
  data: LogicExpression_Field_ID;
@@ -585,6 +585,10 @@ export type LogicExpression_Field_kind_CondMaxRssFeeds = {
585
585
  type: 'CondMaxRssFeeds';
586
586
  data: LogicExpression_Field_MaxRssFeeds;
587
587
  };
588
+ export type LogicExpression_Field_kind_CondMaxAutoPushes = {
589
+ type: 'CondMaxAutoPushes';
590
+ data: LogicExpression_Field_MaxAutoPushes;
591
+ };
588
592
  export type LogicExpression_Field_kind_CondMaxIOSCategories = {
589
593
  type: 'CondMaxIOSCategories';
590
594
  data: LogicExpression_Field_MaxIOSCategories;
@@ -933,11 +937,7 @@ export type LogicExpression_Field_kind_CondAllowTagsAutoCreation = {
933
937
  type: 'CondAllowTagsAutoCreation';
934
938
  data: LogicExpression_Field_AllowTagsAutoCreation;
935
939
  };
936
- export type LogicExpression_Field_kind_CondAllowAIWalletBilling = {
937
- type: 'CondAllowAIWalletBilling';
938
- data: LogicExpression_Field_AllowAIWalletBilling;
939
- };
940
- 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_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_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;
940
+ 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_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;
941
941
  export type LogicExpression_Field = {
942
942
  kind: LogicExpression_Field_kind;
943
943
  };
@@ -996,6 +996,7 @@ export interface RestrictionValuesCrudService {
996
996
  UpdateMaxTestDevices(request: UpdateMaxTestDevicesRequest): Promise<{}>;
997
997
  UpdateMaxGeozoneRange(request: UpdateMaxGeozoneRangeRequest): Promise<{}>;
998
998
  UpdateMaxRssFeeds(request: UpdateMaxRssFeedsRequest): Promise<{}>;
999
+ UpdateMaxAutoPushes(request: UpdateMaxAutoPushesRequest): Promise<{}>;
999
1000
  UpdateMaxIOSCategories(request: UpdateMaxIOSCategoriesRequest): Promise<{}>;
1000
1001
  UpdateMaxTwitterFeeds(request: UpdateMaxTwitterFeedsRequest): Promise<{}>;
1001
1002
  UpdateMaxInapps(request: UpdateMaxInappsRequest): Promise<{}>;
@@ -1083,7 +1084,6 @@ export interface RestrictionValuesCrudService {
1083
1084
  UpdateAllowKeepUserWithoutDevice(request: UpdateAllowKeepUserWithoutDeviceRequest): Promise<{}>;
1084
1085
  UpdateAllowCJSplitterDeviceCheck(request: UpdateAllowCJSplitterDeviceCheckRequest): Promise<{}>;
1085
1086
  UpdateAllowTagsAutoCreation(request: UpdateAllowTagsAutoCreationRequest): Promise<{}>;
1086
- UpdateAllowAIWalletBilling(request: UpdateAllowAIWalletBillingRequest): Promise<{}>;
1087
1087
  }
1088
1088
  export type CreateRequest = {
1089
1089
  IsLocked?: boolean;
@@ -1100,6 +1100,7 @@ export type CreateRequest = {
1100
1100
  MaxTestDevices?: number;
1101
1101
  MaxGeozoneRange?: number;
1102
1102
  MaxRssFeeds?: number;
1103
+ MaxAutoPushes?: number;
1103
1104
  MaxIOSCategories?: number;
1104
1105
  MaxTwitterFeeds?: number;
1105
1106
  MaxInapps?: number;
@@ -1187,7 +1188,6 @@ export type CreateRequest = {
1187
1188
  AllowKeepUserWithoutDevice?: boolean;
1188
1189
  AllowCJSplitterDeviceCheck?: boolean;
1189
1190
  AllowTagsAutoCreation?: boolean;
1190
- AllowAIWalletBilling?: boolean;
1191
1191
  };
1192
1192
  export type CreateResponse = {
1193
1193
  restrictionValue: RestrictionValue;
@@ -1296,6 +1296,10 @@ export type UpdateMaxRssFeedsRequest = {
1296
1296
  ID?: number;
1297
1297
  value?: number;
1298
1298
  };
1299
+ export type UpdateMaxAutoPushesRequest = {
1300
+ ID?: number;
1301
+ value?: number;
1302
+ };
1299
1303
  export type UpdateMaxIOSCategoriesRequest = {
1300
1304
  ID?: number;
1301
1305
  value?: number;
@@ -1644,10 +1648,6 @@ export type UpdateAllowTagsAutoCreationRequest = {
1644
1648
  ID?: number;
1645
1649
  value?: boolean;
1646
1650
  };
1647
- export type UpdateAllowAIWalletBillingRequest = {
1648
- ID?: number;
1649
- value?: boolean;
1650
- };
1651
1651
  export type GetRequest = {
1652
1652
  ID?: number;
1653
1653
  };
@@ -1675,6 +1675,7 @@ export type RestrictionValue = {
1675
1675
  MaxTestDevices: number;
1676
1676
  MaxGeozoneRange: number;
1677
1677
  MaxRssFeeds: number;
1678
+ MaxAutoPushes: number;
1678
1679
  MaxIOSCategories: number;
1679
1680
  MaxTwitterFeeds: number;
1680
1681
  MaxInapps: number;
@@ -1762,5 +1763,4 @@ export type RestrictionValue = {
1762
1763
  AllowKeepUserWithoutDevice: boolean;
1763
1764
  AllowCJSplitterDeviceCheck: boolean;
1764
1765
  AllowTagsAutoCreation: boolean;
1765
- AllowAIWalletBilling: boolean;
1766
1766
  };