@shopvirge/shopvirge-client 0.2.4 → 0.2.6

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.
Files changed (3) hide show
  1. package/dist/index.d.ts +255 -48
  2. package/dist/index.js +181 -22
  3. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -357,6 +357,65 @@ declare const $AttributeWithOptionsSchema: {
357
357
  readonly required: readonly ["shop_id", "name", "id"];
358
358
  readonly title: "AttributeWithOptionsSchema";
359
359
  };
360
+ declare const $AvailableAttributeSchema: {
361
+ readonly properties: {
362
+ readonly id: {
363
+ readonly type: "string";
364
+ readonly format: "uuid";
365
+ readonly title: "Id";
366
+ };
367
+ readonly name: {
368
+ readonly type: "string";
369
+ readonly title: "Name";
370
+ };
371
+ readonly unit: {
372
+ readonly anyOf: readonly [{
373
+ readonly type: "string";
374
+ }, {
375
+ readonly type: "null";
376
+ }];
377
+ readonly title: "Unit";
378
+ };
379
+ readonly translation: {
380
+ readonly anyOf: readonly [{
381
+ readonly $ref: "#/components/schemas/AttributeTranslationBase";
382
+ }, {
383
+ readonly type: "null";
384
+ }];
385
+ };
386
+ readonly options: {
387
+ readonly items: {
388
+ readonly $ref: "#/components/schemas/AvailableOptionSchema";
389
+ };
390
+ readonly type: "array";
391
+ readonly title: "Options";
392
+ readonly default: readonly [];
393
+ };
394
+ };
395
+ readonly type: "object";
396
+ readonly required: readonly ["id", "name"];
397
+ readonly title: "AvailableAttributeSchema";
398
+ };
399
+ declare const $AvailableOptionSchema: {
400
+ readonly properties: {
401
+ readonly id: {
402
+ readonly type: "string";
403
+ readonly format: "uuid";
404
+ readonly title: "Id";
405
+ };
406
+ readonly value_key: {
407
+ readonly type: "string";
408
+ readonly title: "Value Key";
409
+ };
410
+ readonly product_count: {
411
+ readonly type: "integer";
412
+ readonly title: "Product Count";
413
+ };
414
+ };
415
+ readonly type: "object";
416
+ readonly required: readonly ["id", "value_key", "product_count"];
417
+ readonly title: "AvailableOptionSchema";
418
+ };
360
419
  declare const $Body_login_access_token_login_access_token_post: {
361
420
  readonly properties: {
362
421
  readonly grant_type: {
@@ -939,6 +998,28 @@ declare const $ConfigurationLanguages_Output: {
939
998
  readonly required: readonly ["main"];
940
999
  readonly title: "ConfigurationLanguages";
941
1000
  };
1001
+ declare const $ConfigurationLegal: {
1002
+ readonly properties: {
1003
+ readonly kvk_number: {
1004
+ readonly anyOf: readonly [{
1005
+ readonly type: "string";
1006
+ }, {
1007
+ readonly type: "null";
1008
+ }];
1009
+ readonly title: "Kvk Number";
1010
+ };
1011
+ readonly btw_number: {
1012
+ readonly anyOf: readonly [{
1013
+ readonly type: "string";
1014
+ }, {
1015
+ readonly type: "null";
1016
+ }];
1017
+ readonly title: "Btw Number";
1018
+ };
1019
+ };
1020
+ readonly type: "object";
1021
+ readonly title: "ConfigurationLegal";
1022
+ };
942
1023
  declare const $ConfigurationV1_Input: {
943
1024
  readonly properties: {
944
1025
  readonly short_shop_name: {
@@ -991,6 +1072,13 @@ declare const $ConfigurationV1_Input: {
991
1072
  readonly toggles: {
992
1073
  readonly $ref: "#/components/schemas/Toggles";
993
1074
  };
1075
+ readonly legal: {
1076
+ readonly anyOf: readonly [{
1077
+ readonly $ref: "#/components/schemas/ConfigurationLegal";
1078
+ }, {
1079
+ readonly type: "null";
1080
+ }];
1081
+ };
994
1082
  };
995
1083
  readonly type: "object";
996
1084
  readonly required: readonly ["short_shop_name", "logo", "main_banner", "languages", "contact", "toggles"];
@@ -1048,6 +1136,13 @@ declare const $ConfigurationV1_Output: {
1048
1136
  readonly toggles: {
1049
1137
  readonly $ref: "#/components/schemas/Toggles";
1050
1138
  };
1139
+ readonly legal: {
1140
+ readonly anyOf: readonly [{
1141
+ readonly $ref: "#/components/schemas/ConfigurationLegal";
1142
+ }, {
1143
+ readonly type: "null";
1144
+ }];
1145
+ };
1051
1146
  };
1052
1147
  readonly type: "object";
1053
1148
  readonly required: readonly ["short_shop_name", "logo", "main_banner", "languages", "contact", "toggles"];
@@ -3711,6 +3806,11 @@ declare const $Toggles: {
3711
3806
  readonly title: "Enable Stock On Products";
3712
3807
  readonly default: false;
3713
3808
  };
3809
+ readonly enable_attributes_for_categories: {
3810
+ readonly type: "boolean";
3811
+ readonly title: "Enable Attributes For Categories";
3812
+ readonly default: false;
3813
+ };
3714
3814
  };
3715
3815
  readonly type: "object";
3716
3816
  readonly title: "Toggles";
@@ -3937,6 +4037,18 @@ type AttributeWithOptionsSchema = {
3937
4037
  id: string;
3938
4038
  options?: Array<AttributeOptionSchema>;
3939
4039
  };
4040
+ type AvailableAttributeSchema = {
4041
+ id: string;
4042
+ name: string;
4043
+ unit?: string | null;
4044
+ translation?: AttributeTranslationBase | null;
4045
+ options?: Array<AvailableOptionSchema>;
4046
+ };
4047
+ type AvailableOptionSchema = {
4048
+ id: string;
4049
+ value_key: string;
4050
+ product_count: number;
4051
+ };
3940
4052
  type Body_login_access_token_login_access_token_post = {
3941
4053
  grant_type?: string | null;
3942
4054
  username: string;
@@ -4067,6 +4179,10 @@ type ConfigurationLanguages_Output = {
4067
4179
  alt1?: ConfigurationLanguageFields | null;
4068
4180
  alt2?: ConfigurationLanguageFields | null;
4069
4181
  };
4182
+ type ConfigurationLegal = {
4183
+ kvk_number?: string | null;
4184
+ btw_number?: string | null;
4185
+ };
4070
4186
  type ConfigurationV1_Input = {
4071
4187
  short_shop_name: string;
4072
4188
  logo: string;
@@ -4078,6 +4194,7 @@ type ConfigurationV1_Input = {
4078
4194
  google_analytics_id?: string | null;
4079
4195
  contact: ConfigurationContact;
4080
4196
  toggles: Toggles;
4197
+ legal?: ConfigurationLegal | null;
4081
4198
  };
4082
4199
  type ConfigurationV1_Output = {
4083
4200
  short_shop_name: string;
@@ -4090,6 +4207,7 @@ type ConfigurationV1_Output = {
4090
4207
  google_analytics_id?: string | null;
4091
4208
  contact: ConfigurationContact;
4092
4209
  toggles: Toggles;
4210
+ legal?: ConfigurationLegal | null;
4093
4211
  };
4094
4212
  type DefaultPrice = {
4095
4213
  id?: string | null;
@@ -4632,6 +4750,7 @@ type Toggles = {
4632
4750
  language_alt2_enabled?: boolean;
4633
4751
  product_call_to_action_enabled?: boolean;
4634
4752
  enable_stock_on_products?: boolean;
4753
+ enable_attributes_for_categories?: boolean;
4635
4754
  };
4636
4755
  type User = {
4637
4756
  email?: string | null;
@@ -4959,6 +5078,30 @@ type SwapShopsShopIdCategoriesCategoryIdSwapPutData = {
4959
5078
  shopId: string;
4960
5079
  };
4961
5080
  type SwapShopsShopIdCategoriesCategoryIdSwapPutResponse = unknown;
5081
+ type GetAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGetData = {
5082
+ categoryId: string;
5083
+ shopId: string;
5084
+ };
5085
+ type GetAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGetResponse = Array<AvailableAttributeSchema>;
5086
+ type GetCategoryProductsShopsShopIdCategoriesCategoryIdProductsGetData = {
5087
+ attributeId?: string | null;
5088
+ attributeName?: string | null;
5089
+ categoryId: string;
5090
+ /**
5091
+ * 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.
5092
+ */
5093
+ filter?: Array<string>;
5094
+ limit?: number;
5095
+ optionId?: Array<string>;
5096
+ optionValueKey?: Array<string>;
5097
+ shopId: string;
5098
+ skip?: number;
5099
+ /**
5100
+ * The sort will accept parameters like `col:ASC` or `col:DESC` and will split on the `:`. If it does not find a `:` it will sort ascending on that column.
5101
+ */
5102
+ sort?: Array<string>;
5103
+ };
5104
+ type GetCategoryProductsShopsShopIdCategoriesCategoryIdProductsGetResponse = Array<ProductWithAttributes>;
4962
5105
  type GetMultiShopsShopIdCategoriesImagesGetData = {
4963
5106
  /**
4964
5107
  * 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.
@@ -5028,16 +5171,6 @@ type GetMultiWithAttributesShopsShopIdProductsWithAttributesGetData = {
5028
5171
  sort?: Array<string>;
5029
5172
  };
5030
5173
  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
5174
  type UpdateShopsShopIdProductsProductIdPutData = {
5042
5175
  productId: string;
5043
5176
  requestBody: ProductUpdate;
@@ -5049,12 +5182,22 @@ type DeleteShopsShopIdProductsProductIdDeleteData = {
5049
5182
  shopId: string;
5050
5183
  };
5051
5184
  type DeleteShopsShopIdProductsProductIdDeleteResponse = void;
5185
+ type GetByIdShopsShopIdProductsProductIdGetData = {
5186
+ productId: string;
5187
+ shopId: string;
5188
+ };
5189
+ type GetByIdShopsShopIdProductsProductIdGetResponse = ProductWithDetailsAndPrices;
5052
5190
  type SwapShopsShopIdProductsProductIdSwapPutData = {
5053
5191
  moveUp: boolean;
5054
5192
  productId: string;
5055
5193
  shopId: string;
5056
5194
  };
5057
5195
  type SwapShopsShopIdProductsProductIdSwapPutResponse = unknown;
5196
+ type GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetData = {
5197
+ productId: string;
5198
+ shopId: string;
5199
+ };
5200
+ type GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetResponse = ProductWithAttributes;
5058
5201
  type GetMultiShopsShopIdProductsToTagsGetData = {
5059
5202
  /**
5060
5203
  * 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.
@@ -6184,6 +6327,36 @@ type $OpenApiTs = {
6184
6327
  };
6185
6328
  };
6186
6329
  };
6330
+ '/shops/{shop_id}/categories/{category_id}/available-attributes': {
6331
+ get: {
6332
+ req: GetAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGetData;
6333
+ res: {
6334
+ /**
6335
+ * Successful Response
6336
+ */
6337
+ 200: Array<AvailableAttributeSchema>;
6338
+ /**
6339
+ * Validation Error
6340
+ */
6341
+ 422: HTTPValidationError;
6342
+ };
6343
+ };
6344
+ };
6345
+ '/shops/{shop_id}/categories/{category_id}/products': {
6346
+ get: {
6347
+ req: GetCategoryProductsShopsShopIdCategoriesCategoryIdProductsGetData;
6348
+ res: {
6349
+ /**
6350
+ * Successful Response
6351
+ */
6352
+ 200: Array<ProductWithAttributes>;
6353
+ /**
6354
+ * Validation Error
6355
+ */
6356
+ 422: HTTPValidationError;
6357
+ };
6358
+ };
6359
+ };
6187
6360
  '/shops/{shop_id}/categories-images/': {
6188
6361
  get: {
6189
6362
  req: GetMultiShopsShopIdCategoriesImagesGetData;
@@ -6300,55 +6473,55 @@ type $OpenApiTs = {
6300
6473
  };
6301
6474
  };
6302
6475
  };
6303
- '/shops/{shop_id}/products/{product_id}/with_attributes': {
6304
- get: {
6305
- req: GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetData;
6476
+ '/shops/{shop_id}/products/{product_id}': {
6477
+ put: {
6478
+ req: UpdateShopsShopIdProductsProductIdPutData;
6306
6479
  res: {
6307
6480
  /**
6308
6481
  * Successful Response
6309
6482
  */
6310
- 200: ProductWithAttributes;
6483
+ 201: unknown;
6311
6484
  /**
6312
6485
  * Validation Error
6313
6486
  */
6314
6487
  422: HTTPValidationError;
6315
6488
  };
6316
6489
  };
6317
- };
6318
- '/shops/{shop_id}/products/{product_id}': {
6319
- get: {
6320
- req: GetByIdShopsShopIdProductsProductIdGetData;
6490
+ delete: {
6491
+ req: DeleteShopsShopIdProductsProductIdDeleteData;
6321
6492
  res: {
6322
6493
  /**
6323
6494
  * Successful Response
6324
6495
  */
6325
- 200: ProductWithDetailsAndPrices;
6496
+ 204: void;
6326
6497
  /**
6327
6498
  * Validation Error
6328
6499
  */
6329
6500
  422: HTTPValidationError;
6330
6501
  };
6331
6502
  };
6332
- put: {
6333
- req: UpdateShopsShopIdProductsProductIdPutData;
6503
+ get: {
6504
+ req: GetByIdShopsShopIdProductsProductIdGetData;
6334
6505
  res: {
6335
6506
  /**
6336
6507
  * Successful Response
6337
6508
  */
6338
- 201: unknown;
6509
+ 200: ProductWithDetailsAndPrices;
6339
6510
  /**
6340
6511
  * Validation Error
6341
6512
  */
6342
6513
  422: HTTPValidationError;
6343
6514
  };
6344
6515
  };
6345
- delete: {
6346
- req: DeleteShopsShopIdProductsProductIdDeleteData;
6516
+ };
6517
+ '/shops/{shop_id}/products/{product_id}/swap': {
6518
+ put: {
6519
+ req: SwapShopsShopIdProductsProductIdSwapPutData;
6347
6520
  res: {
6348
6521
  /**
6349
6522
  * Successful Response
6350
6523
  */
6351
- 204: void;
6524
+ 201: unknown;
6352
6525
  /**
6353
6526
  * Validation Error
6354
6527
  */
@@ -6356,14 +6529,14 @@ type $OpenApiTs = {
6356
6529
  };
6357
6530
  };
6358
6531
  };
6359
- '/shops/{shop_id}/products/{product_id}/swap': {
6360
- put: {
6361
- req: SwapShopsShopIdProductsProductIdSwapPutData;
6532
+ '/shops/{shop_id}/products/{product_id}/with_attributes': {
6533
+ get: {
6534
+ req: GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetData;
6362
6535
  res: {
6363
6536
  /**
6364
6537
  * Successful Response
6365
6538
  */
6366
- 201: unknown;
6539
+ 200: ProductWithAttributes;
6367
6540
  /**
6368
6541
  * Validation Error
6369
6542
  */
@@ -7634,6 +7807,40 @@ declare const getByNameShopsShopIdCategoriesNameNameGet: (data: GetByNameShopsSh
7634
7807
  * @throws ApiError
7635
7808
  */
7636
7809
  declare const swapShopsShopIdCategoriesCategoryIdSwapPut: (data: SwapShopsShopIdCategoriesCategoryIdSwapPutData) => CancelablePromise<SwapShopsShopIdCategoriesCategoryIdSwapPutResponse>;
7810
+ /**
7811
+ * Get available filter attributes for a category
7812
+ * Returns attributes actually used by products in this category, with option counts.
7813
+ * @param data The data for the request.
7814
+ * @param data.shopId
7815
+ * @param data.categoryId
7816
+ * @returns AvailableAttributeSchema Successful Response
7817
+ * @throws ApiError
7818
+ */
7819
+ declare const getAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGet: (data: GetAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGetData) => CancelablePromise<GetAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGetResponse>;
7820
+ /**
7821
+ * List products in a category with attribute filters
7822
+ * Fetch products in a category along with their attributes. Supports attribute-based filtering.
7823
+ *
7824
+ * Attribute filters (mutually exclusive — only one can be used at a time):
7825
+ * * `option_id` array[UUID]: Filter by attribute option UUIDs.
7826
+ * * `attribute_id` UUID: Filter by attribute UUID.
7827
+ * * `option_value_key` array[str]: Filter by option value keys (e.g., 'S', 'RED').
7828
+ * * `attribute_name` str: Filter by attribute name.
7829
+ * @param data The data for the request.
7830
+ * @param data.shopId
7831
+ * @param data.categoryId
7832
+ * @param data.optionId
7833
+ * @param data.attributeId
7834
+ * @param data.optionValueKey
7835
+ * @param data.attributeName
7836
+ * @param data.skip
7837
+ * @param data.limit
7838
+ * @param data.filter This filter can accept search query's like `key:value` and will split on the `:`. If it detects more than one `:`, or does not find a `:` it will search for the string in all columns.
7839
+ * @param data.sort The sort will accept parameters like `col:ASC` or `col:DESC` and will split on the `:`. If it does not find a `:` it will sort ascending on that column.
7840
+ * @returns ProductWithAttributes Successful Response
7841
+ * @throws ApiError
7842
+ */
7843
+ declare const getCategoryProductsShopsShopIdCategoriesCategoryIdProductsGet: (data: GetCategoryProductsShopsShopIdCategoriesCategoryIdProductsGetData) => CancelablePromise<GetCategoryProductsShopsShopIdCategoriesCategoryIdProductsGetResponse>;
7637
7844
  /**
7638
7845
  * Get Multi
7639
7846
  * List all product category images
@@ -7728,24 +7935,6 @@ declare const createShopsShopIdProductsPost: (data: CreateShopsShopIdProductsPos
7728
7935
  * @throws ApiError
7729
7936
  */
7730
7937
  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
7938
  /**
7750
7939
  * Update
7751
7940
  * @param data The data for the request.
@@ -7765,6 +7954,15 @@ declare const updateShopsShopIdProductsProductIdPut: (data: UpdateShopsShopIdPro
7765
7954
  * @throws ApiError
7766
7955
  */
7767
7956
  declare const deleteShopsShopIdProductsProductIdDelete: (data: DeleteShopsShopIdProductsProductIdDeleteData) => CancelablePromise<DeleteShopsShopIdProductsProductIdDeleteResponse>;
7957
+ /**
7958
+ * Get By Id
7959
+ * @param data The data for the request.
7960
+ * @param data.productId
7961
+ * @param data.shopId
7962
+ * @returns ProductWithDetailsAndPrices Successful Response
7963
+ * @throws ApiError
7964
+ */
7965
+ declare const getByIdShopsShopIdProductsProductIdGet: (data: GetByIdShopsShopIdProductsProductIdGetData) => CancelablePromise<GetByIdShopsShopIdProductsProductIdGetResponse>;
7768
7966
  /**
7769
7967
  * Swap
7770
7968
  * @param data The data for the request.
@@ -7775,6 +7973,15 @@ declare const deleteShopsShopIdProductsProductIdDelete: (data: DeleteShopsShopId
7775
7973
  * @throws ApiError
7776
7974
  */
7777
7975
  declare const swapShopsShopIdProductsProductIdSwapPut: (data: SwapShopsShopIdProductsProductIdSwapPutData) => CancelablePromise<SwapShopsShopIdProductsProductIdSwapPutResponse>;
7976
+ /**
7977
+ * Get By Id With Attributes
7978
+ * @param data The data for the request.
7979
+ * @param data.productId
7980
+ * @param data.shopId
7981
+ * @returns ProductWithAttributes Successful Response
7982
+ * @throws ApiError
7983
+ */
7984
+ declare const getByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGet: (data: GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetData) => CancelablePromise<GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetResponse>;
7778
7985
  /**
7779
7986
  * Get Multi
7780
7987
  * List prices for a product_to_tag
@@ -8333,4 +8540,4 @@ declare const updateFaqFaqIdPut: (data: UpdateFaqFaqIdPutData) => CancelableProm
8333
8540
  */
8334
8541
  declare const deleteFaqFaqIdDelete: (data: DeleteFaqFaqIdDeleteData) => CancelablePromise<DeleteFaqFaqIdDeleteResponse>;
8335
8542
 
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 };
8543
+ export { $AccountCreate, $AccountSchema, $AccountUpdate, $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, $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 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 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 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, 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, 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.6",
130
130
  WITH_CREDENTIALS: false,
131
131
  interceptors: {
132
132
  request: new Interceptors(),
@@ -443,6 +443,71 @@ var $AttributeWithOptionsSchema = {
443
443
  required: ["shop_id", "name", "id"],
444
444
  title: "AttributeWithOptionsSchema"
445
445
  };
446
+ var $AvailableAttributeSchema = {
447
+ properties: {
448
+ id: {
449
+ type: "string",
450
+ format: "uuid",
451
+ title: "Id"
452
+ },
453
+ name: {
454
+ type: "string",
455
+ title: "Name"
456
+ },
457
+ unit: {
458
+ anyOf: [
459
+ {
460
+ type: "string"
461
+ },
462
+ {
463
+ type: "null"
464
+ }
465
+ ],
466
+ title: "Unit"
467
+ },
468
+ translation: {
469
+ anyOf: [
470
+ {
471
+ $ref: "#/components/schemas/AttributeTranslationBase"
472
+ },
473
+ {
474
+ type: "null"
475
+ }
476
+ ]
477
+ },
478
+ options: {
479
+ items: {
480
+ $ref: "#/components/schemas/AvailableOptionSchema"
481
+ },
482
+ type: "array",
483
+ title: "Options",
484
+ default: []
485
+ }
486
+ },
487
+ type: "object",
488
+ required: ["id", "name"],
489
+ title: "AvailableAttributeSchema"
490
+ };
491
+ var $AvailableOptionSchema = {
492
+ properties: {
493
+ id: {
494
+ type: "string",
495
+ format: "uuid",
496
+ title: "Id"
497
+ },
498
+ value_key: {
499
+ type: "string",
500
+ title: "Value Key"
501
+ },
502
+ product_count: {
503
+ type: "integer",
504
+ title: "Product Count"
505
+ }
506
+ },
507
+ type: "object",
508
+ required: ["id", "value_key", "product_count"],
509
+ title: "AvailableOptionSchema"
510
+ };
446
511
  var $Body_login_access_token_login_access_token_post = {
447
512
  properties: {
448
513
  grant_type: {
@@ -1166,6 +1231,34 @@ var $ConfigurationLanguages_Output = {
1166
1231
  required: ["main"],
1167
1232
  title: "ConfigurationLanguages"
1168
1233
  };
1234
+ var $ConfigurationLegal = {
1235
+ properties: {
1236
+ kvk_number: {
1237
+ anyOf: [
1238
+ {
1239
+ type: "string"
1240
+ },
1241
+ {
1242
+ type: "null"
1243
+ }
1244
+ ],
1245
+ title: "Kvk Number"
1246
+ },
1247
+ btw_number: {
1248
+ anyOf: [
1249
+ {
1250
+ type: "string"
1251
+ },
1252
+ {
1253
+ type: "null"
1254
+ }
1255
+ ],
1256
+ title: "Btw Number"
1257
+ }
1258
+ },
1259
+ type: "object",
1260
+ title: "ConfigurationLegal"
1261
+ };
1169
1262
  var $ConfigurationV1_Input = {
1170
1263
  properties: {
1171
1264
  short_shop_name: {
@@ -1226,6 +1319,16 @@ var $ConfigurationV1_Input = {
1226
1319
  },
1227
1320
  toggles: {
1228
1321
  $ref: "#/components/schemas/Toggles"
1322
+ },
1323
+ legal: {
1324
+ anyOf: [
1325
+ {
1326
+ $ref: "#/components/schemas/ConfigurationLegal"
1327
+ },
1328
+ {
1329
+ type: "null"
1330
+ }
1331
+ ]
1229
1332
  }
1230
1333
  },
1231
1334
  type: "object",
@@ -1299,6 +1402,16 @@ var $ConfigurationV1_Output = {
1299
1402
  },
1300
1403
  toggles: {
1301
1404
  $ref: "#/components/schemas/Toggles"
1405
+ },
1406
+ legal: {
1407
+ anyOf: [
1408
+ {
1409
+ $ref: "#/components/schemas/ConfigurationLegal"
1410
+ },
1411
+ {
1412
+ type: "null"
1413
+ }
1414
+ ]
1302
1415
  }
1303
1416
  },
1304
1417
  type: "object",
@@ -4691,6 +4804,11 @@ var $Toggles = {
4691
4804
  type: "boolean",
4692
4805
  title: "Enable Stock On Products",
4693
4806
  default: false
4807
+ },
4808
+ enable_attributes_for_categories: {
4809
+ type: "boolean",
4810
+ title: "Enable Attributes For Categories",
4811
+ default: false
4694
4812
  }
4695
4813
  },
4696
4814
  type: "object",
@@ -5882,6 +6000,42 @@ var swapShopsShopIdCategoriesCategoryIdSwapPut = (data) => {
5882
6000
  }
5883
6001
  });
5884
6002
  };
6003
+ var getAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGet = (data) => {
6004
+ return request(OpenAPI, {
6005
+ method: "GET",
6006
+ url: "/shops/{shop_id}/categories/{category_id}/available-attributes",
6007
+ path: {
6008
+ shop_id: data.shopId,
6009
+ category_id: data.categoryId
6010
+ },
6011
+ errors: {
6012
+ 422: "Validation Error"
6013
+ }
6014
+ });
6015
+ };
6016
+ var getCategoryProductsShopsShopIdCategoriesCategoryIdProductsGet = (data) => {
6017
+ return request(OpenAPI, {
6018
+ method: "GET",
6019
+ url: "/shops/{shop_id}/categories/{category_id}/products",
6020
+ path: {
6021
+ shop_id: data.shopId,
6022
+ category_id: data.categoryId
6023
+ },
6024
+ query: {
6025
+ option_id: data.optionId,
6026
+ attribute_id: data.attributeId,
6027
+ option_value_key: data.optionValueKey,
6028
+ attribute_name: data.attributeName,
6029
+ skip: data.skip,
6030
+ limit: data.limit,
6031
+ filter: data.filter,
6032
+ sort: data.sort
6033
+ },
6034
+ errors: {
6035
+ 422: "Validation Error"
6036
+ }
6037
+ });
6038
+ };
5885
6039
  var getMultiShopsShopIdCategoriesImagesGet = (data = {}) => {
5886
6040
  return request(OpenAPI, {
5887
6041
  method: "GET",
@@ -6004,50 +6158,37 @@ var getMultiWithAttributesShopsShopIdProductsWithAttributesGet = (data) => {
6004
6158
  }
6005
6159
  });
6006
6160
  };
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) => {
6161
+ var updateShopsShopIdProductsProductIdPut = (data) => {
6021
6162
  return request(OpenAPI, {
6022
- method: "GET",
6163
+ method: "PUT",
6023
6164
  url: "/shops/{shop_id}/products/{product_id}",
6024
6165
  path: {
6025
6166
  product_id: data.productId,
6026
6167
  shop_id: data.shopId
6027
6168
  },
6169
+ body: data.requestBody,
6170
+ mediaType: "application/json",
6028
6171
  errors: {
6029
6172
  422: "Validation Error"
6030
6173
  }
6031
6174
  });
6032
6175
  };
6033
- var updateShopsShopIdProductsProductIdPut = (data) => {
6176
+ var deleteShopsShopIdProductsProductIdDelete = (data) => {
6034
6177
  return request(OpenAPI, {
6035
- method: "PUT",
6178
+ method: "DELETE",
6036
6179
  url: "/shops/{shop_id}/products/{product_id}",
6037
6180
  path: {
6038
6181
  product_id: data.productId,
6039
6182
  shop_id: data.shopId
6040
6183
  },
6041
- body: data.requestBody,
6042
- mediaType: "application/json",
6043
6184
  errors: {
6044
6185
  422: "Validation Error"
6045
6186
  }
6046
6187
  });
6047
6188
  };
6048
- var deleteShopsShopIdProductsProductIdDelete = (data) => {
6189
+ var getByIdShopsShopIdProductsProductIdGet = (data) => {
6049
6190
  return request(OpenAPI, {
6050
- method: "DELETE",
6191
+ method: "GET",
6051
6192
  url: "/shops/{shop_id}/products/{product_id}",
6052
6193
  path: {
6053
6194
  product_id: data.productId,
@@ -6074,6 +6215,19 @@ var swapShopsShopIdProductsProductIdSwapPut = (data) => {
6074
6215
  }
6075
6216
  });
6076
6217
  };
6218
+ var getByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGet = (data) => {
6219
+ return request(OpenAPI, {
6220
+ method: "GET",
6221
+ url: "/shops/{shop_id}/products/{product_id}/with_attributes",
6222
+ path: {
6223
+ product_id: data.productId,
6224
+ shop_id: data.shopId
6225
+ },
6226
+ errors: {
6227
+ 422: "Validation Error"
6228
+ }
6229
+ });
6230
+ };
6077
6231
  var getMultiShopsShopIdProductsToTagsGet = (data = {}) => {
6078
6232
  return request(OpenAPI, {
6079
6233
  method: "GET",
@@ -6826,6 +6980,8 @@ export {
6826
6980
  $AttributeTranslationBase,
6827
6981
  $AttributeUpdate,
6828
6982
  $AttributeWithOptionsSchema,
6983
+ $AvailableAttributeSchema,
6984
+ $AvailableOptionSchema,
6829
6985
  $Body_login_access_token_login_access_token_post,
6830
6986
  $Body_reset_password_reset_password__post,
6831
6987
  $Body_update_user_me_users_me_put,
@@ -6841,6 +6997,7 @@ export {
6841
6997
  $ConfigurationLanguageFields,
6842
6998
  $ConfigurationLanguages_Input,
6843
6999
  $ConfigurationLanguages_Output,
7000
+ $ConfigurationLegal,
6844
7001
  $ConfigurationV1_Input,
6845
7002
  $ConfigurationV1_Output,
6846
7003
  $DefaultPrice,
@@ -6941,6 +7098,7 @@ export {
6941
7098
  formInfoRequestFormPost,
6942
7099
  formTestFormsPost,
6943
7100
  getAllowedIpsShopsAllowedIpsIdGet,
7101
+ getAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGet,
6944
7102
  getByIdFaqIdGet,
6945
7103
  getByIdLicensesIdGet,
6946
7104
  getByIdOrdersIdGet,
@@ -6962,6 +7120,7 @@ export {
6962
7120
  getByNameShopsShopIdTagsNameNameGet,
6963
7121
  getCacheStatusShopsCacheStatusIdGet,
6964
7122
  getCartProductsShopsShopIdPricesPost,
7123
+ getCategoryProductsShopsShopIdCategoriesCategoryIdProductsGet,
6965
7124
  getConfigShopsConfigIdGet,
6966
7125
  getFormsFormsGet,
6967
7126
  getHealthHealthGet,
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.6",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },