@infisale-client/api-client 1.2.100 → 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 +122 -193
- 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
|
@@ -2465,6 +2465,12 @@ export interface ICompanyAdminResponse {
|
|
|
2465
2465
|
'legalDocuments': {
|
|
2466
2466
|
[key: string]: RecordStringUrlStringFileIImageValue;
|
|
2467
2467
|
};
|
|
2468
|
+
/**
|
|
2469
|
+
*
|
|
2470
|
+
* @type {RecordCompanyOnboardingStepEnumBoolean}
|
|
2471
|
+
* @memberof ICompanyAdminResponse
|
|
2472
|
+
*/
|
|
2473
|
+
'onboarding': RecordCompanyOnboardingStepEnumBoolean;
|
|
2468
2474
|
/**
|
|
2469
2475
|
*
|
|
2470
2476
|
* @type {string}
|
|
@@ -2725,6 +2731,80 @@ export interface ICompanyCreateUserRequest {
|
|
|
2725
2731
|
*/
|
|
2726
2732
|
'role': string;
|
|
2727
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
|
+
}
|
|
2728
2808
|
/**
|
|
2729
2809
|
*
|
|
2730
2810
|
* @export
|
|
@@ -2823,12 +2903,6 @@ export interface ICompanyPatchRequest {
|
|
|
2823
2903
|
* @memberof ICompanyPatchRequest
|
|
2824
2904
|
*/
|
|
2825
2905
|
'paymentGateways'?: Array<ICompanyPatchRequestPaymentGatewaysInner>;
|
|
2826
|
-
/**
|
|
2827
|
-
*
|
|
2828
|
-
* @type {RecordCompanyOnboardingStepEnumBoolean}
|
|
2829
|
-
* @memberof ICompanyPatchRequest
|
|
2830
|
-
*/
|
|
2831
|
-
'onboarding'?: RecordCompanyOnboardingStepEnumBoolean;
|
|
2832
2906
|
/**
|
|
2833
2907
|
*
|
|
2834
2908
|
* @type {string}
|
|
@@ -3255,6 +3329,12 @@ export interface ICompanyResponse {
|
|
|
3255
3329
|
'legalDocuments': {
|
|
3256
3330
|
[key: string]: RecordStringUrlStringFileIImageValue;
|
|
3257
3331
|
};
|
|
3332
|
+
/**
|
|
3333
|
+
*
|
|
3334
|
+
* @type {RecordCompanyOnboardingStepEnumBoolean}
|
|
3335
|
+
* @memberof ICompanyResponse
|
|
3336
|
+
*/
|
|
3337
|
+
'onboarding': RecordCompanyOnboardingStepEnumBoolean;
|
|
3258
3338
|
/**
|
|
3259
3339
|
*
|
|
3260
3340
|
* @type {string}
|
|
@@ -5325,175 +5405,6 @@ export interface IOrderPostRequest {
|
|
|
5325
5405
|
*/
|
|
5326
5406
|
'shippingRateId': string;
|
|
5327
5407
|
}
|
|
5328
|
-
/**
|
|
5329
|
-
*
|
|
5330
|
-
* @export
|
|
5331
|
-
* @interface IOrderResponse
|
|
5332
|
-
*/
|
|
5333
|
-
export interface IOrderResponse {
|
|
5334
|
-
/**
|
|
5335
|
-
*
|
|
5336
|
-
* @type {number}
|
|
5337
|
-
* @memberof IOrderResponse
|
|
5338
|
-
*/
|
|
5339
|
-
'number': number;
|
|
5340
|
-
/**
|
|
5341
|
-
*
|
|
5342
|
-
* @type {string}
|
|
5343
|
-
* @memberof IOrderResponse
|
|
5344
|
-
*/
|
|
5345
|
-
'email'?: string;
|
|
5346
|
-
/**
|
|
5347
|
-
*
|
|
5348
|
-
* @type {string}
|
|
5349
|
-
* @memberof IOrderResponse
|
|
5350
|
-
*/
|
|
5351
|
-
'company': string;
|
|
5352
|
-
/**
|
|
5353
|
-
*
|
|
5354
|
-
* @type {OrderStatusEnum}
|
|
5355
|
-
* @memberof IOrderResponse
|
|
5356
|
-
*/
|
|
5357
|
-
'status': OrderStatusEnum;
|
|
5358
|
-
/**
|
|
5359
|
-
*
|
|
5360
|
-
* @type {string}
|
|
5361
|
-
* @memberof IOrderResponse
|
|
5362
|
-
*/
|
|
5363
|
-
'_id': string;
|
|
5364
|
-
/**
|
|
5365
|
-
*
|
|
5366
|
-
* @type {number}
|
|
5367
|
-
* @memberof IOrderResponse
|
|
5368
|
-
*/
|
|
5369
|
-
'__v': number;
|
|
5370
|
-
/**
|
|
5371
|
-
*
|
|
5372
|
-
* @type {string}
|
|
5373
|
-
* @memberof IOrderResponse
|
|
5374
|
-
*/
|
|
5375
|
-
'createdAt': string;
|
|
5376
|
-
/**
|
|
5377
|
-
*
|
|
5378
|
-
* @type {string}
|
|
5379
|
-
* @memberof IOrderResponse
|
|
5380
|
-
*/
|
|
5381
|
-
'updatedAt': string;
|
|
5382
|
-
/**
|
|
5383
|
-
*
|
|
5384
|
-
* @type {string}
|
|
5385
|
-
* @memberof IOrderResponse
|
|
5386
|
-
*/
|
|
5387
|
-
'user'?: string;
|
|
5388
|
-
/**
|
|
5389
|
-
*
|
|
5390
|
-
* @type {CurrencyEnum}
|
|
5391
|
-
* @memberof IOrderResponse
|
|
5392
|
-
*/
|
|
5393
|
-
'currency': CurrencyEnum;
|
|
5394
|
-
/**
|
|
5395
|
-
*
|
|
5396
|
-
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner>}
|
|
5397
|
-
* @memberof IOrderResponse
|
|
5398
|
-
*/
|
|
5399
|
-
'products': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner>;
|
|
5400
|
-
/**
|
|
5401
|
-
*
|
|
5402
|
-
* @type {IAddress}
|
|
5403
|
-
* @memberof IOrderResponse
|
|
5404
|
-
*/
|
|
5405
|
-
'shippingAddress': IAddress;
|
|
5406
|
-
/**
|
|
5407
|
-
*
|
|
5408
|
-
* @type {IAddress}
|
|
5409
|
-
* @memberof IOrderResponse
|
|
5410
|
-
*/
|
|
5411
|
-
'billingAddress'?: IAddress;
|
|
5412
|
-
/**
|
|
5413
|
-
*
|
|
5414
|
-
* @type {PaymentMethodEnum}
|
|
5415
|
-
* @memberof IOrderResponse
|
|
5416
|
-
*/
|
|
5417
|
-
'paymentMethod': PaymentMethodEnum;
|
|
5418
|
-
/**
|
|
5419
|
-
*
|
|
5420
|
-
* @type {PaymentGatewayEnum}
|
|
5421
|
-
* @memberof IOrderResponse
|
|
5422
|
-
*/
|
|
5423
|
-
'paymentGateway': PaymentGatewayEnum;
|
|
5424
|
-
/**
|
|
5425
|
-
*
|
|
5426
|
-
* @type {string}
|
|
5427
|
-
* @memberof IOrderResponse
|
|
5428
|
-
*/
|
|
5429
|
-
'paymentId': string;
|
|
5430
|
-
/**
|
|
5431
|
-
*
|
|
5432
|
-
* @type {number}
|
|
5433
|
-
* @memberof IOrderResponse
|
|
5434
|
-
*/
|
|
5435
|
-
'subtotal': number;
|
|
5436
|
-
/**
|
|
5437
|
-
*
|
|
5438
|
-
* @type {number}
|
|
5439
|
-
* @memberof IOrderResponse
|
|
5440
|
-
*/
|
|
5441
|
-
'discount': number;
|
|
5442
|
-
/**
|
|
5443
|
-
*
|
|
5444
|
-
* @type {number}
|
|
5445
|
-
* @memberof IOrderResponse
|
|
5446
|
-
*/
|
|
5447
|
-
'tax': number;
|
|
5448
|
-
/**
|
|
5449
|
-
*
|
|
5450
|
-
* @type {number}
|
|
5451
|
-
* @memberof IOrderResponse
|
|
5452
|
-
*/
|
|
5453
|
-
'shipping': number;
|
|
5454
|
-
/**
|
|
5455
|
-
*
|
|
5456
|
-
* @type {string}
|
|
5457
|
-
* @memberof IOrderResponse
|
|
5458
|
-
*/
|
|
5459
|
-
'shippingRate': string;
|
|
5460
|
-
/**
|
|
5461
|
-
*
|
|
5462
|
-
* @type {number}
|
|
5463
|
-
* @memberof IOrderResponse
|
|
5464
|
-
*/
|
|
5465
|
-
'total': number;
|
|
5466
|
-
/**
|
|
5467
|
-
*
|
|
5468
|
-
* @type {string}
|
|
5469
|
-
* @memberof IOrderResponse
|
|
5470
|
-
*/
|
|
5471
|
-
'note'?: string;
|
|
5472
|
-
/**
|
|
5473
|
-
*
|
|
5474
|
-
* @type {string}
|
|
5475
|
-
* @memberof IOrderResponse
|
|
5476
|
-
*/
|
|
5477
|
-
'ip': string;
|
|
5478
|
-
/**
|
|
5479
|
-
*
|
|
5480
|
-
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner>}
|
|
5481
|
-
* @memberof IOrderResponse
|
|
5482
|
-
*/
|
|
5483
|
-
'returns': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner>;
|
|
5484
|
-
/**
|
|
5485
|
-
*
|
|
5486
|
-
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner>}
|
|
5487
|
-
* @memberof IOrderResponse
|
|
5488
|
-
*/
|
|
5489
|
-
'shipped': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner>;
|
|
5490
|
-
/**
|
|
5491
|
-
*
|
|
5492
|
-
* @type {OrderPaymentStatusEnum}
|
|
5493
|
-
* @memberof IOrderResponse
|
|
5494
|
-
*/
|
|
5495
|
-
'paymentStatus': OrderPaymentStatusEnum;
|
|
5496
|
-
}
|
|
5497
5408
|
/**
|
|
5498
5409
|
*
|
|
5499
5410
|
* @export
|
|
@@ -5791,10 +5702,10 @@ export interface IOrdersResponse {
|
|
|
5791
5702
|
'totalPages': number;
|
|
5792
5703
|
/**
|
|
5793
5704
|
*
|
|
5794
|
-
* @type {Array<
|
|
5705
|
+
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframe>}
|
|
5795
5706
|
* @memberof IOrdersResponse
|
|
5796
5707
|
*/
|
|
5797
|
-
'data': Array<
|
|
5708
|
+
'data': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframe>;
|
|
5798
5709
|
}
|
|
5799
5710
|
/**
|
|
5800
5711
|
*
|
|
@@ -9769,6 +9680,12 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
9769
9680
|
'legalDocuments': {
|
|
9770
9681
|
[key: string]: RecordStringUrlStringFileIImageValue;
|
|
9771
9682
|
};
|
|
9683
|
+
/**
|
|
9684
|
+
*
|
|
9685
|
+
* @type {RecordCompanyOnboardingStepEnumBoolean}
|
|
9686
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
9687
|
+
*/
|
|
9688
|
+
'onboarding': RecordCompanyOnboardingStepEnumBoolean;
|
|
9772
9689
|
/**
|
|
9773
9690
|
*
|
|
9774
9691
|
* @type {string}
|
|
@@ -10020,19 +9937,6 @@ export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUse
|
|
|
10020
9937
|
*/
|
|
10021
9938
|
'user': string;
|
|
10022
9939
|
}
|
|
10023
|
-
/**
|
|
10024
|
-
* From T, pick a set of properties whose keys are in the union K
|
|
10025
|
-
* @export
|
|
10026
|
-
* @interface PickICompanyOnboarding
|
|
10027
|
-
*/
|
|
10028
|
-
export interface PickICompanyOnboarding {
|
|
10029
|
-
/**
|
|
10030
|
-
*
|
|
10031
|
-
* @type {RecordCompanyOnboardingStepEnumBoolean}
|
|
10032
|
-
* @memberof PickICompanyOnboarding
|
|
10033
|
-
*/
|
|
10034
|
-
'onboarding': RecordCompanyOnboardingStepEnumBoolean;
|
|
10035
|
-
}
|
|
10036
9940
|
/**
|
|
10037
9941
|
* From T, pick a set of properties whose keys are in the union K
|
|
10038
9942
|
* @export
|
|
@@ -10713,6 +10617,31 @@ export interface PickIProductIdOrContentsOrCollectionsOrCategory {
|
|
|
10713
10617
|
*/
|
|
10714
10618
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
10715
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
|
+
}
|
|
10716
10645
|
/**
|
|
10717
10646
|
* From T, pick a set of properties whose keys are in the union K
|
|
10718
10647
|
* @export
|
|
@@ -13321,7 +13250,7 @@ export declare const OrderApiFp: (configuration?: Configuration) => {
|
|
|
13321
13250
|
* @param {*} [options] Override http request option.
|
|
13322
13251
|
* @throws {RequiredError}
|
|
13323
13252
|
*/
|
|
13324
|
-
getOrderById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
13253
|
+
getOrderById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PickIOrderExcludeKeyofIOrderHtmlOrIframe>>;
|
|
13325
13254
|
/**
|
|
13326
13255
|
*
|
|
13327
13256
|
* @param {string} id
|
|
@@ -13395,7 +13324,7 @@ export declare const OrderApiFactory: (configuration?: Configuration, basePath?:
|
|
|
13395
13324
|
* @param {*} [options] Override http request option.
|
|
13396
13325
|
* @throws {RequiredError}
|
|
13397
13326
|
*/
|
|
13398
|
-
getOrderById(requestParameters: OrderApiGetOrderByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
13327
|
+
getOrderById(requestParameters: OrderApiGetOrderByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<PickIOrderExcludeKeyofIOrderHtmlOrIframe>;
|
|
13399
13328
|
/**
|
|
13400
13329
|
*
|
|
13401
13330
|
* @param {OrderApiGetOrderProductReviewRequest} requestParameters Request parameters.
|
|
@@ -13694,7 +13623,7 @@ export declare class OrderApi extends BaseAPI {
|
|
|
13694
13623
|
* @throws {RequiredError}
|
|
13695
13624
|
* @memberof OrderApi
|
|
13696
13625
|
*/
|
|
13697
|
-
getOrderById(requestParameters: OrderApiGetOrderByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13626
|
+
getOrderById(requestParameters: OrderApiGetOrderByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PickIOrderExcludeKeyofIOrderHtmlOrIframe, any>>;
|
|
13698
13627
|
/**
|
|
13699
13628
|
*
|
|
13700
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
|
}
|