@infisale-client/api-client 1.3.16 → 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 +68 -208
- 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
|
|
@@ -4255,22 +4224,16 @@ export type IContactFormCollectionQueryParamsDateFieldEnum = typeof IContactForm
|
|
|
4255
4224
|
export interface IContactFormPostRequest {
|
|
4256
4225
|
/**
|
|
4257
4226
|
*
|
|
4258
|
-
* @type {
|
|
4259
|
-
* @memberof IContactFormPostRequest
|
|
4260
|
-
*/
|
|
4261
|
-
'name'?: string;
|
|
4262
|
-
/**
|
|
4263
|
-
*
|
|
4264
|
-
* @type {string}
|
|
4227
|
+
* @type {Array<IContactFormResponseDataInner>}
|
|
4265
4228
|
* @memberof IContactFormPostRequest
|
|
4266
4229
|
*/
|
|
4267
|
-
'
|
|
4230
|
+
'data': Array<IContactFormResponseDataInner>;
|
|
4268
4231
|
/**
|
|
4269
4232
|
*
|
|
4270
4233
|
* @type {string}
|
|
4271
4234
|
* @memberof IContactFormPostRequest
|
|
4272
4235
|
*/
|
|
4273
|
-
'
|
|
4236
|
+
'title'?: string;
|
|
4274
4237
|
/**
|
|
4275
4238
|
*
|
|
4276
4239
|
* @type {string}
|
|
@@ -4319,25 +4282,38 @@ export interface IContactFormResponse {
|
|
|
4319
4282
|
* @type {string}
|
|
4320
4283
|
* @memberof IContactFormResponse
|
|
4321
4284
|
*/
|
|
4322
|
-
'
|
|
4285
|
+
'ip': string;
|
|
4323
4286
|
/**
|
|
4324
4287
|
*
|
|
4325
4288
|
* @type {string}
|
|
4326
4289
|
* @memberof IContactFormResponse
|
|
4327
4290
|
*/
|
|
4328
|
-
'
|
|
4291
|
+
'title': string;
|
|
4329
4292
|
/**
|
|
4330
4293
|
*
|
|
4331
|
-
* @type {
|
|
4294
|
+
* @type {Array<IContactFormResponseDataInner>}
|
|
4332
4295
|
* @memberof IContactFormResponse
|
|
4333
4296
|
*/
|
|
4334
|
-
'
|
|
4297
|
+
'data': Array<IContactFormResponseDataInner>;
|
|
4298
|
+
}
|
|
4299
|
+
/**
|
|
4300
|
+
*
|
|
4301
|
+
* @export
|
|
4302
|
+
* @interface IContactFormResponseDataInner
|
|
4303
|
+
*/
|
|
4304
|
+
export interface IContactFormResponseDataInner {
|
|
4335
4305
|
/**
|
|
4336
4306
|
*
|
|
4337
4307
|
* @type {string}
|
|
4338
|
-
* @memberof
|
|
4308
|
+
* @memberof IContactFormResponseDataInner
|
|
4339
4309
|
*/
|
|
4340
|
-
'
|
|
4310
|
+
'value': string;
|
|
4311
|
+
/**
|
|
4312
|
+
*
|
|
4313
|
+
* @type {string}
|
|
4314
|
+
* @memberof IContactFormResponseDataInner
|
|
4315
|
+
*/
|
|
4316
|
+
'key': string;
|
|
4341
4317
|
}
|
|
4342
4318
|
/**
|
|
4343
4319
|
*
|
|
@@ -7464,10 +7440,10 @@ export interface IProductResponse {
|
|
|
7464
7440
|
'reviewCount': number;
|
|
7465
7441
|
/**
|
|
7466
7442
|
*
|
|
7467
|
-
* @type {
|
|
7443
|
+
* @type {PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts}
|
|
7468
7444
|
* @memberof IProductResponse
|
|
7469
7445
|
*/
|
|
7470
|
-
'reviewCounts':
|
|
7446
|
+
'reviewCounts': PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts;
|
|
7471
7447
|
/**
|
|
7472
7448
|
*
|
|
7473
7449
|
* @type {ContentStatusEnum}
|
|
@@ -7535,43 +7511,6 @@ export interface IProductResponse {
|
|
|
7535
7511
|
*/
|
|
7536
7512
|
'template': ITemplateResponse;
|
|
7537
7513
|
}
|
|
7538
|
-
/**
|
|
7539
|
-
*
|
|
7540
|
-
* @export
|
|
7541
|
-
* @interface IProductResponseReviewCounts
|
|
7542
|
-
*/
|
|
7543
|
-
export interface IProductResponseReviewCounts {
|
|
7544
|
-
/**
|
|
7545
|
-
*
|
|
7546
|
-
* @type {number}
|
|
7547
|
-
* @memberof IProductResponseReviewCounts
|
|
7548
|
-
*/
|
|
7549
|
-
'1': number;
|
|
7550
|
-
/**
|
|
7551
|
-
*
|
|
7552
|
-
* @type {number}
|
|
7553
|
-
* @memberof IProductResponseReviewCounts
|
|
7554
|
-
*/
|
|
7555
|
-
'2': number;
|
|
7556
|
-
/**
|
|
7557
|
-
*
|
|
7558
|
-
* @type {number}
|
|
7559
|
-
* @memberof IProductResponseReviewCounts
|
|
7560
|
-
*/
|
|
7561
|
-
'3': number;
|
|
7562
|
-
/**
|
|
7563
|
-
*
|
|
7564
|
-
* @type {number}
|
|
7565
|
-
* @memberof IProductResponseReviewCounts
|
|
7566
|
-
*/
|
|
7567
|
-
'4': number;
|
|
7568
|
-
/**
|
|
7569
|
-
*
|
|
7570
|
-
* @type {number}
|
|
7571
|
-
* @memberof IProductResponseReviewCounts
|
|
7572
|
-
*/
|
|
7573
|
-
'5': number;
|
|
7574
|
-
}
|
|
7575
7514
|
/**
|
|
7576
7515
|
*
|
|
7577
7516
|
* @export
|
|
@@ -8273,110 +8212,6 @@ export interface ITemplateComponentResponse {
|
|
|
8273
8212
|
* @memberof ITemplateComponentResponse
|
|
8274
8213
|
*/
|
|
8275
8214
|
'contents': Array<ITemplateComponentContentResponse>;
|
|
8276
|
-
/**
|
|
8277
|
-
*
|
|
8278
|
-
* @type {ITemplateComponentResponseProducts}
|
|
8279
|
-
* @memberof ITemplateComponentResponse
|
|
8280
|
-
*/
|
|
8281
|
-
'products'?: ITemplateComponentResponseProducts;
|
|
8282
|
-
/**
|
|
8283
|
-
*
|
|
8284
|
-
* @type {Array<ICategoryResponse>}
|
|
8285
|
-
* @memberof ITemplateComponentResponse
|
|
8286
|
-
*/
|
|
8287
|
-
'categories'?: Array<ICategoryResponse>;
|
|
8288
|
-
/**
|
|
8289
|
-
*
|
|
8290
|
-
* @type {Array<IBrandResponse>}
|
|
8291
|
-
* @memberof ITemplateComponentResponse
|
|
8292
|
-
*/
|
|
8293
|
-
'brands'?: Array<IBrandResponse>;
|
|
8294
|
-
/**
|
|
8295
|
-
*
|
|
8296
|
-
* @type {Array<ICollectionResponse>}
|
|
8297
|
-
* @memberof ITemplateComponentResponse
|
|
8298
|
-
*/
|
|
8299
|
-
'collections'?: Array<ICollectionResponse>;
|
|
8300
|
-
/**
|
|
8301
|
-
*
|
|
8302
|
-
* @type {ITemplateComponentResponsePages}
|
|
8303
|
-
* @memberof ITemplateComponentResponse
|
|
8304
|
-
*/
|
|
8305
|
-
'pages'?: ITemplateComponentResponsePages;
|
|
8306
|
-
}
|
|
8307
|
-
/**
|
|
8308
|
-
*
|
|
8309
|
-
* @export
|
|
8310
|
-
* @interface ITemplateComponentResponsePages
|
|
8311
|
-
*/
|
|
8312
|
-
export interface ITemplateComponentResponsePages {
|
|
8313
|
-
/**
|
|
8314
|
-
*
|
|
8315
|
-
* @type {number}
|
|
8316
|
-
* @memberof ITemplateComponentResponsePages
|
|
8317
|
-
*/
|
|
8318
|
-
'limit'?: number;
|
|
8319
|
-
/**
|
|
8320
|
-
*
|
|
8321
|
-
* @type {Array<IPageResponse>}
|
|
8322
|
-
* @memberof ITemplateComponentResponsePages
|
|
8323
|
-
*/
|
|
8324
|
-
'list'?: Array<IPageResponse>;
|
|
8325
|
-
/**
|
|
8326
|
-
*
|
|
8327
|
-
* @type {Array<IPageResponse>}
|
|
8328
|
-
* @memberof ITemplateComponentResponsePages
|
|
8329
|
-
*/
|
|
8330
|
-
'items'?: Array<IPageResponse>;
|
|
8331
|
-
}
|
|
8332
|
-
/**
|
|
8333
|
-
*
|
|
8334
|
-
* @export
|
|
8335
|
-
* @interface ITemplateComponentResponseProducts
|
|
8336
|
-
*/
|
|
8337
|
-
export interface ITemplateComponentResponseProducts {
|
|
8338
|
-
/**
|
|
8339
|
-
*
|
|
8340
|
-
* @type {Array<IProductResponse>}
|
|
8341
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8342
|
-
*/
|
|
8343
|
-
'list'?: Array<IProductResponse>;
|
|
8344
|
-
/**
|
|
8345
|
-
*
|
|
8346
|
-
* @type {number}
|
|
8347
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8348
|
-
*/
|
|
8349
|
-
'limit'?: number;
|
|
8350
|
-
/**
|
|
8351
|
-
*
|
|
8352
|
-
* @type {ComponentProductListTypeEnum}
|
|
8353
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8354
|
-
*/
|
|
8355
|
-
'listType': ComponentProductListTypeEnum;
|
|
8356
|
-
/**
|
|
8357
|
-
*
|
|
8358
|
-
* @type {ComponentProductOrderEnum}
|
|
8359
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8360
|
-
*/
|
|
8361
|
-
'order'?: ComponentProductOrderEnum;
|
|
8362
|
-
/**
|
|
8363
|
-
*
|
|
8364
|
-
* @type {ComponentProductTypeEnum}
|
|
8365
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8366
|
-
*/
|
|
8367
|
-
'relType'?: ComponentProductTypeEnum;
|
|
8368
|
-
/**
|
|
8369
|
-
*
|
|
8370
|
-
* @type {string}
|
|
8371
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8372
|
-
*/
|
|
8373
|
-
'relation'?: string;
|
|
8374
|
-
/**
|
|
8375
|
-
*
|
|
8376
|
-
* @type {Array<IProductResponse>}
|
|
8377
|
-
* @memberof ITemplateComponentResponseProducts
|
|
8378
|
-
*/
|
|
8379
|
-
'items'?: Array<IProductResponse>;
|
|
8380
8215
|
}
|
|
8381
8216
|
/**
|
|
8382
8217
|
*
|
|
@@ -10480,27 +10315,15 @@ export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUse
|
|
|
10480
10315
|
/**
|
|
10481
10316
|
* From T, pick a set of properties whose keys are in the union K
|
|
10482
10317
|
* @export
|
|
10483
|
-
* @interface
|
|
10318
|
+
* @interface PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIpOrTitle
|
|
10484
10319
|
*/
|
|
10485
|
-
export interface
|
|
10486
|
-
/**
|
|
10487
|
-
*
|
|
10488
|
-
* @type {string}
|
|
10489
|
-
* @memberof PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIp
|
|
10490
|
-
*/
|
|
10491
|
-
'name'?: string;
|
|
10492
|
-
/**
|
|
10493
|
-
*
|
|
10494
|
-
* @type {string}
|
|
10495
|
-
* @memberof PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIp
|
|
10496
|
-
*/
|
|
10497
|
-
'email': string;
|
|
10320
|
+
export interface PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIpOrTitle {
|
|
10498
10321
|
/**
|
|
10499
10322
|
*
|
|
10500
|
-
* @type {
|
|
10501
|
-
* @memberof
|
|
10323
|
+
* @type {Array<IContactFormResponseDataInner>}
|
|
10324
|
+
* @memberof PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIpOrTitle
|
|
10502
10325
|
*/
|
|
10503
|
-
'
|
|
10326
|
+
'data': Array<IContactFormResponseDataInner>;
|
|
10504
10327
|
}
|
|
10505
10328
|
/**
|
|
10506
10329
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -11139,10 +10962,47 @@ export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttr
|
|
|
11139
10962
|
'reviewCount': number;
|
|
11140
10963
|
/**
|
|
11141
10964
|
*
|
|
11142
|
-
* @type {
|
|
10965
|
+
* @type {PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts}
|
|
11143
10966
|
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
11144
10967
|
*/
|
|
11145
|
-
'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;
|
|
11146
11006
|
}
|
|
11147
11007
|
/**
|
|
11148
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
|
}
|