@shopvirge/shopvirge-client 0.2.7 → 0.2.9
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/dist/index.d.ts +475 -51
- package/dist/index.js +493 -24
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1090,6 +1090,86 @@ declare const $ConfigurationLegal: {
|
|
|
1090
1090
|
readonly type: "object";
|
|
1091
1091
|
readonly title: "ConfigurationLegal";
|
|
1092
1092
|
};
|
|
1093
|
+
declare const $ConfigurationShipping_Input: {
|
|
1094
|
+
readonly properties: {
|
|
1095
|
+
readonly enabled: {
|
|
1096
|
+
readonly type: "boolean";
|
|
1097
|
+
readonly title: "Enabled";
|
|
1098
|
+
readonly default: false;
|
|
1099
|
+
};
|
|
1100
|
+
readonly method: {
|
|
1101
|
+
readonly type: "string";
|
|
1102
|
+
readonly title: "Method";
|
|
1103
|
+
readonly default: "fixed";
|
|
1104
|
+
};
|
|
1105
|
+
readonly fixed_fee: {
|
|
1106
|
+
readonly anyOf: readonly [{
|
|
1107
|
+
readonly type: "number";
|
|
1108
|
+
}, {
|
|
1109
|
+
readonly type: "string";
|
|
1110
|
+
}];
|
|
1111
|
+
readonly title: "Fixed Fee";
|
|
1112
|
+
readonly default: "0";
|
|
1113
|
+
};
|
|
1114
|
+
readonly vat_calculation_enabled: {
|
|
1115
|
+
readonly type: "boolean";
|
|
1116
|
+
readonly title: "Vat Calculation Enabled";
|
|
1117
|
+
readonly default: true;
|
|
1118
|
+
};
|
|
1119
|
+
readonly free_shipping_above_enabled: {
|
|
1120
|
+
readonly type: "boolean";
|
|
1121
|
+
readonly title: "Free Shipping Above Enabled";
|
|
1122
|
+
readonly default: false;
|
|
1123
|
+
};
|
|
1124
|
+
readonly free_shipping_above_amount: {
|
|
1125
|
+
readonly anyOf: readonly [{
|
|
1126
|
+
readonly type: "number";
|
|
1127
|
+
}, {
|
|
1128
|
+
readonly type: "string";
|
|
1129
|
+
}];
|
|
1130
|
+
readonly title: "Free Shipping Above Amount";
|
|
1131
|
+
readonly default: "0";
|
|
1132
|
+
};
|
|
1133
|
+
};
|
|
1134
|
+
readonly type: "object";
|
|
1135
|
+
readonly title: "ConfigurationShipping";
|
|
1136
|
+
};
|
|
1137
|
+
declare const $ConfigurationShipping_Output: {
|
|
1138
|
+
readonly properties: {
|
|
1139
|
+
readonly enabled: {
|
|
1140
|
+
readonly type: "boolean";
|
|
1141
|
+
readonly title: "Enabled";
|
|
1142
|
+
readonly default: false;
|
|
1143
|
+
};
|
|
1144
|
+
readonly method: {
|
|
1145
|
+
readonly type: "string";
|
|
1146
|
+
readonly title: "Method";
|
|
1147
|
+
readonly default: "fixed";
|
|
1148
|
+
};
|
|
1149
|
+
readonly fixed_fee: {
|
|
1150
|
+
readonly type: "number";
|
|
1151
|
+
readonly title: "Fixed Fee";
|
|
1152
|
+
readonly default: "0";
|
|
1153
|
+
};
|
|
1154
|
+
readonly vat_calculation_enabled: {
|
|
1155
|
+
readonly type: "boolean";
|
|
1156
|
+
readonly title: "Vat Calculation Enabled";
|
|
1157
|
+
readonly default: true;
|
|
1158
|
+
};
|
|
1159
|
+
readonly free_shipping_above_enabled: {
|
|
1160
|
+
readonly type: "boolean";
|
|
1161
|
+
readonly title: "Free Shipping Above Enabled";
|
|
1162
|
+
readonly default: false;
|
|
1163
|
+
};
|
|
1164
|
+
readonly free_shipping_above_amount: {
|
|
1165
|
+
readonly type: "number";
|
|
1166
|
+
readonly title: "Free Shipping Above Amount";
|
|
1167
|
+
readonly default: "0";
|
|
1168
|
+
};
|
|
1169
|
+
};
|
|
1170
|
+
readonly type: "object";
|
|
1171
|
+
readonly title: "ConfigurationShipping";
|
|
1172
|
+
};
|
|
1093
1173
|
declare const $ConfigurationV1_Input: {
|
|
1094
1174
|
readonly properties: {
|
|
1095
1175
|
readonly short_shop_name: {
|
|
@@ -1149,6 +1229,13 @@ declare const $ConfigurationV1_Input: {
|
|
|
1149
1229
|
readonly type: "null";
|
|
1150
1230
|
}];
|
|
1151
1231
|
};
|
|
1232
|
+
readonly shipping: {
|
|
1233
|
+
readonly anyOf: readonly [{
|
|
1234
|
+
readonly $ref: "#/components/schemas/ConfigurationShipping-Input";
|
|
1235
|
+
}, {
|
|
1236
|
+
readonly type: "null";
|
|
1237
|
+
}];
|
|
1238
|
+
};
|
|
1152
1239
|
};
|
|
1153
1240
|
readonly type: "object";
|
|
1154
1241
|
readonly required: readonly ["short_shop_name", "logo", "main_banner", "languages", "contact", "toggles"];
|
|
@@ -1213,6 +1300,13 @@ declare const $ConfigurationV1_Output: {
|
|
|
1213
1300
|
readonly type: "null";
|
|
1214
1301
|
}];
|
|
1215
1302
|
};
|
|
1303
|
+
readonly shipping: {
|
|
1304
|
+
readonly anyOf: readonly [{
|
|
1305
|
+
readonly $ref: "#/components/schemas/ConfigurationShipping-Output";
|
|
1306
|
+
}, {
|
|
1307
|
+
readonly type: "null";
|
|
1308
|
+
}];
|
|
1309
|
+
};
|
|
1216
1310
|
};
|
|
1217
1311
|
readonly type: "object";
|
|
1218
1312
|
readonly required: readonly ["short_shop_name", "logo", "main_banner", "languages", "contact", "toggles"];
|
|
@@ -1632,6 +1726,8 @@ declare const $OrderBase: {
|
|
|
1632
1726
|
readonly total: {
|
|
1633
1727
|
readonly anyOf: readonly [{
|
|
1634
1728
|
readonly type: "number";
|
|
1729
|
+
}, {
|
|
1730
|
+
readonly type: "string";
|
|
1635
1731
|
}, {
|
|
1636
1732
|
readonly type: "null";
|
|
1637
1733
|
}];
|
|
@@ -1661,6 +1757,16 @@ declare const $OrderBase: {
|
|
|
1661
1757
|
}];
|
|
1662
1758
|
readonly title: "Status";
|
|
1663
1759
|
};
|
|
1760
|
+
readonly shipping_fee_inc_btw: {
|
|
1761
|
+
readonly anyOf: readonly [{
|
|
1762
|
+
readonly type: "number";
|
|
1763
|
+
}, {
|
|
1764
|
+
readonly type: "string";
|
|
1765
|
+
}, {
|
|
1766
|
+
readonly type: "null";
|
|
1767
|
+
}];
|
|
1768
|
+
readonly title: "Shipping Fee Inc Btw";
|
|
1769
|
+
};
|
|
1664
1770
|
};
|
|
1665
1771
|
readonly type: "object";
|
|
1666
1772
|
readonly required: readonly ["total", "notes", "customer_order_id", "status"];
|
|
@@ -1680,6 +1786,8 @@ declare const $OrderCreate: {
|
|
|
1680
1786
|
readonly total: {
|
|
1681
1787
|
readonly anyOf: readonly [{
|
|
1682
1788
|
readonly type: "number";
|
|
1789
|
+
}, {
|
|
1790
|
+
readonly type: "string";
|
|
1683
1791
|
}, {
|
|
1684
1792
|
readonly type: "null";
|
|
1685
1793
|
}];
|
|
@@ -1709,6 +1817,16 @@ declare const $OrderCreate: {
|
|
|
1709
1817
|
}];
|
|
1710
1818
|
readonly title: "Status";
|
|
1711
1819
|
};
|
|
1820
|
+
readonly shipping_fee_inc_btw: {
|
|
1821
|
+
readonly anyOf: readonly [{
|
|
1822
|
+
readonly type: "number";
|
|
1823
|
+
}, {
|
|
1824
|
+
readonly type: "string";
|
|
1825
|
+
}, {
|
|
1826
|
+
readonly type: "null";
|
|
1827
|
+
}];
|
|
1828
|
+
readonly title: "Shipping Fee Inc Btw";
|
|
1829
|
+
};
|
|
1712
1830
|
readonly shop_id: {
|
|
1713
1831
|
readonly type: "string";
|
|
1714
1832
|
readonly format: "uuid";
|
|
@@ -1716,7 +1834,7 @@ declare const $OrderCreate: {
|
|
|
1716
1834
|
};
|
|
1717
1835
|
readonly order_info: {
|
|
1718
1836
|
readonly items: {
|
|
1719
|
-
readonly $ref: "#/components/schemas/OrderItem";
|
|
1837
|
+
readonly $ref: "#/components/schemas/OrderItem-Input";
|
|
1720
1838
|
};
|
|
1721
1839
|
readonly type: "array";
|
|
1722
1840
|
readonly title: "Order Info";
|
|
@@ -1786,6 +1904,14 @@ declare const $OrderCreated: {
|
|
|
1786
1904
|
}];
|
|
1787
1905
|
readonly title: "Status";
|
|
1788
1906
|
};
|
|
1907
|
+
readonly shipping_fee_inc_btw: {
|
|
1908
|
+
readonly anyOf: readonly [{
|
|
1909
|
+
readonly type: "number";
|
|
1910
|
+
}, {
|
|
1911
|
+
readonly type: "null";
|
|
1912
|
+
}];
|
|
1913
|
+
readonly title: "Shipping Fee Inc Btw";
|
|
1914
|
+
};
|
|
1789
1915
|
readonly id: {
|
|
1790
1916
|
readonly type: "string";
|
|
1791
1917
|
readonly format: "uuid";
|
|
@@ -1818,7 +1944,43 @@ declare const $OrderCreated: {
|
|
|
1818
1944
|
readonly required: readonly ["total", "notes", "customer_order_id", "status", "id", "created_at", "account_name"];
|
|
1819
1945
|
readonly title: "OrderCreated";
|
|
1820
1946
|
};
|
|
1821
|
-
declare const $
|
|
1947
|
+
declare const $OrderItem_Input: {
|
|
1948
|
+
readonly properties: {
|
|
1949
|
+
readonly description: {
|
|
1950
|
+
readonly anyOf: readonly [{
|
|
1951
|
+
readonly type: "string";
|
|
1952
|
+
}, {
|
|
1953
|
+
readonly type: "null";
|
|
1954
|
+
}];
|
|
1955
|
+
readonly title: "Description";
|
|
1956
|
+
};
|
|
1957
|
+
readonly price: {
|
|
1958
|
+
readonly anyOf: readonly [{
|
|
1959
|
+
readonly type: "number";
|
|
1960
|
+
}, {
|
|
1961
|
+
readonly type: "string";
|
|
1962
|
+
}];
|
|
1963
|
+
readonly title: "Price";
|
|
1964
|
+
};
|
|
1965
|
+
readonly product_id: {
|
|
1966
|
+
readonly type: "string";
|
|
1967
|
+
readonly format: "uuid";
|
|
1968
|
+
readonly title: "Product Id";
|
|
1969
|
+
};
|
|
1970
|
+
readonly product_name: {
|
|
1971
|
+
readonly type: "string";
|
|
1972
|
+
readonly title: "Product Name";
|
|
1973
|
+
};
|
|
1974
|
+
readonly quantity: {
|
|
1975
|
+
readonly type: "integer";
|
|
1976
|
+
readonly title: "Quantity";
|
|
1977
|
+
};
|
|
1978
|
+
};
|
|
1979
|
+
readonly type: "object";
|
|
1980
|
+
readonly required: readonly ["description", "price", "product_id", "product_name", "quantity"];
|
|
1981
|
+
readonly title: "OrderItem";
|
|
1982
|
+
};
|
|
1983
|
+
declare const $OrderItem_Output: {
|
|
1822
1984
|
readonly properties: {
|
|
1823
1985
|
readonly description: {
|
|
1824
1986
|
readonly anyOf: readonly [{
|
|
@@ -1893,6 +2055,14 @@ declare const $OrderSchema: {
|
|
|
1893
2055
|
}];
|
|
1894
2056
|
readonly title: "Status";
|
|
1895
2057
|
};
|
|
2058
|
+
readonly shipping_fee_inc_btw: {
|
|
2059
|
+
readonly anyOf: readonly [{
|
|
2060
|
+
readonly type: "number";
|
|
2061
|
+
}, {
|
|
2062
|
+
readonly type: "null";
|
|
2063
|
+
}];
|
|
2064
|
+
readonly title: "Shipping Fee Inc Btw";
|
|
2065
|
+
};
|
|
1896
2066
|
readonly id: {
|
|
1897
2067
|
readonly type: "string";
|
|
1898
2068
|
readonly format: "uuid";
|
|
@@ -1905,7 +2075,7 @@ declare const $OrderSchema: {
|
|
|
1905
2075
|
};
|
|
1906
2076
|
readonly order_info: {
|
|
1907
2077
|
readonly items: {
|
|
1908
|
-
readonly $ref: "#/components/schemas/OrderItem";
|
|
2078
|
+
readonly $ref: "#/components/schemas/OrderItem-Output";
|
|
1909
2079
|
};
|
|
1910
2080
|
readonly type: "array";
|
|
1911
2081
|
readonly title: "Order Info";
|
|
@@ -1976,6 +2146,8 @@ declare const $OrderUpdate: {
|
|
|
1976
2146
|
readonly total: {
|
|
1977
2147
|
readonly anyOf: readonly [{
|
|
1978
2148
|
readonly type: "number";
|
|
2149
|
+
}, {
|
|
2150
|
+
readonly type: "string";
|
|
1979
2151
|
}, {
|
|
1980
2152
|
readonly type: "null";
|
|
1981
2153
|
}];
|
|
@@ -2005,6 +2177,16 @@ declare const $OrderUpdate: {
|
|
|
2005
2177
|
}];
|
|
2006
2178
|
readonly title: "Status";
|
|
2007
2179
|
};
|
|
2180
|
+
readonly shipping_fee_inc_btw: {
|
|
2181
|
+
readonly anyOf: readonly [{
|
|
2182
|
+
readonly type: "number";
|
|
2183
|
+
}, {
|
|
2184
|
+
readonly type: "string";
|
|
2185
|
+
}, {
|
|
2186
|
+
readonly type: "null";
|
|
2187
|
+
}];
|
|
2188
|
+
readonly title: "Shipping Fee Inc Btw";
|
|
2189
|
+
};
|
|
2008
2190
|
readonly shop_id: {
|
|
2009
2191
|
readonly type: "string";
|
|
2010
2192
|
readonly format: "uuid";
|
|
@@ -2012,7 +2194,7 @@ declare const $OrderUpdate: {
|
|
|
2012
2194
|
};
|
|
2013
2195
|
readonly order_info: {
|
|
2014
2196
|
readonly items: {
|
|
2015
|
-
readonly $ref: "#/components/schemas/OrderItem";
|
|
2197
|
+
readonly $ref: "#/components/schemas/OrderItem-Input";
|
|
2016
2198
|
};
|
|
2017
2199
|
readonly type: "array";
|
|
2018
2200
|
readonly title: "Order Info";
|
|
@@ -2065,6 +2247,14 @@ declare const $OrderUpdated: {
|
|
|
2065
2247
|
}];
|
|
2066
2248
|
readonly title: "Status";
|
|
2067
2249
|
};
|
|
2250
|
+
readonly shipping_fee_inc_btw: {
|
|
2251
|
+
readonly anyOf: readonly [{
|
|
2252
|
+
readonly type: "number";
|
|
2253
|
+
}, {
|
|
2254
|
+
readonly type: "null";
|
|
2255
|
+
}];
|
|
2256
|
+
readonly title: "Shipping Fee Inc Btw";
|
|
2257
|
+
};
|
|
2068
2258
|
readonly shop_id: {
|
|
2069
2259
|
readonly type: "string";
|
|
2070
2260
|
readonly format: "uuid";
|
|
@@ -2072,7 +2262,7 @@ declare const $OrderUpdated: {
|
|
|
2072
2262
|
};
|
|
2073
2263
|
readonly order_info: {
|
|
2074
2264
|
readonly items: {
|
|
2075
|
-
readonly $ref: "#/components/schemas/OrderItem";
|
|
2265
|
+
readonly $ref: "#/components/schemas/OrderItem-Output";
|
|
2076
2266
|
};
|
|
2077
2267
|
readonly type: "array";
|
|
2078
2268
|
readonly title: "Order Info";
|
|
@@ -2231,6 +2421,8 @@ declare const $ProductCreate: {
|
|
|
2231
2421
|
readonly price: {
|
|
2232
2422
|
readonly anyOf: readonly [{
|
|
2233
2423
|
readonly type: "number";
|
|
2424
|
+
}, {
|
|
2425
|
+
readonly type: "string";
|
|
2234
2426
|
}, {
|
|
2235
2427
|
readonly type: "null";
|
|
2236
2428
|
}];
|
|
@@ -2239,6 +2431,8 @@ declare const $ProductCreate: {
|
|
|
2239
2431
|
readonly recurring_price_monthly: {
|
|
2240
2432
|
readonly anyOf: readonly [{
|
|
2241
2433
|
readonly type: "number";
|
|
2434
|
+
}, {
|
|
2435
|
+
readonly type: "string";
|
|
2242
2436
|
}, {
|
|
2243
2437
|
readonly type: "null";
|
|
2244
2438
|
}];
|
|
@@ -2247,6 +2441,8 @@ declare const $ProductCreate: {
|
|
|
2247
2441
|
readonly recurring_price_yearly: {
|
|
2248
2442
|
readonly anyOf: readonly [{
|
|
2249
2443
|
readonly type: "number";
|
|
2444
|
+
}, {
|
|
2445
|
+
readonly type: "string";
|
|
2250
2446
|
}, {
|
|
2251
2447
|
readonly type: "null";
|
|
2252
2448
|
}];
|
|
@@ -2283,6 +2479,8 @@ declare const $ProductCreate: {
|
|
|
2283
2479
|
readonly discounted_price: {
|
|
2284
2480
|
readonly anyOf: readonly [{
|
|
2285
2481
|
readonly type: "number";
|
|
2482
|
+
}, {
|
|
2483
|
+
readonly type: "string";
|
|
2286
2484
|
}, {
|
|
2287
2485
|
readonly type: "null";
|
|
2288
2486
|
}];
|
|
@@ -2741,6 +2939,8 @@ declare const $ProductUpdate: {
|
|
|
2741
2939
|
readonly price: {
|
|
2742
2940
|
readonly anyOf: readonly [{
|
|
2743
2941
|
readonly type: "number";
|
|
2942
|
+
}, {
|
|
2943
|
+
readonly type: "string";
|
|
2744
2944
|
}, {
|
|
2745
2945
|
readonly type: "null";
|
|
2746
2946
|
}];
|
|
@@ -2749,6 +2949,8 @@ declare const $ProductUpdate: {
|
|
|
2749
2949
|
readonly recurring_price_monthly: {
|
|
2750
2950
|
readonly anyOf: readonly [{
|
|
2751
2951
|
readonly type: "number";
|
|
2952
|
+
}, {
|
|
2953
|
+
readonly type: "string";
|
|
2752
2954
|
}, {
|
|
2753
2955
|
readonly type: "null";
|
|
2754
2956
|
}];
|
|
@@ -2757,6 +2959,8 @@ declare const $ProductUpdate: {
|
|
|
2757
2959
|
readonly recurring_price_yearly: {
|
|
2758
2960
|
readonly anyOf: readonly [{
|
|
2759
2961
|
readonly type: "number";
|
|
2962
|
+
}, {
|
|
2963
|
+
readonly type: "string";
|
|
2760
2964
|
}, {
|
|
2761
2965
|
readonly type: "null";
|
|
2762
2966
|
}];
|
|
@@ -2793,6 +2997,8 @@ declare const $ProductUpdate: {
|
|
|
2793
2997
|
readonly discounted_price: {
|
|
2794
2998
|
readonly anyOf: readonly [{
|
|
2795
2999
|
readonly type: "number";
|
|
3000
|
+
}, {
|
|
3001
|
+
readonly type: "string";
|
|
2796
3002
|
}, {
|
|
2797
3003
|
readonly type: "null";
|
|
2798
3004
|
}];
|
|
@@ -3351,6 +3557,98 @@ declare const $ProductWithDetailsAndPrices: {
|
|
|
3351
3557
|
readonly required: readonly ["shop_id", "category_id", "max_one", "shippable", "featured", "new_product", "tax_category", "image_1", "image_2", "image_3", "image_4", "image_5", "image_6", "translation", "id"];
|
|
3352
3558
|
readonly title: "ProductWithDetailsAndPrices";
|
|
3353
3559
|
};
|
|
3560
|
+
declare const $ShippingCalculateRequest: {
|
|
3561
|
+
readonly properties: {
|
|
3562
|
+
readonly shop_id: {
|
|
3563
|
+
readonly type: "string";
|
|
3564
|
+
readonly format: "uuid";
|
|
3565
|
+
readonly title: "Shop Id";
|
|
3566
|
+
};
|
|
3567
|
+
readonly order_info: {
|
|
3568
|
+
readonly items: {
|
|
3569
|
+
readonly $ref: "#/components/schemas/OrderItem-Input";
|
|
3570
|
+
};
|
|
3571
|
+
readonly type: "array";
|
|
3572
|
+
readonly title: "Order Info";
|
|
3573
|
+
};
|
|
3574
|
+
};
|
|
3575
|
+
readonly type: "object";
|
|
3576
|
+
readonly required: readonly ["shop_id", "order_info"];
|
|
3577
|
+
readonly title: "ShippingCalculateRequest";
|
|
3578
|
+
};
|
|
3579
|
+
declare const $ShippingCalculation: {
|
|
3580
|
+
readonly properties: {
|
|
3581
|
+
readonly enabled: {
|
|
3582
|
+
readonly type: "boolean";
|
|
3583
|
+
readonly title: "Enabled";
|
|
3584
|
+
};
|
|
3585
|
+
readonly method: {
|
|
3586
|
+
readonly anyOf: readonly [{
|
|
3587
|
+
readonly type: "string";
|
|
3588
|
+
}, {
|
|
3589
|
+
readonly type: "null";
|
|
3590
|
+
}];
|
|
3591
|
+
readonly title: "Method";
|
|
3592
|
+
};
|
|
3593
|
+
readonly fee_inc_btw: {
|
|
3594
|
+
readonly type: "number";
|
|
3595
|
+
readonly title: "Fee Inc Btw";
|
|
3596
|
+
};
|
|
3597
|
+
readonly fee_ex_btw: {
|
|
3598
|
+
readonly type: "number";
|
|
3599
|
+
readonly title: "Fee Ex Btw";
|
|
3600
|
+
};
|
|
3601
|
+
readonly fee_btw: {
|
|
3602
|
+
readonly type: "number";
|
|
3603
|
+
readonly title: "Fee Btw";
|
|
3604
|
+
};
|
|
3605
|
+
readonly free_shipping_applied: {
|
|
3606
|
+
readonly type: "boolean";
|
|
3607
|
+
readonly title: "Free Shipping Applied";
|
|
3608
|
+
};
|
|
3609
|
+
readonly free_shipping_threshold: {
|
|
3610
|
+
readonly anyOf: readonly [{
|
|
3611
|
+
readonly type: "number";
|
|
3612
|
+
}, {
|
|
3613
|
+
readonly type: "null";
|
|
3614
|
+
}];
|
|
3615
|
+
readonly title: "Free Shipping Threshold";
|
|
3616
|
+
};
|
|
3617
|
+
readonly lines: {
|
|
3618
|
+
readonly items: {
|
|
3619
|
+
readonly $ref: "#/components/schemas/ShippingLine";
|
|
3620
|
+
};
|
|
3621
|
+
readonly type: "array";
|
|
3622
|
+
readonly title: "Lines";
|
|
3623
|
+
};
|
|
3624
|
+
};
|
|
3625
|
+
readonly type: "object";
|
|
3626
|
+
readonly required: readonly ["enabled", "fee_inc_btw", "fee_ex_btw", "fee_btw", "free_shipping_applied", "lines"];
|
|
3627
|
+
readonly title: "ShippingCalculation";
|
|
3628
|
+
};
|
|
3629
|
+
declare const $ShippingLine: {
|
|
3630
|
+
readonly properties: {
|
|
3631
|
+
readonly btw_rate: {
|
|
3632
|
+
readonly type: "number";
|
|
3633
|
+
readonly title: "Btw Rate";
|
|
3634
|
+
};
|
|
3635
|
+
readonly amount_ex_btw: {
|
|
3636
|
+
readonly type: "number";
|
|
3637
|
+
readonly title: "Amount Ex Btw";
|
|
3638
|
+
};
|
|
3639
|
+
readonly amount_inc_btw: {
|
|
3640
|
+
readonly type: "number";
|
|
3641
|
+
readonly title: "Amount Inc Btw";
|
|
3642
|
+
};
|
|
3643
|
+
readonly amount_btw: {
|
|
3644
|
+
readonly type: "number";
|
|
3645
|
+
readonly title: "Amount Btw";
|
|
3646
|
+
};
|
|
3647
|
+
};
|
|
3648
|
+
readonly type: "object";
|
|
3649
|
+
readonly required: readonly ["btw_rate", "amount_ex_btw", "amount_inc_btw", "amount_btw"];
|
|
3650
|
+
readonly title: "ShippingLine";
|
|
3651
|
+
};
|
|
3354
3652
|
declare const $ShopCacheStatus: {
|
|
3355
3653
|
readonly properties: {
|
|
3356
3654
|
readonly modified_at: {
|
|
@@ -3447,27 +3745,51 @@ declare const $ShopCreate: {
|
|
|
3447
3745
|
readonly title: "External Url";
|
|
3448
3746
|
};
|
|
3449
3747
|
readonly vat_standard: {
|
|
3450
|
-
readonly
|
|
3748
|
+
readonly anyOf: readonly [{
|
|
3749
|
+
readonly type: "number";
|
|
3750
|
+
}, {
|
|
3751
|
+
readonly type: "string";
|
|
3752
|
+
}];
|
|
3451
3753
|
readonly title: "Vat Standard";
|
|
3452
3754
|
};
|
|
3453
3755
|
readonly vat_lower_1: {
|
|
3454
|
-
readonly
|
|
3756
|
+
readonly anyOf: readonly [{
|
|
3757
|
+
readonly type: "number";
|
|
3758
|
+
}, {
|
|
3759
|
+
readonly type: "string";
|
|
3760
|
+
}];
|
|
3455
3761
|
readonly title: "Vat Lower 1";
|
|
3456
3762
|
};
|
|
3457
3763
|
readonly vat_lower_2: {
|
|
3458
|
-
readonly
|
|
3764
|
+
readonly anyOf: readonly [{
|
|
3765
|
+
readonly type: "number";
|
|
3766
|
+
}, {
|
|
3767
|
+
readonly type: "string";
|
|
3768
|
+
}];
|
|
3459
3769
|
readonly title: "Vat Lower 2";
|
|
3460
3770
|
};
|
|
3461
3771
|
readonly vat_lower_3: {
|
|
3462
|
-
readonly
|
|
3772
|
+
readonly anyOf: readonly [{
|
|
3773
|
+
readonly type: "number";
|
|
3774
|
+
}, {
|
|
3775
|
+
readonly type: "string";
|
|
3776
|
+
}];
|
|
3463
3777
|
readonly title: "Vat Lower 3";
|
|
3464
3778
|
};
|
|
3465
3779
|
readonly vat_special: {
|
|
3466
|
-
readonly
|
|
3780
|
+
readonly anyOf: readonly [{
|
|
3781
|
+
readonly type: "number";
|
|
3782
|
+
}, {
|
|
3783
|
+
readonly type: "string";
|
|
3784
|
+
}];
|
|
3467
3785
|
readonly title: "Vat Special";
|
|
3468
3786
|
};
|
|
3469
3787
|
readonly vat_zero: {
|
|
3470
|
-
readonly
|
|
3788
|
+
readonly anyOf: readonly [{
|
|
3789
|
+
readonly type: "number";
|
|
3790
|
+
}, {
|
|
3791
|
+
readonly type: "string";
|
|
3792
|
+
}];
|
|
3471
3793
|
readonly title: "Vat Zero";
|
|
3472
3794
|
};
|
|
3473
3795
|
};
|
|
@@ -3643,27 +3965,51 @@ declare const $ShopUpdate: {
|
|
|
3643
3965
|
readonly title: "External Url";
|
|
3644
3966
|
};
|
|
3645
3967
|
readonly vat_standard: {
|
|
3646
|
-
readonly
|
|
3968
|
+
readonly anyOf: readonly [{
|
|
3969
|
+
readonly type: "number";
|
|
3970
|
+
}, {
|
|
3971
|
+
readonly type: "string";
|
|
3972
|
+
}];
|
|
3647
3973
|
readonly title: "Vat Standard";
|
|
3648
3974
|
};
|
|
3649
3975
|
readonly vat_lower_1: {
|
|
3650
|
-
readonly
|
|
3976
|
+
readonly anyOf: readonly [{
|
|
3977
|
+
readonly type: "number";
|
|
3978
|
+
}, {
|
|
3979
|
+
readonly type: "string";
|
|
3980
|
+
}];
|
|
3651
3981
|
readonly title: "Vat Lower 1";
|
|
3652
3982
|
};
|
|
3653
3983
|
readonly vat_lower_2: {
|
|
3654
|
-
readonly
|
|
3984
|
+
readonly anyOf: readonly [{
|
|
3985
|
+
readonly type: "number";
|
|
3986
|
+
}, {
|
|
3987
|
+
readonly type: "string";
|
|
3988
|
+
}];
|
|
3655
3989
|
readonly title: "Vat Lower 2";
|
|
3656
3990
|
};
|
|
3657
3991
|
readonly vat_lower_3: {
|
|
3658
|
-
readonly
|
|
3992
|
+
readonly anyOf: readonly [{
|
|
3993
|
+
readonly type: "number";
|
|
3994
|
+
}, {
|
|
3995
|
+
readonly type: "string";
|
|
3996
|
+
}];
|
|
3659
3997
|
readonly title: "Vat Lower 3";
|
|
3660
3998
|
};
|
|
3661
3999
|
readonly vat_special: {
|
|
3662
|
-
readonly
|
|
4000
|
+
readonly anyOf: readonly [{
|
|
4001
|
+
readonly type: "number";
|
|
4002
|
+
}, {
|
|
4003
|
+
readonly type: "string";
|
|
4004
|
+
}];
|
|
3663
4005
|
readonly title: "Vat Special";
|
|
3664
4006
|
};
|
|
3665
4007
|
readonly vat_zero: {
|
|
3666
|
-
readonly
|
|
4008
|
+
readonly anyOf: readonly [{
|
|
4009
|
+
readonly type: "number";
|
|
4010
|
+
}, {
|
|
4011
|
+
readonly type: "string";
|
|
4012
|
+
}];
|
|
3667
4013
|
readonly title: "Vat Zero";
|
|
3668
4014
|
};
|
|
3669
4015
|
readonly modified_at: {
|
|
@@ -4301,6 +4647,22 @@ type ConfigurationLegal = {
|
|
|
4301
4647
|
kvk_number?: string | null;
|
|
4302
4648
|
btw_number?: string | null;
|
|
4303
4649
|
};
|
|
4650
|
+
type ConfigurationShipping_Input = {
|
|
4651
|
+
enabled?: boolean;
|
|
4652
|
+
method?: string;
|
|
4653
|
+
fixed_fee?: number | string;
|
|
4654
|
+
vat_calculation_enabled?: boolean;
|
|
4655
|
+
free_shipping_above_enabled?: boolean;
|
|
4656
|
+
free_shipping_above_amount?: number | string;
|
|
4657
|
+
};
|
|
4658
|
+
type ConfigurationShipping_Output = {
|
|
4659
|
+
enabled?: boolean;
|
|
4660
|
+
method?: string;
|
|
4661
|
+
fixed_fee?: number;
|
|
4662
|
+
vat_calculation_enabled?: boolean;
|
|
4663
|
+
free_shipping_above_enabled?: boolean;
|
|
4664
|
+
free_shipping_above_amount?: number;
|
|
4665
|
+
};
|
|
4304
4666
|
type ConfigurationV1_Input = {
|
|
4305
4667
|
short_shop_name: string;
|
|
4306
4668
|
logo: string;
|
|
@@ -4313,6 +4675,7 @@ type ConfigurationV1_Input = {
|
|
|
4313
4675
|
contact: ConfigurationContact;
|
|
4314
4676
|
toggles: Toggles;
|
|
4315
4677
|
legal?: ConfigurationLegal | null;
|
|
4678
|
+
shipping?: ConfigurationShipping_Input | null;
|
|
4316
4679
|
};
|
|
4317
4680
|
type ConfigurationV1_Output = {
|
|
4318
4681
|
short_shop_name: string;
|
|
@@ -4326,6 +4689,7 @@ type ConfigurationV1_Output = {
|
|
|
4326
4689
|
contact: ConfigurationContact;
|
|
4327
4690
|
toggles: Toggles;
|
|
4328
4691
|
legal?: ConfigurationLegal | null;
|
|
4692
|
+
shipping?: ConfigurationShipping_Output | null;
|
|
4329
4693
|
};
|
|
4330
4694
|
type DefaultPrice = {
|
|
4331
4695
|
id?: string | null;
|
|
@@ -4414,19 +4778,21 @@ type Msg = {
|
|
|
4414
4778
|
};
|
|
4415
4779
|
type OrderBase = {
|
|
4416
4780
|
account_id?: string | null;
|
|
4417
|
-
total: number | null;
|
|
4781
|
+
total: number | string | null;
|
|
4418
4782
|
notes: string | null;
|
|
4419
4783
|
customer_order_id: number | null;
|
|
4420
4784
|
status: string | null;
|
|
4785
|
+
shipping_fee_inc_btw?: number | string | null;
|
|
4421
4786
|
};
|
|
4422
4787
|
type OrderCreate = {
|
|
4423
4788
|
account_id?: string | null;
|
|
4424
|
-
total: number | null;
|
|
4789
|
+
total: number | string | null;
|
|
4425
4790
|
notes: string | null;
|
|
4426
4791
|
customer_order_id: number | null;
|
|
4427
4792
|
status: string | null;
|
|
4793
|
+
shipping_fee_inc_btw?: number | string | null;
|
|
4428
4794
|
shop_id: string;
|
|
4429
|
-
order_info: Array<
|
|
4795
|
+
order_info: Array<OrderItem_Input>;
|
|
4430
4796
|
completed_at?: string | null;
|
|
4431
4797
|
account_name?: string | null;
|
|
4432
4798
|
};
|
|
@@ -4436,12 +4802,20 @@ type OrderCreated = {
|
|
|
4436
4802
|
notes: string | null;
|
|
4437
4803
|
customer_order_id: number | null;
|
|
4438
4804
|
status: string | null;
|
|
4805
|
+
shipping_fee_inc_btw?: number | null;
|
|
4439
4806
|
id: string;
|
|
4440
4807
|
created_at: string;
|
|
4441
4808
|
completed_at?: string | null;
|
|
4442
4809
|
account_name: string | null;
|
|
4443
4810
|
};
|
|
4444
|
-
type
|
|
4811
|
+
type OrderItem_Input = {
|
|
4812
|
+
description: string | null;
|
|
4813
|
+
price: number | string;
|
|
4814
|
+
product_id: string;
|
|
4815
|
+
product_name: string;
|
|
4816
|
+
quantity: number;
|
|
4817
|
+
};
|
|
4818
|
+
type OrderItem_Output = {
|
|
4445
4819
|
description: string | null;
|
|
4446
4820
|
price: number;
|
|
4447
4821
|
product_id: string;
|
|
@@ -4454,9 +4828,10 @@ type OrderSchema = {
|
|
|
4454
4828
|
notes: string | null;
|
|
4455
4829
|
customer_order_id: number | null;
|
|
4456
4830
|
status: string | null;
|
|
4831
|
+
shipping_fee_inc_btw?: number | null;
|
|
4457
4832
|
id: string;
|
|
4458
4833
|
shop_id: string;
|
|
4459
|
-
order_info: Array<
|
|
4834
|
+
order_info: Array<OrderItem_Output>;
|
|
4460
4835
|
created_at: string;
|
|
4461
4836
|
completed_at?: string | null;
|
|
4462
4837
|
completed_by: string | null;
|
|
@@ -4466,12 +4841,13 @@ type OrderSchema = {
|
|
|
4466
4841
|
};
|
|
4467
4842
|
type OrderUpdate = {
|
|
4468
4843
|
account_id?: string | null;
|
|
4469
|
-
total: number | null;
|
|
4844
|
+
total: number | string | null;
|
|
4470
4845
|
notes: string | null;
|
|
4471
4846
|
customer_order_id: number | null;
|
|
4472
4847
|
status: string | null;
|
|
4848
|
+
shipping_fee_inc_btw?: number | string | null;
|
|
4473
4849
|
shop_id: string;
|
|
4474
|
-
order_info: Array<
|
|
4850
|
+
order_info: Array<OrderItem_Input>;
|
|
4475
4851
|
};
|
|
4476
4852
|
type OrderUpdated = {
|
|
4477
4853
|
account_id?: string | null;
|
|
@@ -4479,8 +4855,9 @@ type OrderUpdated = {
|
|
|
4479
4855
|
notes: string | null;
|
|
4480
4856
|
customer_order_id: number | null;
|
|
4481
4857
|
status: string | null;
|
|
4858
|
+
shipping_fee_inc_btw?: number | null;
|
|
4482
4859
|
shop_id: string;
|
|
4483
|
-
order_info: Array<
|
|
4860
|
+
order_info: Array<OrderItem_Output>;
|
|
4484
4861
|
id: string;
|
|
4485
4862
|
};
|
|
4486
4863
|
/**
|
|
@@ -4529,16 +4906,16 @@ type ProductAttributeValueSchema = {
|
|
|
4529
4906
|
type ProductCreate = {
|
|
4530
4907
|
shop_id: string;
|
|
4531
4908
|
category_id: string;
|
|
4532
|
-
price?: number | null;
|
|
4533
|
-
recurring_price_monthly?: number | null;
|
|
4534
|
-
recurring_price_yearly?: number | null;
|
|
4909
|
+
price?: number | string | null;
|
|
4910
|
+
recurring_price_monthly?: number | string | null;
|
|
4911
|
+
recurring_price_yearly?: number | string | null;
|
|
4535
4912
|
max_one: boolean;
|
|
4536
4913
|
shippable: boolean;
|
|
4537
4914
|
digital?: string | null;
|
|
4538
4915
|
featured: boolean;
|
|
4539
4916
|
new_product: boolean;
|
|
4540
4917
|
tax_category: string;
|
|
4541
|
-
discounted_price?: number | null;
|
|
4918
|
+
discounted_price?: number | string | null;
|
|
4542
4919
|
discounted_from?: string | null;
|
|
4543
4920
|
discounted_to?: string | null;
|
|
4544
4921
|
order_number?: number | null;
|
|
@@ -4625,16 +5002,16 @@ type ProductTranslationBase = {
|
|
|
4625
5002
|
type ProductUpdate = {
|
|
4626
5003
|
shop_id: string;
|
|
4627
5004
|
category_id: string;
|
|
4628
|
-
price?: number | null;
|
|
4629
|
-
recurring_price_monthly?: number | null;
|
|
4630
|
-
recurring_price_yearly?: number | null;
|
|
5005
|
+
price?: number | string | null;
|
|
5006
|
+
recurring_price_monthly?: number | string | null;
|
|
5007
|
+
recurring_price_yearly?: number | string | null;
|
|
4631
5008
|
max_one: boolean;
|
|
4632
5009
|
shippable: boolean;
|
|
4633
5010
|
digital?: string | null;
|
|
4634
5011
|
featured: boolean;
|
|
4635
5012
|
new_product: boolean;
|
|
4636
5013
|
tax_category: string;
|
|
4637
|
-
discounted_price?: number | null;
|
|
5014
|
+
discounted_price?: number | string | null;
|
|
4638
5015
|
discounted_from?: string | null;
|
|
4639
5016
|
discounted_to?: string | null;
|
|
4640
5017
|
order_number?: number | null;
|
|
@@ -4753,6 +5130,26 @@ type ProductWithDetailsAndPrices = {
|
|
|
4753
5130
|
[key: string]: unknown;
|
|
4754
5131
|
}>;
|
|
4755
5132
|
};
|
|
5133
|
+
type ShippingCalculateRequest = {
|
|
5134
|
+
shop_id: string;
|
|
5135
|
+
order_info: Array<OrderItem_Input>;
|
|
5136
|
+
};
|
|
5137
|
+
type ShippingCalculation = {
|
|
5138
|
+
enabled: boolean;
|
|
5139
|
+
method?: string | null;
|
|
5140
|
+
fee_inc_btw: number;
|
|
5141
|
+
fee_ex_btw: number;
|
|
5142
|
+
fee_btw: number;
|
|
5143
|
+
free_shipping_applied: boolean;
|
|
5144
|
+
free_shipping_threshold?: number | null;
|
|
5145
|
+
lines: Array<ShippingLine>;
|
|
5146
|
+
};
|
|
5147
|
+
type ShippingLine = {
|
|
5148
|
+
btw_rate: number;
|
|
5149
|
+
amount_ex_btw: number;
|
|
5150
|
+
amount_inc_btw: number;
|
|
5151
|
+
amount_btw: number;
|
|
5152
|
+
};
|
|
4756
5153
|
type ShopCacheStatus = {
|
|
4757
5154
|
modified_at: string | null;
|
|
4758
5155
|
};
|
|
@@ -4775,12 +5172,12 @@ type ShopCreate = {
|
|
|
4775
5172
|
description: string;
|
|
4776
5173
|
internal_url?: string | null;
|
|
4777
5174
|
external_url?: string | null;
|
|
4778
|
-
vat_standard: number;
|
|
4779
|
-
vat_lower_1: number;
|
|
4780
|
-
vat_lower_2: number;
|
|
4781
|
-
vat_lower_3: number;
|
|
4782
|
-
vat_special: number;
|
|
4783
|
-
vat_zero: number;
|
|
5175
|
+
vat_standard: number | string;
|
|
5176
|
+
vat_lower_1: number | string;
|
|
5177
|
+
vat_lower_2: number | string;
|
|
5178
|
+
vat_lower_3: number | string;
|
|
5179
|
+
vat_special: number | string;
|
|
5180
|
+
vat_zero: number | string;
|
|
4784
5181
|
};
|
|
4785
5182
|
type ShopIp = {
|
|
4786
5183
|
ip: string;
|
|
@@ -4818,12 +5215,12 @@ type ShopUpdate = {
|
|
|
4818
5215
|
description: string;
|
|
4819
5216
|
internal_url?: string | null;
|
|
4820
5217
|
external_url?: string | null;
|
|
4821
|
-
vat_standard: number;
|
|
4822
|
-
vat_lower_1: number;
|
|
4823
|
-
vat_lower_2: number;
|
|
4824
|
-
vat_lower_3: number;
|
|
4825
|
-
vat_special: number;
|
|
4826
|
-
vat_zero: number;
|
|
5218
|
+
vat_standard: number | string;
|
|
5219
|
+
vat_lower_1: number | string;
|
|
5220
|
+
vat_lower_2: number | string;
|
|
5221
|
+
vat_lower_3: number | string;
|
|
5222
|
+
vat_special: number | string;
|
|
5223
|
+
vat_zero: number | string;
|
|
4827
5224
|
modified_at: string | null;
|
|
4828
5225
|
allowed_ips?: Array<string> | null;
|
|
4829
5226
|
};
|
|
@@ -5201,6 +5598,10 @@ type GetOrderProductsInStockOrdersStockOrderIdGetData = {
|
|
|
5201
5598
|
orderId: string;
|
|
5202
5599
|
};
|
|
5203
5600
|
type GetOrderProductsInStockOrdersStockOrderIdGetResponse = boolean;
|
|
5601
|
+
type CalculateShippingCalculatePostData = {
|
|
5602
|
+
requestBody: ShippingCalculateRequest;
|
|
5603
|
+
};
|
|
5604
|
+
type CalculateShippingCalculatePostResponse = ShippingCalculation;
|
|
5204
5605
|
type GetMultiShopsShopIdCategoriesGetData = {
|
|
5205
5606
|
/**
|
|
5206
5607
|
* This filter can accept search query's like `key:value` and will split on the `:`. If it detects more than one `:`, or does not find a `:` it will search for the string in all columns.
|
|
@@ -6017,7 +6418,7 @@ type $OpenApiTs = {
|
|
|
6017
6418
|
*/
|
|
6018
6419
|
200: Array<AdminAccountSchema>;
|
|
6019
6420
|
/**
|
|
6020
|
-
* Not a
|
|
6421
|
+
* Not a member of the Admins group
|
|
6021
6422
|
*/
|
|
6022
6423
|
403: unknown;
|
|
6023
6424
|
/**
|
|
@@ -6036,7 +6437,7 @@ type $OpenApiTs = {
|
|
|
6036
6437
|
*/
|
|
6037
6438
|
200: AdminAccountSchema;
|
|
6038
6439
|
/**
|
|
6039
|
-
* Not a
|
|
6440
|
+
* Not a member of the Admins group
|
|
6040
6441
|
*/
|
|
6041
6442
|
403: unknown;
|
|
6042
6443
|
/**
|
|
@@ -6065,7 +6466,7 @@ type $OpenApiTs = {
|
|
|
6065
6466
|
*/
|
|
6066
6467
|
400: unknown;
|
|
6067
6468
|
/**
|
|
6068
|
-
* Not a
|
|
6469
|
+
* Not a member of the Admins group
|
|
6069
6470
|
*/
|
|
6070
6471
|
403: unknown;
|
|
6071
6472
|
/**
|
|
@@ -6096,7 +6497,7 @@ type $OpenApiTs = {
|
|
|
6096
6497
|
*/
|
|
6097
6498
|
400: unknown;
|
|
6098
6499
|
/**
|
|
6099
|
-
* Not a
|
|
6500
|
+
* Not a member of the Admins group
|
|
6100
6501
|
*/
|
|
6101
6502
|
403: unknown;
|
|
6102
6503
|
/**
|
|
@@ -6123,7 +6524,7 @@ type $OpenApiTs = {
|
|
|
6123
6524
|
*/
|
|
6124
6525
|
200: AdminAccountSchema;
|
|
6125
6526
|
/**
|
|
6126
|
-
* Not a
|
|
6527
|
+
* Not a member of the Admins group
|
|
6127
6528
|
*/
|
|
6128
6529
|
403: unknown;
|
|
6129
6530
|
/**
|
|
@@ -6526,6 +6927,21 @@ type $OpenApiTs = {
|
|
|
6526
6927
|
};
|
|
6527
6928
|
};
|
|
6528
6929
|
};
|
|
6930
|
+
'/shipping/calculate': {
|
|
6931
|
+
post: {
|
|
6932
|
+
req: CalculateShippingCalculatePostData;
|
|
6933
|
+
res: {
|
|
6934
|
+
/**
|
|
6935
|
+
* Successful Response
|
|
6936
|
+
*/
|
|
6937
|
+
200: ShippingCalculation;
|
|
6938
|
+
/**
|
|
6939
|
+
* Validation Error
|
|
6940
|
+
*/
|
|
6941
|
+
422: HTTPValidationError;
|
|
6942
|
+
};
|
|
6943
|
+
};
|
|
6944
|
+
};
|
|
6529
6945
|
'/shops/{shop_id}/categories/': {
|
|
6530
6946
|
get: {
|
|
6531
6947
|
req: GetMultiShopsShopIdCategoriesGetData;
|
|
@@ -8097,6 +8513,14 @@ declare const deleteOrdersOrderIdDelete: (data: DeleteOrdersOrderIdDeleteData) =
|
|
|
8097
8513
|
* @throws ApiError
|
|
8098
8514
|
*/
|
|
8099
8515
|
declare const getOrderProductsInStockOrdersStockOrderIdGet: (data: GetOrderProductsInStockOrdersStockOrderIdGetData) => CancelablePromise<GetOrderProductsInStockOrdersStockOrderIdGetResponse>;
|
|
8516
|
+
/**
|
|
8517
|
+
* Calculate
|
|
8518
|
+
* @param data The data for the request.
|
|
8519
|
+
* @param data.requestBody
|
|
8520
|
+
* @returns ShippingCalculation Successful Response
|
|
8521
|
+
* @throws ApiError
|
|
8522
|
+
*/
|
|
8523
|
+
declare const calculateShippingCalculatePost: (data: CalculateShippingCalculatePostData) => CancelablePromise<CalculateShippingCalculatePostResponse>;
|
|
8100
8524
|
/**
|
|
8101
8525
|
* Get Multi
|
|
8102
8526
|
* @param data The data for the request.
|
|
@@ -8898,4 +9322,4 @@ declare const updateFaqFaqIdPut: (data: UpdateFaqFaqIdPutData) => CancelableProm
|
|
|
8898
9322
|
*/
|
|
8899
9323
|
declare const deleteFaqFaqIdDelete: (data: DeleteFaqFaqIdDeleteData) => CancelablePromise<DeleteFaqFaqIdDeleteResponse>;
|
|
8900
9324
|
|
|
8901
|
-
export { $AccountCreate, $AccountSchema, $AccountUpdate, $AdminAccountSchema, $AttributeCreate, $AttributeOptionCreate, $AttributeOptionSchema, $AttributeOptionUpdate, $AttributeSchema, $AttributeTranslationBase, $AttributeUpdate, $AttributeWithOptionsSchema, $AvailableAttributeSchema, $AvailableOptionSchema, $Body_login_access_token_login_access_token_post, $Body_reset_password_reset_password__post, $Body_update_user_me_users_me_put, $Cart, $CategoryCreate, $CategoryImageDelete, $CategorySchema, $CategoryTranslationBase, $CategoryUpdate, $ConfigurationContact, $ConfigurationLanguageFieldMenuItems, $ConfigurationLanguageFieldStaticTexts, $ConfigurationLanguageFields, $ConfigurationLanguages_Input, $ConfigurationLanguages_Output, $ConfigurationLegal, $ConfigurationV1_Input, $ConfigurationV1_Output, $DefaultPrice, $EarlyAccessCreate, $FaqCreate, $FaqCreated, $FaqSchema, $FaqUpdate, $FaqUpdated, $HTTPValidationError, $Lang, $LicenseCreate, $LicenseSchema, $LicenseUpdate, $LinkStripeBody, $Msg, type $OpenApiTs, $OrderBase, $OrderCreate, $OrderCreated, $OrderItem, $OrderSchema, $OrderUpdate, $OrderUpdated, $ProductAttributeItem, $ProductAttributeOptionSelectionAdd, $ProductAttributeOptionSelectionReplace, $ProductAttributeValueBase, $ProductAttributeValueSchema, $ProductCreate, $ProductResponse, $ProductToTagCreate, $ProductToTagSchema, $ProductToTagUpdate, $ProductTranslationBase, $ProductUpdate, $ProductWithAttributes, $ProductWithDefaultPrice, $ProductWithDetailsAndPrices, $ShopCacheStatus, $ShopConfig, $ShopConfigUpdate_Input, $ShopConfigUpdate_Output, $ShopCreate, $ShopIp, $ShopLastCompletedOrder, $ShopLastPendingOrder, $ShopSchema, $ShopType, $ShopTypeName, $ShopUpdate, $ShopWithPrices, $SyncStripeResponse, $TagCreate, $TagSchema, $TagTranslationBase, $TagUpdate, $Toggles, $User, $UserCreate, $UserUpdate, $ValidationError, type AccountCreate, type AccountSchema, type AccountUpdate, type AddNewIpShopsAllowedIpsIdPostData, type AddNewIpShopsAllowedIpsIdPostResponse, type AdminAccountSchema, ApiError, type AttributeCreate, type AttributeOptionCreate, type AttributeOptionSchema, type AttributeOptionUpdate, type AttributeSchema, type AttributeTranslationBase, type AttributeUpdate, type AttributeWithOptionsSchema, type AvailableAttributeSchema, type AvailableOptionSchema, type Body_login_access_token_login_access_token_post, type Body_reset_password_reset_password__post, type Body_update_user_me_users_me_put, CancelError, type CancelSubscriptionShopsShopIdStripeSubscriptionSubscriptionIdDeleteData, type CancelSubscriptionShopsShopIdStripeSubscriptionSubscriptionIdDeleteResponse, CancelablePromise, type Cart, type CategoryCreate, type CategoryImageDelete, type CategorySchema, type CategoryTranslationBase, type CategoryUpdate, type CheckOrdersCheckIdsGetData, type CheckOrdersCheckIdsGetResponse, type ConfigurationContact, type ConfigurationLanguageFieldMenuItems, type ConfigurationLanguageFieldStaticTexts, type ConfigurationLanguageFields, type ConfigurationLanguages_Input, type ConfigurationLanguages_Output, type ConfigurationLegal, type ConfigurationV1_Input, type ConfigurationV1_Output, type CreateEarlyAccessPostData, type CreateEarlyAccessPostResponse, type CreateFaqPostData, type CreateFaqPostResponse, type CreateLicensesPostData, type CreateLicensesPostResponse, type CreateOptionShopsShopIdAttributesAttributeIdOptionsPostData, type CreateOptionShopsShopIdAttributesAttributeIdOptionsPostResponse, type CreateOptionV2ShopsShopIdAttributeOptionsPostData, type CreateOptionV2ShopsShopIdAttributeOptionsPostResponse, type CreateOrdersPostData, type CreateOrdersPostResponse, type CreatePaymentIntentShopsShopIdStripePostData, type CreatePaymentIntentShopsShopIdStripePostResponse, type CreateShopsPostData, type CreateShopsPostResponse, type CreateShopsShopIdAccountsPostData, type CreateShopsShopIdAccountsPostResponse, type CreateShopsShopIdAttributesPostData, type CreateShopsShopIdAttributesPostResponse, type CreateShopsShopIdCategoriesPostData, type CreateShopsShopIdCategoriesPostResponse, type CreateShopsShopIdProductsPostData, type CreateShopsShopIdProductsPostResponse, type CreateShopsShopIdProductsToTagsPostData, type CreateShopsShopIdProductsToTagsPostResponse, type CreateShopsShopIdTagsPostData, type CreateShopsShopIdTagsPostResponse, type CreateSubscriptionIntentShopsShopIdStripeSubscriptionPostData, type CreateSubscriptionIntentShopsShopIdStripeSubscriptionPostResponse, type CreateUsersPostData, type CreateUsersPostResponse, type DefaultPrice, type DeleteFaqFaqIdDeleteData, type DeleteFaqFaqIdDeleteResponse, type DeleteImageShopsShopIdCategoriesImagesDeleteIdPutData, type DeleteImageShopsShopIdCategoriesImagesDeleteIdPutResponse, type DeleteLicensesIdDeleteData, type DeleteLicensesIdDeleteResponse, type DeleteOptionShopsShopIdAttributesAttributeIdOptionsOptionIdDeleteData, type DeleteOptionShopsShopIdAttributesAttributeIdOptionsOptionIdDeleteResponse, type DeleteOptionV2ShopsShopIdAttributeOptionsOptionIdDeleteData, type DeleteOptionV2ShopsShopIdAttributeOptionsOptionIdDeleteResponse, type DeleteOrdersOrderIdDeleteData, type DeleteOrdersOrderIdDeleteResponse, type DeleteShopsShopIdAccountsAccountIdDeleteData, type DeleteShopsShopIdAccountsAccountIdDeleteResponse, type DeleteShopsShopIdAttributesAttributeIdDeleteData, type DeleteShopsShopIdAttributesAttributeIdDeleteResponse, type DeleteShopsShopIdCategoriesCategoryIdDeleteData, type DeleteShopsShopIdCategoriesCategoryIdDeleteResponse, type DeleteShopsShopIdDeleteData, type DeleteShopsShopIdDeleteResponse, type DeleteShopsShopIdProductsProductIdDeleteData, type DeleteShopsShopIdProductsProductIdDeleteResponse, type DeleteShopsShopIdProductsToTagsProductToTagIdDeleteData, type DeleteShopsShopIdProductsToTagsProductToTagIdDeleteResponse, type DeleteShopsShopIdTagsTagIdDeleteData, type DeleteShopsShopIdTagsTagIdDeleteResponse, type DeleteTemporaryImagesImagesDeleteTempPostResponse, type EarlyAccessCreate, type EditLicensesIdPutData, type EditLicensesIdPutResponse, type FaqCreate, type FaqCreated, type FaqSchema, type FaqUpdate, type FaqUpdated, type FormInfoRequestFormPostData, type FormInfoRequestFormPostResponse, type FormTestFormsPostData, type FormTestFormsPostResponse, type GetAccountAdminAccountsIdGetData, type GetAccountAdminAccountsIdGetResponse, type GetAllowedIpsShopsAllowedIpsIdGetData, type GetAllowedIpsShopsAllowedIpsIdGetResponse, type GetAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGetData, type GetAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGetResponse, type GetByIdFaqIdGetData, type GetByIdFaqIdGetResponse, type GetByIdLicensesIdGetData, type GetByIdLicensesIdGetResponse, type GetByIdOrdersIdGetData, type GetByIdOrdersIdGetResponse, type GetByIdShopsIdGetData, type GetByIdShopsIdGetResponse, type GetByIdShopsShopIdAccountsIdGetData, type GetByIdShopsShopIdAccountsIdGetResponse, type GetByIdShopsShopIdAttributesIdAttributeIdGetData, type GetByIdShopsShopIdAttributesIdAttributeIdGetResponse, type GetByIdShopsShopIdCategoriesCategoryIdGetData, type GetByIdShopsShopIdCategoriesCategoryIdGetResponse, type GetByIdShopsShopIdCategoriesImagesIdGetData, type GetByIdShopsShopIdCategoriesImagesIdGetResponse, type GetByIdShopsShopIdProductsProductIdGetData, type GetByIdShopsShopIdProductsProductIdGetResponse, type GetByIdShopsShopIdProductsToTagsIdGetData, type GetByIdShopsShopIdProductsToTagsIdGetResponse, type GetByIdShopsShopIdTagsTagIdGetData, type GetByIdShopsShopIdTagsTagIdGetResponse, type GetByIdUsersUserIdGetData, type GetByIdUsersUserIdGetResponse, type GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetData, type GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetResponse, type GetByIdWithOptionsDirectShopsShopIdAttributesAttributeIdWithOptionsGetData, type GetByIdWithOptionsDirectShopsShopIdAttributesAttributeIdWithOptionsGetResponse, type GetByIdWithOptionsShopsShopIdAttributesIdAttributeIdWithOptionsGetData, type GetByIdWithOptionsShopsShopIdAttributesIdAttributeIdWithOptionsGetResponse, type GetByImproviserUserIdLicensesImproviserImproviserUserIdGetData, type GetByImproviserUserIdLicensesImproviserImproviserUserIdGetResponse, type GetByNameShopsShopIdAttributesNameNameGetData, type GetByNameShopsShopIdAttributesNameNameGetResponse, type GetByNameShopsShopIdCategoriesNameNameGetData, type GetByNameShopsShopIdCategoriesNameNameGetResponse, type GetByNameShopsShopIdTagsNameNameGetData, type GetByNameShopsShopIdTagsNameNameGetResponse, type GetCacheStatusShopsCacheStatusIdGetData, type GetCacheStatusShopsCacheStatusIdGetResponse, type GetCartProductsShopsShopIdPricesPostData, type GetCartProductsShopsShopIdPricesPostResponse, type GetCategoryProductsShopsShopIdCategoriesCategoryIdProductsGetData, type GetCategoryProductsShopsShopIdCategoriesCategoryIdProductsGetResponse, type GetConfigShopsConfigIdGetData, type GetConfigShopsConfigIdGetResponse, type GetFormsFormsGetResponse, type GetHealthHealthGetResponse, type GetLastCompletedOrderShopsLastCompletedOrderIdGetData, type GetLastCompletedOrderShopsLastCompletedOrderIdGetResponse, type GetLastPendingOrderShopsLastPendingOrderIdGetData, type GetLastPendingOrderShopsLastPendingOrderIdGetResponse, type GetMultiFaqGetData, type GetMultiFaqGetResponse, type GetMultiLicensesGetData, type GetMultiLicensesGetResponse, type GetMultiOrdersGetData, type GetMultiOrdersGetResponse, type GetMultiShopsGetData, type GetMultiShopsGetResponse, type GetMultiShopsShopIdAccountsGetData, type GetMultiShopsShopIdAccountsGetResponse, type GetMultiShopsShopIdAttributesGetData, type GetMultiShopsShopIdAttributesGetResponse, type GetMultiShopsShopIdCategoriesGetData, type GetMultiShopsShopIdCategoriesGetResponse, type GetMultiShopsShopIdCategoriesImagesGetData, type GetMultiShopsShopIdCategoriesImagesGetResponse, type GetMultiShopsShopIdProductsGetData, type GetMultiShopsShopIdProductsGetResponse, type GetMultiShopsShopIdProductsToTagsGetData, type GetMultiShopsShopIdProductsToTagsGetResponse, type GetMultiShopsShopIdTagsGetData, type GetMultiShopsShopIdTagsGetResponse, type GetMultiUsersGetData, type GetMultiUsersGetResponse, type GetMultiWithAttributesShopsShopIdProductsWithAttributesGetData, type GetMultiWithAttributesShopsShopIdProductsWithAttributesGetResponse, type GetOptionShopsShopIdAttributesAttributeIdOptionsOptionIdGetData, type GetOptionShopsShopIdAttributesAttributeIdOptionsOptionIdGetResponse, type GetOptionV2ShopsShopIdAttributeOptionsOptionIdGetData, type GetOptionV2ShopsShopIdAttributeOptionsOptionIdGetResponse, type GetOrderProductsInStockOrdersStockOrderIdGetData, type GetOrderProductsInStockOrdersStockOrderIdGetResponse, type GetProductsShopsShopIdPricesGetData, type GetProductsShopsShopIdPricesGetResponse, type GetRelationIdShopsShopIdProductsToTagsGetRelationIdGetData, type GetRelationIdShopsShopIdProductsToTagsGetRelationIdGetResponse, type GetSignedDownloadLinkDownloadsFileNameGetData, type GetSignedDownloadLinkDownloadsFileNameGetResponse, type GetSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGetData, type GetSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGetResponse, type GetSignedUrlImagesSignedUrlImageNameGetData, type GetSignedUrlImagesSignedUrlImageNameGetResponse, type GetStripeCustomerAdminAccountsIdStripeCustomerGetData, type GetStripeCustomerAdminAccountsIdStripeCustomerGetResponse, type GetUserMeUsersMeGetResponse, type GetWithOptionsShopsShopIdAttributesWithOptionsGetData, type GetWithOptionsShopsShopIdAttributesWithOptionsGetResponse, type HTTPValidationError, type Lang, type LicenseCreate, type LicenseSchema, type LicenseUpdate, type LinkStripeAdminAccountsIdLinkStripePostData, type LinkStripeAdminAccountsIdLinkStripePostResponse, type LinkStripeBody, type ListAccountsAdminAccountsGetData, type ListAccountsAdminAccountsGetResponse, type ListOptionsForShopShopsShopIdAttributeOptionsGetData, type ListOptionsForShopShopsShopIdAttributeOptionsGetResponse, type ListOptionsShopsShopIdAttributesAttributeIdOptionsGetData, type ListOptionsShopsShopIdAttributesAttributeIdOptionsGetResponse, type LoginAccessTokenLoginAccessTokenPostData, type LoginAccessTokenLoginAccessTokenPostResponse, type MoveImagesImagesMovePostResponse, type Msg, type NewFormFormsFormKeyPostData, type NewFormFormsFormKeyPostResponse, OpenAPI, type OpenAPIConfig, type OrderBase, type OrderCreate, type OrderCreated, type OrderItem, type OrderSchema, type OrderUpdate, type OrderUpdated, type PatchOrdersOrderIdPatchData, type PatchOrdersOrderIdPatchResponse, type ProductAttributeItem, type ProductAttributeOptionSelectionAdd, type ProductAttributeOptionSelectionReplace, type ProductAttributeValueBase, type ProductAttributeValueSchema, type ProductAttributeValuesCreateDeprecatedData, type ProductAttributeValuesCreateDeprecatedResponse, type ProductAttributeValuesCreateForProductData, type ProductAttributeValuesCreateForProductResponse, type ProductAttributeValuesDeleteData, type ProductAttributeValuesDeleteResponse, type ProductAttributeValuesGetData, type ProductAttributeValuesGetResponse, type ProductAttributeValuesListData, type ProductAttributeValuesListResponse, type ProductAttributeValuesReplaceForProductData, type ProductAttributeValuesReplaceForProductResponse, type ProductCreate, type ProductResponse, type ProductToTagCreate, type ProductToTagSchema, type ProductToTagUpdate, type ProductTranslationBase, type ProductUpdate, type ProductWithAttributes, type ProductWithDefaultPrice, type ProductWithDetailsAndPrices, type PutShopsShopIdCategoriesImagesIdPutData, type PutShopsShopIdCategoriesImagesIdPutResponse, type RecoverPasswordPasswordRecoveryEmailPostData, type RecoverPasswordPasswordRecoveryEmailPostResponse, type RemoveIpShopsAllowedIpsIdRemovePostData, type RemoveIpShopsAllowedIpsIdRemovePostResponse, type ResetPasswordResetPasswordPostData, type ResetPasswordResetPasswordPostResponse, type SendDownloadLinkViaEmailDownloadsSendPostData, type SendDownloadLinkViaEmailDownloadsSendPostResponse, type ShopCacheStatus, type ShopConfig, type ShopConfigUpdate_Input, type ShopConfigUpdate_Output, type ShopCreate, type ShopIp, type ShopLastCompletedOrder, type ShopLastPendingOrder, type ShopSchema, type ShopType, type ShopTypeName, type ShopUpdate, type ShopWithPrices, type ShowAllCompleteOrdersPerShopOrdersShopShopIdCompleteGetData, type ShowAllCompleteOrdersPerShopOrdersShopShopIdCompleteGetResponse, type ShowAllPendingOrdersPerShopOrdersShopShopIdPendingGetData, type ShowAllPendingOrdersPerShopOrdersShopShopIdPendingGetResponse, type SwapShopsShopIdCategoriesCategoryIdSwapPutData, type SwapShopsShopIdCategoriesCategoryIdSwapPutResponse, type SwapShopsShopIdProductsProductIdSwapPutData, type SwapShopsShopIdProductsProductIdSwapPutResponse, type SyncStripeAdminAccountsIdSyncStripePostData, type SyncStripeAdminAccountsIdSyncStripePostResponse, type SyncStripeResponse, type TagCreate, type TagSchema, type TagTranslationBase, type TagUpdate, type TestTokenLoginTestTokenPostResponse, type Toggles, type TriggerErrorSentryGetData, type TriggerErrorSentryGetResponse, type UpdateConfigShopsConfigIdPutData, type UpdateConfigShopsConfigIdPutResponse, type UpdateFaqFaqIdPutData, type UpdateFaqFaqIdPutResponse, type UpdateOptionV2ShopsShopIdAttributeOptionsOptionIdPutData, type UpdateOptionV2ShopsShopIdAttributeOptionsOptionIdPutResponse, type UpdateOrdersOrderIdPutData, type UpdateOrdersOrderIdPutResponse, type UpdateShopsShopIdAccountsAccountIdPutData, type UpdateShopsShopIdAccountsAccountIdPutResponse, type UpdateShopsShopIdAttributesAttributeIdPutData, type UpdateShopsShopIdAttributesAttributeIdPutResponse, type UpdateShopsShopIdCategoriesCategoryIdPutData, type UpdateShopsShopIdCategoriesCategoryIdPutResponse, type UpdateShopsShopIdProductsProductIdPutData, type UpdateShopsShopIdProductsProductIdPutResponse, type UpdateShopsShopIdProductsToTagsProductToTagIdPutData, type UpdateShopsShopIdProductsToTagsProductToTagIdPutResponse, type UpdateShopsShopIdPutData, type UpdateShopsShopIdPutResponse, type UpdateShopsShopIdTagsTagIdPutData, type UpdateShopsShopIdTagsTagIdPutResponse, type UpdateUserMeUsersMePutData, type UpdateUserMeUsersMePutResponse, type UpdateUsersUserIdPutData, type UpdateUsersUserIdPutResponse, type User, type UserCreate, type UserUpdate, type ValidationError, addNewIpShopsAllowedIpsIdPost, cancelSubscriptionShopsShopIdStripeSubscriptionSubscriptionIdDelete, checkOrdersCheckIdsGet, createEarlyAccessPost, createFaqPost, createLicensesPost, createOptionShopsShopIdAttributesAttributeIdOptionsPost, createOptionV2ShopsShopIdAttributeOptionsPost, createOrdersPost, createPaymentIntentShopsShopIdStripePost, createShopsPost, createShopsShopIdAccountsPost, createShopsShopIdAttributesPost, createShopsShopIdCategoriesPost, createShopsShopIdProductsPost, createShopsShopIdProductsToTagsPost, createShopsShopIdTagsPost, createSubscriptionIntentShopsShopIdStripeSubscriptionPost, createUsersPost, deleteFaqFaqIdDelete, deleteImageShopsShopIdCategoriesImagesDeleteIdPut, deleteLicensesIdDelete, deleteOptionShopsShopIdAttributesAttributeIdOptionsOptionIdDelete, deleteOptionV2ShopsShopIdAttributeOptionsOptionIdDelete, deleteOrdersOrderIdDelete, deleteShopsShopIdAccountsAccountIdDelete, deleteShopsShopIdAttributesAttributeIdDelete, deleteShopsShopIdCategoriesCategoryIdDelete, deleteShopsShopIdDelete, deleteShopsShopIdProductsProductIdDelete, deleteShopsShopIdProductsToTagsProductToTagIdDelete, deleteShopsShopIdTagsTagIdDelete, deleteTemporaryImagesImagesDeleteTempPost, editLicensesIdPut, formInfoRequestFormPost, formTestFormsPost, getAccountAdminAccountsIdGet, getAllowedIpsShopsAllowedIpsIdGet, getAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGet, getByIdFaqIdGet, getByIdLicensesIdGet, getByIdOrdersIdGet, getByIdShopsIdGet, getByIdShopsShopIdAccountsIdGet, getByIdShopsShopIdAttributesIdAttributeIdGet, getByIdShopsShopIdCategoriesCategoryIdGet, getByIdShopsShopIdCategoriesImagesIdGet, getByIdShopsShopIdProductsProductIdGet, getByIdShopsShopIdProductsToTagsIdGet, getByIdShopsShopIdTagsTagIdGet, getByIdUsersUserIdGet, getByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGet, getByIdWithOptionsDirectShopsShopIdAttributesAttributeIdWithOptionsGet, getByIdWithOptionsShopsShopIdAttributesIdAttributeIdWithOptionsGet, getByImproviserUserIdLicensesImproviserImproviserUserIdGet, getByNameShopsShopIdAttributesNameNameGet, getByNameShopsShopIdCategoriesNameNameGet, getByNameShopsShopIdTagsNameNameGet, getCacheStatusShopsCacheStatusIdGet, getCartProductsShopsShopIdPricesPost, getCategoryProductsShopsShopIdCategoriesCategoryIdProductsGet, getConfigShopsConfigIdGet, getFormsFormsGet, getHealthHealthGet, getLastCompletedOrderShopsLastCompletedOrderIdGet, getLastPendingOrderShopsLastPendingOrderIdGet, getMultiFaqGet, getMultiLicensesGet, getMultiOrdersGet, getMultiShopsGet, getMultiShopsShopIdAccountsGet, getMultiShopsShopIdAttributesGet, getMultiShopsShopIdCategoriesGet, getMultiShopsShopIdCategoriesImagesGet, getMultiShopsShopIdProductsGet, getMultiShopsShopIdProductsToTagsGet, getMultiShopsShopIdTagsGet, getMultiUsersGet, getMultiWithAttributesShopsShopIdProductsWithAttributesGet, getOptionShopsShopIdAttributesAttributeIdOptionsOptionIdGet, getOptionV2ShopsShopIdAttributeOptionsOptionIdGet, getOrderProductsInStockOrdersStockOrderIdGet, getProductsShopsShopIdPricesGet, getRelationIdShopsShopIdProductsToTagsGetRelationIdGet, getSignedDownloadLinkDownloadsFileNameGet, getSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGet, getSignedUrlImagesSignedUrlImageNameGet, getStripeCustomerAdminAccountsIdStripeCustomerGet, getUserMeUsersMeGet, getWithOptionsShopsShopIdAttributesWithOptionsGet, linkStripeAdminAccountsIdLinkStripePost, listAccountsAdminAccountsGet, listOptionsForShopShopsShopIdAttributeOptionsGet, listOptionsShopsShopIdAttributesAttributeIdOptionsGet, loginAccessTokenLoginAccessTokenPost, moveImagesImagesMovePost, newFormFormsFormKeyPost, patchOrdersOrderIdPatch, productAttributeValuesCreateDeprecated, productAttributeValuesCreateForProduct, productAttributeValuesDelete, productAttributeValuesGet, productAttributeValuesList, productAttributeValuesReplaceForProduct, putShopsShopIdCategoriesImagesIdPut, recoverPasswordPasswordRecoveryEmailPost, removeIpShopsAllowedIpsIdRemovePost, resetPasswordResetPasswordPost, sendDownloadLinkViaEmailDownloadsSendPost, showAllCompleteOrdersPerShopOrdersShopShopIdCompleteGet, showAllPendingOrdersPerShopOrdersShopShopIdPendingGet, swapShopsShopIdCategoriesCategoryIdSwapPut, swapShopsShopIdProductsProductIdSwapPut, syncStripeAdminAccountsIdSyncStripePost, testTokenLoginTestTokenPost, triggerErrorSentryGet, updateConfigShopsConfigIdPut, updateFaqFaqIdPut, updateOptionV2ShopsShopIdAttributeOptionsOptionIdPut, updateOrdersOrderIdPut, updateShopsShopIdAccountsAccountIdPut, updateShopsShopIdAttributesAttributeIdPut, updateShopsShopIdCategoriesCategoryIdPut, updateShopsShopIdProductsProductIdPut, updateShopsShopIdProductsToTagsProductToTagIdPut, updateShopsShopIdPut, updateShopsShopIdTagsTagIdPut, updateUserMeUsersMePut, updateUsersUserIdPut };
|
|
9325
|
+
export { $AccountCreate, $AccountSchema, $AccountUpdate, $AdminAccountSchema, $AttributeCreate, $AttributeOptionCreate, $AttributeOptionSchema, $AttributeOptionUpdate, $AttributeSchema, $AttributeTranslationBase, $AttributeUpdate, $AttributeWithOptionsSchema, $AvailableAttributeSchema, $AvailableOptionSchema, $Body_login_access_token_login_access_token_post, $Body_reset_password_reset_password__post, $Body_update_user_me_users_me_put, $Cart, $CategoryCreate, $CategoryImageDelete, $CategorySchema, $CategoryTranslationBase, $CategoryUpdate, $ConfigurationContact, $ConfigurationLanguageFieldMenuItems, $ConfigurationLanguageFieldStaticTexts, $ConfigurationLanguageFields, $ConfigurationLanguages_Input, $ConfigurationLanguages_Output, $ConfigurationLegal, $ConfigurationShipping_Input, $ConfigurationShipping_Output, $ConfigurationV1_Input, $ConfigurationV1_Output, $DefaultPrice, $EarlyAccessCreate, $FaqCreate, $FaqCreated, $FaqSchema, $FaqUpdate, $FaqUpdated, $HTTPValidationError, $Lang, $LicenseCreate, $LicenseSchema, $LicenseUpdate, $LinkStripeBody, $Msg, type $OpenApiTs, $OrderBase, $OrderCreate, $OrderCreated, $OrderItem_Input, $OrderItem_Output, $OrderSchema, $OrderUpdate, $OrderUpdated, $ProductAttributeItem, $ProductAttributeOptionSelectionAdd, $ProductAttributeOptionSelectionReplace, $ProductAttributeValueBase, $ProductAttributeValueSchema, $ProductCreate, $ProductResponse, $ProductToTagCreate, $ProductToTagSchema, $ProductToTagUpdate, $ProductTranslationBase, $ProductUpdate, $ProductWithAttributes, $ProductWithDefaultPrice, $ProductWithDetailsAndPrices, $ShippingCalculateRequest, $ShippingCalculation, $ShippingLine, $ShopCacheStatus, $ShopConfig, $ShopConfigUpdate_Input, $ShopConfigUpdate_Output, $ShopCreate, $ShopIp, $ShopLastCompletedOrder, $ShopLastPendingOrder, $ShopSchema, $ShopType, $ShopTypeName, $ShopUpdate, $ShopWithPrices, $SyncStripeResponse, $TagCreate, $TagSchema, $TagTranslationBase, $TagUpdate, $Toggles, $User, $UserCreate, $UserUpdate, $ValidationError, type AccountCreate, type AccountSchema, type AccountUpdate, type AddNewIpShopsAllowedIpsIdPostData, type AddNewIpShopsAllowedIpsIdPostResponse, type AdminAccountSchema, ApiError, type AttributeCreate, type AttributeOptionCreate, type AttributeOptionSchema, type AttributeOptionUpdate, type AttributeSchema, type AttributeTranslationBase, type AttributeUpdate, type AttributeWithOptionsSchema, type AvailableAttributeSchema, type AvailableOptionSchema, type Body_login_access_token_login_access_token_post, type Body_reset_password_reset_password__post, type Body_update_user_me_users_me_put, type CalculateShippingCalculatePostData, type CalculateShippingCalculatePostResponse, CancelError, type CancelSubscriptionShopsShopIdStripeSubscriptionSubscriptionIdDeleteData, type CancelSubscriptionShopsShopIdStripeSubscriptionSubscriptionIdDeleteResponse, CancelablePromise, type Cart, type CategoryCreate, type CategoryImageDelete, type CategorySchema, type CategoryTranslationBase, type CategoryUpdate, type CheckOrdersCheckIdsGetData, type CheckOrdersCheckIdsGetResponse, type ConfigurationContact, type ConfigurationLanguageFieldMenuItems, type ConfigurationLanguageFieldStaticTexts, type ConfigurationLanguageFields, type ConfigurationLanguages_Input, type ConfigurationLanguages_Output, type ConfigurationLegal, type ConfigurationShipping_Input, type ConfigurationShipping_Output, type ConfigurationV1_Input, type ConfigurationV1_Output, type CreateEarlyAccessPostData, type CreateEarlyAccessPostResponse, type CreateFaqPostData, type CreateFaqPostResponse, type CreateLicensesPostData, type CreateLicensesPostResponse, type CreateOptionShopsShopIdAttributesAttributeIdOptionsPostData, type CreateOptionShopsShopIdAttributesAttributeIdOptionsPostResponse, type CreateOptionV2ShopsShopIdAttributeOptionsPostData, type CreateOptionV2ShopsShopIdAttributeOptionsPostResponse, type CreateOrdersPostData, type CreateOrdersPostResponse, type CreatePaymentIntentShopsShopIdStripePostData, type CreatePaymentIntentShopsShopIdStripePostResponse, type CreateShopsPostData, type CreateShopsPostResponse, type CreateShopsShopIdAccountsPostData, type CreateShopsShopIdAccountsPostResponse, type CreateShopsShopIdAttributesPostData, type CreateShopsShopIdAttributesPostResponse, type CreateShopsShopIdCategoriesPostData, type CreateShopsShopIdCategoriesPostResponse, type CreateShopsShopIdProductsPostData, type CreateShopsShopIdProductsPostResponse, type CreateShopsShopIdProductsToTagsPostData, type CreateShopsShopIdProductsToTagsPostResponse, type CreateShopsShopIdTagsPostData, type CreateShopsShopIdTagsPostResponse, type CreateSubscriptionIntentShopsShopIdStripeSubscriptionPostData, type CreateSubscriptionIntentShopsShopIdStripeSubscriptionPostResponse, type CreateUsersPostData, type CreateUsersPostResponse, type DefaultPrice, type DeleteFaqFaqIdDeleteData, type DeleteFaqFaqIdDeleteResponse, type DeleteImageShopsShopIdCategoriesImagesDeleteIdPutData, type DeleteImageShopsShopIdCategoriesImagesDeleteIdPutResponse, type DeleteLicensesIdDeleteData, type DeleteLicensesIdDeleteResponse, type DeleteOptionShopsShopIdAttributesAttributeIdOptionsOptionIdDeleteData, type DeleteOptionShopsShopIdAttributesAttributeIdOptionsOptionIdDeleteResponse, type DeleteOptionV2ShopsShopIdAttributeOptionsOptionIdDeleteData, type DeleteOptionV2ShopsShopIdAttributeOptionsOptionIdDeleteResponse, type DeleteOrdersOrderIdDeleteData, type DeleteOrdersOrderIdDeleteResponse, type DeleteShopsShopIdAccountsAccountIdDeleteData, type DeleteShopsShopIdAccountsAccountIdDeleteResponse, type DeleteShopsShopIdAttributesAttributeIdDeleteData, type DeleteShopsShopIdAttributesAttributeIdDeleteResponse, type DeleteShopsShopIdCategoriesCategoryIdDeleteData, type DeleteShopsShopIdCategoriesCategoryIdDeleteResponse, type DeleteShopsShopIdDeleteData, type DeleteShopsShopIdDeleteResponse, type DeleteShopsShopIdProductsProductIdDeleteData, type DeleteShopsShopIdProductsProductIdDeleteResponse, type DeleteShopsShopIdProductsToTagsProductToTagIdDeleteData, type DeleteShopsShopIdProductsToTagsProductToTagIdDeleteResponse, type DeleteShopsShopIdTagsTagIdDeleteData, type DeleteShopsShopIdTagsTagIdDeleteResponse, type DeleteTemporaryImagesImagesDeleteTempPostResponse, type EarlyAccessCreate, type EditLicensesIdPutData, type EditLicensesIdPutResponse, type FaqCreate, type FaqCreated, type FaqSchema, type FaqUpdate, type FaqUpdated, type FormInfoRequestFormPostData, type FormInfoRequestFormPostResponse, type FormTestFormsPostData, type FormTestFormsPostResponse, type GetAccountAdminAccountsIdGetData, type GetAccountAdminAccountsIdGetResponse, type GetAllowedIpsShopsAllowedIpsIdGetData, type GetAllowedIpsShopsAllowedIpsIdGetResponse, type GetAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGetData, type GetAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGetResponse, type GetByIdFaqIdGetData, type GetByIdFaqIdGetResponse, type GetByIdLicensesIdGetData, type GetByIdLicensesIdGetResponse, type GetByIdOrdersIdGetData, type GetByIdOrdersIdGetResponse, type GetByIdShopsIdGetData, type GetByIdShopsIdGetResponse, type GetByIdShopsShopIdAccountsIdGetData, type GetByIdShopsShopIdAccountsIdGetResponse, type GetByIdShopsShopIdAttributesIdAttributeIdGetData, type GetByIdShopsShopIdAttributesIdAttributeIdGetResponse, type GetByIdShopsShopIdCategoriesCategoryIdGetData, type GetByIdShopsShopIdCategoriesCategoryIdGetResponse, type GetByIdShopsShopIdCategoriesImagesIdGetData, type GetByIdShopsShopIdCategoriesImagesIdGetResponse, type GetByIdShopsShopIdProductsProductIdGetData, type GetByIdShopsShopIdProductsProductIdGetResponse, type GetByIdShopsShopIdProductsToTagsIdGetData, type GetByIdShopsShopIdProductsToTagsIdGetResponse, type GetByIdShopsShopIdTagsTagIdGetData, type GetByIdShopsShopIdTagsTagIdGetResponse, type GetByIdUsersUserIdGetData, type GetByIdUsersUserIdGetResponse, type GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetData, type GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetResponse, type GetByIdWithOptionsDirectShopsShopIdAttributesAttributeIdWithOptionsGetData, type GetByIdWithOptionsDirectShopsShopIdAttributesAttributeIdWithOptionsGetResponse, type GetByIdWithOptionsShopsShopIdAttributesIdAttributeIdWithOptionsGetData, type GetByIdWithOptionsShopsShopIdAttributesIdAttributeIdWithOptionsGetResponse, type GetByImproviserUserIdLicensesImproviserImproviserUserIdGetData, type GetByImproviserUserIdLicensesImproviserImproviserUserIdGetResponse, type GetByNameShopsShopIdAttributesNameNameGetData, type GetByNameShopsShopIdAttributesNameNameGetResponse, type GetByNameShopsShopIdCategoriesNameNameGetData, type GetByNameShopsShopIdCategoriesNameNameGetResponse, type GetByNameShopsShopIdTagsNameNameGetData, type GetByNameShopsShopIdTagsNameNameGetResponse, type GetCacheStatusShopsCacheStatusIdGetData, type GetCacheStatusShopsCacheStatusIdGetResponse, type GetCartProductsShopsShopIdPricesPostData, type GetCartProductsShopsShopIdPricesPostResponse, type GetCategoryProductsShopsShopIdCategoriesCategoryIdProductsGetData, type GetCategoryProductsShopsShopIdCategoriesCategoryIdProductsGetResponse, type GetConfigShopsConfigIdGetData, type GetConfigShopsConfigIdGetResponse, type GetFormsFormsGetResponse, type GetHealthHealthGetResponse, type GetLastCompletedOrderShopsLastCompletedOrderIdGetData, type GetLastCompletedOrderShopsLastCompletedOrderIdGetResponse, type GetLastPendingOrderShopsLastPendingOrderIdGetData, type GetLastPendingOrderShopsLastPendingOrderIdGetResponse, type GetMultiFaqGetData, type GetMultiFaqGetResponse, type GetMultiLicensesGetData, type GetMultiLicensesGetResponse, type GetMultiOrdersGetData, type GetMultiOrdersGetResponse, type GetMultiShopsGetData, type GetMultiShopsGetResponse, type GetMultiShopsShopIdAccountsGetData, type GetMultiShopsShopIdAccountsGetResponse, type GetMultiShopsShopIdAttributesGetData, type GetMultiShopsShopIdAttributesGetResponse, type GetMultiShopsShopIdCategoriesGetData, type GetMultiShopsShopIdCategoriesGetResponse, type GetMultiShopsShopIdCategoriesImagesGetData, type GetMultiShopsShopIdCategoriesImagesGetResponse, type GetMultiShopsShopIdProductsGetData, type GetMultiShopsShopIdProductsGetResponse, type GetMultiShopsShopIdProductsToTagsGetData, type GetMultiShopsShopIdProductsToTagsGetResponse, type GetMultiShopsShopIdTagsGetData, type GetMultiShopsShopIdTagsGetResponse, type GetMultiUsersGetData, type GetMultiUsersGetResponse, type GetMultiWithAttributesShopsShopIdProductsWithAttributesGetData, type GetMultiWithAttributesShopsShopIdProductsWithAttributesGetResponse, type GetOptionShopsShopIdAttributesAttributeIdOptionsOptionIdGetData, type GetOptionShopsShopIdAttributesAttributeIdOptionsOptionIdGetResponse, type GetOptionV2ShopsShopIdAttributeOptionsOptionIdGetData, type GetOptionV2ShopsShopIdAttributeOptionsOptionIdGetResponse, type GetOrderProductsInStockOrdersStockOrderIdGetData, type GetOrderProductsInStockOrdersStockOrderIdGetResponse, type GetProductsShopsShopIdPricesGetData, type GetProductsShopsShopIdPricesGetResponse, type GetRelationIdShopsShopIdProductsToTagsGetRelationIdGetData, type GetRelationIdShopsShopIdProductsToTagsGetRelationIdGetResponse, type GetSignedDownloadLinkDownloadsFileNameGetData, type GetSignedDownloadLinkDownloadsFileNameGetResponse, type GetSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGetData, type GetSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGetResponse, type GetSignedUrlImagesSignedUrlImageNameGetData, type GetSignedUrlImagesSignedUrlImageNameGetResponse, type GetStripeCustomerAdminAccountsIdStripeCustomerGetData, type GetStripeCustomerAdminAccountsIdStripeCustomerGetResponse, type GetUserMeUsersMeGetResponse, type GetWithOptionsShopsShopIdAttributesWithOptionsGetData, type GetWithOptionsShopsShopIdAttributesWithOptionsGetResponse, type HTTPValidationError, type Lang, type LicenseCreate, type LicenseSchema, type LicenseUpdate, type LinkStripeAdminAccountsIdLinkStripePostData, type LinkStripeAdminAccountsIdLinkStripePostResponse, type LinkStripeBody, type ListAccountsAdminAccountsGetData, type ListAccountsAdminAccountsGetResponse, type ListOptionsForShopShopsShopIdAttributeOptionsGetData, type ListOptionsForShopShopsShopIdAttributeOptionsGetResponse, type ListOptionsShopsShopIdAttributesAttributeIdOptionsGetData, type ListOptionsShopsShopIdAttributesAttributeIdOptionsGetResponse, type LoginAccessTokenLoginAccessTokenPostData, type LoginAccessTokenLoginAccessTokenPostResponse, type MoveImagesImagesMovePostResponse, type Msg, type NewFormFormsFormKeyPostData, type NewFormFormsFormKeyPostResponse, OpenAPI, type OpenAPIConfig, type OrderBase, type OrderCreate, type OrderCreated, type OrderItem_Input, type OrderItem_Output, type OrderSchema, type OrderUpdate, type OrderUpdated, type PatchOrdersOrderIdPatchData, type PatchOrdersOrderIdPatchResponse, type ProductAttributeItem, type ProductAttributeOptionSelectionAdd, type ProductAttributeOptionSelectionReplace, type ProductAttributeValueBase, type ProductAttributeValueSchema, type ProductAttributeValuesCreateDeprecatedData, type ProductAttributeValuesCreateDeprecatedResponse, type ProductAttributeValuesCreateForProductData, type ProductAttributeValuesCreateForProductResponse, type ProductAttributeValuesDeleteData, type ProductAttributeValuesDeleteResponse, type ProductAttributeValuesGetData, type ProductAttributeValuesGetResponse, type ProductAttributeValuesListData, type ProductAttributeValuesListResponse, type ProductAttributeValuesReplaceForProductData, type ProductAttributeValuesReplaceForProductResponse, type ProductCreate, type ProductResponse, type ProductToTagCreate, type ProductToTagSchema, type ProductToTagUpdate, type ProductTranslationBase, type ProductUpdate, type ProductWithAttributes, type ProductWithDefaultPrice, type ProductWithDetailsAndPrices, type PutShopsShopIdCategoriesImagesIdPutData, type PutShopsShopIdCategoriesImagesIdPutResponse, type RecoverPasswordPasswordRecoveryEmailPostData, type RecoverPasswordPasswordRecoveryEmailPostResponse, type RemoveIpShopsAllowedIpsIdRemovePostData, type RemoveIpShopsAllowedIpsIdRemovePostResponse, type ResetPasswordResetPasswordPostData, type ResetPasswordResetPasswordPostResponse, type SendDownloadLinkViaEmailDownloadsSendPostData, type SendDownloadLinkViaEmailDownloadsSendPostResponse, type ShippingCalculateRequest, type ShippingCalculation, type ShippingLine, type ShopCacheStatus, type ShopConfig, type ShopConfigUpdate_Input, type ShopConfigUpdate_Output, type ShopCreate, type ShopIp, type ShopLastCompletedOrder, type ShopLastPendingOrder, type ShopSchema, type ShopType, type ShopTypeName, type ShopUpdate, type ShopWithPrices, type ShowAllCompleteOrdersPerShopOrdersShopShopIdCompleteGetData, type ShowAllCompleteOrdersPerShopOrdersShopShopIdCompleteGetResponse, type ShowAllPendingOrdersPerShopOrdersShopShopIdPendingGetData, type ShowAllPendingOrdersPerShopOrdersShopShopIdPendingGetResponse, type SwapShopsShopIdCategoriesCategoryIdSwapPutData, type SwapShopsShopIdCategoriesCategoryIdSwapPutResponse, type SwapShopsShopIdProductsProductIdSwapPutData, type SwapShopsShopIdProductsProductIdSwapPutResponse, type SyncStripeAdminAccountsIdSyncStripePostData, type SyncStripeAdminAccountsIdSyncStripePostResponse, type SyncStripeResponse, type TagCreate, type TagSchema, type TagTranslationBase, type TagUpdate, type TestTokenLoginTestTokenPostResponse, type Toggles, type TriggerErrorSentryGetData, type TriggerErrorSentryGetResponse, type UpdateConfigShopsConfigIdPutData, type UpdateConfigShopsConfigIdPutResponse, type UpdateFaqFaqIdPutData, type UpdateFaqFaqIdPutResponse, type UpdateOptionV2ShopsShopIdAttributeOptionsOptionIdPutData, type UpdateOptionV2ShopsShopIdAttributeOptionsOptionIdPutResponse, type UpdateOrdersOrderIdPutData, type UpdateOrdersOrderIdPutResponse, type UpdateShopsShopIdAccountsAccountIdPutData, type UpdateShopsShopIdAccountsAccountIdPutResponse, type UpdateShopsShopIdAttributesAttributeIdPutData, type UpdateShopsShopIdAttributesAttributeIdPutResponse, type UpdateShopsShopIdCategoriesCategoryIdPutData, type UpdateShopsShopIdCategoriesCategoryIdPutResponse, type UpdateShopsShopIdProductsProductIdPutData, type UpdateShopsShopIdProductsProductIdPutResponse, type UpdateShopsShopIdProductsToTagsProductToTagIdPutData, type UpdateShopsShopIdProductsToTagsProductToTagIdPutResponse, type UpdateShopsShopIdPutData, type UpdateShopsShopIdPutResponse, type UpdateShopsShopIdTagsTagIdPutData, type UpdateShopsShopIdTagsTagIdPutResponse, type UpdateUserMeUsersMePutData, type UpdateUserMeUsersMePutResponse, type UpdateUsersUserIdPutData, type UpdateUsersUserIdPutResponse, type User, type UserCreate, type UserUpdate, type ValidationError, addNewIpShopsAllowedIpsIdPost, calculateShippingCalculatePost, cancelSubscriptionShopsShopIdStripeSubscriptionSubscriptionIdDelete, checkOrdersCheckIdsGet, createEarlyAccessPost, createFaqPost, createLicensesPost, createOptionShopsShopIdAttributesAttributeIdOptionsPost, createOptionV2ShopsShopIdAttributeOptionsPost, createOrdersPost, createPaymentIntentShopsShopIdStripePost, createShopsPost, createShopsShopIdAccountsPost, createShopsShopIdAttributesPost, createShopsShopIdCategoriesPost, createShopsShopIdProductsPost, createShopsShopIdProductsToTagsPost, createShopsShopIdTagsPost, createSubscriptionIntentShopsShopIdStripeSubscriptionPost, createUsersPost, deleteFaqFaqIdDelete, deleteImageShopsShopIdCategoriesImagesDeleteIdPut, deleteLicensesIdDelete, deleteOptionShopsShopIdAttributesAttributeIdOptionsOptionIdDelete, deleteOptionV2ShopsShopIdAttributeOptionsOptionIdDelete, deleteOrdersOrderIdDelete, deleteShopsShopIdAccountsAccountIdDelete, deleteShopsShopIdAttributesAttributeIdDelete, deleteShopsShopIdCategoriesCategoryIdDelete, deleteShopsShopIdDelete, deleteShopsShopIdProductsProductIdDelete, deleteShopsShopIdProductsToTagsProductToTagIdDelete, deleteShopsShopIdTagsTagIdDelete, deleteTemporaryImagesImagesDeleteTempPost, editLicensesIdPut, formInfoRequestFormPost, formTestFormsPost, getAccountAdminAccountsIdGet, getAllowedIpsShopsAllowedIpsIdGet, getAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGet, getByIdFaqIdGet, getByIdLicensesIdGet, getByIdOrdersIdGet, getByIdShopsIdGet, getByIdShopsShopIdAccountsIdGet, getByIdShopsShopIdAttributesIdAttributeIdGet, getByIdShopsShopIdCategoriesCategoryIdGet, getByIdShopsShopIdCategoriesImagesIdGet, getByIdShopsShopIdProductsProductIdGet, getByIdShopsShopIdProductsToTagsIdGet, getByIdShopsShopIdTagsTagIdGet, getByIdUsersUserIdGet, getByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGet, getByIdWithOptionsDirectShopsShopIdAttributesAttributeIdWithOptionsGet, getByIdWithOptionsShopsShopIdAttributesIdAttributeIdWithOptionsGet, getByImproviserUserIdLicensesImproviserImproviserUserIdGet, getByNameShopsShopIdAttributesNameNameGet, getByNameShopsShopIdCategoriesNameNameGet, getByNameShopsShopIdTagsNameNameGet, getCacheStatusShopsCacheStatusIdGet, getCartProductsShopsShopIdPricesPost, getCategoryProductsShopsShopIdCategoriesCategoryIdProductsGet, getConfigShopsConfigIdGet, getFormsFormsGet, getHealthHealthGet, getLastCompletedOrderShopsLastCompletedOrderIdGet, getLastPendingOrderShopsLastPendingOrderIdGet, getMultiFaqGet, getMultiLicensesGet, getMultiOrdersGet, getMultiShopsGet, getMultiShopsShopIdAccountsGet, getMultiShopsShopIdAttributesGet, getMultiShopsShopIdCategoriesGet, getMultiShopsShopIdCategoriesImagesGet, getMultiShopsShopIdProductsGet, getMultiShopsShopIdProductsToTagsGet, getMultiShopsShopIdTagsGet, getMultiUsersGet, getMultiWithAttributesShopsShopIdProductsWithAttributesGet, getOptionShopsShopIdAttributesAttributeIdOptionsOptionIdGet, getOptionV2ShopsShopIdAttributeOptionsOptionIdGet, getOrderProductsInStockOrdersStockOrderIdGet, getProductsShopsShopIdPricesGet, getRelationIdShopsShopIdProductsToTagsGetRelationIdGet, getSignedDownloadLinkDownloadsFileNameGet, getSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGet, getSignedUrlImagesSignedUrlImageNameGet, getStripeCustomerAdminAccountsIdStripeCustomerGet, getUserMeUsersMeGet, getWithOptionsShopsShopIdAttributesWithOptionsGet, linkStripeAdminAccountsIdLinkStripePost, listAccountsAdminAccountsGet, listOptionsForShopShopsShopIdAttributeOptionsGet, listOptionsShopsShopIdAttributesAttributeIdOptionsGet, loginAccessTokenLoginAccessTokenPost, moveImagesImagesMovePost, newFormFormsFormKeyPost, patchOrdersOrderIdPatch, productAttributeValuesCreateDeprecated, productAttributeValuesCreateForProduct, productAttributeValuesDelete, productAttributeValuesGet, productAttributeValuesList, productAttributeValuesReplaceForProduct, putShopsShopIdCategoriesImagesIdPut, recoverPasswordPasswordRecoveryEmailPost, removeIpShopsAllowedIpsIdRemovePost, resetPasswordResetPasswordPost, sendDownloadLinkViaEmailDownloadsSendPost, showAllCompleteOrdersPerShopOrdersShopShopIdCompleteGet, showAllPendingOrdersPerShopOrdersShopShopIdPendingGet, swapShopsShopIdCategoriesCategoryIdSwapPut, swapShopsShopIdProductsProductIdSwapPut, syncStripeAdminAccountsIdSyncStripePost, testTokenLoginTestTokenPost, triggerErrorSentryGet, updateConfigShopsConfigIdPut, updateFaqFaqIdPut, updateOptionV2ShopsShopIdAttributeOptionsOptionIdPut, updateOrdersOrderIdPut, updateShopsShopIdAccountsAccountIdPut, updateShopsShopIdAttributesAttributeIdPut, updateShopsShopIdCategoriesCategoryIdPut, updateShopsShopIdProductsProductIdPut, updateShopsShopIdProductsToTagsProductToTagIdPut, updateShopsShopIdPut, updateShopsShopIdTagsTagIdPut, updateUserMeUsersMePut, updateUsersUserIdPut };
|