@infisale-client/api-client 1.2.70 → 1.2.71
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 +143 -29
- package/dist/api/api.js +59 -24
- package/dist/api/api.mjs +56 -21
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -145,6 +145,7 @@ export declare const ComponentTypeEnum: {
|
|
|
145
145
|
readonly CART_DETAIL: "cart-detail";
|
|
146
146
|
readonly CHECKOUT_DETAIL: "checkout-detail";
|
|
147
147
|
readonly NOT_FOUND_DETAIL: "not-found-detail";
|
|
148
|
+
readonly SEARCH_DETAIL: "search-detail";
|
|
148
149
|
};
|
|
149
150
|
export type ComponentTypeEnum = typeof ComponentTypeEnum[keyof typeof ComponentTypeEnum];
|
|
150
151
|
/**
|
|
@@ -6175,37 +6176,55 @@ export interface IProductCollectionQueryParams {
|
|
|
6175
6176
|
* @type {string}
|
|
6176
6177
|
* @memberof IProductCollectionQueryParams
|
|
6177
6178
|
*/
|
|
6178
|
-
'
|
|
6179
|
+
'companyId'?: string;
|
|
6179
6180
|
/**
|
|
6180
6181
|
*
|
|
6181
6182
|
* @type {string}
|
|
6182
6183
|
* @memberof IProductCollectionQueryParams
|
|
6183
6184
|
*/
|
|
6184
|
-
'
|
|
6185
|
+
'domain'?: string;
|
|
6185
6186
|
/**
|
|
6186
6187
|
*
|
|
6187
|
-
* @type {string}
|
|
6188
|
+
* @type {Array<string>}
|
|
6188
6189
|
* @memberof IProductCollectionQueryParams
|
|
6189
6190
|
*/
|
|
6190
|
-
'
|
|
6191
|
+
'collections'?: Array<string>;
|
|
6191
6192
|
/**
|
|
6192
6193
|
*
|
|
6193
|
-
* @type {string}
|
|
6194
|
+
* @type {Array<string>}
|
|
6194
6195
|
* @memberof IProductCollectionQueryParams
|
|
6195
6196
|
*/
|
|
6196
|
-
'
|
|
6197
|
+
'category'?: Array<string>;
|
|
6197
6198
|
/**
|
|
6198
6199
|
*
|
|
6199
|
-
* @type {string}
|
|
6200
|
+
* @type {Array<string>}
|
|
6200
6201
|
* @memberof IProductCollectionQueryParams
|
|
6201
6202
|
*/
|
|
6202
|
-
'
|
|
6203
|
+
'brand'?: Array<string>;
|
|
6204
|
+
/**
|
|
6205
|
+
*
|
|
6206
|
+
* @type {boolean}
|
|
6207
|
+
* @memberof IProductCollectionQueryParams
|
|
6208
|
+
*/
|
|
6209
|
+
'inStock'?: boolean;
|
|
6210
|
+
/**
|
|
6211
|
+
*
|
|
6212
|
+
* @type {number}
|
|
6213
|
+
* @memberof IProductCollectionQueryParams
|
|
6214
|
+
*/
|
|
6215
|
+
'priceGte'?: number;
|
|
6216
|
+
/**
|
|
6217
|
+
*
|
|
6218
|
+
* @type {number}
|
|
6219
|
+
* @memberof IProductCollectionQueryParams
|
|
6220
|
+
*/
|
|
6221
|
+
'priceLte'?: number;
|
|
6203
6222
|
/**
|
|
6204
6223
|
*
|
|
6205
6224
|
* @type {string}
|
|
6206
6225
|
* @memberof IProductCollectionQueryParams
|
|
6207
6226
|
*/
|
|
6208
|
-
'
|
|
6227
|
+
'sort'?: IProductCollectionQueryParamsSortEnum;
|
|
6209
6228
|
/**
|
|
6210
6229
|
*
|
|
6211
6230
|
* @type {ContentStatusEnum}
|
|
@@ -6218,6 +6237,12 @@ export declare const IProductCollectionQueryParamsDateFieldEnum: {
|
|
|
6218
6237
|
readonly UPDATED_AT: "updatedAt";
|
|
6219
6238
|
};
|
|
6220
6239
|
export type IProductCollectionQueryParamsDateFieldEnum = typeof IProductCollectionQueryParamsDateFieldEnum[keyof typeof IProductCollectionQueryParamsDateFieldEnum];
|
|
6240
|
+
export declare const IProductCollectionQueryParamsSortEnum: {
|
|
6241
|
+
readonly PRICE: "price";
|
|
6242
|
+
readonly CREATED_AT: "createdAt";
|
|
6243
|
+
readonly TOTAL_SALE: "totalSale";
|
|
6244
|
+
};
|
|
6245
|
+
export type IProductCollectionQueryParamsSortEnum = typeof IProductCollectionQueryParamsSortEnum[keyof typeof IProductCollectionQueryParamsSortEnum];
|
|
6221
6246
|
/**
|
|
6222
6247
|
*
|
|
6223
6248
|
* @export
|
|
@@ -8162,6 +8187,7 @@ export declare const PageTypeEnum: {
|
|
|
8162
8187
|
readonly HOME: "home";
|
|
8163
8188
|
readonly CART: "cart";
|
|
8164
8189
|
readonly CHECKOUT: "checkout";
|
|
8190
|
+
readonly SEARCH: "search";
|
|
8165
8191
|
readonly NOT_FOUND: "not-found";
|
|
8166
8192
|
};
|
|
8167
8193
|
export type PageTypeEnum = typeof PageTypeEnum[keyof typeof PageTypeEnum];
|
|
@@ -8479,6 +8505,60 @@ export interface PickICategoryResponseIdOrContentsOrAttributes {
|
|
|
8479
8505
|
*/
|
|
8480
8506
|
'attributes': Array<ICategoryResponseAttributesInner>;
|
|
8481
8507
|
}
|
|
8508
|
+
/**
|
|
8509
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
8510
|
+
* @export
|
|
8511
|
+
* @interface PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
8512
|
+
*/
|
|
8513
|
+
export interface PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort {
|
|
8514
|
+
/**
|
|
8515
|
+
*
|
|
8516
|
+
* @type {number}
|
|
8517
|
+
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
8518
|
+
*/
|
|
8519
|
+
'page'?: number;
|
|
8520
|
+
/**
|
|
8521
|
+
*
|
|
8522
|
+
* @type {number}
|
|
8523
|
+
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
8524
|
+
*/
|
|
8525
|
+
'itemsPerPage'?: number;
|
|
8526
|
+
/**
|
|
8527
|
+
*
|
|
8528
|
+
* @type {string}
|
|
8529
|
+
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
8530
|
+
*/
|
|
8531
|
+
'search'?: string;
|
|
8532
|
+
/**
|
|
8533
|
+
*
|
|
8534
|
+
* @type {string}
|
|
8535
|
+
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
8536
|
+
*/
|
|
8537
|
+
'startDate'?: string;
|
|
8538
|
+
/**
|
|
8539
|
+
*
|
|
8540
|
+
* @type {string}
|
|
8541
|
+
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
8542
|
+
*/
|
|
8543
|
+
'endDate'?: string;
|
|
8544
|
+
/**
|
|
8545
|
+
*
|
|
8546
|
+
* @type {string}
|
|
8547
|
+
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
8548
|
+
*/
|
|
8549
|
+
'dateField'?: PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum;
|
|
8550
|
+
/**
|
|
8551
|
+
*
|
|
8552
|
+
* @type {OrderEnum}
|
|
8553
|
+
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
8554
|
+
*/
|
|
8555
|
+
'order'?: OrderEnum;
|
|
8556
|
+
}
|
|
8557
|
+
export declare const PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum: {
|
|
8558
|
+
readonly CREATED_AT: "createdAt";
|
|
8559
|
+
readonly UPDATED_AT: "updatedAt";
|
|
8560
|
+
};
|
|
8561
|
+
export type PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum = typeof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum[keyof typeof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum];
|
|
8482
8562
|
/**
|
|
8483
8563
|
* From T, pick a set of properties whose keys are in the union K
|
|
8484
8564
|
* @export
|
|
@@ -10457,6 +10537,7 @@ export declare const TemplateTypeEnum: {
|
|
|
10457
10537
|
readonly CHECKOUT: "checkout";
|
|
10458
10538
|
readonly NOT_FOUND: "not-found";
|
|
10459
10539
|
readonly BLOG: "blog";
|
|
10540
|
+
readonly SEARCH: "search";
|
|
10460
10541
|
};
|
|
10461
10542
|
export type TemplateTypeEnum = typeof TemplateTypeEnum[keyof typeof TemplateTypeEnum];
|
|
10462
10543
|
/**
|
|
@@ -12433,17 +12514,20 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
|
|
|
12433
12514
|
* @param {string} [endDate]
|
|
12434
12515
|
* @param {GetProductsDateFieldEnum} [dateField]
|
|
12435
12516
|
* @param {OrderEnum} [order]
|
|
12436
|
-
* @param {string} [sort]
|
|
12437
12517
|
* @param {string} [companyId]
|
|
12438
12518
|
* @param {string} [domain]
|
|
12439
|
-
* @param {string} [collections]
|
|
12440
|
-
* @param {string} [category]
|
|
12441
|
-
* @param {string} [brand]
|
|
12519
|
+
* @param {Array<string>} [collections]
|
|
12520
|
+
* @param {Array<string>} [category]
|
|
12521
|
+
* @param {Array<string>} [brand]
|
|
12522
|
+
* @param {boolean} [inStock]
|
|
12523
|
+
* @param {number} [priceGte]
|
|
12524
|
+
* @param {number} [priceLte]
|
|
12525
|
+
* @param {GetProductsSortEnum} [sort]
|
|
12442
12526
|
* @param {ContentStatusEnum} [status]
|
|
12443
12527
|
* @param {*} [options] Override http request option.
|
|
12444
12528
|
* @throws {RequiredError}
|
|
12445
12529
|
*/
|
|
12446
|
-
getProducts: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetProductsDateFieldEnum, order?: OrderEnum,
|
|
12530
|
+
getProducts: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetProductsDateFieldEnum, order?: OrderEnum, companyId?: string, domain?: string, collections?: Array<string>, category?: Array<string>, brand?: Array<string>, inStock?: boolean, priceGte?: number, priceLte?: number, sort?: GetProductsSortEnum, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12447
12531
|
/**
|
|
12448
12532
|
*
|
|
12449
12533
|
* @param {string} search
|
|
@@ -12477,17 +12561,20 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
|
|
|
12477
12561
|
* @param {string} [endDate]
|
|
12478
12562
|
* @param {GetProductsDateFieldEnum} [dateField]
|
|
12479
12563
|
* @param {OrderEnum} [order]
|
|
12480
|
-
* @param {string} [sort]
|
|
12481
12564
|
* @param {string} [companyId]
|
|
12482
12565
|
* @param {string} [domain]
|
|
12483
|
-
* @param {string} [collections]
|
|
12484
|
-
* @param {string} [category]
|
|
12485
|
-
* @param {string} [brand]
|
|
12566
|
+
* @param {Array<string>} [collections]
|
|
12567
|
+
* @param {Array<string>} [category]
|
|
12568
|
+
* @param {Array<string>} [brand]
|
|
12569
|
+
* @param {boolean} [inStock]
|
|
12570
|
+
* @param {number} [priceGte]
|
|
12571
|
+
* @param {number} [priceLte]
|
|
12572
|
+
* @param {GetProductsSortEnum} [sort]
|
|
12486
12573
|
* @param {ContentStatusEnum} [status]
|
|
12487
12574
|
* @param {*} [options] Override http request option.
|
|
12488
12575
|
* @throws {RequiredError}
|
|
12489
12576
|
*/
|
|
12490
|
-
getProducts(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetProductsDateFieldEnum, order?: OrderEnum,
|
|
12577
|
+
getProducts(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetProductsDateFieldEnum, order?: OrderEnum, companyId?: string, domain?: string, collections?: Array<string>, category?: Array<string>, brand?: Array<string>, inStock?: boolean, priceGte?: number, priceLte?: number, sort?: GetProductsSortEnum, status?: ContentStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IProductsResponse>>;
|
|
12491
12578
|
/**
|
|
12492
12579
|
*
|
|
12493
12580
|
* @param {string} search
|
|
@@ -12603,37 +12690,55 @@ export interface ProductApiGetProductsRequest {
|
|
|
12603
12690
|
* @type {string}
|
|
12604
12691
|
* @memberof ProductApiGetProducts
|
|
12605
12692
|
*/
|
|
12606
|
-
readonly
|
|
12693
|
+
readonly companyId?: string;
|
|
12607
12694
|
/**
|
|
12608
12695
|
*
|
|
12609
12696
|
* @type {string}
|
|
12610
12697
|
* @memberof ProductApiGetProducts
|
|
12611
12698
|
*/
|
|
12612
|
-
readonly
|
|
12699
|
+
readonly domain?: string;
|
|
12613
12700
|
/**
|
|
12614
12701
|
*
|
|
12615
|
-
* @type {string}
|
|
12702
|
+
* @type {Array<string>}
|
|
12616
12703
|
* @memberof ProductApiGetProducts
|
|
12617
12704
|
*/
|
|
12618
|
-
readonly
|
|
12705
|
+
readonly collections?: Array<string>;
|
|
12619
12706
|
/**
|
|
12620
12707
|
*
|
|
12621
|
-
* @type {string}
|
|
12708
|
+
* @type {Array<string>}
|
|
12622
12709
|
* @memberof ProductApiGetProducts
|
|
12623
12710
|
*/
|
|
12624
|
-
readonly
|
|
12711
|
+
readonly category?: Array<string>;
|
|
12625
12712
|
/**
|
|
12626
12713
|
*
|
|
12627
|
-
* @type {string}
|
|
12714
|
+
* @type {Array<string>}
|
|
12628
12715
|
* @memberof ProductApiGetProducts
|
|
12629
12716
|
*/
|
|
12630
|
-
readonly
|
|
12717
|
+
readonly brand?: Array<string>;
|
|
12631
12718
|
/**
|
|
12632
12719
|
*
|
|
12633
|
-
* @type {
|
|
12720
|
+
* @type {boolean}
|
|
12634
12721
|
* @memberof ProductApiGetProducts
|
|
12635
12722
|
*/
|
|
12636
|
-
readonly
|
|
12723
|
+
readonly inStock?: boolean;
|
|
12724
|
+
/**
|
|
12725
|
+
*
|
|
12726
|
+
* @type {number}
|
|
12727
|
+
* @memberof ProductApiGetProducts
|
|
12728
|
+
*/
|
|
12729
|
+
readonly priceGte?: number;
|
|
12730
|
+
/**
|
|
12731
|
+
*
|
|
12732
|
+
* @type {number}
|
|
12733
|
+
* @memberof ProductApiGetProducts
|
|
12734
|
+
*/
|
|
12735
|
+
readonly priceLte?: number;
|
|
12736
|
+
/**
|
|
12737
|
+
*
|
|
12738
|
+
* @type {'price' | 'createdAt' | 'totalSale'}
|
|
12739
|
+
* @memberof ProductApiGetProducts
|
|
12740
|
+
*/
|
|
12741
|
+
readonly sort?: GetProductsSortEnum;
|
|
12637
12742
|
/**
|
|
12638
12743
|
*
|
|
12639
12744
|
* @type {ContentStatusEnum}
|
|
@@ -12706,6 +12811,15 @@ export declare const GetProductsDateFieldEnum: {
|
|
|
12706
12811
|
readonly UPDATED_AT: "updatedAt";
|
|
12707
12812
|
};
|
|
12708
12813
|
export type GetProductsDateFieldEnum = typeof GetProductsDateFieldEnum[keyof typeof GetProductsDateFieldEnum];
|
|
12814
|
+
/**
|
|
12815
|
+
* @export
|
|
12816
|
+
*/
|
|
12817
|
+
export declare const GetProductsSortEnum: {
|
|
12818
|
+
readonly PRICE: "price";
|
|
12819
|
+
readonly CREATED_AT: "createdAt";
|
|
12820
|
+
readonly TOTAL_SALE: "totalSale";
|
|
12821
|
+
};
|
|
12822
|
+
export type GetProductsSortEnum = typeof GetProductsSortEnum[keyof typeof GetProductsSortEnum];
|
|
12709
12823
|
/**
|
|
12710
12824
|
* SitemapApi - axios parameter creator
|
|
12711
12825
|
* @export
|
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.
|
|
20
|
-
exports.
|
|
21
|
-
exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.SitemapApi = exports.SitemapApiFactory = exports.SitemapApiFp = exports.SitemapApiAxiosParamCreator = exports.GetProductsDateFieldEnum = void 0;
|
|
19
|
+
exports.PaymentGatewayEnum = exports.PageTypeEnum = 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.IProductCollectionQueryParamsSortEnum = exports.IProductCollectionQueryParamsDateFieldEnum = exports.IPlanCollectionQueryParamsDateFieldEnum = exports.IPageCollectionQueryParamsDateFieldEnum = exports.IOrderCollectionQueryParamsDateFieldEnum = exports.IOperationCollectionQueryParamsDateFieldEnum = exports.INotificationCollectionQueryParamsDateFieldEnum = exports.IMyOrderCollectionQueryParamsDateFieldEnum = exports.IFileCollectionQueryParamsDateFieldEnum = exports.IContactFormCollectionQueryParamsDateFieldEnum = exports.ICompanyUsersCollectionQueryParamsDateFieldEnum = exports.ICompanyCollectionQueryParamsDateFieldEnum = exports.ICollectionCollectionsQueryParamsDateFieldEnum = exports.ICategoryCollectionQueryParamsDateFieldEnum = exports.IBrandCollectionQueryParamsDateFieldEnum = exports.FontSizeEnum = exports.FileTypeEnum = exports.FileStatusEnum = exports.FileKeywordEnum = exports.EmailConfigDnsRecordTypeEnum = exports.CurrencyRateTypeEnum = exports.CurrencyEnum = exports.CountryEnum = exports.ContentStatusEnum = exports.ContentPositionYEnum = exports.ContentPositionXEnum = exports.ComponentTypeEnum = exports.ComponentProductTypeEnum = exports.ComponentProductOrderEnum = exports.ComponentProductListTypeEnum = exports.ComponentContentTypeEnum = exports.CompanyUserStatusEnum = exports.CompanyTypeEnum = exports.CompanyStatusEnum = exports.ButtonVariantEnum = void 0;
|
|
20
|
+
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.TemplateTypeEnum = exports.SitemapTypeEnum = exports.ShippingPricingTypeEnum = exports.ProductDetailImageZoomTypeEnum = exports.PlanTypeEnum = exports.PlanStatusEnum = exports.PlanCurrencyEnum = exports.PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum = exports.PaymentMethodEnum = void 0;
|
|
21
|
+
exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.SitemapApi = exports.SitemapApiFactory = exports.SitemapApiFp = exports.SitemapApiAxiosParamCreator = exports.GetProductsSortEnum = exports.GetProductsDateFieldEnum = exports.ProductApi = exports.ProductApiFactory = void 0;
|
|
22
22
|
const axios_1 = __importDefault(require("axios"));
|
|
23
23
|
// Some imports not used depending on template conditions
|
|
24
24
|
// @ts-ignore
|
|
@@ -148,7 +148,8 @@ exports.ComponentTypeEnum = {
|
|
|
148
148
|
CONTACT_FORM: 'contact-form',
|
|
149
149
|
CART_DETAIL: 'cart-detail',
|
|
150
150
|
CHECKOUT_DETAIL: 'checkout-detail',
|
|
151
|
-
NOT_FOUND_DETAIL: 'not-found-detail'
|
|
151
|
+
NOT_FOUND_DETAIL: 'not-found-detail',
|
|
152
|
+
SEARCH_DETAIL: 'search-detail'
|
|
152
153
|
};
|
|
153
154
|
/**
|
|
154
155
|
*
|
|
@@ -569,6 +570,11 @@ exports.IProductCollectionQueryParamsDateFieldEnum = {
|
|
|
569
570
|
CREATED_AT: 'createdAt',
|
|
570
571
|
UPDATED_AT: 'updatedAt'
|
|
571
572
|
};
|
|
573
|
+
exports.IProductCollectionQueryParamsSortEnum = {
|
|
574
|
+
PRICE: 'price',
|
|
575
|
+
CREATED_AT: 'createdAt',
|
|
576
|
+
TOTAL_SALE: 'totalSale'
|
|
577
|
+
};
|
|
572
578
|
exports.IUserCollectionQueryParamsDateFieldEnum = {
|
|
573
579
|
CREATED_AT: 'createdAt',
|
|
574
580
|
UPDATED_AT: 'updatedAt'
|
|
@@ -692,6 +698,7 @@ exports.PageTypeEnum = {
|
|
|
692
698
|
HOME: 'home',
|
|
693
699
|
CART: 'cart',
|
|
694
700
|
CHECKOUT: 'checkout',
|
|
701
|
+
SEARCH: 'search',
|
|
695
702
|
NOT_FOUND: 'not-found'
|
|
696
703
|
};
|
|
697
704
|
/**
|
|
@@ -714,6 +721,10 @@ exports.PaymentMethodEnum = {
|
|
|
714
721
|
CASH_ON_DELIVERY: 'cash_on_delivery',
|
|
715
722
|
CARD_ON_DELIVERY: 'card_on_delivery'
|
|
716
723
|
};
|
|
724
|
+
exports.PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum = {
|
|
725
|
+
CREATED_AT: 'createdAt',
|
|
726
|
+
UPDATED_AT: 'updatedAt'
|
|
727
|
+
};
|
|
717
728
|
/**
|
|
718
729
|
*
|
|
719
730
|
* @export
|
|
@@ -788,7 +799,8 @@ exports.TemplateTypeEnum = {
|
|
|
788
799
|
CART: 'cart',
|
|
789
800
|
CHECKOUT: 'checkout',
|
|
790
801
|
NOT_FOUND: 'not-found',
|
|
791
|
-
BLOG: 'blog'
|
|
802
|
+
BLOG: 'blog',
|
|
803
|
+
SEARCH: 'search'
|
|
792
804
|
};
|
|
793
805
|
/**
|
|
794
806
|
*
|
|
@@ -3199,17 +3211,20 @@ const ProductApiAxiosParamCreator = function (configuration) {
|
|
|
3199
3211
|
* @param {string} [endDate]
|
|
3200
3212
|
* @param {GetProductsDateFieldEnum} [dateField]
|
|
3201
3213
|
* @param {OrderEnum} [order]
|
|
3202
|
-
* @param {string} [sort]
|
|
3203
3214
|
* @param {string} [companyId]
|
|
3204
3215
|
* @param {string} [domain]
|
|
3205
|
-
* @param {string} [collections]
|
|
3206
|
-
* @param {string} [category]
|
|
3207
|
-
* @param {string} [brand]
|
|
3216
|
+
* @param {Array<string>} [collections]
|
|
3217
|
+
* @param {Array<string>} [category]
|
|
3218
|
+
* @param {Array<string>} [brand]
|
|
3219
|
+
* @param {boolean} [inStock]
|
|
3220
|
+
* @param {number} [priceGte]
|
|
3221
|
+
* @param {number} [priceLte]
|
|
3222
|
+
* @param {GetProductsSortEnum} [sort]
|
|
3208
3223
|
* @param {ContentStatusEnum} [status]
|
|
3209
3224
|
* @param {*} [options] Override http request option.
|
|
3210
3225
|
* @throws {RequiredError}
|
|
3211
3226
|
*/
|
|
3212
|
-
getProducts: async (page, itemsPerPage, search, startDate, endDate, dateField, order,
|
|
3227
|
+
getProducts: async (page, itemsPerPage, search, startDate, endDate, dateField, order, companyId, domain, collections, category, brand, inStock, priceGte, priceLte, sort, status, options = {}) => {
|
|
3213
3228
|
const localVarPath = `/api/products`;
|
|
3214
3229
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3215
3230
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -3245,24 +3260,33 @@ const ProductApiAxiosParamCreator = function (configuration) {
|
|
|
3245
3260
|
if (order !== undefined) {
|
|
3246
3261
|
localVarQueryParameter['order'] = order;
|
|
3247
3262
|
}
|
|
3248
|
-
if (sort !== undefined) {
|
|
3249
|
-
localVarQueryParameter['sort'] = sort;
|
|
3250
|
-
}
|
|
3251
3263
|
if (companyId !== undefined) {
|
|
3252
3264
|
localVarQueryParameter['companyId'] = companyId;
|
|
3253
3265
|
}
|
|
3254
3266
|
if (domain !== undefined) {
|
|
3255
3267
|
localVarQueryParameter['domain'] = domain;
|
|
3256
3268
|
}
|
|
3257
|
-
if (collections
|
|
3269
|
+
if (collections) {
|
|
3258
3270
|
localVarQueryParameter['collections'] = collections;
|
|
3259
3271
|
}
|
|
3260
|
-
if (category
|
|
3272
|
+
if (category) {
|
|
3261
3273
|
localVarQueryParameter['category'] = category;
|
|
3262
3274
|
}
|
|
3263
|
-
if (brand
|
|
3275
|
+
if (brand) {
|
|
3264
3276
|
localVarQueryParameter['brand'] = brand;
|
|
3265
3277
|
}
|
|
3278
|
+
if (inStock !== undefined) {
|
|
3279
|
+
localVarQueryParameter['inStock'] = inStock;
|
|
3280
|
+
}
|
|
3281
|
+
if (priceGte !== undefined) {
|
|
3282
|
+
localVarQueryParameter['priceGte'] = priceGte;
|
|
3283
|
+
}
|
|
3284
|
+
if (priceLte !== undefined) {
|
|
3285
|
+
localVarQueryParameter['priceLte'] = priceLte;
|
|
3286
|
+
}
|
|
3287
|
+
if (sort !== undefined) {
|
|
3288
|
+
localVarQueryParameter['sort'] = sort;
|
|
3289
|
+
}
|
|
3266
3290
|
if (status !== undefined) {
|
|
3267
3291
|
localVarQueryParameter['status'] = status;
|
|
3268
3292
|
}
|
|
@@ -3345,18 +3369,21 @@ const ProductApiFp = function (configuration) {
|
|
|
3345
3369
|
* @param {string} [endDate]
|
|
3346
3370
|
* @param {GetProductsDateFieldEnum} [dateField]
|
|
3347
3371
|
* @param {OrderEnum} [order]
|
|
3348
|
-
* @param {string} [sort]
|
|
3349
3372
|
* @param {string} [companyId]
|
|
3350
3373
|
* @param {string} [domain]
|
|
3351
|
-
* @param {string} [collections]
|
|
3352
|
-
* @param {string} [category]
|
|
3353
|
-
* @param {string} [brand]
|
|
3374
|
+
* @param {Array<string>} [collections]
|
|
3375
|
+
* @param {Array<string>} [category]
|
|
3376
|
+
* @param {Array<string>} [brand]
|
|
3377
|
+
* @param {boolean} [inStock]
|
|
3378
|
+
* @param {number} [priceGte]
|
|
3379
|
+
* @param {number} [priceLte]
|
|
3380
|
+
* @param {GetProductsSortEnum} [sort]
|
|
3354
3381
|
* @param {ContentStatusEnum} [status]
|
|
3355
3382
|
* @param {*} [options] Override http request option.
|
|
3356
3383
|
* @throws {RequiredError}
|
|
3357
3384
|
*/
|
|
3358
|
-
async getProducts(page, itemsPerPage, search, startDate, endDate, dateField, order,
|
|
3359
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getProducts(page, itemsPerPage, search, startDate, endDate, dateField, order,
|
|
3385
|
+
async getProducts(page, itemsPerPage, search, startDate, endDate, dateField, order, companyId, domain, collections, category, brand, inStock, priceGte, priceLte, sort, status, options) {
|
|
3386
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getProducts(page, itemsPerPage, search, startDate, endDate, dateField, order, companyId, domain, collections, category, brand, inStock, priceGte, priceLte, sort, status, options);
|
|
3360
3387
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3361
3388
|
const localVarOperationServerBasePath = base_1.operationServerMap['ProductApi.getProducts']?.[localVarOperationServerIndex]?.url;
|
|
3362
3389
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -3401,7 +3428,7 @@ const ProductApiFactory = function (configuration, basePath, axios) {
|
|
|
3401
3428
|
* @throws {RequiredError}
|
|
3402
3429
|
*/
|
|
3403
3430
|
getProducts(requestParameters = {}, options) {
|
|
3404
|
-
return localVarFp.getProducts(requestParameters.page, requestParameters.itemsPerPage, requestParameters.search, requestParameters.startDate, requestParameters.endDate, requestParameters.dateField, requestParameters.order, requestParameters.
|
|
3431
|
+
return localVarFp.getProducts(requestParameters.page, requestParameters.itemsPerPage, requestParameters.search, requestParameters.startDate, requestParameters.endDate, requestParameters.dateField, requestParameters.order, requestParameters.companyId, requestParameters.domain, requestParameters.collections, requestParameters.category, requestParameters.brand, requestParameters.inStock, requestParameters.priceGte, requestParameters.priceLte, requestParameters.sort, requestParameters.status, options).then((request) => request(axios, basePath));
|
|
3405
3432
|
},
|
|
3406
3433
|
/**
|
|
3407
3434
|
*
|
|
@@ -3440,7 +3467,7 @@ class ProductApi extends base_1.BaseAPI {
|
|
|
3440
3467
|
* @memberof ProductApi
|
|
3441
3468
|
*/
|
|
3442
3469
|
getProducts(requestParameters = {}, options) {
|
|
3443
|
-
return (0, exports.ProductApiFp)(this.configuration).getProducts(requestParameters.page, requestParameters.itemsPerPage, requestParameters.search, requestParameters.startDate, requestParameters.endDate, requestParameters.dateField, requestParameters.order, requestParameters.
|
|
3470
|
+
return (0, exports.ProductApiFp)(this.configuration).getProducts(requestParameters.page, requestParameters.itemsPerPage, requestParameters.search, requestParameters.startDate, requestParameters.endDate, requestParameters.dateField, requestParameters.order, requestParameters.companyId, requestParameters.domain, requestParameters.collections, requestParameters.category, requestParameters.brand, requestParameters.inStock, requestParameters.priceGte, requestParameters.priceLte, requestParameters.sort, requestParameters.status, options).then((request) => request(this.axios, this.basePath));
|
|
3444
3471
|
}
|
|
3445
3472
|
/**
|
|
3446
3473
|
*
|
|
@@ -3461,6 +3488,14 @@ exports.GetProductsDateFieldEnum = {
|
|
|
3461
3488
|
CREATED_AT: 'createdAt',
|
|
3462
3489
|
UPDATED_AT: 'updatedAt'
|
|
3463
3490
|
};
|
|
3491
|
+
/**
|
|
3492
|
+
* @export
|
|
3493
|
+
*/
|
|
3494
|
+
exports.GetProductsSortEnum = {
|
|
3495
|
+
PRICE: 'price',
|
|
3496
|
+
CREATED_AT: 'createdAt',
|
|
3497
|
+
TOTAL_SALE: 'totalSale'
|
|
3498
|
+
};
|
|
3464
3499
|
/**
|
|
3465
3500
|
* SitemapApi - axios parameter creator
|
|
3466
3501
|
* @export
|
package/dist/api/api.mjs
CHANGED
|
@@ -137,7 +137,8 @@ export const ComponentTypeEnum = {
|
|
|
137
137
|
CONTACT_FORM: 'contact-form',
|
|
138
138
|
CART_DETAIL: 'cart-detail',
|
|
139
139
|
CHECKOUT_DETAIL: 'checkout-detail',
|
|
140
|
-
NOT_FOUND_DETAIL: 'not-found-detail'
|
|
140
|
+
NOT_FOUND_DETAIL: 'not-found-detail',
|
|
141
|
+
SEARCH_DETAIL: 'search-detail'
|
|
141
142
|
};
|
|
142
143
|
/**
|
|
143
144
|
*
|
|
@@ -558,6 +559,11 @@ export const IProductCollectionQueryParamsDateFieldEnum = {
|
|
|
558
559
|
CREATED_AT: 'createdAt',
|
|
559
560
|
UPDATED_AT: 'updatedAt'
|
|
560
561
|
};
|
|
562
|
+
export const IProductCollectionQueryParamsSortEnum = {
|
|
563
|
+
PRICE: 'price',
|
|
564
|
+
CREATED_AT: 'createdAt',
|
|
565
|
+
TOTAL_SALE: 'totalSale'
|
|
566
|
+
};
|
|
561
567
|
export const IUserCollectionQueryParamsDateFieldEnum = {
|
|
562
568
|
CREATED_AT: 'createdAt',
|
|
563
569
|
UPDATED_AT: 'updatedAt'
|
|
@@ -681,6 +687,7 @@ export const PageTypeEnum = {
|
|
|
681
687
|
HOME: 'home',
|
|
682
688
|
CART: 'cart',
|
|
683
689
|
CHECKOUT: 'checkout',
|
|
690
|
+
SEARCH: 'search',
|
|
684
691
|
NOT_FOUND: 'not-found'
|
|
685
692
|
};
|
|
686
693
|
/**
|
|
@@ -703,6 +710,10 @@ export const PaymentMethodEnum = {
|
|
|
703
710
|
CASH_ON_DELIVERY: 'cash_on_delivery',
|
|
704
711
|
CARD_ON_DELIVERY: 'card_on_delivery'
|
|
705
712
|
};
|
|
713
|
+
export const PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum = {
|
|
714
|
+
CREATED_AT: 'createdAt',
|
|
715
|
+
UPDATED_AT: 'updatedAt'
|
|
716
|
+
};
|
|
706
717
|
/**
|
|
707
718
|
*
|
|
708
719
|
* @export
|
|
@@ -777,7 +788,8 @@ export const TemplateTypeEnum = {
|
|
|
777
788
|
CART: 'cart',
|
|
778
789
|
CHECKOUT: 'checkout',
|
|
779
790
|
NOT_FOUND: 'not-found',
|
|
780
|
-
BLOG: 'blog'
|
|
791
|
+
BLOG: 'blog',
|
|
792
|
+
SEARCH: 'search'
|
|
781
793
|
};
|
|
782
794
|
/**
|
|
783
795
|
*
|
|
@@ -3156,17 +3168,20 @@ export const ProductApiAxiosParamCreator = function (configuration) {
|
|
|
3156
3168
|
* @param {string} [endDate]
|
|
3157
3169
|
* @param {GetProductsDateFieldEnum} [dateField]
|
|
3158
3170
|
* @param {OrderEnum} [order]
|
|
3159
|
-
* @param {string} [sort]
|
|
3160
3171
|
* @param {string} [companyId]
|
|
3161
3172
|
* @param {string} [domain]
|
|
3162
|
-
* @param {string} [collections]
|
|
3163
|
-
* @param {string} [category]
|
|
3164
|
-
* @param {string} [brand]
|
|
3173
|
+
* @param {Array<string>} [collections]
|
|
3174
|
+
* @param {Array<string>} [category]
|
|
3175
|
+
* @param {Array<string>} [brand]
|
|
3176
|
+
* @param {boolean} [inStock]
|
|
3177
|
+
* @param {number} [priceGte]
|
|
3178
|
+
* @param {number} [priceLte]
|
|
3179
|
+
* @param {GetProductsSortEnum} [sort]
|
|
3165
3180
|
* @param {ContentStatusEnum} [status]
|
|
3166
3181
|
* @param {*} [options] Override http request option.
|
|
3167
3182
|
* @throws {RequiredError}
|
|
3168
3183
|
*/
|
|
3169
|
-
getProducts: async (page, itemsPerPage, search, startDate, endDate, dateField, order,
|
|
3184
|
+
getProducts: async (page, itemsPerPage, search, startDate, endDate, dateField, order, companyId, domain, collections, category, brand, inStock, priceGte, priceLte, sort, status, options = {}) => {
|
|
3170
3185
|
const localVarPath = `/api/products`;
|
|
3171
3186
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3172
3187
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -3202,24 +3217,33 @@ export const ProductApiAxiosParamCreator = function (configuration) {
|
|
|
3202
3217
|
if (order !== undefined) {
|
|
3203
3218
|
localVarQueryParameter['order'] = order;
|
|
3204
3219
|
}
|
|
3205
|
-
if (sort !== undefined) {
|
|
3206
|
-
localVarQueryParameter['sort'] = sort;
|
|
3207
|
-
}
|
|
3208
3220
|
if (companyId !== undefined) {
|
|
3209
3221
|
localVarQueryParameter['companyId'] = companyId;
|
|
3210
3222
|
}
|
|
3211
3223
|
if (domain !== undefined) {
|
|
3212
3224
|
localVarQueryParameter['domain'] = domain;
|
|
3213
3225
|
}
|
|
3214
|
-
if (collections
|
|
3226
|
+
if (collections) {
|
|
3215
3227
|
localVarQueryParameter['collections'] = collections;
|
|
3216
3228
|
}
|
|
3217
|
-
if (category
|
|
3229
|
+
if (category) {
|
|
3218
3230
|
localVarQueryParameter['category'] = category;
|
|
3219
3231
|
}
|
|
3220
|
-
if (brand
|
|
3232
|
+
if (brand) {
|
|
3221
3233
|
localVarQueryParameter['brand'] = brand;
|
|
3222
3234
|
}
|
|
3235
|
+
if (inStock !== undefined) {
|
|
3236
|
+
localVarQueryParameter['inStock'] = inStock;
|
|
3237
|
+
}
|
|
3238
|
+
if (priceGte !== undefined) {
|
|
3239
|
+
localVarQueryParameter['priceGte'] = priceGte;
|
|
3240
|
+
}
|
|
3241
|
+
if (priceLte !== undefined) {
|
|
3242
|
+
localVarQueryParameter['priceLte'] = priceLte;
|
|
3243
|
+
}
|
|
3244
|
+
if (sort !== undefined) {
|
|
3245
|
+
localVarQueryParameter['sort'] = sort;
|
|
3246
|
+
}
|
|
3223
3247
|
if (status !== undefined) {
|
|
3224
3248
|
localVarQueryParameter['status'] = status;
|
|
3225
3249
|
}
|
|
@@ -3301,18 +3325,21 @@ export const ProductApiFp = function (configuration) {
|
|
|
3301
3325
|
* @param {string} [endDate]
|
|
3302
3326
|
* @param {GetProductsDateFieldEnum} [dateField]
|
|
3303
3327
|
* @param {OrderEnum} [order]
|
|
3304
|
-
* @param {string} [sort]
|
|
3305
3328
|
* @param {string} [companyId]
|
|
3306
3329
|
* @param {string} [domain]
|
|
3307
|
-
* @param {string} [collections]
|
|
3308
|
-
* @param {string} [category]
|
|
3309
|
-
* @param {string} [brand]
|
|
3330
|
+
* @param {Array<string>} [collections]
|
|
3331
|
+
* @param {Array<string>} [category]
|
|
3332
|
+
* @param {Array<string>} [brand]
|
|
3333
|
+
* @param {boolean} [inStock]
|
|
3334
|
+
* @param {number} [priceGte]
|
|
3335
|
+
* @param {number} [priceLte]
|
|
3336
|
+
* @param {GetProductsSortEnum} [sort]
|
|
3310
3337
|
* @param {ContentStatusEnum} [status]
|
|
3311
3338
|
* @param {*} [options] Override http request option.
|
|
3312
3339
|
* @throws {RequiredError}
|
|
3313
3340
|
*/
|
|
3314
|
-
async getProducts(page, itemsPerPage, search, startDate, endDate, dateField, order,
|
|
3315
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getProducts(page, itemsPerPage, search, startDate, endDate, dateField, order,
|
|
3341
|
+
async getProducts(page, itemsPerPage, search, startDate, endDate, dateField, order, companyId, domain, collections, category, brand, inStock, priceGte, priceLte, sort, status, options) {
|
|
3342
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getProducts(page, itemsPerPage, search, startDate, endDate, dateField, order, companyId, domain, collections, category, brand, inStock, priceGte, priceLte, sort, status, options);
|
|
3316
3343
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3317
3344
|
const localVarOperationServerBasePath = operationServerMap['ProductApi.getProducts']?.[localVarOperationServerIndex]?.url;
|
|
3318
3345
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -3356,7 +3383,7 @@ export const ProductApiFactory = function (configuration, basePath, axios) {
|
|
|
3356
3383
|
* @throws {RequiredError}
|
|
3357
3384
|
*/
|
|
3358
3385
|
getProducts(requestParameters = {}, options) {
|
|
3359
|
-
return localVarFp.getProducts(requestParameters.page, requestParameters.itemsPerPage, requestParameters.search, requestParameters.startDate, requestParameters.endDate, requestParameters.dateField, requestParameters.order, requestParameters.
|
|
3386
|
+
return localVarFp.getProducts(requestParameters.page, requestParameters.itemsPerPage, requestParameters.search, requestParameters.startDate, requestParameters.endDate, requestParameters.dateField, requestParameters.order, requestParameters.companyId, requestParameters.domain, requestParameters.collections, requestParameters.category, requestParameters.brand, requestParameters.inStock, requestParameters.priceGte, requestParameters.priceLte, requestParameters.sort, requestParameters.status, options).then((request) => request(axios, basePath));
|
|
3360
3387
|
},
|
|
3361
3388
|
/**
|
|
3362
3389
|
*
|
|
@@ -3394,7 +3421,7 @@ export class ProductApi extends BaseAPI {
|
|
|
3394
3421
|
* @memberof ProductApi
|
|
3395
3422
|
*/
|
|
3396
3423
|
getProducts(requestParameters = {}, options) {
|
|
3397
|
-
return ProductApiFp(this.configuration).getProducts(requestParameters.page, requestParameters.itemsPerPage, requestParameters.search, requestParameters.startDate, requestParameters.endDate, requestParameters.dateField, requestParameters.order, requestParameters.
|
|
3424
|
+
return ProductApiFp(this.configuration).getProducts(requestParameters.page, requestParameters.itemsPerPage, requestParameters.search, requestParameters.startDate, requestParameters.endDate, requestParameters.dateField, requestParameters.order, requestParameters.companyId, requestParameters.domain, requestParameters.collections, requestParameters.category, requestParameters.brand, requestParameters.inStock, requestParameters.priceGte, requestParameters.priceLte, requestParameters.sort, requestParameters.status, options).then((request) => request(this.axios, this.basePath));
|
|
3398
3425
|
}
|
|
3399
3426
|
/**
|
|
3400
3427
|
*
|
|
@@ -3414,6 +3441,14 @@ export const GetProductsDateFieldEnum = {
|
|
|
3414
3441
|
CREATED_AT: 'createdAt',
|
|
3415
3442
|
UPDATED_AT: 'updatedAt'
|
|
3416
3443
|
};
|
|
3444
|
+
/**
|
|
3445
|
+
* @export
|
|
3446
|
+
*/
|
|
3447
|
+
export const GetProductsSortEnum = {
|
|
3448
|
+
PRICE: 'price',
|
|
3449
|
+
CREATED_AT: 'createdAt',
|
|
3450
|
+
TOTAL_SALE: 'totalSale'
|
|
3451
|
+
};
|
|
3417
3452
|
/**
|
|
3418
3453
|
* SitemapApi - axios parameter creator
|
|
3419
3454
|
* @export
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api-client",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.71",
|
|
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": "e759c4adf9108558ff35943d276c379a2e545019"
|
|
41
41
|
}
|