@pushwoosh/rpc-v2-http-api-data 0.1.808 → 0.1.810

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.
@@ -49,7 +49,6 @@ export type Account = {
49
49
  campaignsCount: number;
50
50
  presetsCount: number;
51
51
  testDevicesCount: number;
52
- autoPushesCount: number;
53
52
  rssFeedsCount: number;
54
53
  inAppsCount: number;
55
54
  eventsCount: number;
package/data.js CHANGED
@@ -1958,9 +1958,6 @@ export const data = {
1958
1958
  "testDevicesCount": {
1959
1959
  "type": "number"
1960
1960
  },
1961
- "autoPushesCount": {
1962
- "type": "number"
1963
- },
1964
1961
  "rssFeedsCount": {
1965
1962
  "type": "number"
1966
1963
  },
@@ -3958,282 +3955,6 @@ export const data = {
3958
3955
  }
3959
3956
  }
3960
3957
  },
3961
- "pushwoosh.rpc_v2.autopushes.AutopushesService": {
3962
- "type": "S",
3963
- "key": "autopushes",
3964
- "methods": {
3965
- "List": {
3966
- "request": "pushwoosh.rpc_v2.autopushes.ListRequest",
3967
- "response": "pushwoosh.rpc_v2.autopushes.ListResponse",
3968
- "method": "get",
3969
- "path": "/api/autopushes"
3970
- },
3971
- "Delete": {
3972
- "request": "pushwoosh.rpc_v2.autopushes.DeleteRequest",
3973
- "response": "pushwoosh.rpc_v2.autopushes.DeleteResponse",
3974
- "method": "delete",
3975
- "path": "/api/autopushes/{code}"
3976
- },
3977
- "Get": {
3978
- "request": "pushwoosh.rpc_v2.autopushes.GetRequest",
3979
- "response": "pushwoosh.rpc_v2.autopushes.GetResponse",
3980
- "method": "get",
3981
- "path": "/api/autopushes/{application}/{code}"
3982
- },
3983
- "Create": {
3984
- "request": "pushwoosh.rpc_v2.autopushes.CreateRequest",
3985
- "response": "pushwoosh.rpc_v2.autopushes.CreateResponse",
3986
- "method": "post",
3987
- "path": "/api/autopushes"
3988
- },
3989
- "Update": {
3990
- "request": "pushwoosh.rpc_v2.autopushes.UpdateRequest",
3991
- "response": "pushwoosh.rpc_v2.autopushes.UpdateResponse",
3992
- "method": "put",
3993
- "path": "/api/autopushes/{code}"
3994
- }
3995
- }
3996
- },
3997
- "pushwoosh.rpc_v2.autopushes.Schedule": {
3998
- "type": "I",
3999
- "fields": {
4000
- "stopSendDate": {
4001
- "type": "Date"
4002
- },
4003
- "time": {
4004
- "type": "string"
4005
- },
4006
- "daysOfWeek": {
4007
- "type": "string",
4008
- "array": true
4009
- },
4010
- "daysOfMonth": {
4011
- "type": "string",
4012
- "array": true
4013
- }
4014
- }
4015
- },
4016
- "pushwoosh.rpc_v2.autopushes.Capping": {
4017
- "type": "I",
4018
- "fields": {
4019
- "count": {
4020
- "type": "number"
4021
- },
4022
- "days": {
4023
- "type": "number"
4024
- }
4025
- }
4026
- },
4027
- "pushwoosh.rpc_v2.autopushes.Autopush": {
4028
- "type": "I",
4029
- "fields": {
4030
- "code": {
4031
- "type": "string"
4032
- },
4033
- "name": {
4034
- "type": "string"
4035
- },
4036
- "description": {
4037
- "type": "string"
4038
- },
4039
- "preset": {
4040
- "type": "string"
4041
- },
4042
- "filter": {
4043
- "type": "string"
4044
- },
4045
- "application": {
4046
- "type": "string"
4047
- },
4048
- "campaign": {
4049
- "type": "string"
4050
- },
4051
- "useUserTimezone": {
4052
- "type": "boolean"
4053
- },
4054
- "content": {
4055
- "type": "string"
4056
- },
4057
- "schedule": {
4058
- "type": "pushwoosh.rpc_v2.autopushes.Schedule"
4059
- },
4060
- "capping": {
4061
- "type": "pushwoosh.rpc_v2.autopushes.Capping"
4062
- },
4063
- "created": {
4064
- "type": "Date"
4065
- }
4066
- }
4067
- },
4068
- "pushwoosh.rpc_v2.autopushes.ListRequest.OrderBy": {
4069
- "type": "E",
4070
- "values": [
4071
- "NAME",
4072
- "CREATED"
4073
- ]
4074
- },
4075
- "pushwoosh.rpc_v2.autopushes.ListRequest.OrderDirection": {
4076
- "type": "E",
4077
- "values": [
4078
- "ASC",
4079
- "DESC"
4080
- ]
4081
- },
4082
- "pushwoosh.rpc_v2.autopushes.ListRequest": {
4083
- "type": "I",
4084
- "fields": {
4085
- "application": {
4086
- "type": "string"
4087
- },
4088
- "page": {
4089
- "type": "number"
4090
- },
4091
- "perPage": {
4092
- "type": "number"
4093
- },
4094
- "orderBy": {
4095
- "type": "pushwoosh.rpc_v2.autopushes.ListRequest.OrderBy"
4096
- },
4097
- "orderDirection": {
4098
- "type": "pushwoosh.rpc_v2.autopushes.ListRequest.OrderDirection"
4099
- },
4100
- "searchByName": {
4101
- "type": "string"
4102
- },
4103
- "searchByCode": {
4104
- "type": "string"
4105
- }
4106
- }
4107
- },
4108
- "pushwoosh.rpc_v2.autopushes.ListResponse": {
4109
- "type": "I",
4110
- "fields": {
4111
- "autopushes": {
4112
- "type": "pushwoosh.rpc_v2.autopushes.Autopush",
4113
- "array": true
4114
- },
4115
- "page": {
4116
- "type": "number"
4117
- },
4118
- "perPage": {
4119
- "type": "number"
4120
- },
4121
- "total": {
4122
- "type": "number"
4123
- }
4124
- }
4125
- },
4126
- "pushwoosh.rpc_v2.autopushes.DeleteRequest": {
4127
- "type": "I",
4128
- "fields": {
4129
- "code": {
4130
- "type": "string"
4131
- }
4132
- }
4133
- },
4134
- "pushwoosh.rpc_v2.autopushes.DeleteResponse": {
4135
- "type": "I",
4136
- "fields": {}
4137
- },
4138
- "pushwoosh.rpc_v2.autopushes.GetRequest": {
4139
- "type": "I",
4140
- "fields": {
4141
- "code": {
4142
- "type": "string"
4143
- },
4144
- "application": {
4145
- "type": "string"
4146
- }
4147
- }
4148
- },
4149
- "pushwoosh.rpc_v2.autopushes.GetResponse": {
4150
- "type": "I",
4151
- "fields": {
4152
- "autopush": {
4153
- "type": "pushwoosh.rpc_v2.autopushes.Autopush"
4154
- }
4155
- }
4156
- },
4157
- "pushwoosh.rpc_v2.autopushes.CreateRequest": {
4158
- "type": "I",
4159
- "fields": {
4160
- "name": {
4161
- "type": "string"
4162
- },
4163
- "description": {
4164
- "type": "string"
4165
- },
4166
- "preset": {
4167
- "type": "string"
4168
- },
4169
- "filter": {
4170
- "type": "string"
4171
- },
4172
- "application": {
4173
- "type": "string"
4174
- },
4175
- "campaign": {
4176
- "type": "string"
4177
- },
4178
- "useUserTimezone": {
4179
- "type": "boolean"
4180
- },
4181
- "schedule": {
4182
- "type": "pushwoosh.rpc_v2.autopushes.Schedule"
4183
- },
4184
- "capping": {
4185
- "type": "pushwoosh.rpc_v2.autopushes.Capping"
4186
- }
4187
- }
4188
- },
4189
- "pushwoosh.rpc_v2.autopushes.CreateResponse": {
4190
- "type": "I",
4191
- "fields": {
4192
- "autopush": {
4193
- "type": "pushwoosh.rpc_v2.autopushes.Autopush"
4194
- }
4195
- }
4196
- },
4197
- "pushwoosh.rpc_v2.autopushes.UpdateRequest": {
4198
- "type": "I",
4199
- "fields": {
4200
- "code": {
4201
- "type": "string"
4202
- },
4203
- "name": {
4204
- "type": "string"
4205
- },
4206
- "description": {
4207
- "type": "string"
4208
- },
4209
- "preset": {
4210
- "type": "string"
4211
- },
4212
- "filter": {
4213
- "type": "string"
4214
- },
4215
- "campaign": {
4216
- "type": "string"
4217
- },
4218
- "useUserTimezone": {
4219
- "type": "boolean"
4220
- },
4221
- "schedule": {
4222
- "type": "pushwoosh.rpc_v2.autopushes.Schedule"
4223
- },
4224
- "capping": {
4225
- "type": "pushwoosh.rpc_v2.autopushes.Capping"
4226
- }
4227
- }
4228
- },
4229
- "pushwoosh.rpc_v2.autopushes.UpdateResponse": {
4230
- "type": "I",
4231
- "fields": {
4232
- "autopush": {
4233
- "type": "pushwoosh.rpc_v2.autopushes.Autopush"
4234
- }
4235
- }
4236
- },
4237
3958
  "pushwoosh.rpc_v2.campaigns.CampaignsService": {
4238
3959
  "type": "S",
4239
3960
  "key": "campaigns",
@@ -16224,21 +15945,6 @@ export const data = {
16224
15945
  }
16225
15946
  }
16226
15947
  },
16227
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxAutoPushes": {
16228
- "type": "I",
16229
- "fields": {
16230
- "operator": {
16231
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
16232
- },
16233
- "value": {
16234
- "type": "number"
16235
- },
16236
- "values": {
16237
- "type": "number",
16238
- "array": true
16239
- }
16240
- }
16241
- },
16242
15948
  "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxIOSCategories": {
16243
15949
  "type": "I",
16244
15950
  "fields": {
@@ -17544,6 +17250,21 @@ export const data = {
17544
17250
  }
17545
17251
  }
17546
17252
  },
17253
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowAIWalletBilling": {
17254
+ "type": "I",
17255
+ "fields": {
17256
+ "operator": {
17257
+ "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
17258
+ },
17259
+ "value": {
17260
+ "type": "boolean"
17261
+ },
17262
+ "values": {
17263
+ "type": "boolean",
17264
+ "array": true
17265
+ }
17266
+ }
17267
+ },
17547
17268
  "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field": {
17548
17269
  "type": "I",
17549
17270
  "fields": {
@@ -17592,9 +17313,6 @@ export const data = {
17592
17313
  "CondMaxRssFeeds": {
17593
17314
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxRssFeeds"
17594
17315
  },
17595
- "CondMaxAutoPushes": {
17596
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxAutoPushes"
17597
- },
17598
17316
  "CondMaxIOSCategories": {
17599
17317
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxIOSCategories"
17600
17318
  },
@@ -17855,6 +17573,9 @@ export const data = {
17855
17573
  },
17856
17574
  "CondAllowTagsAutoCreation": {
17857
17575
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowTagsAutoCreation"
17576
+ },
17577
+ "CondAllowAIWalletBilling": {
17578
+ "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowAIWalletBilling"
17858
17579
  }
17859
17580
  },
17860
17581
  "oneofs": {
@@ -17875,7 +17596,6 @@ export const data = {
17875
17596
  "CondMaxTestDevices",
17876
17597
  "CondMaxGeozoneRange",
17877
17598
  "CondMaxRssFeeds",
17878
- "CondMaxAutoPushes",
17879
17599
  "CondMaxIOSCategories",
17880
17600
  "CondMaxTwitterFeeds",
17881
17601
  "CondMaxInapps",
@@ -17962,7 +17682,8 @@ export const data = {
17962
17682
  "CondAllowAIAssistant",
17963
17683
  "CondAllowKeepUserWithoutDevice",
17964
17684
  "CondAllowCJSplitterDeviceCheck",
17965
- "CondAllowTagsAutoCreation"
17685
+ "CondAllowTagsAutoCreation",
17686
+ "CondAllowAIWalletBilling"
17966
17687
  ]
17967
17688
  }
17968
17689
  }
@@ -18203,12 +17924,6 @@ export const data = {
18203
17924
  "method": "patch",
18204
17925
  "path": "/v1/objects/restrictionValues/ID/{ID}/update/MaxRssFeeds"
18205
17926
  },
18206
- "UpdateMaxAutoPushes": {
18207
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateMaxAutoPushesRequest",
18208
- "response": "{}",
18209
- "method": "patch",
18210
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/MaxAutoPushes"
18211
- },
18212
17927
  "UpdateMaxIOSCategories": {
18213
17928
  "request": "pushwoosh.objects.restrictionValues.v1.UpdateMaxIOSCategoriesRequest",
18214
17929
  "response": "{}",
@@ -18730,6 +18445,12 @@ export const data = {
18730
18445
  "response": "{}",
18731
18446
  "method": "patch",
18732
18447
  "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowTagsAutoCreation"
18448
+ },
18449
+ "UpdateAllowAIWalletBilling": {
18450
+ "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowAIWalletBillingRequest",
18451
+ "response": "{}",
18452
+ "method": "patch",
18453
+ "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowAIWalletBilling"
18733
18454
  }
18734
18455
  }
18735
18456
  },
@@ -18778,9 +18499,6 @@ export const data = {
18778
18499
  "MaxRssFeeds": {
18779
18500
  "type": "number"
18780
18501
  },
18781
- "MaxAutoPushes": {
18782
- "type": "number"
18783
- },
18784
18502
  "MaxIOSCategories": {
18785
18503
  "type": "number"
18786
18504
  },
@@ -19041,6 +18759,9 @@ export const data = {
19041
18759
  },
19042
18760
  "AllowTagsAutoCreation": {
19043
18761
  "type": "boolean"
18762
+ },
18763
+ "AllowAIWalletBilling": {
18764
+ "type": "boolean"
19044
18765
  }
19045
18766
  }
19046
18767
  },
@@ -19341,17 +19062,6 @@ export const data = {
19341
19062
  }
19342
19063
  }
19343
19064
  },
19344
- "pushwoosh.objects.restrictionValues.v1.UpdateMaxAutoPushesRequest": {
19345
- "type": "I",
19346
- "fields": {
19347
- "ID": {
19348
- "type": "number"
19349
- },
19350
- "value": {
19351
- "type": "number"
19352
- }
19353
- }
19354
- },
19355
19065
  "pushwoosh.objects.restrictionValues.v1.UpdateMaxIOSCategoriesRequest": {
19356
19066
  "type": "I",
19357
19067
  "fields": {
@@ -20309,6 +20019,17 @@ export const data = {
20309
20019
  }
20310
20020
  }
20311
20021
  },
20022
+ "pushwoosh.objects.restrictionValues.v1.UpdateAllowAIWalletBillingRequest": {
20023
+ "type": "I",
20024
+ "fields": {
20025
+ "ID": {
20026
+ "type": "number"
20027
+ },
20028
+ "value": {
20029
+ "type": "boolean"
20030
+ }
20031
+ }
20032
+ },
20312
20033
  "pushwoosh.objects.restrictionValues.v1.GetRequest": {
20313
20034
  "type": "I",
20314
20035
  "fields": {
@@ -20393,9 +20114,6 @@ export const data = {
20393
20114
  "MaxRssFeeds": {
20394
20115
  "type": "number"
20395
20116
  },
20396
- "MaxAutoPushes": {
20397
- "type": "number"
20398
- },
20399
20117
  "MaxIOSCategories": {
20400
20118
  "type": "number"
20401
20119
  },
@@ -20656,6 +20374,9 @@ export const data = {
20656
20374
  },
20657
20375
  "AllowTagsAutoCreation": {
20658
20376
  "type": "boolean"
20377
+ },
20378
+ "AllowAIWalletBilling": {
20379
+ "type": "boolean"
20659
20380
  }
20660
20381
  }
20661
20382
  },
@@ -23921,20 +23642,6 @@ export const data = {
23921
23642
  }
23922
23643
  }
23923
23644
  },
23924
- "pushwoosh.rpc_v2.tags.GetTagUsageResponse.Autopush": {
23925
- "type": "I",
23926
- "fields": {
23927
- "code": {
23928
- "type": "string"
23929
- },
23930
- "name": {
23931
- "type": "string"
23932
- },
23933
- "status": {
23934
- "type": "boolean"
23935
- }
23936
- }
23937
- },
23938
23645
  "pushwoosh.rpc_v2.tags.GetTagUsageResponse.Filter": {
23939
23646
  "type": "I",
23940
23647
  "fields": {
@@ -23957,10 +23664,6 @@ export const data = {
23957
23664
  "type": "pushwoosh.rpc_v2.tags.GetTagUsageResponse.Inapp",
23958
23665
  "array": true
23959
23666
  },
23960
- "autopushes": {
23961
- "type": "pushwoosh.rpc_v2.tags.GetTagUsageResponse.Autopush",
23962
- "array": true
23963
- },
23964
23667
  "filters": {
23965
23668
  "type": "pushwoosh.rpc_v2.tags.GetTagUsageResponse.Filter",
23966
23669
  "array": true
package/index.d.ts CHANGED
@@ -14,7 +14,6 @@ import { ApplicationsConfigurationsService as pushwoosh_rpc_v2_applications_conf
14
14
  import { ApplicationsGroupsService as pushwoosh_rpc_v2_applications_groups_ApplicationsGroupsService } from './applications_groups';
15
15
  import { ApplicationsInfoService as pushwoosh_rpc_v2_applications_info_ApplicationsInfoService } from './applications_info';
16
16
  import { ApplicationsStatisticsService as pushwoosh_rpc_v2_applications_statistics_ApplicationsStatisticsService } from './applications_statistics';
17
- import { AutopushesService as pushwoosh_rpc_v2_autopushes_AutopushesService } from './autopushes';
18
17
  import { CampaignsService as pushwoosh_rpc_v2_campaigns_CampaignsService } from './campaigns';
19
18
  import { CategoriesService as pushwoosh_rpc_v2_categories_CategoriesService } from './categories';
20
19
  import { MessagingService as pushwoosh_channels_messagingApi_v2_MessagingService } from './pushwoosh_channels_messagingApi_v2';
@@ -74,7 +73,6 @@ export type API = {
74
73
  applicationsGroups: pushwoosh_rpc_v2_applications_groups_ApplicationsGroupsService;
75
74
  applicationsInfo: pushwoosh_rpc_v2_applications_info_ApplicationsInfoService;
76
75
  applicationsStatistics: pushwoosh_rpc_v2_applications_statistics_ApplicationsStatisticsService;
77
- autopushes: pushwoosh_rpc_v2_autopushes_AutopushesService;
78
76
  campaigns: pushwoosh_rpc_v2_campaigns_CampaignsService;
79
77
  categories: pushwoosh_rpc_v2_categories_CategoriesService;
80
78
  messaging: pushwoosh_channels_messagingApi_v2_MessagingService;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.808",
3
+ "version": "0.1.810",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -85,11 +85,6 @@ 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
- };
93
88
  export type LogicExpression_Field_MaxIOSCategories = {
94
89
  operator: LogicExpression_Field_Operator;
95
90
  value: number;
@@ -525,6 +520,11 @@ export type LogicExpression_Field_AllowTagsAutoCreation = {
525
520
  value: boolean;
526
521
  values: boolean[];
527
522
  };
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,10 +585,6 @@ 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
- };
592
588
  export type LogicExpression_Field_kind_CondMaxIOSCategories = {
593
589
  type: 'CondMaxIOSCategories';
594
590
  data: LogicExpression_Field_MaxIOSCategories;
@@ -937,7 +933,11 @@ export type LogicExpression_Field_kind_CondAllowTagsAutoCreation = {
937
933
  type: 'CondAllowTagsAutoCreation';
938
934
  data: LogicExpression_Field_AllowTagsAutoCreation;
939
935
  };
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;
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;
941
941
  export type LogicExpression_Field = {
942
942
  kind: LogicExpression_Field_kind;
943
943
  };
@@ -996,7 +996,6 @@ 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<{}>;
1000
999
  UpdateMaxIOSCategories(request: UpdateMaxIOSCategoriesRequest): Promise<{}>;
1001
1000
  UpdateMaxTwitterFeeds(request: UpdateMaxTwitterFeedsRequest): Promise<{}>;
1002
1001
  UpdateMaxInapps(request: UpdateMaxInappsRequest): Promise<{}>;
@@ -1084,6 +1083,7 @@ export interface RestrictionValuesCrudService {
1084
1083
  UpdateAllowKeepUserWithoutDevice(request: UpdateAllowKeepUserWithoutDeviceRequest): Promise<{}>;
1085
1084
  UpdateAllowCJSplitterDeviceCheck(request: UpdateAllowCJSplitterDeviceCheckRequest): Promise<{}>;
1086
1085
  UpdateAllowTagsAutoCreation(request: UpdateAllowTagsAutoCreationRequest): Promise<{}>;
1086
+ UpdateAllowAIWalletBilling(request: UpdateAllowAIWalletBillingRequest): Promise<{}>;
1087
1087
  }
1088
1088
  export type CreateRequest = {
1089
1089
  IsLocked?: boolean;
@@ -1100,7 +1100,6 @@ export type CreateRequest = {
1100
1100
  MaxTestDevices?: number;
1101
1101
  MaxGeozoneRange?: number;
1102
1102
  MaxRssFeeds?: number;
1103
- MaxAutoPushes?: number;
1104
1103
  MaxIOSCategories?: number;
1105
1104
  MaxTwitterFeeds?: number;
1106
1105
  MaxInapps?: number;
@@ -1188,6 +1187,7 @@ export type CreateRequest = {
1188
1187
  AllowKeepUserWithoutDevice?: boolean;
1189
1188
  AllowCJSplitterDeviceCheck?: boolean;
1190
1189
  AllowTagsAutoCreation?: boolean;
1190
+ AllowAIWalletBilling?: boolean;
1191
1191
  };
1192
1192
  export type CreateResponse = {
1193
1193
  restrictionValue: RestrictionValue;
@@ -1296,10 +1296,6 @@ export type UpdateMaxRssFeedsRequest = {
1296
1296
  ID?: number;
1297
1297
  value?: number;
1298
1298
  };
1299
- export type UpdateMaxAutoPushesRequest = {
1300
- ID?: number;
1301
- value?: number;
1302
- };
1303
1299
  export type UpdateMaxIOSCategoriesRequest = {
1304
1300
  ID?: number;
1305
1301
  value?: number;
@@ -1648,6 +1644,10 @@ export type UpdateAllowTagsAutoCreationRequest = {
1648
1644
  ID?: number;
1649
1645
  value?: boolean;
1650
1646
  };
1647
+ export type UpdateAllowAIWalletBillingRequest = {
1648
+ ID?: number;
1649
+ value?: boolean;
1650
+ };
1651
1651
  export type GetRequest = {
1652
1652
  ID?: number;
1653
1653
  };
@@ -1675,7 +1675,6 @@ export type RestrictionValue = {
1675
1675
  MaxTestDevices: number;
1676
1676
  MaxGeozoneRange: number;
1677
1677
  MaxRssFeeds: number;
1678
- MaxAutoPushes: number;
1679
1678
  MaxIOSCategories: number;
1680
1679
  MaxTwitterFeeds: number;
1681
1680
  MaxInapps: number;
@@ -1763,4 +1762,5 @@ export type RestrictionValue = {
1763
1762
  AllowKeepUserWithoutDevice: boolean;
1764
1763
  AllowCJSplitterDeviceCheck: boolean;
1765
1764
  AllowTagsAutoCreation: boolean;
1765
+ AllowAIWalletBilling: boolean;
1766
1766
  };
package/tags.d.ts CHANGED
@@ -84,11 +84,6 @@ export type GetTagUsageResponse_Inapp = {
84
84
  name: string;
85
85
  status: string;
86
86
  };
87
- export type GetTagUsageResponse_Autopush = {
88
- code: string;
89
- name: string;
90
- status: boolean;
91
- };
92
87
  export type GetTagUsageResponse_Filter = {
93
88
  code: string;
94
89
  name: string;
@@ -96,6 +91,5 @@ export type GetTagUsageResponse_Filter = {
96
91
  export type GetTagUsageResponse = {
97
92
  journeys: GetTagUsageResponse_Journey[];
98
93
  inapps: GetTagUsageResponse_Inapp[];
99
- autopushes: GetTagUsageResponse_Autopush[];
100
94
  filters: GetTagUsageResponse_Filter[];
101
95
  };
package/autopushes.d.ts DELETED
@@ -1,87 +0,0 @@
1
- export interface AutopushesService {
2
- List(request: ListRequest): Promise<ListResponse>;
3
- Delete(request: DeleteRequest): Promise<DeleteResponse>;
4
- Get(request: GetRequest): Promise<GetResponse>;
5
- Create(request: CreateRequest): Promise<CreateResponse>;
6
- Update(request: UpdateRequest): Promise<UpdateResponse>;
7
- }
8
- export type Schedule = {
9
- stopSendDate: Date;
10
- time: string;
11
- daysOfWeek: string[];
12
- daysOfMonth: string[];
13
- };
14
- export type Capping = {
15
- count: number;
16
- days: number;
17
- };
18
- export type Autopush = {
19
- code: string;
20
- name: string;
21
- description: string;
22
- preset: string;
23
- filter: string;
24
- application: string;
25
- campaign: string;
26
- useUserTimezone: boolean;
27
- content: string;
28
- schedule: Schedule;
29
- capping: Capping;
30
- created: Date;
31
- };
32
- export type ListRequest_OrderBy = 'NAME' | 'CREATED';
33
- export type ListRequest_OrderDirection = 'ASC' | 'DESC';
34
- export type ListRequest = {
35
- application?: string;
36
- page?: number;
37
- perPage?: number;
38
- orderBy?: ListRequest_OrderBy;
39
- orderDirection?: ListRequest_OrderDirection;
40
- searchByName?: string;
41
- searchByCode?: string;
42
- };
43
- export type ListResponse = {
44
- autopushes: Autopush[];
45
- page: number;
46
- perPage: number;
47
- total: number;
48
- };
49
- export type DeleteRequest = {
50
- code?: string;
51
- };
52
- export type DeleteResponse = {};
53
- export type GetRequest = {
54
- code?: string;
55
- application?: string;
56
- };
57
- export type GetResponse = {
58
- autopush: Autopush;
59
- };
60
- export type CreateRequest = {
61
- name?: string;
62
- description?: string;
63
- preset?: string;
64
- filter?: string;
65
- application?: string;
66
- campaign?: string;
67
- useUserTimezone?: boolean;
68
- schedule?: Schedule;
69
- capping?: Capping;
70
- };
71
- export type CreateResponse = {
72
- autopush: Autopush;
73
- };
74
- export type UpdateRequest = {
75
- code?: string;
76
- name?: string;
77
- description?: string;
78
- preset?: string;
79
- filter?: string;
80
- campaign?: string;
81
- useUserTimezone?: boolean;
82
- schedule?: Schedule;
83
- capping?: Capping;
84
- };
85
- export type UpdateResponse = {
86
- autopush: Autopush;
87
- };
package/autopushes.js DELETED
@@ -1,2 +0,0 @@
1
- /* eslint-disable */
2
- export {};