@infisale-client/api 1.3.39 → 1.3.40
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 +137 -153
- package/dist/api/api.js +32 -4
- package/dist/api/api.mjs +28 -0
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -6876,6 +6876,12 @@ export interface IPlanPatchRequest {
|
|
|
6876
6876
|
* @memberof IPlanPatchRequest
|
|
6877
6877
|
*/
|
|
6878
6878
|
'status'?: PlanStatusEnum;
|
|
6879
|
+
/**
|
|
6880
|
+
*
|
|
6881
|
+
* @type {Array<IPlanResponseAttributesInner>}
|
|
6882
|
+
* @memberof IPlanPatchRequest
|
|
6883
|
+
*/
|
|
6884
|
+
'attributes'?: Array<IPlanResponseAttributesInner>;
|
|
6879
6885
|
/**
|
|
6880
6886
|
*
|
|
6881
6887
|
* @type {PlanTypeEnum}
|
|
@@ -6931,6 +6937,12 @@ export interface IPlanPostRequest {
|
|
|
6931
6937
|
* @memberof IPlanPostRequest
|
|
6932
6938
|
*/
|
|
6933
6939
|
'status': PlanStatusEnum;
|
|
6940
|
+
/**
|
|
6941
|
+
*
|
|
6942
|
+
* @type {Array<IPlanResponseAttributesInner>}
|
|
6943
|
+
* @memberof IPlanPostRequest
|
|
6944
|
+
*/
|
|
6945
|
+
'attributes': Array<IPlanResponseAttributesInner>;
|
|
6934
6946
|
/**
|
|
6935
6947
|
*
|
|
6936
6948
|
* @type {PlanTypeEnum}
|
|
@@ -7028,6 +7040,12 @@ export interface IPlanResponse {
|
|
|
7028
7040
|
* @memberof IPlanResponse
|
|
7029
7041
|
*/
|
|
7030
7042
|
'limits': IPlanResponseLimits;
|
|
7043
|
+
/**
|
|
7044
|
+
*
|
|
7045
|
+
* @type {Array<IPlanResponseAttributesInner>}
|
|
7046
|
+
* @memberof IPlanResponse
|
|
7047
|
+
*/
|
|
7048
|
+
'attributes': Array<IPlanResponseAttributesInner>;
|
|
7031
7049
|
/**
|
|
7032
7050
|
*
|
|
7033
7051
|
* @type {number}
|
|
@@ -7041,6 +7059,37 @@ export interface IPlanResponse {
|
|
|
7041
7059
|
*/
|
|
7042
7060
|
'status': PlanStatusEnum;
|
|
7043
7061
|
}
|
|
7062
|
+
/**
|
|
7063
|
+
*
|
|
7064
|
+
* @export
|
|
7065
|
+
* @interface IPlanResponseAttributesInner
|
|
7066
|
+
*/
|
|
7067
|
+
export interface IPlanResponseAttributesInner {
|
|
7068
|
+
/**
|
|
7069
|
+
*
|
|
7070
|
+
* @type {RecordLanguageEnumString}
|
|
7071
|
+
* @memberof IPlanResponseAttributesInner
|
|
7072
|
+
*/
|
|
7073
|
+
'description': RecordLanguageEnumString;
|
|
7074
|
+
/**
|
|
7075
|
+
*
|
|
7076
|
+
* @type {RecordLanguageEnumUnknown}
|
|
7077
|
+
* @memberof IPlanResponseAttributesInner
|
|
7078
|
+
*/
|
|
7079
|
+
'value': RecordLanguageEnumUnknown;
|
|
7080
|
+
/**
|
|
7081
|
+
*
|
|
7082
|
+
* @type {PlanAttributeGroupEnum}
|
|
7083
|
+
* @memberof IPlanResponseAttributesInner
|
|
7084
|
+
*/
|
|
7085
|
+
'group': PlanAttributeGroupEnum;
|
|
7086
|
+
/**
|
|
7087
|
+
*
|
|
7088
|
+
* @type {PlanAttributeKeyEnum}
|
|
7089
|
+
* @memberof IPlanResponseAttributesInner
|
|
7090
|
+
*/
|
|
7091
|
+
'key': PlanAttributeKeyEnum;
|
|
7092
|
+
}
|
|
7044
7093
|
/**
|
|
7045
7094
|
*
|
|
7046
7095
|
* @export
|
|
@@ -8774,48 +8823,6 @@ export interface IThemePatchRequest {
|
|
|
8774
8823
|
* @memberof IThemePatchRequest
|
|
8775
8824
|
*/
|
|
8776
8825
|
'thumbnail'?: IImage;
|
|
8777
|
-
/**
|
|
8778
|
-
* Construct a type with a set of properties K of type T
|
|
8779
|
-
* @type {{ [key: string]: any; }}
|
|
8780
|
-
* @memberof IThemePatchRequest
|
|
8781
|
-
*/
|
|
8782
|
-
'config'?: {
|
|
8783
|
-
[key: string]: any;
|
|
8784
|
-
};
|
|
8785
|
-
/**
|
|
8786
|
-
* Make all properties in T optional
|
|
8787
|
-
* @type {{ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
|
|
8788
|
-
* @memberof IThemePatchRequest
|
|
8789
|
-
*/
|
|
8790
|
-
'groups'?: {
|
|
8791
|
-
[key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue;
|
|
8792
|
-
};
|
|
8793
|
-
/**
|
|
8794
|
-
*
|
|
8795
|
-
* @type {string}
|
|
8796
|
-
* @memberof IThemePatchRequest
|
|
8797
|
-
*/
|
|
8798
|
-
'demoUrl'?: string;
|
|
8799
|
-
/**
|
|
8800
|
-
*
|
|
8801
|
-
* @type {string}
|
|
8802
|
-
* @memberof IThemePatchRequest
|
|
8803
|
-
*/
|
|
8804
|
-
'assetUrl'?: string;
|
|
8805
|
-
/**
|
|
8806
|
-
*
|
|
8807
|
-
* @type {number}
|
|
8808
|
-
* @memberof IThemePatchRequest
|
|
8809
|
-
*/
|
|
8810
|
-
'assetVersion'?: number;
|
|
8811
|
-
/**
|
|
8812
|
-
* Construct a type with a set of properties K of type T
|
|
8813
|
-
* @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue; }}
|
|
8814
|
-
* @memberof IThemePatchRequest
|
|
8815
|
-
*/
|
|
8816
|
-
'componentConfigIndex'?: {
|
|
8817
|
-
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue;
|
|
8818
|
-
};
|
|
8819
8826
|
}
|
|
8820
8827
|
/**
|
|
8821
8828
|
*
|
|
@@ -8841,48 +8848,6 @@ export interface IThemePostRequest {
|
|
|
8841
8848
|
* @memberof IThemePostRequest
|
|
8842
8849
|
*/
|
|
8843
8850
|
'type': CompanyTypeEnum;
|
|
8844
|
-
/**
|
|
8845
|
-
* Construct a type with a set of properties K of type T
|
|
8846
|
-
* @type {{ [key: string]: any; }}
|
|
8847
|
-
* @memberof IThemePostRequest
|
|
8848
|
-
*/
|
|
8849
|
-
'config': {
|
|
8850
|
-
[key: string]: any;
|
|
8851
|
-
};
|
|
8852
|
-
/**
|
|
8853
|
-
* Make all properties in T optional
|
|
8854
|
-
* @type {{ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
|
|
8855
|
-
* @memberof IThemePostRequest
|
|
8856
|
-
*/
|
|
8857
|
-
'groups': {
|
|
8858
|
-
[key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue;
|
|
8859
|
-
};
|
|
8860
|
-
/**
|
|
8861
|
-
*
|
|
8862
|
-
* @type {string}
|
|
8863
|
-
* @memberof IThemePostRequest
|
|
8864
|
-
*/
|
|
8865
|
-
'demoUrl'?: string;
|
|
8866
|
-
/**
|
|
8867
|
-
*
|
|
8868
|
-
* @type {string}
|
|
8869
|
-
* @memberof IThemePostRequest
|
|
8870
|
-
*/
|
|
8871
|
-
'assetUrl': string;
|
|
8872
|
-
/**
|
|
8873
|
-
*
|
|
8874
|
-
* @type {number}
|
|
8875
|
-
* @memberof IThemePostRequest
|
|
8876
|
-
*/
|
|
8877
|
-
'assetVersion': number;
|
|
8878
|
-
/**
|
|
8879
|
-
* Construct a type with a set of properties K of type T
|
|
8880
|
-
* @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue; }}
|
|
8881
|
-
* @memberof IThemePostRequest
|
|
8882
|
-
*/
|
|
8883
|
-
'componentConfigIndex': {
|
|
8884
|
-
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue;
|
|
8885
|
-
};
|
|
8886
8851
|
}
|
|
8887
8852
|
/**
|
|
8888
8853
|
*
|
|
@@ -8901,7 +8866,7 @@ export interface IThemeResponse {
|
|
|
8901
8866
|
* @type {string}
|
|
8902
8867
|
* @memberof IThemeResponse
|
|
8903
8868
|
*/
|
|
8904
|
-
'company'
|
|
8869
|
+
'company'?: string;
|
|
8905
8870
|
/**
|
|
8906
8871
|
*
|
|
8907
8872
|
* @type {string}
|
|
@@ -11574,6 +11539,12 @@ export interface PickIPlanExcludeKeyofIPlanKeyofMongoResponse {
|
|
|
11574
11539
|
* @memberof PickIPlanExcludeKeyofIPlanKeyofMongoResponse
|
|
11575
11540
|
*/
|
|
11576
11541
|
'status': PlanStatusEnum;
|
|
11542
|
+
/**
|
|
11543
|
+
*
|
|
11544
|
+
* @type {Array<IPlanResponseAttributesInner>}
|
|
11545
|
+
* @memberof PickIPlanExcludeKeyofIPlanKeyofMongoResponse
|
|
11546
|
+
*/
|
|
11547
|
+
'attributes': Array<IPlanResponseAttributesInner>;
|
|
11577
11548
|
/**
|
|
11578
11549
|
*
|
|
11579
11550
|
* @type {PlanTypeEnum}
|
|
@@ -12172,7 +12143,7 @@ export interface PickIThemeExcludeKeyofIThemeGroups {
|
|
|
12172
12143
|
* @type {string}
|
|
12173
12144
|
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12174
12145
|
*/
|
|
12175
|
-
'company'
|
|
12146
|
+
'company'?: string;
|
|
12176
12147
|
/**
|
|
12177
12148
|
*
|
|
12178
12149
|
* @type {string}
|
|
@@ -12236,73 +12207,6 @@ export interface PickIThemeExcludeKeyofIThemeGroups {
|
|
|
12236
12207
|
*/
|
|
12237
12208
|
'creator'?: string;
|
|
12238
12209
|
}
|
|
12239
|
-
/**
|
|
12240
|
-
* From T, pick a set of properties whose keys are in the union K
|
|
12241
|
-
* @export
|
|
12242
|
-
* @interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
12243
|
-
*/
|
|
12244
|
-
export interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles {
|
|
12245
|
-
/**
|
|
12246
|
-
*
|
|
12247
|
-
* @type {string}
|
|
12248
|
-
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
12249
|
-
*/
|
|
12250
|
-
'name': string;
|
|
12251
|
-
/**
|
|
12252
|
-
*
|
|
12253
|
-
* @type {IImage}
|
|
12254
|
-
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
12255
|
-
*/
|
|
12256
|
-
'thumbnail'?: IImage;
|
|
12257
|
-
/**
|
|
12258
|
-
*
|
|
12259
|
-
* @type {CompanyTypeEnum}
|
|
12260
|
-
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
12261
|
-
*/
|
|
12262
|
-
'type': CompanyTypeEnum;
|
|
12263
|
-
/**
|
|
12264
|
-
* Construct a type with a set of properties K of type T
|
|
12265
|
-
* @type {{ [key: string]: any; }}
|
|
12266
|
-
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
12267
|
-
*/
|
|
12268
|
-
'config': {
|
|
12269
|
-
[key: string]: any;
|
|
12270
|
-
};
|
|
12271
|
-
/**
|
|
12272
|
-
* Make all properties in T optional
|
|
12273
|
-
* @type {{ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
|
|
12274
|
-
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
12275
|
-
*/
|
|
12276
|
-
'groups': {
|
|
12277
|
-
[key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue;
|
|
12278
|
-
};
|
|
12279
|
-
/**
|
|
12280
|
-
*
|
|
12281
|
-
* @type {string}
|
|
12282
|
-
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
12283
|
-
*/
|
|
12284
|
-
'demoUrl'?: string;
|
|
12285
|
-
/**
|
|
12286
|
-
*
|
|
12287
|
-
* @type {string}
|
|
12288
|
-
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
12289
|
-
*/
|
|
12290
|
-
'assetUrl': string;
|
|
12291
|
-
/**
|
|
12292
|
-
*
|
|
12293
|
-
* @type {number}
|
|
12294
|
-
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
12295
|
-
*/
|
|
12296
|
-
'assetVersion': number;
|
|
12297
|
-
/**
|
|
12298
|
-
* Construct a type with a set of properties K of type T
|
|
12299
|
-
* @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue; }}
|
|
12300
|
-
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
12301
|
-
*/
|
|
12302
|
-
'componentConfigIndex': {
|
|
12303
|
-
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue;
|
|
12304
|
-
};
|
|
12305
|
-
}
|
|
12306
12210
|
/**
|
|
12307
12211
|
* From T, pick a set of properties whose keys are in the union K
|
|
12308
12212
|
* @export
|
|
@@ -12551,6 +12455,36 @@ export interface PickShippingProviderExcludeKeyofShippingProviderId {
|
|
|
12551
12455
|
*/
|
|
12552
12456
|
'rates': Array<ShippingProviderRates>;
|
|
12553
12457
|
}
|
|
12458
|
+
/**
|
|
12459
|
+
*
|
|
12460
|
+
* @export
|
|
12461
|
+
* @enum {string}
|
|
12462
|
+
*/
|
|
12463
|
+
export declare const PlanAttributeGroupEnum: {
|
|
12464
|
+
readonly BASIC: "basic";
|
|
12465
|
+
};
|
|
12466
|
+
export type PlanAttributeGroupEnum = typeof PlanAttributeGroupEnum[keyof typeof PlanAttributeGroupEnum];
|
|
12467
|
+
/**
|
|
12468
|
+
*
|
|
12469
|
+
* @export
|
|
12470
|
+
* @enum {string}
|
|
12471
|
+
*/
|
|
12472
|
+
export declare const PlanAttributeKeyEnum: {
|
|
12473
|
+
readonly BANDWIDTH: "bandwidth";
|
|
12474
|
+
readonly STORAGE: "storage";
|
|
12475
|
+
readonly CSM_COLLECTION: "csm-collection";
|
|
12476
|
+
readonly CMS_ITEMS: "cms-items";
|
|
12477
|
+
readonly PRODUCTS: "products";
|
|
12478
|
+
readonly LANGUAGES: "languages";
|
|
12479
|
+
readonly USERS: "users";
|
|
12480
|
+
readonly DOMAINS: "domains";
|
|
12481
|
+
readonly WAREHOUSES: "warehouses";
|
|
12482
|
+
readonly FIREBASE_LOGIN: "firebase-login";
|
|
12483
|
+
readonly FREE_SSL: "free-ssl";
|
|
12484
|
+
readonly COMMISSION: "commission";
|
|
12485
|
+
readonly CUSTOM_DOMAIN: "custom-domain";
|
|
12486
|
+
};
|
|
12487
|
+
export type PlanAttributeKeyEnum = typeof PlanAttributeKeyEnum[keyof typeof PlanAttributeKeyEnum];
|
|
12554
12488
|
/**
|
|
12555
12489
|
*
|
|
12556
12490
|
* @export
|
|
@@ -12765,6 +12699,31 @@ export interface RecordCustomPaymentMethodEnumExtraFeeNumberInfoPartialRecordLan
|
|
|
12765
12699
|
*/
|
|
12766
12700
|
'extraFee': number;
|
|
12767
12701
|
}
|
|
12702
|
+
/**
|
|
12703
|
+
* Construct a type with a set of properties K of type T
|
|
12704
|
+
* @export
|
|
12705
|
+
* @interface RecordLanguageEnumString
|
|
12706
|
+
*/
|
|
12707
|
+
export interface RecordLanguageEnumString {
|
|
12708
|
+
/**
|
|
12709
|
+
*
|
|
12710
|
+
* @type {string}
|
|
12711
|
+
* @memberof RecordLanguageEnumString
|
|
12712
|
+
*/
|
|
12713
|
+
'tr': string;
|
|
12714
|
+
/**
|
|
12715
|
+
*
|
|
12716
|
+
* @type {string}
|
|
12717
|
+
* @memberof RecordLanguageEnumString
|
|
12718
|
+
*/
|
|
12719
|
+
'en': string;
|
|
12720
|
+
/**
|
|
12721
|
+
*
|
|
12722
|
+
* @type {string}
|
|
12723
|
+
* @memberof RecordLanguageEnumString
|
|
12724
|
+
*/
|
|
12725
|
+
'de': string;
|
|
12726
|
+
}
|
|
12768
12727
|
/**
|
|
12769
12728
|
* Construct a type with a set of properties K of type T
|
|
12770
12729
|
* @export
|
|
@@ -12803,6 +12762,31 @@ export interface RecordLanguageEnumTitleStringTr {
|
|
|
12803
12762
|
*/
|
|
12804
12763
|
'title': string;
|
|
12805
12764
|
}
|
|
12765
|
+
/**
|
|
12766
|
+
* Construct a type with a set of properties K of type T
|
|
12767
|
+
* @export
|
|
12768
|
+
* @interface RecordLanguageEnumUnknown
|
|
12769
|
+
*/
|
|
12770
|
+
export interface RecordLanguageEnumUnknown {
|
|
12771
|
+
/**
|
|
12772
|
+
*
|
|
12773
|
+
* @type {any}
|
|
12774
|
+
* @memberof RecordLanguageEnumUnknown
|
|
12775
|
+
*/
|
|
12776
|
+
'tr': any;
|
|
12777
|
+
/**
|
|
12778
|
+
*
|
|
12779
|
+
* @type {any}
|
|
12780
|
+
* @memberof RecordLanguageEnumUnknown
|
|
12781
|
+
*/
|
|
12782
|
+
'en': any;
|
|
12783
|
+
/**
|
|
12784
|
+
*
|
|
12785
|
+
* @type {any}
|
|
12786
|
+
* @memberof RecordLanguageEnumUnknown
|
|
12787
|
+
*/
|
|
12788
|
+
'de': any;
|
|
12789
|
+
}
|
|
12806
12790
|
/**
|
|
12807
12791
|
* Construct a type with a set of properties K of type T
|
|
12808
12792
|
* @export
|
package/dist/api/api.js
CHANGED
|
@@ -16,10 +16,10 @@ 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.
|
|
22
|
-
exports.GetUsersDateFieldEnum = exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.GetUrlRedirectsSortEnum = exports.GetUrlRedirectsDateFieldEnum = exports.UrlRedirectApi = exports.UrlRedirectApiFactory = exports.UrlRedirectApiFp = exports.UrlRedirectApiAxiosParamCreator = exports.GetUniquePagesDateFieldEnum = exports.UniquePageApi = exports.UniquePageApiFactory = exports.UniquePageApiFp = exports.UniquePageApiAxiosParamCreator = exports.ThemeApi = exports.ThemeApiFactory = void 0;
|
|
19
|
+
exports.PlanAttributeGroupEnum = exports.PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum = exports.PaymentMethodEnum = exports.PaymentGatewayEnum = exports.OrderStatusEnum = exports.OrderShippedStatusEnum = exports.OrderReturnStatusEnumWAITINGRETURN = exports.OrderReturnStatusEnumRETURNED = exports.OrderReturnStatusEnum = exports.OrderPaymentStatusEnum = exports.OrderEnum = exports.OperationStatusEnum = exports.NotificationStatusEnum = exports.NotificationMessageEnum = exports.NavigationUrlTargetEnum = exports.LanguageEnum = exports.IUserCollectionQueryParamsDateFieldEnum = exports.IUrlRedirectCollectionQueryParamsSortEnum = exports.IUrlRedirectCollectionQueryParamsDateFieldEnum = exports.IUniqueCollectionQueryParamsDateFieldEnum = exports.ISubscriptionPostRequestPeriodEnum = exports.IProductCollectionQueryParamsSortEnum = exports.IProductCollectionQueryParamsDateFieldEnum = exports.IPlanCollectionQueryParamsCategoryEnum = exports.IPlanCollectionQueryParamsDateFieldEnum = exports.IPageCollectionQueryParamsDateFieldEnum = exports.IOrderCollectionQueryParamsDateFieldEnum = exports.IOperationCollectionQueryParamsDateFieldEnum = exports.INotificationCollectionQueryParamsDateFieldEnum = exports.INavigationCollectionQueryParamsDateFieldEnum = exports.IMyOrderCollectionQueryParamsDateFieldEnum = exports.IFileCollectionQueryParamsDateFieldEnum = exports.IContactFormCollectionQueryParamsDateFieldEnum = exports.ICompanyUsersCollectionQueryParamsDateFieldEnum = exports.ICompanyDashboardResponsePeriodEnum = exports.ICompanyCollectionQueryParamsDateFieldEnum = exports.ICollectionCollectionsQueryParamsDateFieldEnum = exports.ICategoryCollectionQueryParamsDateFieldEnum = exports.IBrandCollectionQueryParamsDateFieldEnum = exports.FileTypeEnum = exports.FileStatusEnum = exports.FileKeywordEnum = exports.EmailConfigDnsRecordTypeEnum = exports.CurrencyRateTypeEnum = exports.CurrencyEnum = exports.CountryEnum = exports.ContentStatusEnum = exports.CompanyUserStatusEnum = exports.CompanyTypeEnum = exports.CompanyStatusEnum = void 0;
|
|
20
|
+
exports.FileApiAxiosParamCreator = exports.GetContactFormsDateFieldEnum = exports.ContactFormApi = exports.ContactFormApiFactory = exports.ContactFormApiFp = exports.ContactFormApiAxiosParamCreator = exports.GetCompanyCustomersDateFieldEnum = exports.GetCompaniesDateFieldEnum = exports.CompanyApi = exports.CompanyApiFactory = exports.CompanyApiFp = exports.CompanyApiAxiosParamCreator = exports.GetCollectionsDateFieldEnum = exports.CollectionApi = exports.CollectionApiFactory = exports.CollectionApiFp = exports.CollectionApiAxiosParamCreator = exports.GetCategoriesDateFieldEnum = exports.CategoryApi = exports.CategoryApiFactory = exports.CategoryApiFp = exports.CategoryApiAxiosParamCreator = exports.GetBrandsDateFieldEnum = exports.BrandApi = exports.BrandApiFactory = exports.BrandApiFp = exports.BrandApiAxiosParamCreator = 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.SubscriptionStatusEnum = exports.StoreLocationEnum = exports.SitemapTypeEnum = exports.ShippingPricingTypeEnum = exports.ReviewStatusEnum = exports.PlanTypeEnum = exports.PlanStatusEnum = exports.PlanAttributeKeyEnum = void 0;
|
|
21
|
+
exports.TemplateApi = exports.TemplateApiFactory = exports.TemplateApiFp = exports.TemplateApiAxiosParamCreator = exports.SitemapApi = exports.SitemapApiFactory = exports.SitemapApiFp = exports.SitemapApiAxiosParamCreator = exports.GetProductsSortEnum = exports.GetProductsDateFieldEnum = exports.ProductApi = exports.ProductApiFactory = exports.ProductApiFp = exports.ProductApiAxiosParamCreator = exports.GetPlansCategoryEnum = exports.GetPlansDateFieldEnum = exports.PlanApi = exports.PlanApiFactory = exports.PlanApiFp = exports.PlanApiAxiosParamCreator = exports.GetPagesDateFieldEnum = exports.PageApi = exports.PageApiFactory = exports.PageApiFp = exports.PageApiAxiosParamCreator = exports.GetOrdersDateFieldEnum = exports.GetMyOrdersDateFieldEnum = exports.OrderApi = exports.OrderApiFactory = exports.OrderApiFp = exports.OrderApiAxiosParamCreator = exports.GetOperationsDateFieldEnum = exports.OperationApi = exports.OperationApiFactory = exports.OperationApiFp = exports.OperationApiAxiosParamCreator = exports.GetNotificationsDateFieldEnum = exports.NotificationApi = exports.NotificationApiFactory = exports.NotificationApiFp = exports.NotificationApiAxiosParamCreator = exports.GetNavigationsDateFieldEnum = exports.NavigationApi = exports.NavigationApiFactory = exports.NavigationApiFp = exports.NavigationApiAxiosParamCreator = exports.GetFilesDateFieldEnum = exports.FileApi = exports.FileApiFactory = exports.FileApiFp = void 0;
|
|
22
|
+
exports.GetUsersDateFieldEnum = exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.GetUrlRedirectsSortEnum = exports.GetUrlRedirectsDateFieldEnum = exports.UrlRedirectApi = exports.UrlRedirectApiFactory = exports.UrlRedirectApiFp = exports.UrlRedirectApiAxiosParamCreator = exports.GetUniquePagesDateFieldEnum = exports.UniquePageApi = exports.UniquePageApiFactory = exports.UniquePageApiFp = exports.UniquePageApiAxiosParamCreator = exports.ThemeApi = exports.ThemeApiFactory = exports.ThemeApiFp = exports.ThemeApiAxiosParamCreator = void 0;
|
|
23
23
|
const axios_1 = __importDefault(require("axios"));
|
|
24
24
|
// Some imports not used depending on template conditions
|
|
25
25
|
// @ts-ignore
|
|
@@ -617,6 +617,34 @@ exports.PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFiel
|
|
|
617
617
|
CREATED_AT: 'createdAt',
|
|
618
618
|
UPDATED_AT: 'updatedAt'
|
|
619
619
|
};
|
|
620
|
+
/**
|
|
621
|
+
*
|
|
622
|
+
* @export
|
|
623
|
+
* @enum {string}
|
|
624
|
+
*/
|
|
625
|
+
exports.PlanAttributeGroupEnum = {
|
|
626
|
+
BASIC: 'basic'
|
|
627
|
+
};
|
|
628
|
+
/**
|
|
629
|
+
*
|
|
630
|
+
* @export
|
|
631
|
+
* @enum {string}
|
|
632
|
+
*/
|
|
633
|
+
exports.PlanAttributeKeyEnum = {
|
|
634
|
+
BANDWIDTH: 'bandwidth',
|
|
635
|
+
STORAGE: 'storage',
|
|
636
|
+
CSM_COLLECTION: 'csm-collection',
|
|
637
|
+
CMS_ITEMS: 'cms-items',
|
|
638
|
+
PRODUCTS: 'products',
|
|
639
|
+
LANGUAGES: 'languages',
|
|
640
|
+
USERS: 'users',
|
|
641
|
+
DOMAINS: 'domains',
|
|
642
|
+
WAREHOUSES: 'warehouses',
|
|
643
|
+
FIREBASE_LOGIN: 'firebase-login',
|
|
644
|
+
FREE_SSL: 'free-ssl',
|
|
645
|
+
COMMISSION: 'commission',
|
|
646
|
+
CUSTOM_DOMAIN: 'custom-domain'
|
|
647
|
+
};
|
|
620
648
|
/**
|
|
621
649
|
*
|
|
622
650
|
* @export
|
package/dist/api/api.mjs
CHANGED
|
@@ -605,6 +605,34 @@ export const PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDat
|
|
|
605
605
|
CREATED_AT: 'createdAt',
|
|
606
606
|
UPDATED_AT: 'updatedAt'
|
|
607
607
|
};
|
|
608
|
+
/**
|
|
609
|
+
*
|
|
610
|
+
* @export
|
|
611
|
+
* @enum {string}
|
|
612
|
+
*/
|
|
613
|
+
export const PlanAttributeGroupEnum = {
|
|
614
|
+
BASIC: 'basic'
|
|
615
|
+
};
|
|
616
|
+
/**
|
|
617
|
+
*
|
|
618
|
+
* @export
|
|
619
|
+
* @enum {string}
|
|
620
|
+
*/
|
|
621
|
+
export const PlanAttributeKeyEnum = {
|
|
622
|
+
BANDWIDTH: 'bandwidth',
|
|
623
|
+
STORAGE: 'storage',
|
|
624
|
+
CSM_COLLECTION: 'csm-collection',
|
|
625
|
+
CMS_ITEMS: 'cms-items',
|
|
626
|
+
PRODUCTS: 'products',
|
|
627
|
+
LANGUAGES: 'languages',
|
|
628
|
+
USERS: 'users',
|
|
629
|
+
DOMAINS: 'domains',
|
|
630
|
+
WAREHOUSES: 'warehouses',
|
|
631
|
+
FIREBASE_LOGIN: 'firebase-login',
|
|
632
|
+
FREE_SSL: 'free-ssl',
|
|
633
|
+
COMMISSION: 'commission',
|
|
634
|
+
CUSTOM_DOMAIN: 'custom-domain'
|
|
635
|
+
};
|
|
608
636
|
/**
|
|
609
637
|
*
|
|
610
638
|
* @export
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.40",
|
|
4
4
|
"description": "api-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": "e8c9241105d98e7beb9248334b8ae4df0ae53fcf"
|
|
41
41
|
}
|