@infisale-client/api-client 1.3.17 → 1.3.18
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/api/api.d.ts +56 -179
- package/dist/api/api.js +3 -31
- package/dist/api/api.mjs +0 -28
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -47,37 +47,6 @@ export declare const CompanyUserStatusEnum: {
|
|
|
47
47
|
readonly DELETED: "deleted";
|
|
48
48
|
};
|
|
49
49
|
export type CompanyUserStatusEnum = typeof CompanyUserStatusEnum[keyof typeof CompanyUserStatusEnum];
|
|
50
|
-
/**
|
|
51
|
-
*
|
|
52
|
-
* @export
|
|
53
|
-
* @enum {string}
|
|
54
|
-
*/
|
|
55
|
-
export declare const ComponentProductListTypeEnum: {
|
|
56
|
-
readonly GRID: "grid";
|
|
57
|
-
readonly CAROUSEL: "carousel";
|
|
58
|
-
};
|
|
59
|
-
export type ComponentProductListTypeEnum = typeof ComponentProductListTypeEnum[keyof typeof ComponentProductListTypeEnum];
|
|
60
|
-
/**
|
|
61
|
-
*
|
|
62
|
-
* @export
|
|
63
|
-
* @enum {string}
|
|
64
|
-
*/
|
|
65
|
-
export declare const ComponentProductOrderEnum: {
|
|
66
|
-
readonly NEWEST: "newest";
|
|
67
|
-
readonly BEST_SELLING: "best_selling";
|
|
68
|
-
};
|
|
69
|
-
export type ComponentProductOrderEnum = typeof ComponentProductOrderEnum[keyof typeof ComponentProductOrderEnum];
|
|
70
|
-
/**
|
|
71
|
-
*
|
|
72
|
-
* @export
|
|
73
|
-
* @enum {string}
|
|
74
|
-
*/
|
|
75
|
-
export declare const ComponentProductTypeEnum: {
|
|
76
|
-
readonly CATEGORY: "category";
|
|
77
|
-
readonly COLLECTION: "collection";
|
|
78
|
-
readonly BRAND: "brand";
|
|
79
|
-
};
|
|
80
|
-
export type ComponentProductTypeEnum = typeof ComponentProductTypeEnum[keyof typeof ComponentProductTypeEnum];
|
|
81
50
|
/**
|
|
82
51
|
*
|
|
83
52
|
* @export
|
|
@@ -4259,6 +4228,12 @@ export interface IContactFormPostRequest {
|
|
|
4259
4228
|
* @memberof IContactFormPostRequest
|
|
4260
4229
|
*/
|
|
4261
4230
|
'data': Array<IContactFormResponseDataInner>;
|
|
4231
|
+
/**
|
|
4232
|
+
*
|
|
4233
|
+
* @type {string}
|
|
4234
|
+
* @memberof IContactFormPostRequest
|
|
4235
|
+
*/
|
|
4236
|
+
'title'?: string;
|
|
4262
4237
|
/**
|
|
4263
4238
|
*
|
|
4264
4239
|
* @type {string}
|
|
@@ -4308,6 +4283,12 @@ export interface IContactFormResponse {
|
|
|
4308
4283
|
* @memberof IContactFormResponse
|
|
4309
4284
|
*/
|
|
4310
4285
|
'ip': string;
|
|
4286
|
+
/**
|
|
4287
|
+
*
|
|
4288
|
+
* @type {string}
|
|
4289
|
+
* @memberof IContactFormResponse
|
|
4290
|
+
*/
|
|
4291
|
+
'title': string;
|
|
4311
4292
|
/**
|
|
4312
4293
|
*
|
|
4313
4294
|
* @type {Array<IContactFormResponseDataInner>}
|
|
@@ -7459,10 +7440,10 @@ export interface IProductResponse {
|
|
|
7459
7440
|
'reviewCount': number;
|
|
7460
7441
|
/**
|
|
7461
7442
|
*
|
|
7462
|
-
* @type {
|
|
7443
|
+
* @type {PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts}
|
|
7463
7444
|
* @memberof IProductResponse
|
|
7464
7445
|
*/
|
|
7465
|
-
'reviewCounts':
|
|
7446
|
+
'reviewCounts': PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts;
|
|
7466
7447
|
/**
|
|
7467
7448
|
*
|
|
7468
7449
|
* @type {ContentStatusEnum}
|
|
@@ -7530,43 +7511,6 @@ export interface IProductResponse {
|
|
|
7530
7511
|
*/
|
|
7531
7512
|
'template': ITemplateResponse;
|
|
7532
7513
|
}
|
|
7533
|
-
/**
|
|
7534
|
-
*
|
|
7535
|
-
* @export
|
|
7536
|
-
* @interface IProductResponseReviewCounts
|
|
7537
|
-
*/
|
|
7538
|
-
export interface IProductResponseReviewCounts {
|
|
7539
|
-
/**
|
|
7540
|
-
*
|
|
7541
|
-
* @type {number}
|
|
7542
|
-
* @memberof IProductResponseReviewCounts
|
|
7543
|
-
*/
|
|
7544
|
-
'1': number;
|
|
7545
|
-
/**
|
|
7546
|
-
*
|
|
7547
|
-
* @type {number}
|
|
7548
|
-
* @memberof IProductResponseReviewCounts
|
|
7549
|
-
*/
|
|
7550
|
-
'2': number;
|
|
7551
|
-
/**
|
|
7552
|
-
*
|
|
7553
|
-
* @type {number}
|
|
7554
|
-
* @memberof IProductResponseReviewCounts
|
|
7555
|
-
*/
|
|
7556
|
-
'3': number;
|
|
7557
|
-
/**
|
|
7558
|
-
*
|
|
7559
|
-
* @type {number}
|
|
7560
|
-
* @memberof IProductResponseReviewCounts
|
|
7561
|
-
*/
|
|
7562
|
-
'4': number;
|
|
7563
|
-
/**
|
|
7564
|
-
*
|
|
7565
|
-
* @type {number}
|
|
7566
|
-
* @memberof IProductResponseReviewCounts
|
|
7567
|
-
*/
|
|
7568
|
-
'5': number;
|
|
7569
|
-
}
|
|
7570
7514
|
/**
|
|
7571
7515
|
*
|
|
7572
7516
|
* @export
|
|
@@ -8268,110 +8212,6 @@ export interface ITemplateComponentResponse {
|
|
|
8268
8212
|
* @memberof ITemplateComponentResponse
|
|
8269
8213
|
*/
|
|
8270
8214
|
'contents': Array<ITemplateComponentContentResponse>;
|
|
8271
|
-
/**
|
|
8272
|
-
*
|
|
8273
|
-
* @type {ITemplateComponentResponseProducts}
|
|
8274
|
-
* @memberof ITemplateComponentResponse
|
|
8275
|
-
*/
|
|
8276
|
-
'products'?: ITemplateComponentResponseProducts;
|
|
8277
|
-
/**
|
|
8278
|
-
*
|
|
8279
|
-
* @type {Array<ICategoryResponse>}
|
|
8280
|
-
* @memberof ITemplateComponentResponse
|
|
8281
|
-
*/
|
|
8282
|
-
'categories'?: Array<ICategoryResponse>;
|
|
8283
|
-
/**
|
|
8284
|
-
*
|
|
8285
|
-
* @type {Array<IBrandResponse>}
|
|
8286
|
-
* @memberof ITemplateComponentResponse
|
|
8287
|
-
*/
|
|
8288
|
-
'brands'?: Array<IBrandResponse>;
|
|
8289
|
-
/**
|
|
8290
|
-
*
|
|
8291
|
-
* @type {Array<ICollectionResponse>}
|
|
8292
|
-
* @memberof ITemplateComponentResponse
|
|
8293
|
-
*/
|
|
8294
|
-
'collections'?: Array<ICollectionResponse>;
|
|
8295
|
-
/**
|
|
8296
|
-
*
|
|
8297
|
-
* @type {ITemplateComponentResponsePages}
|
|
8298
|
-
* @memberof ITemplateComponentResponse
|
|
8299
|
-
*/
|
|
8300
|
-
'pages'?: ITemplateComponentResponsePages;
|
|
8301
|
-
}
|
|
8302
|
-
/**
|
|
8303
|
-
*
|
|
8304
|
-
* @export
|
|
8305
|
-
* @interface ITemplateComponentResponsePages
|
|
8306
|
-
*/
|
|
8307
|
-
export interface ITemplateComponentResponsePages {
|
|
8308
|
-
/**
|
|
8309
|
-
*
|
|
8310
|
-
* @type {number}
|
|
8311
|
-
* @memberof ITemplateComponentResponsePages
|
|
8312
|
-
*/
|
|
8313
|
-
'limit'?: number;
|
|
8314
|
-
/**
|
|
8315
|
-
*
|
|
8316
|
-
* @type {Array<IPageResponse>}
|
|
8317
|
-
* @memberof ITemplateComponentResponsePages
|
|
8318
|
-
*/
|
|
8319
|
-
'list'?: Array<IPageResponse>;
|
|
8320
|
-
/**
|
|
8321
|
-
*
|
|
8322
|
-
* @type {Array<IPageResponse>}
|
|
8323
|
-
* @memberof ITemplateComponentResponsePages
|
|
8324
|
-
*/
|
|
8325
|
-
'items'?: Array<IPageResponse>;
|
|
8326
|
-
}
|
|
8327
|
-
/**
|
|
8328
|
-
*
|
|
8329
|
-
* @export
|
|
8330
|
-
* @interface ITemplateComponentResponseProducts
|
|
8331
|
-
*/
|
|
8332
|
-
export interface ITemplateComponentResponseProducts {
|
|
8333
|
-
/**
|
|
8334
|
-
*
|
|
8335
|
-
* @type {Array<IProductResponse>}
|
|
8336
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8337
|
-
*/
|
|
8338
|
-
'list'?: Array<IProductResponse>;
|
|
8339
|
-
/**
|
|
8340
|
-
*
|
|
8341
|
-
* @type {number}
|
|
8342
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8343
|
-
*/
|
|
8344
|
-
'limit'?: number;
|
|
8345
|
-
/**
|
|
8346
|
-
*
|
|
8347
|
-
* @type {ComponentProductListTypeEnum}
|
|
8348
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8349
|
-
*/
|
|
8350
|
-
'listType': ComponentProductListTypeEnum;
|
|
8351
|
-
/**
|
|
8352
|
-
*
|
|
8353
|
-
* @type {ComponentProductOrderEnum}
|
|
8354
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8355
|
-
*/
|
|
8356
|
-
'order'?: ComponentProductOrderEnum;
|
|
8357
|
-
/**
|
|
8358
|
-
*
|
|
8359
|
-
* @type {ComponentProductTypeEnum}
|
|
8360
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8361
|
-
*/
|
|
8362
|
-
'relType'?: ComponentProductTypeEnum;
|
|
8363
|
-
/**
|
|
8364
|
-
*
|
|
8365
|
-
* @type {string}
|
|
8366
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8367
|
-
*/
|
|
8368
|
-
'relation'?: string;
|
|
8369
|
-
/**
|
|
8370
|
-
*
|
|
8371
|
-
* @type {Array<IProductResponse>}
|
|
8372
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8373
|
-
*/
|
|
8374
|
-
'items'?: Array<IProductResponse>;
|
|
8375
8215
|
}
|
|
8376
8216
|
/**
|
|
8377
8217
|
*
|
|
@@ -10475,13 +10315,13 @@ export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUse
|
|
|
10475
10315
|
/**
|
|
10476
10316
|
* From T, pick a set of properties whose keys are in the union K
|
|
10477
10317
|
* @export
|
|
10478
|
-
* @interface
|
|
10318
|
+
* @interface PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIpOrTitle
|
|
10479
10319
|
*/
|
|
10480
|
-
export interface
|
|
10320
|
+
export interface PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIpOrTitle {
|
|
10481
10321
|
/**
|
|
10482
10322
|
*
|
|
10483
10323
|
* @type {Array<IContactFormResponseDataInner>}
|
|
10484
|
-
* @memberof
|
|
10324
|
+
* @memberof PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIpOrTitle
|
|
10485
10325
|
*/
|
|
10486
10326
|
'data': Array<IContactFormResponseDataInner>;
|
|
10487
10327
|
}
|
|
@@ -11122,10 +10962,47 @@ export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttr
|
|
|
11122
10962
|
'reviewCount': number;
|
|
11123
10963
|
/**
|
|
11124
10964
|
*
|
|
11125
|
-
* @type {
|
|
10965
|
+
* @type {PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts}
|
|
11126
10966
|
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
11127
10967
|
*/
|
|
11128
|
-
'reviewCounts':
|
|
10968
|
+
'reviewCounts': PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts;
|
|
10969
|
+
}
|
|
10970
|
+
/**
|
|
10971
|
+
*
|
|
10972
|
+
* @export
|
|
10973
|
+
* @interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts
|
|
10974
|
+
*/
|
|
10975
|
+
export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts {
|
|
10976
|
+
/**
|
|
10977
|
+
*
|
|
10978
|
+
* @type {number}
|
|
10979
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts
|
|
10980
|
+
*/
|
|
10981
|
+
'1': number;
|
|
10982
|
+
/**
|
|
10983
|
+
*
|
|
10984
|
+
* @type {number}
|
|
10985
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts
|
|
10986
|
+
*/
|
|
10987
|
+
'2': number;
|
|
10988
|
+
/**
|
|
10989
|
+
*
|
|
10990
|
+
* @type {number}
|
|
10991
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts
|
|
10992
|
+
*/
|
|
10993
|
+
'3': number;
|
|
10994
|
+
/**
|
|
10995
|
+
*
|
|
10996
|
+
* @type {number}
|
|
10997
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts
|
|
10998
|
+
*/
|
|
10999
|
+
'4': number;
|
|
11000
|
+
/**
|
|
11001
|
+
*
|
|
11002
|
+
* @type {number}
|
|
11003
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts
|
|
11004
|
+
*/
|
|
11005
|
+
'5': number;
|
|
11129
11006
|
}
|
|
11130
11007
|
/**
|
|
11131
11008
|
* From T, pick a set of properties whose keys are in the union K
|
package/dist/api/api.js
CHANGED
|
@@ -16,9 +16,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
16
16
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
-
exports.PlanCurrencyEnum = exports.PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum = exports.PaymentStatusEnum = exports.PaymentMethodEnum = exports.PaymentGatewayEnum = exports.OrderStatusEnum = exports.OrderShippedStatusEnum = exports.OrderReturnStatusEnumWAITINGRETURN = exports.OrderReturnStatusEnumRETURNED = exports.OrderReturnStatusEnum = exports.OrderPaymentStatusEnum = exports.OrderEnum = exports.OperationStatusEnum = exports.NotificationStatusEnum = exports.NotificationMessageEnum = exports.NavigationUrlTargetEnum = exports.LanguageEnum = exports.IUserCollectionQueryParamsDateFieldEnum = exports.IUniqueCollectionQueryParamsDateFieldEnum = exports.IProductCollectionQueryParamsSortEnum = exports.IProductCollectionQueryParamsDateFieldEnum = exports.IPlanCollectionQueryParamsDateFieldEnum = exports.IPaymentPostRequestPeriodEnum = exports.IPageCollectionQueryParamsDateFieldEnum = exports.IOrderCollectionQueryParamsDateFieldEnum = exports.IOperationCollectionQueryParamsDateFieldEnum = exports.INotificationCollectionQueryParamsDateFieldEnum = exports.IMyOrderCollectionQueryParamsDateFieldEnum = exports.IFileCollectionQueryParamsDateFieldEnum = exports.IContactFormCollectionQueryParamsDateFieldEnum = exports.ICompanyUsersCollectionQueryParamsDateFieldEnum = exports.ICompanyDashboardResponsePeriodEnum = exports.ICompanyCollectionQueryParamsDateFieldEnum = exports.ICollectionCollectionsQueryParamsDateFieldEnum = exports.ICategoryCollectionQueryParamsDateFieldEnum = exports.IBrandCollectionQueryParamsDateFieldEnum = exports.FileTypeEnum = exports.FileStatusEnum = exports.FileKeywordEnum = exports.EmailConfigDnsRecordTypeEnum = exports.CurrencyRateTypeEnum = exports.CurrencyEnum = exports.CountryEnum = exports.ContentStatusEnum = exports.
|
|
20
|
-
exports.GetProductsDateFieldEnum = exports.ProductApi = exports.ProductApiFactory = exports.ProductApiFp = exports.ProductApiAxiosParamCreator = exports.GetPagesDateFieldEnum = exports.PageApi = exports.PageApiFactory = exports.PageApiFp = exports.PageApiAxiosParamCreator = exports.GetOrdersDateFieldEnum = exports.GetMyOrdersDateFieldEnum = exports.OrderApi = exports.OrderApiFactory = exports.OrderApiFp = exports.OrderApiAxiosParamCreator = exports.ContactFormApi = exports.ContactFormApiFactory = exports.ContactFormApiFp = exports.ContactFormApiAxiosParamCreator = exports.CompanyApi = exports.CompanyApiFactory = exports.CompanyApiFp = exports.CompanyApiAxiosParamCreator = exports.GetCollectionsDateFieldEnum = exports.CollectionApi = exports.CollectionApiFactory = exports.CollectionApiFp = exports.CollectionApiAxiosParamCreator = exports.BasketApi = exports.BasketApiFactory = exports.BasketApiFp = exports.BasketApiAxiosParamCreator = exports.AuthApi = exports.AuthApiFactory = exports.AuthApiFp = exports.AuthApiAxiosParamCreator = exports.AddressApi = exports.AddressApiFactory = exports.AddressApiFp = exports.AddressApiAxiosParamCreator = exports.UserStatusEnum = exports.UserRoleEnum = exports.TimezoneEnum = exports.StoreLocationEnum = exports.SitemapTypeEnum = exports.ShippingPricingTypeEnum =
|
|
21
|
-
exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.UniquePageApi = exports.UniquePageApiFactory = exports.UniquePageApiFp = exports.UniquePageApiAxiosParamCreator = exports.SitemapApi = exports.SitemapApiFactory =
|
|
19
|
+
exports.ReviewStatusEnum = exports.PlanTypeEnum = exports.PlanStatusEnum = exports.PlanCurrencyEnum = exports.PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum = exports.PaymentStatusEnum = exports.PaymentMethodEnum = exports.PaymentGatewayEnum = exports.OrderStatusEnum = exports.OrderShippedStatusEnum = exports.OrderReturnStatusEnumWAITINGRETURN = exports.OrderReturnStatusEnumRETURNED = exports.OrderReturnStatusEnum = exports.OrderPaymentStatusEnum = exports.OrderEnum = exports.OperationStatusEnum = exports.NotificationStatusEnum = exports.NotificationMessageEnum = exports.NavigationUrlTargetEnum = exports.LanguageEnum = exports.IUserCollectionQueryParamsDateFieldEnum = exports.IUniqueCollectionQueryParamsDateFieldEnum = exports.IProductCollectionQueryParamsSortEnum = exports.IProductCollectionQueryParamsDateFieldEnum = exports.IPlanCollectionQueryParamsDateFieldEnum = exports.IPaymentPostRequestPeriodEnum = exports.IPageCollectionQueryParamsDateFieldEnum = exports.IOrderCollectionQueryParamsDateFieldEnum = exports.IOperationCollectionQueryParamsDateFieldEnum = exports.INotificationCollectionQueryParamsDateFieldEnum = exports.IMyOrderCollectionQueryParamsDateFieldEnum = exports.IFileCollectionQueryParamsDateFieldEnum = exports.IContactFormCollectionQueryParamsDateFieldEnum = exports.ICompanyUsersCollectionQueryParamsDateFieldEnum = exports.ICompanyDashboardResponsePeriodEnum = exports.ICompanyCollectionQueryParamsDateFieldEnum = exports.ICollectionCollectionsQueryParamsDateFieldEnum = exports.ICategoryCollectionQueryParamsDateFieldEnum = exports.IBrandCollectionQueryParamsDateFieldEnum = exports.FileTypeEnum = exports.FileStatusEnum = exports.FileKeywordEnum = exports.EmailConfigDnsRecordTypeEnum = exports.CurrencyRateTypeEnum = exports.CurrencyEnum = exports.CountryEnum = exports.ContentStatusEnum = exports.CompanyUserStatusEnum = exports.CompanyTypeEnum = exports.CompanyStatusEnum = void 0;
|
|
20
|
+
exports.SitemapApiFp = exports.SitemapApiAxiosParamCreator = exports.GetProductsSortEnum = exports.GetProductsDateFieldEnum = exports.ProductApi = exports.ProductApiFactory = exports.ProductApiFp = exports.ProductApiAxiosParamCreator = exports.GetPagesDateFieldEnum = exports.PageApi = exports.PageApiFactory = exports.PageApiFp = exports.PageApiAxiosParamCreator = exports.GetOrdersDateFieldEnum = exports.GetMyOrdersDateFieldEnum = exports.OrderApi = exports.OrderApiFactory = exports.OrderApiFp = exports.OrderApiAxiosParamCreator = exports.ContactFormApi = exports.ContactFormApiFactory = exports.ContactFormApiFp = exports.ContactFormApiAxiosParamCreator = exports.CompanyApi = exports.CompanyApiFactory = exports.CompanyApiFp = exports.CompanyApiAxiosParamCreator = exports.GetCollectionsDateFieldEnum = exports.CollectionApi = exports.CollectionApiFactory = exports.CollectionApiFp = exports.CollectionApiAxiosParamCreator = exports.BasketApi = exports.BasketApiFactory = exports.BasketApiFp = exports.BasketApiAxiosParamCreator = exports.AuthApi = exports.AuthApiFactory = exports.AuthApiFp = exports.AuthApiAxiosParamCreator = exports.AddressApi = exports.AddressApiFactory = exports.AddressApiFp = exports.AddressApiAxiosParamCreator = exports.UserStatusEnum = exports.UserRoleEnum = exports.TimezoneEnum = exports.StoreLocationEnum = exports.SitemapTypeEnum = exports.ShippingPricingTypeEnum = void 0;
|
|
21
|
+
exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.UniquePageApi = exports.UniquePageApiFactory = exports.UniquePageApiFp = exports.UniquePageApiAxiosParamCreator = exports.SitemapApi = exports.SitemapApiFactory = void 0;
|
|
22
22
|
const axios_1 = __importDefault(require("axios"));
|
|
23
23
|
// Some imports not used depending on template conditions
|
|
24
24
|
// @ts-ignore
|
|
@@ -56,34 +56,6 @@ exports.CompanyUserStatusEnum = {
|
|
|
56
56
|
UNEMPLOYED: 'unemployed',
|
|
57
57
|
DELETED: 'deleted'
|
|
58
58
|
};
|
|
59
|
-
/**
|
|
60
|
-
*
|
|
61
|
-
* @export
|
|
62
|
-
* @enum {string}
|
|
63
|
-
*/
|
|
64
|
-
exports.ComponentProductListTypeEnum = {
|
|
65
|
-
GRID: 'grid',
|
|
66
|
-
CAROUSEL: 'carousel'
|
|
67
|
-
};
|
|
68
|
-
/**
|
|
69
|
-
*
|
|
70
|
-
* @export
|
|
71
|
-
* @enum {string}
|
|
72
|
-
*/
|
|
73
|
-
exports.ComponentProductOrderEnum = {
|
|
74
|
-
NEWEST: 'newest',
|
|
75
|
-
BEST_SELLING: 'best_selling'
|
|
76
|
-
};
|
|
77
|
-
/**
|
|
78
|
-
*
|
|
79
|
-
* @export
|
|
80
|
-
* @enum {string}
|
|
81
|
-
*/
|
|
82
|
-
exports.ComponentProductTypeEnum = {
|
|
83
|
-
CATEGORY: 'category',
|
|
84
|
-
COLLECTION: 'collection',
|
|
85
|
-
BRAND: 'brand'
|
|
86
|
-
};
|
|
87
59
|
/**
|
|
88
60
|
*
|
|
89
61
|
* @export
|
package/dist/api/api.mjs
CHANGED
|
@@ -45,34 +45,6 @@ export const CompanyUserStatusEnum = {
|
|
|
45
45
|
UNEMPLOYED: 'unemployed',
|
|
46
46
|
DELETED: 'deleted'
|
|
47
47
|
};
|
|
48
|
-
/**
|
|
49
|
-
*
|
|
50
|
-
* @export
|
|
51
|
-
* @enum {string}
|
|
52
|
-
*/
|
|
53
|
-
export const ComponentProductListTypeEnum = {
|
|
54
|
-
GRID: 'grid',
|
|
55
|
-
CAROUSEL: 'carousel'
|
|
56
|
-
};
|
|
57
|
-
/**
|
|
58
|
-
*
|
|
59
|
-
* @export
|
|
60
|
-
* @enum {string}
|
|
61
|
-
*/
|
|
62
|
-
export const ComponentProductOrderEnum = {
|
|
63
|
-
NEWEST: 'newest',
|
|
64
|
-
BEST_SELLING: 'best_selling'
|
|
65
|
-
};
|
|
66
|
-
/**
|
|
67
|
-
*
|
|
68
|
-
* @export
|
|
69
|
-
* @enum {string}
|
|
70
|
-
*/
|
|
71
|
-
export const ComponentProductTypeEnum = {
|
|
72
|
-
CATEGORY: 'category',
|
|
73
|
-
COLLECTION: 'collection',
|
|
74
|
-
BRAND: 'brand'
|
|
75
|
-
};
|
|
76
48
|
/**
|
|
77
49
|
*
|
|
78
50
|
* @export
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api-client",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.18",
|
|
4
4
|
"description": "api-client-sdk",
|
|
5
5
|
"author": "Muhammet KÖKLÜ <105980019+byhipernova@users.noreply.github.com>",
|
|
6
6
|
"homepage": "https://github.com/infisale/infisale-client#readme",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"bugs": {
|
|
38
38
|
"url": "https://github.com/infisale/infisale-client/issues"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "4cbc93aea8b664f10be3385f450a1986d198eaa0"
|
|
41
41
|
}
|