@pushwoosh/rpc-v2-http-api-data 0.1.937 → 0.1.939

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
@@ -11499,6 +11499,42 @@ export const data = {
11499
11499
  "response": "pushwoosh.rpc_v2.integrations.SetMetaTagMappingResponse",
11500
11500
  "method": "put",
11501
11501
  "path": "/api/integrations/meta/tag-mapping"
11502
+ },
11503
+ "GetGoogleBQConfiguration": {
11504
+ "request": "pushwoosh.rpc_v2.integrations.GetGoogleBQConfigurationRequest",
11505
+ "response": "pushwoosh.rpc_v2.integrations.GetGoogleBQConfigurationResponse",
11506
+ "method": "get",
11507
+ "path": "/api/integrations/configurations/google_bq/{application}"
11508
+ },
11509
+ "CreateGoogleBQConfiguration": {
11510
+ "request": "pushwoosh.rpc_v2.integrations.CreateGoogleBQConfigurationRequest",
11511
+ "response": "pushwoosh.rpc_v2.integrations.CreateGoogleBQConfigurationResponse",
11512
+ "method": "post",
11513
+ "path": "/api/integrations/configurations/google_bq"
11514
+ },
11515
+ "DeleteGoogleBQConfiguration": {
11516
+ "request": "pushwoosh.rpc_v2.integrations.DeleteGoogleBQConfigurationRequest",
11517
+ "response": "pushwoosh.rpc_v2.integrations.DeleteGoogleBQConfigurationResponse",
11518
+ "method": "delete",
11519
+ "path": "/api/integrations/configurations/google_bq/{application}"
11520
+ },
11521
+ "TestGoogleBQConnection": {
11522
+ "request": "pushwoosh.rpc_v2.integrations.TestGoogleBQConnectionRequest",
11523
+ "response": "pushwoosh.rpc_v2.integrations.TestGoogleBQConnectionResponse",
11524
+ "method": "post",
11525
+ "path": "/api/integrations/google_bq/test"
11526
+ },
11527
+ "ListGoogleBQDatasets": {
11528
+ "request": "pushwoosh.rpc_v2.integrations.ListGoogleBQDatasetsRequest",
11529
+ "response": "pushwoosh.rpc_v2.integrations.ListGoogleBQDatasetsResponse",
11530
+ "method": "get",
11531
+ "path": "/api/integrations/google_bq/{application}/datasets"
11532
+ },
11533
+ "ListGoogleBQTables": {
11534
+ "request": "pushwoosh.rpc_v2.integrations.ListGoogleBQTablesRequest",
11535
+ "response": "pushwoosh.rpc_v2.integrations.ListGoogleBQTablesResponse",
11536
+ "method": "get",
11537
+ "path": "/api/integrations/google_bq/{application}/datasets/{dataset_id}/tables"
11502
11538
  }
11503
11539
  }
11504
11540
  },
@@ -11513,7 +11549,8 @@ export const data = {
11513
11549
  "SHOPIFY",
11514
11550
  "STRIPE",
11515
11551
  "META",
11516
- "INBOUND_WEBHOOK"
11552
+ "INBOUND_WEBHOOK",
11553
+ "GOOGLE_BQ"
11517
11554
  ]
11518
11555
  },
11519
11556
  "pushwoosh.rpc_v2.integrations.ImportSegmentPianoRequest": {
@@ -12095,6 +12132,177 @@ export const data = {
12095
12132
  }
12096
12133
  }
12097
12134
  },
12135
+ "pushwoosh.rpc_v2.integrations.GetGoogleBQConfigurationRequest": {
12136
+ "type": "I",
12137
+ "fields": {
12138
+ "application": {
12139
+ "type": "string"
12140
+ }
12141
+ }
12142
+ },
12143
+ "pushwoosh.rpc_v2.integrations.GetGoogleBQConfigurationResponse": {
12144
+ "type": "I",
12145
+ "fields": {
12146
+ "gcpProjectId": {
12147
+ "type": "string"
12148
+ },
12149
+ "datasetId": {
12150
+ "type": "string"
12151
+ },
12152
+ "datasetRegion": {
12153
+ "type": "string"
12154
+ },
12155
+ "serviceAccountClientEmail": {
12156
+ "type": "string"
12157
+ },
12158
+ "exportEnabled": {
12159
+ "type": "boolean"
12160
+ },
12161
+ "eventTypes": {
12162
+ "type": "string",
12163
+ "array": true
12164
+ },
12165
+ "tableName": {
12166
+ "type": "string"
12167
+ }
12168
+ }
12169
+ },
12170
+ "pushwoosh.rpc_v2.integrations.CreateGoogleBQConfigurationRequest": {
12171
+ "type": "I",
12172
+ "fields": {
12173
+ "application": {
12174
+ "type": "string"
12175
+ },
12176
+ "gcpProjectId": {
12177
+ "type": "string"
12178
+ },
12179
+ "datasetId": {
12180
+ "type": "string"
12181
+ },
12182
+ "datasetRegion": {
12183
+ "type": "string"
12184
+ },
12185
+ "serviceAccountJson": {
12186
+ "type": "string"
12187
+ },
12188
+ "exportEnabled": {
12189
+ "type": "boolean"
12190
+ },
12191
+ "eventTypes": {
12192
+ "type": "string",
12193
+ "array": true
12194
+ },
12195
+ "tableName": {
12196
+ "type": "string"
12197
+ }
12198
+ }
12199
+ },
12200
+ "pushwoosh.rpc_v2.integrations.CreateGoogleBQConfigurationResponse": {
12201
+ "type": "I",
12202
+ "fields": {}
12203
+ },
12204
+ "pushwoosh.rpc_v2.integrations.DeleteGoogleBQConfigurationRequest": {
12205
+ "type": "I",
12206
+ "fields": {
12207
+ "application": {
12208
+ "type": "string"
12209
+ }
12210
+ }
12211
+ },
12212
+ "pushwoosh.rpc_v2.integrations.DeleteGoogleBQConfigurationResponse": {
12213
+ "type": "I",
12214
+ "fields": {}
12215
+ },
12216
+ "pushwoosh.rpc_v2.integrations.TestGoogleBQConnectionRequest": {
12217
+ "type": "I",
12218
+ "fields": {
12219
+ "application": {
12220
+ "type": "string"
12221
+ },
12222
+ "gcpProjectId": {
12223
+ "type": "string"
12224
+ },
12225
+ "datasetId": {
12226
+ "type": "string"
12227
+ },
12228
+ "serviceAccountJson": {
12229
+ "type": "string"
12230
+ }
12231
+ }
12232
+ },
12233
+ "pushwoosh.rpc_v2.integrations.TestGoogleBQConnectionResponse": {
12234
+ "type": "I",
12235
+ "fields": {
12236
+ "ok": {
12237
+ "type": "boolean"
12238
+ },
12239
+ "errorCode": {
12240
+ "type": "string"
12241
+ },
12242
+ "errorMessage": {
12243
+ "type": "string"
12244
+ }
12245
+ }
12246
+ },
12247
+ "pushwoosh.rpc_v2.integrations.ListGoogleBQDatasetsRequest": {
12248
+ "type": "I",
12249
+ "fields": {
12250
+ "application": {
12251
+ "type": "string"
12252
+ }
12253
+ }
12254
+ },
12255
+ "pushwoosh.rpc_v2.integrations.ListGoogleBQDatasetsResponse.Dataset": {
12256
+ "type": "I",
12257
+ "fields": {
12258
+ "id": {
12259
+ "type": "string"
12260
+ },
12261
+ "region": {
12262
+ "type": "string"
12263
+ }
12264
+ }
12265
+ },
12266
+ "pushwoosh.rpc_v2.integrations.ListGoogleBQDatasetsResponse": {
12267
+ "type": "I",
12268
+ "fields": {
12269
+ "datasets": {
12270
+ "type": "pushwoosh.rpc_v2.integrations.ListGoogleBQDatasetsResponse.Dataset",
12271
+ "array": true
12272
+ }
12273
+ }
12274
+ },
12275
+ "pushwoosh.rpc_v2.integrations.ListGoogleBQTablesRequest": {
12276
+ "type": "I",
12277
+ "fields": {
12278
+ "application": {
12279
+ "type": "string"
12280
+ },
12281
+ "datasetId": {
12282
+ "type": "string"
12283
+ }
12284
+ }
12285
+ },
12286
+ "pushwoosh.rpc_v2.integrations.ListGoogleBQTablesResponse.Table": {
12287
+ "type": "I",
12288
+ "fields": {
12289
+ "id": {
12290
+ "type": "string"
12291
+ },
12292
+ "type": {
12293
+ "type": "string"
12294
+ }
12295
+ }
12296
+ },
12297
+ "pushwoosh.rpc_v2.integrations.ListGoogleBQTablesResponse": {
12298
+ "type": "I",
12299
+ "fields": {
12300
+ "tables": {
12301
+ "type": "pushwoosh.rpc_v2.integrations.ListGoogleBQTablesResponse.Table",
12302
+ "array": true
12303
+ }
12304
+ }
12305
+ },
12098
12306
  "pushwoosh.rpc_v2.integrations.SetMetaTagMappingResponse": {
12099
12307
  "type": "I",
12100
12308
  "fields": {}
@@ -17363,37 +17571,37 @@ export const data = {
17363
17571
  }
17364
17572
  }
17365
17573
  },
17366
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowScheduling": {
17574
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MinSendRate": {
17367
17575
  "type": "I",
17368
17576
  "fields": {
17369
17577
  "operator": {
17370
17578
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
17371
17579
  },
17372
17580
  "value": {
17373
- "type": "boolean"
17581
+ "type": "number"
17374
17582
  },
17375
17583
  "values": {
17376
- "type": "boolean",
17584
+ "type": "number",
17377
17585
  "array": true
17378
17586
  }
17379
17587
  }
17380
17588
  },
17381
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCustomData": {
17589
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxSendRate": {
17382
17590
  "type": "I",
17383
17591
  "fields": {
17384
17592
  "operator": {
17385
17593
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
17386
17594
  },
17387
17595
  "value": {
17388
- "type": "boolean"
17596
+ "type": "number"
17389
17597
  },
17390
17598
  "values": {
17391
- "type": "boolean",
17599
+ "type": "number",
17392
17600
  "array": true
17393
17601
  }
17394
17602
  }
17395
17603
  },
17396
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowMultiLanguage": {
17604
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowIePlatformUsage": {
17397
17605
  "type": "I",
17398
17606
  "fields": {
17399
17607
  "operator": {
@@ -17408,37 +17616,37 @@ export const data = {
17408
17616
  }
17409
17617
  }
17410
17618
  },
17411
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowAutoConfig": {
17619
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxVerifyingEmails": {
17412
17620
  "type": "I",
17413
17621
  "fields": {
17414
17622
  "operator": {
17415
17623
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
17416
17624
  },
17417
17625
  "value": {
17418
- "type": "boolean"
17626
+ "type": "number"
17419
17627
  },
17420
17628
  "values": {
17421
- "type": "boolean",
17629
+ "type": "number",
17422
17630
  "array": true
17423
17631
  }
17424
17632
  }
17425
17633
  },
17426
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCsvMessage": {
17634
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxVerifyingDomains": {
17427
17635
  "type": "I",
17428
17636
  "fields": {
17429
17637
  "operator": {
17430
17638
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
17431
17639
  },
17432
17640
  "value": {
17433
- "type": "boolean"
17641
+ "type": "number"
17434
17642
  },
17435
17643
  "values": {
17436
- "type": "boolean",
17644
+ "type": "number",
17437
17645
  "array": true
17438
17646
  }
17439
17647
  }
17440
17648
  },
17441
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCampaignApi": {
17649
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowMetadata": {
17442
17650
  "type": "I",
17443
17651
  "fields": {
17444
17652
  "operator": {
@@ -17453,22 +17661,22 @@ export const data = {
17453
17661
  }
17454
17662
  }
17455
17663
  },
17456
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowPushHistoryApi": {
17664
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxPushOnEventDelayInDays": {
17457
17665
  "type": "I",
17458
17666
  "fields": {
17459
17667
  "operator": {
17460
17668
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
17461
17669
  },
17462
17670
  "value": {
17463
- "type": "boolean"
17671
+ "type": "number"
17464
17672
  },
17465
17673
  "values": {
17466
- "type": "boolean",
17674
+ "type": "number",
17467
17675
  "array": true
17468
17676
  }
17469
17677
  }
17470
17678
  },
17471
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowTagsApi": {
17679
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowEventStatisticsApi": {
17472
17680
  "type": "I",
17473
17681
  "fields": {
17474
17682
  "operator": {
@@ -17483,7 +17691,7 @@ export const data = {
17483
17691
  }
17484
17692
  }
17485
17693
  },
17486
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowPushByUser": {
17694
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowTagNotSetFilter": {
17487
17695
  "type": "I",
17488
17696
  "fields": {
17489
17697
  "operator": {
@@ -17498,7 +17706,7 @@ export const data = {
17498
17706
  }
17499
17707
  }
17500
17708
  },
17501
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowFilterApi": {
17709
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowDebugMode": {
17502
17710
  "type": "I",
17503
17711
  "fields": {
17504
17712
  "operator": {
@@ -17513,7 +17721,7 @@ export const data = {
17513
17721
  }
17514
17722
  }
17515
17723
  },
17516
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowTwoFactorAuth": {
17724
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowTrackUninstalls": {
17517
17725
  "type": "I",
17518
17726
  "fields": {
17519
17727
  "operator": {
@@ -17528,67 +17736,67 @@ export const data = {
17528
17736
  }
17529
17737
  }
17530
17738
  },
17531
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowBroadcastMessageSegmentation": {
17739
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.EmailRateCounterAggregatePeriod": {
17532
17740
  "type": "I",
17533
17741
  "fields": {
17534
17742
  "operator": {
17535
17743
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
17536
17744
  },
17537
17745
  "value": {
17538
- "type": "boolean"
17746
+ "type": "number"
17539
17747
  },
17540
17748
  "values": {
17541
- "type": "boolean",
17749
+ "type": "number",
17542
17750
  "array": true
17543
17751
  }
17544
17752
  }
17545
17753
  },
17546
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowPushOnEvent": {
17754
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.EmailBounceRateLimit": {
17547
17755
  "type": "I",
17548
17756
  "fields": {
17549
17757
  "operator": {
17550
17758
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
17551
17759
  },
17552
17760
  "value": {
17553
- "type": "boolean"
17761
+ "type": "number"
17554
17762
  },
17555
17763
  "values": {
17556
- "type": "boolean",
17764
+ "type": "number",
17557
17765
  "array": true
17558
17766
  }
17559
17767
  }
17560
17768
  },
17561
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCompileFilter": {
17769
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.EmailComplaintRateLimit": {
17562
17770
  "type": "I",
17563
17771
  "fields": {
17564
17772
  "operator": {
17565
17773
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
17566
17774
  },
17567
17775
  "value": {
17568
- "type": "boolean"
17776
+ "type": "number"
17569
17777
  },
17570
17778
  "values": {
17571
- "type": "boolean",
17779
+ "type": "number",
17572
17780
  "array": true
17573
17781
  }
17574
17782
  }
17575
17783
  },
17576
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MinSendRate": {
17784
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowFrequencyCapping": {
17577
17785
  "type": "I",
17578
17786
  "fields": {
17579
17787
  "operator": {
17580
17788
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
17581
17789
  },
17582
17790
  "value": {
17583
- "type": "number"
17791
+ "type": "boolean"
17584
17792
  },
17585
17793
  "values": {
17586
- "type": "number",
17794
+ "type": "boolean",
17587
17795
  "array": true
17588
17796
  }
17589
17797
  }
17590
17798
  },
17591
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxSendRate": {
17799
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.EmailsFreeLimit": {
17592
17800
  "type": "I",
17593
17801
  "fields": {
17594
17802
  "operator": {
@@ -17603,7 +17811,7 @@ export const data = {
17603
17811
  }
17604
17812
  }
17605
17813
  },
17606
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowSendToGeozone": {
17814
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.EmailsLimited": {
17607
17815
  "type": "I",
17608
17816
  "fields": {
17609
17817
  "operator": {
@@ -17618,7 +17826,7 @@ export const data = {
17618
17826
  }
17619
17827
  }
17620
17828
  },
17621
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowUseIosNewsstand": {
17829
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowContentTemplates": {
17622
17830
  "type": "I",
17623
17831
  "fields": {
17624
17832
  "operator": {
@@ -17633,7 +17841,7 @@ export const data = {
17633
17841
  }
17634
17842
  }
17635
17843
  },
17636
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowGetUsersDetails": {
17844
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowBaiduAndroidPlatformUsage": {
17637
17845
  "type": "I",
17638
17846
  "fields": {
17639
17847
  "operator": {
@@ -17648,37 +17856,37 @@ export const data = {
17648
17856
  }
17649
17857
  }
17650
17858
  },
17651
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowGoalTracking": {
17859
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxInboxTtlDays": {
17652
17860
  "type": "I",
17653
17861
  "fields": {
17654
17862
  "operator": {
17655
17863
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
17656
17864
  },
17657
17865
  "value": {
17658
- "type": "boolean"
17866
+ "type": "number"
17659
17867
  },
17660
17868
  "values": {
17661
- "type": "boolean",
17869
+ "type": "number",
17662
17870
  "array": true
17663
17871
  }
17664
17872
  }
17665
17873
  },
17666
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowIePlatformUsage": {
17874
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MessageHistoryStorePeriod": {
17667
17875
  "type": "I",
17668
17876
  "fields": {
17669
17877
  "operator": {
17670
17878
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
17671
17879
  },
17672
17880
  "value": {
17673
- "type": "boolean"
17881
+ "type": "number"
17674
17882
  },
17675
17883
  "values": {
17676
- "type": "boolean",
17884
+ "type": "number",
17677
17885
  "array": true
17678
17886
  }
17679
17887
  }
17680
17888
  },
17681
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowInbox": {
17889
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowApiGetMessageLog": {
17682
17890
  "type": "I",
17683
17891
  "fields": {
17684
17892
  "operator": {
@@ -17693,7 +17901,7 @@ export const data = {
17693
17901
  }
17694
17902
  }
17695
17903
  },
17696
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxEmailTemplates": {
17904
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.DetailActionHistoryStorePeriod": {
17697
17905
  "type": "I",
17698
17906
  "fields": {
17699
17907
  "operator": {
@@ -17708,22 +17916,22 @@ export const data = {
17708
17916
  }
17709
17917
  }
17710
17918
  },
17711
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxUserSpecificTags": {
17919
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowShowDeliveryStatistics": {
17712
17920
  "type": "I",
17713
17921
  "fields": {
17714
17922
  "operator": {
17715
17923
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
17716
17924
  },
17717
17925
  "value": {
17718
- "type": "number"
17926
+ "type": "boolean"
17719
17927
  },
17720
17928
  "values": {
17721
- "type": "number",
17929
+ "type": "boolean",
17722
17930
  "array": true
17723
17931
  }
17724
17932
  }
17725
17933
  },
17726
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowGdpr": {
17934
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowRFMSegments": {
17727
17935
  "type": "I",
17728
17936
  "fields": {
17729
17937
  "operator": {
@@ -17738,37 +17946,37 @@ export const data = {
17738
17946
  }
17739
17947
  }
17740
17948
  },
17741
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxVerifyingEmails": {
17949
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowBestTimeToSend": {
17742
17950
  "type": "I",
17743
17951
  "fields": {
17744
17952
  "operator": {
17745
17953
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
17746
17954
  },
17747
17955
  "value": {
17748
- "type": "number"
17956
+ "type": "boolean"
17749
17957
  },
17750
17958
  "values": {
17751
- "type": "number",
17959
+ "type": "boolean",
17752
17960
  "array": true
17753
17961
  }
17754
17962
  }
17755
17963
  },
17756
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxVerifyingDomains": {
17964
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowEventSegmentation": {
17757
17965
  "type": "I",
17758
17966
  "fields": {
17759
17967
  "operator": {
17760
17968
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
17761
17969
  },
17762
17970
  "value": {
17763
- "type": "number"
17971
+ "type": "boolean"
17764
17972
  },
17765
17973
  "values": {
17766
- "type": "number",
17974
+ "type": "boolean",
17767
17975
  "array": true
17768
17976
  }
17769
17977
  }
17770
17978
  },
17771
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowSendExternalStats": {
17979
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowSegmentsGroups": {
17772
17980
  "type": "I",
17773
17981
  "fields": {
17774
17982
  "operator": {
@@ -17783,7 +17991,7 @@ export const data = {
17783
17991
  }
17784
17992
  }
17785
17993
  },
17786
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCustomRssPollingInterval": {
17994
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCjSMS": {
17787
17995
  "type": "I",
17788
17996
  "fields": {
17789
17997
  "operator": {
@@ -17798,7 +18006,7 @@ export const data = {
17798
18006
  }
17799
18007
  }
17800
18008
  },
17801
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowMetadata": {
18009
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCjDynamicSetTagsInUpdateProfile": {
17802
18010
  "type": "I",
17803
18011
  "fields": {
17804
18012
  "operator": {
@@ -17813,22 +18021,22 @@ export const data = {
17813
18021
  }
17814
18022
  }
17815
18023
  },
17816
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxPushOnEventDelayInDays": {
18024
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCjAddBranchesInWaitForTrigger": {
17817
18025
  "type": "I",
17818
18026
  "fields": {
17819
18027
  "operator": {
17820
18028
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
17821
18029
  },
17822
18030
  "value": {
17823
- "type": "number"
18031
+ "type": "boolean"
17824
18032
  },
17825
18033
  "values": {
17826
- "type": "number",
18034
+ "type": "boolean",
17827
18035
  "array": true
17828
18036
  }
17829
18037
  }
17830
18038
  },
17831
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowEventStatisticsApi": {
18039
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowEventsFunnel": {
17832
18040
  "type": "I",
17833
18041
  "fields": {
17834
18042
  "operator": {
@@ -17843,7 +18051,7 @@ export const data = {
17843
18051
  }
17844
18052
  }
17845
18053
  },
17846
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowTagNotSetFilter": {
18054
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowChannelsSection": {
17847
18055
  "type": "I",
17848
18056
  "fields": {
17849
18057
  "operator": {
@@ -17858,7 +18066,7 @@ export const data = {
17858
18066
  }
17859
18067
  }
17860
18068
  },
17861
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowDebugMode": {
18069
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCjEmailBcc": {
17862
18070
  "type": "I",
17863
18071
  "fields": {
17864
18072
  "operator": {
@@ -17873,22 +18081,22 @@ export const data = {
17873
18081
  }
17874
18082
  }
17875
18083
  },
17876
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowFbMessenger": {
18084
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.EmailFileStorePeriod": {
17877
18085
  "type": "I",
17878
18086
  "fields": {
17879
18087
  "operator": {
17880
18088
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
17881
18089
  },
17882
18090
  "value": {
17883
- "type": "boolean"
18091
+ "type": "number"
17884
18092
  },
17885
18093
  "values": {
17886
- "type": "boolean",
18094
+ "type": "number",
17887
18095
  "array": true
17888
18096
  }
17889
18097
  }
17890
18098
  },
17891
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowTrackUninstalls": {
18099
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowWhatsApp": {
17892
18100
  "type": "I",
17893
18101
  "fields": {
17894
18102
  "operator": {
@@ -17903,52 +18111,7 @@ export const data = {
17903
18111
  }
17904
18112
  }
17905
18113
  },
17906
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.EmailRateCounterAggregatePeriod": {
17907
- "type": "I",
17908
- "fields": {
17909
- "operator": {
17910
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
17911
- },
17912
- "value": {
17913
- "type": "number"
17914
- },
17915
- "values": {
17916
- "type": "number",
17917
- "array": true
17918
- }
17919
- }
17920
- },
17921
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.EmailBounceRateLimit": {
17922
- "type": "I",
17923
- "fields": {
17924
- "operator": {
17925
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
17926
- },
17927
- "value": {
17928
- "type": "number"
17929
- },
17930
- "values": {
17931
- "type": "number",
17932
- "array": true
17933
- }
17934
- }
17935
- },
17936
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.EmailComplaintRateLimit": {
17937
- "type": "I",
17938
- "fields": {
17939
- "operator": {
17940
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
17941
- },
17942
- "value": {
17943
- "type": "number"
17944
- },
17945
- "values": {
17946
- "type": "number",
17947
- "array": true
17948
- }
17949
- }
17950
- },
17951
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowFrequencyCapping": {
18114
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCjAlternativeGoalsStats": {
17952
18115
  "type": "I",
17953
18116
  "fields": {
17954
18117
  "operator": {
@@ -17963,37 +18126,7 @@ export const data = {
17963
18126
  }
17964
18127
  }
17965
18128
  },
17966
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxUsersPerDevice": {
17967
- "type": "I",
17968
- "fields": {
17969
- "operator": {
17970
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
17971
- },
17972
- "value": {
17973
- "type": "number"
17974
- },
17975
- "values": {
17976
- "type": "number",
17977
- "array": true
17978
- }
17979
- }
17980
- },
17981
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.EmailsFreeLimit": {
17982
- "type": "I",
17983
- "fields": {
17984
- "operator": {
17985
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
17986
- },
17987
- "value": {
17988
- "type": "number"
17989
- },
17990
- "values": {
17991
- "type": "number",
17992
- "array": true
17993
- }
17994
- }
17995
- },
17996
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.EmailsLimited": {
18129
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCjListenUserIdChanged": {
17997
18130
  "type": "I",
17998
18131
  "fields": {
17999
18132
  "operator": {
@@ -18008,7 +18141,7 @@ export const data = {
18008
18141
  }
18009
18142
  }
18010
18143
  },
18011
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowContentTemplates": {
18144
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowLine": {
18012
18145
  "type": "I",
18013
18146
  "fields": {
18014
18147
  "operator": {
@@ -18023,7 +18156,7 @@ export const data = {
18023
18156
  }
18024
18157
  }
18025
18158
  },
18026
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowBaiduAndroidPlatformUsage": {
18159
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowPostEventInApp": {
18027
18160
  "type": "I",
18028
18161
  "fields": {
18029
18162
  "operator": {
@@ -18038,37 +18171,7 @@ export const data = {
18038
18171
  }
18039
18172
  }
18040
18173
  },
18041
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxInboxTtlDays": {
18042
- "type": "I",
18043
- "fields": {
18044
- "operator": {
18045
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
18046
- },
18047
- "value": {
18048
- "type": "number"
18049
- },
18050
- "values": {
18051
- "type": "number",
18052
- "array": true
18053
- }
18054
- }
18055
- },
18056
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MessageHistoryStorePeriod": {
18057
- "type": "I",
18058
- "fields": {
18059
- "operator": {
18060
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
18061
- },
18062
- "value": {
18063
- "type": "number"
18064
- },
18065
- "values": {
18066
- "type": "number",
18067
- "array": true
18068
- }
18069
- }
18070
- },
18071
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowApiGetMessageLog": {
18174
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowAIAssistant": {
18072
18175
  "type": "I",
18073
18176
  "fields": {
18074
18177
  "operator": {
@@ -18083,22 +18186,7 @@ export const data = {
18083
18186
  }
18084
18187
  }
18085
18188
  },
18086
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.DetailActionHistoryStorePeriod": {
18087
- "type": "I",
18088
- "fields": {
18089
- "operator": {
18090
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
18091
- },
18092
- "value": {
18093
- "type": "number"
18094
- },
18095
- "values": {
18096
- "type": "number",
18097
- "array": true
18098
- }
18099
- }
18100
- },
18101
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowShowDeliveryStatistics": {
18189
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowKeepUserWithoutDevice": {
18102
18190
  "type": "I",
18103
18191
  "fields": {
18104
18192
  "operator": {
@@ -18113,7 +18201,7 @@ export const data = {
18113
18201
  }
18114
18202
  }
18115
18203
  },
18116
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowRFMSegments": {
18204
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCJSplitterDeviceCheck": {
18117
18205
  "type": "I",
18118
18206
  "fields": {
18119
18207
  "operator": {
@@ -18128,7 +18216,7 @@ export const data = {
18128
18216
  }
18129
18217
  }
18130
18218
  },
18131
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowBestTimeToSend": {
18219
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowTagsAutoCreation": {
18132
18220
  "type": "I",
18133
18221
  "fields": {
18134
18222
  "operator": {
@@ -18143,7 +18231,7 @@ export const data = {
18143
18231
  }
18144
18232
  }
18145
18233
  },
18146
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowEventSegmentation": {
18234
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowAIWalletBilling": {
18147
18235
  "type": "I",
18148
18236
  "fields": {
18149
18237
  "operator": {
@@ -18158,7 +18246,7 @@ export const data = {
18158
18246
  }
18159
18247
  }
18160
18248
  },
18161
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowSegmentsGroups": {
18249
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.ApplicationSpecificFilters": {
18162
18250
  "type": "I",
18163
18251
  "fields": {
18164
18252
  "operator": {
@@ -18173,7 +18261,7 @@ export const data = {
18173
18261
  }
18174
18262
  }
18175
18263
  },
18176
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCjSMS": {
18264
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCloudPages": {
18177
18265
  "type": "I",
18178
18266
  "fields": {
18179
18267
  "operator": {
@@ -18188,392 +18276,50 @@ export const data = {
18188
18276
  }
18189
18277
  }
18190
18278
  },
18191
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCjDynamicSetTagsInUpdateProfile": {
18279
+ "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field": {
18192
18280
  "type": "I",
18193
18281
  "fields": {
18194
- "operator": {
18195
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
18282
+ "CondID": {
18283
+ "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.ID"
18196
18284
  },
18197
- "value": {
18198
- "type": "boolean"
18285
+ "CondIsLocked": {
18286
+ "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.IsLocked"
18199
18287
  },
18200
- "values": {
18201
- "type": "boolean",
18202
- "array": true
18203
- }
18204
- }
18205
- },
18206
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCjAddBranchesInWaitForTrigger": {
18207
- "type": "I",
18208
- "fields": {
18209
- "operator": {
18210
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
18288
+ "CondMaxDevices": {
18289
+ "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxDevices"
18211
18290
  },
18212
- "value": {
18213
- "type": "boolean"
18291
+ "CondMaxUsers": {
18292
+ "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxUsers"
18214
18293
  },
18215
- "values": {
18216
- "type": "boolean",
18217
- "array": true
18218
- }
18219
- }
18220
- },
18221
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowEventsFunnel": {
18222
- "type": "I",
18223
- "fields": {
18224
- "operator": {
18225
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
18294
+ "CondMaxPreparedFilters": {
18295
+ "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxPreparedFilters"
18226
18296
  },
18227
- "value": {
18228
- "type": "boolean"
18297
+ "CondDevicesInactivityLimit": {
18298
+ "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.DevicesInactivityLimit"
18229
18299
  },
18230
- "values": {
18231
- "type": "boolean",
18232
- "array": true
18233
- }
18234
- }
18235
- },
18236
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowChannelsSection": {
18237
- "type": "I",
18238
- "fields": {
18239
- "operator": {
18240
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
18300
+ "CondAllowApi": {
18301
+ "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowApi"
18241
18302
  },
18242
- "value": {
18243
- "type": "boolean"
18303
+ "CondMinSendRate": {
18304
+ "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MinSendRate"
18244
18305
  },
18245
- "values": {
18246
- "type": "boolean",
18247
- "array": true
18248
- }
18249
- }
18250
- },
18251
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCjEmailBcc": {
18252
- "type": "I",
18253
- "fields": {
18254
- "operator": {
18255
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
18306
+ "CondMaxSendRate": {
18307
+ "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxSendRate"
18256
18308
  },
18257
- "value": {
18258
- "type": "boolean"
18309
+ "CondAllowIePlatformUsage": {
18310
+ "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowIePlatformUsage"
18259
18311
  },
18260
- "values": {
18261
- "type": "boolean",
18262
- "array": true
18263
- }
18264
- }
18265
- },
18266
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.EmailFileStorePeriod": {
18267
- "type": "I",
18268
- "fields": {
18269
- "operator": {
18270
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
18312
+ "CondMaxVerifyingEmails": {
18313
+ "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxVerifyingEmails"
18271
18314
  },
18272
- "value": {
18273
- "type": "number"
18315
+ "CondMaxVerifyingDomains": {
18316
+ "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxVerifyingDomains"
18274
18317
  },
18275
- "values": {
18276
- "type": "number",
18277
- "array": true
18278
- }
18279
- }
18280
- },
18281
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowWhatsApp": {
18282
- "type": "I",
18283
- "fields": {
18284
- "operator": {
18285
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
18318
+ "CondAllowMetadata": {
18319
+ "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowMetadata"
18286
18320
  },
18287
- "value": {
18288
- "type": "boolean"
18289
- },
18290
- "values": {
18291
- "type": "boolean",
18292
- "array": true
18293
- }
18294
- }
18295
- },
18296
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCjAlternativeGoalsStats": {
18297
- "type": "I",
18298
- "fields": {
18299
- "operator": {
18300
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
18301
- },
18302
- "value": {
18303
- "type": "boolean"
18304
- },
18305
- "values": {
18306
- "type": "boolean",
18307
- "array": true
18308
- }
18309
- }
18310
- },
18311
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCjListenUserIdChanged": {
18312
- "type": "I",
18313
- "fields": {
18314
- "operator": {
18315
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
18316
- },
18317
- "value": {
18318
- "type": "boolean"
18319
- },
18320
- "values": {
18321
- "type": "boolean",
18322
- "array": true
18323
- }
18324
- }
18325
- },
18326
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowLine": {
18327
- "type": "I",
18328
- "fields": {
18329
- "operator": {
18330
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
18331
- },
18332
- "value": {
18333
- "type": "boolean"
18334
- },
18335
- "values": {
18336
- "type": "boolean",
18337
- "array": true
18338
- }
18339
- }
18340
- },
18341
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowPostEventInApp": {
18342
- "type": "I",
18343
- "fields": {
18344
- "operator": {
18345
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
18346
- },
18347
- "value": {
18348
- "type": "boolean"
18349
- },
18350
- "values": {
18351
- "type": "boolean",
18352
- "array": true
18353
- }
18354
- }
18355
- },
18356
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowAIAssistant": {
18357
- "type": "I",
18358
- "fields": {
18359
- "operator": {
18360
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
18361
- },
18362
- "value": {
18363
- "type": "boolean"
18364
- },
18365
- "values": {
18366
- "type": "boolean",
18367
- "array": true
18368
- }
18369
- }
18370
- },
18371
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowKeepUserWithoutDevice": {
18372
- "type": "I",
18373
- "fields": {
18374
- "operator": {
18375
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
18376
- },
18377
- "value": {
18378
- "type": "boolean"
18379
- },
18380
- "values": {
18381
- "type": "boolean",
18382
- "array": true
18383
- }
18384
- }
18385
- },
18386
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCJSplitterDeviceCheck": {
18387
- "type": "I",
18388
- "fields": {
18389
- "operator": {
18390
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
18391
- },
18392
- "value": {
18393
- "type": "boolean"
18394
- },
18395
- "values": {
18396
- "type": "boolean",
18397
- "array": true
18398
- }
18399
- }
18400
- },
18401
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowTagsAutoCreation": {
18402
- "type": "I",
18403
- "fields": {
18404
- "operator": {
18405
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
18406
- },
18407
- "value": {
18408
- "type": "boolean"
18409
- },
18410
- "values": {
18411
- "type": "boolean",
18412
- "array": true
18413
- }
18414
- }
18415
- },
18416
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowAIWalletBilling": {
18417
- "type": "I",
18418
- "fields": {
18419
- "operator": {
18420
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
18421
- },
18422
- "value": {
18423
- "type": "boolean"
18424
- },
18425
- "values": {
18426
- "type": "boolean",
18427
- "array": true
18428
- }
18429
- }
18430
- },
18431
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.ApplicationSpecificFilters": {
18432
- "type": "I",
18433
- "fields": {
18434
- "operator": {
18435
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
18436
- },
18437
- "value": {
18438
- "type": "boolean"
18439
- },
18440
- "values": {
18441
- "type": "boolean",
18442
- "array": true
18443
- }
18444
- }
18445
- },
18446
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCloudPages": {
18447
- "type": "I",
18448
- "fields": {
18449
- "operator": {
18450
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.Operator"
18451
- },
18452
- "value": {
18453
- "type": "boolean"
18454
- },
18455
- "values": {
18456
- "type": "boolean",
18457
- "array": true
18458
- }
18459
- }
18460
- },
18461
- "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field": {
18462
- "type": "I",
18463
- "fields": {
18464
- "CondID": {
18465
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.ID"
18466
- },
18467
- "CondIsLocked": {
18468
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.IsLocked"
18469
- },
18470
- "CondMaxDevices": {
18471
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxDevices"
18472
- },
18473
- "CondMaxUsers": {
18474
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxUsers"
18475
- },
18476
- "CondMaxPreparedFilters": {
18477
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxPreparedFilters"
18478
- },
18479
- "CondDevicesInactivityLimit": {
18480
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.DevicesInactivityLimit"
18481
- },
18482
- "CondAllowApi": {
18483
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowApi"
18484
- },
18485
- "CondAllowScheduling": {
18486
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowScheduling"
18487
- },
18488
- "CondAllowCustomData": {
18489
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCustomData"
18490
- },
18491
- "CondAllowMultiLanguage": {
18492
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowMultiLanguage"
18493
- },
18494
- "CondAllowAutoConfig": {
18495
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowAutoConfig"
18496
- },
18497
- "CondAllowCsvMessage": {
18498
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCsvMessage"
18499
- },
18500
- "CondAllowCampaignApi": {
18501
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCampaignApi"
18502
- },
18503
- "CondAllowPushHistoryApi": {
18504
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowPushHistoryApi"
18505
- },
18506
- "CondAllowTagsApi": {
18507
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowTagsApi"
18508
- },
18509
- "CondAllowPushByUser": {
18510
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowPushByUser"
18511
- },
18512
- "CondAllowFilterApi": {
18513
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowFilterApi"
18514
- },
18515
- "CondAllowTwoFactorAuth": {
18516
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowTwoFactorAuth"
18517
- },
18518
- "CondAllowBroadcastMessageSegmentation": {
18519
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowBroadcastMessageSegmentation"
18520
- },
18521
- "CondAllowPushOnEvent": {
18522
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowPushOnEvent"
18523
- },
18524
- "CondAllowCompileFilter": {
18525
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCompileFilter"
18526
- },
18527
- "CondMinSendRate": {
18528
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MinSendRate"
18529
- },
18530
- "CondMaxSendRate": {
18531
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxSendRate"
18532
- },
18533
- "CondAllowSendToGeozone": {
18534
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowSendToGeozone"
18535
- },
18536
- "CondAllowUseIosNewsstand": {
18537
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowUseIosNewsstand"
18538
- },
18539
- "CondAllowGetUsersDetails": {
18540
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowGetUsersDetails"
18541
- },
18542
- "CondAllowGoalTracking": {
18543
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowGoalTracking"
18544
- },
18545
- "CondAllowIePlatformUsage": {
18546
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowIePlatformUsage"
18547
- },
18548
- "CondAllowInbox": {
18549
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowInbox"
18550
- },
18551
- "CondMaxEmailTemplates": {
18552
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxEmailTemplates"
18553
- },
18554
- "CondMaxUserSpecificTags": {
18555
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxUserSpecificTags"
18556
- },
18557
- "CondAllowGdpr": {
18558
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowGdpr"
18559
- },
18560
- "CondMaxVerifyingEmails": {
18561
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxVerifyingEmails"
18562
- },
18563
- "CondMaxVerifyingDomains": {
18564
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxVerifyingDomains"
18565
- },
18566
- "CondAllowSendExternalStats": {
18567
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowSendExternalStats"
18568
- },
18569
- "CondAllowCustomRssPollingInterval": {
18570
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowCustomRssPollingInterval"
18571
- },
18572
- "CondAllowMetadata": {
18573
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowMetadata"
18574
- },
18575
- "CondMaxPushOnEventDelayInDays": {
18576
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxPushOnEventDelayInDays"
18321
+ "CondMaxPushOnEventDelayInDays": {
18322
+ "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxPushOnEventDelayInDays"
18577
18323
  },
18578
18324
  "CondAllowEventStatisticsApi": {
18579
18325
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowEventStatisticsApi"
@@ -18584,9 +18330,6 @@ export const data = {
18584
18330
  "CondAllowDebugMode": {
18585
18331
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowDebugMode"
18586
18332
  },
18587
- "CondAllowFbMessenger": {
18588
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowFbMessenger"
18589
- },
18590
18333
  "CondAllowTrackUninstalls": {
18591
18334
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowTrackUninstalls"
18592
18335
  },
@@ -18602,9 +18345,6 @@ export const data = {
18602
18345
  "CondAllowFrequencyCapping": {
18603
18346
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.AllowFrequencyCapping"
18604
18347
  },
18605
- "CondMaxUsersPerDevice": {
18606
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.MaxUsersPerDevice"
18607
- },
18608
18348
  "CondEmailsFreeLimit": {
18609
18349
  "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression.Field.EmailsFreeLimit"
18610
18350
  },
@@ -18712,47 +18452,21 @@ export const data = {
18712
18452
  "CondMaxPreparedFilters",
18713
18453
  "CondDevicesInactivityLimit",
18714
18454
  "CondAllowApi",
18715
- "CondAllowScheduling",
18716
- "CondAllowCustomData",
18717
- "CondAllowMultiLanguage",
18718
- "CondAllowAutoConfig",
18719
- "CondAllowCsvMessage",
18720
- "CondAllowCampaignApi",
18721
- "CondAllowPushHistoryApi",
18722
- "CondAllowTagsApi",
18723
- "CondAllowPushByUser",
18724
- "CondAllowFilterApi",
18725
- "CondAllowTwoFactorAuth",
18726
- "CondAllowBroadcastMessageSegmentation",
18727
- "CondAllowPushOnEvent",
18728
- "CondAllowCompileFilter",
18729
18455
  "CondMinSendRate",
18730
18456
  "CondMaxSendRate",
18731
- "CondAllowSendToGeozone",
18732
- "CondAllowUseIosNewsstand",
18733
- "CondAllowGetUsersDetails",
18734
- "CondAllowGoalTracking",
18735
18457
  "CondAllowIePlatformUsage",
18736
- "CondAllowInbox",
18737
- "CondMaxEmailTemplates",
18738
- "CondMaxUserSpecificTags",
18739
- "CondAllowGdpr",
18740
18458
  "CondMaxVerifyingEmails",
18741
18459
  "CondMaxVerifyingDomains",
18742
- "CondAllowSendExternalStats",
18743
- "CondAllowCustomRssPollingInterval",
18744
18460
  "CondAllowMetadata",
18745
18461
  "CondMaxPushOnEventDelayInDays",
18746
18462
  "CondAllowEventStatisticsApi",
18747
18463
  "CondAllowTagNotSetFilter",
18748
18464
  "CondAllowDebugMode",
18749
- "CondAllowFbMessenger",
18750
18465
  "CondAllowTrackUninstalls",
18751
18466
  "CondEmailRateCounterAggregatePeriod",
18752
18467
  "CondEmailBounceRateLimit",
18753
18468
  "CondEmailComplaintRateLimit",
18754
18469
  "CondAllowFrequencyCapping",
18755
- "CondMaxUsersPerDevice",
18756
18470
  "CondEmailsFreeLimit",
18757
18471
  "CondEmailsLimited",
18758
18472
  "CondAllowContentTemplates",
@@ -18977,185 +18691,41 @@ export const data = {
18977
18691
  "method": "patch",
18978
18692
  "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowApi"
18979
18693
  },
18980
- "UpdateAllowScheduling": {
18981
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowSchedulingRequest",
18694
+ "UpdateMinSendRate": {
18695
+ "request": "pushwoosh.objects.restrictionValues.v1.UpdateMinSendRateRequest",
18982
18696
  "response": "{}",
18983
18697
  "method": "patch",
18984
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowScheduling"
18698
+ "path": "/v1/objects/restrictionValues/ID/{ID}/update/MinSendRate"
18985
18699
  },
18986
- "UpdateAllowCustomData": {
18987
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowCustomDataRequest",
18700
+ "UpdateMaxSendRate": {
18701
+ "request": "pushwoosh.objects.restrictionValues.v1.UpdateMaxSendRateRequest",
18988
18702
  "response": "{}",
18989
18703
  "method": "patch",
18990
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowCustomData"
18704
+ "path": "/v1/objects/restrictionValues/ID/{ID}/update/MaxSendRate"
18991
18705
  },
18992
- "UpdateAllowMultiLanguage": {
18993
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowMultiLanguageRequest",
18706
+ "UpdateAllowIePlatformUsage": {
18707
+ "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowIePlatformUsageRequest",
18994
18708
  "response": "{}",
18995
18709
  "method": "patch",
18996
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowMultiLanguage"
18710
+ "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowIePlatformUsage"
18997
18711
  },
18998
- "UpdateAllowAutoConfig": {
18999
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowAutoConfigRequest",
18712
+ "UpdateMaxVerifyingEmails": {
18713
+ "request": "pushwoosh.objects.restrictionValues.v1.UpdateMaxVerifyingEmailsRequest",
19000
18714
  "response": "{}",
19001
18715
  "method": "patch",
19002
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowAutoConfig"
18716
+ "path": "/v1/objects/restrictionValues/ID/{ID}/update/MaxVerifyingEmails"
19003
18717
  },
19004
- "UpdateAllowCsvMessage": {
19005
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowCsvMessageRequest",
18718
+ "UpdateMaxVerifyingDomains": {
18719
+ "request": "pushwoosh.objects.restrictionValues.v1.UpdateMaxVerifyingDomainsRequest",
19006
18720
  "response": "{}",
19007
18721
  "method": "patch",
19008
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowCsvMessage"
18722
+ "path": "/v1/objects/restrictionValues/ID/{ID}/update/MaxVerifyingDomains"
19009
18723
  },
19010
- "UpdateAllowCampaignApi": {
19011
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowCampaignApiRequest",
18724
+ "UpdateAllowMetadata": {
18725
+ "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowMetadataRequest",
19012
18726
  "response": "{}",
19013
18727
  "method": "patch",
19014
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowCampaignApi"
19015
- },
19016
- "UpdateAllowPushHistoryApi": {
19017
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowPushHistoryApiRequest",
19018
- "response": "{}",
19019
- "method": "patch",
19020
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowPushHistoryApi"
19021
- },
19022
- "UpdateAllowTagsApi": {
19023
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowTagsApiRequest",
19024
- "response": "{}",
19025
- "method": "patch",
19026
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowTagsApi"
19027
- },
19028
- "UpdateAllowPushByUser": {
19029
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowPushByUserRequest",
19030
- "response": "{}",
19031
- "method": "patch",
19032
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowPushByUser"
19033
- },
19034
- "UpdateAllowFilterApi": {
19035
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowFilterApiRequest",
19036
- "response": "{}",
19037
- "method": "patch",
19038
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowFilterApi"
19039
- },
19040
- "UpdateAllowTwoFactorAuth": {
19041
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowTwoFactorAuthRequest",
19042
- "response": "{}",
19043
- "method": "patch",
19044
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowTwoFactorAuth"
19045
- },
19046
- "UpdateAllowBroadcastMessageSegmentation": {
19047
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowBroadcastMessageSegmentationRequest",
19048
- "response": "{}",
19049
- "method": "patch",
19050
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowBroadcastMessageSegmentation"
19051
- },
19052
- "UpdateAllowPushOnEvent": {
19053
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowPushOnEventRequest",
19054
- "response": "{}",
19055
- "method": "patch",
19056
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowPushOnEvent"
19057
- },
19058
- "UpdateAllowCompileFilter": {
19059
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowCompileFilterRequest",
19060
- "response": "{}",
19061
- "method": "patch",
19062
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowCompileFilter"
19063
- },
19064
- "UpdateMinSendRate": {
19065
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateMinSendRateRequest",
19066
- "response": "{}",
19067
- "method": "patch",
19068
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/MinSendRate"
19069
- },
19070
- "UpdateMaxSendRate": {
19071
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateMaxSendRateRequest",
19072
- "response": "{}",
19073
- "method": "patch",
19074
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/MaxSendRate"
19075
- },
19076
- "UpdateAllowSendToGeozone": {
19077
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowSendToGeozoneRequest",
19078
- "response": "{}",
19079
- "method": "patch",
19080
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowSendToGeozone"
19081
- },
19082
- "UpdateAllowUseIosNewsstand": {
19083
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowUseIosNewsstandRequest",
19084
- "response": "{}",
19085
- "method": "patch",
19086
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowUseIosNewsstand"
19087
- },
19088
- "UpdateAllowGetUsersDetails": {
19089
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowGetUsersDetailsRequest",
19090
- "response": "{}",
19091
- "method": "patch",
19092
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowGetUsersDetails"
19093
- },
19094
- "UpdateAllowGoalTracking": {
19095
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowGoalTrackingRequest",
19096
- "response": "{}",
19097
- "method": "patch",
19098
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowGoalTracking"
19099
- },
19100
- "UpdateAllowIePlatformUsage": {
19101
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowIePlatformUsageRequest",
19102
- "response": "{}",
19103
- "method": "patch",
19104
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowIePlatformUsage"
19105
- },
19106
- "UpdateAllowInbox": {
19107
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowInboxRequest",
19108
- "response": "{}",
19109
- "method": "patch",
19110
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowInbox"
19111
- },
19112
- "UpdateMaxEmailTemplates": {
19113
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateMaxEmailTemplatesRequest",
19114
- "response": "{}",
19115
- "method": "patch",
19116
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/MaxEmailTemplates"
19117
- },
19118
- "UpdateMaxUserSpecificTags": {
19119
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateMaxUserSpecificTagsRequest",
19120
- "response": "{}",
19121
- "method": "patch",
19122
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/MaxUserSpecificTags"
19123
- },
19124
- "UpdateAllowGdpr": {
19125
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowGdprRequest",
19126
- "response": "{}",
19127
- "method": "patch",
19128
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowGdpr"
19129
- },
19130
- "UpdateMaxVerifyingEmails": {
19131
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateMaxVerifyingEmailsRequest",
19132
- "response": "{}",
19133
- "method": "patch",
19134
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/MaxVerifyingEmails"
19135
- },
19136
- "UpdateMaxVerifyingDomains": {
19137
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateMaxVerifyingDomainsRequest",
19138
- "response": "{}",
19139
- "method": "patch",
19140
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/MaxVerifyingDomains"
19141
- },
19142
- "UpdateAllowSendExternalStats": {
19143
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowSendExternalStatsRequest",
19144
- "response": "{}",
19145
- "method": "patch",
19146
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowSendExternalStats"
19147
- },
19148
- "UpdateAllowCustomRssPollingInterval": {
19149
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowCustomRssPollingIntervalRequest",
19150
- "response": "{}",
19151
- "method": "patch",
19152
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowCustomRssPollingInterval"
19153
- },
19154
- "UpdateAllowMetadata": {
19155
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowMetadataRequest",
19156
- "response": "{}",
19157
- "method": "patch",
19158
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowMetadata"
18728
+ "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowMetadata"
19159
18729
  },
19160
18730
  "UpdateMaxPushOnEventDelayInDays": {
19161
18731
  "request": "pushwoosh.objects.restrictionValues.v1.UpdateMaxPushOnEventDelayInDaysRequest",
@@ -19181,12 +18751,6 @@ export const data = {
19181
18751
  "method": "patch",
19182
18752
  "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowDebugMode"
19183
18753
  },
19184
- "UpdateAllowFbMessenger": {
19185
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowFbMessengerRequest",
19186
- "response": "{}",
19187
- "method": "patch",
19188
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowFbMessenger"
19189
- },
19190
18754
  "UpdateAllowTrackUninstalls": {
19191
18755
  "request": "pushwoosh.objects.restrictionValues.v1.UpdateAllowTrackUninstallsRequest",
19192
18756
  "response": "{}",
@@ -19217,12 +18781,6 @@ export const data = {
19217
18781
  "method": "patch",
19218
18782
  "path": "/v1/objects/restrictionValues/ID/{ID}/update/AllowFrequencyCapping"
19219
18783
  },
19220
- "UpdateMaxUsersPerDevice": {
19221
- "request": "pushwoosh.objects.restrictionValues.v1.UpdateMaxUsersPerDeviceRequest",
19222
- "response": "{}",
19223
- "method": "patch",
19224
- "path": "/v1/objects/restrictionValues/ID/{ID}/update/MaxUsersPerDevice"
19225
- },
19226
18784
  "UpdateEmailsFreeLimit": {
19227
18785
  "request": "pushwoosh.objects.restrictionValues.v1.UpdateEmailsFreeLimitRequest",
19228
18786
  "response": "{}",
@@ -19438,93 +18996,21 @@ export const data = {
19438
18996
  "AllowApi": {
19439
18997
  "type": "boolean"
19440
18998
  },
19441
- "AllowScheduling": {
19442
- "type": "boolean"
19443
- },
19444
- "AllowCustomData": {
19445
- "type": "boolean"
19446
- },
19447
- "AllowMultiLanguage": {
19448
- "type": "boolean"
19449
- },
19450
- "AllowAutoConfig": {
19451
- "type": "boolean"
19452
- },
19453
- "AllowCsvMessage": {
19454
- "type": "boolean"
19455
- },
19456
- "AllowCampaignApi": {
19457
- "type": "boolean"
19458
- },
19459
- "AllowPushHistoryApi": {
19460
- "type": "boolean"
19461
- },
19462
- "AllowTagsApi": {
19463
- "type": "boolean"
19464
- },
19465
- "AllowPushByUser": {
19466
- "type": "boolean"
19467
- },
19468
- "AllowFilterApi": {
19469
- "type": "boolean"
19470
- },
19471
- "AllowTwoFactorAuth": {
19472
- "type": "boolean"
19473
- },
19474
- "AllowBroadcastMessageSegmentation": {
19475
- "type": "boolean"
19476
- },
19477
- "AllowPushOnEvent": {
19478
- "type": "boolean"
19479
- },
19480
- "AllowCompileFilter": {
19481
- "type": "boolean"
19482
- },
19483
18999
  "MinSendRate": {
19484
19000
  "type": "number"
19485
19001
  },
19486
19002
  "MaxSendRate": {
19487
19003
  "type": "number"
19488
19004
  },
19489
- "AllowSendToGeozone": {
19490
- "type": "boolean"
19491
- },
19492
- "AllowUseIosNewsstand": {
19493
- "type": "boolean"
19494
- },
19495
- "AllowGetUsersDetails": {
19496
- "type": "boolean"
19497
- },
19498
- "AllowGoalTracking": {
19499
- "type": "boolean"
19500
- },
19501
19005
  "AllowIePlatformUsage": {
19502
19006
  "type": "boolean"
19503
19007
  },
19504
- "AllowInbox": {
19505
- "type": "boolean"
19506
- },
19507
- "MaxEmailTemplates": {
19508
- "type": "number"
19509
- },
19510
- "MaxUserSpecificTags": {
19511
- "type": "number"
19512
- },
19513
- "AllowGdpr": {
19514
- "type": "boolean"
19515
- },
19516
19008
  "MaxVerifyingEmails": {
19517
19009
  "type": "number"
19518
19010
  },
19519
19011
  "MaxVerifyingDomains": {
19520
19012
  "type": "number"
19521
19013
  },
19522
- "AllowSendExternalStats": {
19523
- "type": "boolean"
19524
- },
19525
- "AllowCustomRssPollingInterval": {
19526
- "type": "boolean"
19527
- },
19528
19014
  "AllowMetadata": {
19529
19015
  "type": "boolean"
19530
19016
  },
@@ -19540,9 +19026,6 @@ export const data = {
19540
19026
  "AllowDebugMode": {
19541
19027
  "type": "boolean"
19542
19028
  },
19543
- "AllowFbMessenger": {
19544
- "type": "boolean"
19545
- },
19546
19029
  "AllowTrackUninstalls": {
19547
19030
  "type": "boolean"
19548
19031
  },
@@ -19558,9 +19041,6 @@ export const data = {
19558
19041
  "AllowFrequencyCapping": {
19559
19042
  "type": "boolean"
19560
19043
  },
19561
- "MaxUsersPerDevice": {
19562
- "type": "number"
19563
- },
19564
19044
  "EmailsFreeLimit": {
19565
19045
  "type": "number"
19566
19046
  },
@@ -19646,405 +19126,163 @@ export const data = {
19646
19126
  "type": "boolean"
19647
19127
  },
19648
19128
  "AllowTagsAutoCreation": {
19649
- "type": "boolean"
19650
- },
19651
- "AllowAIWalletBilling": {
19652
- "type": "boolean"
19653
- },
19654
- "ApplicationSpecificFilters": {
19655
- "type": "boolean"
19656
- },
19657
- "AllowCloudPages": {
19658
- "type": "boolean"
19659
- }
19660
- }
19661
- },
19662
- "pushwoosh.objects.restrictionValues.v1.CreateResponse": {
19663
- "type": "I",
19664
- "fields": {
19665
- "restrictionValue": {
19666
- "type": "pushwoosh.objects.restrictionValues.v1.RestrictionValue"
19667
- }
19668
- }
19669
- },
19670
- "pushwoosh.objects.restrictionValues.v1.CreateManyRequest": {
19671
- "type": "I",
19672
- "fields": {
19673
- "restrictionValues": {
19674
- "type": "pushwoosh.objects.restrictionValues.v1.CreateRequest",
19675
- "array": true
19676
- }
19677
- }
19678
- },
19679
- "pushwoosh.objects.restrictionValues.v1.CreateManyResponse": {
19680
- "type": "I",
19681
- "fields": {
19682
- "restrictionValues": {
19683
- "type": "pushwoosh.objects.restrictionValues.v1.CreateResponse",
19684
- "array": true
19685
- }
19686
- }
19687
- },
19688
- "pushwoosh.objects.restrictionValues.v1.DeleteRequest": {
19689
- "type": "I",
19690
- "fields": {
19691
- "ID": {
19692
- "type": "number"
19693
- }
19694
- }
19695
- },
19696
- "pushwoosh.objects.restrictionValues.v1.DeleteManyRequest": {
19697
- "type": "I",
19698
- "fields": {
19699
- "where": {
19700
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression"
19701
- }
19702
- }
19703
- },
19704
- "pushwoosh.objects.restrictionValues.v1.DeleteManyResponse": {
19705
- "type": "I",
19706
- "fields": {
19707
- "count": {
19708
- "type": "number"
19709
- }
19710
- }
19711
- },
19712
- "pushwoosh.objects.restrictionValues.v1.CountRequest": {
19713
- "type": "I",
19714
- "fields": {
19715
- "where": {
19716
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression"
19717
- }
19718
- }
19719
- },
19720
- "pushwoosh.objects.restrictionValues.v1.CountResponse": {
19721
- "type": "I",
19722
- "fields": {
19723
- "count": {
19724
- "type": "number"
19725
- }
19726
- }
19727
- },
19728
- "pushwoosh.objects.restrictionValues.v1.GetPageRequest": {
19729
- "type": "I",
19730
- "fields": {
19731
- "where": {
19732
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression"
19733
- },
19734
- "sort": {
19735
- "type": "pushwoosh.objects.restrictionValues.v1.SortExpression"
19736
- },
19737
- "pageSize": {
19738
- "type": "number"
19739
- },
19740
- "pageNum": {
19741
- "type": "number"
19742
- },
19743
- "forLock": {
19744
- "type": "pushwoosh.objects.restrictionValues.v1.ForExpression"
19745
- }
19746
- }
19747
- },
19748
- "pushwoosh.objects.restrictionValues.v1.GetPageResponse": {
19749
- "type": "I",
19750
- "fields": {
19751
- "restrictionValues": {
19752
- "type": "pushwoosh.objects.restrictionValues.v1.RestrictionValue",
19753
- "array": true
19754
- },
19755
- "total": {
19756
- "type": "number"
19757
- }
19758
- }
19759
- },
19760
- "pushwoosh.objects.restrictionValues.v1.ListRequest": {
19761
- "type": "I",
19762
- "fields": {
19763
- "where": {
19764
- "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression"
19765
- },
19766
- "sort": {
19767
- "type": "pushwoosh.objects.restrictionValues.v1.SortExpression"
19768
- },
19769
- "pageSize": {
19770
- "type": "number"
19771
- },
19772
- "forLock": {
19773
- "type": "pushwoosh.objects.restrictionValues.v1.ForExpression"
19774
- }
19775
- }
19776
- },
19777
- "pushwoosh.objects.restrictionValues.v1.ListResponse": {
19778
- "type": "I",
19779
- "fields": {
19780
- "paginationToken": {
19781
- "type": "string"
19782
- }
19783
- }
19784
- },
19785
- "pushwoosh.objects.restrictionValues.v1.PaginateRequest": {
19786
- "type": "I",
19787
- "fields": {
19788
- "nextPageToken": {
19789
- "type": "string"
19790
- }
19791
- }
19792
- },
19793
- "pushwoosh.objects.restrictionValues.v1.PaginateResponse": {
19794
- "type": "I",
19795
- "fields": {
19796
- "restrictionValues": {
19797
- "type": "pushwoosh.objects.restrictionValues.v1.RestrictionValue",
19798
- "array": true
19799
- },
19800
- "nextPageToken": {
19801
- "type": "string"
19802
- }
19803
- }
19804
- },
19805
- "pushwoosh.objects.restrictionValues.v1.UpdateIsLockedRequest": {
19806
- "type": "I",
19807
- "fields": {
19808
- "ID": {
19809
- "type": "number"
19810
- },
19811
- "value": {
19812
- "type": "boolean"
19813
- }
19814
- }
19815
- },
19816
- "pushwoosh.objects.restrictionValues.v1.UpdateMaxDevicesRequest": {
19817
- "type": "I",
19818
- "fields": {
19819
- "ID": {
19820
- "type": "number"
19821
- },
19822
- "value": {
19823
- "type": "number"
19824
- }
19825
- }
19826
- },
19827
- "pushwoosh.objects.restrictionValues.v1.UpdateMaxUsersRequest": {
19828
- "type": "I",
19829
- "fields": {
19830
- "ID": {
19831
- "type": "number"
19832
- },
19833
- "value": {
19834
- "type": "number"
19835
- }
19836
- }
19837
- },
19838
- "pushwoosh.objects.restrictionValues.v1.UpdateMaxPreparedFiltersRequest": {
19839
- "type": "I",
19840
- "fields": {
19841
- "ID": {
19842
- "type": "number"
19843
- },
19844
- "value": {
19845
- "type": "number"
19846
- }
19847
- }
19848
- },
19849
- "pushwoosh.objects.restrictionValues.v1.UpdateDevicesInactivityLimitRequest": {
19850
- "type": "I",
19851
- "fields": {
19852
- "ID": {
19853
- "type": "number"
19854
- },
19855
- "value": {
19856
- "type": "number"
19857
- }
19858
- }
19859
- },
19860
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowApiRequest": {
19861
- "type": "I",
19862
- "fields": {
19863
- "ID": {
19864
- "type": "number"
19129
+ "type": "boolean"
19865
19130
  },
19866
- "value": {
19131
+ "AllowAIWalletBilling": {
19867
19132
  "type": "boolean"
19868
- }
19869
- }
19870
- },
19871
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowSchedulingRequest": {
19872
- "type": "I",
19873
- "fields": {
19874
- "ID": {
19875
- "type": "number"
19876
19133
  },
19877
- "value": {
19134
+ "ApplicationSpecificFilters": {
19878
19135
  "type": "boolean"
19879
- }
19880
- }
19881
- },
19882
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowCustomDataRequest": {
19883
- "type": "I",
19884
- "fields": {
19885
- "ID": {
19886
- "type": "number"
19887
19136
  },
19888
- "value": {
19137
+ "AllowCloudPages": {
19889
19138
  "type": "boolean"
19890
19139
  }
19891
19140
  }
19892
19141
  },
19893
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowMultiLanguageRequest": {
19142
+ "pushwoosh.objects.restrictionValues.v1.CreateResponse": {
19894
19143
  "type": "I",
19895
19144
  "fields": {
19896
- "ID": {
19897
- "type": "number"
19898
- },
19899
- "value": {
19900
- "type": "boolean"
19145
+ "restrictionValue": {
19146
+ "type": "pushwoosh.objects.restrictionValues.v1.RestrictionValue"
19901
19147
  }
19902
19148
  }
19903
19149
  },
19904
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowAutoConfigRequest": {
19150
+ "pushwoosh.objects.restrictionValues.v1.CreateManyRequest": {
19905
19151
  "type": "I",
19906
19152
  "fields": {
19907
- "ID": {
19908
- "type": "number"
19909
- },
19910
- "value": {
19911
- "type": "boolean"
19153
+ "restrictionValues": {
19154
+ "type": "pushwoosh.objects.restrictionValues.v1.CreateRequest",
19155
+ "array": true
19912
19156
  }
19913
19157
  }
19914
19158
  },
19915
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowCsvMessageRequest": {
19159
+ "pushwoosh.objects.restrictionValues.v1.CreateManyResponse": {
19916
19160
  "type": "I",
19917
19161
  "fields": {
19918
- "ID": {
19919
- "type": "number"
19920
- },
19921
- "value": {
19922
- "type": "boolean"
19162
+ "restrictionValues": {
19163
+ "type": "pushwoosh.objects.restrictionValues.v1.CreateResponse",
19164
+ "array": true
19923
19165
  }
19924
19166
  }
19925
19167
  },
19926
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowCampaignApiRequest": {
19168
+ "pushwoosh.objects.restrictionValues.v1.DeleteRequest": {
19927
19169
  "type": "I",
19928
19170
  "fields": {
19929
19171
  "ID": {
19930
19172
  "type": "number"
19931
- },
19932
- "value": {
19933
- "type": "boolean"
19934
19173
  }
19935
19174
  }
19936
19175
  },
19937
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowPushHistoryApiRequest": {
19176
+ "pushwoosh.objects.restrictionValues.v1.DeleteManyRequest": {
19938
19177
  "type": "I",
19939
19178
  "fields": {
19940
- "ID": {
19941
- "type": "number"
19942
- },
19943
- "value": {
19944
- "type": "boolean"
19179
+ "where": {
19180
+ "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression"
19945
19181
  }
19946
19182
  }
19947
19183
  },
19948
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowTagsApiRequest": {
19184
+ "pushwoosh.objects.restrictionValues.v1.DeleteManyResponse": {
19949
19185
  "type": "I",
19950
19186
  "fields": {
19951
- "ID": {
19187
+ "count": {
19952
19188
  "type": "number"
19953
- },
19954
- "value": {
19955
- "type": "boolean"
19956
19189
  }
19957
19190
  }
19958
19191
  },
19959
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowPushByUserRequest": {
19192
+ "pushwoosh.objects.restrictionValues.v1.CountRequest": {
19960
19193
  "type": "I",
19961
19194
  "fields": {
19962
- "ID": {
19963
- "type": "number"
19964
- },
19965
- "value": {
19966
- "type": "boolean"
19195
+ "where": {
19196
+ "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression"
19967
19197
  }
19968
19198
  }
19969
19199
  },
19970
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowFilterApiRequest": {
19200
+ "pushwoosh.objects.restrictionValues.v1.CountResponse": {
19971
19201
  "type": "I",
19972
19202
  "fields": {
19973
- "ID": {
19203
+ "count": {
19974
19204
  "type": "number"
19975
- },
19976
- "value": {
19977
- "type": "boolean"
19978
19205
  }
19979
19206
  }
19980
19207
  },
19981
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowTwoFactorAuthRequest": {
19208
+ "pushwoosh.objects.restrictionValues.v1.GetPageRequest": {
19982
19209
  "type": "I",
19983
19210
  "fields": {
19984
- "ID": {
19211
+ "where": {
19212
+ "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression"
19213
+ },
19214
+ "sort": {
19215
+ "type": "pushwoosh.objects.restrictionValues.v1.SortExpression"
19216
+ },
19217
+ "pageSize": {
19985
19218
  "type": "number"
19986
19219
  },
19987
- "value": {
19988
- "type": "boolean"
19220
+ "pageNum": {
19221
+ "type": "number"
19222
+ },
19223
+ "forLock": {
19224
+ "type": "pushwoosh.objects.restrictionValues.v1.ForExpression"
19989
19225
  }
19990
19226
  }
19991
19227
  },
19992
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowBroadcastMessageSegmentationRequest": {
19228
+ "pushwoosh.objects.restrictionValues.v1.GetPageResponse": {
19993
19229
  "type": "I",
19994
19230
  "fields": {
19995
- "ID": {
19996
- "type": "number"
19231
+ "restrictionValues": {
19232
+ "type": "pushwoosh.objects.restrictionValues.v1.RestrictionValue",
19233
+ "array": true
19997
19234
  },
19998
- "value": {
19999
- "type": "boolean"
19235
+ "total": {
19236
+ "type": "number"
20000
19237
  }
20001
19238
  }
20002
19239
  },
20003
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowPushOnEventRequest": {
19240
+ "pushwoosh.objects.restrictionValues.v1.ListRequest": {
20004
19241
  "type": "I",
20005
19242
  "fields": {
20006
- "ID": {
19243
+ "where": {
19244
+ "type": "pushwoosh.objects.restrictionValues.v1.LogicExpression"
19245
+ },
19246
+ "sort": {
19247
+ "type": "pushwoosh.objects.restrictionValues.v1.SortExpression"
19248
+ },
19249
+ "pageSize": {
20007
19250
  "type": "number"
20008
19251
  },
20009
- "value": {
20010
- "type": "boolean"
19252
+ "forLock": {
19253
+ "type": "pushwoosh.objects.restrictionValues.v1.ForExpression"
20011
19254
  }
20012
19255
  }
20013
19256
  },
20014
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowCompileFilterRequest": {
19257
+ "pushwoosh.objects.restrictionValues.v1.ListResponse": {
20015
19258
  "type": "I",
20016
19259
  "fields": {
20017
- "ID": {
20018
- "type": "number"
20019
- },
20020
- "value": {
20021
- "type": "boolean"
19260
+ "paginationToken": {
19261
+ "type": "string"
20022
19262
  }
20023
19263
  }
20024
19264
  },
20025
- "pushwoosh.objects.restrictionValues.v1.UpdateMinSendRateRequest": {
19265
+ "pushwoosh.objects.restrictionValues.v1.PaginateRequest": {
20026
19266
  "type": "I",
20027
19267
  "fields": {
20028
- "ID": {
20029
- "type": "number"
20030
- },
20031
- "value": {
20032
- "type": "number"
19268
+ "nextPageToken": {
19269
+ "type": "string"
20033
19270
  }
20034
19271
  }
20035
19272
  },
20036
- "pushwoosh.objects.restrictionValues.v1.UpdateMaxSendRateRequest": {
19273
+ "pushwoosh.objects.restrictionValues.v1.PaginateResponse": {
20037
19274
  "type": "I",
20038
19275
  "fields": {
20039
- "ID": {
20040
- "type": "number"
19276
+ "restrictionValues": {
19277
+ "type": "pushwoosh.objects.restrictionValues.v1.RestrictionValue",
19278
+ "array": true
20041
19279
  },
20042
- "value": {
20043
- "type": "number"
19280
+ "nextPageToken": {
19281
+ "type": "string"
20044
19282
  }
20045
19283
  }
20046
19284
  },
20047
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowSendToGeozoneRequest": {
19285
+ "pushwoosh.objects.restrictionValues.v1.UpdateIsLockedRequest": {
20048
19286
  "type": "I",
20049
19287
  "fields": {
20050
19288
  "ID": {
@@ -20055,51 +19293,51 @@ export const data = {
20055
19293
  }
20056
19294
  }
20057
19295
  },
20058
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowUseIosNewsstandRequest": {
19296
+ "pushwoosh.objects.restrictionValues.v1.UpdateMaxDevicesRequest": {
20059
19297
  "type": "I",
20060
19298
  "fields": {
20061
19299
  "ID": {
20062
19300
  "type": "number"
20063
19301
  },
20064
19302
  "value": {
20065
- "type": "boolean"
19303
+ "type": "number"
20066
19304
  }
20067
19305
  }
20068
19306
  },
20069
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowGetUsersDetailsRequest": {
19307
+ "pushwoosh.objects.restrictionValues.v1.UpdateMaxUsersRequest": {
20070
19308
  "type": "I",
20071
19309
  "fields": {
20072
19310
  "ID": {
20073
19311
  "type": "number"
20074
19312
  },
20075
19313
  "value": {
20076
- "type": "boolean"
19314
+ "type": "number"
20077
19315
  }
20078
19316
  }
20079
19317
  },
20080
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowGoalTrackingRequest": {
19318
+ "pushwoosh.objects.restrictionValues.v1.UpdateMaxPreparedFiltersRequest": {
20081
19319
  "type": "I",
20082
19320
  "fields": {
20083
19321
  "ID": {
20084
19322
  "type": "number"
20085
19323
  },
20086
19324
  "value": {
20087
- "type": "boolean"
19325
+ "type": "number"
20088
19326
  }
20089
19327
  }
20090
19328
  },
20091
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowIePlatformUsageRequest": {
19329
+ "pushwoosh.objects.restrictionValues.v1.UpdateDevicesInactivityLimitRequest": {
20092
19330
  "type": "I",
20093
19331
  "fields": {
20094
19332
  "ID": {
20095
19333
  "type": "number"
20096
19334
  },
20097
19335
  "value": {
20098
- "type": "boolean"
19336
+ "type": "number"
20099
19337
  }
20100
19338
  }
20101
19339
  },
20102
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowInboxRequest": {
19340
+ "pushwoosh.objects.restrictionValues.v1.UpdateAllowApiRequest": {
20103
19341
  "type": "I",
20104
19342
  "fields": {
20105
19343
  "ID": {
@@ -20110,7 +19348,7 @@ export const data = {
20110
19348
  }
20111
19349
  }
20112
19350
  },
20113
- "pushwoosh.objects.restrictionValues.v1.UpdateMaxEmailTemplatesRequest": {
19351
+ "pushwoosh.objects.restrictionValues.v1.UpdateMinSendRateRequest": {
20114
19352
  "type": "I",
20115
19353
  "fields": {
20116
19354
  "ID": {
@@ -20121,7 +19359,7 @@ export const data = {
20121
19359
  }
20122
19360
  }
20123
19361
  },
20124
- "pushwoosh.objects.restrictionValues.v1.UpdateMaxUserSpecificTagsRequest": {
19362
+ "pushwoosh.objects.restrictionValues.v1.UpdateMaxSendRateRequest": {
20125
19363
  "type": "I",
20126
19364
  "fields": {
20127
19365
  "ID": {
@@ -20132,7 +19370,7 @@ export const data = {
20132
19370
  }
20133
19371
  }
20134
19372
  },
20135
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowGdprRequest": {
19373
+ "pushwoosh.objects.restrictionValues.v1.UpdateAllowIePlatformUsageRequest": {
20136
19374
  "type": "I",
20137
19375
  "fields": {
20138
19376
  "ID": {
@@ -20165,28 +19403,6 @@ export const data = {
20165
19403
  }
20166
19404
  }
20167
19405
  },
20168
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowSendExternalStatsRequest": {
20169
- "type": "I",
20170
- "fields": {
20171
- "ID": {
20172
- "type": "number"
20173
- },
20174
- "value": {
20175
- "type": "boolean"
20176
- }
20177
- }
20178
- },
20179
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowCustomRssPollingIntervalRequest": {
20180
- "type": "I",
20181
- "fields": {
20182
- "ID": {
20183
- "type": "number"
20184
- },
20185
- "value": {
20186
- "type": "boolean"
20187
- }
20188
- }
20189
- },
20190
19406
  "pushwoosh.objects.restrictionValues.v1.UpdateAllowMetadataRequest": {
20191
19407
  "type": "I",
20192
19408
  "fields": {
@@ -20242,17 +19458,6 @@ export const data = {
20242
19458
  }
20243
19459
  }
20244
19460
  },
20245
- "pushwoosh.objects.restrictionValues.v1.UpdateAllowFbMessengerRequest": {
20246
- "type": "I",
20247
- "fields": {
20248
- "ID": {
20249
- "type": "number"
20250
- },
20251
- "value": {
20252
- "type": "boolean"
20253
- }
20254
- }
20255
- },
20256
19461
  "pushwoosh.objects.restrictionValues.v1.UpdateAllowTrackUninstallsRequest": {
20257
19462
  "type": "I",
20258
19463
  "fields": {
@@ -20308,17 +19513,6 @@ export const data = {
20308
19513
  }
20309
19514
  }
20310
19515
  },
20311
- "pushwoosh.objects.restrictionValues.v1.UpdateMaxUsersPerDeviceRequest": {
20312
- "type": "I",
20313
- "fields": {
20314
- "ID": {
20315
- "type": "number"
20316
- },
20317
- "value": {
20318
- "type": "number"
20319
- }
20320
- }
20321
- },
20322
19516
  "pushwoosh.objects.restrictionValues.v1.UpdateEmailsFreeLimitRequest": {
20323
19517
  "type": "I",
20324
19518
  "fields": {
@@ -20731,93 +19925,21 @@ export const data = {
20731
19925
  "AllowApi": {
20732
19926
  "type": "boolean"
20733
19927
  },
20734
- "AllowScheduling": {
20735
- "type": "boolean"
20736
- },
20737
- "AllowCustomData": {
20738
- "type": "boolean"
20739
- },
20740
- "AllowMultiLanguage": {
20741
- "type": "boolean"
20742
- },
20743
- "AllowAutoConfig": {
20744
- "type": "boolean"
20745
- },
20746
- "AllowCsvMessage": {
20747
- "type": "boolean"
20748
- },
20749
- "AllowCampaignApi": {
20750
- "type": "boolean"
20751
- },
20752
- "AllowPushHistoryApi": {
20753
- "type": "boolean"
20754
- },
20755
- "AllowTagsApi": {
20756
- "type": "boolean"
20757
- },
20758
- "AllowPushByUser": {
20759
- "type": "boolean"
20760
- },
20761
- "AllowFilterApi": {
20762
- "type": "boolean"
20763
- },
20764
- "AllowTwoFactorAuth": {
20765
- "type": "boolean"
20766
- },
20767
- "AllowBroadcastMessageSegmentation": {
20768
- "type": "boolean"
20769
- },
20770
- "AllowPushOnEvent": {
20771
- "type": "boolean"
20772
- },
20773
- "AllowCompileFilter": {
20774
- "type": "boolean"
20775
- },
20776
19928
  "MinSendRate": {
20777
19929
  "type": "number"
20778
19930
  },
20779
19931
  "MaxSendRate": {
20780
19932
  "type": "number"
20781
19933
  },
20782
- "AllowSendToGeozone": {
20783
- "type": "boolean"
20784
- },
20785
- "AllowUseIosNewsstand": {
20786
- "type": "boolean"
20787
- },
20788
- "AllowGetUsersDetails": {
20789
- "type": "boolean"
20790
- },
20791
- "AllowGoalTracking": {
20792
- "type": "boolean"
20793
- },
20794
19934
  "AllowIePlatformUsage": {
20795
19935
  "type": "boolean"
20796
19936
  },
20797
- "AllowInbox": {
20798
- "type": "boolean"
20799
- },
20800
- "MaxEmailTemplates": {
20801
- "type": "number"
20802
- },
20803
- "MaxUserSpecificTags": {
20804
- "type": "number"
20805
- },
20806
- "AllowGdpr": {
20807
- "type": "boolean"
20808
- },
20809
19937
  "MaxVerifyingEmails": {
20810
19938
  "type": "number"
20811
19939
  },
20812
19940
  "MaxVerifyingDomains": {
20813
19941
  "type": "number"
20814
19942
  },
20815
- "AllowSendExternalStats": {
20816
- "type": "boolean"
20817
- },
20818
- "AllowCustomRssPollingInterval": {
20819
- "type": "boolean"
20820
- },
20821
19943
  "AllowMetadata": {
20822
19944
  "type": "boolean"
20823
19945
  },
@@ -20833,9 +19955,6 @@ export const data = {
20833
19955
  "AllowDebugMode": {
20834
19956
  "type": "boolean"
20835
19957
  },
20836
- "AllowFbMessenger": {
20837
- "type": "boolean"
20838
- },
20839
19958
  "AllowTrackUninstalls": {
20840
19959
  "type": "boolean"
20841
19960
  },
@@ -20851,9 +19970,6 @@ export const data = {
20851
19970
  "AllowFrequencyCapping": {
20852
19971
  "type": "boolean"
20853
19972
  },
20854
- "MaxUsersPerDevice": {
20855
- "type": "number"
20856
- },
20857
19973
  "EmailsFreeLimit": {
20858
19974
  "type": "number"
20859
19975
  },