@shopvirge/shopvirge-client 0.2.4 → 0.2.5

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
@@ -939,6 +939,28 @@ declare const $ConfigurationLanguages_Output: {
939
939
  readonly required: readonly ["main"];
940
940
  readonly title: "ConfigurationLanguages";
941
941
  };
942
+ declare const $ConfigurationLegal: {
943
+ readonly properties: {
944
+ readonly kvk_number: {
945
+ readonly anyOf: readonly [{
946
+ readonly type: "string";
947
+ }, {
948
+ readonly type: "null";
949
+ }];
950
+ readonly title: "Kvk Number";
951
+ };
952
+ readonly btw_number: {
953
+ readonly anyOf: readonly [{
954
+ readonly type: "string";
955
+ }, {
956
+ readonly type: "null";
957
+ }];
958
+ readonly title: "Btw Number";
959
+ };
960
+ };
961
+ readonly type: "object";
962
+ readonly title: "ConfigurationLegal";
963
+ };
942
964
  declare const $ConfigurationV1_Input: {
943
965
  readonly properties: {
944
966
  readonly short_shop_name: {
@@ -991,6 +1013,13 @@ declare const $ConfigurationV1_Input: {
991
1013
  readonly toggles: {
992
1014
  readonly $ref: "#/components/schemas/Toggles";
993
1015
  };
1016
+ readonly legal: {
1017
+ readonly anyOf: readonly [{
1018
+ readonly $ref: "#/components/schemas/ConfigurationLegal";
1019
+ }, {
1020
+ readonly type: "null";
1021
+ }];
1022
+ };
994
1023
  };
995
1024
  readonly type: "object";
996
1025
  readonly required: readonly ["short_shop_name", "logo", "main_banner", "languages", "contact", "toggles"];
@@ -1048,6 +1077,13 @@ declare const $ConfigurationV1_Output: {
1048
1077
  readonly toggles: {
1049
1078
  readonly $ref: "#/components/schemas/Toggles";
1050
1079
  };
1080
+ readonly legal: {
1081
+ readonly anyOf: readonly [{
1082
+ readonly $ref: "#/components/schemas/ConfigurationLegal";
1083
+ }, {
1084
+ readonly type: "null";
1085
+ }];
1086
+ };
1051
1087
  };
1052
1088
  readonly type: "object";
1053
1089
  readonly required: readonly ["short_shop_name", "logo", "main_banner", "languages", "contact", "toggles"];
@@ -4067,6 +4103,10 @@ type ConfigurationLanguages_Output = {
4067
4103
  alt1?: ConfigurationLanguageFields | null;
4068
4104
  alt2?: ConfigurationLanguageFields | null;
4069
4105
  };
4106
+ type ConfigurationLegal = {
4107
+ kvk_number?: string | null;
4108
+ btw_number?: string | null;
4109
+ };
4070
4110
  type ConfigurationV1_Input = {
4071
4111
  short_shop_name: string;
4072
4112
  logo: string;
@@ -4078,6 +4118,7 @@ type ConfigurationV1_Input = {
4078
4118
  google_analytics_id?: string | null;
4079
4119
  contact: ConfigurationContact;
4080
4120
  toggles: Toggles;
4121
+ legal?: ConfigurationLegal | null;
4081
4122
  };
4082
4123
  type ConfigurationV1_Output = {
4083
4124
  short_shop_name: string;
@@ -4090,6 +4131,7 @@ type ConfigurationV1_Output = {
4090
4131
  google_analytics_id?: string | null;
4091
4132
  contact: ConfigurationContact;
4092
4133
  toggles: Toggles;
4134
+ legal?: ConfigurationLegal | null;
4093
4135
  };
4094
4136
  type DefaultPrice = {
4095
4137
  id?: string | null;
@@ -5028,16 +5070,6 @@ type GetMultiWithAttributesShopsShopIdProductsWithAttributesGetData = {
5028
5070
  sort?: Array<string>;
5029
5071
  };
5030
5072
  type GetMultiWithAttributesShopsShopIdProductsWithAttributesGetResponse = Array<ProductWithAttributes>;
5031
- type GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetData = {
5032
- productId: string;
5033
- shopId: string;
5034
- };
5035
- type GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetResponse = ProductWithAttributes;
5036
- type GetByIdShopsShopIdProductsProductIdGetData = {
5037
- productId: string;
5038
- shopId: string;
5039
- };
5040
- type GetByIdShopsShopIdProductsProductIdGetResponse = ProductWithDetailsAndPrices;
5041
5073
  type UpdateShopsShopIdProductsProductIdPutData = {
5042
5074
  productId: string;
5043
5075
  requestBody: ProductUpdate;
@@ -5049,12 +5081,22 @@ type DeleteShopsShopIdProductsProductIdDeleteData = {
5049
5081
  shopId: string;
5050
5082
  };
5051
5083
  type DeleteShopsShopIdProductsProductIdDeleteResponse = void;
5084
+ type GetByIdShopsShopIdProductsProductIdGetData = {
5085
+ productId: string;
5086
+ shopId: string;
5087
+ };
5088
+ type GetByIdShopsShopIdProductsProductIdGetResponse = ProductWithDetailsAndPrices;
5052
5089
  type SwapShopsShopIdProductsProductIdSwapPutData = {
5053
5090
  moveUp: boolean;
5054
5091
  productId: string;
5055
5092
  shopId: string;
5056
5093
  };
5057
5094
  type SwapShopsShopIdProductsProductIdSwapPutResponse = unknown;
5095
+ type GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetData = {
5096
+ productId: string;
5097
+ shopId: string;
5098
+ };
5099
+ type GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetResponse = ProductWithAttributes;
5058
5100
  type GetMultiShopsShopIdProductsToTagsGetData = {
5059
5101
  /**
5060
5102
  * 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.
@@ -6300,55 +6342,55 @@ type $OpenApiTs = {
6300
6342
  };
6301
6343
  };
6302
6344
  };
6303
- '/shops/{shop_id}/products/{product_id}/with_attributes': {
6304
- get: {
6305
- req: GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetData;
6345
+ '/shops/{shop_id}/products/{product_id}': {
6346
+ put: {
6347
+ req: UpdateShopsShopIdProductsProductIdPutData;
6306
6348
  res: {
6307
6349
  /**
6308
6350
  * Successful Response
6309
6351
  */
6310
- 200: ProductWithAttributes;
6352
+ 201: unknown;
6311
6353
  /**
6312
6354
  * Validation Error
6313
6355
  */
6314
6356
  422: HTTPValidationError;
6315
6357
  };
6316
6358
  };
6317
- };
6318
- '/shops/{shop_id}/products/{product_id}': {
6319
- get: {
6320
- req: GetByIdShopsShopIdProductsProductIdGetData;
6359
+ delete: {
6360
+ req: DeleteShopsShopIdProductsProductIdDeleteData;
6321
6361
  res: {
6322
6362
  /**
6323
6363
  * Successful Response
6324
6364
  */
6325
- 200: ProductWithDetailsAndPrices;
6365
+ 204: void;
6326
6366
  /**
6327
6367
  * Validation Error
6328
6368
  */
6329
6369
  422: HTTPValidationError;
6330
6370
  };
6331
6371
  };
6332
- put: {
6333
- req: UpdateShopsShopIdProductsProductIdPutData;
6372
+ get: {
6373
+ req: GetByIdShopsShopIdProductsProductIdGetData;
6334
6374
  res: {
6335
6375
  /**
6336
6376
  * Successful Response
6337
6377
  */
6338
- 201: unknown;
6378
+ 200: ProductWithDetailsAndPrices;
6339
6379
  /**
6340
6380
  * Validation Error
6341
6381
  */
6342
6382
  422: HTTPValidationError;
6343
6383
  };
6344
6384
  };
6345
- delete: {
6346
- req: DeleteShopsShopIdProductsProductIdDeleteData;
6385
+ };
6386
+ '/shops/{shop_id}/products/{product_id}/swap': {
6387
+ put: {
6388
+ req: SwapShopsShopIdProductsProductIdSwapPutData;
6347
6389
  res: {
6348
6390
  /**
6349
6391
  * Successful Response
6350
6392
  */
6351
- 204: void;
6393
+ 201: unknown;
6352
6394
  /**
6353
6395
  * Validation Error
6354
6396
  */
@@ -6356,14 +6398,14 @@ type $OpenApiTs = {
6356
6398
  };
6357
6399
  };
6358
6400
  };
6359
- '/shops/{shop_id}/products/{product_id}/swap': {
6360
- put: {
6361
- req: SwapShopsShopIdProductsProductIdSwapPutData;
6401
+ '/shops/{shop_id}/products/{product_id}/with_attributes': {
6402
+ get: {
6403
+ req: GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetData;
6362
6404
  res: {
6363
6405
  /**
6364
6406
  * Successful Response
6365
6407
  */
6366
- 201: unknown;
6408
+ 200: ProductWithAttributes;
6367
6409
  /**
6368
6410
  * Validation Error
6369
6411
  */
@@ -7728,24 +7770,6 @@ declare const createShopsShopIdProductsPost: (data: CreateShopsShopIdProductsPos
7728
7770
  * @throws ApiError
7729
7771
  */
7730
7772
  declare const getMultiWithAttributesShopsShopIdProductsWithAttributesGet: (data: GetMultiWithAttributesShopsShopIdProductsWithAttributesGetData) => CancelablePromise<GetMultiWithAttributesShopsShopIdProductsWithAttributesGetResponse>;
7731
- /**
7732
- * Get By Id With Attributes
7733
- * @param data The data for the request.
7734
- * @param data.productId
7735
- * @param data.shopId
7736
- * @returns ProductWithAttributes Successful Response
7737
- * @throws ApiError
7738
- */
7739
- declare const getByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGet: (data: GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetData) => CancelablePromise<GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetResponse>;
7740
- /**
7741
- * Get By Id
7742
- * @param data The data for the request.
7743
- * @param data.productId
7744
- * @param data.shopId
7745
- * @returns ProductWithDetailsAndPrices Successful Response
7746
- * @throws ApiError
7747
- */
7748
- declare const getByIdShopsShopIdProductsProductIdGet: (data: GetByIdShopsShopIdProductsProductIdGetData) => CancelablePromise<GetByIdShopsShopIdProductsProductIdGetResponse>;
7749
7773
  /**
7750
7774
  * Update
7751
7775
  * @param data The data for the request.
@@ -7765,6 +7789,15 @@ declare const updateShopsShopIdProductsProductIdPut: (data: UpdateShopsShopIdPro
7765
7789
  * @throws ApiError
7766
7790
  */
7767
7791
  declare const deleteShopsShopIdProductsProductIdDelete: (data: DeleteShopsShopIdProductsProductIdDeleteData) => CancelablePromise<DeleteShopsShopIdProductsProductIdDeleteResponse>;
7792
+ /**
7793
+ * Get By Id
7794
+ * @param data The data for the request.
7795
+ * @param data.productId
7796
+ * @param data.shopId
7797
+ * @returns ProductWithDetailsAndPrices Successful Response
7798
+ * @throws ApiError
7799
+ */
7800
+ declare const getByIdShopsShopIdProductsProductIdGet: (data: GetByIdShopsShopIdProductsProductIdGetData) => CancelablePromise<GetByIdShopsShopIdProductsProductIdGetResponse>;
7768
7801
  /**
7769
7802
  * Swap
7770
7803
  * @param data The data for the request.
@@ -7775,6 +7808,15 @@ declare const deleteShopsShopIdProductsProductIdDelete: (data: DeleteShopsShopId
7775
7808
  * @throws ApiError
7776
7809
  */
7777
7810
  declare const swapShopsShopIdProductsProductIdSwapPut: (data: SwapShopsShopIdProductsProductIdSwapPutData) => CancelablePromise<SwapShopsShopIdProductsProductIdSwapPutResponse>;
7811
+ /**
7812
+ * Get By Id With Attributes
7813
+ * @param data The data for the request.
7814
+ * @param data.productId
7815
+ * @param data.shopId
7816
+ * @returns ProductWithAttributes Successful Response
7817
+ * @throws ApiError
7818
+ */
7819
+ declare const getByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGet: (data: GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetData) => CancelablePromise<GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetResponse>;
7778
7820
  /**
7779
7821
  * Get Multi
7780
7822
  * List prices for a product_to_tag
@@ -8333,4 +8375,4 @@ declare const updateFaqFaqIdPut: (data: UpdateFaqFaqIdPutData) => CancelableProm
8333
8375
  */
8334
8376
  declare const deleteFaqFaqIdDelete: (data: DeleteFaqFaqIdDeleteData) => CancelablePromise<DeleteFaqFaqIdDeleteResponse>;
8335
8377
 
8336
- export { $AccountCreate, $AccountSchema, $AccountUpdate, $AttributeCreate, $AttributeOptionCreate, $AttributeOptionSchema, $AttributeOptionUpdate, $AttributeSchema, $AttributeTranslationBase, $AttributeUpdate, $AttributeWithOptionsSchema, $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, $ConfigurationV1_Input, $ConfigurationV1_Output, $DefaultPrice, $EarlyAccessCreate, $FaqCreate, $FaqCreated, $FaqSchema, $FaqUpdate, $FaqUpdated, $HTTPValidationError, $Lang, $LicenseCreate, $LicenseSchema, $LicenseUpdate, $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, $TagCreate, $TagSchema, $TagTranslationBase, $TagUpdate, $Toggles, $User, $UserCreate, $UserUpdate, $ValidationError, type AccountCreate, type AccountSchema, type AccountUpdate, type AddNewIpShopsAllowedIpsIdPostData, type AddNewIpShopsAllowedIpsIdPostResponse, ApiError, type AttributeCreate, type AttributeOptionCreate, type AttributeOptionSchema, type AttributeOptionUpdate, type AttributeSchema, type AttributeTranslationBase, type AttributeUpdate, type AttributeWithOptionsSchema, 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 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 GetAllowedIpsShopsAllowedIpsIdGetData, type GetAllowedIpsShopsAllowedIpsIdGetResponse, 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 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 GetUserMeUsersMeGetResponse, type GetWithOptionsShopsShopIdAttributesWithOptionsGetData, type GetWithOptionsShopsShopIdAttributesWithOptionsGetResponse, type HTTPValidationError, type Lang, type LicenseCreate, type LicenseSchema, type LicenseUpdate, 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 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, getAllowedIpsShopsAllowedIpsIdGet, getByIdFaqIdGet, getByIdLicensesIdGet, getByIdOrdersIdGet, getByIdShopsIdGet, getByIdShopsShopIdAccountsIdGet, getByIdShopsShopIdAttributesIdAttributeIdGet, getByIdShopsShopIdCategoriesCategoryIdGet, getByIdShopsShopIdCategoriesImagesIdGet, getByIdShopsShopIdProductsProductIdGet, getByIdShopsShopIdProductsToTagsIdGet, getByIdShopsShopIdTagsTagIdGet, getByIdUsersUserIdGet, getByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGet, getByIdWithOptionsDirectShopsShopIdAttributesAttributeIdWithOptionsGet, getByIdWithOptionsShopsShopIdAttributesIdAttributeIdWithOptionsGet, getByImproviserUserIdLicensesImproviserImproviserUserIdGet, getByNameShopsShopIdAttributesNameNameGet, getByNameShopsShopIdCategoriesNameNameGet, getByNameShopsShopIdTagsNameNameGet, getCacheStatusShopsCacheStatusIdGet, getCartProductsShopsShopIdPricesPost, 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, getUserMeUsersMeGet, getWithOptionsShopsShopIdAttributesWithOptionsGet, listOptionsForShopShopsShopIdAttributeOptionsGet, listOptionsShopsShopIdAttributesAttributeIdOptionsGet, loginAccessTokenLoginAccessTokenPost, moveImagesImagesMovePost, newFormFormsFormKeyPost, patchOrdersOrderIdPatch, productAttributeValuesCreateDeprecated, productAttributeValuesCreateForProduct, productAttributeValuesDelete, productAttributeValuesGet, productAttributeValuesList, productAttributeValuesReplaceForProduct, putShopsShopIdCategoriesImagesIdPut, recoverPasswordPasswordRecoveryEmailPost, removeIpShopsAllowedIpsIdRemovePost, resetPasswordResetPasswordPost, sendDownloadLinkViaEmailDownloadsSendPost, showAllCompleteOrdersPerShopOrdersShopShopIdCompleteGet, showAllPendingOrdersPerShopOrdersShopShopIdPendingGet, swapShopsShopIdCategoriesCategoryIdSwapPut, swapShopsShopIdProductsProductIdSwapPut, testTokenLoginTestTokenPost, triggerErrorSentryGet, updateConfigShopsConfigIdPut, updateFaqFaqIdPut, updateOptionV2ShopsShopIdAttributeOptionsOptionIdPut, updateOrdersOrderIdPut, updateShopsShopIdAccountsAccountIdPut, updateShopsShopIdAttributesAttributeIdPut, updateShopsShopIdCategoriesCategoryIdPut, updateShopsShopIdProductsProductIdPut, updateShopsShopIdProductsToTagsProductToTagIdPut, updateShopsShopIdPut, updateShopsShopIdTagsTagIdPut, updateUserMeUsersMePut, updateUsersUserIdPut };
8378
+ export { $AccountCreate, $AccountSchema, $AccountUpdate, $AttributeCreate, $AttributeOptionCreate, $AttributeOptionSchema, $AttributeOptionUpdate, $AttributeSchema, $AttributeTranslationBase, $AttributeUpdate, $AttributeWithOptionsSchema, $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, $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, $TagCreate, $TagSchema, $TagTranslationBase, $TagUpdate, $Toggles, $User, $UserCreate, $UserUpdate, $ValidationError, type AccountCreate, type AccountSchema, type AccountUpdate, type AddNewIpShopsAllowedIpsIdPostData, type AddNewIpShopsAllowedIpsIdPostResponse, ApiError, type AttributeCreate, type AttributeOptionCreate, type AttributeOptionSchema, type AttributeOptionUpdate, type AttributeSchema, type AttributeTranslationBase, type AttributeUpdate, type AttributeWithOptionsSchema, 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 GetAllowedIpsShopsAllowedIpsIdGetData, type GetAllowedIpsShopsAllowedIpsIdGetResponse, 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 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 GetUserMeUsersMeGetResponse, type GetWithOptionsShopsShopIdAttributesWithOptionsGetData, type GetWithOptionsShopsShopIdAttributesWithOptionsGetResponse, type HTTPValidationError, type Lang, type LicenseCreate, type LicenseSchema, type LicenseUpdate, 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 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, getAllowedIpsShopsAllowedIpsIdGet, getByIdFaqIdGet, getByIdLicensesIdGet, getByIdOrdersIdGet, getByIdShopsIdGet, getByIdShopsShopIdAccountsIdGet, getByIdShopsShopIdAttributesIdAttributeIdGet, getByIdShopsShopIdCategoriesCategoryIdGet, getByIdShopsShopIdCategoriesImagesIdGet, getByIdShopsShopIdProductsProductIdGet, getByIdShopsShopIdProductsToTagsIdGet, getByIdShopsShopIdTagsTagIdGet, getByIdUsersUserIdGet, getByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGet, getByIdWithOptionsDirectShopsShopIdAttributesAttributeIdWithOptionsGet, getByIdWithOptionsShopsShopIdAttributesIdAttributeIdWithOptionsGet, getByImproviserUserIdLicensesImproviserImproviserUserIdGet, getByNameShopsShopIdAttributesNameNameGet, getByNameShopsShopIdCategoriesNameNameGet, getByNameShopsShopIdTagsNameNameGet, getCacheStatusShopsCacheStatusIdGet, getCartProductsShopsShopIdPricesPost, 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, getUserMeUsersMeGet, getWithOptionsShopsShopIdAttributesWithOptionsGet, listOptionsForShopShopsShopIdAttributeOptionsGet, listOptionsShopsShopIdAttributesAttributeIdOptionsGet, loginAccessTokenLoginAccessTokenPost, moveImagesImagesMovePost, newFormFormsFormKeyPost, patchOrdersOrderIdPatch, productAttributeValuesCreateDeprecated, productAttributeValuesCreateForProduct, productAttributeValuesDelete, productAttributeValuesGet, productAttributeValuesList, productAttributeValuesReplaceForProduct, putShopsShopIdCategoriesImagesIdPut, recoverPasswordPasswordRecoveryEmailPost, removeIpShopsAllowedIpsIdRemovePost, resetPasswordResetPasswordPost, sendDownloadLinkViaEmailDownloadsSendPost, showAllCompleteOrdersPerShopOrdersShopShopIdCompleteGet, showAllPendingOrdersPerShopOrdersShopShopIdPendingGet, swapShopsShopIdCategoriesCategoryIdSwapPut, swapShopsShopIdProductsProductIdSwapPut, 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.2",
129
+ VERSION: "0.2.3",
130
130
  WITH_CREDENTIALS: false,
131
131
  interceptors: {
132
132
  request: new Interceptors(),
@@ -1166,6 +1166,34 @@ var $ConfigurationLanguages_Output = {
1166
1166
  required: ["main"],
1167
1167
  title: "ConfigurationLanguages"
1168
1168
  };
1169
+ var $ConfigurationLegal = {
1170
+ properties: {
1171
+ kvk_number: {
1172
+ anyOf: [
1173
+ {
1174
+ type: "string"
1175
+ },
1176
+ {
1177
+ type: "null"
1178
+ }
1179
+ ],
1180
+ title: "Kvk Number"
1181
+ },
1182
+ btw_number: {
1183
+ anyOf: [
1184
+ {
1185
+ type: "string"
1186
+ },
1187
+ {
1188
+ type: "null"
1189
+ }
1190
+ ],
1191
+ title: "Btw Number"
1192
+ }
1193
+ },
1194
+ type: "object",
1195
+ title: "ConfigurationLegal"
1196
+ };
1169
1197
  var $ConfigurationV1_Input = {
1170
1198
  properties: {
1171
1199
  short_shop_name: {
@@ -1226,6 +1254,16 @@ var $ConfigurationV1_Input = {
1226
1254
  },
1227
1255
  toggles: {
1228
1256
  $ref: "#/components/schemas/Toggles"
1257
+ },
1258
+ legal: {
1259
+ anyOf: [
1260
+ {
1261
+ $ref: "#/components/schemas/ConfigurationLegal"
1262
+ },
1263
+ {
1264
+ type: "null"
1265
+ }
1266
+ ]
1229
1267
  }
1230
1268
  },
1231
1269
  type: "object",
@@ -1299,6 +1337,16 @@ var $ConfigurationV1_Output = {
1299
1337
  },
1300
1338
  toggles: {
1301
1339
  $ref: "#/components/schemas/Toggles"
1340
+ },
1341
+ legal: {
1342
+ anyOf: [
1343
+ {
1344
+ $ref: "#/components/schemas/ConfigurationLegal"
1345
+ },
1346
+ {
1347
+ type: "null"
1348
+ }
1349
+ ]
1302
1350
  }
1303
1351
  },
1304
1352
  type: "object",
@@ -6004,50 +6052,37 @@ var getMultiWithAttributesShopsShopIdProductsWithAttributesGet = (data) => {
6004
6052
  }
6005
6053
  });
6006
6054
  };
6007
- var getByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGet = (data) => {
6008
- return request(OpenAPI, {
6009
- method: "GET",
6010
- url: "/shops/{shop_id}/products/{product_id}/with_attributes",
6011
- path: {
6012
- product_id: data.productId,
6013
- shop_id: data.shopId
6014
- },
6015
- errors: {
6016
- 422: "Validation Error"
6017
- }
6018
- });
6019
- };
6020
- var getByIdShopsShopIdProductsProductIdGet = (data) => {
6055
+ var updateShopsShopIdProductsProductIdPut = (data) => {
6021
6056
  return request(OpenAPI, {
6022
- method: "GET",
6057
+ method: "PUT",
6023
6058
  url: "/shops/{shop_id}/products/{product_id}",
6024
6059
  path: {
6025
6060
  product_id: data.productId,
6026
6061
  shop_id: data.shopId
6027
6062
  },
6063
+ body: data.requestBody,
6064
+ mediaType: "application/json",
6028
6065
  errors: {
6029
6066
  422: "Validation Error"
6030
6067
  }
6031
6068
  });
6032
6069
  };
6033
- var updateShopsShopIdProductsProductIdPut = (data) => {
6070
+ var deleteShopsShopIdProductsProductIdDelete = (data) => {
6034
6071
  return request(OpenAPI, {
6035
- method: "PUT",
6072
+ method: "DELETE",
6036
6073
  url: "/shops/{shop_id}/products/{product_id}",
6037
6074
  path: {
6038
6075
  product_id: data.productId,
6039
6076
  shop_id: data.shopId
6040
6077
  },
6041
- body: data.requestBody,
6042
- mediaType: "application/json",
6043
6078
  errors: {
6044
6079
  422: "Validation Error"
6045
6080
  }
6046
6081
  });
6047
6082
  };
6048
- var deleteShopsShopIdProductsProductIdDelete = (data) => {
6083
+ var getByIdShopsShopIdProductsProductIdGet = (data) => {
6049
6084
  return request(OpenAPI, {
6050
- method: "DELETE",
6085
+ method: "GET",
6051
6086
  url: "/shops/{shop_id}/products/{product_id}",
6052
6087
  path: {
6053
6088
  product_id: data.productId,
@@ -6074,6 +6109,19 @@ var swapShopsShopIdProductsProductIdSwapPut = (data) => {
6074
6109
  }
6075
6110
  });
6076
6111
  };
6112
+ var getByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGet = (data) => {
6113
+ return request(OpenAPI, {
6114
+ method: "GET",
6115
+ url: "/shops/{shop_id}/products/{product_id}/with_attributes",
6116
+ path: {
6117
+ product_id: data.productId,
6118
+ shop_id: data.shopId
6119
+ },
6120
+ errors: {
6121
+ 422: "Validation Error"
6122
+ }
6123
+ });
6124
+ };
6077
6125
  var getMultiShopsShopIdProductsToTagsGet = (data = {}) => {
6078
6126
  return request(OpenAPI, {
6079
6127
  method: "GET",
@@ -6841,6 +6889,7 @@ export {
6841
6889
  $ConfigurationLanguageFields,
6842
6890
  $ConfigurationLanguages_Input,
6843
6891
  $ConfigurationLanguages_Output,
6892
+ $ConfigurationLegal,
6844
6893
  $ConfigurationV1_Input,
6845
6894
  $ConfigurationV1_Output,
6846
6895
  $DefaultPrice,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopvirge/shopvirge-client",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },