@pushwoosh/rpc-v2-http-api-data 0.1.824 → 0.1.825
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/accounts.d.ts +9 -0
- package/data.js +71 -43
- package/package.json +1 -1
- package/pushwoosh_objects_restrictionValues_v1.d.ts +17 -17
package/accounts.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export interface AccountsService {
|
|
|
8
8
|
GetOnboardingInfo(request: GetOnboardingInfoRequest): Promise<GetOnboardingInfoResponse>;
|
|
9
9
|
UpdateOnboardingInfo(request: UpdateOnboardingInfoRequest): Promise<UpdateOnboardingInfoResponse>;
|
|
10
10
|
GetTotalEmailSubscribersCount(request: GetTotalEmailSubscribersCountRequest): Promise<GetTotalEmailSubscribersCountResponse>;
|
|
11
|
+
GetUnifiedMAUCount(request: GetUnifiedMAUCountRequest): Promise<GetUnifiedMAUCountResponse>;
|
|
11
12
|
GetAccount(request: GetAccountRequest): Promise<GetAccountResponse>;
|
|
12
13
|
UpdateAccount(request: UpdateAccountRequest): Promise<UpdateAccountResponse>;
|
|
13
14
|
GetBillingInfo(request: GetBillingInfoRequest): Promise<GetBillingInfoResponse>;
|
|
@@ -88,6 +89,14 @@ export type GetTotalEmailSubscribersCountRequest = {};
|
|
|
88
89
|
export type GetTotalEmailSubscribersCountResponse = {
|
|
89
90
|
totalEmailSubscribers: number;
|
|
90
91
|
};
|
|
92
|
+
export type GetUnifiedMAUCountRequest = {
|
|
93
|
+
dateFrom?: Date;
|
|
94
|
+
dateTo?: Date;
|
|
95
|
+
};
|
|
96
|
+
export type GetUnifiedMAUCountResponse = {
|
|
97
|
+
totalUnifiedMau: number;
|
|
98
|
+
emailsMau: number;
|
|
99
|
+
};
|
|
91
100
|
export type BillingAddress = {
|
|
92
101
|
firstName: string;
|
|
93
102
|
lastName: string;
|
package/data.js
CHANGED
|
@@ -950,6 +950,12 @@ export const data = {
|
|
|
950
950
|
"method": "get",
|
|
951
951
|
"path": "/api/accounts/counters:total_email_subscribers"
|
|
952
952
|
},
|
|
953
|
+
"GetUnifiedMAUCount": {
|
|
954
|
+
"request": "pushwoosh.rpc_v2.accounts.GetUnifiedMAUCountRequest",
|
|
955
|
+
"response": "pushwoosh.rpc_v2.accounts.GetUnifiedMAUCountResponse",
|
|
956
|
+
"method": "get",
|
|
957
|
+
"path": "/api/accounts/counters:total_unified_mau"
|
|
958
|
+
},
|
|
953
959
|
"GetAccount": {
|
|
954
960
|
"request": "pushwoosh.rpc_v2.accounts.GetAccountRequest",
|
|
955
961
|
"response": "pushwoosh.rpc_v2.accounts.GetAccountResponse",
|
|
@@ -1199,6 +1205,28 @@ export const data = {
|
|
|
1199
1205
|
}
|
|
1200
1206
|
}
|
|
1201
1207
|
},
|
|
1208
|
+
"pushwoosh.rpc_v2.accounts.GetUnifiedMAUCountRequest": {
|
|
1209
|
+
"type": "I",
|
|
1210
|
+
"fields": {
|
|
1211
|
+
"dateFrom": {
|
|
1212
|
+
"type": "Date"
|
|
1213
|
+
},
|
|
1214
|
+
"dateTo": {
|
|
1215
|
+
"type": "Date"
|
|
1216
|
+
}
|
|
1217
|
+
}
|
|
1218
|
+
},
|
|
1219
|
+
"pushwoosh.rpc_v2.accounts.GetUnifiedMAUCountResponse": {
|
|
1220
|
+
"type": "I",
|
|
1221
|
+
"fields": {
|
|
1222
|
+
"totalUnifiedMau": {
|
|
1223
|
+
"type": "number"
|
|
1224
|
+
},
|
|
1225
|
+
"emailsMau": {
|
|
1226
|
+
"type": "number"
|
|
1227
|
+
}
|
|
1228
|
+
}
|
|
1229
|
+
},
|
|
1202
1230
|
"pushwoosh.rpc_v2.accounts.BillingAddress": {
|
|
1203
1231
|
"type": "I",
|
|
1204
1232
|
"fields": {
|
|
@@ -16097,21 +16125,6 @@ export const data = {
|
|
|
16097
16125
|
}
|
|
16098
16126
|
}
|
|
16099
16127
|
},
|
|
16100
|
-
"pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxAutoPushes": {
|
|
16101
|
-
"type": "I",
|
|
16102
|
-
"fields": {
|
|
16103
|
-
"operator": {
|
|
16104
|
-
"type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
|
|
16105
|
-
},
|
|
16106
|
-
"value": {
|
|
16107
|
-
"type": "number"
|
|
16108
|
-
},
|
|
16109
|
-
"values": {
|
|
16110
|
-
"type": "number",
|
|
16111
|
-
"array": true
|
|
16112
|
-
}
|
|
16113
|
-
}
|
|
16114
|
-
},
|
|
16115
16128
|
"pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxIOSCategories": {
|
|
16116
16129
|
"type": "I",
|
|
16117
16130
|
"fields": {
|
|
@@ -17417,6 +17430,21 @@ export const data = {
|
|
|
17417
17430
|
}
|
|
17418
17431
|
}
|
|
17419
17432
|
},
|
|
17433
|
+
"pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowAIWalletBilling": {
|
|
17434
|
+
"type": "I",
|
|
17435
|
+
"fields": {
|
|
17436
|
+
"operator": {
|
|
17437
|
+
"type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
|
|
17438
|
+
},
|
|
17439
|
+
"value": {
|
|
17440
|
+
"type": "boolean"
|
|
17441
|
+
},
|
|
17442
|
+
"values": {
|
|
17443
|
+
"type": "boolean",
|
|
17444
|
+
"array": true
|
|
17445
|
+
}
|
|
17446
|
+
}
|
|
17447
|
+
},
|
|
17420
17448
|
"pushwoosh.objects.restrictionValues.v1.LogicExpression.Field": {
|
|
17421
17449
|
"type": "I",
|
|
17422
17450
|
"fields": {
|
|
@@ -17465,9 +17493,6 @@ export const data = {
|
|
|
17465
17493
|
"CondMaxRssFeeds": {
|
|
17466
17494
|
"type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxRssFeeds"
|
|
17467
17495
|
},
|
|
17468
|
-
"CondMaxAutoPushes": {
|
|
17469
|
-
"type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxAutoPushes"
|
|
17470
|
-
},
|
|
17471
17496
|
"CondMaxIOSCategories": {
|
|
17472
17497
|
"type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxIOSCategories"
|
|
17473
17498
|
},
|
|
@@ -17728,6 +17753,9 @@ export const data = {
|
|
|
17728
17753
|
},
|
|
17729
17754
|
"CondAllowTagsAutoCreation": {
|
|
17730
17755
|
"type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowTagsAutoCreation"
|
|
17756
|
+
},
|
|
17757
|
+
"CondAllowAIWalletBilling": {
|
|
17758
|
+
"type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowAIWalletBilling"
|
|
17731
17759
|
}
|
|
17732
17760
|
},
|
|
17733
17761
|
"oneofs": {
|
|
@@ -17748,7 +17776,6 @@ export const data = {
|
|
|
17748
17776
|
"CondMaxTestDevices",
|
|
17749
17777
|
"CondMaxGeozoneRange",
|
|
17750
17778
|
"CondMaxRssFeeds",
|
|
17751
|
-
"CondMaxAutoPushes",
|
|
17752
17779
|
"CondMaxIOSCategories",
|
|
17753
17780
|
"CondMaxTwitterFeeds",
|
|
17754
17781
|
"CondMaxInapps",
|
|
@@ -17835,7 +17862,8 @@ export const data = {
|
|
|
17835
17862
|
"CondAllowAIAssistant",
|
|
17836
17863
|
"CondAllowKeepUserWithoutDevice",
|
|
17837
17864
|
"CondAllowCJSplitterDeviceCheck",
|
|
17838
|
-
"CondAllowTagsAutoCreation"
|
|
17865
|
+
"CondAllowTagsAutoCreation",
|
|
17866
|
+
"CondAllowAIWalletBilling"
|
|
17839
17867
|
]
|
|
17840
17868
|
}
|
|
17841
17869
|
}
|
|
@@ -18076,12 +18104,6 @@ export const data = {
|
|
|
18076
18104
|
"method": "patch",
|
|
18077
18105
|
"path": "/v1/objects/restrictionValues/ID/{ID}/update/MaxRssFeeds"
|
|
18078
18106
|
},
|
|
18079
|
-
"UpdateMaxAutoPushes": {
|
|
18080
|
-
"request": "pushwoosh.objects.restrictionValues.v1.UpdateMaxAutoPushesRequest",
|
|
18081
|
-
"response": "{}",
|
|
18082
|
-
"method": "patch",
|
|
18083
|
-
"path": "/v1/objects/restrictionValues/ID/{ID}/update/MaxAutoPushes"
|
|
18084
|
-
},
|
|
18085
18107
|
"UpdateMaxIOSCategories": {
|
|
18086
18108
|
"request": "pushwoosh.objects.restrictionValues.v1.UpdateMaxIOSCategoriesRequest",
|
|
18087
18109
|
"response": "{}",
|
|
@@ -18603,6 +18625,12 @@ export const data = {
|
|
|
18603
18625
|
"response": "{}",
|
|
18604
18626
|
"method": "patch",
|
|
18605
18627
|
"path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowTagsAutoCreation"
|
|
18628
|
+
},
|
|
18629
|
+
"UpdateAllowAIWalletBilling": {
|
|
18630
|
+
"request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowAIWalletBillingRequest",
|
|
18631
|
+
"response": "{}",
|
|
18632
|
+
"method": "patch",
|
|
18633
|
+
"path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowAIWalletBilling"
|
|
18606
18634
|
}
|
|
18607
18635
|
}
|
|
18608
18636
|
},
|
|
@@ -18651,9 +18679,6 @@ export const data = {
|
|
|
18651
18679
|
"MaxRssFeeds": {
|
|
18652
18680
|
"type": "number"
|
|
18653
18681
|
},
|
|
18654
|
-
"MaxAutoPushes": {
|
|
18655
|
-
"type": "number"
|
|
18656
|
-
},
|
|
18657
18682
|
"MaxIOSCategories": {
|
|
18658
18683
|
"type": "number"
|
|
18659
18684
|
},
|
|
@@ -18914,6 +18939,9 @@ export const data = {
|
|
|
18914
18939
|
},
|
|
18915
18940
|
"AllowTagsAutoCreation": {
|
|
18916
18941
|
"type": "boolean"
|
|
18942
|
+
},
|
|
18943
|
+
"AllowAIWalletBilling": {
|
|
18944
|
+
"type": "boolean"
|
|
18917
18945
|
}
|
|
18918
18946
|
}
|
|
18919
18947
|
},
|
|
@@ -19214,17 +19242,6 @@ export const data = {
|
|
|
19214
19242
|
}
|
|
19215
19243
|
}
|
|
19216
19244
|
},
|
|
19217
|
-
"pushwoosh.objects.restrictionValues.v1.UpdateMaxAutoPushesRequest": {
|
|
19218
|
-
"type": "I",
|
|
19219
|
-
"fields": {
|
|
19220
|
-
"ID": {
|
|
19221
|
-
"type": "number"
|
|
19222
|
-
},
|
|
19223
|
-
"value": {
|
|
19224
|
-
"type": "number"
|
|
19225
|
-
}
|
|
19226
|
-
}
|
|
19227
|
-
},
|
|
19228
19245
|
"pushwoosh.objects.restrictionValues.v1.UpdateMaxIOSCategoriesRequest": {
|
|
19229
19246
|
"type": "I",
|
|
19230
19247
|
"fields": {
|
|
@@ -20182,6 +20199,17 @@ export const data = {
|
|
|
20182
20199
|
}
|
|
20183
20200
|
}
|
|
20184
20201
|
},
|
|
20202
|
+
"pushwoosh.objects.restrictionValues.v1.UpdateAllowAIWalletBillingRequest": {
|
|
20203
|
+
"type": "I",
|
|
20204
|
+
"fields": {
|
|
20205
|
+
"ID": {
|
|
20206
|
+
"type": "number"
|
|
20207
|
+
},
|
|
20208
|
+
"value": {
|
|
20209
|
+
"type": "boolean"
|
|
20210
|
+
}
|
|
20211
|
+
}
|
|
20212
|
+
},
|
|
20185
20213
|
"pushwoosh.objects.restrictionValues.v1.GetRequest": {
|
|
20186
20214
|
"type": "I",
|
|
20187
20215
|
"fields": {
|
|
@@ -20266,9 +20294,6 @@ export const data = {
|
|
|
20266
20294
|
"MaxRssFeeds": {
|
|
20267
20295
|
"type": "number"
|
|
20268
20296
|
},
|
|
20269
|
-
"MaxAutoPushes": {
|
|
20270
|
-
"type": "number"
|
|
20271
|
-
},
|
|
20272
20297
|
"MaxIOSCategories": {
|
|
20273
20298
|
"type": "number"
|
|
20274
20299
|
},
|
|
@@ -20529,6 +20554,9 @@ export const data = {
|
|
|
20529
20554
|
},
|
|
20530
20555
|
"AllowTagsAutoCreation": {
|
|
20531
20556
|
"type": "boolean"
|
|
20557
|
+
},
|
|
20558
|
+
"AllowAIWalletBilling": {
|
|
20559
|
+
"type": "boolean"
|
|
20532
20560
|
}
|
|
20533
20561
|
}
|
|
20534
20562
|
},
|
package/package.json
CHANGED
|
@@ -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
|
|
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
|
};
|