@shopvirge/shopvirge-client 0.2.7 → 0.2.8

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 CHANGED
@@ -1090,6 +1090,37 @@ declare const $ConfigurationLegal: {
1090
1090
  readonly type: "object";
1091
1091
  readonly title: "ConfigurationLegal";
1092
1092
  };
1093
+ declare const $ConfigurationShipping: {
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 type: "number";
1107
+ readonly title: "Fixed Fee";
1108
+ readonly default: 0;
1109
+ };
1110
+ readonly free_shipping_above_enabled: {
1111
+ readonly type: "boolean";
1112
+ readonly title: "Free Shipping Above Enabled";
1113
+ readonly default: false;
1114
+ };
1115
+ readonly free_shipping_above_amount: {
1116
+ readonly type: "number";
1117
+ readonly title: "Free Shipping Above Amount";
1118
+ readonly default: 0;
1119
+ };
1120
+ };
1121
+ readonly type: "object";
1122
+ readonly title: "ConfigurationShipping";
1123
+ };
1093
1124
  declare const $ConfigurationV1_Input: {
1094
1125
  readonly properties: {
1095
1126
  readonly short_shop_name: {
@@ -1149,6 +1180,13 @@ declare const $ConfigurationV1_Input: {
1149
1180
  readonly type: "null";
1150
1181
  }];
1151
1182
  };
1183
+ readonly shipping: {
1184
+ readonly anyOf: readonly [{
1185
+ readonly $ref: "#/components/schemas/ConfigurationShipping";
1186
+ }, {
1187
+ readonly type: "null";
1188
+ }];
1189
+ };
1152
1190
  };
1153
1191
  readonly type: "object";
1154
1192
  readonly required: readonly ["short_shop_name", "logo", "main_banner", "languages", "contact", "toggles"];
@@ -1213,6 +1251,13 @@ declare const $ConfigurationV1_Output: {
1213
1251
  readonly type: "null";
1214
1252
  }];
1215
1253
  };
1254
+ readonly shipping: {
1255
+ readonly anyOf: readonly [{
1256
+ readonly $ref: "#/components/schemas/ConfigurationShipping";
1257
+ }, {
1258
+ readonly type: "null";
1259
+ }];
1260
+ };
1216
1261
  };
1217
1262
  readonly type: "object";
1218
1263
  readonly required: readonly ["short_shop_name", "logo", "main_banner", "languages", "contact", "toggles"];
@@ -1661,6 +1706,14 @@ declare const $OrderBase: {
1661
1706
  }];
1662
1707
  readonly title: "Status";
1663
1708
  };
1709
+ readonly shipping_fee_inc_btw: {
1710
+ readonly anyOf: readonly [{
1711
+ readonly type: "number";
1712
+ }, {
1713
+ readonly type: "null";
1714
+ }];
1715
+ readonly title: "Shipping Fee Inc Btw";
1716
+ };
1664
1717
  };
1665
1718
  readonly type: "object";
1666
1719
  readonly required: readonly ["total", "notes", "customer_order_id", "status"];
@@ -1709,6 +1762,14 @@ declare const $OrderCreate: {
1709
1762
  }];
1710
1763
  readonly title: "Status";
1711
1764
  };
1765
+ readonly shipping_fee_inc_btw: {
1766
+ readonly anyOf: readonly [{
1767
+ readonly type: "number";
1768
+ }, {
1769
+ readonly type: "null";
1770
+ }];
1771
+ readonly title: "Shipping Fee Inc Btw";
1772
+ };
1712
1773
  readonly shop_id: {
1713
1774
  readonly type: "string";
1714
1775
  readonly format: "uuid";
@@ -1786,6 +1847,14 @@ declare const $OrderCreated: {
1786
1847
  }];
1787
1848
  readonly title: "Status";
1788
1849
  };
1850
+ readonly shipping_fee_inc_btw: {
1851
+ readonly anyOf: readonly [{
1852
+ readonly type: "number";
1853
+ }, {
1854
+ readonly type: "null";
1855
+ }];
1856
+ readonly title: "Shipping Fee Inc Btw";
1857
+ };
1789
1858
  readonly id: {
1790
1859
  readonly type: "string";
1791
1860
  readonly format: "uuid";
@@ -1893,6 +1962,14 @@ declare const $OrderSchema: {
1893
1962
  }];
1894
1963
  readonly title: "Status";
1895
1964
  };
1965
+ readonly shipping_fee_inc_btw: {
1966
+ readonly anyOf: readonly [{
1967
+ readonly type: "number";
1968
+ }, {
1969
+ readonly type: "null";
1970
+ }];
1971
+ readonly title: "Shipping Fee Inc Btw";
1972
+ };
1896
1973
  readonly id: {
1897
1974
  readonly type: "string";
1898
1975
  readonly format: "uuid";
@@ -2005,6 +2082,14 @@ declare const $OrderUpdate: {
2005
2082
  }];
2006
2083
  readonly title: "Status";
2007
2084
  };
2085
+ readonly shipping_fee_inc_btw: {
2086
+ readonly anyOf: readonly [{
2087
+ readonly type: "number";
2088
+ }, {
2089
+ readonly type: "null";
2090
+ }];
2091
+ readonly title: "Shipping Fee Inc Btw";
2092
+ };
2008
2093
  readonly shop_id: {
2009
2094
  readonly type: "string";
2010
2095
  readonly format: "uuid";
@@ -2065,6 +2150,14 @@ declare const $OrderUpdated: {
2065
2150
  }];
2066
2151
  readonly title: "Status";
2067
2152
  };
2153
+ readonly shipping_fee_inc_btw: {
2154
+ readonly anyOf: readonly [{
2155
+ readonly type: "number";
2156
+ }, {
2157
+ readonly type: "null";
2158
+ }];
2159
+ readonly title: "Shipping Fee Inc Btw";
2160
+ };
2068
2161
  readonly shop_id: {
2069
2162
  readonly type: "string";
2070
2163
  readonly format: "uuid";
@@ -3351,6 +3444,98 @@ declare const $ProductWithDetailsAndPrices: {
3351
3444
  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
3445
  readonly title: "ProductWithDetailsAndPrices";
3353
3446
  };
3447
+ declare const $ShippingCalculateRequest: {
3448
+ readonly properties: {
3449
+ readonly shop_id: {
3450
+ readonly type: "string";
3451
+ readonly format: "uuid";
3452
+ readonly title: "Shop Id";
3453
+ };
3454
+ readonly order_info: {
3455
+ readonly items: {
3456
+ readonly $ref: "#/components/schemas/OrderItem";
3457
+ };
3458
+ readonly type: "array";
3459
+ readonly title: "Order Info";
3460
+ };
3461
+ };
3462
+ readonly type: "object";
3463
+ readonly required: readonly ["shop_id", "order_info"];
3464
+ readonly title: "ShippingCalculateRequest";
3465
+ };
3466
+ declare const $ShippingCalculation: {
3467
+ readonly properties: {
3468
+ readonly enabled: {
3469
+ readonly type: "boolean";
3470
+ readonly title: "Enabled";
3471
+ };
3472
+ readonly method: {
3473
+ readonly anyOf: readonly [{
3474
+ readonly type: "string";
3475
+ }, {
3476
+ readonly type: "null";
3477
+ }];
3478
+ readonly title: "Method";
3479
+ };
3480
+ readonly fee_inc_btw: {
3481
+ readonly type: "number";
3482
+ readonly title: "Fee Inc Btw";
3483
+ };
3484
+ readonly fee_ex_btw: {
3485
+ readonly type: "number";
3486
+ readonly title: "Fee Ex Btw";
3487
+ };
3488
+ readonly fee_btw: {
3489
+ readonly type: "number";
3490
+ readonly title: "Fee Btw";
3491
+ };
3492
+ readonly free_shipping_applied: {
3493
+ readonly type: "boolean";
3494
+ readonly title: "Free Shipping Applied";
3495
+ };
3496
+ readonly free_shipping_threshold: {
3497
+ readonly anyOf: readonly [{
3498
+ readonly type: "number";
3499
+ }, {
3500
+ readonly type: "null";
3501
+ }];
3502
+ readonly title: "Free Shipping Threshold";
3503
+ };
3504
+ readonly lines: {
3505
+ readonly items: {
3506
+ readonly $ref: "#/components/schemas/ShippingLine";
3507
+ };
3508
+ readonly type: "array";
3509
+ readonly title: "Lines";
3510
+ };
3511
+ };
3512
+ readonly type: "object";
3513
+ readonly required: readonly ["enabled", "fee_inc_btw", "fee_ex_btw", "fee_btw", "free_shipping_applied", "lines"];
3514
+ readonly title: "ShippingCalculation";
3515
+ };
3516
+ declare const $ShippingLine: {
3517
+ readonly properties: {
3518
+ readonly btw_rate: {
3519
+ readonly type: "number";
3520
+ readonly title: "Btw Rate";
3521
+ };
3522
+ readonly amount_ex_btw: {
3523
+ readonly type: "number";
3524
+ readonly title: "Amount Ex Btw";
3525
+ };
3526
+ readonly amount_inc_btw: {
3527
+ readonly type: "number";
3528
+ readonly title: "Amount Inc Btw";
3529
+ };
3530
+ readonly amount_btw: {
3531
+ readonly type: "number";
3532
+ readonly title: "Amount Btw";
3533
+ };
3534
+ };
3535
+ readonly type: "object";
3536
+ readonly required: readonly ["btw_rate", "amount_ex_btw", "amount_inc_btw", "amount_btw"];
3537
+ readonly title: "ShippingLine";
3538
+ };
3354
3539
  declare const $ShopCacheStatus: {
3355
3540
  readonly properties: {
3356
3541
  readonly modified_at: {
@@ -4301,6 +4486,13 @@ type ConfigurationLegal = {
4301
4486
  kvk_number?: string | null;
4302
4487
  btw_number?: string | null;
4303
4488
  };
4489
+ type ConfigurationShipping = {
4490
+ enabled?: boolean;
4491
+ method?: string;
4492
+ fixed_fee?: number;
4493
+ free_shipping_above_enabled?: boolean;
4494
+ free_shipping_above_amount?: number;
4495
+ };
4304
4496
  type ConfigurationV1_Input = {
4305
4497
  short_shop_name: string;
4306
4498
  logo: string;
@@ -4313,6 +4505,7 @@ type ConfigurationV1_Input = {
4313
4505
  contact: ConfigurationContact;
4314
4506
  toggles: Toggles;
4315
4507
  legal?: ConfigurationLegal | null;
4508
+ shipping?: ConfigurationShipping | null;
4316
4509
  };
4317
4510
  type ConfigurationV1_Output = {
4318
4511
  short_shop_name: string;
@@ -4326,6 +4519,7 @@ type ConfigurationV1_Output = {
4326
4519
  contact: ConfigurationContact;
4327
4520
  toggles: Toggles;
4328
4521
  legal?: ConfigurationLegal | null;
4522
+ shipping?: ConfigurationShipping | null;
4329
4523
  };
4330
4524
  type DefaultPrice = {
4331
4525
  id?: string | null;
@@ -4418,6 +4612,7 @@ type OrderBase = {
4418
4612
  notes: string | null;
4419
4613
  customer_order_id: number | null;
4420
4614
  status: string | null;
4615
+ shipping_fee_inc_btw?: number | null;
4421
4616
  };
4422
4617
  type OrderCreate = {
4423
4618
  account_id?: string | null;
@@ -4425,6 +4620,7 @@ type OrderCreate = {
4425
4620
  notes: string | null;
4426
4621
  customer_order_id: number | null;
4427
4622
  status: string | null;
4623
+ shipping_fee_inc_btw?: number | null;
4428
4624
  shop_id: string;
4429
4625
  order_info: Array<OrderItem>;
4430
4626
  completed_at?: string | null;
@@ -4436,6 +4632,7 @@ type OrderCreated = {
4436
4632
  notes: string | null;
4437
4633
  customer_order_id: number | null;
4438
4634
  status: string | null;
4635
+ shipping_fee_inc_btw?: number | null;
4439
4636
  id: string;
4440
4637
  created_at: string;
4441
4638
  completed_at?: string | null;
@@ -4454,6 +4651,7 @@ type OrderSchema = {
4454
4651
  notes: string | null;
4455
4652
  customer_order_id: number | null;
4456
4653
  status: string | null;
4654
+ shipping_fee_inc_btw?: number | null;
4457
4655
  id: string;
4458
4656
  shop_id: string;
4459
4657
  order_info: Array<OrderItem>;
@@ -4470,6 +4668,7 @@ type OrderUpdate = {
4470
4668
  notes: string | null;
4471
4669
  customer_order_id: number | null;
4472
4670
  status: string | null;
4671
+ shipping_fee_inc_btw?: number | null;
4473
4672
  shop_id: string;
4474
4673
  order_info: Array<OrderItem>;
4475
4674
  };
@@ -4479,6 +4678,7 @@ type OrderUpdated = {
4479
4678
  notes: string | null;
4480
4679
  customer_order_id: number | null;
4481
4680
  status: string | null;
4681
+ shipping_fee_inc_btw?: number | null;
4482
4682
  shop_id: string;
4483
4683
  order_info: Array<OrderItem>;
4484
4684
  id: string;
@@ -4753,6 +4953,26 @@ type ProductWithDetailsAndPrices = {
4753
4953
  [key: string]: unknown;
4754
4954
  }>;
4755
4955
  };
4956
+ type ShippingCalculateRequest = {
4957
+ shop_id: string;
4958
+ order_info: Array<OrderItem>;
4959
+ };
4960
+ type ShippingCalculation = {
4961
+ enabled: boolean;
4962
+ method?: string | null;
4963
+ fee_inc_btw: number;
4964
+ fee_ex_btw: number;
4965
+ fee_btw: number;
4966
+ free_shipping_applied: boolean;
4967
+ free_shipping_threshold?: number | null;
4968
+ lines: Array<ShippingLine>;
4969
+ };
4970
+ type ShippingLine = {
4971
+ btw_rate: number;
4972
+ amount_ex_btw: number;
4973
+ amount_inc_btw: number;
4974
+ amount_btw: number;
4975
+ };
4756
4976
  type ShopCacheStatus = {
4757
4977
  modified_at: string | null;
4758
4978
  };
@@ -5201,6 +5421,10 @@ type GetOrderProductsInStockOrdersStockOrderIdGetData = {
5201
5421
  orderId: string;
5202
5422
  };
5203
5423
  type GetOrderProductsInStockOrdersStockOrderIdGetResponse = boolean;
5424
+ type CalculateShippingCalculatePostData = {
5425
+ requestBody: ShippingCalculateRequest;
5426
+ };
5427
+ type CalculateShippingCalculatePostResponse = ShippingCalculation;
5204
5428
  type GetMultiShopsShopIdCategoriesGetData = {
5205
5429
  /**
5206
5430
  * 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 +6241,7 @@ type $OpenApiTs = {
6017
6241
  */
6018
6242
  200: Array<AdminAccountSchema>;
6019
6243
  /**
6020
- * Not a superuser
6244
+ * Not a member of the Admins group
6021
6245
  */
6022
6246
  403: unknown;
6023
6247
  /**
@@ -6036,7 +6260,7 @@ type $OpenApiTs = {
6036
6260
  */
6037
6261
  200: AdminAccountSchema;
6038
6262
  /**
6039
- * Not a superuser
6263
+ * Not a member of the Admins group
6040
6264
  */
6041
6265
  403: unknown;
6042
6266
  /**
@@ -6065,7 +6289,7 @@ type $OpenApiTs = {
6065
6289
  */
6066
6290
  400: unknown;
6067
6291
  /**
6068
- * Not a superuser
6292
+ * Not a member of the Admins group
6069
6293
  */
6070
6294
  403: unknown;
6071
6295
  /**
@@ -6096,7 +6320,7 @@ type $OpenApiTs = {
6096
6320
  */
6097
6321
  400: unknown;
6098
6322
  /**
6099
- * Not a superuser
6323
+ * Not a member of the Admins group
6100
6324
  */
6101
6325
  403: unknown;
6102
6326
  /**
@@ -6123,7 +6347,7 @@ type $OpenApiTs = {
6123
6347
  */
6124
6348
  200: AdminAccountSchema;
6125
6349
  /**
6126
- * Not a superuser
6350
+ * Not a member of the Admins group
6127
6351
  */
6128
6352
  403: unknown;
6129
6353
  /**
@@ -6526,6 +6750,21 @@ type $OpenApiTs = {
6526
6750
  };
6527
6751
  };
6528
6752
  };
6753
+ '/shipping/calculate': {
6754
+ post: {
6755
+ req: CalculateShippingCalculatePostData;
6756
+ res: {
6757
+ /**
6758
+ * Successful Response
6759
+ */
6760
+ 200: ShippingCalculation;
6761
+ /**
6762
+ * Validation Error
6763
+ */
6764
+ 422: HTTPValidationError;
6765
+ };
6766
+ };
6767
+ };
6529
6768
  '/shops/{shop_id}/categories/': {
6530
6769
  get: {
6531
6770
  req: GetMultiShopsShopIdCategoriesGetData;
@@ -8097,6 +8336,14 @@ declare const deleteOrdersOrderIdDelete: (data: DeleteOrdersOrderIdDeleteData) =
8097
8336
  * @throws ApiError
8098
8337
  */
8099
8338
  declare const getOrderProductsInStockOrdersStockOrderIdGet: (data: GetOrderProductsInStockOrdersStockOrderIdGetData) => CancelablePromise<GetOrderProductsInStockOrdersStockOrderIdGetResponse>;
8339
+ /**
8340
+ * Calculate
8341
+ * @param data The data for the request.
8342
+ * @param data.requestBody
8343
+ * @returns ShippingCalculation Successful Response
8344
+ * @throws ApiError
8345
+ */
8346
+ declare const calculateShippingCalculatePost: (data: CalculateShippingCalculatePostData) => CancelablePromise<CalculateShippingCalculatePostResponse>;
8100
8347
  /**
8101
8348
  * Get Multi
8102
8349
  * @param data The data for the request.
@@ -8898,4 +9145,4 @@ declare const updateFaqFaqIdPut: (data: UpdateFaqFaqIdPutData) => CancelableProm
8898
9145
  */
8899
9146
  declare const deleteFaqFaqIdDelete: (data: DeleteFaqFaqIdDeleteData) => CancelablePromise<DeleteFaqFaqIdDeleteResponse>;
8900
9147
 
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 };
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 };
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.7",
129
+ VERSION: "0.2.8",
130
130
  WITH_CREDENTIALS: false,
131
131
  interceptors: {
132
132
  request: new Interceptors(),
@@ -1350,6 +1350,37 @@ var $ConfigurationLegal = {
1350
1350
  type: "object",
1351
1351
  title: "ConfigurationLegal"
1352
1352
  };
1353
+ var $ConfigurationShipping = {
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
+ type: "number",
1367
+ title: "Fixed Fee",
1368
+ default: 0
1369
+ },
1370
+ free_shipping_above_enabled: {
1371
+ type: "boolean",
1372
+ title: "Free Shipping Above Enabled",
1373
+ default: false
1374
+ },
1375
+ free_shipping_above_amount: {
1376
+ type: "number",
1377
+ title: "Free Shipping Above Amount",
1378
+ default: 0
1379
+ }
1380
+ },
1381
+ type: "object",
1382
+ title: "ConfigurationShipping"
1383
+ };
1353
1384
  var $ConfigurationV1_Input = {
1354
1385
  properties: {
1355
1386
  short_shop_name: {
@@ -1420,6 +1451,16 @@ var $ConfigurationV1_Input = {
1420
1451
  type: "null"
1421
1452
  }
1422
1453
  ]
1454
+ },
1455
+ shipping: {
1456
+ anyOf: [
1457
+ {
1458
+ $ref: "#/components/schemas/ConfigurationShipping"
1459
+ },
1460
+ {
1461
+ type: "null"
1462
+ }
1463
+ ]
1423
1464
  }
1424
1465
  },
1425
1466
  type: "object",
@@ -1503,6 +1544,16 @@ var $ConfigurationV1_Output = {
1503
1544
  type: "null"
1504
1545
  }
1505
1546
  ]
1547
+ },
1548
+ shipping: {
1549
+ anyOf: [
1550
+ {
1551
+ $ref: "#/components/schemas/ConfigurationShipping"
1552
+ },
1553
+ {
1554
+ type: "null"
1555
+ }
1556
+ ]
1506
1557
  }
1507
1558
  },
1508
1559
  type: "object",
@@ -2050,6 +2101,17 @@ var $OrderBase = {
2050
2101
  }
2051
2102
  ],
2052
2103
  title: "Status"
2104
+ },
2105
+ shipping_fee_inc_btw: {
2106
+ anyOf: [
2107
+ {
2108
+ type: "number"
2109
+ },
2110
+ {
2111
+ type: "null"
2112
+ }
2113
+ ],
2114
+ title: "Shipping Fee Inc Btw"
2053
2115
  }
2054
2116
  },
2055
2117
  type: "object",
@@ -2114,6 +2176,17 @@ var $OrderCreate = {
2114
2176
  ],
2115
2177
  title: "Status"
2116
2178
  },
2179
+ shipping_fee_inc_btw: {
2180
+ anyOf: [
2181
+ {
2182
+ type: "number"
2183
+ },
2184
+ {
2185
+ type: "null"
2186
+ }
2187
+ ],
2188
+ title: "Shipping Fee Inc Btw"
2189
+ },
2117
2190
  shop_id: {
2118
2191
  type: "string",
2119
2192
  format: "uuid",
@@ -2219,6 +2292,17 @@ var $OrderCreated = {
2219
2292
  ],
2220
2293
  title: "Status"
2221
2294
  },
2295
+ shipping_fee_inc_btw: {
2296
+ anyOf: [
2297
+ {
2298
+ type: "number"
2299
+ },
2300
+ {
2301
+ type: "null"
2302
+ }
2303
+ ],
2304
+ title: "Shipping Fee Inc Btw"
2305
+ },
2222
2306
  id: {
2223
2307
  type: "string",
2224
2308
  format: "uuid",
@@ -2364,6 +2448,17 @@ var $OrderSchema = {
2364
2448
  ],
2365
2449
  title: "Status"
2366
2450
  },
2451
+ shipping_fee_inc_btw: {
2452
+ anyOf: [
2453
+ {
2454
+ type: "number"
2455
+ },
2456
+ {
2457
+ type: "null"
2458
+ }
2459
+ ],
2460
+ title: "Shipping Fee Inc Btw"
2461
+ },
2367
2462
  id: {
2368
2463
  type: "string",
2369
2464
  format: "uuid",
@@ -2518,6 +2613,17 @@ var $OrderUpdate = {
2518
2613
  ],
2519
2614
  title: "Status"
2520
2615
  },
2616
+ shipping_fee_inc_btw: {
2617
+ anyOf: [
2618
+ {
2619
+ type: "number"
2620
+ },
2621
+ {
2622
+ type: "null"
2623
+ }
2624
+ ],
2625
+ title: "Shipping Fee Inc Btw"
2626
+ },
2521
2627
  shop_id: {
2522
2628
  type: "string",
2523
2629
  format: "uuid",
@@ -2600,6 +2706,17 @@ var $OrderUpdated = {
2600
2706
  ],
2601
2707
  title: "Status"
2602
2708
  },
2709
+ shipping_fee_inc_btw: {
2710
+ anyOf: [
2711
+ {
2712
+ type: "number"
2713
+ },
2714
+ {
2715
+ type: "null"
2716
+ }
2717
+ ],
2718
+ title: "Shipping Fee Inc Btw"
2719
+ },
2603
2720
  shop_id: {
2604
2721
  type: "string",
2605
2722
  format: "uuid",
@@ -4275,6 +4392,111 @@ var $ProductWithDetailsAndPrices = {
4275
4392
  ],
4276
4393
  title: "ProductWithDetailsAndPrices"
4277
4394
  };
4395
+ var $ShippingCalculateRequest = {
4396
+ properties: {
4397
+ shop_id: {
4398
+ type: "string",
4399
+ format: "uuid",
4400
+ title: "Shop Id"
4401
+ },
4402
+ order_info: {
4403
+ items: {
4404
+ $ref: "#/components/schemas/OrderItem"
4405
+ },
4406
+ type: "array",
4407
+ title: "Order Info"
4408
+ }
4409
+ },
4410
+ type: "object",
4411
+ required: ["shop_id", "order_info"],
4412
+ title: "ShippingCalculateRequest"
4413
+ };
4414
+ var $ShippingCalculation = {
4415
+ properties: {
4416
+ enabled: {
4417
+ type: "boolean",
4418
+ title: "Enabled"
4419
+ },
4420
+ method: {
4421
+ anyOf: [
4422
+ {
4423
+ type: "string"
4424
+ },
4425
+ {
4426
+ type: "null"
4427
+ }
4428
+ ],
4429
+ title: "Method"
4430
+ },
4431
+ fee_inc_btw: {
4432
+ type: "number",
4433
+ title: "Fee Inc Btw"
4434
+ },
4435
+ fee_ex_btw: {
4436
+ type: "number",
4437
+ title: "Fee Ex Btw"
4438
+ },
4439
+ fee_btw: {
4440
+ type: "number",
4441
+ title: "Fee Btw"
4442
+ },
4443
+ free_shipping_applied: {
4444
+ type: "boolean",
4445
+ title: "Free Shipping Applied"
4446
+ },
4447
+ free_shipping_threshold: {
4448
+ anyOf: [
4449
+ {
4450
+ type: "number"
4451
+ },
4452
+ {
4453
+ type: "null"
4454
+ }
4455
+ ],
4456
+ title: "Free Shipping Threshold"
4457
+ },
4458
+ lines: {
4459
+ items: {
4460
+ $ref: "#/components/schemas/ShippingLine"
4461
+ },
4462
+ type: "array",
4463
+ title: "Lines"
4464
+ }
4465
+ },
4466
+ type: "object",
4467
+ required: [
4468
+ "enabled",
4469
+ "fee_inc_btw",
4470
+ "fee_ex_btw",
4471
+ "fee_btw",
4472
+ "free_shipping_applied",
4473
+ "lines"
4474
+ ],
4475
+ title: "ShippingCalculation"
4476
+ };
4477
+ var $ShippingLine = {
4478
+ properties: {
4479
+ btw_rate: {
4480
+ type: "number",
4481
+ title: "Btw Rate"
4482
+ },
4483
+ amount_ex_btw: {
4484
+ type: "number",
4485
+ title: "Amount Ex Btw"
4486
+ },
4487
+ amount_inc_btw: {
4488
+ type: "number",
4489
+ title: "Amount Inc Btw"
4490
+ },
4491
+ amount_btw: {
4492
+ type: "number",
4493
+ title: "Amount Btw"
4494
+ }
4495
+ },
4496
+ type: "object",
4497
+ required: ["btw_rate", "amount_ex_btw", "amount_inc_btw", "amount_btw"],
4498
+ title: "ShippingLine"
4499
+ };
4278
4500
  var $ShopCacheStatus = {
4279
4501
  properties: {
4280
4502
  modified_at: {
@@ -5681,7 +5903,7 @@ var listAccountsAdminAccountsGet = (data = {}) => {
5681
5903
  sort: data.sort
5682
5904
  },
5683
5905
  errors: {
5684
- 403: "Not a superuser",
5906
+ 403: "Not a member of the Admins group",
5685
5907
  422: "Validation Error"
5686
5908
  }
5687
5909
  });
@@ -5694,7 +5916,7 @@ var getAccountAdminAccountsIdGet = (data) => {
5694
5916
  id: data.id
5695
5917
  },
5696
5918
  errors: {
5697
- 403: "Not a superuser",
5919
+ 403: "Not a member of the Admins group",
5698
5920
  404: "Account not found",
5699
5921
  422: "Validation Error"
5700
5922
  }
@@ -5709,7 +5931,7 @@ var getStripeCustomerAdminAccountsIdStripeCustomerGet = (data) => {
5709
5931
  },
5710
5932
  errors: {
5711
5933
  400: "Account or shop not configured for Stripe",
5712
- 403: "Not a superuser",
5934
+ 403: "Not a member of the Admins group",
5713
5935
  404: "Account not found",
5714
5936
  422: "Validation Error",
5715
5937
  502: "Stripe API error"
@@ -5725,7 +5947,7 @@ var syncStripeAdminAccountsIdSyncStripePost = (data) => {
5725
5947
  },
5726
5948
  errors: {
5727
5949
  400: "Account or shop not configured for Stripe",
5728
- 403: "Not a superuser",
5950
+ 403: "Not a member of the Admins group",
5729
5951
  404: "Account not found",
5730
5952
  422: "Validation Error",
5731
5953
  502: "Stripe API error"
@@ -5742,7 +5964,7 @@ var linkStripeAdminAccountsIdLinkStripePost = (data) => {
5742
5964
  body: data.requestBody,
5743
5965
  mediaType: "application/json",
5744
5966
  errors: {
5745
- 403: "Not a superuser",
5967
+ 403: "Not a member of the Admins group",
5746
5968
  404: "Account not found",
5747
5969
  422: "Validation Error"
5748
5970
  }
@@ -6110,6 +6332,17 @@ var getOrderProductsInStockOrdersStockOrderIdGet = (data) => {
6110
6332
  }
6111
6333
  });
6112
6334
  };
6335
+ var calculateShippingCalculatePost = (data) => {
6336
+ return request(OpenAPI, {
6337
+ method: "POST",
6338
+ url: "/shipping/calculate",
6339
+ body: data.requestBody,
6340
+ mediaType: "application/json",
6341
+ errors: {
6342
+ 422: "Validation Error"
6343
+ }
6344
+ });
6345
+ };
6113
6346
  var getMultiShopsShopIdCategoriesGet = (data) => {
6114
6347
  return request(OpenAPI, {
6115
6348
  method: "GET",
@@ -7211,6 +7444,7 @@ export {
7211
7444
  $ConfigurationLanguages_Input,
7212
7445
  $ConfigurationLanguages_Output,
7213
7446
  $ConfigurationLegal,
7447
+ $ConfigurationShipping,
7214
7448
  $ConfigurationV1_Input,
7215
7449
  $ConfigurationV1_Output,
7216
7450
  $DefaultPrice,
@@ -7249,6 +7483,9 @@ export {
7249
7483
  $ProductWithAttributes,
7250
7484
  $ProductWithDefaultPrice,
7251
7485
  $ProductWithDetailsAndPrices,
7486
+ $ShippingCalculateRequest,
7487
+ $ShippingCalculation,
7488
+ $ShippingLine,
7252
7489
  $ShopCacheStatus,
7253
7490
  $ShopConfig,
7254
7491
  $ShopConfigUpdate_Input,
@@ -7277,6 +7514,7 @@ export {
7277
7514
  CancelablePromise,
7278
7515
  OpenAPI,
7279
7516
  addNewIpShopsAllowedIpsIdPost,
7517
+ calculateShippingCalculatePost,
7280
7518
  cancelSubscriptionShopsShopIdStripeSubscriptionSubscriptionIdDelete,
7281
7519
  checkOrdersCheckIdsGet,
7282
7520
  createEarlyAccessPost,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopvirge/shopvirge-client",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },