@infisale-client/api-client 1.3.38 → 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 +144 -160
- package/dist/api/api.js +31 -3
- package/dist/api/api.mjs +28 -0
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -6863,6 +6863,12 @@ export interface IPlanPatchRequest {
|
|
|
6863
6863
|
* @memberof IPlanPatchRequest
|
|
6864
6864
|
*/
|
|
6865
6865
|
'status'?: PlanStatusEnum;
|
|
6866
|
+
/**
|
|
6867
|
+
*
|
|
6868
|
+
* @type {Array<IPlanResponseAttributesInner>}
|
|
6869
|
+
* @memberof IPlanPatchRequest
|
|
6870
|
+
*/
|
|
6871
|
+
'attributes'?: Array<IPlanResponseAttributesInner>;
|
|
6866
6872
|
/**
|
|
6867
6873
|
*
|
|
6868
6874
|
* @type {PlanTypeEnum}
|
|
@@ -6918,6 +6924,12 @@ export interface IPlanPostRequest {
|
|
|
6918
6924
|
* @memberof IPlanPostRequest
|
|
6919
6925
|
*/
|
|
6920
6926
|
'status': PlanStatusEnum;
|
|
6927
|
+
/**
|
|
6928
|
+
*
|
|
6929
|
+
* @type {Array<IPlanResponseAttributesInner>}
|
|
6930
|
+
* @memberof IPlanPostRequest
|
|
6931
|
+
*/
|
|
6932
|
+
'attributes': Array<IPlanResponseAttributesInner>;
|
|
6921
6933
|
/**
|
|
6922
6934
|
*
|
|
6923
6935
|
* @type {PlanTypeEnum}
|
|
@@ -7015,6 +7027,12 @@ export interface IPlanResponse {
|
|
|
7015
7027
|
* @memberof IPlanResponse
|
|
7016
7028
|
*/
|
|
7017
7029
|
'limits': IPlanResponseLimits;
|
|
7030
|
+
/**
|
|
7031
|
+
*
|
|
7032
|
+
* @type {Array<IPlanResponseAttributesInner>}
|
|
7033
|
+
* @memberof IPlanResponse
|
|
7034
|
+
*/
|
|
7035
|
+
'attributes': Array<IPlanResponseAttributesInner>;
|
|
7018
7036
|
/**
|
|
7019
7037
|
*
|
|
7020
7038
|
* @type {number}
|
|
@@ -7028,6 +7046,37 @@ export interface IPlanResponse {
|
|
|
7028
7046
|
*/
|
|
7029
7047
|
'status': PlanStatusEnum;
|
|
7030
7048
|
}
|
|
7049
|
+
/**
|
|
7050
|
+
*
|
|
7051
|
+
* @export
|
|
7052
|
+
* @interface IPlanResponseAttributesInner
|
|
7053
|
+
*/
|
|
7054
|
+
export interface IPlanResponseAttributesInner {
|
|
7055
|
+
/**
|
|
7056
|
+
*
|
|
7057
|
+
* @type {RecordLanguageEnumString}
|
|
7058
|
+
* @memberof IPlanResponseAttributesInner
|
|
7059
|
+
*/
|
|
7060
|
+
'description': RecordLanguageEnumString;
|
|
7061
|
+
/**
|
|
7062
|
+
*
|
|
7063
|
+
* @type {RecordLanguageEnumUnknown}
|
|
7064
|
+
* @memberof IPlanResponseAttributesInner
|
|
7065
|
+
*/
|
|
7066
|
+
'value': RecordLanguageEnumUnknown;
|
|
7067
|
+
/**
|
|
7068
|
+
*
|
|
7069
|
+
* @type {PlanAttributeGroupEnum}
|
|
7070
|
+
* @memberof IPlanResponseAttributesInner
|
|
7071
|
+
*/
|
|
7072
|
+
'group': PlanAttributeGroupEnum;
|
|
7073
|
+
/**
|
|
7074
|
+
*
|
|
7075
|
+
* @type {PlanAttributeKeyEnum}
|
|
7076
|
+
* @memberof IPlanResponseAttributesInner
|
|
7077
|
+
*/
|
|
7078
|
+
'key': PlanAttributeKeyEnum;
|
|
7079
|
+
}
|
|
7031
7080
|
/**
|
|
7032
7081
|
*
|
|
7033
7082
|
* @export
|
|
@@ -8761,48 +8810,6 @@ export interface IThemePatchRequest {
|
|
|
8761
8810
|
* @memberof IThemePatchRequest
|
|
8762
8811
|
*/
|
|
8763
8812
|
'thumbnail'?: IImage;
|
|
8764
|
-
/**
|
|
8765
|
-
* Construct a type with a set of properties K of type T
|
|
8766
|
-
* @type {{ [key: string]: any; }}
|
|
8767
|
-
* @memberof IThemePatchRequest
|
|
8768
|
-
*/
|
|
8769
|
-
'config'?: {
|
|
8770
|
-
[key: string]: any;
|
|
8771
|
-
};
|
|
8772
|
-
/**
|
|
8773
|
-
* Make all properties in T optional
|
|
8774
|
-
* @type {{ [key: string]: PartialRecordStringNameStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
|
|
8775
|
-
* @memberof IThemePatchRequest
|
|
8776
|
-
*/
|
|
8777
|
-
'groups'?: {
|
|
8778
|
-
[key: string]: PartialRecordStringNameStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue;
|
|
8779
|
-
};
|
|
8780
|
-
/**
|
|
8781
|
-
*
|
|
8782
|
-
* @type {string}
|
|
8783
|
-
* @memberof IThemePatchRequest
|
|
8784
|
-
*/
|
|
8785
|
-
'demoUrl'?: string;
|
|
8786
|
-
/**
|
|
8787
|
-
*
|
|
8788
|
-
* @type {string}
|
|
8789
|
-
* @memberof IThemePatchRequest
|
|
8790
|
-
*/
|
|
8791
|
-
'assetUrl'?: string;
|
|
8792
|
-
/**
|
|
8793
|
-
*
|
|
8794
|
-
* @type {number}
|
|
8795
|
-
* @memberof IThemePatchRequest
|
|
8796
|
-
*/
|
|
8797
|
-
'assetVersion'?: number;
|
|
8798
|
-
/**
|
|
8799
|
-
* Construct a type with a set of properties K of type T
|
|
8800
|
-
* @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue; }}
|
|
8801
|
-
* @memberof IThemePatchRequest
|
|
8802
|
-
*/
|
|
8803
|
-
'componentConfigIndex'?: {
|
|
8804
|
-
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue;
|
|
8805
|
-
};
|
|
8806
8813
|
}
|
|
8807
8814
|
/**
|
|
8808
8815
|
*
|
|
@@ -8828,48 +8835,6 @@ export interface IThemePostRequest {
|
|
|
8828
8835
|
* @memberof IThemePostRequest
|
|
8829
8836
|
*/
|
|
8830
8837
|
'type': CompanyTypeEnum;
|
|
8831
|
-
/**
|
|
8832
|
-
* Construct a type with a set of properties K of type T
|
|
8833
|
-
* @type {{ [key: string]: any; }}
|
|
8834
|
-
* @memberof IThemePostRequest
|
|
8835
|
-
*/
|
|
8836
|
-
'config': {
|
|
8837
|
-
[key: string]: any;
|
|
8838
|
-
};
|
|
8839
|
-
/**
|
|
8840
|
-
* Make all properties in T optional
|
|
8841
|
-
* @type {{ [key: string]: PartialRecordStringNameStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
|
|
8842
|
-
* @memberof IThemePostRequest
|
|
8843
|
-
*/
|
|
8844
|
-
'groups': {
|
|
8845
|
-
[key: string]: PartialRecordStringNameStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue;
|
|
8846
|
-
};
|
|
8847
|
-
/**
|
|
8848
|
-
*
|
|
8849
|
-
* @type {string}
|
|
8850
|
-
* @memberof IThemePostRequest
|
|
8851
|
-
*/
|
|
8852
|
-
'demoUrl'?: string;
|
|
8853
|
-
/**
|
|
8854
|
-
*
|
|
8855
|
-
* @type {string}
|
|
8856
|
-
* @memberof IThemePostRequest
|
|
8857
|
-
*/
|
|
8858
|
-
'assetUrl': string;
|
|
8859
|
-
/**
|
|
8860
|
-
*
|
|
8861
|
-
* @type {number}
|
|
8862
|
-
* @memberof IThemePostRequest
|
|
8863
|
-
*/
|
|
8864
|
-
'assetVersion': number;
|
|
8865
|
-
/**
|
|
8866
|
-
* Construct a type with a set of properties K of type T
|
|
8867
|
-
* @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue; }}
|
|
8868
|
-
* @memberof IThemePostRequest
|
|
8869
|
-
*/
|
|
8870
|
-
'componentConfigIndex': {
|
|
8871
|
-
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue;
|
|
8872
|
-
};
|
|
8873
8838
|
}
|
|
8874
8839
|
/**
|
|
8875
8840
|
*
|
|
@@ -8888,7 +8853,7 @@ export interface IThemeResponse {
|
|
|
8888
8853
|
* @type {string}
|
|
8889
8854
|
* @memberof IThemeResponse
|
|
8890
8855
|
*/
|
|
8891
|
-
'company'
|
|
8856
|
+
'company'?: string;
|
|
8892
8857
|
/**
|
|
8893
8858
|
*
|
|
8894
8859
|
* @type {string}
|
|
@@ -8953,11 +8918,11 @@ export interface IThemeResponse {
|
|
|
8953
8918
|
'creator'?: string;
|
|
8954
8919
|
/**
|
|
8955
8920
|
* Make all properties in T optional
|
|
8956
|
-
* @type {{ [key: string]:
|
|
8921
|
+
* @type {{ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
|
|
8957
8922
|
* @memberof IThemeResponse
|
|
8958
8923
|
*/
|
|
8959
8924
|
'groups': {
|
|
8960
|
-
[key: string]:
|
|
8925
|
+
[key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue;
|
|
8961
8926
|
};
|
|
8962
8927
|
/**
|
|
8963
8928
|
* Construct a type with a set of properties K of type T
|
|
@@ -10095,21 +10060,21 @@ export interface PartialRecordLanguageEnumTitleStringDescription63StringTr {
|
|
|
10095
10060
|
/**
|
|
10096
10061
|
*
|
|
10097
10062
|
* @export
|
|
10098
|
-
* @interface
|
|
10063
|
+
* @interface PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue
|
|
10099
10064
|
*/
|
|
10100
|
-
export interface
|
|
10065
|
+
export interface PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue {
|
|
10101
10066
|
/**
|
|
10102
10067
|
*
|
|
10103
10068
|
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
10104
|
-
* @memberof
|
|
10069
|
+
* @memberof PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue
|
|
10105
10070
|
*/
|
|
10106
10071
|
'components': PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
10107
10072
|
/**
|
|
10108
10073
|
*
|
|
10109
10074
|
* @type {string}
|
|
10110
|
-
* @memberof
|
|
10075
|
+
* @memberof PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue
|
|
10111
10076
|
*/
|
|
10112
|
-
'
|
|
10077
|
+
'title': string;
|
|
10113
10078
|
}
|
|
10114
10079
|
/**
|
|
10115
10080
|
*
|
|
@@ -11561,6 +11526,12 @@ export interface PickIPlanExcludeKeyofIPlanKeyofMongoResponse {
|
|
|
11561
11526
|
* @memberof PickIPlanExcludeKeyofIPlanKeyofMongoResponse
|
|
11562
11527
|
*/
|
|
11563
11528
|
'status': PlanStatusEnum;
|
|
11529
|
+
/**
|
|
11530
|
+
*
|
|
11531
|
+
* @type {Array<IPlanResponseAttributesInner>}
|
|
11532
|
+
* @memberof PickIPlanExcludeKeyofIPlanKeyofMongoResponse
|
|
11533
|
+
*/
|
|
11534
|
+
'attributes': Array<IPlanResponseAttributesInner>;
|
|
11564
11535
|
/**
|
|
11565
11536
|
*
|
|
11566
11537
|
* @type {PlanTypeEnum}
|
|
@@ -12159,7 +12130,7 @@ export interface PickIThemeExcludeKeyofIThemeGroups {
|
|
|
12159
12130
|
* @type {string}
|
|
12160
12131
|
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12161
12132
|
*/
|
|
12162
|
-
'company'
|
|
12133
|
+
'company'?: string;
|
|
12163
12134
|
/**
|
|
12164
12135
|
*
|
|
12165
12136
|
* @type {string}
|
|
@@ -12223,73 +12194,6 @@ export interface PickIThemeExcludeKeyofIThemeGroups {
|
|
|
12223
12194
|
*/
|
|
12224
12195
|
'creator'?: string;
|
|
12225
12196
|
}
|
|
12226
|
-
/**
|
|
12227
|
-
* From T, pick a set of properties whose keys are in the union K
|
|
12228
|
-
* @export
|
|
12229
|
-
* @interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
12230
|
-
*/
|
|
12231
|
-
export interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles {
|
|
12232
|
-
/**
|
|
12233
|
-
*
|
|
12234
|
-
* @type {string}
|
|
12235
|
-
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
12236
|
-
*/
|
|
12237
|
-
'name': string;
|
|
12238
|
-
/**
|
|
12239
|
-
*
|
|
12240
|
-
* @type {IImage}
|
|
12241
|
-
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
12242
|
-
*/
|
|
12243
|
-
'thumbnail'?: IImage;
|
|
12244
|
-
/**
|
|
12245
|
-
*
|
|
12246
|
-
* @type {CompanyTypeEnum}
|
|
12247
|
-
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
12248
|
-
*/
|
|
12249
|
-
'type': CompanyTypeEnum;
|
|
12250
|
-
/**
|
|
12251
|
-
* Construct a type with a set of properties K of type T
|
|
12252
|
-
* @type {{ [key: string]: any; }}
|
|
12253
|
-
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
12254
|
-
*/
|
|
12255
|
-
'config': {
|
|
12256
|
-
[key: string]: any;
|
|
12257
|
-
};
|
|
12258
|
-
/**
|
|
12259
|
-
* Make all properties in T optional
|
|
12260
|
-
* @type {{ [key: string]: PartialRecordStringNameStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
|
|
12261
|
-
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
12262
|
-
*/
|
|
12263
|
-
'groups': {
|
|
12264
|
-
[key: string]: PartialRecordStringNameStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue;
|
|
12265
|
-
};
|
|
12266
|
-
/**
|
|
12267
|
-
*
|
|
12268
|
-
* @type {string}
|
|
12269
|
-
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
12270
|
-
*/
|
|
12271
|
-
'demoUrl'?: string;
|
|
12272
|
-
/**
|
|
12273
|
-
*
|
|
12274
|
-
* @type {string}
|
|
12275
|
-
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
12276
|
-
*/
|
|
12277
|
-
'assetUrl': string;
|
|
12278
|
-
/**
|
|
12279
|
-
*
|
|
12280
|
-
* @type {number}
|
|
12281
|
-
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
12282
|
-
*/
|
|
12283
|
-
'assetVersion': number;
|
|
12284
|
-
/**
|
|
12285
|
-
* Construct a type with a set of properties K of type T
|
|
12286
|
-
* @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue; }}
|
|
12287
|
-
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
12288
|
-
*/
|
|
12289
|
-
'componentConfigIndex': {
|
|
12290
|
-
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue;
|
|
12291
|
-
};
|
|
12292
|
-
}
|
|
12293
12197
|
/**
|
|
12294
12198
|
* From T, pick a set of properties whose keys are in the union K
|
|
12295
12199
|
* @export
|
|
@@ -12538,6 +12442,36 @@ export interface PickShippingProviderExcludeKeyofShippingProviderId {
|
|
|
12538
12442
|
*/
|
|
12539
12443
|
'rates': Array<ShippingProviderRates>;
|
|
12540
12444
|
}
|
|
12445
|
+
/**
|
|
12446
|
+
*
|
|
12447
|
+
* @export
|
|
12448
|
+
* @enum {string}
|
|
12449
|
+
*/
|
|
12450
|
+
export declare const PlanAttributeGroupEnum: {
|
|
12451
|
+
readonly BASIC: "basic";
|
|
12452
|
+
};
|
|
12453
|
+
export type PlanAttributeGroupEnum = typeof PlanAttributeGroupEnum[keyof typeof PlanAttributeGroupEnum];
|
|
12454
|
+
/**
|
|
12455
|
+
*
|
|
12456
|
+
* @export
|
|
12457
|
+
* @enum {string}
|
|
12458
|
+
*/
|
|
12459
|
+
export declare const PlanAttributeKeyEnum: {
|
|
12460
|
+
readonly BANDWIDTH: "bandwidth";
|
|
12461
|
+
readonly STORAGE: "storage";
|
|
12462
|
+
readonly CSM_COLLECTION: "csm-collection";
|
|
12463
|
+
readonly CMS_ITEMS: "cms-items";
|
|
12464
|
+
readonly PRODUCTS: "products";
|
|
12465
|
+
readonly LANGUAGES: "languages";
|
|
12466
|
+
readonly USERS: "users";
|
|
12467
|
+
readonly DOMAINS: "domains";
|
|
12468
|
+
readonly WAREHOUSES: "warehouses";
|
|
12469
|
+
readonly FIREBASE_LOGIN: "firebase-login";
|
|
12470
|
+
readonly FREE_SSL: "free-ssl";
|
|
12471
|
+
readonly COMMISSION: "commission";
|
|
12472
|
+
readonly CUSTOM_DOMAIN: "custom-domain";
|
|
12473
|
+
};
|
|
12474
|
+
export type PlanAttributeKeyEnum = typeof PlanAttributeKeyEnum[keyof typeof PlanAttributeKeyEnum];
|
|
12541
12475
|
/**
|
|
12542
12476
|
*
|
|
12543
12477
|
* @export
|
|
@@ -12752,6 +12686,31 @@ export interface RecordCustomPaymentMethodEnumExtraFeeNumberInfoPartialRecordLan
|
|
|
12752
12686
|
*/
|
|
12753
12687
|
'extraFee': number;
|
|
12754
12688
|
}
|
|
12689
|
+
/**
|
|
12690
|
+
* Construct a type with a set of properties K of type T
|
|
12691
|
+
* @export
|
|
12692
|
+
* @interface RecordLanguageEnumString
|
|
12693
|
+
*/
|
|
12694
|
+
export interface RecordLanguageEnumString {
|
|
12695
|
+
/**
|
|
12696
|
+
*
|
|
12697
|
+
* @type {string}
|
|
12698
|
+
* @memberof RecordLanguageEnumString
|
|
12699
|
+
*/
|
|
12700
|
+
'tr': string;
|
|
12701
|
+
/**
|
|
12702
|
+
*
|
|
12703
|
+
* @type {string}
|
|
12704
|
+
* @memberof RecordLanguageEnumString
|
|
12705
|
+
*/
|
|
12706
|
+
'en': string;
|
|
12707
|
+
/**
|
|
12708
|
+
*
|
|
12709
|
+
* @type {string}
|
|
12710
|
+
* @memberof RecordLanguageEnumString
|
|
12711
|
+
*/
|
|
12712
|
+
'de': string;
|
|
12713
|
+
}
|
|
12755
12714
|
/**
|
|
12756
12715
|
* Construct a type with a set of properties K of type T
|
|
12757
12716
|
* @export
|
|
@@ -12790,6 +12749,31 @@ export interface RecordLanguageEnumTitleStringTr {
|
|
|
12790
12749
|
*/
|
|
12791
12750
|
'title': string;
|
|
12792
12751
|
}
|
|
12752
|
+
/**
|
|
12753
|
+
* Construct a type with a set of properties K of type T
|
|
12754
|
+
* @export
|
|
12755
|
+
* @interface RecordLanguageEnumUnknown
|
|
12756
|
+
*/
|
|
12757
|
+
export interface RecordLanguageEnumUnknown {
|
|
12758
|
+
/**
|
|
12759
|
+
*
|
|
12760
|
+
* @type {any}
|
|
12761
|
+
* @memberof RecordLanguageEnumUnknown
|
|
12762
|
+
*/
|
|
12763
|
+
'tr': any;
|
|
12764
|
+
/**
|
|
12765
|
+
*
|
|
12766
|
+
* @type {any}
|
|
12767
|
+
* @memberof RecordLanguageEnumUnknown
|
|
12768
|
+
*/
|
|
12769
|
+
'en': any;
|
|
12770
|
+
/**
|
|
12771
|
+
*
|
|
12772
|
+
* @type {any}
|
|
12773
|
+
* @memberof RecordLanguageEnumUnknown
|
|
12774
|
+
*/
|
|
12775
|
+
'de': any;
|
|
12776
|
+
}
|
|
12793
12777
|
/**
|
|
12794
12778
|
* Construct a type with a set of properties K of type T
|
|
12795
12779
|
* @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.UrlRedirectApi = exports.UrlRedirectApiFactory = exports.UrlRedirectApiFp = exports.UrlRedirectApiAxiosParamCreator = exports.UniquePageApi = exports.UniquePageApiFactory = exports.UniquePageApiFp = exports.UniquePageApiAxiosParamCreator = exports.TemplateApi = exports.TemplateApiFactory = exports.TemplateApiFp = exports.TemplateApiAxiosParamCreator = exports.SitemapApi = exports.SitemapApiFactory = exports.SitemapApiFp = exports.SitemapApiAxiosParamCreator = exports.GetProductsSortEnum = 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.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.SubscriptionStatusEnum = exports.StoreLocationEnum = exports.SitemapTypeEnum = exports.ShippingPricingTypeEnum = exports.ReviewStatusEnum = exports.PlanTypeEnum = exports.PlanStatusEnum = exports.PlanAttributeKeyEnum = void 0;
|
|
21
|
+
exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.UrlRedirectApi = exports.UrlRedirectApiFactory = exports.UrlRedirectApiFp = exports.UrlRedirectApiAxiosParamCreator = exports.UniquePageApi = exports.UniquePageApiFactory = exports.UniquePageApiFp = exports.UniquePageApiAxiosParamCreator = exports.TemplateApi = exports.TemplateApiFactory = exports.TemplateApiFp = exports.TemplateApiAxiosParamCreator = exports.SitemapApi = exports.SitemapApiFactory = exports.SitemapApiFp = exports.SitemapApiAxiosParamCreator = exports.GetProductsSortEnum = exports.GetProductsDateFieldEnum = exports.ProductApi = void 0;
|
|
22
22
|
const axios_1 = __importDefault(require("axios"));
|
|
23
23
|
// Some imports not used depending on template conditions
|
|
24
24
|
// @ts-ignore
|
|
@@ -616,6 +616,34 @@ exports.PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFiel
|
|
|
616
616
|
CREATED_AT: 'createdAt',
|
|
617
617
|
UPDATED_AT: 'updatedAt'
|
|
618
618
|
};
|
|
619
|
+
/**
|
|
620
|
+
*
|
|
621
|
+
* @export
|
|
622
|
+
* @enum {string}
|
|
623
|
+
*/
|
|
624
|
+
exports.PlanAttributeGroupEnum = {
|
|
625
|
+
BASIC: 'basic'
|
|
626
|
+
};
|
|
627
|
+
/**
|
|
628
|
+
*
|
|
629
|
+
* @export
|
|
630
|
+
* @enum {string}
|
|
631
|
+
*/
|
|
632
|
+
exports.PlanAttributeKeyEnum = {
|
|
633
|
+
BANDWIDTH: 'bandwidth',
|
|
634
|
+
STORAGE: 'storage',
|
|
635
|
+
CSM_COLLECTION: 'csm-collection',
|
|
636
|
+
CMS_ITEMS: 'cms-items',
|
|
637
|
+
PRODUCTS: 'products',
|
|
638
|
+
LANGUAGES: 'languages',
|
|
639
|
+
USERS: 'users',
|
|
640
|
+
DOMAINS: 'domains',
|
|
641
|
+
WAREHOUSES: 'warehouses',
|
|
642
|
+
FIREBASE_LOGIN: 'firebase-login',
|
|
643
|
+
FREE_SSL: 'free-ssl',
|
|
644
|
+
COMMISSION: 'commission',
|
|
645
|
+
CUSTOM_DOMAIN: 'custom-domain'
|
|
646
|
+
};
|
|
619
647
|
/**
|
|
620
648
|
*
|
|
621
649
|
* @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-client",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.40",
|
|
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": "e8c9241105d98e7beb9248334b8ae4df0ae53fcf"
|
|
41
41
|
}
|