@shopvirge/shopvirge-client 0.2.8 → 0.2.10
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 +249 -59
- package/dist/index.js +259 -26
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1090,7 +1090,51 @@ declare const $ConfigurationLegal: {
|
|
|
1090
1090
|
readonly type: "object";
|
|
1091
1091
|
readonly title: "ConfigurationLegal";
|
|
1092
1092
|
};
|
|
1093
|
-
declare const $
|
|
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: {
|
|
1094
1138
|
readonly properties: {
|
|
1095
1139
|
readonly enabled: {
|
|
1096
1140
|
readonly type: "boolean";
|
|
@@ -1105,7 +1149,12 @@ declare const $ConfigurationShipping: {
|
|
|
1105
1149
|
readonly fixed_fee: {
|
|
1106
1150
|
readonly type: "number";
|
|
1107
1151
|
readonly title: "Fixed Fee";
|
|
1108
|
-
readonly default: 0;
|
|
1152
|
+
readonly default: "0";
|
|
1153
|
+
};
|
|
1154
|
+
readonly vat_calculation_enabled: {
|
|
1155
|
+
readonly type: "boolean";
|
|
1156
|
+
readonly title: "Vat Calculation Enabled";
|
|
1157
|
+
readonly default: true;
|
|
1109
1158
|
};
|
|
1110
1159
|
readonly free_shipping_above_enabled: {
|
|
1111
1160
|
readonly type: "boolean";
|
|
@@ -1115,7 +1164,7 @@ declare const $ConfigurationShipping: {
|
|
|
1115
1164
|
readonly free_shipping_above_amount: {
|
|
1116
1165
|
readonly type: "number";
|
|
1117
1166
|
readonly title: "Free Shipping Above Amount";
|
|
1118
|
-
readonly default: 0;
|
|
1167
|
+
readonly default: "0";
|
|
1119
1168
|
};
|
|
1120
1169
|
};
|
|
1121
1170
|
readonly type: "object";
|
|
@@ -1182,7 +1231,7 @@ declare const $ConfigurationV1_Input: {
|
|
|
1182
1231
|
};
|
|
1183
1232
|
readonly shipping: {
|
|
1184
1233
|
readonly anyOf: readonly [{
|
|
1185
|
-
readonly $ref: "#/components/schemas/ConfigurationShipping";
|
|
1234
|
+
readonly $ref: "#/components/schemas/ConfigurationShipping-Input";
|
|
1186
1235
|
}, {
|
|
1187
1236
|
readonly type: "null";
|
|
1188
1237
|
}];
|
|
@@ -1253,7 +1302,7 @@ declare const $ConfigurationV1_Output: {
|
|
|
1253
1302
|
};
|
|
1254
1303
|
readonly shipping: {
|
|
1255
1304
|
readonly anyOf: readonly [{
|
|
1256
|
-
readonly $ref: "#/components/schemas/ConfigurationShipping";
|
|
1305
|
+
readonly $ref: "#/components/schemas/ConfigurationShipping-Output";
|
|
1257
1306
|
}, {
|
|
1258
1307
|
readonly type: "null";
|
|
1259
1308
|
}];
|
|
@@ -1677,6 +1726,8 @@ declare const $OrderBase: {
|
|
|
1677
1726
|
readonly total: {
|
|
1678
1727
|
readonly anyOf: readonly [{
|
|
1679
1728
|
readonly type: "number";
|
|
1729
|
+
}, {
|
|
1730
|
+
readonly type: "string";
|
|
1680
1731
|
}, {
|
|
1681
1732
|
readonly type: "null";
|
|
1682
1733
|
}];
|
|
@@ -1709,6 +1760,8 @@ declare const $OrderBase: {
|
|
|
1709
1760
|
readonly shipping_fee_inc_btw: {
|
|
1710
1761
|
readonly anyOf: readonly [{
|
|
1711
1762
|
readonly type: "number";
|
|
1763
|
+
}, {
|
|
1764
|
+
readonly type: "string";
|
|
1712
1765
|
}, {
|
|
1713
1766
|
readonly type: "null";
|
|
1714
1767
|
}];
|
|
@@ -1733,6 +1786,8 @@ declare const $OrderCreate: {
|
|
|
1733
1786
|
readonly total: {
|
|
1734
1787
|
readonly anyOf: readonly [{
|
|
1735
1788
|
readonly type: "number";
|
|
1789
|
+
}, {
|
|
1790
|
+
readonly type: "string";
|
|
1736
1791
|
}, {
|
|
1737
1792
|
readonly type: "null";
|
|
1738
1793
|
}];
|
|
@@ -1765,6 +1820,8 @@ declare const $OrderCreate: {
|
|
|
1765
1820
|
readonly shipping_fee_inc_btw: {
|
|
1766
1821
|
readonly anyOf: readonly [{
|
|
1767
1822
|
readonly type: "number";
|
|
1823
|
+
}, {
|
|
1824
|
+
readonly type: "string";
|
|
1768
1825
|
}, {
|
|
1769
1826
|
readonly type: "null";
|
|
1770
1827
|
}];
|
|
@@ -1777,7 +1834,7 @@ declare const $OrderCreate: {
|
|
|
1777
1834
|
};
|
|
1778
1835
|
readonly order_info: {
|
|
1779
1836
|
readonly items: {
|
|
1780
|
-
readonly $ref: "#/components/schemas/OrderItem";
|
|
1837
|
+
readonly $ref: "#/components/schemas/OrderItem-Input";
|
|
1781
1838
|
};
|
|
1782
1839
|
readonly type: "array";
|
|
1783
1840
|
readonly title: "Order Info";
|
|
@@ -1887,7 +1944,43 @@ declare const $OrderCreated: {
|
|
|
1887
1944
|
readonly required: readonly ["total", "notes", "customer_order_id", "status", "id", "created_at", "account_name"];
|
|
1888
1945
|
readonly title: "OrderCreated";
|
|
1889
1946
|
};
|
|
1890
|
-
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: {
|
|
1891
1984
|
readonly properties: {
|
|
1892
1985
|
readonly description: {
|
|
1893
1986
|
readonly anyOf: readonly [{
|
|
@@ -1982,7 +2075,7 @@ declare const $OrderSchema: {
|
|
|
1982
2075
|
};
|
|
1983
2076
|
readonly order_info: {
|
|
1984
2077
|
readonly items: {
|
|
1985
|
-
readonly $ref: "#/components/schemas/OrderItem";
|
|
2078
|
+
readonly $ref: "#/components/schemas/OrderItem-Output";
|
|
1986
2079
|
};
|
|
1987
2080
|
readonly type: "array";
|
|
1988
2081
|
readonly title: "Order Info";
|
|
@@ -2053,6 +2146,8 @@ declare const $OrderUpdate: {
|
|
|
2053
2146
|
readonly total: {
|
|
2054
2147
|
readonly anyOf: readonly [{
|
|
2055
2148
|
readonly type: "number";
|
|
2149
|
+
}, {
|
|
2150
|
+
readonly type: "string";
|
|
2056
2151
|
}, {
|
|
2057
2152
|
readonly type: "null";
|
|
2058
2153
|
}];
|
|
@@ -2085,6 +2180,8 @@ declare const $OrderUpdate: {
|
|
|
2085
2180
|
readonly shipping_fee_inc_btw: {
|
|
2086
2181
|
readonly anyOf: readonly [{
|
|
2087
2182
|
readonly type: "number";
|
|
2183
|
+
}, {
|
|
2184
|
+
readonly type: "string";
|
|
2088
2185
|
}, {
|
|
2089
2186
|
readonly type: "null";
|
|
2090
2187
|
}];
|
|
@@ -2097,7 +2194,7 @@ declare const $OrderUpdate: {
|
|
|
2097
2194
|
};
|
|
2098
2195
|
readonly order_info: {
|
|
2099
2196
|
readonly items: {
|
|
2100
|
-
readonly $ref: "#/components/schemas/OrderItem";
|
|
2197
|
+
readonly $ref: "#/components/schemas/OrderItem-Input";
|
|
2101
2198
|
};
|
|
2102
2199
|
readonly type: "array";
|
|
2103
2200
|
readonly title: "Order Info";
|
|
@@ -2165,7 +2262,7 @@ declare const $OrderUpdated: {
|
|
|
2165
2262
|
};
|
|
2166
2263
|
readonly order_info: {
|
|
2167
2264
|
readonly items: {
|
|
2168
|
-
readonly $ref: "#/components/schemas/OrderItem";
|
|
2265
|
+
readonly $ref: "#/components/schemas/OrderItem-Output";
|
|
2169
2266
|
};
|
|
2170
2267
|
readonly type: "array";
|
|
2171
2268
|
readonly title: "Order Info";
|
|
@@ -2324,6 +2421,8 @@ declare const $ProductCreate: {
|
|
|
2324
2421
|
readonly price: {
|
|
2325
2422
|
readonly anyOf: readonly [{
|
|
2326
2423
|
readonly type: "number";
|
|
2424
|
+
}, {
|
|
2425
|
+
readonly type: "string";
|
|
2327
2426
|
}, {
|
|
2328
2427
|
readonly type: "null";
|
|
2329
2428
|
}];
|
|
@@ -2332,6 +2431,8 @@ declare const $ProductCreate: {
|
|
|
2332
2431
|
readonly recurring_price_monthly: {
|
|
2333
2432
|
readonly anyOf: readonly [{
|
|
2334
2433
|
readonly type: "number";
|
|
2434
|
+
}, {
|
|
2435
|
+
readonly type: "string";
|
|
2335
2436
|
}, {
|
|
2336
2437
|
readonly type: "null";
|
|
2337
2438
|
}];
|
|
@@ -2340,6 +2441,8 @@ declare const $ProductCreate: {
|
|
|
2340
2441
|
readonly recurring_price_yearly: {
|
|
2341
2442
|
readonly anyOf: readonly [{
|
|
2342
2443
|
readonly type: "number";
|
|
2444
|
+
}, {
|
|
2445
|
+
readonly type: "string";
|
|
2343
2446
|
}, {
|
|
2344
2447
|
readonly type: "null";
|
|
2345
2448
|
}];
|
|
@@ -2376,6 +2479,8 @@ declare const $ProductCreate: {
|
|
|
2376
2479
|
readonly discounted_price: {
|
|
2377
2480
|
readonly anyOf: readonly [{
|
|
2378
2481
|
readonly type: "number";
|
|
2482
|
+
}, {
|
|
2483
|
+
readonly type: "string";
|
|
2379
2484
|
}, {
|
|
2380
2485
|
readonly type: "null";
|
|
2381
2486
|
}];
|
|
@@ -2834,6 +2939,8 @@ declare const $ProductUpdate: {
|
|
|
2834
2939
|
readonly price: {
|
|
2835
2940
|
readonly anyOf: readonly [{
|
|
2836
2941
|
readonly type: "number";
|
|
2942
|
+
}, {
|
|
2943
|
+
readonly type: "string";
|
|
2837
2944
|
}, {
|
|
2838
2945
|
readonly type: "null";
|
|
2839
2946
|
}];
|
|
@@ -2842,6 +2949,8 @@ declare const $ProductUpdate: {
|
|
|
2842
2949
|
readonly recurring_price_monthly: {
|
|
2843
2950
|
readonly anyOf: readonly [{
|
|
2844
2951
|
readonly type: "number";
|
|
2952
|
+
}, {
|
|
2953
|
+
readonly type: "string";
|
|
2845
2954
|
}, {
|
|
2846
2955
|
readonly type: "null";
|
|
2847
2956
|
}];
|
|
@@ -2850,6 +2959,8 @@ declare const $ProductUpdate: {
|
|
|
2850
2959
|
readonly recurring_price_yearly: {
|
|
2851
2960
|
readonly anyOf: readonly [{
|
|
2852
2961
|
readonly type: "number";
|
|
2962
|
+
}, {
|
|
2963
|
+
readonly type: "string";
|
|
2853
2964
|
}, {
|
|
2854
2965
|
readonly type: "null";
|
|
2855
2966
|
}];
|
|
@@ -2886,6 +2997,8 @@ declare const $ProductUpdate: {
|
|
|
2886
2997
|
readonly discounted_price: {
|
|
2887
2998
|
readonly anyOf: readonly [{
|
|
2888
2999
|
readonly type: "number";
|
|
3000
|
+
}, {
|
|
3001
|
+
readonly type: "string";
|
|
2889
3002
|
}, {
|
|
2890
3003
|
readonly type: "null";
|
|
2891
3004
|
}];
|
|
@@ -3453,7 +3566,7 @@ declare const $ShippingCalculateRequest: {
|
|
|
3453
3566
|
};
|
|
3454
3567
|
readonly order_info: {
|
|
3455
3568
|
readonly items: {
|
|
3456
|
-
readonly $ref: "#/components/schemas/OrderItem";
|
|
3569
|
+
readonly $ref: "#/components/schemas/OrderItem-Input";
|
|
3457
3570
|
};
|
|
3458
3571
|
readonly type: "array";
|
|
3459
3572
|
readonly title: "Order Info";
|
|
@@ -3632,27 +3745,51 @@ declare const $ShopCreate: {
|
|
|
3632
3745
|
readonly title: "External Url";
|
|
3633
3746
|
};
|
|
3634
3747
|
readonly vat_standard: {
|
|
3635
|
-
readonly
|
|
3748
|
+
readonly anyOf: readonly [{
|
|
3749
|
+
readonly type: "number";
|
|
3750
|
+
}, {
|
|
3751
|
+
readonly type: "string";
|
|
3752
|
+
}];
|
|
3636
3753
|
readonly title: "Vat Standard";
|
|
3637
3754
|
};
|
|
3638
3755
|
readonly vat_lower_1: {
|
|
3639
|
-
readonly
|
|
3756
|
+
readonly anyOf: readonly [{
|
|
3757
|
+
readonly type: "number";
|
|
3758
|
+
}, {
|
|
3759
|
+
readonly type: "string";
|
|
3760
|
+
}];
|
|
3640
3761
|
readonly title: "Vat Lower 1";
|
|
3641
3762
|
};
|
|
3642
3763
|
readonly vat_lower_2: {
|
|
3643
|
-
readonly
|
|
3764
|
+
readonly anyOf: readonly [{
|
|
3765
|
+
readonly type: "number";
|
|
3766
|
+
}, {
|
|
3767
|
+
readonly type: "string";
|
|
3768
|
+
}];
|
|
3644
3769
|
readonly title: "Vat Lower 2";
|
|
3645
3770
|
};
|
|
3646
3771
|
readonly vat_lower_3: {
|
|
3647
|
-
readonly
|
|
3772
|
+
readonly anyOf: readonly [{
|
|
3773
|
+
readonly type: "number";
|
|
3774
|
+
}, {
|
|
3775
|
+
readonly type: "string";
|
|
3776
|
+
}];
|
|
3648
3777
|
readonly title: "Vat Lower 3";
|
|
3649
3778
|
};
|
|
3650
3779
|
readonly vat_special: {
|
|
3651
|
-
readonly
|
|
3780
|
+
readonly anyOf: readonly [{
|
|
3781
|
+
readonly type: "number";
|
|
3782
|
+
}, {
|
|
3783
|
+
readonly type: "string";
|
|
3784
|
+
}];
|
|
3652
3785
|
readonly title: "Vat Special";
|
|
3653
3786
|
};
|
|
3654
3787
|
readonly vat_zero: {
|
|
3655
|
-
readonly
|
|
3788
|
+
readonly anyOf: readonly [{
|
|
3789
|
+
readonly type: "number";
|
|
3790
|
+
}, {
|
|
3791
|
+
readonly type: "string";
|
|
3792
|
+
}];
|
|
3656
3793
|
readonly title: "Vat Zero";
|
|
3657
3794
|
};
|
|
3658
3795
|
};
|
|
@@ -3828,27 +3965,51 @@ declare const $ShopUpdate: {
|
|
|
3828
3965
|
readonly title: "External Url";
|
|
3829
3966
|
};
|
|
3830
3967
|
readonly vat_standard: {
|
|
3831
|
-
readonly
|
|
3968
|
+
readonly anyOf: readonly [{
|
|
3969
|
+
readonly type: "number";
|
|
3970
|
+
}, {
|
|
3971
|
+
readonly type: "string";
|
|
3972
|
+
}];
|
|
3832
3973
|
readonly title: "Vat Standard";
|
|
3833
3974
|
};
|
|
3834
3975
|
readonly vat_lower_1: {
|
|
3835
|
-
readonly
|
|
3976
|
+
readonly anyOf: readonly [{
|
|
3977
|
+
readonly type: "number";
|
|
3978
|
+
}, {
|
|
3979
|
+
readonly type: "string";
|
|
3980
|
+
}];
|
|
3836
3981
|
readonly title: "Vat Lower 1";
|
|
3837
3982
|
};
|
|
3838
3983
|
readonly vat_lower_2: {
|
|
3839
|
-
readonly
|
|
3984
|
+
readonly anyOf: readonly [{
|
|
3985
|
+
readonly type: "number";
|
|
3986
|
+
}, {
|
|
3987
|
+
readonly type: "string";
|
|
3988
|
+
}];
|
|
3840
3989
|
readonly title: "Vat Lower 2";
|
|
3841
3990
|
};
|
|
3842
3991
|
readonly vat_lower_3: {
|
|
3843
|
-
readonly
|
|
3992
|
+
readonly anyOf: readonly [{
|
|
3993
|
+
readonly type: "number";
|
|
3994
|
+
}, {
|
|
3995
|
+
readonly type: "string";
|
|
3996
|
+
}];
|
|
3844
3997
|
readonly title: "Vat Lower 3";
|
|
3845
3998
|
};
|
|
3846
3999
|
readonly vat_special: {
|
|
3847
|
-
readonly
|
|
4000
|
+
readonly anyOf: readonly [{
|
|
4001
|
+
readonly type: "number";
|
|
4002
|
+
}, {
|
|
4003
|
+
readonly type: "string";
|
|
4004
|
+
}];
|
|
3848
4005
|
readonly title: "Vat Special";
|
|
3849
4006
|
};
|
|
3850
4007
|
readonly vat_zero: {
|
|
3851
|
-
readonly
|
|
4008
|
+
readonly anyOf: readonly [{
|
|
4009
|
+
readonly type: "number";
|
|
4010
|
+
}, {
|
|
4011
|
+
readonly type: "string";
|
|
4012
|
+
}];
|
|
3852
4013
|
readonly title: "Vat Zero";
|
|
3853
4014
|
};
|
|
3854
4015
|
readonly modified_at: {
|
|
@@ -4486,10 +4647,19 @@ type ConfigurationLegal = {
|
|
|
4486
4647
|
kvk_number?: string | null;
|
|
4487
4648
|
btw_number?: string | null;
|
|
4488
4649
|
};
|
|
4489
|
-
type
|
|
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 = {
|
|
4490
4659
|
enabled?: boolean;
|
|
4491
4660
|
method?: string;
|
|
4492
4661
|
fixed_fee?: number;
|
|
4662
|
+
vat_calculation_enabled?: boolean;
|
|
4493
4663
|
free_shipping_above_enabled?: boolean;
|
|
4494
4664
|
free_shipping_above_amount?: number;
|
|
4495
4665
|
};
|
|
@@ -4505,7 +4675,7 @@ type ConfigurationV1_Input = {
|
|
|
4505
4675
|
contact: ConfigurationContact;
|
|
4506
4676
|
toggles: Toggles;
|
|
4507
4677
|
legal?: ConfigurationLegal | null;
|
|
4508
|
-
shipping?:
|
|
4678
|
+
shipping?: ConfigurationShipping_Input | null;
|
|
4509
4679
|
};
|
|
4510
4680
|
type ConfigurationV1_Output = {
|
|
4511
4681
|
short_shop_name: string;
|
|
@@ -4519,7 +4689,7 @@ type ConfigurationV1_Output = {
|
|
|
4519
4689
|
contact: ConfigurationContact;
|
|
4520
4690
|
toggles: Toggles;
|
|
4521
4691
|
legal?: ConfigurationLegal | null;
|
|
4522
|
-
shipping?:
|
|
4692
|
+
shipping?: ConfigurationShipping_Output | null;
|
|
4523
4693
|
};
|
|
4524
4694
|
type DefaultPrice = {
|
|
4525
4695
|
id?: string | null;
|
|
@@ -4608,21 +4778,21 @@ type Msg = {
|
|
|
4608
4778
|
};
|
|
4609
4779
|
type OrderBase = {
|
|
4610
4780
|
account_id?: string | null;
|
|
4611
|
-
total: number | null;
|
|
4781
|
+
total: number | string | null;
|
|
4612
4782
|
notes: string | null;
|
|
4613
4783
|
customer_order_id: number | null;
|
|
4614
4784
|
status: string | null;
|
|
4615
|
-
shipping_fee_inc_btw?: number | null;
|
|
4785
|
+
shipping_fee_inc_btw?: number | string | null;
|
|
4616
4786
|
};
|
|
4617
4787
|
type OrderCreate = {
|
|
4618
4788
|
account_id?: string | null;
|
|
4619
|
-
total: number | null;
|
|
4789
|
+
total: number | string | null;
|
|
4620
4790
|
notes: string | null;
|
|
4621
4791
|
customer_order_id: number | null;
|
|
4622
4792
|
status: string | null;
|
|
4623
|
-
shipping_fee_inc_btw?: number | null;
|
|
4793
|
+
shipping_fee_inc_btw?: number | string | null;
|
|
4624
4794
|
shop_id: string;
|
|
4625
|
-
order_info: Array<
|
|
4795
|
+
order_info: Array<OrderItem_Input>;
|
|
4626
4796
|
completed_at?: string | null;
|
|
4627
4797
|
account_name?: string | null;
|
|
4628
4798
|
};
|
|
@@ -4638,7 +4808,14 @@ type OrderCreated = {
|
|
|
4638
4808
|
completed_at?: string | null;
|
|
4639
4809
|
account_name: string | null;
|
|
4640
4810
|
};
|
|
4641
|
-
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 = {
|
|
4642
4819
|
description: string | null;
|
|
4643
4820
|
price: number;
|
|
4644
4821
|
product_id: string;
|
|
@@ -4654,7 +4831,7 @@ type OrderSchema = {
|
|
|
4654
4831
|
shipping_fee_inc_btw?: number | null;
|
|
4655
4832
|
id: string;
|
|
4656
4833
|
shop_id: string;
|
|
4657
|
-
order_info: Array<
|
|
4834
|
+
order_info: Array<OrderItem_Output>;
|
|
4658
4835
|
created_at: string;
|
|
4659
4836
|
completed_at?: string | null;
|
|
4660
4837
|
completed_by: string | null;
|
|
@@ -4664,13 +4841,13 @@ type OrderSchema = {
|
|
|
4664
4841
|
};
|
|
4665
4842
|
type OrderUpdate = {
|
|
4666
4843
|
account_id?: string | null;
|
|
4667
|
-
total: number | null;
|
|
4844
|
+
total: number | string | null;
|
|
4668
4845
|
notes: string | null;
|
|
4669
4846
|
customer_order_id: number | null;
|
|
4670
4847
|
status: string | null;
|
|
4671
|
-
shipping_fee_inc_btw?: number | null;
|
|
4848
|
+
shipping_fee_inc_btw?: number | string | null;
|
|
4672
4849
|
shop_id: string;
|
|
4673
|
-
order_info: Array<
|
|
4850
|
+
order_info: Array<OrderItem_Input>;
|
|
4674
4851
|
};
|
|
4675
4852
|
type OrderUpdated = {
|
|
4676
4853
|
account_id?: string | null;
|
|
@@ -4680,7 +4857,7 @@ type OrderUpdated = {
|
|
|
4680
4857
|
status: string | null;
|
|
4681
4858
|
shipping_fee_inc_btw?: number | null;
|
|
4682
4859
|
shop_id: string;
|
|
4683
|
-
order_info: Array<
|
|
4860
|
+
order_info: Array<OrderItem_Output>;
|
|
4684
4861
|
id: string;
|
|
4685
4862
|
};
|
|
4686
4863
|
/**
|
|
@@ -4729,16 +4906,16 @@ type ProductAttributeValueSchema = {
|
|
|
4729
4906
|
type ProductCreate = {
|
|
4730
4907
|
shop_id: string;
|
|
4731
4908
|
category_id: string;
|
|
4732
|
-
price?: number | null;
|
|
4733
|
-
recurring_price_monthly?: number | null;
|
|
4734
|
-
recurring_price_yearly?: number | null;
|
|
4909
|
+
price?: number | string | null;
|
|
4910
|
+
recurring_price_monthly?: number | string | null;
|
|
4911
|
+
recurring_price_yearly?: number | string | null;
|
|
4735
4912
|
max_one: boolean;
|
|
4736
4913
|
shippable: boolean;
|
|
4737
4914
|
digital?: string | null;
|
|
4738
4915
|
featured: boolean;
|
|
4739
4916
|
new_product: boolean;
|
|
4740
4917
|
tax_category: string;
|
|
4741
|
-
discounted_price?: number | null;
|
|
4918
|
+
discounted_price?: number | string | null;
|
|
4742
4919
|
discounted_from?: string | null;
|
|
4743
4920
|
discounted_to?: string | null;
|
|
4744
4921
|
order_number?: number | null;
|
|
@@ -4825,16 +5002,16 @@ type ProductTranslationBase = {
|
|
|
4825
5002
|
type ProductUpdate = {
|
|
4826
5003
|
shop_id: string;
|
|
4827
5004
|
category_id: string;
|
|
4828
|
-
price?: number | null;
|
|
4829
|
-
recurring_price_monthly?: number | null;
|
|
4830
|
-
recurring_price_yearly?: number | null;
|
|
5005
|
+
price?: number | string | null;
|
|
5006
|
+
recurring_price_monthly?: number | string | null;
|
|
5007
|
+
recurring_price_yearly?: number | string | null;
|
|
4831
5008
|
max_one: boolean;
|
|
4832
5009
|
shippable: boolean;
|
|
4833
5010
|
digital?: string | null;
|
|
4834
5011
|
featured: boolean;
|
|
4835
5012
|
new_product: boolean;
|
|
4836
5013
|
tax_category: string;
|
|
4837
|
-
discounted_price?: number | null;
|
|
5014
|
+
discounted_price?: number | string | null;
|
|
4838
5015
|
discounted_from?: string | null;
|
|
4839
5016
|
discounted_to?: string | null;
|
|
4840
5017
|
order_number?: number | null;
|
|
@@ -4955,7 +5132,7 @@ type ProductWithDetailsAndPrices = {
|
|
|
4955
5132
|
};
|
|
4956
5133
|
type ShippingCalculateRequest = {
|
|
4957
5134
|
shop_id: string;
|
|
4958
|
-
order_info: Array<
|
|
5135
|
+
order_info: Array<OrderItem_Input>;
|
|
4959
5136
|
};
|
|
4960
5137
|
type ShippingCalculation = {
|
|
4961
5138
|
enabled: boolean;
|
|
@@ -4995,12 +5172,12 @@ type ShopCreate = {
|
|
|
4995
5172
|
description: string;
|
|
4996
5173
|
internal_url?: string | null;
|
|
4997
5174
|
external_url?: string | null;
|
|
4998
|
-
vat_standard: number;
|
|
4999
|
-
vat_lower_1: number;
|
|
5000
|
-
vat_lower_2: number;
|
|
5001
|
-
vat_lower_3: number;
|
|
5002
|
-
vat_special: number;
|
|
5003
|
-
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;
|
|
5004
5181
|
};
|
|
5005
5182
|
type ShopIp = {
|
|
5006
5183
|
ip: string;
|
|
@@ -5038,12 +5215,12 @@ type ShopUpdate = {
|
|
|
5038
5215
|
description: string;
|
|
5039
5216
|
internal_url?: string | null;
|
|
5040
5217
|
external_url?: string | null;
|
|
5041
|
-
vat_standard: number;
|
|
5042
|
-
vat_lower_1: number;
|
|
5043
|
-
vat_lower_2: number;
|
|
5044
|
-
vat_lower_3: number;
|
|
5045
|
-
vat_special: number;
|
|
5046
|
-
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;
|
|
5047
5224
|
modified_at: string | null;
|
|
5048
5225
|
allowed_ips?: Array<string> | null;
|
|
5049
5226
|
};
|
|
@@ -5539,6 +5716,10 @@ type GetMultiShopsShopIdProductsGetData = {
|
|
|
5539
5716
|
* The sort will accept parameters like `col:ASC` or `col:DESC` and will split on the `:`. If it does not find a `:` it will sort ascending on that column.
|
|
5540
5717
|
*/
|
|
5541
5718
|
sort?: Array<string>;
|
|
5719
|
+
/**
|
|
5720
|
+
* Filter products by inventory state. `in_stock` returns products with stock > 0, `out_of_stock` returns products with stock = 0, `all` (default) returns everything.
|
|
5721
|
+
*/
|
|
5722
|
+
stockStatus?: 'in_stock' | 'out_of_stock' | 'all';
|
|
5542
5723
|
};
|
|
5543
5724
|
type GetMultiShopsShopIdProductsGetResponse = Array<ProductWithDefaultPrice>;
|
|
5544
5725
|
type CreateShopsShopIdProductsPostData = {
|
|
@@ -5562,6 +5743,10 @@ type GetMultiWithAttributesShopsShopIdProductsWithAttributesGetData = {
|
|
|
5562
5743
|
* The sort will accept parameters like `col:ASC` or `col:DESC` and will split on the `:`. If it does not find a `:` it will sort ascending on that column.
|
|
5563
5744
|
*/
|
|
5564
5745
|
sort?: Array<string>;
|
|
5746
|
+
/**
|
|
5747
|
+
* Filter products by inventory state. `in_stock` returns products with stock > 0, `out_of_stock` returns products with stock = 0, `all` (default) returns everything.
|
|
5748
|
+
*/
|
|
5749
|
+
stockStatus?: 'in_stock' | 'out_of_stock' | 'all';
|
|
5565
5750
|
};
|
|
5566
5751
|
type GetMultiWithAttributesShopsShopIdProductsWithAttributesGetResponse = Array<ProductWithAttributes>;
|
|
5567
5752
|
type UpdateShopsShopIdProductsProductIdPutData = {
|
|
@@ -8497,6 +8682,7 @@ declare const getSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGet: (data: G
|
|
|
8497
8682
|
* Get Multi
|
|
8498
8683
|
* @param data The data for the request.
|
|
8499
8684
|
* @param data.shopId
|
|
8685
|
+
* @param data.stockStatus Filter products by inventory state. `in_stock` returns products with stock > 0, `out_of_stock` returns products with stock = 0, `all` (default) returns everything.
|
|
8500
8686
|
* @param data.skip
|
|
8501
8687
|
* @param data.limit
|
|
8502
8688
|
* @param data.filter 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.
|
|
@@ -8526,12 +8712,16 @@ declare const createShopsShopIdProductsPost: (data: CreateShopsShopIdProductsPos
|
|
|
8526
8712
|
* * `attribute_name` array[str]: Filter by one or multiple attribute names (e.g., 'Color', 'Size').
|
|
8527
8713
|
*
|
|
8528
8714
|
* Only one attribute filter can be used at a time.
|
|
8715
|
+
*
|
|
8716
|
+
* You can additionally narrow results by inventory state with `stock_status`:
|
|
8717
|
+
* `in_stock` (stock > 0), `out_of_stock` (stock = 0), or `all` (default).
|
|
8529
8718
|
* @param data The data for the request.
|
|
8530
8719
|
* @param data.shopId
|
|
8531
8720
|
* @param data.optionId
|
|
8532
8721
|
* @param data.attributeId
|
|
8533
8722
|
* @param data.optionValueKey
|
|
8534
8723
|
* @param data.attributeName
|
|
8724
|
+
* @param data.stockStatus Filter products by inventory state. `in_stock` returns products with stock > 0, `out_of_stock` returns products with stock = 0, `all` (default) returns everything.
|
|
8535
8725
|
* @param data.skip
|
|
8536
8726
|
* @param data.limit
|
|
8537
8727
|
* @param data.filter 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.
|
|
@@ -9145,4 +9335,4 @@ declare const updateFaqFaqIdPut: (data: UpdateFaqFaqIdPutData) => CancelableProm
|
|
|
9145
9335
|
*/
|
|
9146
9336
|
declare const deleteFaqFaqIdDelete: (data: DeleteFaqFaqIdDeleteData) => CancelablePromise<DeleteFaqFaqIdDeleteResponse>;
|
|
9147
9337
|
|
|
9148
|
-
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, $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, $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, 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 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 };
|
|
9338
|
+
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 };
|
package/dist/index.js
CHANGED
|
@@ -126,7 +126,7 @@ var OpenAPI = {
|
|
|
126
126
|
PASSWORD: void 0,
|
|
127
127
|
TOKEN: void 0,
|
|
128
128
|
USERNAME: void 0,
|
|
129
|
-
VERSION: "0.2.
|
|
129
|
+
VERSION: "0.2.10",
|
|
130
130
|
WITH_CREDENTIALS: false,
|
|
131
131
|
interceptors: {
|
|
132
132
|
request: new Interceptors(),
|
|
@@ -1350,7 +1350,57 @@ var $ConfigurationLegal = {
|
|
|
1350
1350
|
type: "object",
|
|
1351
1351
|
title: "ConfigurationLegal"
|
|
1352
1352
|
};
|
|
1353
|
-
var $
|
|
1353
|
+
var $ConfigurationShipping_Input = {
|
|
1354
|
+
properties: {
|
|
1355
|
+
enabled: {
|
|
1356
|
+
type: "boolean",
|
|
1357
|
+
title: "Enabled",
|
|
1358
|
+
default: false
|
|
1359
|
+
},
|
|
1360
|
+
method: {
|
|
1361
|
+
type: "string",
|
|
1362
|
+
title: "Method",
|
|
1363
|
+
default: "fixed"
|
|
1364
|
+
},
|
|
1365
|
+
fixed_fee: {
|
|
1366
|
+
anyOf: [
|
|
1367
|
+
{
|
|
1368
|
+
type: "number"
|
|
1369
|
+
},
|
|
1370
|
+
{
|
|
1371
|
+
type: "string"
|
|
1372
|
+
}
|
|
1373
|
+
],
|
|
1374
|
+
title: "Fixed Fee",
|
|
1375
|
+
default: "0"
|
|
1376
|
+
},
|
|
1377
|
+
vat_calculation_enabled: {
|
|
1378
|
+
type: "boolean",
|
|
1379
|
+
title: "Vat Calculation Enabled",
|
|
1380
|
+
default: true
|
|
1381
|
+
},
|
|
1382
|
+
free_shipping_above_enabled: {
|
|
1383
|
+
type: "boolean",
|
|
1384
|
+
title: "Free Shipping Above Enabled",
|
|
1385
|
+
default: false
|
|
1386
|
+
},
|
|
1387
|
+
free_shipping_above_amount: {
|
|
1388
|
+
anyOf: [
|
|
1389
|
+
{
|
|
1390
|
+
type: "number"
|
|
1391
|
+
},
|
|
1392
|
+
{
|
|
1393
|
+
type: "string"
|
|
1394
|
+
}
|
|
1395
|
+
],
|
|
1396
|
+
title: "Free Shipping Above Amount",
|
|
1397
|
+
default: "0"
|
|
1398
|
+
}
|
|
1399
|
+
},
|
|
1400
|
+
type: "object",
|
|
1401
|
+
title: "ConfigurationShipping"
|
|
1402
|
+
};
|
|
1403
|
+
var $ConfigurationShipping_Output = {
|
|
1354
1404
|
properties: {
|
|
1355
1405
|
enabled: {
|
|
1356
1406
|
type: "boolean",
|
|
@@ -1365,7 +1415,12 @@ var $ConfigurationShipping = {
|
|
|
1365
1415
|
fixed_fee: {
|
|
1366
1416
|
type: "number",
|
|
1367
1417
|
title: "Fixed Fee",
|
|
1368
|
-
default: 0
|
|
1418
|
+
default: "0"
|
|
1419
|
+
},
|
|
1420
|
+
vat_calculation_enabled: {
|
|
1421
|
+
type: "boolean",
|
|
1422
|
+
title: "Vat Calculation Enabled",
|
|
1423
|
+
default: true
|
|
1369
1424
|
},
|
|
1370
1425
|
free_shipping_above_enabled: {
|
|
1371
1426
|
type: "boolean",
|
|
@@ -1375,7 +1430,7 @@ var $ConfigurationShipping = {
|
|
|
1375
1430
|
free_shipping_above_amount: {
|
|
1376
1431
|
type: "number",
|
|
1377
1432
|
title: "Free Shipping Above Amount",
|
|
1378
|
-
default: 0
|
|
1433
|
+
default: "0"
|
|
1379
1434
|
}
|
|
1380
1435
|
},
|
|
1381
1436
|
type: "object",
|
|
@@ -1455,7 +1510,7 @@ var $ConfigurationV1_Input = {
|
|
|
1455
1510
|
shipping: {
|
|
1456
1511
|
anyOf: [
|
|
1457
1512
|
{
|
|
1458
|
-
$ref: "#/components/schemas/ConfigurationShipping"
|
|
1513
|
+
$ref: "#/components/schemas/ConfigurationShipping-Input"
|
|
1459
1514
|
},
|
|
1460
1515
|
{
|
|
1461
1516
|
type: "null"
|
|
@@ -1548,7 +1603,7 @@ var $ConfigurationV1_Output = {
|
|
|
1548
1603
|
shipping: {
|
|
1549
1604
|
anyOf: [
|
|
1550
1605
|
{
|
|
1551
|
-
$ref: "#/components/schemas/ConfigurationShipping"
|
|
1606
|
+
$ref: "#/components/schemas/ConfigurationShipping-Output"
|
|
1552
1607
|
},
|
|
1553
1608
|
{
|
|
1554
1609
|
type: "null"
|
|
@@ -2063,6 +2118,9 @@ var $OrderBase = {
|
|
|
2063
2118
|
{
|
|
2064
2119
|
type: "number"
|
|
2065
2120
|
},
|
|
2121
|
+
{
|
|
2122
|
+
type: "string"
|
|
2123
|
+
},
|
|
2066
2124
|
{
|
|
2067
2125
|
type: "null"
|
|
2068
2126
|
}
|
|
@@ -2107,6 +2165,9 @@ var $OrderBase = {
|
|
|
2107
2165
|
{
|
|
2108
2166
|
type: "number"
|
|
2109
2167
|
},
|
|
2168
|
+
{
|
|
2169
|
+
type: "string"
|
|
2170
|
+
},
|
|
2110
2171
|
{
|
|
2111
2172
|
type: "null"
|
|
2112
2173
|
}
|
|
@@ -2137,6 +2198,9 @@ var $OrderCreate = {
|
|
|
2137
2198
|
{
|
|
2138
2199
|
type: "number"
|
|
2139
2200
|
},
|
|
2201
|
+
{
|
|
2202
|
+
type: "string"
|
|
2203
|
+
},
|
|
2140
2204
|
{
|
|
2141
2205
|
type: "null"
|
|
2142
2206
|
}
|
|
@@ -2181,6 +2245,9 @@ var $OrderCreate = {
|
|
|
2181
2245
|
{
|
|
2182
2246
|
type: "number"
|
|
2183
2247
|
},
|
|
2248
|
+
{
|
|
2249
|
+
type: "string"
|
|
2250
|
+
},
|
|
2184
2251
|
{
|
|
2185
2252
|
type: "null"
|
|
2186
2253
|
}
|
|
@@ -2194,7 +2261,7 @@ var $OrderCreate = {
|
|
|
2194
2261
|
},
|
|
2195
2262
|
order_info: {
|
|
2196
2263
|
items: {
|
|
2197
|
-
$ref: "#/components/schemas/OrderItem"
|
|
2264
|
+
$ref: "#/components/schemas/OrderItem-Input"
|
|
2198
2265
|
},
|
|
2199
2266
|
type: "array",
|
|
2200
2267
|
title: "Order Info"
|
|
@@ -2349,7 +2416,55 @@ var $OrderCreated = {
|
|
|
2349
2416
|
],
|
|
2350
2417
|
title: "OrderCreated"
|
|
2351
2418
|
};
|
|
2352
|
-
var $
|
|
2419
|
+
var $OrderItem_Input = {
|
|
2420
|
+
properties: {
|
|
2421
|
+
description: {
|
|
2422
|
+
anyOf: [
|
|
2423
|
+
{
|
|
2424
|
+
type: "string"
|
|
2425
|
+
},
|
|
2426
|
+
{
|
|
2427
|
+
type: "null"
|
|
2428
|
+
}
|
|
2429
|
+
],
|
|
2430
|
+
title: "Description"
|
|
2431
|
+
},
|
|
2432
|
+
price: {
|
|
2433
|
+
anyOf: [
|
|
2434
|
+
{
|
|
2435
|
+
type: "number"
|
|
2436
|
+
},
|
|
2437
|
+
{
|
|
2438
|
+
type: "string"
|
|
2439
|
+
}
|
|
2440
|
+
],
|
|
2441
|
+
title: "Price"
|
|
2442
|
+
},
|
|
2443
|
+
product_id: {
|
|
2444
|
+
type: "string",
|
|
2445
|
+
format: "uuid",
|
|
2446
|
+
title: "Product Id"
|
|
2447
|
+
},
|
|
2448
|
+
product_name: {
|
|
2449
|
+
type: "string",
|
|
2450
|
+
title: "Product Name"
|
|
2451
|
+
},
|
|
2452
|
+
quantity: {
|
|
2453
|
+
type: "integer",
|
|
2454
|
+
title: "Quantity"
|
|
2455
|
+
}
|
|
2456
|
+
},
|
|
2457
|
+
type: "object",
|
|
2458
|
+
required: [
|
|
2459
|
+
"description",
|
|
2460
|
+
"price",
|
|
2461
|
+
"product_id",
|
|
2462
|
+
"product_name",
|
|
2463
|
+
"quantity"
|
|
2464
|
+
],
|
|
2465
|
+
title: "OrderItem"
|
|
2466
|
+
};
|
|
2467
|
+
var $OrderItem_Output = {
|
|
2353
2468
|
properties: {
|
|
2354
2469
|
description: {
|
|
2355
2470
|
anyOf: [
|
|
@@ -2471,7 +2586,7 @@ var $OrderSchema = {
|
|
|
2471
2586
|
},
|
|
2472
2587
|
order_info: {
|
|
2473
2588
|
items: {
|
|
2474
|
-
$ref: "#/components/schemas/OrderItem"
|
|
2589
|
+
$ref: "#/components/schemas/OrderItem-Output"
|
|
2475
2590
|
},
|
|
2476
2591
|
type: "array",
|
|
2477
2592
|
title: "Order Info"
|
|
@@ -2574,6 +2689,9 @@ var $OrderUpdate = {
|
|
|
2574
2689
|
{
|
|
2575
2690
|
type: "number"
|
|
2576
2691
|
},
|
|
2692
|
+
{
|
|
2693
|
+
type: "string"
|
|
2694
|
+
},
|
|
2577
2695
|
{
|
|
2578
2696
|
type: "null"
|
|
2579
2697
|
}
|
|
@@ -2618,6 +2736,9 @@ var $OrderUpdate = {
|
|
|
2618
2736
|
{
|
|
2619
2737
|
type: "number"
|
|
2620
2738
|
},
|
|
2739
|
+
{
|
|
2740
|
+
type: "string"
|
|
2741
|
+
},
|
|
2621
2742
|
{
|
|
2622
2743
|
type: "null"
|
|
2623
2744
|
}
|
|
@@ -2631,7 +2752,7 @@ var $OrderUpdate = {
|
|
|
2631
2752
|
},
|
|
2632
2753
|
order_info: {
|
|
2633
2754
|
items: {
|
|
2634
|
-
$ref: "#/components/schemas/OrderItem"
|
|
2755
|
+
$ref: "#/components/schemas/OrderItem-Input"
|
|
2635
2756
|
},
|
|
2636
2757
|
type: "array",
|
|
2637
2758
|
title: "Order Info"
|
|
@@ -2724,7 +2845,7 @@ var $OrderUpdated = {
|
|
|
2724
2845
|
},
|
|
2725
2846
|
order_info: {
|
|
2726
2847
|
items: {
|
|
2727
|
-
$ref: "#/components/schemas/OrderItem"
|
|
2848
|
+
$ref: "#/components/schemas/OrderItem-Output"
|
|
2728
2849
|
},
|
|
2729
2850
|
type: "array",
|
|
2730
2851
|
title: "Order Info"
|
|
@@ -2913,6 +3034,9 @@ var $ProductCreate = {
|
|
|
2913
3034
|
{
|
|
2914
3035
|
type: "number"
|
|
2915
3036
|
},
|
|
3037
|
+
{
|
|
3038
|
+
type: "string"
|
|
3039
|
+
},
|
|
2916
3040
|
{
|
|
2917
3041
|
type: "null"
|
|
2918
3042
|
}
|
|
@@ -2924,6 +3048,9 @@ var $ProductCreate = {
|
|
|
2924
3048
|
{
|
|
2925
3049
|
type: "number"
|
|
2926
3050
|
},
|
|
3051
|
+
{
|
|
3052
|
+
type: "string"
|
|
3053
|
+
},
|
|
2927
3054
|
{
|
|
2928
3055
|
type: "null"
|
|
2929
3056
|
}
|
|
@@ -2935,6 +3062,9 @@ var $ProductCreate = {
|
|
|
2935
3062
|
{
|
|
2936
3063
|
type: "number"
|
|
2937
3064
|
},
|
|
3065
|
+
{
|
|
3066
|
+
type: "string"
|
|
3067
|
+
},
|
|
2938
3068
|
{
|
|
2939
3069
|
type: "null"
|
|
2940
3070
|
}
|
|
@@ -2977,6 +3107,9 @@ var $ProductCreate = {
|
|
|
2977
3107
|
{
|
|
2978
3108
|
type: "number"
|
|
2979
3109
|
},
|
|
3110
|
+
{
|
|
3111
|
+
type: "string"
|
|
3112
|
+
},
|
|
2980
3113
|
{
|
|
2981
3114
|
type: "null"
|
|
2982
3115
|
}
|
|
@@ -3566,6 +3699,9 @@ var $ProductUpdate = {
|
|
|
3566
3699
|
{
|
|
3567
3700
|
type: "number"
|
|
3568
3701
|
},
|
|
3702
|
+
{
|
|
3703
|
+
type: "string"
|
|
3704
|
+
},
|
|
3569
3705
|
{
|
|
3570
3706
|
type: "null"
|
|
3571
3707
|
}
|
|
@@ -3577,6 +3713,9 @@ var $ProductUpdate = {
|
|
|
3577
3713
|
{
|
|
3578
3714
|
type: "number"
|
|
3579
3715
|
},
|
|
3716
|
+
{
|
|
3717
|
+
type: "string"
|
|
3718
|
+
},
|
|
3580
3719
|
{
|
|
3581
3720
|
type: "null"
|
|
3582
3721
|
}
|
|
@@ -3588,6 +3727,9 @@ var $ProductUpdate = {
|
|
|
3588
3727
|
{
|
|
3589
3728
|
type: "number"
|
|
3590
3729
|
},
|
|
3730
|
+
{
|
|
3731
|
+
type: "string"
|
|
3732
|
+
},
|
|
3591
3733
|
{
|
|
3592
3734
|
type: "null"
|
|
3593
3735
|
}
|
|
@@ -3630,6 +3772,9 @@ var $ProductUpdate = {
|
|
|
3630
3772
|
{
|
|
3631
3773
|
type: "number"
|
|
3632
3774
|
},
|
|
3775
|
+
{
|
|
3776
|
+
type: "string"
|
|
3777
|
+
},
|
|
3633
3778
|
{
|
|
3634
3779
|
type: "null"
|
|
3635
3780
|
}
|
|
@@ -4401,7 +4546,7 @@ var $ShippingCalculateRequest = {
|
|
|
4401
4546
|
},
|
|
4402
4547
|
order_info: {
|
|
4403
4548
|
items: {
|
|
4404
|
-
$ref: "#/components/schemas/OrderItem"
|
|
4549
|
+
$ref: "#/components/schemas/OrderItem-Input"
|
|
4405
4550
|
},
|
|
4406
4551
|
type: "array",
|
|
4407
4552
|
title: "Order Info"
|
|
@@ -4605,27 +4750,69 @@ var $ShopCreate = {
|
|
|
4605
4750
|
title: "External Url"
|
|
4606
4751
|
},
|
|
4607
4752
|
vat_standard: {
|
|
4608
|
-
|
|
4753
|
+
anyOf: [
|
|
4754
|
+
{
|
|
4755
|
+
type: "number"
|
|
4756
|
+
},
|
|
4757
|
+
{
|
|
4758
|
+
type: "string"
|
|
4759
|
+
}
|
|
4760
|
+
],
|
|
4609
4761
|
title: "Vat Standard"
|
|
4610
4762
|
},
|
|
4611
4763
|
vat_lower_1: {
|
|
4612
|
-
|
|
4764
|
+
anyOf: [
|
|
4765
|
+
{
|
|
4766
|
+
type: "number"
|
|
4767
|
+
},
|
|
4768
|
+
{
|
|
4769
|
+
type: "string"
|
|
4770
|
+
}
|
|
4771
|
+
],
|
|
4613
4772
|
title: "Vat Lower 1"
|
|
4614
4773
|
},
|
|
4615
4774
|
vat_lower_2: {
|
|
4616
|
-
|
|
4775
|
+
anyOf: [
|
|
4776
|
+
{
|
|
4777
|
+
type: "number"
|
|
4778
|
+
},
|
|
4779
|
+
{
|
|
4780
|
+
type: "string"
|
|
4781
|
+
}
|
|
4782
|
+
],
|
|
4617
4783
|
title: "Vat Lower 2"
|
|
4618
4784
|
},
|
|
4619
4785
|
vat_lower_3: {
|
|
4620
|
-
|
|
4786
|
+
anyOf: [
|
|
4787
|
+
{
|
|
4788
|
+
type: "number"
|
|
4789
|
+
},
|
|
4790
|
+
{
|
|
4791
|
+
type: "string"
|
|
4792
|
+
}
|
|
4793
|
+
],
|
|
4621
4794
|
title: "Vat Lower 3"
|
|
4622
4795
|
},
|
|
4623
4796
|
vat_special: {
|
|
4624
|
-
|
|
4797
|
+
anyOf: [
|
|
4798
|
+
{
|
|
4799
|
+
type: "number"
|
|
4800
|
+
},
|
|
4801
|
+
{
|
|
4802
|
+
type: "string"
|
|
4803
|
+
}
|
|
4804
|
+
],
|
|
4625
4805
|
title: "Vat Special"
|
|
4626
4806
|
},
|
|
4627
4807
|
vat_zero: {
|
|
4628
|
-
|
|
4808
|
+
anyOf: [
|
|
4809
|
+
{
|
|
4810
|
+
type: "number"
|
|
4811
|
+
},
|
|
4812
|
+
{
|
|
4813
|
+
type: "string"
|
|
4814
|
+
}
|
|
4815
|
+
],
|
|
4629
4816
|
title: "Vat Zero"
|
|
4630
4817
|
}
|
|
4631
4818
|
},
|
|
@@ -4847,27 +5034,69 @@ var $ShopUpdate = {
|
|
|
4847
5034
|
title: "External Url"
|
|
4848
5035
|
},
|
|
4849
5036
|
vat_standard: {
|
|
4850
|
-
|
|
5037
|
+
anyOf: [
|
|
5038
|
+
{
|
|
5039
|
+
type: "number"
|
|
5040
|
+
},
|
|
5041
|
+
{
|
|
5042
|
+
type: "string"
|
|
5043
|
+
}
|
|
5044
|
+
],
|
|
4851
5045
|
title: "Vat Standard"
|
|
4852
5046
|
},
|
|
4853
5047
|
vat_lower_1: {
|
|
4854
|
-
|
|
5048
|
+
anyOf: [
|
|
5049
|
+
{
|
|
5050
|
+
type: "number"
|
|
5051
|
+
},
|
|
5052
|
+
{
|
|
5053
|
+
type: "string"
|
|
5054
|
+
}
|
|
5055
|
+
],
|
|
4855
5056
|
title: "Vat Lower 1"
|
|
4856
5057
|
},
|
|
4857
5058
|
vat_lower_2: {
|
|
4858
|
-
|
|
5059
|
+
anyOf: [
|
|
5060
|
+
{
|
|
5061
|
+
type: "number"
|
|
5062
|
+
},
|
|
5063
|
+
{
|
|
5064
|
+
type: "string"
|
|
5065
|
+
}
|
|
5066
|
+
],
|
|
4859
5067
|
title: "Vat Lower 2"
|
|
4860
5068
|
},
|
|
4861
5069
|
vat_lower_3: {
|
|
4862
|
-
|
|
5070
|
+
anyOf: [
|
|
5071
|
+
{
|
|
5072
|
+
type: "number"
|
|
5073
|
+
},
|
|
5074
|
+
{
|
|
5075
|
+
type: "string"
|
|
5076
|
+
}
|
|
5077
|
+
],
|
|
4863
5078
|
title: "Vat Lower 3"
|
|
4864
5079
|
},
|
|
4865
5080
|
vat_special: {
|
|
4866
|
-
|
|
5081
|
+
anyOf: [
|
|
5082
|
+
{
|
|
5083
|
+
type: "number"
|
|
5084
|
+
},
|
|
5085
|
+
{
|
|
5086
|
+
type: "string"
|
|
5087
|
+
}
|
|
5088
|
+
],
|
|
4867
5089
|
title: "Vat Special"
|
|
4868
5090
|
},
|
|
4869
5091
|
vat_zero: {
|
|
4870
|
-
|
|
5092
|
+
anyOf: [
|
|
5093
|
+
{
|
|
5094
|
+
type: "number"
|
|
5095
|
+
},
|
|
5096
|
+
{
|
|
5097
|
+
type: "string"
|
|
5098
|
+
}
|
|
5099
|
+
],
|
|
4871
5100
|
title: "Vat Zero"
|
|
4872
5101
|
},
|
|
4873
5102
|
modified_at: {
|
|
@@ -6557,6 +6786,7 @@ var getMultiShopsShopIdProductsGet = (data) => {
|
|
|
6557
6786
|
shop_id: data.shopId
|
|
6558
6787
|
},
|
|
6559
6788
|
query: {
|
|
6789
|
+
stock_status: data.stockStatus,
|
|
6560
6790
|
skip: data.skip,
|
|
6561
6791
|
limit: data.limit,
|
|
6562
6792
|
filter: data.filter,
|
|
@@ -6593,6 +6823,7 @@ var getMultiWithAttributesShopsShopIdProductsWithAttributesGet = (data) => {
|
|
|
6593
6823
|
attribute_id: data.attributeId,
|
|
6594
6824
|
option_value_key: data.optionValueKey,
|
|
6595
6825
|
attribute_name: data.attributeName,
|
|
6826
|
+
stock_status: data.stockStatus,
|
|
6596
6827
|
skip: data.skip,
|
|
6597
6828
|
limit: data.limit,
|
|
6598
6829
|
filter: data.filter,
|
|
@@ -7444,7 +7675,8 @@ export {
|
|
|
7444
7675
|
$ConfigurationLanguages_Input,
|
|
7445
7676
|
$ConfigurationLanguages_Output,
|
|
7446
7677
|
$ConfigurationLegal,
|
|
7447
|
-
$
|
|
7678
|
+
$ConfigurationShipping_Input,
|
|
7679
|
+
$ConfigurationShipping_Output,
|
|
7448
7680
|
$ConfigurationV1_Input,
|
|
7449
7681
|
$ConfigurationV1_Output,
|
|
7450
7682
|
$DefaultPrice,
|
|
@@ -7464,7 +7696,8 @@ export {
|
|
|
7464
7696
|
$OrderBase,
|
|
7465
7697
|
$OrderCreate,
|
|
7466
7698
|
$OrderCreated,
|
|
7467
|
-
$
|
|
7699
|
+
$OrderItem_Input,
|
|
7700
|
+
$OrderItem_Output,
|
|
7468
7701
|
$OrderSchema,
|
|
7469
7702
|
$OrderUpdate,
|
|
7470
7703
|
$OrderUpdated,
|