@infisale-client/api-client 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.
Files changed (2) hide show
  1. package/dist/api/api.d.ts +113 -41
  2. package/package.json +2 -2
package/dist/api/api.d.ts CHANGED
@@ -2235,10 +2235,10 @@ export interface ICompany {
2235
2235
  'status': CompanyStatusEnum;
2236
2236
  /**
2237
2237
  *
2238
- * @type {Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner>}
2238
+ * @type {Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>}
2239
2239
  * @memberof ICompany
2240
2240
  */
2241
- 'versions': Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner>;
2241
+ 'versions': Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>;
2242
2242
  /**
2243
2243
  *
2244
2244
  * @type {string}
@@ -5710,10 +5710,10 @@ export interface IOperationResponse {
5710
5710
  'status': OperationStatusEnum;
5711
5711
  /**
5712
5712
  *
5713
- * @type {Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner>}
5713
+ * @type {Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>}
5714
5714
  * @memberof IOperationResponse
5715
5715
  */
5716
- 'versions': Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner>;
5716
+ 'versions': Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>;
5717
5717
  }
5718
5718
  /**
5719
5719
  *
@@ -6069,10 +6069,10 @@ export interface IOrderResponse {
6069
6069
  'shipping': number;
6070
6070
  /**
6071
6071
  *
6072
- * @type {string}
6072
+ * @type {ShippingProviderRates}
6073
6073
  * @memberof IOrderResponse
6074
6074
  */
6075
- 'shippingRate': string;
6075
+ 'shippingRate': ShippingProviderRates;
6076
6076
  /**
6077
6077
  *
6078
6078
  * @type {number}
@@ -8692,6 +8692,12 @@ export interface ITemplatePatchRequest {
8692
8692
  * @memberof ITemplatePatchRequest
8693
8693
  */
8694
8694
  'unique'?: boolean;
8695
+ /**
8696
+ *
8697
+ * @type {boolean}
8698
+ * @memberof ITemplatePatchRequest
8699
+ */
8700
+ 'default'?: boolean;
8695
8701
  }
8696
8702
  /**
8697
8703
  *
@@ -8735,6 +8741,12 @@ export interface ITemplatePostRequest {
8735
8741
  * @memberof ITemplatePostRequest
8736
8742
  */
8737
8743
  'unique': boolean;
8744
+ /**
8745
+ *
8746
+ * @type {boolean}
8747
+ * @memberof ITemplatePostRequest
8748
+ */
8749
+ 'default'?: boolean;
8738
8750
  }
8739
8751
  /**
8740
8752
  *
@@ -8796,6 +8808,12 @@ export interface ITemplateResponse {
8796
8808
  * @memberof ITemplateResponse
8797
8809
  */
8798
8810
  'unique': boolean;
8811
+ /**
8812
+ *
8813
+ * @type {boolean}
8814
+ * @memberof ITemplateResponse
8815
+ */
8816
+ 'default'?: boolean;
8799
8817
  /**
8800
8818
  *
8801
8819
  * @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
@@ -8916,6 +8934,12 @@ export interface ITheme {
8916
8934
  * @memberof ITheme
8917
8935
  */
8918
8936
  'lastVersion': string;
8937
+ /**
8938
+ *
8939
+ * @type {boolean}
8940
+ * @memberof ITheme
8941
+ */
8942
+ 'deleted': boolean;
8919
8943
  }
8920
8944
  /**
8921
8945
  *
@@ -9112,6 +9136,12 @@ export interface IThemeResponse {
9112
9136
  * @memberof IThemeResponse
9113
9137
  */
9114
9138
  'lastVersion': string;
9139
+ /**
9140
+ *
9141
+ * @type {boolean}
9142
+ * @memberof IThemeResponse
9143
+ */
9144
+ 'deleted': boolean;
9115
9145
  /**
9116
9146
  * Make all properties in T optional
9117
9147
  * @type {{ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
@@ -9319,6 +9349,12 @@ export interface IThemesResponseData {
9319
9349
  * @memberof IThemesResponseData
9320
9350
  */
9321
9351
  'creator'?: string;
9352
+ /**
9353
+ *
9354
+ * @type {boolean}
9355
+ * @memberof IThemesResponseData
9356
+ */
9357
+ 'deleted': boolean;
9322
9358
  /**
9323
9359
  * Construct a type with a set of properties K of type T
9324
9360
  * @type {{ [key: string]: any; }}
@@ -9460,6 +9496,12 @@ export interface IThemesResponseDataMain {
9460
9496
  * @memberof IThemesResponseDataMain
9461
9497
  */
9462
9498
  'creator'?: string;
9499
+ /**
9500
+ *
9501
+ * @type {boolean}
9502
+ * @memberof IThemesResponseDataMain
9503
+ */
9504
+ 'deleted': boolean;
9463
9505
  /**
9464
9506
  *
9465
9507
  * @type {IThemeVersion}
@@ -10136,10 +10178,10 @@ export interface IUserResponse {
10136
10178
  'roles': Array<UserRoleEnum>;
10137
10179
  /**
10138
10180
  *
10139
- * @type {Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner>}
10181
+ * @type {Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>}
10140
10182
  * @memberof IUserResponse
10141
10183
  */
10142
- 'versions': Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner>;
10184
+ 'versions': Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>;
10143
10185
  /**
10144
10186
  *
10145
10187
  * @type {string}
@@ -10154,10 +10196,10 @@ export interface IUserResponse {
10154
10196
  'language': LanguageEnum;
10155
10197
  /**
10156
10198
  *
10157
- * @type {PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTContactPermissions}
10199
+ * @type {PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesContactPermissions}
10158
10200
  * @memberof IUserResponse
10159
10201
  */
10160
- 'contactPermissions': PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTContactPermissions;
10202
+ 'contactPermissions': PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesContactPermissions;
10161
10203
  /**
10162
10204
  *
10163
10205
  * @type {Array<IAddress>}
@@ -11667,10 +11709,10 @@ export interface PickIOrderExcludeKeyofIOrderHtmlOrIframe {
11667
11709
  'shipping': number;
11668
11710
  /**
11669
11711
  *
11670
- * @type {string}
11712
+ * @type {ShippingProviderRates}
11671
11713
  * @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
11672
11714
  */
11673
- 'shippingRate': string;
11715
+ 'shippingRate': ShippingProviderRates;
11674
11716
  /**
11675
11717
  *
11676
11718
  * @type {number}
@@ -12595,6 +12637,12 @@ export interface PickITemplateExcludeKeyofITemplateComponents {
12595
12637
  * @memberof PickITemplateExcludeKeyofITemplateComponents
12596
12638
  */
12597
12639
  'unique': boolean;
12640
+ /**
12641
+ *
12642
+ * @type {boolean}
12643
+ * @memberof PickITemplateExcludeKeyofITemplateComponents
12644
+ */
12645
+ 'default'?: boolean;
12598
12646
  }
12599
12647
  /**
12600
12648
  * From T, pick a set of properties whose keys are in the union K
@@ -12638,6 +12686,12 @@ export interface PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoRes
12638
12686
  * @memberof PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoResponse
12639
12687
  */
12640
12688
  'unique': boolean;
12689
+ /**
12690
+ *
12691
+ * @type {boolean}
12692
+ * @memberof PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoResponse
12693
+ */
12694
+ 'default'?: boolean;
12641
12695
  }
12642
12696
  /**
12643
12697
  * From T, pick a set of properties whose keys are in the union K
@@ -12731,6 +12785,12 @@ export interface PickIThemeExcludeKeyofIThemeGroups {
12731
12785
  * @memberof PickIThemeExcludeKeyofIThemeGroups
12732
12786
  */
12733
12787
  'lastVersion': string;
12788
+ /**
12789
+ *
12790
+ * @type {boolean}
12791
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
12792
+ */
12793
+ 'deleted': boolean;
12734
12794
  }
12735
12795
  /**
12736
12796
  * From T, pick a set of properties whose keys are in the union K
@@ -12826,6 +12886,12 @@ export interface PickIThemeExcludeKeyofIThemeLastVersion {
12826
12886
  * @memberof PickIThemeExcludeKeyofIThemeLastVersion
12827
12887
  */
12828
12888
  'creator'?: string;
12889
+ /**
12890
+ *
12891
+ * @type {boolean}
12892
+ * @memberof PickIThemeExcludeKeyofIThemeLastVersion
12893
+ */
12894
+ 'deleted': boolean;
12829
12895
  }
12830
12896
  /**
12831
12897
  * From T, pick a set of properties whose keys are in the union K
@@ -12915,6 +12981,12 @@ export interface PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain {
12915
12981
  * @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
12916
12982
  */
12917
12983
  'creator'?: string;
12984
+ /**
12985
+ *
12986
+ * @type {boolean}
12987
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
12988
+ */
12989
+ 'deleted': boolean;
12918
12990
  /**
12919
12991
  * Construct a type with a set of properties K of type T
12920
12992
  * @type {{ [key: string]: any; }}
@@ -13010,135 +13082,135 @@ export interface PickIUniquePageExcludeKeyofIUniquePageTemplate {
13010
13082
  /**
13011
13083
  * From T, pick a set of properties whose keys are in the union K
13012
13084
  * @export
13013
- * @interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrT
13085
+ * @interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
13014
13086
  */
13015
- export interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrT {
13087
+ export interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates {
13016
13088
  /**
13017
13089
  *
13018
13090
  * @type {string}
13019
- * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrT
13091
+ * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
13020
13092
  */
13021
13093
  'name': string;
13022
13094
  /**
13023
13095
  *
13024
13096
  * @type {string}
13025
- * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrT
13097
+ * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
13026
13098
  */
13027
13099
  'phone'?: string;
13028
13100
  /**
13029
13101
  *
13030
13102
  * @type {string}
13031
- * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrT
13103
+ * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
13032
13104
  */
13033
13105
  'email': string;
13034
13106
  /**
13035
13107
  *
13036
13108
  * @type {Array<UserRoleEnum>}
13037
- * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrT
13109
+ * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
13038
13110
  */
13039
13111
  'roles': Array<UserRoleEnum>;
13040
13112
  /**
13041
13113
  *
13042
- * @type {Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner>}
13043
- * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrT
13114
+ * @type {Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>}
13115
+ * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
13044
13116
  */
13045
- 'versions': Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner>;
13117
+ 'versions': Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>;
13046
13118
  /**
13047
13119
  *
13048
13120
  * @type {string}
13049
- * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrT
13121
+ * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
13050
13122
  */
13051
13123
  'company': string;
13052
13124
  /**
13053
13125
  *
13054
13126
  * @type {LanguageEnum}
13055
- * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrT
13127
+ * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
13056
13128
  */
13057
13129
  'language': LanguageEnum;
13058
13130
  /**
13059
13131
  *
13060
- * @type {PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTContactPermissions}
13061
- * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrT
13132
+ * @type {PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesContactPermissions}
13133
+ * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
13062
13134
  */
13063
- 'contactPermissions': PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTContactPermissions;
13135
+ 'contactPermissions': PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesContactPermissions;
13064
13136
  /**
13065
13137
  *
13066
13138
  * @type {Array<IAddress>}
13067
- * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrT
13139
+ * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
13068
13140
  */
13069
13141
  'addresses': Array<IAddress>;
13070
13142
  /**
13071
13143
  *
13072
13144
  * @type {UserStatusEnum}
13073
- * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrT
13145
+ * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
13074
13146
  */
13075
13147
  'status': UserStatusEnum;
13076
13148
  /**
13077
13149
  *
13078
13150
  * @type {string}
13079
- * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrT
13151
+ * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
13080
13152
  */
13081
13153
  '_id': string;
13082
13154
  /**
13083
13155
  *
13084
13156
  * @type {number}
13085
- * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrT
13157
+ * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
13086
13158
  */
13087
13159
  '__v': number;
13088
13160
  /**
13089
13161
  *
13090
13162
  * @type {string}
13091
- * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrT
13163
+ * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
13092
13164
  */
13093
13165
  'createdAt': string;
13094
13166
  /**
13095
13167
  *
13096
13168
  * @type {string}
13097
- * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrT
13169
+ * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
13098
13170
  */
13099
13171
  'updatedAt': string;
13100
13172
  }
13101
13173
  /**
13102
13174
  *
13103
13175
  * @export
13104
- * @interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTContactPermissions
13176
+ * @interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesContactPermissions
13105
13177
  */
13106
- export interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTContactPermissions {
13178
+ export interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesContactPermissions {
13107
13179
  /**
13108
13180
  *
13109
13181
  * @type {boolean}
13110
- * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTContactPermissions
13182
+ * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesContactPermissions
13111
13183
  */
13112
13184
  'sms': boolean;
13113
13185
  /**
13114
13186
  *
13115
13187
  * @type {boolean}
13116
- * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTContactPermissions
13188
+ * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesContactPermissions
13117
13189
  */
13118
13190
  'email': boolean;
13119
13191
  }
13120
13192
  /**
13121
13193
  *
13122
13194
  * @export
13123
- * @interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner
13195
+ * @interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner
13124
13196
  */
13125
- export interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner {
13197
+ export interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner {
13126
13198
  /**
13127
13199
  *
13128
13200
  * @type {string}
13129
- * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner
13201
+ * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner
13130
13202
  */
13131
13203
  'date': string;
13132
13204
  /**
13133
13205
  *
13134
13206
  * @type {object}
13135
- * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner
13207
+ * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner
13136
13208
  */
13137
13209
  'data': object;
13138
13210
  /**
13139
13211
  *
13140
13212
  * @type {string}
13141
- * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner
13213
+ * @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner
13142
13214
  */
13143
13215
  'user': string;
13144
13216
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infisale-client/api-client",
3
- "version": "1.3.52",
3
+ "version": "1.3.54",
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": "394a1b74938eed805d31995dc12d379e979b7fa0"
40
+ "gitHead": "fca93fcb76e3ac0e23f25f2924071dab9d180e5c"
41
41
  }