@infisale-client/api-client 1.2.101 → 1.2.102
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 +104 -174
- package/dist/api/api.js +8 -3
- package/dist/api/api.mjs +5 -0
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -2731,6 +2731,80 @@ export interface ICompanyCreateUserRequest {
|
|
|
2731
2731
|
*/
|
|
2732
2732
|
'role': string;
|
|
2733
2733
|
}
|
|
2734
|
+
/**
|
|
2735
|
+
*
|
|
2736
|
+
* @export
|
|
2737
|
+
* @interface ICompanyDashboardResponse
|
|
2738
|
+
*/
|
|
2739
|
+
export interface ICompanyDashboardResponse {
|
|
2740
|
+
/**
|
|
2741
|
+
*
|
|
2742
|
+
* @type {Array<ICompanyDashboardResponseOrdersInner>}
|
|
2743
|
+
* @memberof ICompanyDashboardResponse
|
|
2744
|
+
*/
|
|
2745
|
+
'orders': Array<ICompanyDashboardResponseOrdersInner>;
|
|
2746
|
+
/**
|
|
2747
|
+
*
|
|
2748
|
+
* @type {string}
|
|
2749
|
+
* @memberof ICompanyDashboardResponse
|
|
2750
|
+
*/
|
|
2751
|
+
'period': ICompanyDashboardResponsePeriodEnum;
|
|
2752
|
+
/**
|
|
2753
|
+
*
|
|
2754
|
+
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframe>}
|
|
2755
|
+
* @memberof ICompanyDashboardResponse
|
|
2756
|
+
*/
|
|
2757
|
+
'lastOrders': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframe>;
|
|
2758
|
+
/**
|
|
2759
|
+
*
|
|
2760
|
+
* @type {Array<PickIProductIdOrContentsOrTotalSale>}
|
|
2761
|
+
* @memberof ICompanyDashboardResponse
|
|
2762
|
+
*/
|
|
2763
|
+
'mostSoldProducts': Array<PickIProductIdOrContentsOrTotalSale>;
|
|
2764
|
+
/**
|
|
2765
|
+
*
|
|
2766
|
+
* @type {number}
|
|
2767
|
+
* @memberof ICompanyDashboardResponse
|
|
2768
|
+
*/
|
|
2769
|
+
'totalCustomerCount': number;
|
|
2770
|
+
/**
|
|
2771
|
+
*
|
|
2772
|
+
* @type {number}
|
|
2773
|
+
* @memberof ICompanyDashboardResponse
|
|
2774
|
+
*/
|
|
2775
|
+
'totalReviewCount': number;
|
|
2776
|
+
}
|
|
2777
|
+
export declare const ICompanyDashboardResponsePeriodEnum: {
|
|
2778
|
+
readonly DAY: "day";
|
|
2779
|
+
readonly MONTH: "month";
|
|
2780
|
+
readonly WEEK: "week";
|
|
2781
|
+
};
|
|
2782
|
+
export type ICompanyDashboardResponsePeriodEnum = typeof ICompanyDashboardResponsePeriodEnum[keyof typeof ICompanyDashboardResponsePeriodEnum];
|
|
2783
|
+
/**
|
|
2784
|
+
*
|
|
2785
|
+
* @export
|
|
2786
|
+
* @interface ICompanyDashboardResponseOrdersInner
|
|
2787
|
+
*/
|
|
2788
|
+
export interface ICompanyDashboardResponseOrdersInner {
|
|
2789
|
+
/**
|
|
2790
|
+
*
|
|
2791
|
+
* @type {number}
|
|
2792
|
+
* @memberof ICompanyDashboardResponseOrdersInner
|
|
2793
|
+
*/
|
|
2794
|
+
'totalOrder': number;
|
|
2795
|
+
/**
|
|
2796
|
+
*
|
|
2797
|
+
* @type {number}
|
|
2798
|
+
* @memberof ICompanyDashboardResponseOrdersInner
|
|
2799
|
+
*/
|
|
2800
|
+
'totalPrice': number;
|
|
2801
|
+
/**
|
|
2802
|
+
*
|
|
2803
|
+
* @type {string}
|
|
2804
|
+
* @memberof ICompanyDashboardResponseOrdersInner
|
|
2805
|
+
*/
|
|
2806
|
+
'date': string;
|
|
2807
|
+
}
|
|
2734
2808
|
/**
|
|
2735
2809
|
*
|
|
2736
2810
|
* @export
|
|
@@ -5331,175 +5405,6 @@ export interface IOrderPostRequest {
|
|
|
5331
5405
|
*/
|
|
5332
5406
|
'shippingRateId': string;
|
|
5333
5407
|
}
|
|
5334
|
-
/**
|
|
5335
|
-
*
|
|
5336
|
-
* @export
|
|
5337
|
-
* @interface IOrderResponse
|
|
5338
|
-
*/
|
|
5339
|
-
export interface IOrderResponse {
|
|
5340
|
-
/**
|
|
5341
|
-
*
|
|
5342
|
-
* @type {number}
|
|
5343
|
-
* @memberof IOrderResponse
|
|
5344
|
-
*/
|
|
5345
|
-
'number': number;
|
|
5346
|
-
/**
|
|
5347
|
-
*
|
|
5348
|
-
* @type {string}
|
|
5349
|
-
* @memberof IOrderResponse
|
|
5350
|
-
*/
|
|
5351
|
-
'email'?: string;
|
|
5352
|
-
/**
|
|
5353
|
-
*
|
|
5354
|
-
* @type {string}
|
|
5355
|
-
* @memberof IOrderResponse
|
|
5356
|
-
*/
|
|
5357
|
-
'company': string;
|
|
5358
|
-
/**
|
|
5359
|
-
*
|
|
5360
|
-
* @type {OrderStatusEnum}
|
|
5361
|
-
* @memberof IOrderResponse
|
|
5362
|
-
*/
|
|
5363
|
-
'status': OrderStatusEnum;
|
|
5364
|
-
/**
|
|
5365
|
-
*
|
|
5366
|
-
* @type {string}
|
|
5367
|
-
* @memberof IOrderResponse
|
|
5368
|
-
*/
|
|
5369
|
-
'_id': string;
|
|
5370
|
-
/**
|
|
5371
|
-
*
|
|
5372
|
-
* @type {number}
|
|
5373
|
-
* @memberof IOrderResponse
|
|
5374
|
-
*/
|
|
5375
|
-
'__v': number;
|
|
5376
|
-
/**
|
|
5377
|
-
*
|
|
5378
|
-
* @type {string}
|
|
5379
|
-
* @memberof IOrderResponse
|
|
5380
|
-
*/
|
|
5381
|
-
'createdAt': string;
|
|
5382
|
-
/**
|
|
5383
|
-
*
|
|
5384
|
-
* @type {string}
|
|
5385
|
-
* @memberof IOrderResponse
|
|
5386
|
-
*/
|
|
5387
|
-
'updatedAt': string;
|
|
5388
|
-
/**
|
|
5389
|
-
*
|
|
5390
|
-
* @type {string}
|
|
5391
|
-
* @memberof IOrderResponse
|
|
5392
|
-
*/
|
|
5393
|
-
'user'?: string;
|
|
5394
|
-
/**
|
|
5395
|
-
*
|
|
5396
|
-
* @type {CurrencyEnum}
|
|
5397
|
-
* @memberof IOrderResponse
|
|
5398
|
-
*/
|
|
5399
|
-
'currency': CurrencyEnum;
|
|
5400
|
-
/**
|
|
5401
|
-
*
|
|
5402
|
-
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner>}
|
|
5403
|
-
* @memberof IOrderResponse
|
|
5404
|
-
*/
|
|
5405
|
-
'products': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner>;
|
|
5406
|
-
/**
|
|
5407
|
-
*
|
|
5408
|
-
* @type {IAddress}
|
|
5409
|
-
* @memberof IOrderResponse
|
|
5410
|
-
*/
|
|
5411
|
-
'shippingAddress': IAddress;
|
|
5412
|
-
/**
|
|
5413
|
-
*
|
|
5414
|
-
* @type {IAddress}
|
|
5415
|
-
* @memberof IOrderResponse
|
|
5416
|
-
*/
|
|
5417
|
-
'billingAddress'?: IAddress;
|
|
5418
|
-
/**
|
|
5419
|
-
*
|
|
5420
|
-
* @type {PaymentMethodEnum}
|
|
5421
|
-
* @memberof IOrderResponse
|
|
5422
|
-
*/
|
|
5423
|
-
'paymentMethod': PaymentMethodEnum;
|
|
5424
|
-
/**
|
|
5425
|
-
*
|
|
5426
|
-
* @type {PaymentGatewayEnum}
|
|
5427
|
-
* @memberof IOrderResponse
|
|
5428
|
-
*/
|
|
5429
|
-
'paymentGateway': PaymentGatewayEnum;
|
|
5430
|
-
/**
|
|
5431
|
-
*
|
|
5432
|
-
* @type {string}
|
|
5433
|
-
* @memberof IOrderResponse
|
|
5434
|
-
*/
|
|
5435
|
-
'paymentId': string;
|
|
5436
|
-
/**
|
|
5437
|
-
*
|
|
5438
|
-
* @type {number}
|
|
5439
|
-
* @memberof IOrderResponse
|
|
5440
|
-
*/
|
|
5441
|
-
'subtotal': number;
|
|
5442
|
-
/**
|
|
5443
|
-
*
|
|
5444
|
-
* @type {number}
|
|
5445
|
-
* @memberof IOrderResponse
|
|
5446
|
-
*/
|
|
5447
|
-
'discount': number;
|
|
5448
|
-
/**
|
|
5449
|
-
*
|
|
5450
|
-
* @type {number}
|
|
5451
|
-
* @memberof IOrderResponse
|
|
5452
|
-
*/
|
|
5453
|
-
'tax': number;
|
|
5454
|
-
/**
|
|
5455
|
-
*
|
|
5456
|
-
* @type {number}
|
|
5457
|
-
* @memberof IOrderResponse
|
|
5458
|
-
*/
|
|
5459
|
-
'shipping': number;
|
|
5460
|
-
/**
|
|
5461
|
-
*
|
|
5462
|
-
* @type {string}
|
|
5463
|
-
* @memberof IOrderResponse
|
|
5464
|
-
*/
|
|
5465
|
-
'shippingRate': string;
|
|
5466
|
-
/**
|
|
5467
|
-
*
|
|
5468
|
-
* @type {number}
|
|
5469
|
-
* @memberof IOrderResponse
|
|
5470
|
-
*/
|
|
5471
|
-
'total': number;
|
|
5472
|
-
/**
|
|
5473
|
-
*
|
|
5474
|
-
* @type {string}
|
|
5475
|
-
* @memberof IOrderResponse
|
|
5476
|
-
*/
|
|
5477
|
-
'note'?: string;
|
|
5478
|
-
/**
|
|
5479
|
-
*
|
|
5480
|
-
* @type {string}
|
|
5481
|
-
* @memberof IOrderResponse
|
|
5482
|
-
*/
|
|
5483
|
-
'ip': string;
|
|
5484
|
-
/**
|
|
5485
|
-
*
|
|
5486
|
-
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner>}
|
|
5487
|
-
* @memberof IOrderResponse
|
|
5488
|
-
*/
|
|
5489
|
-
'returns': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner>;
|
|
5490
|
-
/**
|
|
5491
|
-
*
|
|
5492
|
-
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner>}
|
|
5493
|
-
* @memberof IOrderResponse
|
|
5494
|
-
*/
|
|
5495
|
-
'shipped': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner>;
|
|
5496
|
-
/**
|
|
5497
|
-
*
|
|
5498
|
-
* @type {OrderPaymentStatusEnum}
|
|
5499
|
-
* @memberof IOrderResponse
|
|
5500
|
-
*/
|
|
5501
|
-
'paymentStatus': OrderPaymentStatusEnum;
|
|
5502
|
-
}
|
|
5503
5408
|
/**
|
|
5504
5409
|
*
|
|
5505
5410
|
* @export
|
|
@@ -5797,10 +5702,10 @@ export interface IOrdersResponse {
|
|
|
5797
5702
|
'totalPages': number;
|
|
5798
5703
|
/**
|
|
5799
5704
|
*
|
|
5800
|
-
* @type {Array<
|
|
5705
|
+
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframe>}
|
|
5801
5706
|
* @memberof IOrdersResponse
|
|
5802
5707
|
*/
|
|
5803
|
-
'data': Array<
|
|
5708
|
+
'data': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframe>;
|
|
5804
5709
|
}
|
|
5805
5710
|
/**
|
|
5806
5711
|
*
|
|
@@ -10712,6 +10617,31 @@ export interface PickIProductIdOrContentsOrCollectionsOrCategory {
|
|
|
10712
10617
|
*/
|
|
10713
10618
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
10714
10619
|
}
|
|
10620
|
+
/**
|
|
10621
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
10622
|
+
* @export
|
|
10623
|
+
* @interface PickIProductIdOrContentsOrTotalSale
|
|
10624
|
+
*/
|
|
10625
|
+
export interface PickIProductIdOrContentsOrTotalSale {
|
|
10626
|
+
/**
|
|
10627
|
+
*
|
|
10628
|
+
* @type {string}
|
|
10629
|
+
* @memberof PickIProductIdOrContentsOrTotalSale
|
|
10630
|
+
*/
|
|
10631
|
+
'_id': string;
|
|
10632
|
+
/**
|
|
10633
|
+
*
|
|
10634
|
+
* @type {number}
|
|
10635
|
+
* @memberof PickIProductIdOrContentsOrTotalSale
|
|
10636
|
+
*/
|
|
10637
|
+
'totalSale': number;
|
|
10638
|
+
/**
|
|
10639
|
+
*
|
|
10640
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
10641
|
+
* @memberof PickIProductIdOrContentsOrTotalSale
|
|
10642
|
+
*/
|
|
10643
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
10644
|
+
}
|
|
10715
10645
|
/**
|
|
10716
10646
|
* From T, pick a set of properties whose keys are in the union K
|
|
10717
10647
|
* @export
|
|
@@ -13320,7 +13250,7 @@ export declare const OrderApiFp: (configuration?: Configuration) => {
|
|
|
13320
13250
|
* @param {*} [options] Override http request option.
|
|
13321
13251
|
* @throws {RequiredError}
|
|
13322
13252
|
*/
|
|
13323
|
-
getOrderById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
13253
|
+
getOrderById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PickIOrderExcludeKeyofIOrderHtmlOrIframe>>;
|
|
13324
13254
|
/**
|
|
13325
13255
|
*
|
|
13326
13256
|
* @param {string} id
|
|
@@ -13394,7 +13324,7 @@ export declare const OrderApiFactory: (configuration?: Configuration, basePath?:
|
|
|
13394
13324
|
* @param {*} [options] Override http request option.
|
|
13395
13325
|
* @throws {RequiredError}
|
|
13396
13326
|
*/
|
|
13397
|
-
getOrderById(requestParameters: OrderApiGetOrderByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
13327
|
+
getOrderById(requestParameters: OrderApiGetOrderByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<PickIOrderExcludeKeyofIOrderHtmlOrIframe>;
|
|
13398
13328
|
/**
|
|
13399
13329
|
*
|
|
13400
13330
|
* @param {OrderApiGetOrderProductReviewRequest} requestParameters Request parameters.
|
|
@@ -13693,7 +13623,7 @@ export declare class OrderApi extends BaseAPI {
|
|
|
13693
13623
|
* @throws {RequiredError}
|
|
13694
13624
|
* @memberof OrderApi
|
|
13695
13625
|
*/
|
|
13696
|
-
getOrderById(requestParameters: OrderApiGetOrderByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13626
|
+
getOrderById(requestParameters: OrderApiGetOrderByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PickIOrderExcludeKeyofIOrderHtmlOrIframe, any>>;
|
|
13697
13627
|
/**
|
|
13698
13628
|
*
|
|
13699
13629
|
* @param {OrderApiGetOrderProductReviewRequest} requestParameters Request parameters.
|
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.GetProductsSortEnum = exports.GetProductsDateFieldEnum = exports.ProductApi = exports.ProductApiFactory = exports.ProductApiFp = exports.ProductApiAxiosParamCreator = exports.GetPagesDateFieldEnum = exports.PageApi = void 0;
|
|
19
|
+
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.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.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.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.ReviewStatusEnum = exports.ProductDetailImageZoomTypeEnum = exports.PlanTypeEnum = exports.PlanStatusEnum = exports.PlanCurrencyEnum = exports.PickIThemeExcludeKeyofIThemeTemplateConfigBlogCardTextAlignEnum = exports.PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum = exports.PaymentStatusEnum = exports.PaymentMethodEnum = exports.PaymentGatewayEnum = exports.PageTypeEnum = 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 = exports.ProductApiFp = exports.ProductApiAxiosParamCreator = exports.GetPagesDateFieldEnum = exports.PageApi = exports.PageApiFactory = void 0;
|
|
22
22
|
const axios_1 = __importDefault(require("axios"));
|
|
23
23
|
// Some imports not used depending on template conditions
|
|
24
24
|
// @ts-ignore
|
|
@@ -533,6 +533,11 @@ exports.ICompanyCollectionQueryParamsDateFieldEnum = {
|
|
|
533
533
|
CREATED_AT: 'createdAt',
|
|
534
534
|
UPDATED_AT: 'updatedAt'
|
|
535
535
|
};
|
|
536
|
+
exports.ICompanyDashboardResponsePeriodEnum = {
|
|
537
|
+
DAY: 'day',
|
|
538
|
+
MONTH: 'month',
|
|
539
|
+
WEEK: 'week'
|
|
540
|
+
};
|
|
536
541
|
exports.ICompanyUsersCollectionQueryParamsDateFieldEnum = {
|
|
537
542
|
CREATED_AT: 'createdAt',
|
|
538
543
|
UPDATED_AT: 'updatedAt'
|
package/dist/api/api.mjs
CHANGED
|
@@ -522,6 +522,11 @@ export const ICompanyCollectionQueryParamsDateFieldEnum = {
|
|
|
522
522
|
CREATED_AT: 'createdAt',
|
|
523
523
|
UPDATED_AT: 'updatedAt'
|
|
524
524
|
};
|
|
525
|
+
export const ICompanyDashboardResponsePeriodEnum = {
|
|
526
|
+
DAY: 'day',
|
|
527
|
+
MONTH: 'month',
|
|
528
|
+
WEEK: 'week'
|
|
529
|
+
};
|
|
525
530
|
export const ICompanyUsersCollectionQueryParamsDateFieldEnum = {
|
|
526
531
|
CREATED_AT: 'createdAt',
|
|
527
532
|
UPDATED_AT: 'updatedAt'
|
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.102",
|
|
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": "9a7ba30d3f0bf741ab54cd158e069810f2f7d4ba"
|
|
41
41
|
}
|