@shopvirge/shopvirge-client 0.3.2 → 0.4.4

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 +1287 -796
  2. package/dist/index.js +792 -443
  3. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -592,87 +592,6 @@ declare const $AvailableOptionSchema: {
592
592
  readonly required: readonly ["id", "value_key", "product_count"];
593
593
  readonly title: "AvailableOptionSchema";
594
594
  };
595
- declare const $Body_login_access_token_login_access_token_post: {
596
- readonly properties: {
597
- readonly grant_type: {
598
- readonly anyOf: readonly [{
599
- readonly type: "string";
600
- readonly pattern: "^password$";
601
- }, {
602
- readonly type: "null";
603
- }];
604
- readonly title: "Grant Type";
605
- };
606
- readonly username: {
607
- readonly type: "string";
608
- readonly title: "Username";
609
- };
610
- readonly password: {
611
- readonly type: "string";
612
- readonly format: "password";
613
- readonly title: "Password";
614
- };
615
- readonly scope: {
616
- readonly type: "string";
617
- readonly title: "Scope";
618
- readonly default: "";
619
- };
620
- readonly client_id: {
621
- readonly anyOf: readonly [{
622
- readonly type: "string";
623
- }, {
624
- readonly type: "null";
625
- }];
626
- readonly title: "Client Id";
627
- };
628
- readonly client_secret: {
629
- readonly anyOf: readonly [{
630
- readonly type: "string";
631
- }, {
632
- readonly type: "null";
633
- }];
634
- readonly format: "password";
635
- readonly title: "Client Secret";
636
- };
637
- };
638
- readonly type: "object";
639
- readonly required: readonly ["username", "password"];
640
- readonly title: "Body_login_access_token_login_access_token_post";
641
- };
642
- declare const $Body_reset_password_reset_password__post: {
643
- readonly properties: {
644
- readonly token: {
645
- readonly type: "string";
646
- readonly title: "Token";
647
- };
648
- readonly new_password: {
649
- readonly type: "string";
650
- readonly title: "New Password";
651
- };
652
- };
653
- readonly type: "object";
654
- readonly required: readonly ["token", "new_password"];
655
- readonly title: "Body_reset_password_reset_password__post";
656
- };
657
- declare const $Body_update_user_me_users_me_put: {
658
- readonly properties: {
659
- readonly password: {
660
- readonly type: "string";
661
- readonly title: "Password";
662
- };
663
- readonly full_name: {
664
- readonly type: "string";
665
- readonly title: "Full Name";
666
- };
667
- readonly email: {
668
- readonly type: "string";
669
- readonly format: "email";
670
- readonly title: "Email";
671
- };
672
- };
673
- readonly type: "object";
674
- readonly title: "Body_update_user_me_users_me_put";
675
- };
676
595
  declare const $Cart: {
677
596
  readonly properties: {
678
597
  readonly products: {
@@ -1844,17 +1763,6 @@ declare const $LinkStripeBody: {
1844
1763
  readonly required: readonly ["stripe_customer_id"];
1845
1764
  readonly title: "LinkStripeBody";
1846
1765
  };
1847
- declare const $Msg: {
1848
- readonly properties: {
1849
- readonly msg: {
1850
- readonly type: "string";
1851
- readonly title: "Msg";
1852
- };
1853
- };
1854
- readonly type: "object";
1855
- readonly required: readonly ["msg"];
1856
- readonly title: "Msg";
1857
- };
1858
1766
  declare const $MyShopsResponse: {
1859
1767
  readonly properties: {
1860
1768
  readonly shops: {
@@ -2264,15 +2172,6 @@ declare const $OrderSchema: {
2264
2172
  }];
2265
2173
  readonly title: "Completed At";
2266
2174
  };
2267
- readonly completed_by: {
2268
- readonly anyOf: readonly [{
2269
- readonly type: "string";
2270
- readonly format: "uuid";
2271
- }, {
2272
- readonly type: "null";
2273
- }];
2274
- readonly title: "Completed By";
2275
- };
2276
2175
  readonly account_name: {
2277
2176
  readonly anyOf: readonly [{
2278
2177
  readonly type: "string";
@@ -2289,17 +2188,9 @@ declare const $OrderSchema: {
2289
2188
  }];
2290
2189
  readonly title: "Shop Name";
2291
2190
  };
2292
- readonly completed_by_name: {
2293
- readonly anyOf: readonly [{
2294
- readonly type: "string";
2295
- }, {
2296
- readonly type: "null";
2297
- }];
2298
- readonly title: "Completed By Name";
2299
- };
2300
2191
  };
2301
2192
  readonly type: "object";
2302
- readonly required: readonly ["total", "notes", "customer_order_id", "status", "id", "shop_id", "order_info", "created_at", "completed_by", "account_name", "shop_name"];
2193
+ readonly required: readonly ["total", "notes", "customer_order_id", "status", "id", "shop_id", "order_info", "created_at", "account_name", "shop_name"];
2303
2194
  readonly title: "OrderSchema";
2304
2195
  };
2305
2196
  declare const $OrderUpdate: {
@@ -2586,8 +2477,12 @@ declare const $ProductCreate: {
2586
2477
  readonly title: "Shop Id";
2587
2478
  };
2588
2479
  readonly category_id: {
2589
- readonly type: "string";
2590
- readonly format: "uuid";
2480
+ readonly anyOf: readonly [{
2481
+ readonly type: "string";
2482
+ readonly format: "uuid";
2483
+ }, {
2484
+ readonly type: "null";
2485
+ }];
2591
2486
  readonly title: "Category Id";
2592
2487
  };
2593
2488
  readonly price: {
@@ -2697,6 +2592,14 @@ declare const $ProductCreate: {
2697
2592
  readonly title: "Stock";
2698
2593
  readonly default: 1;
2699
2594
  };
2595
+ readonly sku: {
2596
+ readonly anyOf: readonly [{
2597
+ readonly type: "string";
2598
+ }, {
2599
+ readonly type: "null";
2600
+ }];
2601
+ readonly title: "Sku";
2602
+ };
2700
2603
  readonly image_1: {
2701
2604
  readonly anyOf: readonly [{
2702
2605
  readonly additionalProperties: true;
@@ -2768,7 +2671,7 @@ declare const $ProductCreate: {
2768
2671
  };
2769
2672
  };
2770
2673
  readonly type: "object";
2771
- readonly required: readonly ["shop_id", "category_id", "max_one", "shippable", "featured", "new_product", "tax_category", "image_1", "image_2", "image_3", "image_4", "image_5", "image_6", "translation"];
2674
+ readonly required: readonly ["shop_id", "max_one", "shippable", "featured", "new_product", "tax_category", "image_1", "image_2", "image_3", "image_4", "image_5", "image_6", "translation"];
2772
2675
  readonly title: "ProductCreate";
2773
2676
  };
2774
2677
  declare const $ProductResponse: {
@@ -2777,6 +2680,22 @@ declare const $ProductResponse: {
2777
2680
  readonly type: "string";
2778
2681
  readonly title: "Id";
2779
2682
  };
2683
+ readonly short_id: {
2684
+ readonly anyOf: readonly [{
2685
+ readonly type: "string";
2686
+ }, {
2687
+ readonly type: "null";
2688
+ }];
2689
+ readonly title: "Short Id";
2690
+ };
2691
+ readonly sku: {
2692
+ readonly anyOf: readonly [{
2693
+ readonly type: "string";
2694
+ }, {
2695
+ readonly type: "null";
2696
+ }];
2697
+ readonly title: "Sku";
2698
+ };
2780
2699
  readonly category: {
2781
2700
  readonly type: "string";
2782
2701
  readonly title: "Category";
@@ -3114,8 +3033,12 @@ declare const $ProductUpdate: {
3114
3033
  readonly title: "Shop Id";
3115
3034
  };
3116
3035
  readonly category_id: {
3117
- readonly type: "string";
3118
- readonly format: "uuid";
3036
+ readonly anyOf: readonly [{
3037
+ readonly type: "string";
3038
+ readonly format: "uuid";
3039
+ }, {
3040
+ readonly type: "null";
3041
+ }];
3119
3042
  readonly title: "Category Id";
3120
3043
  };
3121
3044
  readonly price: {
@@ -3225,6 +3148,14 @@ declare const $ProductUpdate: {
3225
3148
  readonly title: "Stock";
3226
3149
  readonly default: 1;
3227
3150
  };
3151
+ readonly sku: {
3152
+ readonly anyOf: readonly [{
3153
+ readonly type: "string";
3154
+ }, {
3155
+ readonly type: "null";
3156
+ }];
3157
+ readonly title: "Sku";
3158
+ };
3228
3159
  readonly image_1: {
3229
3160
  readonly anyOf: readonly [{
3230
3161
  readonly additionalProperties: true;
@@ -3305,7 +3236,7 @@ declare const $ProductUpdate: {
3305
3236
  };
3306
3237
  };
3307
3238
  readonly type: "object";
3308
- readonly required: readonly ["shop_id", "category_id", "max_one", "shippable", "featured", "new_product", "tax_category", "image_1", "image_2", "image_3", "image_4", "image_5", "image_6", "translation"];
3239
+ readonly required: readonly ["shop_id", "max_one", "shippable", "featured", "new_product", "tax_category", "image_1", "image_2", "image_3", "image_4", "image_5", "image_6", "translation"];
3309
3240
  readonly title: "ProductUpdate";
3310
3241
  };
3311
3242
  declare const $ProductWithAttributes: {
@@ -3335,8 +3266,12 @@ declare const $ProductWithDefaultPrice: {
3335
3266
  readonly title: "Shop Id";
3336
3267
  };
3337
3268
  readonly category_id: {
3338
- readonly type: "string";
3339
- readonly format: "uuid";
3269
+ readonly anyOf: readonly [{
3270
+ readonly type: "string";
3271
+ readonly format: "uuid";
3272
+ }, {
3273
+ readonly type: "null";
3274
+ }];
3340
3275
  readonly title: "Category Id";
3341
3276
  };
3342
3277
  readonly price: {
@@ -3434,6 +3369,14 @@ declare const $ProductWithDefaultPrice: {
3434
3369
  readonly title: "Stock";
3435
3370
  readonly default: 1;
3436
3371
  };
3372
+ readonly sku: {
3373
+ readonly anyOf: readonly [{
3374
+ readonly type: "string";
3375
+ }, {
3376
+ readonly type: "null";
3377
+ }];
3378
+ readonly title: "Sku";
3379
+ };
3437
3380
  readonly image_1: {
3438
3381
  readonly anyOf: readonly [{
3439
3382
  readonly additionalProperties: true;
@@ -3508,6 +3451,14 @@ declare const $ProductWithDefaultPrice: {
3508
3451
  readonly format: "uuid";
3509
3452
  readonly title: "Id";
3510
3453
  };
3454
+ readonly short_id: {
3455
+ readonly anyOf: readonly [{
3456
+ readonly type: "string";
3457
+ }, {
3458
+ readonly type: "null";
3459
+ }];
3460
+ readonly title: "Short Id";
3461
+ };
3511
3462
  readonly modified_at: {
3512
3463
  readonly anyOf: readonly [{
3513
3464
  readonly type: "string";
@@ -3541,7 +3492,7 @@ declare const $ProductWithDefaultPrice: {
3541
3492
  };
3542
3493
  };
3543
3494
  readonly type: "object";
3544
- readonly required: readonly ["shop_id", "category_id", "max_one", "shippable", "featured", "new_product", "tax_category", "image_1", "image_2", "image_3", "image_4", "image_5", "image_6", "translation", "id"];
3495
+ readonly required: readonly ["shop_id", "max_one", "shippable", "featured", "new_product", "tax_category", "image_1", "image_2", "image_3", "image_4", "image_5", "image_6", "translation", "id"];
3545
3496
  readonly title: "ProductWithDefaultPrice";
3546
3497
  };
3547
3498
  declare const $ProductWithDetailsAndPrices: {
@@ -3552,8 +3503,12 @@ declare const $ProductWithDetailsAndPrices: {
3552
3503
  readonly title: "Shop Id";
3553
3504
  };
3554
3505
  readonly category_id: {
3555
- readonly type: "string";
3556
- readonly format: "uuid";
3506
+ readonly anyOf: readonly [{
3507
+ readonly type: "string";
3508
+ readonly format: "uuid";
3509
+ }, {
3510
+ readonly type: "null";
3511
+ }];
3557
3512
  readonly title: "Category Id";
3558
3513
  };
3559
3514
  readonly price: {
@@ -3651,6 +3606,14 @@ declare const $ProductWithDetailsAndPrices: {
3651
3606
  readonly title: "Stock";
3652
3607
  readonly default: 1;
3653
3608
  };
3609
+ readonly sku: {
3610
+ readonly anyOf: readonly [{
3611
+ readonly type: "string";
3612
+ }, {
3613
+ readonly type: "null";
3614
+ }];
3615
+ readonly title: "Sku";
3616
+ };
3654
3617
  readonly image_1: {
3655
3618
  readonly anyOf: readonly [{
3656
3619
  readonly additionalProperties: true;
@@ -3725,6 +3688,14 @@ declare const $ProductWithDetailsAndPrices: {
3725
3688
  readonly format: "uuid";
3726
3689
  readonly title: "Id";
3727
3690
  };
3691
+ readonly short_id: {
3692
+ readonly anyOf: readonly [{
3693
+ readonly type: "string";
3694
+ }, {
3695
+ readonly type: "null";
3696
+ }];
3697
+ readonly title: "Short Id";
3698
+ };
3728
3699
  readonly modified_at: {
3729
3700
  readonly anyOf: readonly [{
3730
3701
  readonly type: "string";
@@ -3759,121 +3730,343 @@ declare const $ProductWithDetailsAndPrices: {
3759
3730
  };
3760
3731
  };
3761
3732
  readonly type: "object";
3762
- readonly required: readonly ["shop_id", "category_id", "max_one", "shippable", "featured", "new_product", "tax_category", "image_1", "image_2", "image_3", "image_4", "image_5", "image_6", "translation", "id"];
3733
+ readonly required: readonly ["shop_id", "max_one", "shippable", "featured", "new_product", "tax_category", "image_1", "image_2", "image_3", "image_4", "image_5", "image_6", "translation", "id"];
3763
3734
  readonly title: "ProductWithDetailsAndPrices";
3764
3735
  };
3765
- declare const $ShippingCalculateRequest: {
3736
+ declare const $RestoreReport: {
3766
3737
  readonly properties: {
3767
- readonly shop_id: {
3768
- readonly type: "string";
3769
- readonly format: "uuid";
3770
- readonly title: "Shop Id";
3738
+ readonly restored: {
3739
+ readonly type: "boolean";
3740
+ readonly title: "Restored";
3771
3741
  };
3772
- readonly order_info: {
3773
- readonly items: {
3774
- readonly $ref: "#/components/schemas/OrderItem-Input";
3775
- };
3776
- readonly type: "array";
3777
- readonly title: "Order Info";
3742
+ readonly entity_type: {
3743
+ readonly type: "string";
3744
+ readonly title: "Entity Type";
3778
3745
  };
3779
- };
3780
- readonly type: "object";
3781
- readonly required: readonly ["shop_id", "order_info"];
3782
- readonly title: "ShippingCalculateRequest";
3783
- };
3784
- declare const $ShippingCalculation: {
3785
- readonly properties: {
3786
- readonly enabled: {
3787
- readonly type: "boolean";
3788
- readonly title: "Enabled";
3746
+ readonly entity_id: {
3747
+ readonly type: "string";
3748
+ readonly format: "uuid";
3749
+ readonly title: "Entity Id";
3789
3750
  };
3790
- readonly method: {
3751
+ readonly restored_from_revision_no: {
3791
3752
  readonly anyOf: readonly [{
3792
- readonly type: "string";
3753
+ readonly type: "integer";
3793
3754
  }, {
3794
3755
  readonly type: "null";
3795
3756
  }];
3796
- readonly title: "Method";
3797
- };
3798
- readonly fee_inc_btw: {
3799
- readonly type: "number";
3800
- readonly title: "Fee Inc Btw";
3801
- };
3802
- readonly fee_ex_btw: {
3803
- readonly type: "number";
3804
- readonly title: "Fee Ex Btw";
3805
- };
3806
- readonly fee_btw: {
3807
- readonly type: "number";
3808
- readonly title: "Fee Btw";
3809
- };
3810
- readonly free_shipping_applied: {
3811
- readonly type: "boolean";
3812
- readonly title: "Free Shipping Applied";
3757
+ readonly title: "Restored From Revision No";
3813
3758
  };
3814
- readonly free_shipping_threshold: {
3759
+ readonly new_revision_no: {
3815
3760
  readonly anyOf: readonly [{
3816
- readonly type: "number";
3761
+ readonly type: "integer";
3817
3762
  }, {
3818
3763
  readonly type: "null";
3819
3764
  }];
3820
- readonly title: "Free Shipping Threshold";
3765
+ readonly title: "New Revision No";
3821
3766
  };
3822
- readonly lines: {
3767
+ readonly resurrected: {
3823
3768
  readonly items: {
3824
- readonly $ref: "#/components/schemas/ShippingLine";
3769
+ readonly $ref: "#/components/schemas/ResurrectedEntity";
3825
3770
  };
3826
3771
  readonly type: "array";
3827
- readonly title: "Lines";
3828
- };
3829
- };
3830
- readonly type: "object";
3831
- readonly required: readonly ["enabled", "fee_inc_btw", "fee_ex_btw", "fee_btw", "free_shipping_applied", "lines"];
3832
- readonly title: "ShippingCalculation";
3833
- };
3834
- declare const $ShippingLine: {
3835
- readonly properties: {
3836
- readonly btw_rate: {
3837
- readonly type: "number";
3838
- readonly title: "Btw Rate";
3772
+ readonly title: "Resurrected";
3773
+ readonly default: readonly [];
3839
3774
  };
3840
- readonly amount_ex_btw: {
3841
- readonly type: "number";
3842
- readonly title: "Amount Ex Btw";
3775
+ readonly skipped_fields: {
3776
+ readonly items: {
3777
+ readonly type: "string";
3778
+ };
3779
+ readonly type: "array";
3780
+ readonly title: "Skipped Fields";
3781
+ readonly default: readonly [];
3843
3782
  };
3844
- readonly amount_inc_btw: {
3845
- readonly type: "number";
3846
- readonly title: "Amount Inc Btw";
3783
+ readonly unresolved: {
3784
+ readonly items: {
3785
+ readonly $ref: "#/components/schemas/UnresolvedReference";
3786
+ };
3787
+ readonly type: "array";
3788
+ readonly title: "Unresolved";
3789
+ readonly default: readonly [];
3847
3790
  };
3848
- readonly amount_btw: {
3849
- readonly type: "number";
3850
- readonly title: "Amount Btw";
3791
+ readonly warnings: {
3792
+ readonly items: {
3793
+ readonly type: "string";
3794
+ };
3795
+ readonly type: "array";
3796
+ readonly title: "Warnings";
3797
+ readonly default: readonly [];
3851
3798
  };
3852
3799
  };
3853
3800
  readonly type: "object";
3854
- readonly required: readonly ["btw_rate", "amount_ex_btw", "amount_inc_btw", "amount_btw"];
3855
- readonly title: "ShippingLine";
3801
+ readonly required: readonly ["restored", "entity_type", "entity_id"];
3802
+ readonly title: "RestoreReport";
3803
+ readonly description: "What a restore actually did — agents should read this to see what didn't come back.";
3856
3804
  };
3857
- declare const $ShopCacheStatus: {
3805
+ declare const $ResurrectedEntity: {
3858
3806
  readonly properties: {
3859
- readonly modified_at: {
3807
+ readonly kind: {
3808
+ readonly type: "string";
3809
+ readonly title: "Kind";
3810
+ };
3811
+ readonly id: {
3812
+ readonly type: "string";
3813
+ readonly format: "uuid";
3814
+ readonly title: "Id";
3815
+ };
3816
+ readonly name: {
3860
3817
  readonly anyOf: readonly [{
3861
3818
  readonly type: "string";
3862
- readonly format: "date-time";
3863
3819
  }, {
3864
3820
  readonly type: "null";
3865
3821
  }];
3866
- readonly title: "Modified At";
3822
+ readonly title: "Name";
3867
3823
  };
3868
3824
  };
3869
3825
  readonly type: "object";
3870
- readonly required: readonly ["modified_at"];
3871
- readonly title: "ShopCacheStatus";
3826
+ readonly required: readonly ["kind", "id"];
3827
+ readonly title: "ResurrectedEntity";
3872
3828
  };
3873
- declare const $ShopConfig: {
3829
+ declare const $RevisionDetail: {
3874
3830
  readonly properties: {
3875
- readonly config: {
3876
- readonly $ref: "#/components/schemas/ConfigurationV1-Output";
3831
+ readonly id: {
3832
+ readonly type: "string";
3833
+ readonly format: "uuid";
3834
+ readonly title: "Id";
3835
+ };
3836
+ readonly entity_type: {
3837
+ readonly type: "string";
3838
+ readonly title: "Entity Type";
3839
+ };
3840
+ readonly entity_id: {
3841
+ readonly type: "string";
3842
+ readonly format: "uuid";
3843
+ readonly title: "Entity Id";
3844
+ };
3845
+ readonly revision_no: {
3846
+ readonly type: "integer";
3847
+ readonly title: "Revision No";
3848
+ };
3849
+ readonly action: {
3850
+ readonly type: "string";
3851
+ readonly title: "Action";
3852
+ };
3853
+ readonly schema_version: {
3854
+ readonly type: "integer";
3855
+ readonly title: "Schema Version";
3856
+ };
3857
+ readonly created_by: {
3858
+ readonly anyOf: readonly [{
3859
+ readonly type: "string";
3860
+ }, {
3861
+ readonly type: "null";
3862
+ }];
3863
+ readonly title: "Created By";
3864
+ };
3865
+ readonly source: {
3866
+ readonly type: "string";
3867
+ readonly title: "Source";
3868
+ };
3869
+ readonly created_at: {
3870
+ readonly anyOf: readonly [{
3871
+ readonly type: "string";
3872
+ readonly format: "date-time";
3873
+ }, {
3874
+ readonly type: "null";
3875
+ }];
3876
+ readonly title: "Created At";
3877
+ };
3878
+ readonly name: {
3879
+ readonly anyOf: readonly [{
3880
+ readonly type: "string";
3881
+ }, {
3882
+ readonly type: "null";
3883
+ }];
3884
+ readonly title: "Name";
3885
+ };
3886
+ readonly data: {
3887
+ readonly additionalProperties: true;
3888
+ readonly type: "object";
3889
+ readonly title: "Data";
3890
+ };
3891
+ };
3892
+ readonly type: "object";
3893
+ readonly required: readonly ["id", "entity_type", "entity_id", "revision_no", "action", "schema_version", "source", "data"];
3894
+ readonly title: "RevisionDetail";
3895
+ };
3896
+ declare const $RevisionSummary: {
3897
+ readonly properties: {
3898
+ readonly id: {
3899
+ readonly type: "string";
3900
+ readonly format: "uuid";
3901
+ readonly title: "Id";
3902
+ };
3903
+ readonly entity_type: {
3904
+ readonly type: "string";
3905
+ readonly title: "Entity Type";
3906
+ };
3907
+ readonly entity_id: {
3908
+ readonly type: "string";
3909
+ readonly format: "uuid";
3910
+ readonly title: "Entity Id";
3911
+ };
3912
+ readonly revision_no: {
3913
+ readonly type: "integer";
3914
+ readonly title: "Revision No";
3915
+ };
3916
+ readonly action: {
3917
+ readonly type: "string";
3918
+ readonly title: "Action";
3919
+ };
3920
+ readonly schema_version: {
3921
+ readonly type: "integer";
3922
+ readonly title: "Schema Version";
3923
+ };
3924
+ readonly created_by: {
3925
+ readonly anyOf: readonly [{
3926
+ readonly type: "string";
3927
+ }, {
3928
+ readonly type: "null";
3929
+ }];
3930
+ readonly title: "Created By";
3931
+ };
3932
+ readonly source: {
3933
+ readonly type: "string";
3934
+ readonly title: "Source";
3935
+ };
3936
+ readonly created_at: {
3937
+ readonly anyOf: readonly [{
3938
+ readonly type: "string";
3939
+ readonly format: "date-time";
3940
+ }, {
3941
+ readonly type: "null";
3942
+ }];
3943
+ readonly title: "Created At";
3944
+ };
3945
+ readonly name: {
3946
+ readonly anyOf: readonly [{
3947
+ readonly type: "string";
3948
+ }, {
3949
+ readonly type: "null";
3950
+ }];
3951
+ readonly title: "Name";
3952
+ };
3953
+ };
3954
+ readonly type: "object";
3955
+ readonly required: readonly ["id", "entity_type", "entity_id", "revision_no", "action", "schema_version", "source"];
3956
+ readonly title: "RevisionSummary";
3957
+ };
3958
+ declare const $ShippingCalculateRequest: {
3959
+ readonly properties: {
3960
+ readonly shop_id: {
3961
+ readonly type: "string";
3962
+ readonly format: "uuid";
3963
+ readonly title: "Shop Id";
3964
+ };
3965
+ readonly order_info: {
3966
+ readonly items: {
3967
+ readonly $ref: "#/components/schemas/OrderItem-Input";
3968
+ };
3969
+ readonly type: "array";
3970
+ readonly title: "Order Info";
3971
+ };
3972
+ };
3973
+ readonly type: "object";
3974
+ readonly required: readonly ["shop_id", "order_info"];
3975
+ readonly title: "ShippingCalculateRequest";
3976
+ };
3977
+ declare const $ShippingCalculation: {
3978
+ readonly properties: {
3979
+ readonly enabled: {
3980
+ readonly type: "boolean";
3981
+ readonly title: "Enabled";
3982
+ };
3983
+ readonly method: {
3984
+ readonly anyOf: readonly [{
3985
+ readonly type: "string";
3986
+ }, {
3987
+ readonly type: "null";
3988
+ }];
3989
+ readonly title: "Method";
3990
+ };
3991
+ readonly fee_inc_btw: {
3992
+ readonly type: "number";
3993
+ readonly title: "Fee Inc Btw";
3994
+ };
3995
+ readonly fee_ex_btw: {
3996
+ readonly type: "number";
3997
+ readonly title: "Fee Ex Btw";
3998
+ };
3999
+ readonly fee_btw: {
4000
+ readonly type: "number";
4001
+ readonly title: "Fee Btw";
4002
+ };
4003
+ readonly free_shipping_applied: {
4004
+ readonly type: "boolean";
4005
+ readonly title: "Free Shipping Applied";
4006
+ };
4007
+ readonly free_shipping_threshold: {
4008
+ readonly anyOf: readonly [{
4009
+ readonly type: "number";
4010
+ }, {
4011
+ readonly type: "null";
4012
+ }];
4013
+ readonly title: "Free Shipping Threshold";
4014
+ };
4015
+ readonly lines: {
4016
+ readonly items: {
4017
+ readonly $ref: "#/components/schemas/ShippingLine";
4018
+ };
4019
+ readonly type: "array";
4020
+ readonly title: "Lines";
4021
+ };
4022
+ };
4023
+ readonly type: "object";
4024
+ readonly required: readonly ["enabled", "fee_inc_btw", "fee_ex_btw", "fee_btw", "free_shipping_applied", "lines"];
4025
+ readonly title: "ShippingCalculation";
4026
+ };
4027
+ declare const $ShippingLine: {
4028
+ readonly properties: {
4029
+ readonly btw_rate: {
4030
+ readonly type: "number";
4031
+ readonly title: "Btw Rate";
4032
+ };
4033
+ readonly amount_ex_btw: {
4034
+ readonly type: "number";
4035
+ readonly title: "Amount Ex Btw";
4036
+ };
4037
+ readonly amount_inc_btw: {
4038
+ readonly type: "number";
4039
+ readonly title: "Amount Inc Btw";
4040
+ };
4041
+ readonly amount_btw: {
4042
+ readonly type: "number";
4043
+ readonly title: "Amount Btw";
4044
+ };
4045
+ };
4046
+ readonly type: "object";
4047
+ readonly required: readonly ["btw_rate", "amount_ex_btw", "amount_inc_btw", "amount_btw"];
4048
+ readonly title: "ShippingLine";
4049
+ };
4050
+ declare const $ShopCacheStatus: {
4051
+ readonly properties: {
4052
+ readonly modified_at: {
4053
+ readonly anyOf: readonly [{
4054
+ readonly type: "string";
4055
+ readonly format: "date-time";
4056
+ }, {
4057
+ readonly type: "null";
4058
+ }];
4059
+ readonly title: "Modified At";
4060
+ };
4061
+ };
4062
+ readonly type: "object";
4063
+ readonly required: readonly ["modified_at"];
4064
+ readonly title: "ShopCacheStatus";
4065
+ };
4066
+ declare const $ShopConfig: {
4067
+ readonly properties: {
4068
+ readonly config: {
4069
+ readonly $ref: "#/components/schemas/ConfigurationV1-Output";
3877
4070
  };
3878
4071
  readonly config_version: {
3879
4072
  readonly type: "integer";
@@ -4481,140 +4674,84 @@ declare const $Toggles: {
4481
4674
  readonly title: "Enable Attributes For Categories";
4482
4675
  readonly default: false;
4483
4676
  };
4677
+ readonly force_unique_product_names: {
4678
+ readonly type: "boolean";
4679
+ readonly title: "Force Unique Product Names";
4680
+ readonly default: false;
4681
+ };
4484
4682
  };
4485
4683
  readonly type: "object";
4486
4684
  readonly title: "Toggles";
4487
4685
  };
4488
- declare const $User: {
4686
+ declare const $TrashItem: {
4489
4687
  readonly properties: {
4490
- readonly email: {
4491
- readonly anyOf: readonly [{
4492
- readonly type: "string";
4493
- readonly format: "email";
4494
- }, {
4495
- readonly type: "null";
4496
- }];
4497
- readonly title: "Email";
4498
- };
4499
- readonly is_active: {
4500
- readonly anyOf: readonly [{
4501
- readonly type: "boolean";
4502
- }, {
4503
- readonly type: "null";
4504
- }];
4505
- readonly title: "Is Active";
4506
- readonly default: true;
4507
- };
4508
- readonly is_superuser: {
4509
- readonly type: "boolean";
4510
- readonly title: "Is Superuser";
4511
- readonly default: false;
4512
- };
4513
- readonly username: {
4514
- readonly anyOf: readonly [{
4515
- readonly type: "string";
4516
- }, {
4517
- readonly type: "null";
4518
- }];
4519
- readonly title: "Username";
4688
+ readonly entity_type: {
4689
+ readonly type: "string";
4690
+ readonly title: "Entity Type";
4520
4691
  };
4521
4692
  readonly id: {
4522
4693
  readonly type: "string";
4523
4694
  readonly format: "uuid";
4524
4695
  readonly title: "Id";
4525
4696
  };
4526
- readonly created_at: {
4527
- readonly type: "string";
4528
- readonly format: "date-time";
4529
- readonly title: "Created At";
4530
- };
4531
- };
4532
- readonly type: "object";
4533
- readonly required: readonly ["id", "created_at"];
4534
- readonly title: "User";
4535
- };
4536
- declare const $UserCreate: {
4537
- readonly properties: {
4538
- readonly email: {
4539
- readonly type: "string";
4540
- readonly format: "email";
4541
- readonly title: "Email";
4542
- };
4543
- readonly is_active: {
4544
- readonly anyOf: readonly [{
4545
- readonly type: "boolean";
4546
- }, {
4547
- readonly type: "null";
4548
- }];
4549
- readonly title: "Is Active";
4550
- readonly default: true;
4551
- };
4552
- readonly is_superuser: {
4553
- readonly type: "boolean";
4554
- readonly title: "Is Superuser";
4555
- readonly default: false;
4556
- };
4557
- readonly username: {
4697
+ readonly name: {
4558
4698
  readonly anyOf: readonly [{
4559
4699
  readonly type: "string";
4560
4700
  }, {
4561
4701
  readonly type: "null";
4562
4702
  }];
4563
- readonly title: "Username";
4564
- };
4565
- readonly password: {
4566
- readonly type: "string";
4567
- readonly title: "Password";
4703
+ readonly title: "Name";
4568
4704
  };
4569
- };
4570
- readonly type: "object";
4571
- readonly required: readonly ["email", "password"];
4572
- readonly title: "UserCreate";
4573
- };
4574
- declare const $UserUpdate: {
4575
- readonly properties: {
4576
- readonly email: {
4705
+ readonly deleted_at: {
4577
4706
  readonly anyOf: readonly [{
4578
4707
  readonly type: "string";
4579
- readonly format: "email";
4708
+ readonly format: "date-time";
4580
4709
  }, {
4581
4710
  readonly type: "null";
4582
4711
  }];
4583
- readonly title: "Email";
4712
+ readonly title: "Deleted At";
4584
4713
  };
4585
- readonly is_active: {
4714
+ readonly deleted_batch_id: {
4586
4715
  readonly anyOf: readonly [{
4587
- readonly type: "boolean";
4716
+ readonly type: "string";
4717
+ readonly format: "uuid";
4588
4718
  }, {
4589
4719
  readonly type: "null";
4590
4720
  }];
4591
- readonly title: "Is Active";
4592
- readonly default: true;
4721
+ readonly title: "Deleted Batch Id";
4593
4722
  };
4594
- readonly is_superuser: {
4595
- readonly type: "boolean";
4596
- readonly title: "Is Superuser";
4597
- readonly default: false;
4723
+ };
4724
+ readonly type: "object";
4725
+ readonly required: readonly ["entity_type", "id"];
4726
+ readonly title: "TrashItem";
4727
+ };
4728
+ declare const $UnresolvedReference: {
4729
+ readonly properties: {
4730
+ readonly kind: {
4731
+ readonly type: "string";
4732
+ readonly title: "Kind";
4598
4733
  };
4599
- readonly username: {
4734
+ readonly id: {
4600
4735
  readonly anyOf: readonly [{
4601
4736
  readonly type: "string";
4737
+ readonly format: "uuid";
4602
4738
  }, {
4603
4739
  readonly type: "null";
4604
4740
  }];
4605
- readonly title: "Username";
4741
+ readonly title: "Id";
4606
4742
  };
4607
- readonly password: {
4743
+ readonly name: {
4608
4744
  readonly anyOf: readonly [{
4609
4745
  readonly type: "string";
4610
4746
  }, {
4611
4747
  readonly type: "null";
4612
4748
  }];
4613
- readonly title: "Password";
4749
+ readonly title: "Name";
4614
4750
  };
4615
4751
  };
4616
4752
  readonly type: "object";
4617
- readonly title: "UserUpdate";
4753
+ readonly required: readonly ["kind"];
4754
+ readonly title: "UnresolvedReference";
4618
4755
  };
4619
4756
  declare const $ValidationError: {
4620
4757
  readonly properties: {
@@ -4754,23 +4891,6 @@ type AvailableOptionSchema = {
4754
4891
  value_key: string;
4755
4892
  product_count: number;
4756
4893
  };
4757
- type Body_login_access_token_login_access_token_post = {
4758
- grant_type?: string | null;
4759
- username: string;
4760
- password: string;
4761
- scope?: string;
4762
- client_id?: string | null;
4763
- client_secret?: string | null;
4764
- };
4765
- type Body_reset_password_reset_password__post = {
4766
- token: string;
4767
- new_password: string;
4768
- };
4769
- type Body_update_user_me_users_me_put = {
4770
- password?: string;
4771
- full_name?: string;
4772
- email?: string;
4773
- };
4774
4894
  type Cart = {
4775
4895
  products: Array<string>;
4776
4896
  };
@@ -5017,9 +5137,6 @@ type LicenseUpdate = {
5017
5137
  type LinkStripeBody = {
5018
5138
  stripe_customer_id: string;
5019
5139
  };
5020
- type Msg = {
5021
- msg: string;
5022
- };
5023
5140
  type MyShopsResponse = {
5024
5141
  shops: Array<ShopSchema>;
5025
5142
  is_admin: boolean;
@@ -5083,10 +5200,8 @@ type OrderSchema = {
5083
5200
  order_info: Array<OrderItem_Output>;
5084
5201
  created_at: string;
5085
5202
  completed_at?: string | null;
5086
- completed_by: string | null;
5087
5203
  account_name: string | null;
5088
5204
  shop_name: string | null;
5089
- completed_by_name?: string | null;
5090
5205
  };
5091
5206
  type OrderUpdate = {
5092
5207
  account_id?: string | null;
@@ -5154,7 +5269,7 @@ type ProductAttributeValueSchema = {
5154
5269
  };
5155
5270
  type ProductCreate = {
5156
5271
  shop_id: string;
5157
- category_id: string;
5272
+ category_id?: string | null;
5158
5273
  price?: number | string | null;
5159
5274
  recurring_price_monthly?: number | string | null;
5160
5275
  recurring_price_yearly?: number | string | null;
@@ -5169,6 +5284,7 @@ type ProductCreate = {
5169
5284
  discounted_to?: string | null;
5170
5285
  order_number?: number | null;
5171
5286
  stock?: number | null;
5287
+ sku?: string | null;
5172
5288
  image_1: {
5173
5289
  [key: string]: unknown;
5174
5290
  } | string | null;
@@ -5191,6 +5307,8 @@ type ProductCreate = {
5191
5307
  };
5192
5308
  type ProductResponse = {
5193
5309
  id: string;
5310
+ short_id?: string | null;
5311
+ sku?: string | null;
5194
5312
  category: string;
5195
5313
  category_image?: string | null;
5196
5314
  category_order_number: number;
@@ -5250,7 +5368,7 @@ type ProductTranslationBase = {
5250
5368
  };
5251
5369
  type ProductUpdate = {
5252
5370
  shop_id: string;
5253
- category_id: string;
5371
+ category_id?: string | null;
5254
5372
  price?: number | string | null;
5255
5373
  recurring_price_monthly?: number | string | null;
5256
5374
  recurring_price_yearly?: number | string | null;
@@ -5265,6 +5383,7 @@ type ProductUpdate = {
5265
5383
  discounted_to?: string | null;
5266
5384
  order_number?: number | null;
5267
5385
  stock?: number | null;
5386
+ sku?: string | null;
5268
5387
  image_1: {
5269
5388
  [key: string]: unknown;
5270
5389
  } | string | null;
@@ -5295,7 +5414,7 @@ type ProductWithAttributes = {
5295
5414
  };
5296
5415
  type ProductWithDefaultPrice = {
5297
5416
  shop_id: string;
5298
- category_id: string;
5417
+ category_id?: string | null;
5299
5418
  price?: number | null;
5300
5419
  recurring_price_monthly?: number | null;
5301
5420
  recurring_price_yearly?: number | null;
@@ -5310,6 +5429,7 @@ type ProductWithDefaultPrice = {
5310
5429
  discounted_to?: string | null;
5311
5430
  order_number?: number | null;
5312
5431
  stock?: number | null;
5432
+ sku?: string | null;
5313
5433
  image_1: {
5314
5434
  [key: string]: unknown;
5315
5435
  } | string | null;
@@ -5330,6 +5450,7 @@ type ProductWithDefaultPrice = {
5330
5450
  } | string | null;
5331
5451
  translation: ProductTranslationBase;
5332
5452
  id: string;
5453
+ short_id?: string | null;
5333
5454
  modified_at?: string | null;
5334
5455
  approved_at?: string | null;
5335
5456
  images_amount?: number;
@@ -5337,7 +5458,7 @@ type ProductWithDefaultPrice = {
5337
5458
  };
5338
5459
  type ProductWithDetailsAndPrices = {
5339
5460
  shop_id: string;
5340
- category_id: string;
5461
+ category_id?: string | null;
5341
5462
  price?: number | null;
5342
5463
  recurring_price_monthly?: number | null;
5343
5464
  recurring_price_yearly?: number | null;
@@ -5352,6 +5473,7 @@ type ProductWithDetailsAndPrices = {
5352
5473
  discounted_to?: string | null;
5353
5474
  order_number?: number | null;
5354
5475
  stock?: number | null;
5476
+ sku?: string | null;
5355
5477
  image_1: {
5356
5478
  [key: string]: unknown;
5357
5479
  } | string | null;
@@ -5372,12 +5494,59 @@ type ProductWithDetailsAndPrices = {
5372
5494
  } | string | null;
5373
5495
  translation: ProductTranslationBase;
5374
5496
  id: string;
5497
+ short_id?: string | null;
5375
5498
  modified_at?: string | null;
5376
5499
  approved_at?: string | null;
5377
5500
  images_amount?: number;
5378
5501
  prices?: Array<{
5379
5502
  [key: string]: unknown;
5380
- }>;
5503
+ }>;
5504
+ };
5505
+ /**
5506
+ * What a restore actually did — agents should read this to see what didn't come back.
5507
+ */
5508
+ type RestoreReport = {
5509
+ restored: boolean;
5510
+ entity_type: string;
5511
+ entity_id: string;
5512
+ restored_from_revision_no?: number | null;
5513
+ new_revision_no?: number | null;
5514
+ resurrected?: Array<ResurrectedEntity>;
5515
+ skipped_fields?: Array<string>;
5516
+ unresolved?: Array<UnresolvedReference>;
5517
+ warnings?: Array<string>;
5518
+ };
5519
+ type ResurrectedEntity = {
5520
+ kind: string;
5521
+ id: string;
5522
+ name?: string | null;
5523
+ };
5524
+ type RevisionDetail = {
5525
+ id: string;
5526
+ entity_type: string;
5527
+ entity_id: string;
5528
+ revision_no: number;
5529
+ action: string;
5530
+ schema_version: number;
5531
+ created_by?: string | null;
5532
+ source: string;
5533
+ created_at?: string | null;
5534
+ name?: string | null;
5535
+ data: {
5536
+ [key: string]: unknown;
5537
+ };
5538
+ };
5539
+ type RevisionSummary = {
5540
+ id: string;
5541
+ entity_type: string;
5542
+ entity_id: string;
5543
+ revision_no: number;
5544
+ action: string;
5545
+ schema_version: number;
5546
+ created_by?: string | null;
5547
+ source: string;
5548
+ created_at?: string | null;
5549
+ name?: string | null;
5381
5550
  };
5382
5551
  type ShippingCalculateRequest = {
5383
5552
  shop_id: string;
@@ -5526,79 +5695,26 @@ type Toggles = {
5526
5695
  product_call_to_action_enabled?: boolean;
5527
5696
  enable_stock_on_products?: boolean;
5528
5697
  enable_attributes_for_categories?: boolean;
5698
+ force_unique_product_names?: boolean;
5529
5699
  };
5530
- type User = {
5531
- email?: string | null;
5532
- is_active?: boolean | null;
5533
- is_superuser?: boolean;
5534
- username?: string | null;
5700
+ type TrashItem = {
5701
+ entity_type: string;
5535
5702
  id: string;
5536
- created_at: string;
5703
+ name?: string | null;
5704
+ deleted_at?: string | null;
5705
+ deleted_batch_id?: string | null;
5537
5706
  };
5538
- type UserCreate = {
5539
- email: string;
5540
- is_active?: boolean | null;
5541
- is_superuser?: boolean;
5542
- username?: string | null;
5543
- password: string;
5544
- };
5545
- type UserUpdate = {
5546
- email?: string | null;
5547
- is_active?: boolean | null;
5548
- is_superuser?: boolean;
5549
- username?: string | null;
5550
- password?: string | null;
5707
+ type UnresolvedReference = {
5708
+ kind: string;
5709
+ id?: string | null;
5710
+ name?: string | null;
5551
5711
  };
5552
5712
  type ValidationError = {
5553
5713
  loc: Array<string | number>;
5554
5714
  msg: string;
5555
5715
  type: string;
5556
5716
  };
5557
- type LoginAccessTokenLoginAccessTokenPostData = {
5558
- formData: Body_login_access_token_login_access_token_post;
5559
- };
5560
- type LoginAccessTokenLoginAccessTokenPostResponse = unknown;
5561
- type TestTokenLoginTestTokenPostResponse = User;
5562
- type RecoverPasswordPasswordRecoveryEmailPostData = {
5563
- email: string;
5564
- };
5565
- type RecoverPasswordPasswordRecoveryEmailPostResponse = Msg;
5566
- type ResetPasswordResetPasswordPostData = {
5567
- requestBody: Body_reset_password_reset_password__post;
5568
- };
5569
- type ResetPasswordResetPasswordPostResponse = Msg;
5570
5717
  type GetHealthHealthGetResponse = string;
5571
- type GetMultiUsersGetData = {
5572
- /**
5573
- * 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.
5574
- */
5575
- filter?: Array<string>;
5576
- limit?: number;
5577
- skip?: number;
5578
- /**
5579
- * 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.
5580
- */
5581
- sort?: Array<string>;
5582
- };
5583
- type GetMultiUsersGetResponse = unknown;
5584
- type CreateUsersPostData = {
5585
- requestBody: UserCreate;
5586
- };
5587
- type CreateUsersPostResponse = User;
5588
- type GetUserMeUsersMeGetResponse = User;
5589
- type UpdateUserMeUsersMePutData = {
5590
- requestBody?: Body_update_user_me_users_me_put;
5591
- };
5592
- type UpdateUserMeUsersMePutResponse = User;
5593
- type GetByIdUsersUserIdGetData = {
5594
- userId: number;
5595
- };
5596
- type GetByIdUsersUserIdGetResponse = User;
5597
- type UpdateUsersUserIdPutData = {
5598
- requestBody: UserUpdate;
5599
- userId: number;
5600
- };
5601
- type UpdateUsersUserIdPutResponse = User;
5602
5718
  type GetFormsFormsGetResponse = Array<string>;
5603
5719
  type NewFormFormsFormKeyPostData = {
5604
5720
  formKey: string;
@@ -5888,6 +6004,14 @@ type UpdateCategoryData = {
5888
6004
  type UpdateCategoryResponse = unknown;
5889
6005
  type DeleteCategoryData = {
5890
6006
  categoryId: string;
6007
+ /**
6008
+ * Keep the products; clear their category reference instead.
6009
+ */
6010
+ detach?: boolean;
6011
+ /**
6012
+ * Also move all products in this category to the trash.
6013
+ */
6014
+ force?: boolean;
5891
6015
  shopId: string;
5892
6016
  xApiKey?: string | null;
5893
6017
  };
@@ -6018,6 +6142,10 @@ type UpdateProductData = {
6018
6142
  };
6019
6143
  type UpdateProductResponse = unknown;
6020
6144
  type DeleteProductData = {
6145
+ /**
6146
+ * Permanently purge instead of moving to trash. Irreversible.
6147
+ */
6148
+ force?: boolean;
6021
6149
  productId: string;
6022
6150
  shopId: string;
6023
6151
  xApiKey?: string | null;
@@ -6075,6 +6203,135 @@ type DeleteShopsShopIdProductsToTagsProductToTagIdDeleteData = {
6075
6203
  productToTagId: string;
6076
6204
  };
6077
6205
  type DeleteShopsShopIdProductsToTagsProductToTagIdDeleteResponse = void;
6206
+ type ListShopRevisionsData = {
6207
+ /**
6208
+ * Filter: create | update | delete | restore | baseline.
6209
+ */
6210
+ action?: string | null;
6211
+ /**
6212
+ * Filter on actor, e.g. "api_key:<uuid>" or "cognito:<sub>".
6213
+ */
6214
+ createdBy?: string | null;
6215
+ /**
6216
+ * Filter on one specific entity.
6217
+ */
6218
+ entityId?: string | null;
6219
+ /**
6220
+ * Filter: product | category | tag | attribute.
6221
+ */
6222
+ entityType?: string | null;
6223
+ limit?: number;
6224
+ shopId: string;
6225
+ skip?: number;
6226
+ /**
6227
+ * Filter: rest | mcp.
6228
+ */
6229
+ source?: string | null;
6230
+ xApiKey?: string | null;
6231
+ };
6232
+ type ListShopRevisionsResponse = Array<RevisionSummary>;
6233
+ type GetRevisionData = {
6234
+ revisionId: string;
6235
+ shopId: string;
6236
+ xApiKey?: string | null;
6237
+ };
6238
+ type GetRevisionResponse = RevisionDetail;
6239
+ type ListProductRevisionsData = {
6240
+ productId: string;
6241
+ shopId: string;
6242
+ xApiKey?: string | null;
6243
+ };
6244
+ type ListProductRevisionsResponse = Array<RevisionSummary>;
6245
+ type GetProductRevisionData = {
6246
+ productId: string;
6247
+ revisionNo: number;
6248
+ shopId: string;
6249
+ xApiKey?: string | null;
6250
+ };
6251
+ type GetProductRevisionResponse = RevisionDetail;
6252
+ type RestoreProductRevisionData = {
6253
+ /**
6254
+ * Recreate the product from the snapshot even if it was permanently purged (user credentials required).
6255
+ */
6256
+ force?: boolean;
6257
+ productId: string;
6258
+ revisionNo: number;
6259
+ shopId: string;
6260
+ xApiKey?: string | null;
6261
+ };
6262
+ type RestoreProductRevisionResponse = RestoreReport;
6263
+ type RestoreProductData = {
6264
+ productId: string;
6265
+ shopId: string;
6266
+ xApiKey?: string | null;
6267
+ };
6268
+ type RestoreProductResponse = RestoreReport;
6269
+ type ListCategoryRevisionsShopsShopIdCategoriesCategoryIdRevisionsGetData = {
6270
+ categoryId: string;
6271
+ shopId: string;
6272
+ xApiKey?: string | null;
6273
+ };
6274
+ type ListCategoryRevisionsShopsShopIdCategoriesCategoryIdRevisionsGetResponse = Array<RevisionSummary>;
6275
+ type RestoreCategoryData = {
6276
+ categoryId: string;
6277
+ /**
6278
+ * Also restore the products trashed together with this category.
6279
+ */
6280
+ restoreProducts?: boolean;
6281
+ shopId: string;
6282
+ xApiKey?: string | null;
6283
+ };
6284
+ type RestoreCategoryResponse = RestoreReport;
6285
+ type RestoreCategoryRevisionData = {
6286
+ categoryId: string;
6287
+ /**
6288
+ * Recreate the category from the snapshot even if it was permanently purged (user credentials required).
6289
+ */
6290
+ force?: boolean;
6291
+ revisionNo: number;
6292
+ shopId: string;
6293
+ xApiKey?: string | null;
6294
+ };
6295
+ type RestoreCategoryRevisionResponse = RestoreReport;
6296
+ type RestoreTagRevisionData = {
6297
+ /**
6298
+ * Recreate the tag from the snapshot even if it was permanently purged (user credentials required).
6299
+ */
6300
+ force?: boolean;
6301
+ revisionNo: number;
6302
+ shopId: string;
6303
+ tagId: string;
6304
+ xApiKey?: string | null;
6305
+ };
6306
+ type RestoreTagRevisionResponse = RestoreReport;
6307
+ type RestoreTagData = {
6308
+ shopId: string;
6309
+ tagId: string;
6310
+ xApiKey?: string | null;
6311
+ };
6312
+ type RestoreTagResponse = RestoreReport;
6313
+ type RestoreAttributeRevisionData = {
6314
+ attributeId: string;
6315
+ /**
6316
+ * Recreate the attribute from the snapshot even if it was permanently purged (user credentials required).
6317
+ */
6318
+ force?: boolean;
6319
+ revisionNo: number;
6320
+ shopId: string;
6321
+ xApiKey?: string | null;
6322
+ };
6323
+ type RestoreAttributeRevisionResponse = RestoreReport;
6324
+ type RestoreAttributeData = {
6325
+ attributeId: string;
6326
+ shopId: string;
6327
+ xApiKey?: string | null;
6328
+ };
6329
+ type RestoreAttributeResponse = RestoreReport;
6330
+ type ListTrashShopsShopIdTrashGetData = {
6331
+ shopId: string;
6332
+ xApiKey?: string | null;
6333
+ };
6334
+ type ListTrashShopsShopIdTrashGetResponse = Array<TrashItem>;
6078
6335
  type ListTagsData = {
6079
6336
  /**
6080
6337
  * 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.
@@ -6110,6 +6367,10 @@ type UpdateTagData = {
6110
6367
  };
6111
6368
  type UpdateTagResponse = unknown;
6112
6369
  type DeleteTagData = {
6370
+ /**
6371
+ * Permanently purge instead of moving to trash. Irreversible.
6372
+ */
6373
+ force?: boolean;
6113
6374
  shopId: string;
6114
6375
  tagId: string;
6115
6376
  xApiKey?: string | null;
@@ -6190,6 +6451,10 @@ type UpdateAttributeData = {
6190
6451
  type UpdateAttributeResponse = AttributeSchema;
6191
6452
  type DeleteAttributeData = {
6192
6453
  attributeId: string;
6454
+ /**
6455
+ * Permanently purge instead of moving to trash. Irreversible.
6456
+ */
6457
+ force?: boolean;
6193
6458
  shopId: string;
6194
6459
  xApiKey?: string | null;
6195
6460
  };
@@ -6239,6 +6504,10 @@ type UpdateOptionV2ShopsShopIdAttributeOptionsOptionIdPutData = {
6239
6504
  };
6240
6505
  type UpdateOptionV2ShopsShopIdAttributeOptionsOptionIdPutResponse = AttributeOptionSchema;
6241
6506
  type DeleteOptionV2ShopsShopIdAttributeOptionsOptionIdDeleteData = {
6507
+ /**
6508
+ * Permanently purge instead of moving to trash. Irreversible.
6509
+ */
6510
+ force?: boolean;
6242
6511
  optionId: string;
6243
6512
  shopId: string;
6244
6513
  };
@@ -6274,6 +6543,10 @@ type GetOptionShopsShopIdAttributesAttributeIdOptionsOptionIdGetData = {
6274
6543
  type GetOptionShopsShopIdAttributesAttributeIdOptionsOptionIdGetResponse = AttributeOptionSchema;
6275
6544
  type DeleteOptionShopsShopIdAttributesAttributeIdOptionsOptionIdDeleteData = {
6276
6545
  attributeId: string;
6546
+ /**
6547
+ * Permanently purge instead of moving to trash. Irreversible.
6548
+ */
6549
+ force?: boolean;
6277
6550
  optionId: string;
6278
6551
  shopId: string;
6279
6552
  };
@@ -6382,185 +6655,51 @@ type FormInfoRequestFormPostResponse = unknown;
6382
6655
  type TriggerErrorSentryGetData = {
6383
6656
  type: string;
6384
6657
  };
6385
- type TriggerErrorSentryGetResponse = unknown;
6386
- type FormTestFormsPostData = {
6387
- requestBody?: Array<{
6388
- [key: string]: unknown;
6389
- }>;
6390
- };
6391
- type FormTestFormsPostResponse = unknown;
6392
- type GetMultiFaqGetData = {
6393
- /**
6394
- * 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.
6395
- */
6396
- filter?: Array<string>;
6397
- limit?: number;
6398
- skip?: number;
6399
- /**
6400
- * 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.
6401
- */
6402
- sort?: Array<string>;
6403
- };
6404
- type GetMultiFaqGetResponse = Array<FaqSchema>;
6405
- type CreateFaqPostData = {
6406
- requestBody: FaqCreate;
6407
- };
6408
- type CreateFaqPostResponse = FaqCreated;
6409
- type GetByIdFaqIdGetData = {
6410
- id: string;
6411
- };
6412
- type GetByIdFaqIdGetResponse = FaqSchema;
6413
- type UpdateFaqFaqIdPutData = {
6414
- faqId: string;
6415
- requestBody: FaqUpdate;
6416
- };
6417
- type UpdateFaqFaqIdPutResponse = FaqUpdated;
6418
- type DeleteFaqFaqIdDeleteData = {
6419
- faqId: string;
6420
- };
6421
- type DeleteFaqFaqIdDeleteResponse = void;
6422
- type $OpenApiTs = {
6423
- '/login/access-token': {
6424
- post: {
6425
- req: LoginAccessTokenLoginAccessTokenPostData;
6426
- res: {
6427
- /**
6428
- * Successful Response
6429
- */
6430
- 200: unknown;
6431
- /**
6432
- * Validation Error
6433
- */
6434
- 422: HTTPValidationError;
6435
- };
6436
- };
6437
- };
6438
- '/login/test-token': {
6439
- post: {
6440
- res: {
6441
- /**
6442
- * Successful Response
6443
- */
6444
- 200: User;
6445
- };
6446
- };
6447
- };
6448
- '/password-recovery/{email}': {
6449
- post: {
6450
- req: RecoverPasswordPasswordRecoveryEmailPostData;
6451
- res: {
6452
- /**
6453
- * Successful Response
6454
- */
6455
- 200: Msg;
6456
- /**
6457
- * Validation Error
6458
- */
6459
- 422: HTTPValidationError;
6460
- };
6461
- };
6462
- };
6463
- '/reset-password/': {
6464
- post: {
6465
- req: ResetPasswordResetPasswordPostData;
6466
- res: {
6467
- /**
6468
- * Successful Response
6469
- */
6470
- 200: Msg;
6471
- /**
6472
- * Validation Error
6473
- */
6474
- 422: HTTPValidationError;
6475
- };
6476
- };
6477
- };
6478
- '/health/': {
6479
- get: {
6480
- res: {
6481
- /**
6482
- * Successful Response
6483
- */
6484
- 200: string;
6485
- };
6486
- };
6487
- };
6488
- '/users/': {
6489
- get: {
6490
- req: GetMultiUsersGetData;
6491
- res: {
6492
- /**
6493
- * Successful Response
6494
- */
6495
- 200: unknown;
6496
- /**
6497
- * Validation Error
6498
- */
6499
- 422: HTTPValidationError;
6500
- };
6501
- };
6502
- post: {
6503
- req: CreateUsersPostData;
6504
- res: {
6505
- /**
6506
- * Successful Response
6507
- */
6508
- 200: User;
6509
- /**
6510
- * Validation Error
6511
- */
6512
- 422: HTTPValidationError;
6513
- };
6514
- };
6515
- };
6516
- '/users/me': {
6517
- get: {
6518
- res: {
6519
- /**
6520
- * Successful Response
6521
- */
6522
- 200: User;
6523
- };
6524
- };
6525
- put: {
6526
- req: UpdateUserMeUsersMePutData;
6527
- res: {
6528
- /**
6529
- * Successful Response
6530
- */
6531
- 200: User;
6532
- /**
6533
- * Validation Error
6534
- */
6535
- 422: HTTPValidationError;
6536
- };
6537
- };
6538
- };
6539
- '/users/{user_id}': {
6658
+ type TriggerErrorSentryGetResponse = unknown;
6659
+ type FormTestFormsPostData = {
6660
+ requestBody?: Array<{
6661
+ [key: string]: unknown;
6662
+ }>;
6663
+ };
6664
+ type FormTestFormsPostResponse = unknown;
6665
+ type GetMultiFaqGetData = {
6666
+ /**
6667
+ * 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.
6668
+ */
6669
+ filter?: Array<string>;
6670
+ limit?: number;
6671
+ skip?: number;
6672
+ /**
6673
+ * 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.
6674
+ */
6675
+ sort?: Array<string>;
6676
+ };
6677
+ type GetMultiFaqGetResponse = Array<FaqSchema>;
6678
+ type CreateFaqPostData = {
6679
+ requestBody: FaqCreate;
6680
+ };
6681
+ type CreateFaqPostResponse = FaqCreated;
6682
+ type GetByIdFaqIdGetData = {
6683
+ id: string;
6684
+ };
6685
+ type GetByIdFaqIdGetResponse = FaqSchema;
6686
+ type UpdateFaqFaqIdPutData = {
6687
+ faqId: string;
6688
+ requestBody: FaqUpdate;
6689
+ };
6690
+ type UpdateFaqFaqIdPutResponse = FaqUpdated;
6691
+ type DeleteFaqFaqIdDeleteData = {
6692
+ faqId: string;
6693
+ };
6694
+ type DeleteFaqFaqIdDeleteResponse = void;
6695
+ type $OpenApiTs = {
6696
+ '/health/': {
6540
6697
  get: {
6541
- req: GetByIdUsersUserIdGetData;
6542
- res: {
6543
- /**
6544
- * Successful Response
6545
- */
6546
- 200: User;
6547
- /**
6548
- * Validation Error
6549
- */
6550
- 422: HTTPValidationError;
6551
- };
6552
- };
6553
- put: {
6554
- req: UpdateUsersUserIdPutData;
6555
6698
  res: {
6556
6699
  /**
6557
6700
  * Successful Response
6558
6701
  */
6559
- 200: User;
6560
- /**
6561
- * Validation Error
6562
- */
6563
- 422: HTTPValidationError;
6702
+ 200: string;
6564
6703
  };
6565
6704
  };
6566
6705
  };
@@ -7427,27 +7566,227 @@ type $OpenApiTs = {
7427
7566
  };
7428
7567
  '/shops/{shop_id}/categories-images/delete/{id}': {
7429
7568
  put: {
7430
- req: DeleteImageShopsShopIdCategoriesImagesDeleteIdPutData;
7569
+ req: DeleteImageShopsShopIdCategoriesImagesDeleteIdPutData;
7570
+ res: {
7571
+ /**
7572
+ * Successful Response
7573
+ */
7574
+ 201: unknown;
7575
+ /**
7576
+ * Validation Error
7577
+ */
7578
+ 422: HTTPValidationError;
7579
+ };
7580
+ };
7581
+ };
7582
+ '/shops/{shop_id}/images/signed-url/{image_name}': {
7583
+ get: {
7584
+ req: GetSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGetData;
7585
+ res: {
7586
+ /**
7587
+ * Successful Response
7588
+ */
7589
+ 200: unknown;
7590
+ /**
7591
+ * Validation Error
7592
+ */
7593
+ 422: HTTPValidationError;
7594
+ };
7595
+ };
7596
+ };
7597
+ '/shops/{shop_id}/products/': {
7598
+ get: {
7599
+ req: ListProductsData;
7600
+ res: {
7601
+ /**
7602
+ * Successful Response
7603
+ */
7604
+ 200: Array<ProductWithDefaultPrice>;
7605
+ /**
7606
+ * Validation Error
7607
+ */
7608
+ 422: HTTPValidationError;
7609
+ };
7610
+ };
7611
+ post: {
7612
+ req: CreateProductData;
7613
+ res: {
7614
+ /**
7615
+ * Successful Response
7616
+ */
7617
+ 201: unknown;
7618
+ /**
7619
+ * Validation Error
7620
+ */
7621
+ 422: HTTPValidationError;
7622
+ };
7623
+ };
7624
+ };
7625
+ '/shops/{shop_id}/products/with_attributes': {
7626
+ get: {
7627
+ req: GetMultiWithAttributesShopsShopIdProductsWithAttributesGetData;
7628
+ res: {
7629
+ /**
7630
+ * Successful Response
7631
+ */
7632
+ 200: Array<ProductWithAttributes>;
7633
+ /**
7634
+ * Validation Error
7635
+ */
7636
+ 422: HTTPValidationError;
7637
+ };
7638
+ };
7639
+ };
7640
+ '/shops/{shop_id}/products/{product_id}': {
7641
+ put: {
7642
+ req: UpdateProductData;
7643
+ res: {
7644
+ /**
7645
+ * Successful Response
7646
+ */
7647
+ 201: unknown;
7648
+ /**
7649
+ * Validation Error
7650
+ */
7651
+ 422: HTTPValidationError;
7652
+ };
7653
+ };
7654
+ delete: {
7655
+ req: DeleteProductData;
7656
+ res: {
7657
+ /**
7658
+ * Successful Response
7659
+ */
7660
+ 204: void;
7661
+ /**
7662
+ * Validation Error
7663
+ */
7664
+ 422: HTTPValidationError;
7665
+ };
7666
+ };
7667
+ get: {
7668
+ req: GetProductData;
7669
+ res: {
7670
+ /**
7671
+ * Successful Response
7672
+ */
7673
+ 200: ProductWithDetailsAndPrices;
7674
+ /**
7675
+ * Validation Error
7676
+ */
7677
+ 422: HTTPValidationError;
7678
+ };
7679
+ };
7680
+ };
7681
+ '/shops/{shop_id}/products/{product_id}/swap': {
7682
+ put: {
7683
+ req: SwapShopsShopIdProductsProductIdSwapPutData;
7684
+ res: {
7685
+ /**
7686
+ * Successful Response
7687
+ */
7688
+ 201: unknown;
7689
+ /**
7690
+ * Validation Error
7691
+ */
7692
+ 422: HTTPValidationError;
7693
+ };
7694
+ };
7695
+ };
7696
+ '/shops/{shop_id}/products/{product_id}/with_attributes': {
7697
+ get: {
7698
+ req: GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetData;
7699
+ res: {
7700
+ /**
7701
+ * Successful Response
7702
+ */
7703
+ 200: ProductWithAttributes;
7704
+ /**
7705
+ * Validation Error
7706
+ */
7707
+ 422: HTTPValidationError;
7708
+ };
7709
+ };
7710
+ };
7711
+ '/shops/{shop_id}/products-to-tags/': {
7712
+ get: {
7713
+ req: GetMultiShopsShopIdProductsToTagsGetData;
7714
+ res: {
7715
+ /**
7716
+ * Successful Response
7717
+ */
7718
+ 200: Array<ProductToTagSchema>;
7719
+ /**
7720
+ * Validation Error
7721
+ */
7722
+ 422: HTTPValidationError;
7723
+ };
7724
+ };
7725
+ post: {
7726
+ req: CreateShopsShopIdProductsToTagsPostData;
7727
+ res: {
7728
+ /**
7729
+ * Successful Response
7730
+ */
7731
+ 204: void;
7732
+ /**
7733
+ * Validation Error
7734
+ */
7735
+ 422: HTTPValidationError;
7736
+ };
7737
+ };
7738
+ };
7739
+ '/shops/{shop_id}/products-to-tags/get_relation_id': {
7740
+ get: {
7741
+ req: GetRelationIdShopsShopIdProductsToTagsGetRelationIdGetData;
7742
+ res: {
7743
+ /**
7744
+ * Successful Response
7745
+ */
7746
+ 200: unknown;
7747
+ /**
7748
+ * Validation Error
7749
+ */
7750
+ 422: HTTPValidationError;
7751
+ };
7752
+ };
7753
+ };
7754
+ '/shops/{shop_id}/products-to-tags/{id}': {
7755
+ get: {
7756
+ req: GetByIdShopsShopIdProductsToTagsIdGetData;
7757
+ res: {
7758
+ /**
7759
+ * Successful Response
7760
+ */
7761
+ 200: ProductToTagSchema;
7762
+ /**
7763
+ * Validation Error
7764
+ */
7765
+ 422: HTTPValidationError;
7766
+ };
7767
+ };
7768
+ };
7769
+ '/shops/{shop_id}/products-to-tags/{product_to_tag_id}': {
7770
+ put: {
7771
+ req: UpdateShopsShopIdProductsToTagsProductToTagIdPutData;
7431
7772
  res: {
7432
7773
  /**
7433
7774
  * Successful Response
7434
7775
  */
7435
- 201: unknown;
7776
+ 204: void;
7436
7777
  /**
7437
7778
  * Validation Error
7438
7779
  */
7439
7780
  422: HTTPValidationError;
7440
7781
  };
7441
7782
  };
7442
- };
7443
- '/shops/{shop_id}/images/signed-url/{image_name}': {
7444
- get: {
7445
- req: GetSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGetData;
7783
+ delete: {
7784
+ req: DeleteShopsShopIdProductsToTagsProductToTagIdDeleteData;
7446
7785
  res: {
7447
7786
  /**
7448
7787
  * Successful Response
7449
7788
  */
7450
- 200: unknown;
7789
+ 204: void;
7451
7790
  /**
7452
7791
  * Validation Error
7453
7792
  */
@@ -7455,27 +7794,29 @@ type $OpenApiTs = {
7455
7794
  };
7456
7795
  };
7457
7796
  };
7458
- '/shops/{shop_id}/products/': {
7797
+ '/shops/{shop_id}/revisions': {
7459
7798
  get: {
7460
- req: ListProductsData;
7799
+ req: ListShopRevisionsData;
7461
7800
  res: {
7462
7801
  /**
7463
7802
  * Successful Response
7464
7803
  */
7465
- 200: Array<ProductWithDefaultPrice>;
7804
+ 200: Array<RevisionSummary>;
7466
7805
  /**
7467
7806
  * Validation Error
7468
7807
  */
7469
7808
  422: HTTPValidationError;
7470
7809
  };
7471
7810
  };
7472
- post: {
7473
- req: CreateProductData;
7811
+ };
7812
+ '/shops/{shop_id}/revisions/{revision_id}': {
7813
+ get: {
7814
+ req: GetRevisionData;
7474
7815
  res: {
7475
7816
  /**
7476
7817
  * Successful Response
7477
7818
  */
7478
- 201: unknown;
7819
+ 200: RevisionDetail;
7479
7820
  /**
7480
7821
  * Validation Error
7481
7822
  */
@@ -7483,14 +7824,14 @@ type $OpenApiTs = {
7483
7824
  };
7484
7825
  };
7485
7826
  };
7486
- '/shops/{shop_id}/products/with_attributes': {
7827
+ '/shops/{shop_id}/products/{product_id}/revisions': {
7487
7828
  get: {
7488
- req: GetMultiWithAttributesShopsShopIdProductsWithAttributesGetData;
7829
+ req: ListProductRevisionsData;
7489
7830
  res: {
7490
7831
  /**
7491
7832
  * Successful Response
7492
7833
  */
7493
- 200: Array<ProductWithAttributes>;
7834
+ 200: Array<RevisionSummary>;
7494
7835
  /**
7495
7836
  * Validation Error
7496
7837
  */
@@ -7498,40 +7839,44 @@ type $OpenApiTs = {
7498
7839
  };
7499
7840
  };
7500
7841
  };
7501
- '/shops/{shop_id}/products/{product_id}': {
7502
- put: {
7503
- req: UpdateProductData;
7842
+ '/shops/{shop_id}/products/{product_id}/revisions/{revision_no}': {
7843
+ get: {
7844
+ req: GetProductRevisionData;
7504
7845
  res: {
7505
7846
  /**
7506
7847
  * Successful Response
7507
7848
  */
7508
- 201: unknown;
7849
+ 200: RevisionDetail;
7509
7850
  /**
7510
7851
  * Validation Error
7511
7852
  */
7512
7853
  422: HTTPValidationError;
7513
7854
  };
7514
7855
  };
7515
- delete: {
7516
- req: DeleteProductData;
7856
+ };
7857
+ '/shops/{shop_id}/products/{product_id}/revisions/{revision_no}/restore': {
7858
+ post: {
7859
+ req: RestoreProductRevisionData;
7517
7860
  res: {
7518
7861
  /**
7519
7862
  * Successful Response
7520
7863
  */
7521
- 204: void;
7864
+ 200: RestoreReport;
7522
7865
  /**
7523
7866
  * Validation Error
7524
7867
  */
7525
7868
  422: HTTPValidationError;
7526
7869
  };
7527
7870
  };
7528
- get: {
7529
- req: GetProductData;
7871
+ };
7872
+ '/shops/{shop_id}/products/{product_id}/restore': {
7873
+ post: {
7874
+ req: RestoreProductData;
7530
7875
  res: {
7531
7876
  /**
7532
7877
  * Successful Response
7533
7878
  */
7534
- 200: ProductWithDetailsAndPrices;
7879
+ 200: RestoreReport;
7535
7880
  /**
7536
7881
  * Validation Error
7537
7882
  */
@@ -7539,14 +7884,14 @@ type $OpenApiTs = {
7539
7884
  };
7540
7885
  };
7541
7886
  };
7542
- '/shops/{shop_id}/products/{product_id}/swap': {
7543
- put: {
7544
- req: SwapShopsShopIdProductsProductIdSwapPutData;
7887
+ '/shops/{shop_id}/categories/{category_id}/revisions': {
7888
+ get: {
7889
+ req: ListCategoryRevisionsShopsShopIdCategoriesCategoryIdRevisionsGetData;
7545
7890
  res: {
7546
7891
  /**
7547
7892
  * Successful Response
7548
7893
  */
7549
- 201: unknown;
7894
+ 200: Array<RevisionSummary>;
7550
7895
  /**
7551
7896
  * Validation Error
7552
7897
  */
@@ -7554,14 +7899,14 @@ type $OpenApiTs = {
7554
7899
  };
7555
7900
  };
7556
7901
  };
7557
- '/shops/{shop_id}/products/{product_id}/with_attributes': {
7558
- get: {
7559
- req: GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetData;
7902
+ '/shops/{shop_id}/categories/{category_id}/restore': {
7903
+ post: {
7904
+ req: RestoreCategoryData;
7560
7905
  res: {
7561
7906
  /**
7562
7907
  * Successful Response
7563
7908
  */
7564
- 200: ProductWithAttributes;
7909
+ 200: RestoreReport;
7565
7910
  /**
7566
7911
  * Validation Error
7567
7912
  */
@@ -7569,27 +7914,29 @@ type $OpenApiTs = {
7569
7914
  };
7570
7915
  };
7571
7916
  };
7572
- '/shops/{shop_id}/products-to-tags/': {
7573
- get: {
7574
- req: GetMultiShopsShopIdProductsToTagsGetData;
7917
+ '/shops/{shop_id}/categories/{category_id}/revisions/{revision_no}/restore': {
7918
+ post: {
7919
+ req: RestoreCategoryRevisionData;
7575
7920
  res: {
7576
7921
  /**
7577
7922
  * Successful Response
7578
7923
  */
7579
- 200: Array<ProductToTagSchema>;
7924
+ 200: RestoreReport;
7580
7925
  /**
7581
7926
  * Validation Error
7582
7927
  */
7583
7928
  422: HTTPValidationError;
7584
7929
  };
7585
7930
  };
7931
+ };
7932
+ '/shops/{shop_id}/tags/{tag_id}/revisions/{revision_no}/restore': {
7586
7933
  post: {
7587
- req: CreateShopsShopIdProductsToTagsPostData;
7934
+ req: RestoreTagRevisionData;
7588
7935
  res: {
7589
7936
  /**
7590
7937
  * Successful Response
7591
7938
  */
7592
- 204: void;
7939
+ 200: RestoreReport;
7593
7940
  /**
7594
7941
  * Validation Error
7595
7942
  */
@@ -7597,14 +7944,14 @@ type $OpenApiTs = {
7597
7944
  };
7598
7945
  };
7599
7946
  };
7600
- '/shops/{shop_id}/products-to-tags/get_relation_id': {
7601
- get: {
7602
- req: GetRelationIdShopsShopIdProductsToTagsGetRelationIdGetData;
7947
+ '/shops/{shop_id}/tags/{tag_id}/restore': {
7948
+ post: {
7949
+ req: RestoreTagData;
7603
7950
  res: {
7604
7951
  /**
7605
7952
  * Successful Response
7606
7953
  */
7607
- 200: unknown;
7954
+ 200: RestoreReport;
7608
7955
  /**
7609
7956
  * Validation Error
7610
7957
  */
@@ -7612,14 +7959,14 @@ type $OpenApiTs = {
7612
7959
  };
7613
7960
  };
7614
7961
  };
7615
- '/shops/{shop_id}/products-to-tags/{id}': {
7616
- get: {
7617
- req: GetByIdShopsShopIdProductsToTagsIdGetData;
7962
+ '/shops/{shop_id}/attributes/{attribute_id}/revisions/{revision_no}/restore': {
7963
+ post: {
7964
+ req: RestoreAttributeRevisionData;
7618
7965
  res: {
7619
7966
  /**
7620
7967
  * Successful Response
7621
7968
  */
7622
- 200: ProductToTagSchema;
7969
+ 200: RestoreReport;
7623
7970
  /**
7624
7971
  * Validation Error
7625
7972
  */
@@ -7627,27 +7974,29 @@ type $OpenApiTs = {
7627
7974
  };
7628
7975
  };
7629
7976
  };
7630
- '/shops/{shop_id}/products-to-tags/{product_to_tag_id}': {
7631
- put: {
7632
- req: UpdateShopsShopIdProductsToTagsProductToTagIdPutData;
7977
+ '/shops/{shop_id}/attributes/{attribute_id}/restore': {
7978
+ post: {
7979
+ req: RestoreAttributeData;
7633
7980
  res: {
7634
7981
  /**
7635
7982
  * Successful Response
7636
7983
  */
7637
- 204: void;
7984
+ 200: RestoreReport;
7638
7985
  /**
7639
7986
  * Validation Error
7640
7987
  */
7641
7988
  422: HTTPValidationError;
7642
7989
  };
7643
7990
  };
7644
- delete: {
7645
- req: DeleteShopsShopIdProductsToTagsProductToTagIdDeleteData;
7991
+ };
7992
+ '/shops/{shop_id}/trash': {
7993
+ get: {
7994
+ req: ListTrashShopsShopIdTrashGetData;
7646
7995
  res: {
7647
7996
  /**
7648
7997
  * Successful Response
7649
7998
  */
7650
- 204: void;
7999
+ 200: Array<TrashItem>;
7651
8000
  /**
7652
8001
  * Validation Error
7653
8002
  */
@@ -8371,102 +8720,12 @@ type $OpenApiTs = {
8371
8720
  };
8372
8721
  };
8373
8722
 
8374
- /**
8375
- * Login Access Token
8376
- * OAuth2 compatible token login, get an access token for future requests
8377
- * @param data The data for the request.
8378
- * @param data.formData
8379
- * @returns unknown Successful Response
8380
- * @throws ApiError
8381
- */
8382
- declare const loginAccessTokenLoginAccessTokenPost: (data: LoginAccessTokenLoginAccessTokenPostData) => CancelablePromise<LoginAccessTokenLoginAccessTokenPostResponse>;
8383
- /**
8384
- * Test Token
8385
- * Test access token
8386
- * @returns User Successful Response
8387
- * @throws ApiError
8388
- */
8389
- declare const testTokenLoginTestTokenPost: () => CancelablePromise<TestTokenLoginTestTokenPostResponse>;
8390
- /**
8391
- * Recover Password
8392
- * Password Recovery
8393
- * @param data The data for the request.
8394
- * @param data.email
8395
- * @returns Msg Successful Response
8396
- * @throws ApiError
8397
- */
8398
- declare const recoverPasswordPasswordRecoveryEmailPost: (data: RecoverPasswordPasswordRecoveryEmailPostData) => CancelablePromise<RecoverPasswordPasswordRecoveryEmailPostResponse>;
8399
- /**
8400
- * Reset Password
8401
- * Reset password
8402
- * @param data The data for the request.
8403
- * @param data.requestBody
8404
- * @returns Msg Successful Response
8405
- * @throws ApiError
8406
- */
8407
- declare const resetPasswordResetPasswordPost: (data: ResetPasswordResetPasswordPostData) => CancelablePromise<ResetPasswordResetPasswordPostResponse>;
8408
8723
  /**
8409
8724
  * Get Health
8410
8725
  * @returns string Successful Response
8411
8726
  * @throws ApiError
8412
8727
  */
8413
8728
  declare const getHealthHealthGet: () => CancelablePromise<GetHealthHealthGetResponse>;
8414
- /**
8415
- * Get Multi
8416
- * Retrieve users.
8417
- * @param data The data for the request.
8418
- * @param data.skip
8419
- * @param data.limit
8420
- * @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.
8421
- * @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.
8422
- * @returns unknown Successful Response
8423
- * @throws ApiError
8424
- */
8425
- declare const getMultiUsersGet: (data?: GetMultiUsersGetData) => CancelablePromise<GetMultiUsersGetResponse>;
8426
- /**
8427
- * Create
8428
- * Create new user.
8429
- * @param data The data for the request.
8430
- * @param data.requestBody
8431
- * @returns User Successful Response
8432
- * @throws ApiError
8433
- */
8434
- declare const createUsersPost: (data: CreateUsersPostData) => CancelablePromise<CreateUsersPostResponse>;
8435
- /**
8436
- * Get User Me
8437
- * Get current user.
8438
- * @returns User Successful Response
8439
- * @throws ApiError
8440
- */
8441
- declare const getUserMeUsersMeGet: () => CancelablePromise<GetUserMeUsersMeGetResponse>;
8442
- /**
8443
- * Update User Me
8444
- * Update own user.
8445
- * @param data The data for the request.
8446
- * @param data.requestBody
8447
- * @returns User Successful Response
8448
- * @throws ApiError
8449
- */
8450
- declare const updateUserMeUsersMePut: (data?: UpdateUserMeUsersMePutData) => CancelablePromise<UpdateUserMeUsersMePutResponse>;
8451
- /**
8452
- * Get By Id
8453
- * Get a specific user by id.
8454
- * @param data The data for the request.
8455
- * @param data.userId
8456
- * @returns User Successful Response
8457
- * @throws ApiError
8458
- */
8459
- declare const getByIdUsersUserIdGet: (data: GetByIdUsersUserIdGetData) => CancelablePromise<GetByIdUsersUserIdGetResponse>;
8460
- /**
8461
- * Update
8462
- * Update a user.
8463
- * @param data The data for the request.
8464
- * @param data.userId
8465
- * @param data.requestBody
8466
- * @returns User Successful Response
8467
- * @throws ApiError
8468
- */
8469
- declare const updateUsersUserIdPut: (data: UpdateUsersUserIdPutData) => CancelablePromise<UpdateUsersUserIdPutResponse>;
8470
8729
  /**
8471
8730
  * Get Forms
8472
8731
  * Retrieve all forms.
@@ -8511,7 +8770,8 @@ declare const moveImagesImagesMovePost: () => CancelablePromise<MoveImagesImages
8511
8770
  */
8512
8771
  declare const deleteTemporaryImagesImagesDeleteTempPost: () => CancelablePromise<DeleteTemporaryImagesImagesDeleteTempPostResponse>;
8513
8772
  /**
8514
- * Get Multi
8773
+ * List licenses
8774
+ * Returns all licenses. Requires superuser privileges.
8515
8775
  * @param data The data for the request.
8516
8776
  * @param data.skip
8517
8777
  * @param data.limit
@@ -8522,7 +8782,8 @@ declare const deleteTemporaryImagesImagesDeleteTempPost: () => CancelablePromise
8522
8782
  */
8523
8783
  declare const getMultiLicensesGet: (data?: GetMultiLicensesGetData) => CancelablePromise<GetMultiLicensesGetResponse>;
8524
8784
  /**
8525
- * Create
8785
+ * Create license
8786
+ * Create a new license. Recurring licenses must not have an `end_date`. Requires superuser privileges.
8526
8787
  * @param data The data for the request.
8527
8788
  * @param data.requestBody
8528
8789
  * @returns LicenseSchema Successful Response
@@ -8530,7 +8791,8 @@ declare const getMultiLicensesGet: (data?: GetMultiLicensesGetData) => Cancelabl
8530
8791
  */
8531
8792
  declare const createLicensesPost: (data: CreateLicensesPostData) => CancelablePromise<CreateLicensesPostResponse>;
8532
8793
  /**
8533
- * Get By Id
8794
+ * Get license
8795
+ * Retrieve a single license by its UUID. Requires superuser privileges.
8534
8796
  * @param data The data for the request.
8535
8797
  * @param data.id
8536
8798
  * @returns LicenseSchema Successful Response
@@ -8538,7 +8800,8 @@ declare const createLicensesPost: (data: CreateLicensesPostData) => CancelablePr
8538
8800
  */
8539
8801
  declare const getByIdLicensesIdGet: (data: GetByIdLicensesIdGetData) => CancelablePromise<GetByIdLicensesIdGetResponse>;
8540
8802
  /**
8541
- * Edit
8803
+ * Update license
8804
+ * Update an existing license. Recurring licenses may not be given an `end_date`. Requires superuser privileges.
8542
8805
  * @param data The data for the request.
8543
8806
  * @param data.id
8544
8807
  * @param data.requestBody
@@ -8547,7 +8810,8 @@ declare const getByIdLicensesIdGet: (data: GetByIdLicensesIdGetData) => Cancelab
8547
8810
  */
8548
8811
  declare const editLicensesIdPut: (data: EditLicensesIdPutData) => CancelablePromise<EditLicensesIdPutResponse>;
8549
8812
  /**
8550
- * Delete
8813
+ * Delete license
8814
+ * Permanently remove a license. Requires superuser privileges.
8551
8815
  * @param data The data for the request.
8552
8816
  * @param data.id
8553
8817
  * @returns void Successful Response
@@ -8555,7 +8819,8 @@ declare const editLicensesIdPut: (data: EditLicensesIdPutData) => CancelableProm
8555
8819
  */
8556
8820
  declare const deleteLicensesIdDelete: (data: DeleteLicensesIdDeleteData) => CancelablePromise<DeleteLicensesIdDeleteResponse>;
8557
8821
  /**
8558
- * Get By Improviser User Id
8822
+ * Get license by improviser user ID
8823
+ * Retrieve the license associated with an external improviser user ID.
8559
8824
  * @param data The data for the request.
8560
8825
  * @param data.improviserUserId
8561
8826
  * @returns LicenseSchema Successful Response
@@ -8563,7 +8828,8 @@ declare const deleteLicensesIdDelete: (data: DeleteLicensesIdDeleteData) => Canc
8563
8828
  */
8564
8829
  declare const getByImproviserUserIdLicensesImproviserImproviserUserIdGet: (data: GetByImproviserUserIdLicensesImproviserImproviserUserIdGetData) => CancelablePromise<GetByImproviserUserIdLicensesImproviserImproviserUserIdGetResponse>;
8565
8830
  /**
8566
- * List Accounts
8831
+ * List accounts (admin)
8832
+ * List all customer accounts across every shop. Optionally filter by `shop_id` or by Stripe linkage status (`missing_stripe=true` returns accounts without a Stripe customer ID). Requires membership of the Cognito Admins group.
8567
8833
  * @param data The data for the request.
8568
8834
  * @param data.shopId Restrict to a single shop
8569
8835
  * @param data.missingStripe If true, only accounts without a stripe_customer_id; if false, only those with one.
@@ -8576,7 +8842,8 @@ declare const getByImproviserUserIdLicensesImproviserImproviserUserIdGet: (data:
8576
8842
  */
8577
8843
  declare const listAccountsAdminAccountsGet: (data?: ListAccountsAdminAccountsGetData) => CancelablePromise<ListAccountsAdminAccountsGetResponse>;
8578
8844
  /**
8579
- * Get Account
8845
+ * Get account (admin)
8846
+ * Retrieve a single account by UUID, including its Stripe metadata. Requires Admins group membership.
8580
8847
  * @param data The data for the request.
8581
8848
  * @param data.id
8582
8849
  * @returns AdminAccountSchema Successful Response
@@ -8584,11 +8851,8 @@ declare const listAccountsAdminAccountsGet: (data?: ListAccountsAdminAccountsGet
8584
8851
  */
8585
8852
  declare const getAccountAdminAccountsIdGet: (data: GetAccountAdminAccountsIdGetData) => CancelablePromise<GetAccountAdminAccountsIdGetResponse>;
8586
8853
  /**
8587
- * Get Stripe Customer
8588
- * Read-through: fetch the Stripe customer for this account.
8589
- *
8590
- * Does NOT persist anything; use ``POST /sync-stripe`` to write the
8591
- * snapshot back into the account's ``details`` column.
8854
+ * Fetch Stripe customer (admin)
8855
+ * Read-through to Stripe: returns the live Stripe Customer object for this account. Does not persist anything — use POST /sync-stripe to save the snapshot.
8592
8856
  * @param data The data for the request.
8593
8857
  * @param data.id
8594
8858
  * @returns unknown Successful Response
@@ -8596,12 +8860,8 @@ declare const getAccountAdminAccountsIdGet: (data: GetAccountAdminAccountsIdGetD
8596
8860
  */
8597
8861
  declare const getStripeCustomerAdminAccountsIdStripeCustomerGet: (data: GetStripeCustomerAdminAccountsIdStripeCustomerGetData) => CancelablePromise<GetStripeCustomerAdminAccountsIdStripeCustomerGetResponse>;
8598
8862
  /**
8599
- * Sync Stripe
8600
- * Pull the Stripe customer snapshot and persist it on the account.
8601
- *
8602
- * Writes ``details["stripe_customer"]`` (the full Stripe payload) and
8603
- * ``details["stripe_synced_at"]`` (ISO timestamp). Existing keys in
8604
- * ``details`` are preserved.
8863
+ * Sync Stripe customer snapshot (admin)
8864
+ * Fetch the Stripe Customer and persist it in `Account.details` (`stripe_customer` + `stripe_synced_at`). Existing details keys are preserved.
8605
8865
  * @param data The data for the request.
8606
8866
  * @param data.id
8607
8867
  * @returns SyncStripeResponse Successful Response
@@ -8609,12 +8869,8 @@ declare const getStripeCustomerAdminAccountsIdStripeCustomerGet: (data: GetStrip
8609
8869
  */
8610
8870
  declare const syncStripeAdminAccountsIdSyncStripePost: (data: SyncStripeAdminAccountsIdSyncStripePostData) => CancelablePromise<SyncStripeAdminAccountsIdSyncStripePostResponse>;
8611
8871
  /**
8612
- * Link Stripe
8613
- * Manually associate a Stripe customer id with an account.
8614
- *
8615
- * Useful for reconciling local records that pre-date the
8616
- * auto-customer-create flow. This does NOT call Stripe; follow up
8617
- * with ``POST /sync-stripe`` to pull the snapshot.
8872
+ * Link Stripe customer ID (admin)
8873
+ * Manually associate an existing Stripe customer ID with a local account. Follow up with POST /sync-stripe to pull the full snapshot.
8618
8874
  * @param data The data for the request.
8619
8875
  * @param data.id
8620
8876
  * @param data.requestBody
@@ -8641,7 +8897,8 @@ declare const getSignedDownloadLinkDownloadsFileNameGet: (data: GetSignedDownloa
8641
8897
  */
8642
8898
  declare const sendDownloadLinkViaEmailDownloadsSendPost: (data: SendDownloadLinkViaEmailDownloadsSendPostData) => CancelablePromise<SendDownloadLinkViaEmailDownloadsSendPostResponse>;
8643
8899
  /**
8644
- * Get Multi
8900
+ * List shops
8901
+ * Returns all shops on the platform. Supports pagination, filtering, and sorting via common query parameters.
8645
8902
  * @param data The data for the request.
8646
8903
  * @param data.skip
8647
8904
  * @param data.limit
@@ -8652,7 +8909,8 @@ declare const sendDownloadLinkViaEmailDownloadsSendPost: (data: SendDownloadLink
8652
8909
  */
8653
8910
  declare const getMultiShopsGet: (data?: GetMultiShopsGetData) => CancelablePromise<GetMultiShopsGetResponse>;
8654
8911
  /**
8655
- * Create
8912
+ * Create shop
8913
+ * Create a new shop on the platform. Returns the created shop record.
8656
8914
  * @param data The data for the request.
8657
8915
  * @param data.requestBody
8658
8916
  * @returns ShopSchema Successful Response
@@ -8667,8 +8925,8 @@ declare const createShopsPost: (data: CreateShopsPostData) => CancelablePromise<
8667
8925
  */
8668
8926
  declare const listMyShops: () => CancelablePromise<ListMyShopsResponse>;
8669
8927
  /**
8670
- * Get Cache Status
8671
- * Show date of last change in data that could be visible in this shop
8928
+ * Get shop cache status
8929
+ * Returns the timestamp of the last data change visible in this shop. Useful for cache invalidation.
8672
8930
  * @param data The data for the request.
8673
8931
  * @param data.id
8674
8932
  * @returns ShopCacheStatus Successful Response
@@ -8676,8 +8934,8 @@ declare const listMyShops: () => CancelablePromise<ListMyShopsResponse>;
8676
8934
  */
8677
8935
  declare const getCacheStatusShopsCacheStatusIdGet: (data: GetCacheStatusShopsCacheStatusIdGetData) => CancelablePromise<GetCacheStatusShopsCacheStatusIdGetResponse>;
8678
8936
  /**
8679
- * Get Last Completed Order
8680
- * Show date of last change in data that could be visible in this shop
8937
+ * Get timestamp of last completed order
8938
+ * Returns the timestamp of the most recently completed order for the shop. Used to detect new fulfilments.
8681
8939
  * @param data The data for the request.
8682
8940
  * @param data.id
8683
8941
  * @returns ShopLastCompletedOrder Successful Response
@@ -8685,8 +8943,8 @@ declare const getCacheStatusShopsCacheStatusIdGet: (data: GetCacheStatusShopsCac
8685
8943
  */
8686
8944
  declare const getLastCompletedOrderShopsLastCompletedOrderIdGet: (data: GetLastCompletedOrderShopsLastCompletedOrderIdGetData) => CancelablePromise<GetLastCompletedOrderShopsLastCompletedOrderIdGetResponse>;
8687
8945
  /**
8688
- * Get Last Pending Order
8689
- * Show date of last change in data that could be visible in this shop
8946
+ * Get timestamp of last pending order
8947
+ * Returns the timestamp of the most recently created pending order for the shop. Used by POS displays to detect new incoming orders.
8690
8948
  * @param data The data for the request.
8691
8949
  * @param data.id
8692
8950
  * @returns ShopLastPendingOrder Successful Response
@@ -8694,8 +8952,8 @@ declare const getLastCompletedOrderShopsLastCompletedOrderIdGet: (data: GetLastC
8694
8952
  */
8695
8953
  declare const getLastPendingOrderShopsLastPendingOrderIdGet: (data: GetLastPendingOrderShopsLastPendingOrderIdGetData) => CancelablePromise<GetLastPendingOrderShopsLastPendingOrderIdGetResponse>;
8696
8954
  /**
8697
- * Get By Id
8698
- * List Shop
8955
+ * Get shop
8956
+ * Retrieve a shop by its UUID, including all associated price records.
8699
8957
  * @param data The data for the request.
8700
8958
  * @param data.id
8701
8959
  * @returns ShopWithPrices Successful Response
@@ -8703,7 +8961,8 @@ declare const getLastPendingOrderShopsLastPendingOrderIdGet: (data: GetLastPendi
8703
8961
  */
8704
8962
  declare const getByIdShopsIdGet: (data: GetByIdShopsIdGetData) => CancelablePromise<GetByIdShopsIdGetResponse>;
8705
8963
  /**
8706
- * Update
8964
+ * Update shop
8965
+ * Update shop details such as name, description, and VAT rates.
8707
8966
  * @param data The data for the request.
8708
8967
  * @param data.shopId
8709
8968
  * @param data.requestBody
@@ -8712,7 +8971,8 @@ declare const getByIdShopsIdGet: (data: GetByIdShopsIdGetData) => CancelableProm
8712
8971
  */
8713
8972
  declare const updateShopsShopIdPut: (data: UpdateShopsShopIdPutData) => CancelablePromise<UpdateShopsShopIdPutResponse>;
8714
8973
  /**
8715
- * Delete
8974
+ * Delete shop
8975
+ * Permanently remove a shop from the platform.
8716
8976
  * @param data The data for the request.
8717
8977
  * @param data.shopId
8718
8978
  * @returns void Successful Response
@@ -8720,7 +8980,8 @@ declare const updateShopsShopIdPut: (data: UpdateShopsShopIdPutData) => Cancelab
8720
8980
  */
8721
8981
  declare const deleteShopsShopIdDelete: (data: DeleteShopsShopIdDeleteData) => CancelablePromise<DeleteShopsShopIdDeleteResponse>;
8722
8982
  /**
8723
- * Get Config
8983
+ * Get shop configuration
8984
+ * Retrieve the shop's full configuration object, including feature toggles (e.g. stock tracking, checkout behaviour) and payment settings.
8724
8985
  * @param data The data for the request.
8725
8986
  * @param data.id
8726
8987
  * @returns ShopConfig Successful Response
@@ -8728,7 +8989,8 @@ declare const deleteShopsShopIdDelete: (data: DeleteShopsShopIdDeleteData) => Ca
8728
8989
  */
8729
8990
  declare const getConfigShopsConfigIdGet: (data: GetConfigShopsConfigIdGetData) => CancelablePromise<GetConfigShopsConfigIdGetResponse>;
8730
8991
  /**
8731
- * Update Config
8992
+ * Update shop configuration
8993
+ * Update the shop's configuration. Partial updates are supported — only provided fields are changed.
8732
8994
  * @param data The data for the request.
8733
8995
  * @param data.id
8734
8996
  * @param data.requestBody
@@ -8737,7 +8999,8 @@ declare const getConfigShopsConfigIdGet: (data: GetConfigShopsConfigIdGetData) =
8737
8999
  */
8738
9000
  declare const updateConfigShopsConfigIdPut: (data: UpdateConfigShopsConfigIdPutData) => CancelablePromise<UpdateConfigShopsConfigIdPutResponse>;
8739
9001
  /**
8740
- * Get Allowed Ips
9002
+ * List allowed IPs
9003
+ * Returns the list of IP addresses permitted to submit orders to this shop. An empty list means all IPs are allowed.
8741
9004
  * @param data The data for the request.
8742
9005
  * @param data.id
8743
9006
  * @returns string Successful Response
@@ -8745,7 +9008,8 @@ declare const updateConfigShopsConfigIdPut: (data: UpdateConfigShopsConfigIdPutD
8745
9008
  */
8746
9009
  declare const getAllowedIpsShopsAllowedIpsIdGet: (data: GetAllowedIpsShopsAllowedIpsIdGetData) => CancelablePromise<GetAllowedIpsShopsAllowedIpsIdGetResponse>;
8747
9010
  /**
8748
- * Add New Ip
9011
+ * Add allowed IP
9012
+ * Add an IP address to the shop's order submission allowlist. Returns the updated list of allowed IPs.
8749
9013
  * @param data The data for the request.
8750
9014
  * @param data.id
8751
9015
  * @param data.requestBody
@@ -8754,7 +9018,8 @@ declare const getAllowedIpsShopsAllowedIpsIdGet: (data: GetAllowedIpsShopsAllowe
8754
9018
  */
8755
9019
  declare const addNewIpShopsAllowedIpsIdPost: (data: AddNewIpShopsAllowedIpsIdPostData) => CancelablePromise<AddNewIpShopsAllowedIpsIdPostResponse>;
8756
9020
  /**
8757
- * Remove Ip
9021
+ * Remove allowed IP
9022
+ * Remove an IP address from the shop's order submission allowlist. Returns the updated list.
8758
9023
  * @param data The data for the request.
8759
9024
  * @param data.id
8760
9025
  * @param data.requestBody
@@ -8763,7 +9028,8 @@ declare const addNewIpShopsAllowedIpsIdPost: (data: AddNewIpShopsAllowedIpsIdPos
8763
9028
  */
8764
9029
  declare const removeIpShopsAllowedIpsIdRemovePost: (data: RemoveIpShopsAllowedIpsIdRemovePostData) => CancelablePromise<RemoveIpShopsAllowedIpsIdRemovePostResponse>;
8765
9030
  /**
8766
- * Get Products
9031
+ * List products (pricelist)
9032
+ * Returns the full product catalogue for a shop in the requested language (`main`, `alt1`, or `alt2`). Products with missing translations for the requested language are excluded. When stock tracking is enabled, out-of-stock products are also filtered out.
8767
9033
  * @param data The data for the request.
8768
9034
  * @param data.shopId
8769
9035
  * @param data.lang
@@ -8772,7 +9038,8 @@ declare const removeIpShopsAllowedIpsIdRemovePost: (data: RemoveIpShopsAllowedIp
8772
9038
  */
8773
9039
  declare const getProductsShopsShopIdPricesGet: (data: GetProductsShopsShopIdPricesGetData) => CancelablePromise<GetProductsShopsShopIdPricesGetResponse>;
8774
9040
  /**
8775
- * Get Cart Products
9041
+ * Get cart products
9042
+ * Retrieve product details for a list of product IDs (a cart). Falls back to the `main` language for any product missing a translation in the requested language.
8776
9043
  * @param data The data for the request.
8777
9044
  * @param data.shopId
8778
9045
  * @param data.lang
@@ -8782,7 +9049,8 @@ declare const getProductsShopsShopIdPricesGet: (data: GetProductsShopsShopIdPric
8782
9049
  */
8783
9050
  declare const getCartProductsShopsShopIdPricesPost: (data: GetCartProductsShopsShopIdPricesPostData) => CancelablePromise<GetCartProductsShopsShopIdPricesPostResponse>;
8784
9051
  /**
8785
- * Get Multi
9052
+ * List all orders
9053
+ * Returns all orders across all shops. Requires authentication. Supports pagination, filtering (e.g. `status:pending`), and sorting.
8786
9054
  * @param data The data for the request.
8787
9055
  * @param data.skip
8788
9056
  * @param data.limit
@@ -8793,7 +9061,8 @@ declare const getCartProductsShopsShopIdPricesPost: (data: GetCartProductsShopsS
8793
9061
  */
8794
9062
  declare const getMultiOrdersGet: (data?: GetMultiOrdersGetData) => CancelablePromise<GetMultiOrdersGetResponse>;
8795
9063
  /**
8796
- * Create
9064
+ * Create order
9065
+ * Submit a new customer order. The caller's IP is validated against the shop's allowlist. If stock tracking is enabled the product availability is verified before the order is created. A Stripe customer is auto-created for new account names when the shop has Stripe configured.
8797
9066
  * @param data The data for the request.
8798
9067
  * @param data.requestBody
8799
9068
  * @returns OrderCreated Successful Response
@@ -8801,7 +9070,8 @@ declare const getMultiOrdersGet: (data?: GetMultiOrdersGetData) => CancelablePro
8801
9070
  */
8802
9071
  declare const createOrdersPost: (data: CreateOrdersPostData) => CancelablePromise<CreateOrdersPostResponse>;
8803
9072
  /**
8804
- * Show All Pending Orders Per Shop
9073
+ * List pending orders for a shop
9074
+ * Returns all orders with status `pending` for the given shop. These are orders awaiting fulfilment.
8805
9075
  * @param data The data for the request.
8806
9076
  * @param data.shopId
8807
9077
  * @param data.skip
@@ -8813,7 +9083,8 @@ declare const createOrdersPost: (data: CreateOrdersPostData) => CancelablePromis
8813
9083
  */
8814
9084
  declare const showAllPendingOrdersPerShopOrdersShopShopIdPendingGet: (data: ShowAllPendingOrdersPerShopOrdersShopShopIdPendingGetData) => CancelablePromise<ShowAllPendingOrdersPerShopOrdersShopShopIdPendingGetResponse>;
8815
9085
  /**
8816
- * Show All Complete Orders Per Shop
9086
+ * List completed orders for a shop
9087
+ * Returns all orders with status `complete` or `cancelled` for the given shop. Used for order history and reporting.
8817
9088
  * @param data The data for the request.
8818
9089
  * @param data.shopId
8819
9090
  * @param data.skip
@@ -8825,7 +9096,8 @@ declare const showAllPendingOrdersPerShopOrdersShopShopIdPendingGet: (data: Show
8825
9096
  */
8826
9097
  declare const showAllCompleteOrdersPerShopOrdersShopShopIdCompleteGet: (data: ShowAllCompleteOrdersPerShopOrdersShopShopIdCompleteGetData) => CancelablePromise<ShowAllCompleteOrdersPerShopOrdersShopShopIdCompleteGetResponse>;
8827
9098
  /**
8828
- * Get By Id
9099
+ * Get order
9100
+ * Retrieve a single order by its UUID, including line items, account name, and shop name.
8829
9101
  * @param data The data for the request.
8830
9102
  * @param data.id
8831
9103
  * @returns OrderSchema Successful Response
@@ -8833,7 +9105,8 @@ declare const showAllCompleteOrdersPerShopOrdersShopShopIdCompleteGet: (data: Sh
8833
9105
  */
8834
9106
  declare const getByIdOrdersIdGet: (data: GetByIdOrdersIdGetData) => CancelablePromise<GetByIdOrdersIdGetResponse>;
8835
9107
  /**
8836
- * Check
9108
+ * Check order statuses
9109
+ * Retrieve the status and totals of up to 10 orders by passing a comma-separated list of UUIDs. All orders must belong to the same shop. Used by the checkout confirmation page.
8837
9110
  * @param data The data for the request.
8838
9111
  * @param data.ids
8839
9112
  * @returns OrderCreated Successful Response
@@ -8841,7 +9114,8 @@ declare const getByIdOrdersIdGet: (data: GetByIdOrdersIdGetData) => CancelablePr
8841
9114
  */
8842
9115
  declare const checkOrdersCheckIdsGet: (data: CheckOrdersCheckIdsGetData) => CancelablePromise<CheckOrdersCheckIdsGetResponse>;
8843
9116
  /**
8844
- * Patch
9117
+ * Update order status
9118
+ * Partially update an order — typically to mark it `complete` or `cancelled`. Setting status to `complete` triggers stock deduction (if enabled), a Discord webhook notification, and an order confirmation email. Idempotent: setting the same status twice is a no-op.
8845
9119
  * @param data The data for the request.
8846
9120
  * @param data.orderId
8847
9121
  * @param data.requestBody
@@ -8850,7 +9124,8 @@ declare const checkOrdersCheckIdsGet: (data: CheckOrdersCheckIdsGetData) => Canc
8850
9124
  */
8851
9125
  declare const patchOrdersOrderIdPatch: (data: PatchOrdersOrderIdPatchData) => CancelablePromise<PatchOrdersOrderIdPatchResponse>;
8852
9126
  /**
8853
- * Update
9127
+ * Full order update
9128
+ * Fully replace an order's fields. Requires authentication. Also sets `completed_at` when transitioning to `complete` or `cancelled`.
8854
9129
  * @param data The data for the request.
8855
9130
  * @param data.orderId
8856
9131
  * @param data.requestBody
@@ -8859,7 +9134,8 @@ declare const patchOrdersOrderIdPatch: (data: PatchOrdersOrderIdPatchData) => Ca
8859
9134
  */
8860
9135
  declare const updateOrdersOrderIdPut: (data: UpdateOrdersOrderIdPutData) => CancelablePromise<UpdateOrdersOrderIdPutResponse>;
8861
9136
  /**
8862
- * Delete
9137
+ * Delete order
9138
+ * Permanently remove an order record. Requires authentication.
8863
9139
  * @param data The data for the request.
8864
9140
  * @param data.orderId
8865
9141
  * @returns void Successful Response
@@ -8867,7 +9143,8 @@ declare const updateOrdersOrderIdPut: (data: UpdateOrdersOrderIdPutData) => Canc
8867
9143
  */
8868
9144
  declare const deleteOrdersOrderIdDelete: (data: DeleteOrdersOrderIdDeleteData) => CancelablePromise<DeleteOrdersOrderIdDeleteResponse>;
8869
9145
  /**
8870
- * Get Order Products In Stock
9146
+ * Check order stock availability
9147
+ * Returns `true` if all products in the order have sufficient stock, `false` otherwise. Only meaningful when the shop has stock tracking enabled.
8871
9148
  * @param data The data for the request.
8872
9149
  * @param data.orderId
8873
9150
  * @returns boolean Successful Response
@@ -8883,7 +9160,8 @@ declare const getOrderProductsInStockOrdersStockOrderIdGet: (data: GetOrderProdu
8883
9160
  */
8884
9161
  declare const calculateShippingCalculatePost: (data: CalculateShippingCalculatePostData) => CancelablePromise<CalculateShippingCalculatePostResponse>;
8885
9162
  /**
8886
- * Get Multi
9163
+ * List categories
9164
+ * Returns paginated categories for a shop, ordered by `order_number`. Supports filtering and sorting.
8887
9165
  * @param data The data for the request.
8888
9166
  * @param data.shopId
8889
9167
  * @param data.skip
@@ -8896,7 +9174,8 @@ declare const calculateShippingCalculatePost: (data: CalculateShippingCalculateP
8896
9174
  */
8897
9175
  declare const listCategories: (data: ListCategoriesData) => CancelablePromise<ListCategoriesResponse>;
8898
9176
  /**
8899
- * Create
9177
+ * Create category
9178
+ * Add a new category to a shop. The `order_number` is automatically set to the next available value.
8900
9179
  * @param data The data for the request.
8901
9180
  * @param data.shopId
8902
9181
  * @param data.requestBody
@@ -8906,7 +9185,8 @@ declare const listCategories: (data: ListCategoriesData) => CancelablePromise<Li
8906
9185
  */
8907
9186
  declare const createCategory: (data: CreateCategoryData) => CancelablePromise<CreateCategoryResponse>;
8908
9187
  /**
8909
- * Get By Id
9188
+ * Get category
9189
+ * Retrieve a single category by its UUID within a shop.
8910
9190
  * @param data The data for the request.
8911
9191
  * @param data.shopId
8912
9192
  * @param data.categoryId
@@ -8916,7 +9196,8 @@ declare const createCategory: (data: CreateCategoryData) => CancelablePromise<Cr
8916
9196
  */
8917
9197
  declare const getCategory: (data: GetCategoryData) => CancelablePromise<GetCategoryResponse>;
8918
9198
  /**
8919
- * Update
9199
+ * Update category
9200
+ * Update an existing category's details and translations.
8920
9201
  * @param data The data for the request.
8921
9202
  * @param data.categoryId
8922
9203
  * @param data.shopId
@@ -8927,17 +9208,21 @@ declare const getCategory: (data: GetCategoryData) => CancelablePromise<GetCateg
8927
9208
  */
8928
9209
  declare const updateCategory: (data: UpdateCategoryData) => CancelablePromise<UpdateCategoryResponse>;
8929
9210
  /**
8930
- * Delete
9211
+ * Delete category (moves to trash)
9212
+ * Moves a category to the trash (restorable with `restore_category`). If products are still assigned to it the request fails with 409 and the product count; retry with `force=true` to also move all those products to the trash (restorable as one batch), or with `detach=true` to keep the products but clear their category. `force` and `detach` are mutually exclusive.
8931
9213
  * @param data The data for the request.
8932
9214
  * @param data.categoryId
8933
9215
  * @param data.shopId
9216
+ * @param data.force Also move all products in this category to the trash.
9217
+ * @param data.detach Keep the products; clear their category reference instead.
8934
9218
  * @param data.xApiKey
8935
9219
  * @returns void Successful Response
8936
9220
  * @throws ApiError
8937
9221
  */
8938
9222
  declare const deleteCategory: (data: DeleteCategoryData) => CancelablePromise<DeleteCategoryResponse>;
8939
9223
  /**
8940
- * Get By Name
9224
+ * Get category by name
9225
+ * Retrieve a category using its human-readable name (exact match, case-sensitive).
8941
9226
  * @param data The data for the request.
8942
9227
  * @param data.name
8943
9228
  * @param data.shopId
@@ -8947,7 +9232,8 @@ declare const deleteCategory: (data: DeleteCategoryData) => CancelablePromise<De
8947
9232
  */
8948
9233
  declare const getByNameShopsShopIdCategoriesNameNameGet: (data: GetByNameShopsShopIdCategoriesNameNameGetData) => CancelablePromise<GetByNameShopsShopIdCategoriesNameNameGetResponse>;
8949
9234
  /**
8950
- * Swap
9235
+ * Reorder category
9236
+ * Move a category up (`move_up=true`) or down (`move_up=false`) in the display order. Swaps `order_number` with the adjacent category.
8951
9237
  * @param data The data for the request.
8952
9238
  * @param data.shopId
8953
9239
  * @param data.categoryId
@@ -9040,7 +9326,8 @@ declare const deleteImageShopsShopIdCategoriesImagesDeleteIdPut: (data: DeleteIm
9040
9326
  */
9041
9327
  declare const getSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGet: (data: GetSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGetData) => CancelablePromise<GetSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGetResponse>;
9042
9328
  /**
9043
- * Get Multi
9329
+ * List products
9330
+ * Returns paginated products for a shop, each with its default price. Supports filtering (e.g. `featured:true`, `category_id:<uuid>`) and sorting via common query parameters.
9044
9331
  * @param data The data for the request.
9045
9332
  * @param data.shopId
9046
9333
  * @param data.stockStatus Filter products by inventory state. `in_stock` returns products with stock > 0, `out_of_stock` returns products with stock = 0, `all` (default) returns everything.
@@ -9054,7 +9341,8 @@ declare const getSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGet: (data: G
9054
9341
  */
9055
9342
  declare const listProducts: (data: ListProductsData) => CancelablePromise<ListProductsResponse>;
9056
9343
  /**
9057
- * Create
9344
+ * Create product
9345
+ * Add a new product to a shop category. The `order_number` is automatically set to the next available value within the category.
9058
9346
  * @param data The data for the request.
9059
9347
  * @param data.shopId
9060
9348
  * @param data.requestBody
@@ -9095,7 +9383,8 @@ declare const createProduct: (data: CreateProductData) => CancelablePromise<Crea
9095
9383
  */
9096
9384
  declare const getMultiWithAttributesShopsShopIdProductsWithAttributesGet: (data: GetMultiWithAttributesShopsShopIdProductsWithAttributesGetData) => CancelablePromise<GetMultiWithAttributesShopsShopIdProductsWithAttributesGetResponse>;
9097
9385
  /**
9098
- * Update
9386
+ * Update product
9387
+ * Update an existing product's details, including name, description, pricing, stock, and feature flags.
9099
9388
  * @param data The data for the request.
9100
9389
  * @param data.productId
9101
9390
  * @param data.shopId
@@ -9106,17 +9395,20 @@ declare const getMultiWithAttributesShopsShopIdProductsWithAttributesGet: (data:
9106
9395
  */
9107
9396
  declare const updateProduct: (data: UpdateProductData) => CancelablePromise<UpdateProductResponse>;
9108
9397
  /**
9109
- * Delete
9398
+ * Delete product (moves to trash)
9399
+ * Moves the product to the trash. The product disappears from all listings but can be restored with `restore_product` or via its revisions — this action is reversible. Only `force=true` permanently purges the product; that is irreversible and requires user (Cognito) credentials — API keys get 403.
9110
9400
  * @param data The data for the request.
9111
9401
  * @param data.productId
9112
9402
  * @param data.shopId
9403
+ * @param data.force Permanently purge instead of moving to trash. Irreversible.
9113
9404
  * @param data.xApiKey
9114
9405
  * @returns void Successful Response
9115
9406
  * @throws ApiError
9116
9407
  */
9117
9408
  declare const deleteProduct: (data: DeleteProductData) => CancelablePromise<DeleteProductResponse>;
9118
9409
  /**
9119
- * Get By Id
9410
+ * Get product
9411
+ * Retrieve full product details including all active prices, translations, and images. Public endpoint — no authentication required.
9120
9412
  * @param data The data for the request.
9121
9413
  * @param data.productId
9122
9414
  * @param data.shopId
@@ -9125,7 +9417,8 @@ declare const deleteProduct: (data: DeleteProductData) => CancelablePromise<Dele
9125
9417
  */
9126
9418
  declare const getProduct: (data: GetProductData) => CancelablePromise<GetProductResponse>;
9127
9419
  /**
9128
- * Swap
9420
+ * Reorder product
9421
+ * Move a product up (`move_up=true`) or down (`move_up=false`) in the display order within its category. Swaps `order_number` with the adjacent product.
9129
9422
  * @param data The data for the request.
9130
9423
  * @param data.shopId
9131
9424
  * @param data.productId
@@ -9136,7 +9429,8 @@ declare const getProduct: (data: GetProductData) => CancelablePromise<GetProduct
9136
9429
  */
9137
9430
  declare const swapShopsShopIdProductsProductIdSwapPut: (data: SwapShopsShopIdProductsProductIdSwapPutData) => CancelablePromise<SwapShopsShopIdProductsProductIdSwapPutResponse>;
9138
9431
  /**
9139
- * Get By Id With Attributes
9432
+ * Get product with attributes
9433
+ * Retrieve a single product together with its assigned attribute values (e.g. size, color). Public endpoint — no authentication required.
9140
9434
  * @param data The data for the request.
9141
9435
  * @param data.productId
9142
9436
  * @param data.shopId
@@ -9145,8 +9439,8 @@ declare const swapShopsShopIdProductsProductIdSwapPut: (data: SwapShopsShopIdPro
9145
9439
  */
9146
9440
  declare const getByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGet: (data: GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetData) => CancelablePromise<GetByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGetResponse>;
9147
9441
  /**
9148
- * Get Multi
9149
- * List prices for a product_to_tag
9442
+ * List product-tag associations
9443
+ * Returns all product-to-tag relationship records for a shop.
9150
9444
  * @param data The data for the request.
9151
9445
  * @param data.skip
9152
9446
  * @param data.limit
@@ -9157,7 +9451,8 @@ declare const getByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGet
9157
9451
  */
9158
9452
  declare const getMultiShopsShopIdProductsToTagsGet: (data?: GetMultiShopsShopIdProductsToTagsGetData) => CancelablePromise<GetMultiShopsShopIdProductsToTagsGetResponse>;
9159
9453
  /**
9160
- * Create
9454
+ * Add tag to product
9455
+ * Create an association between a product and a tag. Both must exist within the shop.
9161
9456
  * @param data The data for the request.
9162
9457
  * @param data.requestBody
9163
9458
  * @returns void Successful Response
@@ -9165,7 +9460,8 @@ declare const getMultiShopsShopIdProductsToTagsGet: (data?: GetMultiShopsShopIdP
9165
9460
  */
9166
9461
  declare const createShopsShopIdProductsToTagsPost: (data: CreateShopsShopIdProductsToTagsPostData) => CancelablePromise<CreateShopsShopIdProductsToTagsPostResponse>;
9167
9462
  /**
9168
- * Get Relation Id
9463
+ * Get product-tag relation ID
9464
+ * Find the UUID of the association record between a specific product and tag. Returns 400 if the relation does not exist.
9169
9465
  * @param data The data for the request.
9170
9466
  * @param data.tagId
9171
9467
  * @param data.productId
@@ -9174,7 +9470,8 @@ declare const createShopsShopIdProductsToTagsPost: (data: CreateShopsShopIdProdu
9174
9470
  */
9175
9471
  declare const getRelationIdShopsShopIdProductsToTagsGetRelationIdGet: (data: GetRelationIdShopsShopIdProductsToTagsGetRelationIdGetData) => CancelablePromise<GetRelationIdShopsShopIdProductsToTagsGetRelationIdGetResponse>;
9176
9472
  /**
9177
- * Get By Id
9473
+ * Get product-tag association
9474
+ * Retrieve a single product-to-tag association by its UUID.
9178
9475
  * @param data The data for the request.
9179
9476
  * @param data.id
9180
9477
  * @returns ProductToTagSchema Successful Response
@@ -9182,7 +9479,8 @@ declare const getRelationIdShopsShopIdProductsToTagsGetRelationIdGet: (data: Get
9182
9479
  */
9183
9480
  declare const getByIdShopsShopIdProductsToTagsIdGet: (data: GetByIdShopsShopIdProductsToTagsIdGetData) => CancelablePromise<GetByIdShopsShopIdProductsToTagsIdGetResponse>;
9184
9481
  /**
9185
- * Update
9482
+ * Update product-tag association
9483
+ * Update an existing product-tag association record.
9186
9484
  * @param data The data for the request.
9187
9485
  * @param data.productToTagId
9188
9486
  * @param data.requestBody
@@ -9191,7 +9489,8 @@ declare const getByIdShopsShopIdProductsToTagsIdGet: (data: GetByIdShopsShopIdPr
9191
9489
  */
9192
9490
  declare const updateShopsShopIdProductsToTagsProductToTagIdPut: (data: UpdateShopsShopIdProductsToTagsProductToTagIdPutData) => CancelablePromise<UpdateShopsShopIdProductsToTagsProductToTagIdPutResponse>;
9193
9491
  /**
9194
- * Delete
9492
+ * Remove tag from product
9493
+ * Delete the association between a product and a tag.
9195
9494
  * @param data The data for the request.
9196
9495
  * @param data.productToTagId
9197
9496
  * @returns void Successful Response
@@ -9199,7 +9498,177 @@ declare const updateShopsShopIdProductsToTagsProductToTagIdPut: (data: UpdateSho
9199
9498
  */
9200
9499
  declare const deleteShopsShopIdProductsToTagsProductToTagIdDelete: (data: DeleteShopsShopIdProductsToTagsProductToTagIdDeleteData) => CancelablePromise<DeleteShopsShopIdProductsToTagsProductToTagIdDeleteResponse>;
9201
9500
  /**
9202
- * Get Multi
9501
+ * List all revisions in a shop
9502
+ * Shop-wide change feed: every recorded revision of every product, category, tag and attribute, newest first. Supports filtering by `entity_type` (product | category | tag | attribute), `entity_id`, `action` (create | update | delete | restore | baseline), `source` (rest | mcp) and `created_by`, plus `skip`/`limit` pagination (the total is returned in the Content-Range header). Use `get_revision` to inspect a revision's full snapshot.
9503
+ * @param data The data for the request.
9504
+ * @param data.shopId
9505
+ * @param data.entityType Filter: product | category | tag | attribute.
9506
+ * @param data.entityId Filter on one specific entity.
9507
+ * @param data.action Filter: create | update | delete | restore | baseline.
9508
+ * @param data.source Filter: rest | mcp.
9509
+ * @param data.createdBy Filter on actor, e.g. "api_key:<uuid>" or "cognito:<sub>".
9510
+ * @param data.skip
9511
+ * @param data.limit
9512
+ * @param data.xApiKey
9513
+ * @returns RevisionSummary Successful Response
9514
+ * @throws ApiError
9515
+ */
9516
+ declare const listShopRevisions: (data: ListShopRevisionsData) => CancelablePromise<ListShopRevisionsResponse>;
9517
+ /**
9518
+ * Get one revision by id
9519
+ * Returns one revision (of any entity type) by its id, including the full snapshot data. Use it to inspect entries from the `list_shop_revisions` feed.
9520
+ * @param data The data for the request.
9521
+ * @param data.shopId
9522
+ * @param data.revisionId
9523
+ * @param data.xApiKey
9524
+ * @returns RevisionDetail Successful Response
9525
+ * @throws ApiError
9526
+ */
9527
+ declare const getRevision: (data: GetRevisionData) => CancelablePromise<GetRevisionResponse>;
9528
+ /**
9529
+ * List product revisions
9530
+ * Returns the revision history of a product, newest first. Every change to the product (fields, translation, tags, attribute values, images) recorded one revision. Use `get_product_revision` to inspect a revision and `restore_product_revision` to roll back to it.
9531
+ * @param data The data for the request.
9532
+ * @param data.shopId
9533
+ * @param data.productId
9534
+ * @param data.xApiKey
9535
+ * @returns RevisionSummary Successful Response
9536
+ * @throws ApiError
9537
+ */
9538
+ declare const listProductRevisions: (data: ListProductRevisionsData) => CancelablePromise<ListProductRevisionsResponse>;
9539
+ /**
9540
+ * Get product revision
9541
+ * Returns one product revision including the full snapshot data (all fields, tags, attribute values and image references at that point in time).
9542
+ * @param data The data for the request.
9543
+ * @param data.shopId
9544
+ * @param data.productId
9545
+ * @param data.revisionNo
9546
+ * @param data.xApiKey
9547
+ * @returns RevisionDetail Successful Response
9548
+ * @throws ApiError
9549
+ */
9550
+ declare const getProductRevision: (data: GetProductRevisionData) => CancelablePromise<GetProductRevisionResponse>;
9551
+ /**
9552
+ * Restore product to a revision
9553
+ * Rolls the product back to the state captured in the given revision: fields, translation, category, tags, attribute values and image references. Soft-deleted categories/tags/attributes referenced by the snapshot are automatically restored from the trash; references that were permanently purged are matched by name where possible, otherwise reported in `unresolved`. The restore itself is recorded as a new revision, so it can be undone too. Read the returned report to see what could not be brought back.
9554
+ * @param data The data for the request.
9555
+ * @param data.shopId
9556
+ * @param data.productId
9557
+ * @param data.revisionNo
9558
+ * @param data.force Recreate the product from the snapshot even if it was permanently purged (user credentials required).
9559
+ * @param data.xApiKey
9560
+ * @returns RestoreReport Successful Response
9561
+ * @throws ApiError
9562
+ */
9563
+ declare const restoreProductRevision: (data: RestoreProductRevisionData) => CancelablePromise<RestoreProductRevisionResponse>;
9564
+ /**
9565
+ * Restore product from trash
9566
+ * Brings a trashed (deleted) product back, including its tags and attribute values. If the product's category is also in the trash it is restored as well.
9567
+ * @param data The data for the request.
9568
+ * @param data.shopId
9569
+ * @param data.productId
9570
+ * @param data.xApiKey
9571
+ * @returns RestoreReport Successful Response
9572
+ * @throws ApiError
9573
+ */
9574
+ declare const restoreProduct: (data: RestoreProductData) => CancelablePromise<RestoreProductResponse>;
9575
+ /**
9576
+ * List category revisions
9577
+ * Returns the revision history of a category, newest first.
9578
+ * @param data The data for the request.
9579
+ * @param data.shopId
9580
+ * @param data.categoryId
9581
+ * @param data.xApiKey
9582
+ * @returns RevisionSummary Successful Response
9583
+ * @throws ApiError
9584
+ */
9585
+ declare const listCategoryRevisionsShopsShopIdCategoriesCategoryIdRevisionsGet: (data: ListCategoryRevisionsShopsShopIdCategoriesCategoryIdRevisionsGetData) => CancelablePromise<ListCategoryRevisionsShopsShopIdCategoriesCategoryIdRevisionsGetResponse>;
9586
+ /**
9587
+ * Restore category from trash
9588
+ * Brings a trashed (deleted) category back. With `restore_products=true` (default) it also restores every product that was moved to the trash together with the category by a `delete_category` with `force=true`.
9589
+ * @param data The data for the request.
9590
+ * @param data.shopId
9591
+ * @param data.categoryId
9592
+ * @param data.restoreProducts Also restore the products trashed together with this category.
9593
+ * @param data.xApiKey
9594
+ * @returns RestoreReport Successful Response
9595
+ * @throws ApiError
9596
+ */
9597
+ declare const restoreCategory: (data: RestoreCategoryData) => CancelablePromise<RestoreCategoryResponse>;
9598
+ /**
9599
+ * Restore category to a revision
9600
+ * Rolls the category back to the state captured in the given revision: fields, translations and image references. Products are not touched — use `restore_category` for a trashed category with its product batch, or per-product revision restores to reattach detached products. If the category was permanently purged, `force=true` (user credentials required) recreates it under its original id. The restore is recorded as a new revision.
9601
+ * @param data The data for the request.
9602
+ * @param data.shopId
9603
+ * @param data.categoryId
9604
+ * @param data.revisionNo
9605
+ * @param data.force Recreate the category from the snapshot even if it was permanently purged (user credentials required).
9606
+ * @param data.xApiKey
9607
+ * @returns RestoreReport Successful Response
9608
+ * @throws ApiError
9609
+ */
9610
+ declare const restoreCategoryRevision: (data: RestoreCategoryRevisionData) => CancelablePromise<RestoreCategoryRevisionResponse>;
9611
+ /**
9612
+ * Restore tag to a revision
9613
+ * Rolls the tag back to the state captured in the given revision (name and translations). Use the `list_shop_revisions` feed with `entity_type=tag` to find revisions. If the tag was permanently purged, `force=true` (user credentials required) recreates it under its original id so existing product links in old snapshots resolve again. The restore is recorded as a new revision.
9614
+ * @param data The data for the request.
9615
+ * @param data.shopId
9616
+ * @param data.tagId
9617
+ * @param data.revisionNo
9618
+ * @param data.force Recreate the tag from the snapshot even if it was permanently purged (user credentials required).
9619
+ * @param data.xApiKey
9620
+ * @returns RestoreReport Successful Response
9621
+ * @throws ApiError
9622
+ */
9623
+ declare const restoreTagRevision: (data: RestoreTagRevisionData) => CancelablePromise<RestoreTagRevisionResponse>;
9624
+ /**
9625
+ * Restore tag from trash
9626
+ * Brings a trashed (deleted) tag back. Its product links were kept in the trash, so the tag reappears on all products that carried it.
9627
+ * @param data The data for the request.
9628
+ * @param data.shopId
9629
+ * @param data.tagId
9630
+ * @param data.xApiKey
9631
+ * @returns RestoreReport Successful Response
9632
+ * @throws ApiError
9633
+ */
9634
+ declare const restoreTag: (data: RestoreTagData) => CancelablePromise<RestoreTagResponse>;
9635
+ /**
9636
+ * Restore attribute to a revision
9637
+ * Rolls the attribute back to the state captured in the given revision: name, unit, translations and its option set. Trashed options in the snapshot are restored, purged ones are recreated under their original id, and live options that are not in the snapshot are moved to the trash (their product values survive). Use `list_shop_revisions` with `entity_type=attribute` to find revisions. If the attribute was permanently purged, `force=true` (user credentials required) recreates it. The restore is recorded as a new revision. Read the returned report for what was resurrected, recreated or trashed.
9638
+ * @param data The data for the request.
9639
+ * @param data.shopId
9640
+ * @param data.attributeId
9641
+ * @param data.revisionNo
9642
+ * @param data.force Recreate the attribute from the snapshot even if it was permanently purged (user credentials required).
9643
+ * @param data.xApiKey
9644
+ * @returns RestoreReport Successful Response
9645
+ * @throws ApiError
9646
+ */
9647
+ declare const restoreAttributeRevision: (data: RestoreAttributeRevisionData) => CancelablePromise<RestoreAttributeRevisionResponse>;
9648
+ /**
9649
+ * Restore attribute from trash
9650
+ * Brings a trashed (deleted) attribute back, including its options and all product values that used it. Options that were trashed individually before stay in the trash — restore an attribute revision to bring those back too.
9651
+ * @param data The data for the request.
9652
+ * @param data.shopId
9653
+ * @param data.attributeId
9654
+ * @param data.xApiKey
9655
+ * @returns RestoreReport Successful Response
9656
+ * @throws ApiError
9657
+ */
9658
+ declare const restoreAttribute: (data: RestoreAttributeData) => CancelablePromise<RestoreAttributeResponse>;
9659
+ /**
9660
+ * List trashed products, categories, tags and attributes
9661
+ * Returns all soft-deleted products, categories, tags and attributes of the shop, so they can be inspected and restored.
9662
+ * @param data The data for the request.
9663
+ * @param data.shopId
9664
+ * @param data.xApiKey
9665
+ * @returns TrashItem Successful Response
9666
+ * @throws ApiError
9667
+ */
9668
+ declare const listTrashShopsShopIdTrashGet: (data: ListTrashShopsShopIdTrashGetData) => CancelablePromise<ListTrashShopsShopIdTrashGetResponse>;
9669
+ /**
9670
+ * List tags
9671
+ * Returns all tags defined for a shop. Tags can be attached to products for flexible grouping and filtering.
9203
9672
  * @param data The data for the request.
9204
9673
  * @param data.shopId
9205
9674
  * @param data.skip
@@ -9212,7 +9681,8 @@ declare const deleteShopsShopIdProductsToTagsProductToTagIdDelete: (data: Delete
9212
9681
  */
9213
9682
  declare const listTags: (data: ListTagsData) => CancelablePromise<ListTagsResponse>;
9214
9683
  /**
9215
- * Create
9684
+ * Create tag
9685
+ * Create a new tag for a shop. Tags are attached to products via the `products-to-tags` resource.
9216
9686
  * @param data The data for the request.
9217
9687
  * @param data.shopId
9218
9688
  * @param data.requestBody
@@ -9222,7 +9692,8 @@ declare const listTags: (data: ListTagsData) => CancelablePromise<ListTagsRespon
9222
9692
  */
9223
9693
  declare const createTag: (data: CreateTagData) => CancelablePromise<CreateTagResponse>;
9224
9694
  /**
9225
- * Get By Id
9695
+ * Get tag
9696
+ * Retrieve a single tag by its UUID within a shop.
9226
9697
  * @param data The data for the request.
9227
9698
  * @param data.tagId
9228
9699
  * @param data.shopId
@@ -9232,7 +9703,8 @@ declare const createTag: (data: CreateTagData) => CancelablePromise<CreateTagRes
9232
9703
  */
9233
9704
  declare const getTag: (data: GetTagData) => CancelablePromise<GetTagResponse>;
9234
9705
  /**
9235
- * Update
9706
+ * Update tag
9707
+ * Update an existing tag's name or translations.
9236
9708
  * @param data The data for the request.
9237
9709
  * @param data.tagId
9238
9710
  * @param data.shopId
@@ -9243,17 +9715,20 @@ declare const getTag: (data: GetTagData) => CancelablePromise<GetTagResponse>;
9243
9715
  */
9244
9716
  declare const updateTag: (data: UpdateTagData) => CancelablePromise<UpdateTagResponse>;
9245
9717
  /**
9246
- * Delete
9718
+ * Delete tag (moves to trash)
9719
+ * Moves a tag to the trash: it disappears from listings and from the products carrying it, but its product links are kept so restoring the tag brings everything back. This action is reversible. Only `force=true` permanently purges the tag (and its product links); that is irreversible and requires user (Cognito) credentials — API keys get 403.
9247
9720
  * @param data The data for the request.
9248
9721
  * @param data.tagId
9249
9722
  * @param data.shopId
9723
+ * @param data.force Permanently purge instead of moving to trash. Irreversible.
9250
9724
  * @param data.xApiKey
9251
9725
  * @returns void Successful Response
9252
9726
  * @throws ApiError
9253
9727
  */
9254
9728
  declare const deleteTag: (data: DeleteTagData) => CancelablePromise<DeleteTagResponse>;
9255
9729
  /**
9256
- * Get By Name
9730
+ * Get tag by name
9731
+ * Retrieve a tag by its exact name within a shop.
9257
9732
  * @param data The data for the request.
9258
9733
  * @param data.name
9259
9734
  * @param data.shopId
@@ -9358,11 +9833,12 @@ declare const getByNameShopsShopIdAttributesNameNameGet: (data: GetByNameShopsSh
9358
9833
  */
9359
9834
  declare const updateAttribute: (data: UpdateAttributeData) => CancelablePromise<UpdateAttributeResponse>;
9360
9835
  /**
9361
- * Delete attribute
9362
- * Remove an attribute from a shop. This will fail if the attribute is currently in use by any products.
9836
+ * Delete attribute (moves to trash)
9837
+ * Moves an attribute to the trash: it disappears from listings but existing product values keep their data, so restoring the attribute brings everything back. This action is reversible. Only `force=true` permanently purges the attribute (fails with 409 while products still use it); that is irreversible and requires user (Cognito) credentials — API keys get 403.
9363
9838
  * @param data The data for the request.
9364
9839
  * @param data.attributeId
9365
9840
  * @param data.shopId
9841
+ * @param data.force Permanently purge instead of moving to trash. Irreversible.
9366
9842
  * @param data.xApiKey
9367
9843
  * @returns void Successful Response
9368
9844
  * @throws ApiError
@@ -9448,6 +9924,7 @@ declare const updateOptionV2ShopsShopIdAttributeOptionsOptionIdPut: (data: Updat
9448
9924
  * @param data The data for the request.
9449
9925
  * @param data.shopId
9450
9926
  * @param data.optionId
9927
+ * @param data.force Permanently purge instead of moving to trash. Irreversible.
9451
9928
  * @returns void Successful Response
9452
9929
  * @throws ApiError
9453
9930
  */
@@ -9499,6 +9976,7 @@ declare const getOptionShopsShopIdAttributesAttributeIdOptionsOptionIdGet: (data
9499
9976
  * @param data.shopId
9500
9977
  * @param data.attributeId
9501
9978
  * @param data.optionId
9979
+ * @param data.force Permanently purge instead of moving to trash. Irreversible.
9502
9980
  * @returns void Successful Response
9503
9981
  * @throws ApiError
9504
9982
  */
@@ -9595,7 +10073,8 @@ declare const productAttributeValuesCreateForProduct: (data: ProductAttributeVal
9595
10073
  */
9596
10074
  declare const productAttributeValuesReplaceForProduct: (data: ProductAttributeValuesReplaceForProductData) => CancelablePromise<ProductAttributeValuesReplaceForProductResponse>;
9597
10075
  /**
9598
- * Get Multi
10076
+ * List accounts
10077
+ * Returns all customer accounts for a shop. Accounts are created automatically when an order is placed with a new customer name.
9599
10078
  * @param data The data for the request.
9600
10079
  * @param data.skip
9601
10080
  * @param data.limit
@@ -9606,7 +10085,8 @@ declare const productAttributeValuesReplaceForProduct: (data: ProductAttributeVa
9606
10085
  */
9607
10086
  declare const getMultiShopsShopIdAccountsGet: (data?: GetMultiShopsShopIdAccountsGetData) => CancelablePromise<GetMultiShopsShopIdAccountsGetResponse>;
9608
10087
  /**
9609
- * Create
10088
+ * Create account
10089
+ * Manually create a new customer account for a shop.
9610
10090
  * @param data The data for the request.
9611
10091
  * @param data.requestBody
9612
10092
  * @returns unknown Successful Response
@@ -9614,7 +10094,8 @@ declare const getMultiShopsShopIdAccountsGet: (data?: GetMultiShopsShopIdAccount
9614
10094
  */
9615
10095
  declare const createShopsShopIdAccountsPost: (data: CreateShopsShopIdAccountsPostData) => CancelablePromise<CreateShopsShopIdAccountsPostResponse>;
9616
10096
  /**
9617
- * Get By Id
10097
+ * Get account
10098
+ * Retrieve a single customer account by its UUID.
9618
10099
  * @param data The data for the request.
9619
10100
  * @param data.id
9620
10101
  * @returns AccountSchema Successful Response
@@ -9622,7 +10103,8 @@ declare const createShopsShopIdAccountsPost: (data: CreateShopsShopIdAccountsPos
9622
10103
  */
9623
10104
  declare const getByIdShopsShopIdAccountsIdGet: (data: GetByIdShopsShopIdAccountsIdGetData) => CancelablePromise<GetByIdShopsShopIdAccountsIdGetResponse>;
9624
10105
  /**
9625
- * Update
10106
+ * Update account
10107
+ * Update an existing customer account's details.
9626
10108
  * @param data The data for the request.
9627
10109
  * @param data.accountId
9628
10110
  * @param data.requestBody
@@ -9631,7 +10113,8 @@ declare const getByIdShopsShopIdAccountsIdGet: (data: GetByIdShopsShopIdAccounts
9631
10113
  */
9632
10114
  declare const updateShopsShopIdAccountsAccountIdPut: (data: UpdateShopsShopIdAccountsAccountIdPutData) => CancelablePromise<UpdateShopsShopIdAccountsAccountIdPutResponse>;
9633
10115
  /**
9634
- * Delete
10116
+ * Delete account
10117
+ * Remove a customer account from a shop.
9635
10118
  * @param data The data for the request.
9636
10119
  * @param data.accountId
9637
10120
  * @returns void Successful Response
@@ -9639,7 +10122,8 @@ declare const updateShopsShopIdAccountsAccountIdPut: (data: UpdateShopsShopIdAcc
9639
10122
  */
9640
10123
  declare const deleteShopsShopIdAccountsAccountIdDelete: (data: DeleteShopsShopIdAccountsAccountIdDeleteData) => CancelablePromise<DeleteShopsShopIdAccountsAccountIdDeleteResponse>;
9641
10124
  /**
9642
- * Create Payment Intent
10125
+ * Create payment intent
10126
+ * Create a Stripe PaymentIntent for a one-time purchase. Uses the shop's own `stripe_secret_key`. The `price` is in euro cents. Returns a `clientSecret` to complete the payment on the frontend.
9643
10127
  * @param data The data for the request.
9644
10128
  * @param data.shopId
9645
10129
  * @param data.price
@@ -9649,7 +10133,8 @@ declare const deleteShopsShopIdAccountsAccountIdDelete: (data: DeleteShopsShopId
9649
10133
  */
9650
10134
  declare const createPaymentIntentShopsShopIdStripePost: (data: CreatePaymentIntentShopsShopIdStripePostData) => CancelablePromise<CreatePaymentIntentShopsShopIdStripePostResponse>;
9651
10135
  /**
9652
- * Create Subscription Intent
10136
+ * Create subscription
10137
+ * Create a Stripe Subscription for one or more products. Price lookup keys are resolved as `monthly-<product_id>` or `yearly-<product_id>`. Returns `clientSecret` and `subscriptionId` to confirm payment on the frontend.
9653
10138
  * @param data The data for the request.
9654
10139
  * @param data.shopId
9655
10140
  * @param data.accountId
@@ -9660,7 +10145,8 @@ declare const createPaymentIntentShopsShopIdStripePost: (data: CreatePaymentInte
9660
10145
  */
9661
10146
  declare const createSubscriptionIntentShopsShopIdStripeSubscriptionPost: (data: CreateSubscriptionIntentShopsShopIdStripeSubscriptionPostData) => CancelablePromise<CreateSubscriptionIntentShopsShopIdStripeSubscriptionPostResponse>;
9662
10147
  /**
9663
- * Cancel Subscription
10148
+ * Cancel subscription
10149
+ * Immediately cancel a Stripe Subscription. Uses the shop's `stripe_secret_key`.
9664
10150
  * @param data The data for the request.
9665
10151
  * @param data.shopId
9666
10152
  * @param data.subscriptionId
@@ -9703,7 +10189,8 @@ declare const triggerErrorSentryGet: (data: TriggerErrorSentryGetData) => Cancel
9703
10189
  */
9704
10190
  declare const formTestFormsPost: (data?: FormTestFormsPostData) => CancelablePromise<FormTestFormsPostResponse>;
9705
10191
  /**
9706
- * Get Multi
10192
+ * List FAQ entries
10193
+ * Returns all FAQ question/answer entries. Supports pagination, filtering, and sorting.
9707
10194
  * @param data The data for the request.
9708
10195
  * @param data.skip
9709
10196
  * @param data.limit
@@ -9714,7 +10201,8 @@ declare const formTestFormsPost: (data?: FormTestFormsPostData) => CancelablePro
9714
10201
  */
9715
10202
  declare const getMultiFaqGet: (data?: GetMultiFaqGetData) => CancelablePromise<GetMultiFaqGetResponse>;
9716
10203
  /**
9717
- * Create
10204
+ * Create FAQ entry
10205
+ * Add a new FAQ question and answer. Requires authentication. Returns 409 if a FAQ with the same question already exists.
9718
10206
  * @param data The data for the request.
9719
10207
  * @param data.requestBody
9720
10208
  * @returns FaqCreated Successful Response
@@ -9722,7 +10210,8 @@ declare const getMultiFaqGet: (data?: GetMultiFaqGetData) => CancelablePromise<G
9722
10210
  */
9723
10211
  declare const createFaqPost: (data: CreateFaqPostData) => CancelablePromise<CreateFaqPostResponse>;
9724
10212
  /**
9725
- * Get By Id
10213
+ * Get FAQ entry
10214
+ * Retrieve a single FAQ entry by its UUID.
9726
10215
  * @param data The data for the request.
9727
10216
  * @param data.id
9728
10217
  * @returns FaqSchema Successful Response
@@ -9730,7 +10219,8 @@ declare const createFaqPost: (data: CreateFaqPostData) => CancelablePromise<Crea
9730
10219
  */
9731
10220
  declare const getByIdFaqIdGet: (data: GetByIdFaqIdGetData) => CancelablePromise<GetByIdFaqIdGetResponse>;
9732
10221
  /**
9733
- * Update
10222
+ * Update FAQ entry
10223
+ * Update an existing FAQ entry's question, answer, or category. Returns 409 if another entry already uses the same question.
9734
10224
  * @param data The data for the request.
9735
10225
  * @param data.faqId
9736
10226
  * @param data.requestBody
@@ -9739,7 +10229,8 @@ declare const getByIdFaqIdGet: (data: GetByIdFaqIdGetData) => CancelablePromise<
9739
10229
  */
9740
10230
  declare const updateFaqFaqIdPut: (data: UpdateFaqFaqIdPutData) => CancelablePromise<UpdateFaqFaqIdPutResponse>;
9741
10231
  /**
9742
- * Delete
10232
+ * Delete FAQ entry
10233
+ * Remove a FAQ entry. Requires authentication.
9743
10234
  * @param data The data for the request.
9744
10235
  * @param data.faqId
9745
10236
  * @returns void Successful Response
@@ -9747,4 +10238,4 @@ declare const updateFaqFaqIdPut: (data: UpdateFaqFaqIdPutData) => CancelableProm
9747
10238
  */
9748
10239
  declare const deleteFaqFaqIdDelete: (data: DeleteFaqFaqIdDeleteData) => CancelablePromise<DeleteFaqFaqIdDeleteResponse>;
9749
10240
 
9750
- export { $AccountCreate, $AccountSchema, $AccountUpdate, $AdminAccountSchema, $ApiKeyCreate, $ApiKeyCreated, $ApiKeyRead, $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, $ConfigurationLegal, $ConfigurationOrderStatusMails, $ConfigurationShipping_Input, $ConfigurationShipping_Output, $ConfigurationV1_Input, $ConfigurationV1_Output, $DefaultPrice, $EarlyAccessCreate, $FaqCreate, $FaqCreated, $FaqSchema, $FaqUpdate, $FaqUpdated, $HTTPValidationError, $Lang, $LicenseCreate, $LicenseSchema, $LicenseUpdate, $LinkStripeBody, $Msg, $MyShopsResponse, type $OpenApiTs, $OrderBase, $OrderCreate, $OrderCreated, $OrderItem_Input, $OrderItem_Output, $OrderSchema, $OrderUpdate, $OrderUpdated, $ProductAttributeItem, $ProductAttributeOptionSelectionAdd, $ProductAttributeOptionSelectionReplace, $ProductAttributeValueBase, $ProductAttributeValueSchema, $ProductCreate, $ProductResponse, $ProductToTagCreate, $ProductToTagSchema, $ProductToTagUpdate, $ProductTranslationBase, $ProductUpdate, $ProductWithAttributes, $ProductWithDefaultPrice, $ProductWithDetailsAndPrices, $ShippingCalculateRequest, $ShippingCalculation, $ShippingLine, $ShopCacheStatus, $ShopConfig, $ShopConfigUpdate_Input, $ShopConfigUpdate_Output, $ShopCreate, $ShopIp, $ShopLastCompletedOrder, $ShopLastPendingOrder, $ShopSchema, $ShopType, $ShopTypeName, $ShopUpdate, $ShopWithPrices, $SyncStripeResponse, $TagCreate, $TagSchema, $TagTranslationBase, $TagUpdate, $Toggles, $User, $UserCreate, $UserUpdate, $ValidationError, type AccountCreate, type AccountSchema, type AccountUpdate, type AddNewIpShopsAllowedIpsIdPostData, type AddNewIpShopsAllowedIpsIdPostResponse, type AdminAccountSchema, ApiError, type ApiKeyCreate, type ApiKeyCreated, type ApiKeyRead, type AttributeCreate, type AttributeOptionCreate, type AttributeOptionSchema, type AttributeOptionUpdate, type AttributeSchema, type AttributeTranslationBase, type AttributeUpdate, type AttributeWithOptionsSchema, type AvailableAttributeSchema, type AvailableOptionSchema, type Body_login_access_token_login_access_token_post, type Body_reset_password_reset_password__post, type Body_update_user_me_users_me_put, type CalculateShippingCalculatePostData, type CalculateShippingCalculatePostResponse, CancelError, type CancelSubscriptionShopsShopIdStripeSubscriptionSubscriptionIdDeleteData, type CancelSubscriptionShopsShopIdStripeSubscriptionSubscriptionIdDeleteResponse, CancelablePromise, type Cart, type CategoryCreate, type CategoryImageDelete, type CategorySchema, type CategoryTranslationBase, type CategoryUpdate, type CheckOrdersCheckIdsGetData, type CheckOrdersCheckIdsGetResponse, type ConfigurationContact, type ConfigurationLanguageFieldMenuItems, type ConfigurationLanguageFieldStaticTexts, type ConfigurationLanguageFields, type ConfigurationLanguages, type ConfigurationLegal, type ConfigurationOrderStatusMails, type ConfigurationShipping_Input, type ConfigurationShipping_Output, type ConfigurationV1_Input, type ConfigurationV1_Output, type CreateAttributeData, type CreateAttributeResponse, type CreateCategoryData, type CreateCategoryResponse, 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 CreateProductData, type CreateProductResponse, type CreateShopsPostData, type CreateShopsPostResponse, type CreateShopsShopIdAccountsPostData, type CreateShopsShopIdAccountsPostResponse, type CreateShopsShopIdProductsToTagsPostData, type CreateShopsShopIdProductsToTagsPostResponse, type CreateSubscriptionIntentShopsShopIdStripeSubscriptionPostData, type CreateSubscriptionIntentShopsShopIdStripeSubscriptionPostResponse, type CreateTagData, type CreateTagResponse, type CreateUsersPostData, type CreateUsersPostResponse, type DefaultPrice, type DeleteAttributeData, type DeleteAttributeResponse, type DeleteCategoryData, type DeleteCategoryResponse, 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 DeleteProductData, type DeleteProductResponse, type DeleteShopsShopIdAccountsAccountIdDeleteData, type DeleteShopsShopIdAccountsAccountIdDeleteResponse, type DeleteShopsShopIdDeleteData, type DeleteShopsShopIdDeleteResponse, type DeleteShopsShopIdProductsToTagsProductToTagIdDeleteData, type DeleteShopsShopIdProductsToTagsProductToTagIdDeleteResponse, type DeleteTagData, type DeleteTagResponse, type DeleteTemporaryImagesImagesDeleteTempPostResponse, type EarlyAccessCreate, type EditLicensesIdPutData, type EditLicensesIdPutResponse, type FaqCreate, type FaqCreated, type FaqSchema, type FaqUpdate, type FaqUpdated, type FormInfoRequestFormPostData, type FormInfoRequestFormPostResponse, type FormTestFormsPostData, type FormTestFormsPostResponse, type GetAccountAdminAccountsIdGetData, type GetAccountAdminAccountsIdGetResponse, type GetAllowedIpsShopsAllowedIpsIdGetData, type GetAllowedIpsShopsAllowedIpsIdGetResponse, type GetAttributeData, type GetAttributeResponse, 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 GetByIdShopsShopIdCategoriesImagesIdGetData, type GetByIdShopsShopIdCategoriesImagesIdGetResponse, type GetByIdShopsShopIdProductsToTagsIdGetData, type GetByIdShopsShopIdProductsToTagsIdGetResponse, 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 GetCategoryData, type GetCategoryProductsShopsShopIdCategoriesCategoryIdProductsGetData, type GetCategoryProductsShopsShopIdCategoriesCategoryIdProductsGetResponse, type GetCategoryResponse, 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 GetMultiShopsShopIdCategoriesImagesGetData, type GetMultiShopsShopIdCategoriesImagesGetResponse, type GetMultiShopsShopIdProductsToTagsGetData, type GetMultiShopsShopIdProductsToTagsGetResponse, type GetMultiUsersGetData, type GetMultiUsersGetResponse, type GetMultiWithAttributesShopsShopIdProductsWithAttributesGetData, type GetMultiWithAttributesShopsShopIdProductsWithAttributesGetResponse, type GetOptionShopsShopIdAttributesAttributeIdOptionsOptionIdGetData, type GetOptionShopsShopIdAttributesAttributeIdOptionsOptionIdGetResponse, type GetOptionV2ShopsShopIdAttributeOptionsOptionIdGetData, type GetOptionV2ShopsShopIdAttributeOptionsOptionIdGetResponse, type GetOrderProductsInStockOrdersStockOrderIdGetData, type GetOrderProductsInStockOrdersStockOrderIdGetResponse, type GetProductData, type GetProductResponse, type GetProductsShopsShopIdPricesGetData, type GetProductsShopsShopIdPricesGetResponse, type GetRelationIdShopsShopIdProductsToTagsGetRelationIdGetData, type GetRelationIdShopsShopIdProductsToTagsGetRelationIdGetResponse, type GetSignedDownloadLinkDownloadsFileNameGetData, type GetSignedDownloadLinkDownloadsFileNameGetResponse, type GetSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGetData, type GetSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGetResponse, type GetSignedUrlImagesSignedUrlImageNameGetData, type GetSignedUrlImagesSignedUrlImageNameGetResponse, type GetStripeCustomerAdminAccountsIdStripeCustomerGetData, type GetStripeCustomerAdminAccountsIdStripeCustomerGetResponse, type GetTagData, type GetTagResponse, type GetUserMeUsersMeGetResponse, type GetWithOptionsShopsShopIdAttributesWithOptionsGetData, type GetWithOptionsShopsShopIdAttributesWithOptionsGetResponse, type HTTPValidationError, type Lang, type LicenseCreate, type LicenseSchema, type LicenseUpdate, type LinkStripeAdminAccountsIdLinkStripePostData, type LinkStripeAdminAccountsIdLinkStripePostResponse, type LinkStripeBody, type ListAccountsAdminAccountsGetData, type ListAccountsAdminAccountsGetResponse, type ListAttributesData, type ListAttributesResponse, type ListCategoriesData, type ListCategoriesResponse, type ListKeysShopsShopIdApiKeysGetData, type ListKeysShopsShopIdApiKeysGetResponse, type ListMyShopsResponse, type ListOptionsForShopShopsShopIdAttributeOptionsGetData, type ListOptionsForShopShopsShopIdAttributeOptionsGetResponse, type ListOptionsShopsShopIdAttributesAttributeIdOptionsGetData, type ListOptionsShopsShopIdAttributesAttributeIdOptionsGetResponse, type ListProductsData, type ListProductsResponse, type ListTagsData, type ListTagsResponse, type LoginAccessTokenLoginAccessTokenPostData, type LoginAccessTokenLoginAccessTokenPostResponse, type MintShopsShopIdApiKeysPostData, type MintShopsShopIdApiKeysPostResponse, type MoveImagesImagesMovePostResponse, type Msg, type MyShopsResponse, type NewFormFormsFormKeyPostData, type NewFormFormsFormKeyPostResponse, OpenAPI, type OpenAPIConfig, type OrderBase, type OrderCreate, type OrderCreated, type OrderItem_Input, type OrderItem_Output, type OrderSchema, type OrderUpdate, type OrderUpdated, type PatchOrdersOrderIdPatchData, type PatchOrdersOrderIdPatchResponse, type ProductAttributeItem, type ProductAttributeOptionSelectionAdd, type ProductAttributeOptionSelectionReplace, type ProductAttributeValueBase, type ProductAttributeValueSchema, type ProductAttributeValuesCreateDeprecatedData, type ProductAttributeValuesCreateDeprecatedResponse, type ProductAttributeValuesCreateForProductData, type ProductAttributeValuesCreateForProductResponse, type ProductAttributeValuesDeleteData, type ProductAttributeValuesDeleteResponse, type ProductAttributeValuesGetData, type ProductAttributeValuesGetResponse, type ProductAttributeValuesListData, type ProductAttributeValuesListResponse, type ProductAttributeValuesReplaceForProductData, type ProductAttributeValuesReplaceForProductResponse, type ProductCreate, type ProductResponse, type ProductToTagCreate, type ProductToTagSchema, type ProductToTagUpdate, type ProductTranslationBase, type ProductUpdate, type ProductWithAttributes, type ProductWithDefaultPrice, type ProductWithDetailsAndPrices, type PutShopsShopIdCategoriesImagesIdPutData, type PutShopsShopIdCategoriesImagesIdPutResponse, type RecoverPasswordPasswordRecoveryEmailPostData, type RecoverPasswordPasswordRecoveryEmailPostResponse, type RemoveIpShopsAllowedIpsIdRemovePostData, type RemoveIpShopsAllowedIpsIdRemovePostResponse, type ResetPasswordResetPasswordPostData, type ResetPasswordResetPasswordPostResponse, type RevokeShopsShopIdApiKeysKeyIdDeleteData, type RevokeShopsShopIdApiKeysKeyIdDeleteResponse, type SendDownloadLinkViaEmailDownloadsSendPostData, type SendDownloadLinkViaEmailDownloadsSendPostResponse, type ShippingCalculateRequest, type ShippingCalculation, type ShippingLine, type ShopCacheStatus, type ShopConfig, type ShopConfigUpdate_Input, type ShopConfigUpdate_Output, type ShopCreate, type ShopIp, type ShopLastCompletedOrder, type ShopLastPendingOrder, type ShopSchema, type ShopType, type ShopTypeName, type ShopUpdate, type ShopWithPrices, type ShowAllCompleteOrdersPerShopOrdersShopShopIdCompleteGetData, type ShowAllCompleteOrdersPerShopOrdersShopShopIdCompleteGetResponse, type ShowAllPendingOrdersPerShopOrdersShopShopIdPendingGetData, type ShowAllPendingOrdersPerShopOrdersShopShopIdPendingGetResponse, type SwapShopsShopIdCategoriesCategoryIdSwapPutData, type SwapShopsShopIdCategoriesCategoryIdSwapPutResponse, type SwapShopsShopIdProductsProductIdSwapPutData, type SwapShopsShopIdProductsProductIdSwapPutResponse, type SyncStripeAdminAccountsIdSyncStripePostData, type SyncStripeAdminAccountsIdSyncStripePostResponse, type SyncStripeResponse, type TagCreate, type TagSchema, type TagTranslationBase, type TagUpdate, type TestTokenLoginTestTokenPostResponse, type Toggles, type TriggerErrorSentryGetData, type TriggerErrorSentryGetResponse, type UpdateAttributeData, type UpdateAttributeResponse, type UpdateCategoryData, type UpdateCategoryResponse, type UpdateConfigShopsConfigIdPutData, type UpdateConfigShopsConfigIdPutResponse, type UpdateFaqFaqIdPutData, type UpdateFaqFaqIdPutResponse, type UpdateOptionV2ShopsShopIdAttributeOptionsOptionIdPutData, type UpdateOptionV2ShopsShopIdAttributeOptionsOptionIdPutResponse, type UpdateOrdersOrderIdPutData, type UpdateOrdersOrderIdPutResponse, type UpdateProductData, type UpdateProductResponse, type UpdateShopsShopIdAccountsAccountIdPutData, type UpdateShopsShopIdAccountsAccountIdPutResponse, type UpdateShopsShopIdProductsToTagsProductToTagIdPutData, type UpdateShopsShopIdProductsToTagsProductToTagIdPutResponse, type UpdateShopsShopIdPutData, type UpdateShopsShopIdPutResponse, type UpdateTagData, type UpdateTagResponse, type UpdateUserMeUsersMePutData, type UpdateUserMeUsersMePutResponse, type UpdateUsersUserIdPutData, type UpdateUsersUserIdPutResponse, type User, type UserCreate, type UserUpdate, type ValidationError, addNewIpShopsAllowedIpsIdPost, calculateShippingCalculatePost, cancelSubscriptionShopsShopIdStripeSubscriptionSubscriptionIdDelete, checkOrdersCheckIdsGet, createAttribute, createCategory, createEarlyAccessPost, createFaqPost, createLicensesPost, createOptionShopsShopIdAttributesAttributeIdOptionsPost, createOptionV2ShopsShopIdAttributeOptionsPost, createOrdersPost, createPaymentIntentShopsShopIdStripePost, createProduct, createShopsPost, createShopsShopIdAccountsPost, createShopsShopIdProductsToTagsPost, createSubscriptionIntentShopsShopIdStripeSubscriptionPost, createTag, createUsersPost, deleteAttribute, deleteCategory, deleteFaqFaqIdDelete, deleteImageShopsShopIdCategoriesImagesDeleteIdPut, deleteLicensesIdDelete, deleteOptionShopsShopIdAttributesAttributeIdOptionsOptionIdDelete, deleteOptionV2ShopsShopIdAttributeOptionsOptionIdDelete, deleteOrdersOrderIdDelete, deleteProduct, deleteShopsShopIdAccountsAccountIdDelete, deleteShopsShopIdDelete, deleteShopsShopIdProductsToTagsProductToTagIdDelete, deleteTag, deleteTemporaryImagesImagesDeleteTempPost, editLicensesIdPut, formInfoRequestFormPost, formTestFormsPost, getAccountAdminAccountsIdGet, getAllowedIpsShopsAllowedIpsIdGet, getAttribute, getAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGet, getByIdFaqIdGet, getByIdLicensesIdGet, getByIdOrdersIdGet, getByIdShopsIdGet, getByIdShopsShopIdAccountsIdGet, getByIdShopsShopIdCategoriesImagesIdGet, getByIdShopsShopIdProductsToTagsIdGet, getByIdUsersUserIdGet, getByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGet, getByIdWithOptionsDirectShopsShopIdAttributesAttributeIdWithOptionsGet, getByIdWithOptionsShopsShopIdAttributesIdAttributeIdWithOptionsGet, getByImproviserUserIdLicensesImproviserImproviserUserIdGet, getByNameShopsShopIdAttributesNameNameGet, getByNameShopsShopIdCategoriesNameNameGet, getByNameShopsShopIdTagsNameNameGet, getCacheStatusShopsCacheStatusIdGet, getCartProductsShopsShopIdPricesPost, getCategory, getCategoryProductsShopsShopIdCategoriesCategoryIdProductsGet, getConfigShopsConfigIdGet, getFormsFormsGet, getHealthHealthGet, getLastCompletedOrderShopsLastCompletedOrderIdGet, getLastPendingOrderShopsLastPendingOrderIdGet, getMultiFaqGet, getMultiLicensesGet, getMultiOrdersGet, getMultiShopsGet, getMultiShopsShopIdAccountsGet, getMultiShopsShopIdCategoriesImagesGet, getMultiShopsShopIdProductsToTagsGet, getMultiUsersGet, getMultiWithAttributesShopsShopIdProductsWithAttributesGet, getOptionShopsShopIdAttributesAttributeIdOptionsOptionIdGet, getOptionV2ShopsShopIdAttributeOptionsOptionIdGet, getOrderProductsInStockOrdersStockOrderIdGet, getProduct, getProductsShopsShopIdPricesGet, getRelationIdShopsShopIdProductsToTagsGetRelationIdGet, getSignedDownloadLinkDownloadsFileNameGet, getSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGet, getSignedUrlImagesSignedUrlImageNameGet, getStripeCustomerAdminAccountsIdStripeCustomerGet, getTag, getUserMeUsersMeGet, getWithOptionsShopsShopIdAttributesWithOptionsGet, linkStripeAdminAccountsIdLinkStripePost, listAccountsAdminAccountsGet, listAttributes, listCategories, listKeysShopsShopIdApiKeysGet, listMyShops, listOptionsForShopShopsShopIdAttributeOptionsGet, listOptionsShopsShopIdAttributesAttributeIdOptionsGet, listProducts, listTags, loginAccessTokenLoginAccessTokenPost, mintShopsShopIdApiKeysPost, moveImagesImagesMovePost, newFormFormsFormKeyPost, patchOrdersOrderIdPatch, productAttributeValuesCreateDeprecated, productAttributeValuesCreateForProduct, productAttributeValuesDelete, productAttributeValuesGet, productAttributeValuesList, productAttributeValuesReplaceForProduct, putShopsShopIdCategoriesImagesIdPut, recoverPasswordPasswordRecoveryEmailPost, removeIpShopsAllowedIpsIdRemovePost, resetPasswordResetPasswordPost, revokeShopsShopIdApiKeysKeyIdDelete, sendDownloadLinkViaEmailDownloadsSendPost, showAllCompleteOrdersPerShopOrdersShopShopIdCompleteGet, showAllPendingOrdersPerShopOrdersShopShopIdPendingGet, swapShopsShopIdCategoriesCategoryIdSwapPut, swapShopsShopIdProductsProductIdSwapPut, syncStripeAdminAccountsIdSyncStripePost, testTokenLoginTestTokenPost, triggerErrorSentryGet, updateAttribute, updateCategory, updateConfigShopsConfigIdPut, updateFaqFaqIdPut, updateOptionV2ShopsShopIdAttributeOptionsOptionIdPut, updateOrdersOrderIdPut, updateProduct, updateShopsShopIdAccountsAccountIdPut, updateShopsShopIdProductsToTagsProductToTagIdPut, updateShopsShopIdPut, updateTag, updateUserMeUsersMePut, updateUsersUserIdPut };
10241
+ export { $AccountCreate, $AccountSchema, $AccountUpdate, $AdminAccountSchema, $ApiKeyCreate, $ApiKeyCreated, $ApiKeyRead, $AttributeCreate, $AttributeOptionCreate, $AttributeOptionSchema, $AttributeOptionUpdate, $AttributeSchema, $AttributeTranslationBase, $AttributeUpdate, $AttributeWithOptionsSchema, $AvailableAttributeSchema, $AvailableOptionSchema, $Cart, $CategoryCreate, $CategoryImageDelete, $CategorySchema, $CategoryTranslationBase, $CategoryUpdate, $ConfigurationContact, $ConfigurationLanguageFieldMenuItems, $ConfigurationLanguageFieldStaticTexts, $ConfigurationLanguageFields, $ConfigurationLanguages, $ConfigurationLegal, $ConfigurationOrderStatusMails, $ConfigurationShipping_Input, $ConfigurationShipping_Output, $ConfigurationV1_Input, $ConfigurationV1_Output, $DefaultPrice, $EarlyAccessCreate, $FaqCreate, $FaqCreated, $FaqSchema, $FaqUpdate, $FaqUpdated, $HTTPValidationError, $Lang, $LicenseCreate, $LicenseSchema, $LicenseUpdate, $LinkStripeBody, $MyShopsResponse, type $OpenApiTs, $OrderBase, $OrderCreate, $OrderCreated, $OrderItem_Input, $OrderItem_Output, $OrderSchema, $OrderUpdate, $OrderUpdated, $ProductAttributeItem, $ProductAttributeOptionSelectionAdd, $ProductAttributeOptionSelectionReplace, $ProductAttributeValueBase, $ProductAttributeValueSchema, $ProductCreate, $ProductResponse, $ProductToTagCreate, $ProductToTagSchema, $ProductToTagUpdate, $ProductTranslationBase, $ProductUpdate, $ProductWithAttributes, $ProductWithDefaultPrice, $ProductWithDetailsAndPrices, $RestoreReport, $ResurrectedEntity, $RevisionDetail, $RevisionSummary, $ShippingCalculateRequest, $ShippingCalculation, $ShippingLine, $ShopCacheStatus, $ShopConfig, $ShopConfigUpdate_Input, $ShopConfigUpdate_Output, $ShopCreate, $ShopIp, $ShopLastCompletedOrder, $ShopLastPendingOrder, $ShopSchema, $ShopType, $ShopTypeName, $ShopUpdate, $ShopWithPrices, $SyncStripeResponse, $TagCreate, $TagSchema, $TagTranslationBase, $TagUpdate, $Toggles, $TrashItem, $UnresolvedReference, $ValidationError, type AccountCreate, type AccountSchema, type AccountUpdate, type AddNewIpShopsAllowedIpsIdPostData, type AddNewIpShopsAllowedIpsIdPostResponse, type AdminAccountSchema, ApiError, type ApiKeyCreate, type ApiKeyCreated, type ApiKeyRead, type AttributeCreate, type AttributeOptionCreate, type AttributeOptionSchema, type AttributeOptionUpdate, type AttributeSchema, type AttributeTranslationBase, type AttributeUpdate, type AttributeWithOptionsSchema, type AvailableAttributeSchema, type AvailableOptionSchema, type CalculateShippingCalculatePostData, type CalculateShippingCalculatePostResponse, CancelError, type CancelSubscriptionShopsShopIdStripeSubscriptionSubscriptionIdDeleteData, type CancelSubscriptionShopsShopIdStripeSubscriptionSubscriptionIdDeleteResponse, CancelablePromise, type Cart, type CategoryCreate, type CategoryImageDelete, type CategorySchema, type CategoryTranslationBase, type CategoryUpdate, type CheckOrdersCheckIdsGetData, type CheckOrdersCheckIdsGetResponse, type ConfigurationContact, type ConfigurationLanguageFieldMenuItems, type ConfigurationLanguageFieldStaticTexts, type ConfigurationLanguageFields, type ConfigurationLanguages, type ConfigurationLegal, type ConfigurationOrderStatusMails, type ConfigurationShipping_Input, type ConfigurationShipping_Output, type ConfigurationV1_Input, type ConfigurationV1_Output, type CreateAttributeData, type CreateAttributeResponse, type CreateCategoryData, type CreateCategoryResponse, 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 CreateProductData, type CreateProductResponse, type CreateShopsPostData, type CreateShopsPostResponse, type CreateShopsShopIdAccountsPostData, type CreateShopsShopIdAccountsPostResponse, type CreateShopsShopIdProductsToTagsPostData, type CreateShopsShopIdProductsToTagsPostResponse, type CreateSubscriptionIntentShopsShopIdStripeSubscriptionPostData, type CreateSubscriptionIntentShopsShopIdStripeSubscriptionPostResponse, type CreateTagData, type CreateTagResponse, type DefaultPrice, type DeleteAttributeData, type DeleteAttributeResponse, type DeleteCategoryData, type DeleteCategoryResponse, 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 DeleteProductData, type DeleteProductResponse, type DeleteShopsShopIdAccountsAccountIdDeleteData, type DeleteShopsShopIdAccountsAccountIdDeleteResponse, type DeleteShopsShopIdDeleteData, type DeleteShopsShopIdDeleteResponse, type DeleteShopsShopIdProductsToTagsProductToTagIdDeleteData, type DeleteShopsShopIdProductsToTagsProductToTagIdDeleteResponse, type DeleteTagData, type DeleteTagResponse, type DeleteTemporaryImagesImagesDeleteTempPostResponse, type EarlyAccessCreate, type EditLicensesIdPutData, type EditLicensesIdPutResponse, type FaqCreate, type FaqCreated, type FaqSchema, type FaqUpdate, type FaqUpdated, type FormInfoRequestFormPostData, type FormInfoRequestFormPostResponse, type FormTestFormsPostData, type FormTestFormsPostResponse, type GetAccountAdminAccountsIdGetData, type GetAccountAdminAccountsIdGetResponse, type GetAllowedIpsShopsAllowedIpsIdGetData, type GetAllowedIpsShopsAllowedIpsIdGetResponse, type GetAttributeData, type GetAttributeResponse, 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 GetByIdShopsShopIdCategoriesImagesIdGetData, type GetByIdShopsShopIdCategoriesImagesIdGetResponse, type GetByIdShopsShopIdProductsToTagsIdGetData, type GetByIdShopsShopIdProductsToTagsIdGetResponse, 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 GetCategoryData, type GetCategoryProductsShopsShopIdCategoriesCategoryIdProductsGetData, type GetCategoryProductsShopsShopIdCategoriesCategoryIdProductsGetResponse, type GetCategoryResponse, 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 GetMultiShopsShopIdCategoriesImagesGetData, type GetMultiShopsShopIdCategoriesImagesGetResponse, type GetMultiShopsShopIdProductsToTagsGetData, type GetMultiShopsShopIdProductsToTagsGetResponse, type GetMultiWithAttributesShopsShopIdProductsWithAttributesGetData, type GetMultiWithAttributesShopsShopIdProductsWithAttributesGetResponse, type GetOptionShopsShopIdAttributesAttributeIdOptionsOptionIdGetData, type GetOptionShopsShopIdAttributesAttributeIdOptionsOptionIdGetResponse, type GetOptionV2ShopsShopIdAttributeOptionsOptionIdGetData, type GetOptionV2ShopsShopIdAttributeOptionsOptionIdGetResponse, type GetOrderProductsInStockOrdersStockOrderIdGetData, type GetOrderProductsInStockOrdersStockOrderIdGetResponse, type GetProductData, type GetProductResponse, type GetProductRevisionData, type GetProductRevisionResponse, type GetProductsShopsShopIdPricesGetData, type GetProductsShopsShopIdPricesGetResponse, type GetRelationIdShopsShopIdProductsToTagsGetRelationIdGetData, type GetRelationIdShopsShopIdProductsToTagsGetRelationIdGetResponse, type GetRevisionData, type GetRevisionResponse, type GetSignedDownloadLinkDownloadsFileNameGetData, type GetSignedDownloadLinkDownloadsFileNameGetResponse, type GetSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGetData, type GetSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGetResponse, type GetSignedUrlImagesSignedUrlImageNameGetData, type GetSignedUrlImagesSignedUrlImageNameGetResponse, type GetStripeCustomerAdminAccountsIdStripeCustomerGetData, type GetStripeCustomerAdminAccountsIdStripeCustomerGetResponse, type GetTagData, type GetTagResponse, type GetWithOptionsShopsShopIdAttributesWithOptionsGetData, type GetWithOptionsShopsShopIdAttributesWithOptionsGetResponse, type HTTPValidationError, type Lang, type LicenseCreate, type LicenseSchema, type LicenseUpdate, type LinkStripeAdminAccountsIdLinkStripePostData, type LinkStripeAdminAccountsIdLinkStripePostResponse, type LinkStripeBody, type ListAccountsAdminAccountsGetData, type ListAccountsAdminAccountsGetResponse, type ListAttributesData, type ListAttributesResponse, type ListCategoriesData, type ListCategoriesResponse, type ListCategoryRevisionsShopsShopIdCategoriesCategoryIdRevisionsGetData, type ListCategoryRevisionsShopsShopIdCategoriesCategoryIdRevisionsGetResponse, type ListKeysShopsShopIdApiKeysGetData, type ListKeysShopsShopIdApiKeysGetResponse, type ListMyShopsResponse, type ListOptionsForShopShopsShopIdAttributeOptionsGetData, type ListOptionsForShopShopsShopIdAttributeOptionsGetResponse, type ListOptionsShopsShopIdAttributesAttributeIdOptionsGetData, type ListOptionsShopsShopIdAttributesAttributeIdOptionsGetResponse, type ListProductRevisionsData, type ListProductRevisionsResponse, type ListProductsData, type ListProductsResponse, type ListShopRevisionsData, type ListShopRevisionsResponse, type ListTagsData, type ListTagsResponse, type ListTrashShopsShopIdTrashGetData, type ListTrashShopsShopIdTrashGetResponse, type MintShopsShopIdApiKeysPostData, type MintShopsShopIdApiKeysPostResponse, type MoveImagesImagesMovePostResponse, type MyShopsResponse, type NewFormFormsFormKeyPostData, type NewFormFormsFormKeyPostResponse, OpenAPI, type OpenAPIConfig, type OrderBase, type OrderCreate, type OrderCreated, type OrderItem_Input, type OrderItem_Output, type OrderSchema, type OrderUpdate, type OrderUpdated, type PatchOrdersOrderIdPatchData, type PatchOrdersOrderIdPatchResponse, type ProductAttributeItem, type ProductAttributeOptionSelectionAdd, type ProductAttributeOptionSelectionReplace, type ProductAttributeValueBase, type ProductAttributeValueSchema, type ProductAttributeValuesCreateDeprecatedData, type ProductAttributeValuesCreateDeprecatedResponse, type ProductAttributeValuesCreateForProductData, type ProductAttributeValuesCreateForProductResponse, type ProductAttributeValuesDeleteData, type ProductAttributeValuesDeleteResponse, type ProductAttributeValuesGetData, type ProductAttributeValuesGetResponse, type ProductAttributeValuesListData, type ProductAttributeValuesListResponse, type ProductAttributeValuesReplaceForProductData, type ProductAttributeValuesReplaceForProductResponse, type ProductCreate, type ProductResponse, type ProductToTagCreate, type ProductToTagSchema, type ProductToTagUpdate, type ProductTranslationBase, type ProductUpdate, type ProductWithAttributes, type ProductWithDefaultPrice, type ProductWithDetailsAndPrices, type PutShopsShopIdCategoriesImagesIdPutData, type PutShopsShopIdCategoriesImagesIdPutResponse, type RemoveIpShopsAllowedIpsIdRemovePostData, type RemoveIpShopsAllowedIpsIdRemovePostResponse, type RestoreAttributeData, type RestoreAttributeResponse, type RestoreAttributeRevisionData, type RestoreAttributeRevisionResponse, type RestoreCategoryData, type RestoreCategoryResponse, type RestoreCategoryRevisionData, type RestoreCategoryRevisionResponse, type RestoreProductData, type RestoreProductResponse, type RestoreProductRevisionData, type RestoreProductRevisionResponse, type RestoreReport, type RestoreTagData, type RestoreTagResponse, type RestoreTagRevisionData, type RestoreTagRevisionResponse, type ResurrectedEntity, type RevisionDetail, type RevisionSummary, type RevokeShopsShopIdApiKeysKeyIdDeleteData, type RevokeShopsShopIdApiKeysKeyIdDeleteResponse, type SendDownloadLinkViaEmailDownloadsSendPostData, type SendDownloadLinkViaEmailDownloadsSendPostResponse, type ShippingCalculateRequest, type ShippingCalculation, type ShippingLine, type ShopCacheStatus, type ShopConfig, type ShopConfigUpdate_Input, type ShopConfigUpdate_Output, type ShopCreate, type ShopIp, type ShopLastCompletedOrder, type ShopLastPendingOrder, type ShopSchema, type ShopType, type ShopTypeName, type ShopUpdate, type ShopWithPrices, type ShowAllCompleteOrdersPerShopOrdersShopShopIdCompleteGetData, type ShowAllCompleteOrdersPerShopOrdersShopShopIdCompleteGetResponse, type ShowAllPendingOrdersPerShopOrdersShopShopIdPendingGetData, type ShowAllPendingOrdersPerShopOrdersShopShopIdPendingGetResponse, type SwapShopsShopIdCategoriesCategoryIdSwapPutData, type SwapShopsShopIdCategoriesCategoryIdSwapPutResponse, type SwapShopsShopIdProductsProductIdSwapPutData, type SwapShopsShopIdProductsProductIdSwapPutResponse, type SyncStripeAdminAccountsIdSyncStripePostData, type SyncStripeAdminAccountsIdSyncStripePostResponse, type SyncStripeResponse, type TagCreate, type TagSchema, type TagTranslationBase, type TagUpdate, type Toggles, type TrashItem, type TriggerErrorSentryGetData, type TriggerErrorSentryGetResponse, type UnresolvedReference, type UpdateAttributeData, type UpdateAttributeResponse, type UpdateCategoryData, type UpdateCategoryResponse, type UpdateConfigShopsConfigIdPutData, type UpdateConfigShopsConfigIdPutResponse, type UpdateFaqFaqIdPutData, type UpdateFaqFaqIdPutResponse, type UpdateOptionV2ShopsShopIdAttributeOptionsOptionIdPutData, type UpdateOptionV2ShopsShopIdAttributeOptionsOptionIdPutResponse, type UpdateOrdersOrderIdPutData, type UpdateOrdersOrderIdPutResponse, type UpdateProductData, type UpdateProductResponse, type UpdateShopsShopIdAccountsAccountIdPutData, type UpdateShopsShopIdAccountsAccountIdPutResponse, type UpdateShopsShopIdProductsToTagsProductToTagIdPutData, type UpdateShopsShopIdProductsToTagsProductToTagIdPutResponse, type UpdateShopsShopIdPutData, type UpdateShopsShopIdPutResponse, type UpdateTagData, type UpdateTagResponse, type ValidationError, addNewIpShopsAllowedIpsIdPost, calculateShippingCalculatePost, cancelSubscriptionShopsShopIdStripeSubscriptionSubscriptionIdDelete, checkOrdersCheckIdsGet, createAttribute, createCategory, createEarlyAccessPost, createFaqPost, createLicensesPost, createOptionShopsShopIdAttributesAttributeIdOptionsPost, createOptionV2ShopsShopIdAttributeOptionsPost, createOrdersPost, createPaymentIntentShopsShopIdStripePost, createProduct, createShopsPost, createShopsShopIdAccountsPost, createShopsShopIdProductsToTagsPost, createSubscriptionIntentShopsShopIdStripeSubscriptionPost, createTag, deleteAttribute, deleteCategory, deleteFaqFaqIdDelete, deleteImageShopsShopIdCategoriesImagesDeleteIdPut, deleteLicensesIdDelete, deleteOptionShopsShopIdAttributesAttributeIdOptionsOptionIdDelete, deleteOptionV2ShopsShopIdAttributeOptionsOptionIdDelete, deleteOrdersOrderIdDelete, deleteProduct, deleteShopsShopIdAccountsAccountIdDelete, deleteShopsShopIdDelete, deleteShopsShopIdProductsToTagsProductToTagIdDelete, deleteTag, deleteTemporaryImagesImagesDeleteTempPost, editLicensesIdPut, formInfoRequestFormPost, formTestFormsPost, getAccountAdminAccountsIdGet, getAllowedIpsShopsAllowedIpsIdGet, getAttribute, getAvailableAttributesShopsShopIdCategoriesCategoryIdAvailableAttributesGet, getByIdFaqIdGet, getByIdLicensesIdGet, getByIdOrdersIdGet, getByIdShopsIdGet, getByIdShopsShopIdAccountsIdGet, getByIdShopsShopIdCategoriesImagesIdGet, getByIdShopsShopIdProductsToTagsIdGet, getByIdWithAttributesShopsShopIdProductsProductIdWithAttributesGet, getByIdWithOptionsDirectShopsShopIdAttributesAttributeIdWithOptionsGet, getByIdWithOptionsShopsShopIdAttributesIdAttributeIdWithOptionsGet, getByImproviserUserIdLicensesImproviserImproviserUserIdGet, getByNameShopsShopIdAttributesNameNameGet, getByNameShopsShopIdCategoriesNameNameGet, getByNameShopsShopIdTagsNameNameGet, getCacheStatusShopsCacheStatusIdGet, getCartProductsShopsShopIdPricesPost, getCategory, getCategoryProductsShopsShopIdCategoriesCategoryIdProductsGet, getConfigShopsConfigIdGet, getFormsFormsGet, getHealthHealthGet, getLastCompletedOrderShopsLastCompletedOrderIdGet, getLastPendingOrderShopsLastPendingOrderIdGet, getMultiFaqGet, getMultiLicensesGet, getMultiOrdersGet, getMultiShopsGet, getMultiShopsShopIdAccountsGet, getMultiShopsShopIdCategoriesImagesGet, getMultiShopsShopIdProductsToTagsGet, getMultiWithAttributesShopsShopIdProductsWithAttributesGet, getOptionShopsShopIdAttributesAttributeIdOptionsOptionIdGet, getOptionV2ShopsShopIdAttributeOptionsOptionIdGet, getOrderProductsInStockOrdersStockOrderIdGet, getProduct, getProductRevision, getProductsShopsShopIdPricesGet, getRelationIdShopsShopIdProductsToTagsGetRelationIdGet, getRevision, getSignedDownloadLinkDownloadsFileNameGet, getSignedUploadUrlShopsShopIdImagesSignedUrlImageNameGet, getSignedUrlImagesSignedUrlImageNameGet, getStripeCustomerAdminAccountsIdStripeCustomerGet, getTag, getWithOptionsShopsShopIdAttributesWithOptionsGet, linkStripeAdminAccountsIdLinkStripePost, listAccountsAdminAccountsGet, listAttributes, listCategories, listCategoryRevisionsShopsShopIdCategoriesCategoryIdRevisionsGet, listKeysShopsShopIdApiKeysGet, listMyShops, listOptionsForShopShopsShopIdAttributeOptionsGet, listOptionsShopsShopIdAttributesAttributeIdOptionsGet, listProductRevisions, listProducts, listShopRevisions, listTags, listTrashShopsShopIdTrashGet, mintShopsShopIdApiKeysPost, moveImagesImagesMovePost, newFormFormsFormKeyPost, patchOrdersOrderIdPatch, productAttributeValuesCreateDeprecated, productAttributeValuesCreateForProduct, productAttributeValuesDelete, productAttributeValuesGet, productAttributeValuesList, productAttributeValuesReplaceForProduct, putShopsShopIdCategoriesImagesIdPut, removeIpShopsAllowedIpsIdRemovePost, restoreAttribute, restoreAttributeRevision, restoreCategory, restoreCategoryRevision, restoreProduct, restoreProductRevision, restoreTag, restoreTagRevision, revokeShopsShopIdApiKeysKeyIdDelete, sendDownloadLinkViaEmailDownloadsSendPost, showAllCompleteOrdersPerShopOrdersShopShopIdCompleteGet, showAllPendingOrdersPerShopOrdersShopShopIdPendingGet, swapShopsShopIdCategoriesCategoryIdSwapPut, swapShopsShopIdProductsProductIdSwapPut, syncStripeAdminAccountsIdSyncStripePost, triggerErrorSentryGet, updateAttribute, updateCategory, updateConfigShopsConfigIdPut, updateFaqFaqIdPut, updateOptionV2ShopsShopIdAttributeOptionsOptionIdPut, updateOrdersOrderIdPut, updateProduct, updateShopsShopIdAccountsAccountIdPut, updateShopsShopIdProductsToTagsProductToTagIdPut, updateShopsShopIdPut, updateTag };