@infisale-client/api 1.3.52 → 1.3.54
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 +164 -50
- package/dist/api/api.js +59 -0
- package/dist/api/api.mjs +59 -0
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -2248,10 +2248,10 @@ export interface ICompany {
|
|
|
2248
2248
|
'status': CompanyStatusEnum;
|
|
2249
2249
|
/**
|
|
2250
2250
|
*
|
|
2251
|
-
* @type {Array<
|
|
2251
|
+
* @type {Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>}
|
|
2252
2252
|
* @memberof ICompany
|
|
2253
2253
|
*/
|
|
2254
|
-
'versions': Array<
|
|
2254
|
+
'versions': Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>;
|
|
2255
2255
|
/**
|
|
2256
2256
|
*
|
|
2257
2257
|
* @type {string}
|
|
@@ -5723,10 +5723,10 @@ export interface IOperationResponse {
|
|
|
5723
5723
|
'status': OperationStatusEnum;
|
|
5724
5724
|
/**
|
|
5725
5725
|
*
|
|
5726
|
-
* @type {Array<
|
|
5726
|
+
* @type {Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>}
|
|
5727
5727
|
* @memberof IOperationResponse
|
|
5728
5728
|
*/
|
|
5729
|
-
'versions': Array<
|
|
5729
|
+
'versions': Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>;
|
|
5730
5730
|
}
|
|
5731
5731
|
/**
|
|
5732
5732
|
*
|
|
@@ -6082,10 +6082,10 @@ export interface IOrderResponse {
|
|
|
6082
6082
|
'shipping': number;
|
|
6083
6083
|
/**
|
|
6084
6084
|
*
|
|
6085
|
-
* @type {
|
|
6085
|
+
* @type {ShippingProviderRates}
|
|
6086
6086
|
* @memberof IOrderResponse
|
|
6087
6087
|
*/
|
|
6088
|
-
'shippingRate':
|
|
6088
|
+
'shippingRate': ShippingProviderRates;
|
|
6089
6089
|
/**
|
|
6090
6090
|
*
|
|
6091
6091
|
* @type {number}
|
|
@@ -8705,6 +8705,12 @@ export interface ITemplatePatchRequest {
|
|
|
8705
8705
|
* @memberof ITemplatePatchRequest
|
|
8706
8706
|
*/
|
|
8707
8707
|
'unique'?: boolean;
|
|
8708
|
+
/**
|
|
8709
|
+
*
|
|
8710
|
+
* @type {boolean}
|
|
8711
|
+
* @memberof ITemplatePatchRequest
|
|
8712
|
+
*/
|
|
8713
|
+
'default'?: boolean;
|
|
8708
8714
|
}
|
|
8709
8715
|
/**
|
|
8710
8716
|
*
|
|
@@ -8748,6 +8754,12 @@ export interface ITemplatePostRequest {
|
|
|
8748
8754
|
* @memberof ITemplatePostRequest
|
|
8749
8755
|
*/
|
|
8750
8756
|
'unique': boolean;
|
|
8757
|
+
/**
|
|
8758
|
+
*
|
|
8759
|
+
* @type {boolean}
|
|
8760
|
+
* @memberof ITemplatePostRequest
|
|
8761
|
+
*/
|
|
8762
|
+
'default'?: boolean;
|
|
8751
8763
|
}
|
|
8752
8764
|
/**
|
|
8753
8765
|
*
|
|
@@ -8809,6 +8821,12 @@ export interface ITemplateResponse {
|
|
|
8809
8821
|
* @memberof ITemplateResponse
|
|
8810
8822
|
*/
|
|
8811
8823
|
'unique': boolean;
|
|
8824
|
+
/**
|
|
8825
|
+
*
|
|
8826
|
+
* @type {boolean}
|
|
8827
|
+
* @memberof ITemplateResponse
|
|
8828
|
+
*/
|
|
8829
|
+
'default'?: boolean;
|
|
8812
8830
|
/**
|
|
8813
8831
|
*
|
|
8814
8832
|
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
@@ -8929,6 +8947,12 @@ export interface ITheme {
|
|
|
8929
8947
|
* @memberof ITheme
|
|
8930
8948
|
*/
|
|
8931
8949
|
'lastVersion': string;
|
|
8950
|
+
/**
|
|
8951
|
+
*
|
|
8952
|
+
* @type {boolean}
|
|
8953
|
+
* @memberof ITheme
|
|
8954
|
+
*/
|
|
8955
|
+
'deleted': boolean;
|
|
8932
8956
|
}
|
|
8933
8957
|
/**
|
|
8934
8958
|
*
|
|
@@ -9125,6 +9149,12 @@ export interface IThemeResponse {
|
|
|
9125
9149
|
* @memberof IThemeResponse
|
|
9126
9150
|
*/
|
|
9127
9151
|
'lastVersion': string;
|
|
9152
|
+
/**
|
|
9153
|
+
*
|
|
9154
|
+
* @type {boolean}
|
|
9155
|
+
* @memberof IThemeResponse
|
|
9156
|
+
*/
|
|
9157
|
+
'deleted': boolean;
|
|
9128
9158
|
/**
|
|
9129
9159
|
* Make all properties in T optional
|
|
9130
9160
|
* @type {{ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
|
|
@@ -9332,6 +9362,12 @@ export interface IThemesResponseData {
|
|
|
9332
9362
|
* @memberof IThemesResponseData
|
|
9333
9363
|
*/
|
|
9334
9364
|
'creator'?: string;
|
|
9365
|
+
/**
|
|
9366
|
+
*
|
|
9367
|
+
* @type {boolean}
|
|
9368
|
+
* @memberof IThemesResponseData
|
|
9369
|
+
*/
|
|
9370
|
+
'deleted': boolean;
|
|
9335
9371
|
/**
|
|
9336
9372
|
* Construct a type with a set of properties K of type T
|
|
9337
9373
|
* @type {{ [key: string]: any; }}
|
|
@@ -9473,6 +9509,12 @@ export interface IThemesResponseDataMain {
|
|
|
9473
9509
|
* @memberof IThemesResponseDataMain
|
|
9474
9510
|
*/
|
|
9475
9511
|
'creator'?: string;
|
|
9512
|
+
/**
|
|
9513
|
+
*
|
|
9514
|
+
* @type {boolean}
|
|
9515
|
+
* @memberof IThemesResponseDataMain
|
|
9516
|
+
*/
|
|
9517
|
+
'deleted': boolean;
|
|
9476
9518
|
/**
|
|
9477
9519
|
*
|
|
9478
9520
|
* @type {IThemeVersion}
|
|
@@ -10149,10 +10191,10 @@ export interface IUserResponse {
|
|
|
10149
10191
|
'roles': Array<UserRoleEnum>;
|
|
10150
10192
|
/**
|
|
10151
10193
|
*
|
|
10152
|
-
* @type {Array<
|
|
10194
|
+
* @type {Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>}
|
|
10153
10195
|
* @memberof IUserResponse
|
|
10154
10196
|
*/
|
|
10155
|
-
'versions': Array<
|
|
10197
|
+
'versions': Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>;
|
|
10156
10198
|
/**
|
|
10157
10199
|
*
|
|
10158
10200
|
* @type {string}
|
|
@@ -10167,10 +10209,10 @@ export interface IUserResponse {
|
|
|
10167
10209
|
'language': LanguageEnum;
|
|
10168
10210
|
/**
|
|
10169
10211
|
*
|
|
10170
|
-
* @type {
|
|
10212
|
+
* @type {PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesContactPermissions}
|
|
10171
10213
|
* @memberof IUserResponse
|
|
10172
10214
|
*/
|
|
10173
|
-
'contactPermissions':
|
|
10215
|
+
'contactPermissions': PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesContactPermissions;
|
|
10174
10216
|
/**
|
|
10175
10217
|
*
|
|
10176
10218
|
* @type {Array<IAddress>}
|
|
@@ -11680,10 +11722,10 @@ export interface PickIOrderExcludeKeyofIOrderHtmlOrIframe {
|
|
|
11680
11722
|
'shipping': number;
|
|
11681
11723
|
/**
|
|
11682
11724
|
*
|
|
11683
|
-
* @type {
|
|
11725
|
+
* @type {ShippingProviderRates}
|
|
11684
11726
|
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
11685
11727
|
*/
|
|
11686
|
-
'shippingRate':
|
|
11728
|
+
'shippingRate': ShippingProviderRates;
|
|
11687
11729
|
/**
|
|
11688
11730
|
*
|
|
11689
11731
|
* @type {number}
|
|
@@ -12608,6 +12650,12 @@ export interface PickITemplateExcludeKeyofITemplateComponents {
|
|
|
12608
12650
|
* @memberof PickITemplateExcludeKeyofITemplateComponents
|
|
12609
12651
|
*/
|
|
12610
12652
|
'unique': boolean;
|
|
12653
|
+
/**
|
|
12654
|
+
*
|
|
12655
|
+
* @type {boolean}
|
|
12656
|
+
* @memberof PickITemplateExcludeKeyofITemplateComponents
|
|
12657
|
+
*/
|
|
12658
|
+
'default'?: boolean;
|
|
12611
12659
|
}
|
|
12612
12660
|
/**
|
|
12613
12661
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -12651,6 +12699,12 @@ export interface PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoRes
|
|
|
12651
12699
|
* @memberof PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoResponse
|
|
12652
12700
|
*/
|
|
12653
12701
|
'unique': boolean;
|
|
12702
|
+
/**
|
|
12703
|
+
*
|
|
12704
|
+
* @type {boolean}
|
|
12705
|
+
* @memberof PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoResponse
|
|
12706
|
+
*/
|
|
12707
|
+
'default'?: boolean;
|
|
12654
12708
|
}
|
|
12655
12709
|
/**
|
|
12656
12710
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -12744,6 +12798,12 @@ export interface PickIThemeExcludeKeyofIThemeGroups {
|
|
|
12744
12798
|
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12745
12799
|
*/
|
|
12746
12800
|
'lastVersion': string;
|
|
12801
|
+
/**
|
|
12802
|
+
*
|
|
12803
|
+
* @type {boolean}
|
|
12804
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12805
|
+
*/
|
|
12806
|
+
'deleted': boolean;
|
|
12747
12807
|
}
|
|
12748
12808
|
/**
|
|
12749
12809
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -12839,6 +12899,12 @@ export interface PickIThemeExcludeKeyofIThemeLastVersion {
|
|
|
12839
12899
|
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
12840
12900
|
*/
|
|
12841
12901
|
'creator'?: string;
|
|
12902
|
+
/**
|
|
12903
|
+
*
|
|
12904
|
+
* @type {boolean}
|
|
12905
|
+
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
12906
|
+
*/
|
|
12907
|
+
'deleted': boolean;
|
|
12842
12908
|
}
|
|
12843
12909
|
/**
|
|
12844
12910
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -12928,6 +12994,12 @@ export interface PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain {
|
|
|
12928
12994
|
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12929
12995
|
*/
|
|
12930
12996
|
'creator'?: string;
|
|
12997
|
+
/**
|
|
12998
|
+
*
|
|
12999
|
+
* @type {boolean}
|
|
13000
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
13001
|
+
*/
|
|
13002
|
+
'deleted': boolean;
|
|
12931
13003
|
/**
|
|
12932
13004
|
* Construct a type with a set of properties K of type T
|
|
12933
13005
|
* @type {{ [key: string]: any; }}
|
|
@@ -13023,135 +13095,135 @@ export interface PickIUniquePageExcludeKeyofIUniquePageTemplate {
|
|
|
13023
13095
|
/**
|
|
13024
13096
|
* From T, pick a set of properties whose keys are in the union K
|
|
13025
13097
|
* @export
|
|
13026
|
-
* @interface
|
|
13098
|
+
* @interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13027
13099
|
*/
|
|
13028
|
-
export interface
|
|
13100
|
+
export interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates {
|
|
13029
13101
|
/**
|
|
13030
13102
|
*
|
|
13031
13103
|
* @type {string}
|
|
13032
|
-
* @memberof
|
|
13104
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13033
13105
|
*/
|
|
13034
13106
|
'name': string;
|
|
13035
13107
|
/**
|
|
13036
13108
|
*
|
|
13037
13109
|
* @type {string}
|
|
13038
|
-
* @memberof
|
|
13110
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13039
13111
|
*/
|
|
13040
13112
|
'phone'?: string;
|
|
13041
13113
|
/**
|
|
13042
13114
|
*
|
|
13043
13115
|
* @type {string}
|
|
13044
|
-
* @memberof
|
|
13116
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13045
13117
|
*/
|
|
13046
13118
|
'email': string;
|
|
13047
13119
|
/**
|
|
13048
13120
|
*
|
|
13049
13121
|
* @type {Array<UserRoleEnum>}
|
|
13050
|
-
* @memberof
|
|
13122
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13051
13123
|
*/
|
|
13052
13124
|
'roles': Array<UserRoleEnum>;
|
|
13053
13125
|
/**
|
|
13054
13126
|
*
|
|
13055
|
-
* @type {Array<
|
|
13056
|
-
* @memberof
|
|
13127
|
+
* @type {Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>}
|
|
13128
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13057
13129
|
*/
|
|
13058
|
-
'versions': Array<
|
|
13130
|
+
'versions': Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>;
|
|
13059
13131
|
/**
|
|
13060
13132
|
*
|
|
13061
13133
|
* @type {string}
|
|
13062
|
-
* @memberof
|
|
13134
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13063
13135
|
*/
|
|
13064
13136
|
'company': string;
|
|
13065
13137
|
/**
|
|
13066
13138
|
*
|
|
13067
13139
|
* @type {LanguageEnum}
|
|
13068
|
-
* @memberof
|
|
13140
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13069
13141
|
*/
|
|
13070
13142
|
'language': LanguageEnum;
|
|
13071
13143
|
/**
|
|
13072
13144
|
*
|
|
13073
|
-
* @type {
|
|
13074
|
-
* @memberof
|
|
13145
|
+
* @type {PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesContactPermissions}
|
|
13146
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13075
13147
|
*/
|
|
13076
|
-
'contactPermissions':
|
|
13148
|
+
'contactPermissions': PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesContactPermissions;
|
|
13077
13149
|
/**
|
|
13078
13150
|
*
|
|
13079
13151
|
* @type {Array<IAddress>}
|
|
13080
|
-
* @memberof
|
|
13152
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13081
13153
|
*/
|
|
13082
13154
|
'addresses': Array<IAddress>;
|
|
13083
13155
|
/**
|
|
13084
13156
|
*
|
|
13085
13157
|
* @type {UserStatusEnum}
|
|
13086
|
-
* @memberof
|
|
13158
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13087
13159
|
*/
|
|
13088
13160
|
'status': UserStatusEnum;
|
|
13089
13161
|
/**
|
|
13090
13162
|
*
|
|
13091
13163
|
* @type {string}
|
|
13092
|
-
* @memberof
|
|
13164
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13093
13165
|
*/
|
|
13094
13166
|
'_id': string;
|
|
13095
13167
|
/**
|
|
13096
13168
|
*
|
|
13097
13169
|
* @type {number}
|
|
13098
|
-
* @memberof
|
|
13170
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13099
13171
|
*/
|
|
13100
13172
|
'__v': number;
|
|
13101
13173
|
/**
|
|
13102
13174
|
*
|
|
13103
13175
|
* @type {string}
|
|
13104
|
-
* @memberof
|
|
13176
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13105
13177
|
*/
|
|
13106
13178
|
'createdAt': string;
|
|
13107
13179
|
/**
|
|
13108
13180
|
*
|
|
13109
13181
|
* @type {string}
|
|
13110
|
-
* @memberof
|
|
13182
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13111
13183
|
*/
|
|
13112
13184
|
'updatedAt': string;
|
|
13113
13185
|
}
|
|
13114
13186
|
/**
|
|
13115
13187
|
*
|
|
13116
13188
|
* @export
|
|
13117
|
-
* @interface
|
|
13189
|
+
* @interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesContactPermissions
|
|
13118
13190
|
*/
|
|
13119
|
-
export interface
|
|
13191
|
+
export interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesContactPermissions {
|
|
13120
13192
|
/**
|
|
13121
13193
|
*
|
|
13122
13194
|
* @type {boolean}
|
|
13123
|
-
* @memberof
|
|
13195
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesContactPermissions
|
|
13124
13196
|
*/
|
|
13125
13197
|
'sms': boolean;
|
|
13126
13198
|
/**
|
|
13127
13199
|
*
|
|
13128
13200
|
* @type {boolean}
|
|
13129
|
-
* @memberof
|
|
13201
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesContactPermissions
|
|
13130
13202
|
*/
|
|
13131
13203
|
'email': boolean;
|
|
13132
13204
|
}
|
|
13133
13205
|
/**
|
|
13134
13206
|
*
|
|
13135
13207
|
* @export
|
|
13136
|
-
* @interface
|
|
13208
|
+
* @interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner
|
|
13137
13209
|
*/
|
|
13138
|
-
export interface
|
|
13210
|
+
export interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner {
|
|
13139
13211
|
/**
|
|
13140
13212
|
*
|
|
13141
13213
|
* @type {string}
|
|
13142
|
-
* @memberof
|
|
13214
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner
|
|
13143
13215
|
*/
|
|
13144
13216
|
'date': string;
|
|
13145
13217
|
/**
|
|
13146
13218
|
*
|
|
13147
13219
|
* @type {object}
|
|
13148
|
-
* @memberof
|
|
13220
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner
|
|
13149
13221
|
*/
|
|
13150
13222
|
'data': object;
|
|
13151
13223
|
/**
|
|
13152
13224
|
*
|
|
13153
13225
|
* @type {string}
|
|
13154
|
-
* @memberof
|
|
13226
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner
|
|
13155
13227
|
*/
|
|
13156
13228
|
'user': string;
|
|
13157
13229
|
}
|
|
@@ -16689,7 +16761,7 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
|
|
|
16689
16761
|
* @param {*} [options] Override http request option.
|
|
16690
16762
|
* @throws {RequiredError}
|
|
16691
16763
|
*/
|
|
16692
|
-
getCompanyVersions(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
16764
|
+
getCompanyVersions(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>>>;
|
|
16693
16765
|
/**
|
|
16694
16766
|
*
|
|
16695
16767
|
* @param {string} companyId
|
|
@@ -17014,7 +17086,7 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
|
|
|
17014
17086
|
* @param {*} [options] Override http request option.
|
|
17015
17087
|
* @throws {RequiredError}
|
|
17016
17088
|
*/
|
|
17017
|
-
getCompanyVersions(requestParameters: CompanyApiGetCompanyVersionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
17089
|
+
getCompanyVersions(requestParameters: CompanyApiGetCompanyVersionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>>;
|
|
17018
17090
|
/**
|
|
17019
17091
|
*
|
|
17020
17092
|
* @param {CompanyApiSetCompanyPaymentGatewaysPrimaryRequest} requestParameters Request parameters.
|
|
@@ -18266,7 +18338,7 @@ export declare class CompanyApi extends BaseAPI {
|
|
|
18266
18338
|
* @throws {RequiredError}
|
|
18267
18339
|
* @memberof CompanyApi
|
|
18268
18340
|
*/
|
|
18269
|
-
getCompanyVersions(requestParameters: CompanyApiGetCompanyVersionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
18341
|
+
getCompanyVersions(requestParameters: CompanyApiGetCompanyVersionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner[], any>>;
|
|
18270
18342
|
/**
|
|
18271
18343
|
*
|
|
18272
18344
|
* @param {CompanyApiSetCompanyPaymentGatewaysPrimaryRequest} requestParameters Request parameters.
|
|
@@ -19833,7 +19905,7 @@ export declare const OperationApiFp: (configuration?: Configuration) => {
|
|
|
19833
19905
|
* @param {*} [options] Override http request option.
|
|
19834
19906
|
* @throws {RequiredError}
|
|
19835
19907
|
*/
|
|
19836
|
-
operationVersions(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
19908
|
+
operationVersions(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>>>;
|
|
19837
19909
|
/**
|
|
19838
19910
|
*
|
|
19839
19911
|
* @param {string} id
|
|
@@ -19882,7 +19954,7 @@ export declare const OperationApiFactory: (configuration?: Configuration, basePa
|
|
|
19882
19954
|
* @param {*} [options] Override http request option.
|
|
19883
19955
|
* @throws {RequiredError}
|
|
19884
19956
|
*/
|
|
19885
|
-
operationVersions(requestParameters: OperationApiOperationVersionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
19957
|
+
operationVersions(requestParameters: OperationApiOperationVersionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>>;
|
|
19886
19958
|
/**
|
|
19887
19959
|
*
|
|
19888
19960
|
* @param {OperationApiUpdateOperationRequest} requestParameters Request parameters.
|
|
@@ -20081,7 +20153,7 @@ export declare class OperationApi extends BaseAPI {
|
|
|
20081
20153
|
* @throws {RequiredError}
|
|
20082
20154
|
* @memberof OperationApi
|
|
20083
20155
|
*/
|
|
20084
|
-
operationVersions(requestParameters: OperationApiOperationVersionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
20156
|
+
operationVersions(requestParameters: OperationApiOperationVersionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner[], any>>;
|
|
20085
20157
|
/**
|
|
20086
20158
|
*
|
|
20087
20159
|
* @param {OperationApiUpdateOperationRequest} requestParameters Request parameters.
|
|
@@ -22957,6 +23029,13 @@ export declare const ThemeApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
22957
23029
|
* @throws {RequiredError}
|
|
22958
23030
|
*/
|
|
22959
23031
|
deleteTheme: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23032
|
+
/**
|
|
23033
|
+
*
|
|
23034
|
+
* @param {string} id
|
|
23035
|
+
* @param {*} [options] Override http request option.
|
|
23036
|
+
* @throws {RequiredError}
|
|
23037
|
+
*/
|
|
23038
|
+
downloadTemplates: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22960
23039
|
/**
|
|
22961
23040
|
*
|
|
22962
23041
|
* @param {string} companyId
|
|
@@ -23024,6 +23103,13 @@ export declare const ThemeApiFp: (configuration?: Configuration) => {
|
|
|
23024
23103
|
* @throws {RequiredError}
|
|
23025
23104
|
*/
|
|
23026
23105
|
deleteTheme(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
23106
|
+
/**
|
|
23107
|
+
*
|
|
23108
|
+
* @param {string} id
|
|
23109
|
+
* @param {*} [options] Override http request option.
|
|
23110
|
+
* @throws {RequiredError}
|
|
23111
|
+
*/
|
|
23112
|
+
downloadTemplates(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
23027
23113
|
/**
|
|
23028
23114
|
*
|
|
23029
23115
|
* @param {string} companyId
|
|
@@ -23091,6 +23177,13 @@ export declare const ThemeApiFactory: (configuration?: Configuration, basePath?:
|
|
|
23091
23177
|
* @throws {RequiredError}
|
|
23092
23178
|
*/
|
|
23093
23179
|
deleteTheme(requestParameters: ThemeApiDeleteThemeRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
23180
|
+
/**
|
|
23181
|
+
*
|
|
23182
|
+
* @param {ThemeApiDownloadTemplatesRequest} requestParameters Request parameters.
|
|
23183
|
+
* @param {*} [options] Override http request option.
|
|
23184
|
+
* @throws {RequiredError}
|
|
23185
|
+
*/
|
|
23186
|
+
downloadTemplates(requestParameters: ThemeApiDownloadTemplatesRequest, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
23094
23187
|
/**
|
|
23095
23188
|
*
|
|
23096
23189
|
* @param {ThemeApiGetCompanyThemesRequest} requestParameters Request parameters.
|
|
@@ -23166,6 +23259,19 @@ export interface ThemeApiDeleteThemeRequest {
|
|
|
23166
23259
|
*/
|
|
23167
23260
|
readonly id: string;
|
|
23168
23261
|
}
|
|
23262
|
+
/**
|
|
23263
|
+
* Request parameters for downloadTemplates operation in ThemeApi.
|
|
23264
|
+
* @export
|
|
23265
|
+
* @interface ThemeApiDownloadTemplatesRequest
|
|
23266
|
+
*/
|
|
23267
|
+
export interface ThemeApiDownloadTemplatesRequest {
|
|
23268
|
+
/**
|
|
23269
|
+
*
|
|
23270
|
+
* @type {string}
|
|
23271
|
+
* @memberof ThemeApiDownloadTemplates
|
|
23272
|
+
*/
|
|
23273
|
+
readonly id: string;
|
|
23274
|
+
}
|
|
23169
23275
|
/**
|
|
23170
23276
|
* Request parameters for getCompanyThemes operation in ThemeApi.
|
|
23171
23277
|
* @export
|
|
@@ -23292,6 +23398,14 @@ export declare class ThemeApi extends BaseAPI {
|
|
|
23292
23398
|
* @memberof ThemeApi
|
|
23293
23399
|
*/
|
|
23294
23400
|
deleteTheme(requestParameters: ThemeApiDeleteThemeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
23401
|
+
/**
|
|
23402
|
+
*
|
|
23403
|
+
* @param {ThemeApiDownloadTemplatesRequest} requestParameters Request parameters.
|
|
23404
|
+
* @param {*} [options] Override http request option.
|
|
23405
|
+
* @throws {RequiredError}
|
|
23406
|
+
* @memberof ThemeApi
|
|
23407
|
+
*/
|
|
23408
|
+
downloadTemplates(requestParameters: ThemeApiDownloadTemplatesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
23295
23409
|
/**
|
|
23296
23410
|
*
|
|
23297
23411
|
* @param {ThemeApiGetCompanyThemesRequest} requestParameters Request parameters.
|
|
@@ -24260,7 +24374,7 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
|
24260
24374
|
* @param {*} [options] Override http request option.
|
|
24261
24375
|
* @throws {RequiredError}
|
|
24262
24376
|
*/
|
|
24263
|
-
userVersions(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
24377
|
+
userVersions(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>>>;
|
|
24264
24378
|
/**
|
|
24265
24379
|
*
|
|
24266
24380
|
* @param {IVerifyUserRequest} iVerifyUserRequest
|
|
@@ -24348,7 +24462,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
24348
24462
|
* @param {*} [options] Override http request option.
|
|
24349
24463
|
* @throws {RequiredError}
|
|
24350
24464
|
*/
|
|
24351
|
-
userVersions(requestParameters: UserApiUserVersionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
24465
|
+
userVersions(requestParameters: UserApiUserVersionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>>;
|
|
24352
24466
|
/**
|
|
24353
24467
|
*
|
|
24354
24468
|
* @param {UserApiVerifyUserRequest} requestParameters Request parameters.
|
|
@@ -24645,7 +24759,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
24645
24759
|
* @throws {RequiredError}
|
|
24646
24760
|
* @memberof UserApi
|
|
24647
24761
|
*/
|
|
24648
|
-
userVersions(requestParameters: UserApiUserVersionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
24762
|
+
userVersions(requestParameters: UserApiUserVersionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner[], any>>;
|
|
24649
24763
|
/**
|
|
24650
24764
|
*
|
|
24651
24765
|
* @param {UserApiVerifyUserRequest} requestParameters Request parameters.
|
package/dist/api/api.js
CHANGED
|
@@ -12088,6 +12088,34 @@ const ThemeApiAxiosParamCreator = function (configuration) {
|
|
|
12088
12088
|
options: localVarRequestOptions,
|
|
12089
12089
|
};
|
|
12090
12090
|
},
|
|
12091
|
+
/**
|
|
12092
|
+
*
|
|
12093
|
+
* @param {string} id
|
|
12094
|
+
* @param {*} [options] Override http request option.
|
|
12095
|
+
* @throws {RequiredError}
|
|
12096
|
+
*/
|
|
12097
|
+
downloadTemplates: async (id, options = {}) => {
|
|
12098
|
+
// verify required parameter 'id' is not null or undefined
|
|
12099
|
+
(0, common_1.assertParamExists)('downloadTemplates', 'id', id);
|
|
12100
|
+
const localVarPath = `/api/themes/{id}/templates/download`
|
|
12101
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
12102
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12103
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
12104
|
+
let baseOptions;
|
|
12105
|
+
if (configuration) {
|
|
12106
|
+
baseOptions = configuration.baseOptions;
|
|
12107
|
+
}
|
|
12108
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
12109
|
+
const localVarHeaderParameter = {};
|
|
12110
|
+
const localVarQueryParameter = {};
|
|
12111
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
12112
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
12113
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
12114
|
+
return {
|
|
12115
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
12116
|
+
options: localVarRequestOptions,
|
|
12117
|
+
};
|
|
12118
|
+
},
|
|
12091
12119
|
/**
|
|
12092
12120
|
*
|
|
12093
12121
|
* @param {string} companyId
|
|
@@ -12306,6 +12334,18 @@ const ThemeApiFp = function (configuration) {
|
|
|
12306
12334
|
const localVarOperationServerBasePath = base_1.operationServerMap['ThemeApi.deleteTheme']?.[localVarOperationServerIndex]?.url;
|
|
12307
12335
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
12308
12336
|
},
|
|
12337
|
+
/**
|
|
12338
|
+
*
|
|
12339
|
+
* @param {string} id
|
|
12340
|
+
* @param {*} [options] Override http request option.
|
|
12341
|
+
* @throws {RequiredError}
|
|
12342
|
+
*/
|
|
12343
|
+
async downloadTemplates(id, options) {
|
|
12344
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.downloadTemplates(id, options);
|
|
12345
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
12346
|
+
const localVarOperationServerBasePath = base_1.operationServerMap['ThemeApi.downloadTemplates']?.[localVarOperationServerIndex]?.url;
|
|
12347
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
12348
|
+
},
|
|
12309
12349
|
/**
|
|
12310
12350
|
*
|
|
12311
12351
|
* @param {string} companyId
|
|
@@ -12408,6 +12448,15 @@ const ThemeApiFactory = function (configuration, basePath, axios) {
|
|
|
12408
12448
|
deleteTheme(requestParameters, options) {
|
|
12409
12449
|
return localVarFp.deleteTheme(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
12410
12450
|
},
|
|
12451
|
+
/**
|
|
12452
|
+
*
|
|
12453
|
+
* @param {ThemeApiDownloadTemplatesRequest} requestParameters Request parameters.
|
|
12454
|
+
* @param {*} [options] Override http request option.
|
|
12455
|
+
* @throws {RequiredError}
|
|
12456
|
+
*/
|
|
12457
|
+
downloadTemplates(requestParameters, options) {
|
|
12458
|
+
return localVarFp.downloadTemplates(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
12459
|
+
},
|
|
12411
12460
|
/**
|
|
12412
12461
|
*
|
|
12413
12462
|
* @param {ThemeApiGetCompanyThemesRequest} requestParameters Request parameters.
|
|
@@ -12493,6 +12542,16 @@ class ThemeApi extends base_1.BaseAPI {
|
|
|
12493
12542
|
deleteTheme(requestParameters, options) {
|
|
12494
12543
|
return (0, exports.ThemeApiFp)(this.configuration).deleteTheme(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
12495
12544
|
}
|
|
12545
|
+
/**
|
|
12546
|
+
*
|
|
12547
|
+
* @param {ThemeApiDownloadTemplatesRequest} requestParameters Request parameters.
|
|
12548
|
+
* @param {*} [options] Override http request option.
|
|
12549
|
+
* @throws {RequiredError}
|
|
12550
|
+
* @memberof ThemeApi
|
|
12551
|
+
*/
|
|
12552
|
+
downloadTemplates(requestParameters, options) {
|
|
12553
|
+
return (0, exports.ThemeApiFp)(this.configuration).downloadTemplates(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
12554
|
+
}
|
|
12496
12555
|
/**
|
|
12497
12556
|
*
|
|
12498
12557
|
* @param {ThemeApiGetCompanyThemesRequest} requestParameters Request parameters.
|
package/dist/api/api.mjs
CHANGED
|
@@ -12004,6 +12004,34 @@ export const ThemeApiAxiosParamCreator = function (configuration) {
|
|
|
12004
12004
|
options: localVarRequestOptions,
|
|
12005
12005
|
};
|
|
12006
12006
|
},
|
|
12007
|
+
/**
|
|
12008
|
+
*
|
|
12009
|
+
* @param {string} id
|
|
12010
|
+
* @param {*} [options] Override http request option.
|
|
12011
|
+
* @throws {RequiredError}
|
|
12012
|
+
*/
|
|
12013
|
+
downloadTemplates: async (id, options = {}) => {
|
|
12014
|
+
// verify required parameter 'id' is not null or undefined
|
|
12015
|
+
assertParamExists('downloadTemplates', 'id', id);
|
|
12016
|
+
const localVarPath = `/api/themes/{id}/templates/download`
|
|
12017
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
12018
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12019
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12020
|
+
let baseOptions;
|
|
12021
|
+
if (configuration) {
|
|
12022
|
+
baseOptions = configuration.baseOptions;
|
|
12023
|
+
}
|
|
12024
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
12025
|
+
const localVarHeaderParameter = {};
|
|
12026
|
+
const localVarQueryParameter = {};
|
|
12027
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
12028
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
12029
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
12030
|
+
return {
|
|
12031
|
+
url: toPathString(localVarUrlObj),
|
|
12032
|
+
options: localVarRequestOptions,
|
|
12033
|
+
};
|
|
12034
|
+
},
|
|
12007
12035
|
/**
|
|
12008
12036
|
*
|
|
12009
12037
|
* @param {string} companyId
|
|
@@ -12221,6 +12249,18 @@ export const ThemeApiFp = function (configuration) {
|
|
|
12221
12249
|
const localVarOperationServerBasePath = operationServerMap['ThemeApi.deleteTheme']?.[localVarOperationServerIndex]?.url;
|
|
12222
12250
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
12223
12251
|
},
|
|
12252
|
+
/**
|
|
12253
|
+
*
|
|
12254
|
+
* @param {string} id
|
|
12255
|
+
* @param {*} [options] Override http request option.
|
|
12256
|
+
* @throws {RequiredError}
|
|
12257
|
+
*/
|
|
12258
|
+
async downloadTemplates(id, options) {
|
|
12259
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.downloadTemplates(id, options);
|
|
12260
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
12261
|
+
const localVarOperationServerBasePath = operationServerMap['ThemeApi.downloadTemplates']?.[localVarOperationServerIndex]?.url;
|
|
12262
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
12263
|
+
},
|
|
12224
12264
|
/**
|
|
12225
12265
|
*
|
|
12226
12266
|
* @param {string} companyId
|
|
@@ -12322,6 +12362,15 @@ export const ThemeApiFactory = function (configuration, basePath, axios) {
|
|
|
12322
12362
|
deleteTheme(requestParameters, options) {
|
|
12323
12363
|
return localVarFp.deleteTheme(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
12324
12364
|
},
|
|
12365
|
+
/**
|
|
12366
|
+
*
|
|
12367
|
+
* @param {ThemeApiDownloadTemplatesRequest} requestParameters Request parameters.
|
|
12368
|
+
* @param {*} [options] Override http request option.
|
|
12369
|
+
* @throws {RequiredError}
|
|
12370
|
+
*/
|
|
12371
|
+
downloadTemplates(requestParameters, options) {
|
|
12372
|
+
return localVarFp.downloadTemplates(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
12373
|
+
},
|
|
12325
12374
|
/**
|
|
12326
12375
|
*
|
|
12327
12376
|
* @param {ThemeApiGetCompanyThemesRequest} requestParameters Request parameters.
|
|
@@ -12406,6 +12455,16 @@ export class ThemeApi extends BaseAPI {
|
|
|
12406
12455
|
deleteTheme(requestParameters, options) {
|
|
12407
12456
|
return ThemeApiFp(this.configuration).deleteTheme(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
12408
12457
|
}
|
|
12458
|
+
/**
|
|
12459
|
+
*
|
|
12460
|
+
* @param {ThemeApiDownloadTemplatesRequest} requestParameters Request parameters.
|
|
12461
|
+
* @param {*} [options] Override http request option.
|
|
12462
|
+
* @throws {RequiredError}
|
|
12463
|
+
* @memberof ThemeApi
|
|
12464
|
+
*/
|
|
12465
|
+
downloadTemplates(requestParameters, options) {
|
|
12466
|
+
return ThemeApiFp(this.configuration).downloadTemplates(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
12467
|
+
}
|
|
12409
12468
|
/**
|
|
12410
12469
|
*
|
|
12411
12470
|
* @param {ThemeApiGetCompanyThemesRequest} requestParameters Request parameters.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.54",
|
|
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": "fca93fcb76e3ac0e23f25f2924071dab9d180e5c"
|
|
41
41
|
}
|