@infisale-client/api-client 1.3.11 → 1.3.12
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 +346 -0
- package/dist/api/api.js +7 -3
- package/dist/api/api.mjs +4 -0
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -8397,6 +8397,12 @@ export interface ITemplatePatchRequest {
|
|
|
8397
8397
|
* @memberof ITemplatePatchRequest
|
|
8398
8398
|
*/
|
|
8399
8399
|
'type'?: TemplateTypeEnum;
|
|
8400
|
+
/**
|
|
8401
|
+
*
|
|
8402
|
+
* @type {boolean}
|
|
8403
|
+
* @memberof ITemplatePatchRequest
|
|
8404
|
+
*/
|
|
8405
|
+
'unique'?: boolean;
|
|
8400
8406
|
}
|
|
8401
8407
|
/**
|
|
8402
8408
|
*
|
|
@@ -8434,6 +8440,12 @@ export interface ITemplatePostRequest {
|
|
|
8434
8440
|
* @memberof ITemplatePostRequest
|
|
8435
8441
|
*/
|
|
8436
8442
|
'type': TemplateTypeEnum;
|
|
8443
|
+
/**
|
|
8444
|
+
*
|
|
8445
|
+
* @type {boolean}
|
|
8446
|
+
* @memberof ITemplatePostRequest
|
|
8447
|
+
*/
|
|
8448
|
+
'unique': boolean;
|
|
8437
8449
|
}
|
|
8438
8450
|
/**
|
|
8439
8451
|
*
|
|
@@ -8489,6 +8501,12 @@ export interface ITemplateResponse {
|
|
|
8489
8501
|
* @memberof ITemplateResponse
|
|
8490
8502
|
*/
|
|
8491
8503
|
'type': TemplateTypeEnum;
|
|
8504
|
+
/**
|
|
8505
|
+
*
|
|
8506
|
+
* @type {boolean}
|
|
8507
|
+
* @memberof ITemplateResponse
|
|
8508
|
+
*/
|
|
8509
|
+
'unique': boolean;
|
|
8492
8510
|
/**
|
|
8493
8511
|
*
|
|
8494
8512
|
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
@@ -8756,6 +8774,215 @@ export interface IThemesResponse {
|
|
|
8756
8774
|
*/
|
|
8757
8775
|
'data': Array<IThemeResponse>;
|
|
8758
8776
|
}
|
|
8777
|
+
/**
|
|
8778
|
+
*
|
|
8779
|
+
* @export
|
|
8780
|
+
* @interface IUniqueCollectionQueryParams
|
|
8781
|
+
*/
|
|
8782
|
+
export interface IUniqueCollectionQueryParams {
|
|
8783
|
+
/**
|
|
8784
|
+
*
|
|
8785
|
+
* @type {number}
|
|
8786
|
+
* @memberof IUniqueCollectionQueryParams
|
|
8787
|
+
*/
|
|
8788
|
+
'page'?: number;
|
|
8789
|
+
/**
|
|
8790
|
+
*
|
|
8791
|
+
* @type {number}
|
|
8792
|
+
* @memberof IUniqueCollectionQueryParams
|
|
8793
|
+
*/
|
|
8794
|
+
'itemsPerPage'?: number;
|
|
8795
|
+
/**
|
|
8796
|
+
*
|
|
8797
|
+
* @type {string}
|
|
8798
|
+
* @memberof IUniqueCollectionQueryParams
|
|
8799
|
+
*/
|
|
8800
|
+
'search'?: string;
|
|
8801
|
+
/**
|
|
8802
|
+
*
|
|
8803
|
+
* @type {string}
|
|
8804
|
+
* @memberof IUniqueCollectionQueryParams
|
|
8805
|
+
*/
|
|
8806
|
+
'startDate'?: string;
|
|
8807
|
+
/**
|
|
8808
|
+
*
|
|
8809
|
+
* @type {string}
|
|
8810
|
+
* @memberof IUniqueCollectionQueryParams
|
|
8811
|
+
*/
|
|
8812
|
+
'endDate'?: string;
|
|
8813
|
+
/**
|
|
8814
|
+
*
|
|
8815
|
+
* @type {string}
|
|
8816
|
+
* @memberof IUniqueCollectionQueryParams
|
|
8817
|
+
*/
|
|
8818
|
+
'dateField'?: IUniqueCollectionQueryParamsDateFieldEnum;
|
|
8819
|
+
/**
|
|
8820
|
+
*
|
|
8821
|
+
* @type {OrderEnum}
|
|
8822
|
+
* @memberof IUniqueCollectionQueryParams
|
|
8823
|
+
*/
|
|
8824
|
+
'order'?: OrderEnum;
|
|
8825
|
+
/**
|
|
8826
|
+
*
|
|
8827
|
+
* @type {string}
|
|
8828
|
+
* @memberof IUniqueCollectionQueryParams
|
|
8829
|
+
*/
|
|
8830
|
+
'sort'?: string;
|
|
8831
|
+
/**
|
|
8832
|
+
*
|
|
8833
|
+
* @type {string}
|
|
8834
|
+
* @memberof IUniqueCollectionQueryParams
|
|
8835
|
+
*/
|
|
8836
|
+
'companyId'?: string;
|
|
8837
|
+
/**
|
|
8838
|
+
*
|
|
8839
|
+
* @type {string}
|
|
8840
|
+
* @memberof IUniqueCollectionQueryParams
|
|
8841
|
+
*/
|
|
8842
|
+
'domain'?: string;
|
|
8843
|
+
}
|
|
8844
|
+
export declare const IUniqueCollectionQueryParamsDateFieldEnum: {
|
|
8845
|
+
readonly CREATED_AT: "createdAt";
|
|
8846
|
+
readonly UPDATED_AT: "updatedAt";
|
|
8847
|
+
};
|
|
8848
|
+
export type IUniqueCollectionQueryParamsDateFieldEnum = typeof IUniqueCollectionQueryParamsDateFieldEnum[keyof typeof IUniqueCollectionQueryParamsDateFieldEnum];
|
|
8849
|
+
/**
|
|
8850
|
+
*
|
|
8851
|
+
* @export
|
|
8852
|
+
* @interface IUniquePagePatchRequest
|
|
8853
|
+
*/
|
|
8854
|
+
export interface IUniquePagePatchRequest {
|
|
8855
|
+
/**
|
|
8856
|
+
*
|
|
8857
|
+
* @type {PartialRecordLanguageEnumTitleStringDescription63String}
|
|
8858
|
+
* @memberof IUniquePagePatchRequest
|
|
8859
|
+
*/
|
|
8860
|
+
'contents': PartialRecordLanguageEnumTitleStringDescription63String;
|
|
8861
|
+
/**
|
|
8862
|
+
*
|
|
8863
|
+
* @type {IImage}
|
|
8864
|
+
* @memberof IUniquePagePatchRequest
|
|
8865
|
+
*/
|
|
8866
|
+
'thumbnail'?: IImage;
|
|
8867
|
+
}
|
|
8868
|
+
/**
|
|
8869
|
+
*
|
|
8870
|
+
* @export
|
|
8871
|
+
* @interface IUniquePageResponse
|
|
8872
|
+
*/
|
|
8873
|
+
export interface IUniquePageResponse {
|
|
8874
|
+
/**
|
|
8875
|
+
*
|
|
8876
|
+
* @type {string}
|
|
8877
|
+
* @memberof IUniquePageResponse
|
|
8878
|
+
*/
|
|
8879
|
+
'company': string;
|
|
8880
|
+
/**
|
|
8881
|
+
*
|
|
8882
|
+
* @type {string}
|
|
8883
|
+
* @memberof IUniquePageResponse
|
|
8884
|
+
*/
|
|
8885
|
+
'_id': string;
|
|
8886
|
+
/**
|
|
8887
|
+
*
|
|
8888
|
+
* @type {number}
|
|
8889
|
+
* @memberof IUniquePageResponse
|
|
8890
|
+
*/
|
|
8891
|
+
'__v': number;
|
|
8892
|
+
/**
|
|
8893
|
+
*
|
|
8894
|
+
* @type {string}
|
|
8895
|
+
* @memberof IUniquePageResponse
|
|
8896
|
+
*/
|
|
8897
|
+
'createdAt': string;
|
|
8898
|
+
/**
|
|
8899
|
+
*
|
|
8900
|
+
* @type {string}
|
|
8901
|
+
* @memberof IUniquePageResponse
|
|
8902
|
+
*/
|
|
8903
|
+
'updatedAt': string;
|
|
8904
|
+
/**
|
|
8905
|
+
* Construct a type with a set of properties K of type T
|
|
8906
|
+
* @type {{ [key: string]: string; }}
|
|
8907
|
+
* @memberof IUniquePageResponse
|
|
8908
|
+
*/
|
|
8909
|
+
'templates': {
|
|
8910
|
+
[key: string]: string;
|
|
8911
|
+
};
|
|
8912
|
+
/**
|
|
8913
|
+
*
|
|
8914
|
+
* @type {PartialRecordLanguageEnumTitleStringDescription63String}
|
|
8915
|
+
* @memberof IUniquePageResponse
|
|
8916
|
+
*/
|
|
8917
|
+
'contents': PartialRecordLanguageEnumTitleStringDescription63String;
|
|
8918
|
+
/**
|
|
8919
|
+
*
|
|
8920
|
+
* @type {IImage}
|
|
8921
|
+
* @memberof IUniquePageResponse
|
|
8922
|
+
*/
|
|
8923
|
+
'thumbnail'?: IImage;
|
|
8924
|
+
/**
|
|
8925
|
+
*
|
|
8926
|
+
* @type {string}
|
|
8927
|
+
* @memberof IUniquePageResponse
|
|
8928
|
+
*/
|
|
8929
|
+
'type': string;
|
|
8930
|
+
/**
|
|
8931
|
+
*
|
|
8932
|
+
* @type {ITemplateResponse}
|
|
8933
|
+
* @memberof IUniquePageResponse
|
|
8934
|
+
*/
|
|
8935
|
+
'template': ITemplateResponse;
|
|
8936
|
+
/**
|
|
8937
|
+
*
|
|
8938
|
+
* @type {string}
|
|
8939
|
+
* @memberof IUniquePageResponse
|
|
8940
|
+
*/
|
|
8941
|
+
'title': string;
|
|
8942
|
+
/**
|
|
8943
|
+
*
|
|
8944
|
+
* @type {string}
|
|
8945
|
+
* @memberof IUniquePageResponse
|
|
8946
|
+
*/
|
|
8947
|
+
'description'?: string;
|
|
8948
|
+
}
|
|
8949
|
+
/**
|
|
8950
|
+
*
|
|
8951
|
+
* @export
|
|
8952
|
+
* @interface IUniquePagesResponse
|
|
8953
|
+
*/
|
|
8954
|
+
export interface IUniquePagesResponse {
|
|
8955
|
+
/**
|
|
8956
|
+
*
|
|
8957
|
+
* @type {number}
|
|
8958
|
+
* @memberof IUniquePagesResponse
|
|
8959
|
+
*/
|
|
8960
|
+
'page': number;
|
|
8961
|
+
/**
|
|
8962
|
+
*
|
|
8963
|
+
* @type {number}
|
|
8964
|
+
* @memberof IUniquePagesResponse
|
|
8965
|
+
*/
|
|
8966
|
+
'itemsPerPage': number;
|
|
8967
|
+
/**
|
|
8968
|
+
*
|
|
8969
|
+
* @type {number}
|
|
8970
|
+
* @memberof IUniquePagesResponse
|
|
8971
|
+
*/
|
|
8972
|
+
'total': number;
|
|
8973
|
+
/**
|
|
8974
|
+
*
|
|
8975
|
+
* @type {number}
|
|
8976
|
+
* @memberof IUniquePagesResponse
|
|
8977
|
+
*/
|
|
8978
|
+
'totalPages': number;
|
|
8979
|
+
/**
|
|
8980
|
+
*
|
|
8981
|
+
* @type {Array<IUniquePageResponse>}
|
|
8982
|
+
* @memberof IUniquePagesResponse
|
|
8983
|
+
*/
|
|
8984
|
+
'data': Array<IUniquePageResponse>;
|
|
8985
|
+
}
|
|
8759
8986
|
/**
|
|
8760
8987
|
*
|
|
8761
8988
|
* @export
|
|
@@ -9335,6 +9562,50 @@ export interface PartialRecordLanguageEnumTitleString {
|
|
|
9335
9562
|
*/
|
|
9336
9563
|
'de'?: RecordLanguageEnumTitleStringTr;
|
|
9337
9564
|
}
|
|
9565
|
+
/**
|
|
9566
|
+
* Make all properties in T optional
|
|
9567
|
+
* @export
|
|
9568
|
+
* @interface PartialRecordLanguageEnumTitleStringDescription63String
|
|
9569
|
+
*/
|
|
9570
|
+
export interface PartialRecordLanguageEnumTitleStringDescription63String {
|
|
9571
|
+
/**
|
|
9572
|
+
*
|
|
9573
|
+
* @type {PartialRecordLanguageEnumTitleStringDescription63StringTr}
|
|
9574
|
+
* @memberof PartialRecordLanguageEnumTitleStringDescription63String
|
|
9575
|
+
*/
|
|
9576
|
+
'tr'?: PartialRecordLanguageEnumTitleStringDescription63StringTr;
|
|
9577
|
+
/**
|
|
9578
|
+
*
|
|
9579
|
+
* @type {PartialRecordLanguageEnumTitleStringDescription63StringTr}
|
|
9580
|
+
* @memberof PartialRecordLanguageEnumTitleStringDescription63String
|
|
9581
|
+
*/
|
|
9582
|
+
'en'?: PartialRecordLanguageEnumTitleStringDescription63StringTr;
|
|
9583
|
+
/**
|
|
9584
|
+
*
|
|
9585
|
+
* @type {PartialRecordLanguageEnumTitleStringDescription63StringTr}
|
|
9586
|
+
* @memberof PartialRecordLanguageEnumTitleStringDescription63String
|
|
9587
|
+
*/
|
|
9588
|
+
'de'?: PartialRecordLanguageEnumTitleStringDescription63StringTr;
|
|
9589
|
+
}
|
|
9590
|
+
/**
|
|
9591
|
+
*
|
|
9592
|
+
* @export
|
|
9593
|
+
* @interface PartialRecordLanguageEnumTitleStringDescription63StringTr
|
|
9594
|
+
*/
|
|
9595
|
+
export interface PartialRecordLanguageEnumTitleStringDescription63StringTr {
|
|
9596
|
+
/**
|
|
9597
|
+
*
|
|
9598
|
+
* @type {string}
|
|
9599
|
+
* @memberof PartialRecordLanguageEnumTitleStringDescription63StringTr
|
|
9600
|
+
*/
|
|
9601
|
+
'description'?: string;
|
|
9602
|
+
/**
|
|
9603
|
+
*
|
|
9604
|
+
* @type {string}
|
|
9605
|
+
* @memberof PartialRecordLanguageEnumTitleStringDescription63StringTr
|
|
9606
|
+
*/
|
|
9607
|
+
'title': string;
|
|
9608
|
+
}
|
|
9338
9609
|
/**
|
|
9339
9610
|
*
|
|
9340
9611
|
* @export
|
|
@@ -11188,6 +11459,12 @@ export interface PickITemplateExcludeKeyofITemplateComponents {
|
|
|
11188
11459
|
* @memberof PickITemplateExcludeKeyofITemplateComponents
|
|
11189
11460
|
*/
|
|
11190
11461
|
'type': TemplateTypeEnum;
|
|
11462
|
+
/**
|
|
11463
|
+
*
|
|
11464
|
+
* @type {boolean}
|
|
11465
|
+
* @memberof PickITemplateExcludeKeyofITemplateComponents
|
|
11466
|
+
*/
|
|
11467
|
+
'unique': boolean;
|
|
11191
11468
|
}
|
|
11192
11469
|
/**
|
|
11193
11470
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -11225,6 +11502,12 @@ export interface PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoRes
|
|
|
11225
11502
|
* @memberof PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoResponse
|
|
11226
11503
|
*/
|
|
11227
11504
|
'type': TemplateTypeEnum;
|
|
11505
|
+
/**
|
|
11506
|
+
*
|
|
11507
|
+
* @type {boolean}
|
|
11508
|
+
* @memberof PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoResponse
|
|
11509
|
+
*/
|
|
11510
|
+
'unique': boolean;
|
|
11228
11511
|
}
|
|
11229
11512
|
/**
|
|
11230
11513
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -11354,6 +11637,69 @@ export interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseO
|
|
|
11354
11637
|
*/
|
|
11355
11638
|
'assetVersion': number;
|
|
11356
11639
|
}
|
|
11640
|
+
/**
|
|
11641
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
11642
|
+
* @export
|
|
11643
|
+
* @interface PickIUniquePageExcludeKeyofIUniquePageTemplate
|
|
11644
|
+
*/
|
|
11645
|
+
export interface PickIUniquePageExcludeKeyofIUniquePageTemplate {
|
|
11646
|
+
/**
|
|
11647
|
+
*
|
|
11648
|
+
* @type {string}
|
|
11649
|
+
* @memberof PickIUniquePageExcludeKeyofIUniquePageTemplate
|
|
11650
|
+
*/
|
|
11651
|
+
'company': string;
|
|
11652
|
+
/**
|
|
11653
|
+
*
|
|
11654
|
+
* @type {string}
|
|
11655
|
+
* @memberof PickIUniquePageExcludeKeyofIUniquePageTemplate
|
|
11656
|
+
*/
|
|
11657
|
+
'_id': string;
|
|
11658
|
+
/**
|
|
11659
|
+
*
|
|
11660
|
+
* @type {number}
|
|
11661
|
+
* @memberof PickIUniquePageExcludeKeyofIUniquePageTemplate
|
|
11662
|
+
*/
|
|
11663
|
+
'__v': number;
|
|
11664
|
+
/**
|
|
11665
|
+
*
|
|
11666
|
+
* @type {string}
|
|
11667
|
+
* @memberof PickIUniquePageExcludeKeyofIUniquePageTemplate
|
|
11668
|
+
*/
|
|
11669
|
+
'createdAt': string;
|
|
11670
|
+
/**
|
|
11671
|
+
*
|
|
11672
|
+
* @type {string}
|
|
11673
|
+
* @memberof PickIUniquePageExcludeKeyofIUniquePageTemplate
|
|
11674
|
+
*/
|
|
11675
|
+
'updatedAt': string;
|
|
11676
|
+
/**
|
|
11677
|
+
* Construct a type with a set of properties K of type T
|
|
11678
|
+
* @type {{ [key: string]: string; }}
|
|
11679
|
+
* @memberof PickIUniquePageExcludeKeyofIUniquePageTemplate
|
|
11680
|
+
*/
|
|
11681
|
+
'templates': {
|
|
11682
|
+
[key: string]: string;
|
|
11683
|
+
};
|
|
11684
|
+
/**
|
|
11685
|
+
*
|
|
11686
|
+
* @type {PartialRecordLanguageEnumTitleStringDescription63String}
|
|
11687
|
+
* @memberof PickIUniquePageExcludeKeyofIUniquePageTemplate
|
|
11688
|
+
*/
|
|
11689
|
+
'contents': PartialRecordLanguageEnumTitleStringDescription63String;
|
|
11690
|
+
/**
|
|
11691
|
+
*
|
|
11692
|
+
* @type {IImage}
|
|
11693
|
+
* @memberof PickIUniquePageExcludeKeyofIUniquePageTemplate
|
|
11694
|
+
*/
|
|
11695
|
+
'thumbnail'?: IImage;
|
|
11696
|
+
/**
|
|
11697
|
+
*
|
|
11698
|
+
* @type {string}
|
|
11699
|
+
* @memberof PickIUniquePageExcludeKeyofIUniquePageTemplate
|
|
11700
|
+
*/
|
|
11701
|
+
'type': string;
|
|
11702
|
+
}
|
|
11357
11703
|
/**
|
|
11358
11704
|
* From T, pick a set of properties whose keys are in the union K
|
|
11359
11705
|
* @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.GetProductsSortEnum = void 0;
|
|
19
|
+
exports.PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum = exports.PaymentStatusEnum = exports.PaymentMethodEnum = 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.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.ComponentProductTypeEnum = exports.ComponentProductOrderEnum = exports.ComponentProductListTypeEnum = exports.CompanyUserStatusEnum = exports.CompanyTypeEnum = exports.CompanyStatusEnum = void 0;
|
|
20
|
+
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.TemplateTypeEnum = exports.SitemapTypeEnum = exports.ShippingPricingTypeEnum = exports.ReviewStatusEnum = exports.PlanTypeEnum = exports.PlanStatusEnum = exports.PlanCurrencyEnum = void 0;
|
|
21
|
+
exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.SitemapApi = exports.SitemapApiFactory = exports.SitemapApiFp = exports.SitemapApiAxiosParamCreator = exports.GetProductsSortEnum = exports.GetProductsDateFieldEnum = void 0;
|
|
22
22
|
const axios_1 = __importDefault(require("axios"));
|
|
23
23
|
// Some imports not used depending on template conditions
|
|
24
24
|
// @ts-ignore
|
|
@@ -486,6 +486,10 @@ exports.IProductCollectionQueryParamsSortEnum = {
|
|
|
486
486
|
RATING: 'rating',
|
|
487
487
|
REVIEW_COUNT: 'reviewCount'
|
|
488
488
|
};
|
|
489
|
+
exports.IUniqueCollectionQueryParamsDateFieldEnum = {
|
|
490
|
+
CREATED_AT: 'createdAt',
|
|
491
|
+
UPDATED_AT: 'updatedAt'
|
|
492
|
+
};
|
|
489
493
|
exports.IUserCollectionQueryParamsDateFieldEnum = {
|
|
490
494
|
CREATED_AT: 'createdAt',
|
|
491
495
|
UPDATED_AT: 'updatedAt'
|
package/dist/api/api.mjs
CHANGED
|
@@ -475,6 +475,10 @@ export const IProductCollectionQueryParamsSortEnum = {
|
|
|
475
475
|
RATING: 'rating',
|
|
476
476
|
REVIEW_COUNT: 'reviewCount'
|
|
477
477
|
};
|
|
478
|
+
export const IUniqueCollectionQueryParamsDateFieldEnum = {
|
|
479
|
+
CREATED_AT: 'createdAt',
|
|
480
|
+
UPDATED_AT: 'updatedAt'
|
|
481
|
+
};
|
|
478
482
|
export const IUserCollectionQueryParamsDateFieldEnum = {
|
|
479
483
|
CREATED_AT: 'createdAt',
|
|
480
484
|
UPDATED_AT: 'updatedAt'
|
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.12",
|
|
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": "e4629988290e61c25daf6d1288de944a4e4e4daf"
|
|
41
41
|
}
|