@shopvirge/shopvirge-client 0.3.1 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +102 -1
- package/dist/index.js +92 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1183,6 +1183,40 @@ declare const $ConfigurationLegal: {
|
|
|
1183
1183
|
readonly type: "object";
|
|
1184
1184
|
readonly title: "ConfigurationLegal";
|
|
1185
1185
|
};
|
|
1186
|
+
declare const $ConfigurationOrderStatusMails: {
|
|
1187
|
+
readonly properties: {
|
|
1188
|
+
readonly owner_notification_enabled: {
|
|
1189
|
+
readonly type: "boolean";
|
|
1190
|
+
readonly title: "Owner Notification Enabled";
|
|
1191
|
+
readonly default: true;
|
|
1192
|
+
};
|
|
1193
|
+
readonly owner_notification_email: {
|
|
1194
|
+
readonly anyOf: readonly [{
|
|
1195
|
+
readonly type: "string";
|
|
1196
|
+
readonly format: "email";
|
|
1197
|
+
}, {
|
|
1198
|
+
readonly type: "null";
|
|
1199
|
+
}];
|
|
1200
|
+
readonly title: "Owner Notification Email";
|
|
1201
|
+
};
|
|
1202
|
+
readonly copy_enabled: {
|
|
1203
|
+
readonly type: "boolean";
|
|
1204
|
+
readonly title: "Copy Enabled";
|
|
1205
|
+
readonly default: false;
|
|
1206
|
+
};
|
|
1207
|
+
readonly copy_email: {
|
|
1208
|
+
readonly anyOf: readonly [{
|
|
1209
|
+
readonly type: "string";
|
|
1210
|
+
readonly format: "email";
|
|
1211
|
+
}, {
|
|
1212
|
+
readonly type: "null";
|
|
1213
|
+
}];
|
|
1214
|
+
readonly title: "Copy Email";
|
|
1215
|
+
};
|
|
1216
|
+
};
|
|
1217
|
+
readonly type: "object";
|
|
1218
|
+
readonly title: "ConfigurationOrderStatusMails";
|
|
1219
|
+
};
|
|
1186
1220
|
declare const $ConfigurationShipping_Input: {
|
|
1187
1221
|
readonly properties: {
|
|
1188
1222
|
readonly enabled: {
|
|
@@ -1331,6 +1365,13 @@ declare const $ConfigurationV1_Input: {
|
|
|
1331
1365
|
readonly type: "null";
|
|
1332
1366
|
}];
|
|
1333
1367
|
};
|
|
1368
|
+
readonly order_status_mails: {
|
|
1369
|
+
readonly anyOf: readonly [{
|
|
1370
|
+
readonly $ref: "#/components/schemas/ConfigurationOrderStatusMails";
|
|
1371
|
+
}, {
|
|
1372
|
+
readonly type: "null";
|
|
1373
|
+
}];
|
|
1374
|
+
};
|
|
1334
1375
|
};
|
|
1335
1376
|
readonly type: "object";
|
|
1336
1377
|
readonly required: readonly ["short_shop_name", "logo", "main_banner", "languages", "contact", "toggles"];
|
|
@@ -1402,6 +1443,13 @@ declare const $ConfigurationV1_Output: {
|
|
|
1402
1443
|
readonly type: "null";
|
|
1403
1444
|
}];
|
|
1404
1445
|
};
|
|
1446
|
+
readonly order_status_mails: {
|
|
1447
|
+
readonly anyOf: readonly [{
|
|
1448
|
+
readonly $ref: "#/components/schemas/ConfigurationOrderStatusMails";
|
|
1449
|
+
}, {
|
|
1450
|
+
readonly type: "null";
|
|
1451
|
+
}];
|
|
1452
|
+
};
|
|
1405
1453
|
};
|
|
1406
1454
|
readonly type: "object";
|
|
1407
1455
|
readonly required: readonly ["short_shop_name", "logo", "main_banner", "languages", "contact", "toggles"];
|
|
@@ -1807,6 +1855,28 @@ declare const $Msg: {
|
|
|
1807
1855
|
readonly required: readonly ["msg"];
|
|
1808
1856
|
readonly title: "Msg";
|
|
1809
1857
|
};
|
|
1858
|
+
declare const $MyShopsResponse: {
|
|
1859
|
+
readonly properties: {
|
|
1860
|
+
readonly shops: {
|
|
1861
|
+
readonly items: {
|
|
1862
|
+
readonly $ref: "#/components/schemas/ShopSchema";
|
|
1863
|
+
};
|
|
1864
|
+
readonly type: "array";
|
|
1865
|
+
readonly title: "Shops";
|
|
1866
|
+
};
|
|
1867
|
+
readonly is_admin: {
|
|
1868
|
+
readonly type: "boolean";
|
|
1869
|
+
readonly title: "Is Admin";
|
|
1870
|
+
};
|
|
1871
|
+
readonly can_write: {
|
|
1872
|
+
readonly type: "boolean";
|
|
1873
|
+
readonly title: "Can Write";
|
|
1874
|
+
};
|
|
1875
|
+
};
|
|
1876
|
+
readonly type: "object";
|
|
1877
|
+
readonly required: readonly ["shops", "is_admin", "can_write"];
|
|
1878
|
+
readonly title: "MyShopsResponse";
|
|
1879
|
+
};
|
|
1810
1880
|
declare const $OrderBase: {
|
|
1811
1881
|
readonly properties: {
|
|
1812
1882
|
readonly account_id: {
|
|
@@ -4813,6 +4883,12 @@ type ConfigurationLegal = {
|
|
|
4813
4883
|
kvk_number?: string | null;
|
|
4814
4884
|
btw_number?: string | null;
|
|
4815
4885
|
};
|
|
4886
|
+
type ConfigurationOrderStatusMails = {
|
|
4887
|
+
owner_notification_enabled?: boolean;
|
|
4888
|
+
owner_notification_email?: string | null;
|
|
4889
|
+
copy_enabled?: boolean;
|
|
4890
|
+
copy_email?: string | null;
|
|
4891
|
+
};
|
|
4816
4892
|
type ConfigurationShipping_Input = {
|
|
4817
4893
|
enabled?: boolean;
|
|
4818
4894
|
method?: string;
|
|
@@ -4842,6 +4918,7 @@ type ConfigurationV1_Input = {
|
|
|
4842
4918
|
toggles: Toggles;
|
|
4843
4919
|
legal?: ConfigurationLegal | null;
|
|
4844
4920
|
shipping?: ConfigurationShipping_Input | null;
|
|
4921
|
+
order_status_mails?: ConfigurationOrderStatusMails | null;
|
|
4845
4922
|
};
|
|
4846
4923
|
type ConfigurationV1_Output = {
|
|
4847
4924
|
short_shop_name: string;
|
|
@@ -4856,6 +4933,7 @@ type ConfigurationV1_Output = {
|
|
|
4856
4933
|
toggles: Toggles;
|
|
4857
4934
|
legal?: ConfigurationLegal | null;
|
|
4858
4935
|
shipping?: ConfigurationShipping_Output | null;
|
|
4936
|
+
order_status_mails?: ConfigurationOrderStatusMails | null;
|
|
4859
4937
|
};
|
|
4860
4938
|
type DefaultPrice = {
|
|
4861
4939
|
id?: string | null;
|
|
@@ -4942,6 +5020,11 @@ type LinkStripeBody = {
|
|
|
4942
5020
|
type Msg = {
|
|
4943
5021
|
msg: string;
|
|
4944
5022
|
};
|
|
5023
|
+
type MyShopsResponse = {
|
|
5024
|
+
shops: Array<ShopSchema>;
|
|
5025
|
+
is_admin: boolean;
|
|
5026
|
+
can_write: boolean;
|
|
5027
|
+
};
|
|
4945
5028
|
type OrderBase = {
|
|
4946
5029
|
account_id?: string | null;
|
|
4947
5030
|
total: number | string | null;
|
|
@@ -5634,6 +5717,7 @@ type CreateShopsPostData = {
|
|
|
5634
5717
|
requestBody: ShopCreate;
|
|
5635
5718
|
};
|
|
5636
5719
|
type CreateShopsPostResponse = ShopSchema;
|
|
5720
|
+
type ListMyShopsResponse = MyShopsResponse;
|
|
5637
5721
|
type GetCacheStatusShopsCacheStatusIdGetData = {
|
|
5638
5722
|
id: string;
|
|
5639
5723
|
};
|
|
@@ -6813,6 +6897,16 @@ type $OpenApiTs = {
|
|
|
6813
6897
|
};
|
|
6814
6898
|
};
|
|
6815
6899
|
};
|
|
6900
|
+
'/shops/my-shops': {
|
|
6901
|
+
get: {
|
|
6902
|
+
res: {
|
|
6903
|
+
/**
|
|
6904
|
+
* Successful Response
|
|
6905
|
+
*/
|
|
6906
|
+
200: MyShopsResponse;
|
|
6907
|
+
};
|
|
6908
|
+
};
|
|
6909
|
+
};
|
|
6816
6910
|
'/shops/cache-status/{id}': {
|
|
6817
6911
|
get: {
|
|
6818
6912
|
req: GetCacheStatusShopsCacheStatusIdGetData;
|
|
@@ -8565,6 +8659,13 @@ declare const getMultiShopsGet: (data?: GetMultiShopsGetData) => CancelablePromi
|
|
|
8565
8659
|
* @throws ApiError
|
|
8566
8660
|
*/
|
|
8567
8661
|
declare const createShopsPost: (data: CreateShopsPostData) => CancelablePromise<CreateShopsPostResponse>;
|
|
8662
|
+
/**
|
|
8663
|
+
* List shops and capabilities for the current user
|
|
8664
|
+
* Returns the shops this user can manage, derived from their Cognito groups, plus capability flags the agent should use to tailor its welcome message and behaviour. Admins (group 'Admins') see all shops and have full write access. Tenant users see only the shop(s) whose ID matches one of their Cognito group names; their write access is also scoped to those shops. Always call this first — before saying anything to the user.
|
|
8665
|
+
* @returns MyShopsResponse Successful Response
|
|
8666
|
+
* @throws ApiError
|
|
8667
|
+
*/
|
|
8668
|
+
declare const listMyShops: () => CancelablePromise<ListMyShopsResponse>;
|
|
8568
8669
|
/**
|
|
8569
8670
|
* Get Cache Status
|
|
8570
8671
|
* Show date of last change in data that could be visible in this shop
|
|
@@ -9646,4 +9747,4 @@ declare const updateFaqFaqIdPut: (data: UpdateFaqFaqIdPutData) => CancelableProm
|
|
|
9646
9747
|
*/
|
|
9647
9748
|
declare const deleteFaqFaqIdDelete: (data: DeleteFaqFaqIdDeleteData) => CancelablePromise<DeleteFaqFaqIdDeleteResponse>;
|
|
9648
9749
|
|
|
9649
|
-
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, $ConfigurationShipping_Input, $ConfigurationShipping_Output, $ConfigurationV1_Input, $ConfigurationV1_Output, $DefaultPrice, $EarlyAccessCreate, $FaqCreate, $FaqCreated, $FaqSchema, $FaqUpdate, $FaqUpdated, $HTTPValidationError, $Lang, $LicenseCreate, $LicenseSchema, $LicenseUpdate, $LinkStripeBody, $Msg, type $OpenApiTs, $OrderBase, $OrderCreate, $OrderCreated, $OrderItem_Input, $OrderItem_Output, $OrderSchema, $OrderUpdate, $OrderUpdated, $ProductAttributeItem, $ProductAttributeOptionSelectionAdd, $ProductAttributeOptionSelectionReplace, $ProductAttributeValueBase, $ProductAttributeValueSchema, $ProductCreate, $ProductResponse, $ProductToTagCreate, $ProductToTagSchema, $ProductToTagUpdate, $ProductTranslationBase, $ProductUpdate, $ProductWithAttributes, $ProductWithDefaultPrice, $ProductWithDetailsAndPrices, $ShippingCalculateRequest, $ShippingCalculation, $ShippingLine, $ShopCacheStatus, $ShopConfig, $ShopConfigUpdate_Input, $ShopConfigUpdate_Output, $ShopCreate, $ShopIp, $ShopLastCompletedOrder, $ShopLastPendingOrder, $ShopSchema, $ShopType, $ShopTypeName, $ShopUpdate, $ShopWithPrices, $SyncStripeResponse, $TagCreate, $TagSchema, $TagTranslationBase, $TagUpdate, $Toggles, $User, $UserCreate, $UserUpdate, $ValidationError, type AccountCreate, type AccountSchema, type AccountUpdate, type AddNewIpShopsAllowedIpsIdPostData, type AddNewIpShopsAllowedIpsIdPostResponse, type AdminAccountSchema, ApiError, type 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 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 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 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, 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 };
|
|
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 };
|
package/dist/index.js
CHANGED
|
@@ -126,7 +126,7 @@ var OpenAPI = {
|
|
|
126
126
|
PASSWORD: void 0,
|
|
127
127
|
TOKEN: void 0,
|
|
128
128
|
USERNAME: void 0,
|
|
129
|
-
VERSION: "0.3.
|
|
129
|
+
VERSION: "0.3.2",
|
|
130
130
|
WITH_CREDENTIALS: false,
|
|
131
131
|
interceptors: {
|
|
132
132
|
request: new Interceptors(),
|
|
@@ -1449,6 +1449,46 @@ var $ConfigurationLegal = {
|
|
|
1449
1449
|
type: "object",
|
|
1450
1450
|
title: "ConfigurationLegal"
|
|
1451
1451
|
};
|
|
1452
|
+
var $ConfigurationOrderStatusMails = {
|
|
1453
|
+
properties: {
|
|
1454
|
+
owner_notification_enabled: {
|
|
1455
|
+
type: "boolean",
|
|
1456
|
+
title: "Owner Notification Enabled",
|
|
1457
|
+
default: true
|
|
1458
|
+
},
|
|
1459
|
+
owner_notification_email: {
|
|
1460
|
+
anyOf: [
|
|
1461
|
+
{
|
|
1462
|
+
type: "string",
|
|
1463
|
+
format: "email"
|
|
1464
|
+
},
|
|
1465
|
+
{
|
|
1466
|
+
type: "null"
|
|
1467
|
+
}
|
|
1468
|
+
],
|
|
1469
|
+
title: "Owner Notification Email"
|
|
1470
|
+
},
|
|
1471
|
+
copy_enabled: {
|
|
1472
|
+
type: "boolean",
|
|
1473
|
+
title: "Copy Enabled",
|
|
1474
|
+
default: false
|
|
1475
|
+
},
|
|
1476
|
+
copy_email: {
|
|
1477
|
+
anyOf: [
|
|
1478
|
+
{
|
|
1479
|
+
type: "string",
|
|
1480
|
+
format: "email"
|
|
1481
|
+
},
|
|
1482
|
+
{
|
|
1483
|
+
type: "null"
|
|
1484
|
+
}
|
|
1485
|
+
],
|
|
1486
|
+
title: "Copy Email"
|
|
1487
|
+
}
|
|
1488
|
+
},
|
|
1489
|
+
type: "object",
|
|
1490
|
+
title: "ConfigurationOrderStatusMails"
|
|
1491
|
+
};
|
|
1452
1492
|
var $ConfigurationShipping_Input = {
|
|
1453
1493
|
properties: {
|
|
1454
1494
|
enabled: {
|
|
@@ -1617,6 +1657,16 @@ var $ConfigurationV1_Input = {
|
|
|
1617
1657
|
type: "null"
|
|
1618
1658
|
}
|
|
1619
1659
|
]
|
|
1660
|
+
},
|
|
1661
|
+
order_status_mails: {
|
|
1662
|
+
anyOf: [
|
|
1663
|
+
{
|
|
1664
|
+
$ref: "#/components/schemas/ConfigurationOrderStatusMails"
|
|
1665
|
+
},
|
|
1666
|
+
{
|
|
1667
|
+
type: "null"
|
|
1668
|
+
}
|
|
1669
|
+
]
|
|
1620
1670
|
}
|
|
1621
1671
|
},
|
|
1622
1672
|
type: "object",
|
|
@@ -1710,6 +1760,16 @@ var $ConfigurationV1_Output = {
|
|
|
1710
1760
|
type: "null"
|
|
1711
1761
|
}
|
|
1712
1762
|
]
|
|
1763
|
+
},
|
|
1764
|
+
order_status_mails: {
|
|
1765
|
+
anyOf: [
|
|
1766
|
+
{
|
|
1767
|
+
$ref: "#/components/schemas/ConfigurationOrderStatusMails"
|
|
1768
|
+
},
|
|
1769
|
+
{
|
|
1770
|
+
type: "null"
|
|
1771
|
+
}
|
|
1772
|
+
]
|
|
1713
1773
|
}
|
|
1714
1774
|
},
|
|
1715
1775
|
type: "object",
|
|
@@ -2200,6 +2260,28 @@ var $Msg = {
|
|
|
2200
2260
|
required: ["msg"],
|
|
2201
2261
|
title: "Msg"
|
|
2202
2262
|
};
|
|
2263
|
+
var $MyShopsResponse = {
|
|
2264
|
+
properties: {
|
|
2265
|
+
shops: {
|
|
2266
|
+
items: {
|
|
2267
|
+
$ref: "#/components/schemas/ShopSchema"
|
|
2268
|
+
},
|
|
2269
|
+
type: "array",
|
|
2270
|
+
title: "Shops"
|
|
2271
|
+
},
|
|
2272
|
+
is_admin: {
|
|
2273
|
+
type: "boolean",
|
|
2274
|
+
title: "Is Admin"
|
|
2275
|
+
},
|
|
2276
|
+
can_write: {
|
|
2277
|
+
type: "boolean",
|
|
2278
|
+
title: "Can Write"
|
|
2279
|
+
}
|
|
2280
|
+
},
|
|
2281
|
+
type: "object",
|
|
2282
|
+
required: ["shops", "is_admin", "can_write"],
|
|
2283
|
+
title: "MyShopsResponse"
|
|
2284
|
+
};
|
|
2203
2285
|
var $OrderBase = {
|
|
2204
2286
|
properties: {
|
|
2205
2287
|
account_id: {
|
|
@@ -6405,6 +6487,12 @@ var createShopsPost = (data) => {
|
|
|
6405
6487
|
}
|
|
6406
6488
|
});
|
|
6407
6489
|
};
|
|
6490
|
+
var listMyShops = () => {
|
|
6491
|
+
return request(OpenAPI, {
|
|
6492
|
+
method: "GET",
|
|
6493
|
+
url: "/shops/my-shops"
|
|
6494
|
+
});
|
|
6495
|
+
};
|
|
6408
6496
|
var getCacheStatusShopsCacheStatusIdGet = (data) => {
|
|
6409
6497
|
return request(OpenAPI, {
|
|
6410
6498
|
method: "GET",
|
|
@@ -7957,6 +8045,7 @@ export {
|
|
|
7957
8045
|
$ConfigurationLanguageFields,
|
|
7958
8046
|
$ConfigurationLanguages,
|
|
7959
8047
|
$ConfigurationLegal,
|
|
8048
|
+
$ConfigurationOrderStatusMails,
|
|
7960
8049
|
$ConfigurationShipping_Input,
|
|
7961
8050
|
$ConfigurationShipping_Output,
|
|
7962
8051
|
$ConfigurationV1_Input,
|
|
@@ -7975,6 +8064,7 @@ export {
|
|
|
7975
8064
|
$LicenseUpdate,
|
|
7976
8065
|
$LinkStripeBody,
|
|
7977
8066
|
$Msg,
|
|
8067
|
+
$MyShopsResponse,
|
|
7978
8068
|
$OrderBase,
|
|
7979
8069
|
$OrderCreate,
|
|
7980
8070
|
$OrderCreated,
|
|
@@ -8120,6 +8210,7 @@ export {
|
|
|
8120
8210
|
listAttributes,
|
|
8121
8211
|
listCategories,
|
|
8122
8212
|
listKeysShopsShopIdApiKeysGet,
|
|
8213
|
+
listMyShops,
|
|
8123
8214
|
listOptionsForShopShopsShopIdAttributeOptionsGet,
|
|
8124
8215
|
listOptionsShopsShopIdAttributesAttributeIdOptionsGet,
|
|
8125
8216
|
listProducts,
|