wildberries-sdk 0.1.29__py3-none-any.whl → 0.1.30__py3-none-any.whl
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.
- wildberries_sdk/analytics/__init__.py +1 -1
- wildberries_sdk/analytics/api/default_api.py +32 -16
- wildberries_sdk/analytics/api_client.py +1 -1
- wildberries_sdk/analytics/configuration.py +1 -1
- wildberries_sdk/communications/__init__.py +1 -1
- wildberries_sdk/communications/api/default_api.py +42 -22
- wildberries_sdk/communications/api_client.py +1 -1
- wildberries_sdk/communications/configuration.py +1 -1
- wildberries_sdk/finances/__init__.py +1 -1
- wildberries_sdk/finances/api/default_api.py +12 -6
- wildberries_sdk/finances/api_client.py +1 -1
- wildberries_sdk/finances/configuration.py +1 -1
- wildberries_sdk/general/__init__.py +1 -1
- wildberries_sdk/general/api/default_api.py +14 -7
- wildberries_sdk/general/api_client.py +1 -1
- wildberries_sdk/general/configuration.py +1 -1
- wildberries_sdk/in_store_pickup/__init__.py +1 -1
- wildberries_sdk/in_store_pickup/api/default_api.py +31 -15
- wildberries_sdk/in_store_pickup/api_client.py +1 -1
- wildberries_sdk/in_store_pickup/configuration.py +1 -1
- wildberries_sdk/orders_dbs/__init__.py +1 -1
- wildberries_sdk/orders_dbs/api/default_api.py +60 -30
- wildberries_sdk/orders_dbs/api_client.py +1 -1
- wildberries_sdk/orders_dbs/configuration.py +1 -1
- wildberries_sdk/orders_dbw/__init__.py +1 -1
- wildberries_sdk/orders_dbw/api/default_api.py +30 -15
- wildberries_sdk/orders_dbw/api_client.py +1 -1
- wildberries_sdk/orders_dbw/configuration.py +1 -1
- wildberries_sdk/orders_fbs/__init__.py +1 -1
- wildberries_sdk/orders_fbs/api_client.py +1 -1
- wildberries_sdk/orders_fbs/configuration.py +1 -1
- wildberries_sdk/orders_fbw/__init__.py +1 -1
- wildberries_sdk/orders_fbw/api/default_api.py +16 -8
- wildberries_sdk/orders_fbw/api_client.py +1 -1
- wildberries_sdk/orders_fbw/configuration.py +1 -1
- wildberries_sdk/products/__init__.py +1 -1
- wildberries_sdk/products/api/default_api.py +95 -47
- wildberries_sdk/products/api_client.py +1 -1
- wildberries_sdk/products/configuration.py +1 -1
- wildberries_sdk/promotion/__init__.py +1 -1
- wildberries_sdk/promotion/api/default_api.py +95 -47
- wildberries_sdk/promotion/api_client.py +1 -1
- wildberries_sdk/promotion/configuration.py +1 -1
- wildberries_sdk/reports/__init__.py +1 -1
- wildberries_sdk/reports/api/default_api.py +30 -15
- wildberries_sdk/reports/api_client.py +1 -1
- wildberries_sdk/reports/configuration.py +1 -1
- wildberries_sdk/tariffs/__init__.py +1 -1
- wildberries_sdk/tariffs/api/default_api.py +2 -1
- wildberries_sdk/tariffs/api_client.py +1 -1
- wildberries_sdk/tariffs/configuration.py +1 -1
- wildberries_sdk/wbd/__init__.py +1 -1
- wildberries_sdk/wbd/api_client.py +1 -1
- wildberries_sdk/wbd/configuration.py +1 -1
- {wildberries_sdk-0.1.29.dist-info → wildberries_sdk-0.1.30.dist-info}/METADATA +1 -1
- {wildberries_sdk-0.1.29.dist-info → wildberries_sdk-0.1.30.dist-info}/RECORD +59 -59
- {wildberries_sdk-0.1.29.dist-info → wildberries_sdk-0.1.30.dist-info}/LICENSE +0 -0
- {wildberries_sdk-0.1.29.dist-info → wildberries_sdk-0.1.30.dist-info}/WHEEL +0 -0
- {wildberries_sdk-0.1.29.dist-info → wildberries_sdk-0.1.30.dist-info}/top_level.txt +0 -0
|
@@ -375,7 +375,8 @@ class DefaultApi:
|
|
|
375
375
|
if 'Accept' not in _header_params:
|
|
376
376
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
377
377
|
[
|
|
378
|
-
'application/json'
|
|
378
|
+
'application/json',
|
|
379
|
+
'application/problem+json'
|
|
379
380
|
]
|
|
380
381
|
)
|
|
381
382
|
|
|
@@ -651,7 +652,8 @@ class DefaultApi:
|
|
|
651
652
|
if 'Accept' not in _header_params:
|
|
652
653
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
653
654
|
[
|
|
654
|
-
'application/json'
|
|
655
|
+
'application/json',
|
|
656
|
+
'application/problem+json'
|
|
655
657
|
]
|
|
656
658
|
)
|
|
657
659
|
|
|
@@ -937,7 +939,8 @@ class DefaultApi:
|
|
|
937
939
|
if 'Accept' not in _header_params:
|
|
938
940
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
939
941
|
[
|
|
940
|
-
'application/json'
|
|
942
|
+
'application/json',
|
|
943
|
+
'application/problem+json'
|
|
941
944
|
]
|
|
942
945
|
)
|
|
943
946
|
|
|
@@ -1223,7 +1226,8 @@ class DefaultApi:
|
|
|
1223
1226
|
if 'Accept' not in _header_params:
|
|
1224
1227
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1225
1228
|
[
|
|
1226
|
-
'application/json'
|
|
1229
|
+
'application/json',
|
|
1230
|
+
'application/problem+json'
|
|
1227
1231
|
]
|
|
1228
1232
|
)
|
|
1229
1233
|
|
|
@@ -1512,7 +1516,8 @@ class DefaultApi:
|
|
|
1512
1516
|
if 'Accept' not in _header_params:
|
|
1513
1517
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1514
1518
|
[
|
|
1515
|
-
'application/json'
|
|
1519
|
+
'application/json',
|
|
1520
|
+
'application/problem+json'
|
|
1516
1521
|
]
|
|
1517
1522
|
)
|
|
1518
1523
|
|
|
@@ -1801,7 +1806,8 @@ class DefaultApi:
|
|
|
1801
1806
|
if 'Accept' not in _header_params:
|
|
1802
1807
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1803
1808
|
[
|
|
1804
|
-
'application/json'
|
|
1809
|
+
'application/json',
|
|
1810
|
+
'application/problem+json'
|
|
1805
1811
|
]
|
|
1806
1812
|
)
|
|
1807
1813
|
|
|
@@ -2072,7 +2078,8 @@ class DefaultApi:
|
|
|
2072
2078
|
if 'Accept' not in _header_params:
|
|
2073
2079
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
2074
2080
|
[
|
|
2075
|
-
'application/json'
|
|
2081
|
+
'application/json',
|
|
2082
|
+
'application/problem+json'
|
|
2076
2083
|
]
|
|
2077
2084
|
)
|
|
2078
2085
|
|
|
@@ -2347,7 +2354,8 @@ class DefaultApi:
|
|
|
2347
2354
|
if 'Accept' not in _header_params:
|
|
2348
2355
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
2349
2356
|
[
|
|
2350
|
-
'application/json'
|
|
2357
|
+
'application/json',
|
|
2358
|
+
'application/problem+json'
|
|
2351
2359
|
]
|
|
2352
2360
|
)
|
|
2353
2361
|
|
|
@@ -2623,7 +2631,8 @@ class DefaultApi:
|
|
|
2623
2631
|
if 'Accept' not in _header_params:
|
|
2624
2632
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
2625
2633
|
[
|
|
2626
|
-
'application/json'
|
|
2634
|
+
'application/json',
|
|
2635
|
+
'application/problem+json'
|
|
2627
2636
|
]
|
|
2628
2637
|
)
|
|
2629
2638
|
|
|
@@ -2912,7 +2921,8 @@ class DefaultApi:
|
|
|
2912
2921
|
if 'Accept' not in _header_params:
|
|
2913
2922
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
2914
2923
|
[
|
|
2915
|
-
'application/json'
|
|
2924
|
+
'application/json',
|
|
2925
|
+
'application/problem+json'
|
|
2916
2926
|
]
|
|
2917
2927
|
)
|
|
2918
2928
|
|
|
@@ -3201,7 +3211,8 @@ class DefaultApi:
|
|
|
3201
3211
|
if 'Accept' not in _header_params:
|
|
3202
3212
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
3203
3213
|
[
|
|
3204
|
-
'application/json'
|
|
3214
|
+
'application/json',
|
|
3215
|
+
'application/problem+json'
|
|
3205
3216
|
]
|
|
3206
3217
|
)
|
|
3207
3218
|
|
|
@@ -3490,7 +3501,8 @@ class DefaultApi:
|
|
|
3490
3501
|
if 'Accept' not in _header_params:
|
|
3491
3502
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
3492
3503
|
[
|
|
3493
|
-
'application/json'
|
|
3504
|
+
'application/json',
|
|
3505
|
+
'application/problem+json'
|
|
3494
3506
|
]
|
|
3495
3507
|
)
|
|
3496
3508
|
|
|
@@ -3779,7 +3791,8 @@ class DefaultApi:
|
|
|
3779
3791
|
if 'Accept' not in _header_params:
|
|
3780
3792
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
3781
3793
|
[
|
|
3782
|
-
'application/json'
|
|
3794
|
+
'application/json',
|
|
3795
|
+
'application/problem+json'
|
|
3783
3796
|
]
|
|
3784
3797
|
)
|
|
3785
3798
|
|
|
@@ -4068,7 +4081,8 @@ class DefaultApi:
|
|
|
4068
4081
|
if 'Accept' not in _header_params:
|
|
4069
4082
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
4070
4083
|
[
|
|
4071
|
-
'application/json'
|
|
4084
|
+
'application/json',
|
|
4085
|
+
'application/problem+json'
|
|
4072
4086
|
]
|
|
4073
4087
|
)
|
|
4074
4088
|
|
|
@@ -4360,6 +4374,7 @@ class DefaultApi:
|
|
|
4360
4374
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
4361
4375
|
[
|
|
4362
4376
|
'application/json',
|
|
4377
|
+
'application/problem+json',
|
|
4363
4378
|
'text/plain'
|
|
4364
4379
|
]
|
|
4365
4380
|
)
|
|
@@ -4637,7 +4652,7 @@ class DefaultApi:
|
|
|
4637
4652
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
4638
4653
|
[
|
|
4639
4654
|
'text/plain',
|
|
4640
|
-
'application/json'
|
|
4655
|
+
'application/problem+json'
|
|
4641
4656
|
]
|
|
4642
4657
|
)
|
|
4643
4658
|
|
|
@@ -4929,6 +4944,7 @@ class DefaultApi:
|
|
|
4929
4944
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
4930
4945
|
[
|
|
4931
4946
|
'application/json',
|
|
4947
|
+
'application/problem+json',
|
|
4932
4948
|
'text/plain'
|
|
4933
4949
|
]
|
|
4934
4950
|
)
|
|
@@ -5262,7 +5278,8 @@ class DefaultApi:
|
|
|
5262
5278
|
if 'Accept' not in _header_params:
|
|
5263
5279
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
5264
5280
|
[
|
|
5265
|
-
'application/json'
|
|
5281
|
+
'application/json',
|
|
5282
|
+
'application/problem+json'
|
|
5266
5283
|
]
|
|
5267
5284
|
)
|
|
5268
5285
|
|
|
@@ -5541,6 +5558,7 @@ class DefaultApi:
|
|
|
5541
5558
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
5542
5559
|
[
|
|
5543
5560
|
'application/json',
|
|
5561
|
+
'application/problem+json',
|
|
5544
5562
|
'text/plain'
|
|
5545
5563
|
]
|
|
5546
5564
|
)
|
|
@@ -5816,7 +5834,8 @@ class DefaultApi:
|
|
|
5816
5834
|
if 'Accept' not in _header_params:
|
|
5817
5835
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
5818
5836
|
[
|
|
5819
|
-
'application/json'
|
|
5837
|
+
'application/json',
|
|
5838
|
+
'application/problem+json'
|
|
5820
5839
|
]
|
|
5821
5840
|
)
|
|
5822
5841
|
|
|
@@ -6176,7 +6195,8 @@ class DefaultApi:
|
|
|
6176
6195
|
if 'Accept' not in _header_params:
|
|
6177
6196
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
6178
6197
|
[
|
|
6179
|
-
'application/json'
|
|
6198
|
+
'application/json',
|
|
6199
|
+
'application/problem+json'
|
|
6180
6200
|
]
|
|
6181
6201
|
)
|
|
6182
6202
|
|
|
@@ -6454,7 +6474,8 @@ class DefaultApi:
|
|
|
6454
6474
|
if 'Accept' not in _header_params:
|
|
6455
6475
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
6456
6476
|
[
|
|
6457
|
-
'application/json'
|
|
6477
|
+
'application/json',
|
|
6478
|
+
'application/problem+json'
|
|
6458
6479
|
]
|
|
6459
6480
|
)
|
|
6460
6481
|
|
|
@@ -6747,7 +6768,8 @@ class DefaultApi:
|
|
|
6747
6768
|
if 'Accept' not in _header_params:
|
|
6748
6769
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
6749
6770
|
[
|
|
6750
|
-
'application/json'
|
|
6771
|
+
'application/json',
|
|
6772
|
+
'application/problem+json'
|
|
6751
6773
|
]
|
|
6752
6774
|
)
|
|
6753
6775
|
|
|
@@ -7053,7 +7075,8 @@ class DefaultApi:
|
|
|
7053
7075
|
if 'Accept' not in _header_params:
|
|
7054
7076
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
7055
7077
|
[
|
|
7056
|
-
'application/json'
|
|
7078
|
+
'application/json',
|
|
7079
|
+
'application/problem+json'
|
|
7057
7080
|
]
|
|
7058
7081
|
)
|
|
7059
7082
|
|
|
@@ -7324,7 +7347,8 @@ class DefaultApi:
|
|
|
7324
7347
|
if 'Accept' not in _header_params:
|
|
7325
7348
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
7326
7349
|
[
|
|
7327
|
-
'application/json'
|
|
7350
|
+
'application/json',
|
|
7351
|
+
'application/problem+json'
|
|
7328
7352
|
]
|
|
7329
7353
|
)
|
|
7330
7354
|
|
|
@@ -7614,7 +7638,8 @@ class DefaultApi:
|
|
|
7614
7638
|
if 'Accept' not in _header_params:
|
|
7615
7639
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
7616
7640
|
[
|
|
7617
|
-
'application/json'
|
|
7641
|
+
'application/json',
|
|
7642
|
+
'application/problem+json'
|
|
7618
7643
|
]
|
|
7619
7644
|
)
|
|
7620
7645
|
|
|
@@ -7903,7 +7928,8 @@ class DefaultApi:
|
|
|
7903
7928
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
7904
7929
|
[
|
|
7905
7930
|
'application/json',
|
|
7906
|
-
'text/plain'
|
|
7931
|
+
'text/plain',
|
|
7932
|
+
'application/problem+json'
|
|
7907
7933
|
]
|
|
7908
7934
|
)
|
|
7909
7935
|
|
|
@@ -8158,7 +8184,8 @@ class DefaultApi:
|
|
|
8158
8184
|
if 'Accept' not in _header_params:
|
|
8159
8185
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
8160
8186
|
[
|
|
8161
|
-
'application/json'
|
|
8187
|
+
'application/json',
|
|
8188
|
+
'application/problem+json'
|
|
8162
8189
|
]
|
|
8163
8190
|
)
|
|
8164
8191
|
|
|
@@ -8471,7 +8498,8 @@ class DefaultApi:
|
|
|
8471
8498
|
if 'Accept' not in _header_params:
|
|
8472
8499
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
8473
8500
|
[
|
|
8474
|
-
'application/json'
|
|
8501
|
+
'application/json',
|
|
8502
|
+
'application/problem+json'
|
|
8475
8503
|
]
|
|
8476
8504
|
)
|
|
8477
8505
|
|
|
@@ -8823,7 +8851,8 @@ class DefaultApi:
|
|
|
8823
8851
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
8824
8852
|
[
|
|
8825
8853
|
'application/json',
|
|
8826
|
-
'text/plain'
|
|
8854
|
+
'text/plain',
|
|
8855
|
+
'application/problem+json'
|
|
8827
8856
|
]
|
|
8828
8857
|
)
|
|
8829
8858
|
|
|
@@ -9091,7 +9120,8 @@ class DefaultApi:
|
|
|
9091
9120
|
if 'Accept' not in _header_params:
|
|
9092
9121
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
9093
9122
|
[
|
|
9094
|
-
'application/json'
|
|
9123
|
+
'application/json',
|
|
9124
|
+
'application/problem+json'
|
|
9095
9125
|
]
|
|
9096
9126
|
)
|
|
9097
9127
|
|
|
@@ -9385,7 +9415,7 @@ class DefaultApi:
|
|
|
9385
9415
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
9386
9416
|
[
|
|
9387
9417
|
'text/plain',
|
|
9388
|
-
'application/json'
|
|
9418
|
+
'application/problem+json'
|
|
9389
9419
|
]
|
|
9390
9420
|
)
|
|
9391
9421
|
|
|
@@ -9693,7 +9723,8 @@ class DefaultApi:
|
|
|
9693
9723
|
if 'Accept' not in _header_params:
|
|
9694
9724
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
9695
9725
|
[
|
|
9696
|
-
'application/json'
|
|
9726
|
+
'application/json',
|
|
9727
|
+
'application/problem+json'
|
|
9697
9728
|
]
|
|
9698
9729
|
)
|
|
9699
9730
|
|
|
@@ -9986,7 +10017,8 @@ class DefaultApi:
|
|
|
9986
10017
|
if 'Accept' not in _header_params:
|
|
9987
10018
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
9988
10019
|
[
|
|
9989
|
-
'application/json'
|
|
10020
|
+
'application/json',
|
|
10021
|
+
'application/problem+json'
|
|
9990
10022
|
]
|
|
9991
10023
|
)
|
|
9992
10024
|
|
|
@@ -10277,7 +10309,8 @@ class DefaultApi:
|
|
|
10277
10309
|
if 'Accept' not in _header_params:
|
|
10278
10310
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
10279
10311
|
[
|
|
10280
|
-
'application/json'
|
|
10312
|
+
'application/json',
|
|
10313
|
+
'application/problem+json'
|
|
10281
10314
|
]
|
|
10282
10315
|
)
|
|
10283
10316
|
|
|
@@ -10551,7 +10584,8 @@ class DefaultApi:
|
|
|
10551
10584
|
if 'Accept' not in _header_params:
|
|
10552
10585
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
10553
10586
|
[
|
|
10554
|
-
'application/json'
|
|
10587
|
+
'application/json',
|
|
10588
|
+
'application/problem+json'
|
|
10555
10589
|
]
|
|
10556
10590
|
)
|
|
10557
10591
|
|
|
@@ -10839,7 +10873,8 @@ class DefaultApi:
|
|
|
10839
10873
|
if 'Accept' not in _header_params:
|
|
10840
10874
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
10841
10875
|
[
|
|
10842
|
-
'application/json'
|
|
10876
|
+
'application/json',
|
|
10877
|
+
'application/problem+json'
|
|
10843
10878
|
]
|
|
10844
10879
|
)
|
|
10845
10880
|
|
|
@@ -11150,7 +11185,8 @@ class DefaultApi:
|
|
|
11150
11185
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
11151
11186
|
[
|
|
11152
11187
|
'application/json',
|
|
11153
|
-
'text/plain'
|
|
11188
|
+
'text/plain',
|
|
11189
|
+
'application/problem+json'
|
|
11154
11190
|
]
|
|
11155
11191
|
)
|
|
11156
11192
|
|
|
@@ -11431,7 +11467,8 @@ class DefaultApi:
|
|
|
11431
11467
|
if 'Accept' not in _header_params:
|
|
11432
11468
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
11433
11469
|
[
|
|
11434
|
-
'application/json'
|
|
11470
|
+
'application/json',
|
|
11471
|
+
'application/problem+json'
|
|
11435
11472
|
]
|
|
11436
11473
|
)
|
|
11437
11474
|
|
|
@@ -11708,7 +11745,8 @@ class DefaultApi:
|
|
|
11708
11745
|
if 'Accept' not in _header_params:
|
|
11709
11746
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
11710
11747
|
[
|
|
11711
|
-
'application/json'
|
|
11748
|
+
'application/json',
|
|
11749
|
+
'application/problem+json'
|
|
11712
11750
|
]
|
|
11713
11751
|
)
|
|
11714
11752
|
|
|
@@ -11994,7 +12032,8 @@ class DefaultApi:
|
|
|
11994
12032
|
if 'Accept' not in _header_params:
|
|
11995
12033
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
11996
12034
|
[
|
|
11997
|
-
'application/json'
|
|
12035
|
+
'application/json',
|
|
12036
|
+
'application/problem+json'
|
|
11998
12037
|
]
|
|
11999
12038
|
)
|
|
12000
12039
|
|
|
@@ -12282,7 +12321,8 @@ class DefaultApi:
|
|
|
12282
12321
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
12283
12322
|
[
|
|
12284
12323
|
'application/json',
|
|
12285
|
-
'text/plain'
|
|
12324
|
+
'text/plain',
|
|
12325
|
+
'application/problem+json'
|
|
12286
12326
|
]
|
|
12287
12327
|
)
|
|
12288
12328
|
|
|
@@ -12622,7 +12662,8 @@ class DefaultApi:
|
|
|
12622
12662
|
if 'Accept' not in _header_params:
|
|
12623
12663
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
12624
12664
|
[
|
|
12625
|
-
'application/json'
|
|
12665
|
+
'application/json',
|
|
12666
|
+
'application/problem+json'
|
|
12626
12667
|
]
|
|
12627
12668
|
)
|
|
12628
12669
|
|
|
@@ -12895,7 +12936,8 @@ class DefaultApi:
|
|
|
12895
12936
|
if 'Accept' not in _header_params:
|
|
12896
12937
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
12897
12938
|
[
|
|
12898
|
-
'application/json'
|
|
12939
|
+
'application/json',
|
|
12940
|
+
'application/problem+json'
|
|
12899
12941
|
]
|
|
12900
12942
|
)
|
|
12901
12943
|
|
|
@@ -13181,7 +13223,8 @@ class DefaultApi:
|
|
|
13181
13223
|
if 'Accept' not in _header_params:
|
|
13182
13224
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
13183
13225
|
[
|
|
13184
|
-
'application/json'
|
|
13226
|
+
'application/json',
|
|
13227
|
+
'application/problem+json'
|
|
13185
13228
|
]
|
|
13186
13229
|
)
|
|
13187
13230
|
|
|
@@ -13503,7 +13546,8 @@ class DefaultApi:
|
|
|
13503
13546
|
if 'Accept' not in _header_params:
|
|
13504
13547
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
13505
13548
|
[
|
|
13506
|
-
'application/json'
|
|
13549
|
+
'application/json',
|
|
13550
|
+
'application/problem+json'
|
|
13507
13551
|
]
|
|
13508
13552
|
)
|
|
13509
13553
|
|
|
@@ -13779,7 +13823,8 @@ class DefaultApi:
|
|
|
13779
13823
|
if 'Accept' not in _header_params:
|
|
13780
13824
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
13781
13825
|
[
|
|
13782
|
-
'application/json'
|
|
13826
|
+
'application/json',
|
|
13827
|
+
'application/problem+json'
|
|
13783
13828
|
]
|
|
13784
13829
|
)
|
|
13785
13830
|
|
|
@@ -14140,7 +14185,8 @@ class DefaultApi:
|
|
|
14140
14185
|
if 'Accept' not in _header_params:
|
|
14141
14186
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
14142
14187
|
[
|
|
14143
|
-
'application/json'
|
|
14188
|
+
'application/json',
|
|
14189
|
+
'application/problem+json'
|
|
14144
14190
|
]
|
|
14145
14191
|
)
|
|
14146
14192
|
|
|
@@ -14469,7 +14515,8 @@ class DefaultApi:
|
|
|
14469
14515
|
if 'Accept' not in _header_params:
|
|
14470
14516
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
14471
14517
|
[
|
|
14472
|
-
'application/json'
|
|
14518
|
+
'application/json',
|
|
14519
|
+
'application/problem+json'
|
|
14473
14520
|
]
|
|
14474
14521
|
)
|
|
14475
14522
|
|
|
@@ -14745,7 +14792,8 @@ class DefaultApi:
|
|
|
14745
14792
|
if 'Accept' not in _header_params:
|
|
14746
14793
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
14747
14794
|
[
|
|
14748
|
-
'application/json'
|
|
14795
|
+
'application/json',
|
|
14796
|
+
'application/problem+json'
|
|
14749
14797
|
]
|
|
14750
14798
|
)
|
|
14751
14799
|
|
|
@@ -91,7 +91,7 @@ class ApiClient:
|
|
|
91
91
|
self.default_headers[header_name] = header_value
|
|
92
92
|
self.cookie = cookie
|
|
93
93
|
# Set default User-Agent.
|
|
94
|
-
self.user_agent = 'OpenAPI-Generator/0.1.
|
|
94
|
+
self.user_agent = 'OpenAPI-Generator/0.1.30/python'
|
|
95
95
|
self.client_side_validation = configuration.client_side_validation
|
|
96
96
|
|
|
97
97
|
def __enter__(self):
|
|
@@ -536,7 +536,7 @@ conf = wildberries_sdk.promotion.Configuration(
|
|
|
536
536
|
"OS: {env}\n"\
|
|
537
537
|
"Python Version: {pyversion}\n"\
|
|
538
538
|
"Version of the API: promotion\n"\
|
|
539
|
-
"SDK Package Version: 0.1.
|
|
539
|
+
"SDK Package Version: 0.1.30".\
|
|
540
540
|
format(env=sys.platform, pyversion=sys.version)
|
|
541
541
|
|
|
542
542
|
def get_host_settings(self) -> List[HostSetting]:
|
|
@@ -1157,7 +1157,8 @@ class DefaultApi:
|
|
|
1157
1157
|
if 'Accept' not in _header_params:
|
|
1158
1158
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1159
1159
|
[
|
|
1160
|
-
'application/json'
|
|
1160
|
+
'application/json',
|
|
1161
|
+
'application/problem+json'
|
|
1161
1162
|
]
|
|
1162
1163
|
)
|
|
1163
1164
|
|
|
@@ -1449,7 +1450,8 @@ class DefaultApi:
|
|
|
1449
1450
|
if 'Accept' not in _header_params:
|
|
1450
1451
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1451
1452
|
[
|
|
1452
|
-
'application/json'
|
|
1453
|
+
'application/json',
|
|
1454
|
+
'application/problem+json'
|
|
1453
1455
|
]
|
|
1454
1456
|
)
|
|
1455
1457
|
|
|
@@ -1741,7 +1743,8 @@ class DefaultApi:
|
|
|
1741
1743
|
if 'Accept' not in _header_params:
|
|
1742
1744
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1743
1745
|
[
|
|
1744
|
-
'application/json'
|
|
1746
|
+
'application/json',
|
|
1747
|
+
'application/problem+json'
|
|
1745
1748
|
]
|
|
1746
1749
|
)
|
|
1747
1750
|
|
|
@@ -1996,7 +1999,8 @@ class DefaultApi:
|
|
|
1996
1999
|
if 'Accept' not in _header_params:
|
|
1997
2000
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1998
2001
|
[
|
|
1999
|
-
'application/json'
|
|
2002
|
+
'application/json',
|
|
2003
|
+
'application/problem+json'
|
|
2000
2004
|
]
|
|
2001
2005
|
)
|
|
2002
2006
|
|
|
@@ -2322,7 +2326,8 @@ class DefaultApi:
|
|
|
2322
2326
|
if 'Accept' not in _header_params:
|
|
2323
2327
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
2324
2328
|
[
|
|
2325
|
-
'application/json'
|
|
2329
|
+
'application/json',
|
|
2330
|
+
'application/problem+json'
|
|
2326
2331
|
]
|
|
2327
2332
|
)
|
|
2328
2333
|
|
|
@@ -2648,7 +2653,8 @@ class DefaultApi:
|
|
|
2648
2653
|
if 'Accept' not in _header_params:
|
|
2649
2654
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
2650
2655
|
[
|
|
2651
|
-
'application/json'
|
|
2656
|
+
'application/json',
|
|
2657
|
+
'application/problem+json'
|
|
2652
2658
|
]
|
|
2653
2659
|
)
|
|
2654
2660
|
|
|
@@ -4251,7 +4257,8 @@ class DefaultApi:
|
|
|
4251
4257
|
if 'Accept' not in _header_params:
|
|
4252
4258
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
4253
4259
|
[
|
|
4254
|
-
'application/json'
|
|
4260
|
+
'application/json',
|
|
4261
|
+
'application/problem+json'
|
|
4255
4262
|
]
|
|
4256
4263
|
)
|
|
4257
4264
|
|
|
@@ -5385,7 +5392,8 @@ class DefaultApi:
|
|
|
5385
5392
|
if 'Accept' not in _header_params:
|
|
5386
5393
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
5387
5394
|
[
|
|
5388
|
-
'application/json'
|
|
5395
|
+
'application/json',
|
|
5396
|
+
'application/problem+json'
|
|
5389
5397
|
]
|
|
5390
5398
|
)
|
|
5391
5399
|
|
|
@@ -5686,7 +5694,8 @@ class DefaultApi:
|
|
|
5686
5694
|
if 'Accept' not in _header_params:
|
|
5687
5695
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
5688
5696
|
[
|
|
5689
|
-
'application/json'
|
|
5697
|
+
'application/json',
|
|
5698
|
+
'application/problem+json'
|
|
5690
5699
|
]
|
|
5691
5700
|
)
|
|
5692
5701
|
|
|
@@ -5987,7 +5996,8 @@ class DefaultApi:
|
|
|
5987
5996
|
if 'Accept' not in _header_params:
|
|
5988
5997
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
5989
5998
|
[
|
|
5990
|
-
'application/json'
|
|
5999
|
+
'application/json',
|
|
6000
|
+
'application/problem+json'
|
|
5991
6001
|
]
|
|
5992
6002
|
)
|
|
5993
6003
|
|
|
@@ -6271,7 +6281,8 @@ class DefaultApi:
|
|
|
6271
6281
|
if 'Accept' not in _header_params:
|
|
6272
6282
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
6273
6283
|
[
|
|
6274
|
-
'application/json'
|
|
6284
|
+
'application/json',
|
|
6285
|
+
'application/problem+json'
|
|
6275
6286
|
]
|
|
6276
6287
|
)
|
|
6277
6288
|
|
|
@@ -6682,7 +6693,8 @@ class DefaultApi:
|
|
|
6682
6693
|
if 'Accept' not in _header_params:
|
|
6683
6694
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
6684
6695
|
[
|
|
6685
|
-
'application/json'
|
|
6696
|
+
'application/json',
|
|
6697
|
+
'application/problem+json'
|
|
6686
6698
|
]
|
|
6687
6699
|
)
|
|
6688
6700
|
|
|
@@ -7617,7 +7629,8 @@ class DefaultApi:
|
|
|
7617
7629
|
if 'Accept' not in _header_params:
|
|
7618
7630
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
7619
7631
|
[
|
|
7620
|
-
'application/json'
|
|
7632
|
+
'application/json',
|
|
7633
|
+
'application/problem+json'
|
|
7621
7634
|
]
|
|
7622
7635
|
)
|
|
7623
7636
|
|
|
@@ -7964,7 +7977,8 @@ class DefaultApi:
|
|
|
7964
7977
|
if 'Accept' not in _header_params:
|
|
7965
7978
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
7966
7979
|
[
|
|
7967
|
-
'application/json'
|
|
7980
|
+
'application/json',
|
|
7981
|
+
'application/problem+json'
|
|
7968
7982
|
]
|
|
7969
7983
|
)
|
|
7970
7984
|
|
|
@@ -8311,7 +8325,8 @@ class DefaultApi:
|
|
|
8311
8325
|
if 'Accept' not in _header_params:
|
|
8312
8326
|
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
8313
8327
|
[
|
|
8314
|
-
'application/json'
|
|
8328
|
+
'application/json',
|
|
8329
|
+
'application/problem+json'
|
|
8315
8330
|
]
|
|
8316
8331
|
)
|
|
8317
8332
|
|
|
@@ -91,7 +91,7 @@ class ApiClient:
|
|
|
91
91
|
self.default_headers[header_name] = header_value
|
|
92
92
|
self.cookie = cookie
|
|
93
93
|
# Set default User-Agent.
|
|
94
|
-
self.user_agent = 'OpenAPI-Generator/0.1.
|
|
94
|
+
self.user_agent = 'OpenAPI-Generator/0.1.30/python'
|
|
95
95
|
self.client_side_validation = configuration.client_side_validation
|
|
96
96
|
|
|
97
97
|
def __enter__(self):
|
|
@@ -536,7 +536,7 @@ conf = wildberries_sdk.reports.Configuration(
|
|
|
536
536
|
"OS: {env}\n"\
|
|
537
537
|
"Python Version: {pyversion}\n"\
|
|
538
538
|
"Version of the API: reports\n"\
|
|
539
|
-
"SDK Package Version: 0.1.
|
|
539
|
+
"SDK Package Version: 0.1.30".\
|
|
540
540
|
format(env=sys.platform, pyversion=sys.version)
|
|
541
541
|
|
|
542
542
|
def get_host_settings(self) -> List[HostSetting]:
|