@infisale-client/api 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 +4 -32
- 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
|
|
@@ -4272,6 +4241,12 @@ export interface IContactFormPostRequest {
|
|
|
4272
4241
|
* @memberof IContactFormPostRequest
|
|
4273
4242
|
*/
|
|
4274
4243
|
'data': Array<IContactFormResponseDataInner>;
|
|
4244
|
+
/**
|
|
4245
|
+
*
|
|
4246
|
+
* @type {string}
|
|
4247
|
+
* @memberof IContactFormPostRequest
|
|
4248
|
+
*/
|
|
4249
|
+
'title'?: string;
|
|
4275
4250
|
/**
|
|
4276
4251
|
*
|
|
4277
4252
|
* @type {string}
|
|
@@ -4321,6 +4296,12 @@ export interface IContactFormResponse {
|
|
|
4321
4296
|
* @memberof IContactFormResponse
|
|
4322
4297
|
*/
|
|
4323
4298
|
'ip': string;
|
|
4299
|
+
/**
|
|
4300
|
+
*
|
|
4301
|
+
* @type {string}
|
|
4302
|
+
* @memberof IContactFormResponse
|
|
4303
|
+
*/
|
|
4304
|
+
'title': string;
|
|
4324
4305
|
/**
|
|
4325
4306
|
*
|
|
4326
4307
|
* @type {Array<IContactFormResponseDataInner>}
|
|
@@ -7472,10 +7453,10 @@ export interface IProductResponse {
|
|
|
7472
7453
|
'reviewCount': number;
|
|
7473
7454
|
/**
|
|
7474
7455
|
*
|
|
7475
|
-
* @type {
|
|
7456
|
+
* @type {PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts}
|
|
7476
7457
|
* @memberof IProductResponse
|
|
7477
7458
|
*/
|
|
7478
|
-
'reviewCounts':
|
|
7459
|
+
'reviewCounts': PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts;
|
|
7479
7460
|
/**
|
|
7480
7461
|
*
|
|
7481
7462
|
* @type {ContentStatusEnum}
|
|
@@ -7543,43 +7524,6 @@ export interface IProductResponse {
|
|
|
7543
7524
|
*/
|
|
7544
7525
|
'template': ITemplateResponse;
|
|
7545
7526
|
}
|
|
7546
|
-
/**
|
|
7547
|
-
*
|
|
7548
|
-
* @export
|
|
7549
|
-
* @interface IProductResponseReviewCounts
|
|
7550
|
-
*/
|
|
7551
|
-
export interface IProductResponseReviewCounts {
|
|
7552
|
-
/**
|
|
7553
|
-
*
|
|
7554
|
-
* @type {number}
|
|
7555
|
-
* @memberof IProductResponseReviewCounts
|
|
7556
|
-
*/
|
|
7557
|
-
'1': number;
|
|
7558
|
-
/**
|
|
7559
|
-
*
|
|
7560
|
-
* @type {number}
|
|
7561
|
-
* @memberof IProductResponseReviewCounts
|
|
7562
|
-
*/
|
|
7563
|
-
'2': number;
|
|
7564
|
-
/**
|
|
7565
|
-
*
|
|
7566
|
-
* @type {number}
|
|
7567
|
-
* @memberof IProductResponseReviewCounts
|
|
7568
|
-
*/
|
|
7569
|
-
'3': number;
|
|
7570
|
-
/**
|
|
7571
|
-
*
|
|
7572
|
-
* @type {number}
|
|
7573
|
-
* @memberof IProductResponseReviewCounts
|
|
7574
|
-
*/
|
|
7575
|
-
'4': number;
|
|
7576
|
-
/**
|
|
7577
|
-
*
|
|
7578
|
-
* @type {number}
|
|
7579
|
-
* @memberof IProductResponseReviewCounts
|
|
7580
|
-
*/
|
|
7581
|
-
'5': number;
|
|
7582
|
-
}
|
|
7583
7527
|
/**
|
|
7584
7528
|
*
|
|
7585
7529
|
* @export
|
|
@@ -8281,110 +8225,6 @@ export interface ITemplateComponentResponse {
|
|
|
8281
8225
|
* @memberof ITemplateComponentResponse
|
|
8282
8226
|
*/
|
|
8283
8227
|
'contents': Array<ITemplateComponentContentResponse>;
|
|
8284
|
-
/**
|
|
8285
|
-
*
|
|
8286
|
-
* @type {ITemplateComponentResponseProducts}
|
|
8287
|
-
* @memberof ITemplateComponentResponse
|
|
8288
|
-
*/
|
|
8289
|
-
'products'?: ITemplateComponentResponseProducts;
|
|
8290
|
-
/**
|
|
8291
|
-
*
|
|
8292
|
-
* @type {Array<ICategoryResponse>}
|
|
8293
|
-
* @memberof ITemplateComponentResponse
|
|
8294
|
-
*/
|
|
8295
|
-
'categories'?: Array<ICategoryResponse>;
|
|
8296
|
-
/**
|
|
8297
|
-
*
|
|
8298
|
-
* @type {Array<IBrandResponse>}
|
|
8299
|
-
* @memberof ITemplateComponentResponse
|
|
8300
|
-
*/
|
|
8301
|
-
'brands'?: Array<IBrandResponse>;
|
|
8302
|
-
/**
|
|
8303
|
-
*
|
|
8304
|
-
* @type {Array<ICollectionResponse>}
|
|
8305
|
-
* @memberof ITemplateComponentResponse
|
|
8306
|
-
*/
|
|
8307
|
-
'collections'?: Array<ICollectionResponse>;
|
|
8308
|
-
/**
|
|
8309
|
-
*
|
|
8310
|
-
* @type {ITemplateComponentResponsePages}
|
|
8311
|
-
* @memberof ITemplateComponentResponse
|
|
8312
|
-
*/
|
|
8313
|
-
'pages'?: ITemplateComponentResponsePages;
|
|
8314
|
-
}
|
|
8315
|
-
/**
|
|
8316
|
-
*
|
|
8317
|
-
* @export
|
|
8318
|
-
* @interface ITemplateComponentResponsePages
|
|
8319
|
-
*/
|
|
8320
|
-
export interface ITemplateComponentResponsePages {
|
|
8321
|
-
/**
|
|
8322
|
-
*
|
|
8323
|
-
* @type {number}
|
|
8324
|
-
* @memberof ITemplateComponentResponsePages
|
|
8325
|
-
*/
|
|
8326
|
-
'limit'?: number;
|
|
8327
|
-
/**
|
|
8328
|
-
*
|
|
8329
|
-
* @type {Array<IPageResponse>}
|
|
8330
|
-
* @memberof ITemplateComponentResponsePages
|
|
8331
|
-
*/
|
|
8332
|
-
'list'?: Array<IPageResponse>;
|
|
8333
|
-
/**
|
|
8334
|
-
*
|
|
8335
|
-
* @type {Array<IPageResponse>}
|
|
8336
|
-
* @memberof ITemplateComponentResponsePages
|
|
8337
|
-
*/
|
|
8338
|
-
'items'?: Array<IPageResponse>;
|
|
8339
|
-
}
|
|
8340
|
-
/**
|
|
8341
|
-
*
|
|
8342
|
-
* @export
|
|
8343
|
-
* @interface ITemplateComponentResponseProducts
|
|
8344
|
-
*/
|
|
8345
|
-
export interface ITemplateComponentResponseProducts {
|
|
8346
|
-
/**
|
|
8347
|
-
*
|
|
8348
|
-
* @type {Array<IProductResponse>}
|
|
8349
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8350
|
-
*/
|
|
8351
|
-
'list'?: Array<IProductResponse>;
|
|
8352
|
-
/**
|
|
8353
|
-
*
|
|
8354
|
-
* @type {number}
|
|
8355
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8356
|
-
*/
|
|
8357
|
-
'limit'?: number;
|
|
8358
|
-
/**
|
|
8359
|
-
*
|
|
8360
|
-
* @type {ComponentProductListTypeEnum}
|
|
8361
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8362
|
-
*/
|
|
8363
|
-
'listType': ComponentProductListTypeEnum;
|
|
8364
|
-
/**
|
|
8365
|
-
*
|
|
8366
|
-
* @type {ComponentProductOrderEnum}
|
|
8367
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8368
|
-
*/
|
|
8369
|
-
'order'?: ComponentProductOrderEnum;
|
|
8370
|
-
/**
|
|
8371
|
-
*
|
|
8372
|
-
* @type {ComponentProductTypeEnum}
|
|
8373
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8374
|
-
*/
|
|
8375
|
-
'relType'?: ComponentProductTypeEnum;
|
|
8376
|
-
/**
|
|
8377
|
-
*
|
|
8378
|
-
* @type {string}
|
|
8379
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8380
|
-
*/
|
|
8381
|
-
'relation'?: string;
|
|
8382
|
-
/**
|
|
8383
|
-
*
|
|
8384
|
-
* @type {Array<IProductResponse>}
|
|
8385
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8386
|
-
*/
|
|
8387
|
-
'items'?: Array<IProductResponse>;
|
|
8388
8228
|
}
|
|
8389
8229
|
/**
|
|
8390
8230
|
*
|
|
@@ -10488,13 +10328,13 @@ export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUse
|
|
|
10488
10328
|
/**
|
|
10489
10329
|
* From T, pick a set of properties whose keys are in the union K
|
|
10490
10330
|
* @export
|
|
10491
|
-
* @interface
|
|
10331
|
+
* @interface PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIpOrTitle
|
|
10492
10332
|
*/
|
|
10493
|
-
export interface
|
|
10333
|
+
export interface PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIpOrTitle {
|
|
10494
10334
|
/**
|
|
10495
10335
|
*
|
|
10496
10336
|
* @type {Array<IContactFormResponseDataInner>}
|
|
10497
|
-
* @memberof
|
|
10337
|
+
* @memberof PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIpOrTitle
|
|
10498
10338
|
*/
|
|
10499
10339
|
'data': Array<IContactFormResponseDataInner>;
|
|
10500
10340
|
}
|
|
@@ -11135,10 +10975,47 @@ export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttr
|
|
|
11135
10975
|
'reviewCount': number;
|
|
11136
10976
|
/**
|
|
11137
10977
|
*
|
|
11138
|
-
* @type {
|
|
10978
|
+
* @type {PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts}
|
|
11139
10979
|
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
11140
10980
|
*/
|
|
11141
|
-
'reviewCounts':
|
|
10981
|
+
'reviewCounts': PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts;
|
|
10982
|
+
}
|
|
10983
|
+
/**
|
|
10984
|
+
*
|
|
10985
|
+
* @export
|
|
10986
|
+
* @interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts
|
|
10987
|
+
*/
|
|
10988
|
+
export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts {
|
|
10989
|
+
/**
|
|
10990
|
+
*
|
|
10991
|
+
* @type {number}
|
|
10992
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts
|
|
10993
|
+
*/
|
|
10994
|
+
'1': number;
|
|
10995
|
+
/**
|
|
10996
|
+
*
|
|
10997
|
+
* @type {number}
|
|
10998
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts
|
|
10999
|
+
*/
|
|
11000
|
+
'2': number;
|
|
11001
|
+
/**
|
|
11002
|
+
*
|
|
11003
|
+
* @type {number}
|
|
11004
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts
|
|
11005
|
+
*/
|
|
11006
|
+
'3': number;
|
|
11007
|
+
/**
|
|
11008
|
+
*
|
|
11009
|
+
* @type {number}
|
|
11010
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts
|
|
11011
|
+
*/
|
|
11012
|
+
'4': number;
|
|
11013
|
+
/**
|
|
11014
|
+
*
|
|
11015
|
+
* @type {number}
|
|
11016
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts
|
|
11017
|
+
*/
|
|
11018
|
+
'5': number;
|
|
11142
11019
|
}
|
|
11143
11020
|
/**
|
|
11144
11021
|
* From T, pick a set of properties whose keys are in the union K
|
package/dist/api/api.js
CHANGED
|
@@ -16,10 +16,10 @@ 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.FileApiFactory = exports.FileApiFp = exports.FileApiAxiosParamCreator = exports.GetContactFormsDateFieldEnum = exports.ContactFormApi = exports.ContactFormApiFactory = exports.ContactFormApiFp = exports.ContactFormApiAxiosParamCreator = exports.GetCompanyCustomersDateFieldEnum = exports.GetCompaniesDateFieldEnum = exports.CompanyApi = exports.CompanyApiFactory = exports.CompanyApiFp = exports.CompanyApiAxiosParamCreator = exports.GetCollectionsDateFieldEnum = exports.CollectionApi = exports.CollectionApiFactory = exports.CollectionApiFp = exports.CollectionApiAxiosParamCreator = exports.GetCategoriesDateFieldEnum = exports.CategoryApi = exports.CategoryApiFactory = exports.CategoryApiFp = exports.CategoryApiAxiosParamCreator = exports.GetBrandsDateFieldEnum = exports.BrandApi = exports.BrandApiFactory = exports.BrandApiFp = exports.BrandApiAxiosParamCreator = 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.UniquePageApi = exports.UniquePageApiFactory = exports.UniquePageApiFp = exports.UniquePageApiAxiosParamCreator = exports.ThemeApi = exports.ThemeApiFactory = exports.ThemeApiFp = exports.ThemeApiAxiosParamCreator = exports.TemplateApi = exports.TemplateApiFactory = exports.TemplateApiFp = exports.TemplateApiAxiosParamCreator = exports.SitemapApi = exports.SitemapApiFactory = exports.SitemapApiFp = exports.SitemapApiAxiosParamCreator = exports.GetProductsSortEnum = exports.GetProductsDateFieldEnum = exports.ProductApi = exports.ProductApiFactory = exports.ProductApiFp = exports.ProductApiAxiosParamCreator = exports.GetPlansDateFieldEnum = exports.PlanApi = exports.PlanApiFactory = exports.PlanApiFp = exports.PlanApiAxiosParamCreator = exports.GetPagesDateFieldEnum = exports.PageApi = exports.PageApiFactory = exports.PageApiFp = exports.PageApiAxiosParamCreator = exports.GetOrdersDateFieldEnum = exports.GetMyOrdersDateFieldEnum = exports.OrderApi = exports.OrderApiFactory = exports.OrderApiFp = exports.OrderApiAxiosParamCreator = exports.GetOperationsDateFieldEnum = exports.OperationApi = exports.OperationApiFactory = exports.OperationApiFp = exports.OperationApiAxiosParamCreator = exports.GetNotificationsDateFieldEnum = exports.NotificationApi = exports.NotificationApiFactory = exports.NotificationApiFp =
|
|
22
|
-
exports.GetUsersDateFieldEnum = exports.UserApi = exports.UserApiFactory =
|
|
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.NotificationApiAxiosParamCreator = exports.GetFilesDateFieldEnum = exports.FileApi = exports.FileApiFactory = exports.FileApiFp = exports.FileApiAxiosParamCreator = exports.GetContactFormsDateFieldEnum = exports.ContactFormApi = exports.ContactFormApiFactory = exports.ContactFormApiFp = exports.ContactFormApiAxiosParamCreator = exports.GetCompanyCustomersDateFieldEnum = exports.GetCompaniesDateFieldEnum = exports.CompanyApi = exports.CompanyApiFactory = exports.CompanyApiFp = exports.CompanyApiAxiosParamCreator = exports.GetCollectionsDateFieldEnum = exports.CollectionApi = exports.CollectionApiFactory = exports.CollectionApiFp = exports.CollectionApiAxiosParamCreator = exports.GetCategoriesDateFieldEnum = exports.CategoryApi = exports.CategoryApiFactory = exports.CategoryApiFp = exports.CategoryApiAxiosParamCreator = exports.GetBrandsDateFieldEnum = exports.BrandApi = exports.BrandApiFactory = exports.BrandApiFp = exports.BrandApiAxiosParamCreator = 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.UserApiFp = exports.UserApiAxiosParamCreator = exports.GetUniquePagesDateFieldEnum = exports.UniquePageApi = exports.UniquePageApiFactory = exports.UniquePageApiFp = exports.UniquePageApiAxiosParamCreator = exports.ThemeApi = exports.ThemeApiFactory = exports.ThemeApiFp = exports.ThemeApiAxiosParamCreator = exports.TemplateApi = exports.TemplateApiFactory = exports.TemplateApiFp = exports.TemplateApiAxiosParamCreator = exports.SitemapApi = exports.SitemapApiFactory = exports.SitemapApiFp = exports.SitemapApiAxiosParamCreator = exports.GetProductsSortEnum = exports.GetProductsDateFieldEnum = exports.ProductApi = exports.ProductApiFactory = exports.ProductApiFp = exports.ProductApiAxiosParamCreator = exports.GetPlansDateFieldEnum = exports.PlanApi = exports.PlanApiFactory = exports.PlanApiFp = exports.PlanApiAxiosParamCreator = exports.GetPagesDateFieldEnum = exports.PageApi = exports.PageApiFactory = exports.PageApiFp = exports.PageApiAxiosParamCreator = exports.GetOrdersDateFieldEnum = exports.GetMyOrdersDateFieldEnum = exports.OrderApi = exports.OrderApiFactory = exports.OrderApiFp = exports.OrderApiAxiosParamCreator = exports.GetOperationsDateFieldEnum = exports.OperationApi = exports.OperationApiFactory = exports.OperationApiFp = exports.OperationApiAxiosParamCreator = exports.GetNotificationsDateFieldEnum = exports.NotificationApi = exports.NotificationApiFactory = exports.NotificationApiFp = void 0;
|
|
22
|
+
exports.GetUsersDateFieldEnum = exports.UserApi = exports.UserApiFactory = void 0;
|
|
23
23
|
const axios_1 = __importDefault(require("axios"));
|
|
24
24
|
// Some imports not used depending on template conditions
|
|
25
25
|
// @ts-ignore
|
|
@@ -57,34 +57,6 @@ exports.CompanyUserStatusEnum = {
|
|
|
57
57
|
UNEMPLOYED: 'unemployed',
|
|
58
58
|
DELETED: 'deleted'
|
|
59
59
|
};
|
|
60
|
-
/**
|
|
61
|
-
*
|
|
62
|
-
* @export
|
|
63
|
-
* @enum {string}
|
|
64
|
-
*/
|
|
65
|
-
exports.ComponentProductListTypeEnum = {
|
|
66
|
-
GRID: 'grid',
|
|
67
|
-
CAROUSEL: 'carousel'
|
|
68
|
-
};
|
|
69
|
-
/**
|
|
70
|
-
*
|
|
71
|
-
* @export
|
|
72
|
-
* @enum {string}
|
|
73
|
-
*/
|
|
74
|
-
exports.ComponentProductOrderEnum = {
|
|
75
|
-
NEWEST: 'newest',
|
|
76
|
-
BEST_SELLING: 'best_selling'
|
|
77
|
-
};
|
|
78
|
-
/**
|
|
79
|
-
*
|
|
80
|
-
* @export
|
|
81
|
-
* @enum {string}
|
|
82
|
-
*/
|
|
83
|
-
exports.ComponentProductTypeEnum = {
|
|
84
|
-
CATEGORY: 'category',
|
|
85
|
-
COLLECTION: 'collection',
|
|
86
|
-
BRAND: 'brand'
|
|
87
|
-
};
|
|
88
60
|
/**
|
|
89
61
|
*
|
|
90
62
|
* @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",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.18",
|
|
4
4
|
"description": "api-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
|
}
|