@infisale-client/api-client 1.3.7 → 1.3.9
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 +145 -57
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -2084,6 +2084,12 @@ export interface ICompany {
|
|
|
2084
2084
|
* @memberof ICompany
|
|
2085
2085
|
*/
|
|
2086
2086
|
'dnsZoneDomain'?: string;
|
|
2087
|
+
/**
|
|
2088
|
+
*
|
|
2089
|
+
* @type {PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString}
|
|
2090
|
+
* @memberof ICompany
|
|
2091
|
+
*/
|
|
2092
|
+
'customPaymentMethods': PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString;
|
|
2087
2093
|
/**
|
|
2088
2094
|
*
|
|
2089
2095
|
* @type {Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner>}
|
|
@@ -2405,6 +2411,12 @@ export interface ICompanyAdminResponse {
|
|
|
2405
2411
|
* @memberof ICompanyAdminResponse
|
|
2406
2412
|
*/
|
|
2407
2413
|
'dnsZoneDomain'?: string;
|
|
2414
|
+
/**
|
|
2415
|
+
*
|
|
2416
|
+
* @type {PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString}
|
|
2417
|
+
* @memberof ICompanyAdminResponse
|
|
2418
|
+
*/
|
|
2419
|
+
'customPaymentMethods': PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString;
|
|
2408
2420
|
/**
|
|
2409
2421
|
*
|
|
2410
2422
|
* @type {{ [key: string]: string; }}
|
|
@@ -3105,6 +3117,12 @@ export interface ICompanyPatchRequest {
|
|
|
3105
3117
|
* @memberof ICompanyPatchRequest
|
|
3106
3118
|
*/
|
|
3107
3119
|
'dnsZoneDomain'?: string;
|
|
3120
|
+
/**
|
|
3121
|
+
*
|
|
3122
|
+
* @type {PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString}
|
|
3123
|
+
* @memberof ICompanyPatchRequest
|
|
3124
|
+
*/
|
|
3125
|
+
'customPaymentMethods'?: PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString;
|
|
3108
3126
|
/**
|
|
3109
3127
|
*
|
|
3110
3128
|
* @type {{ [key: string]: string; }}
|
|
@@ -3444,6 +3462,12 @@ export interface ICompanyResponse {
|
|
|
3444
3462
|
* @memberof ICompanyResponse
|
|
3445
3463
|
*/
|
|
3446
3464
|
'dnsZoneDomain'?: string;
|
|
3465
|
+
/**
|
|
3466
|
+
*
|
|
3467
|
+
* @type {PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString}
|
|
3468
|
+
* @memberof ICompanyResponse
|
|
3469
|
+
*/
|
|
3470
|
+
'customPaymentMethods': PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString;
|
|
3447
3471
|
/**
|
|
3448
3472
|
*
|
|
3449
3473
|
* @type {{ [key: string]: string; }}
|
|
@@ -5563,6 +5587,12 @@ export interface IOrderCreateResponse {
|
|
|
5563
5587
|
* @memberof IOrderCreateResponse
|
|
5564
5588
|
*/
|
|
5565
5589
|
'redirectUrl'?: string;
|
|
5590
|
+
/**
|
|
5591
|
+
*
|
|
5592
|
+
* @type {string}
|
|
5593
|
+
* @memberof IOrderCreateResponse
|
|
5594
|
+
*/
|
|
5595
|
+
'orderId'?: string;
|
|
5566
5596
|
}
|
|
5567
5597
|
/**
|
|
5568
5598
|
*
|
|
@@ -5751,7 +5781,7 @@ export interface IOrderResponse {
|
|
|
5751
5781
|
* @type {PaymentGatewayEnum}
|
|
5752
5782
|
* @memberof IOrderResponse
|
|
5753
5783
|
*/
|
|
5754
|
-
'paymentGateway'
|
|
5784
|
+
'paymentGateway'?: PaymentGatewayEnum;
|
|
5755
5785
|
/**
|
|
5756
5786
|
*
|
|
5757
5787
|
* @type {string}
|
|
@@ -8504,12 +8534,6 @@ export interface IThemeCloneRequest {
|
|
|
8504
8534
|
* @interface IThemePatchRequest
|
|
8505
8535
|
*/
|
|
8506
8536
|
export interface IThemePatchRequest {
|
|
8507
|
-
/**
|
|
8508
|
-
*
|
|
8509
|
-
* @type {IThemeResponseTemplate}
|
|
8510
|
-
* @memberof IThemePatchRequest
|
|
8511
|
-
*/
|
|
8512
|
-
'template'?: IThemeResponseTemplate;
|
|
8513
8537
|
/**
|
|
8514
8538
|
*
|
|
8515
8539
|
* @type {string}
|
|
@@ -8530,6 +8554,14 @@ export interface IThemePatchRequest {
|
|
|
8530
8554
|
'config'?: {
|
|
8531
8555
|
[key: string]: any;
|
|
8532
8556
|
};
|
|
8557
|
+
/**
|
|
8558
|
+
* Make all properties in T optional
|
|
8559
|
+
* @type {{ [key: string]: PartialRecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
|
|
8560
|
+
* @memberof IThemePatchRequest
|
|
8561
|
+
*/
|
|
8562
|
+
'groups'?: {
|
|
8563
|
+
[key: string]: PartialRecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue;
|
|
8564
|
+
};
|
|
8533
8565
|
/**
|
|
8534
8566
|
*
|
|
8535
8567
|
* @type {string}
|
|
@@ -8575,6 +8607,14 @@ export interface IThemePostRequest {
|
|
|
8575
8607
|
'config': {
|
|
8576
8608
|
[key: string]: any;
|
|
8577
8609
|
};
|
|
8610
|
+
/**
|
|
8611
|
+
* Make all properties in T optional
|
|
8612
|
+
* @type {{ [key: string]: PartialRecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
|
|
8613
|
+
* @memberof IThemePostRequest
|
|
8614
|
+
*/
|
|
8615
|
+
'groups': {
|
|
8616
|
+
[key: string]: PartialRecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue;
|
|
8617
|
+
};
|
|
8578
8618
|
/**
|
|
8579
8619
|
*
|
|
8580
8620
|
* @type {string}
|
|
@@ -8593,12 +8633,6 @@ export interface IThemePostRequest {
|
|
|
8593
8633
|
* @memberof IThemePostRequest
|
|
8594
8634
|
*/
|
|
8595
8635
|
'assetVersion': number;
|
|
8596
|
-
/**
|
|
8597
|
-
*
|
|
8598
|
-
* @type {IThemeResponseTemplate}
|
|
8599
|
-
* @memberof IThemePostRequest
|
|
8600
|
-
*/
|
|
8601
|
-
'template': IThemeResponseTemplate;
|
|
8602
8636
|
}
|
|
8603
8637
|
/**
|
|
8604
8638
|
*
|
|
@@ -8675,11 +8709,13 @@ export interface IThemeResponse {
|
|
|
8675
8709
|
*/
|
|
8676
8710
|
'creator'?: string;
|
|
8677
8711
|
/**
|
|
8678
|
-
*
|
|
8679
|
-
* @type {
|
|
8712
|
+
* Make all properties in T optional
|
|
8713
|
+
* @type {{ [key: string]: PartialRecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
|
|
8680
8714
|
* @memberof IThemeResponse
|
|
8681
8715
|
*/
|
|
8682
|
-
'
|
|
8716
|
+
'groups': {
|
|
8717
|
+
[key: string]: PartialRecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue;
|
|
8718
|
+
};
|
|
8683
8719
|
/**
|
|
8684
8720
|
* Construct a type with a set of properties K of type T
|
|
8685
8721
|
* @type {{ [key: string]: any; }}
|
|
@@ -8701,25 +8737,6 @@ export interface IThemeResponse {
|
|
|
8701
8737
|
*/
|
|
8702
8738
|
'assetVersion': number;
|
|
8703
8739
|
}
|
|
8704
|
-
/**
|
|
8705
|
-
*
|
|
8706
|
-
* @export
|
|
8707
|
-
* @interface IThemeResponseTemplate
|
|
8708
|
-
*/
|
|
8709
|
-
export interface IThemeResponseTemplate {
|
|
8710
|
-
/**
|
|
8711
|
-
*
|
|
8712
|
-
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
8713
|
-
* @memberof IThemeResponseTemplate
|
|
8714
|
-
*/
|
|
8715
|
-
'footer': PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
8716
|
-
/**
|
|
8717
|
-
*
|
|
8718
|
-
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
8719
|
-
* @memberof IThemeResponseTemplate
|
|
8720
|
-
*/
|
|
8721
|
-
'header': PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
8722
|
-
}
|
|
8723
8740
|
/**
|
|
8724
8741
|
*
|
|
8725
8742
|
* @export
|
|
@@ -9212,6 +9229,50 @@ export declare const PageTypeEnum: {
|
|
|
9212
9229
|
readonly BLOG_LIST: "blog-list";
|
|
9213
9230
|
};
|
|
9214
9231
|
export type PageTypeEnum = typeof PageTypeEnum[keyof typeof PageTypeEnum];
|
|
9232
|
+
/**
|
|
9233
|
+
* Make all properties in T optional
|
|
9234
|
+
* @export
|
|
9235
|
+
* @interface PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString
|
|
9236
|
+
*/
|
|
9237
|
+
export interface PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString {
|
|
9238
|
+
/**
|
|
9239
|
+
*
|
|
9240
|
+
* @type {PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer}
|
|
9241
|
+
* @memberof PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString
|
|
9242
|
+
*/
|
|
9243
|
+
'bank_transfer'?: PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer;
|
|
9244
|
+
/**
|
|
9245
|
+
*
|
|
9246
|
+
* @type {PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer}
|
|
9247
|
+
* @memberof PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString
|
|
9248
|
+
*/
|
|
9249
|
+
'cash_on_delivery'?: PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer;
|
|
9250
|
+
/**
|
|
9251
|
+
*
|
|
9252
|
+
* @type {PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer}
|
|
9253
|
+
* @memberof PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString
|
|
9254
|
+
*/
|
|
9255
|
+
'card_on_delivery'?: PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer;
|
|
9256
|
+
}
|
|
9257
|
+
/**
|
|
9258
|
+
*
|
|
9259
|
+
* @export
|
|
9260
|
+
* @interface PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer
|
|
9261
|
+
*/
|
|
9262
|
+
export interface PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer {
|
|
9263
|
+
/**
|
|
9264
|
+
*
|
|
9265
|
+
* @type {string}
|
|
9266
|
+
* @memberof PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer
|
|
9267
|
+
*/
|
|
9268
|
+
'info': string;
|
|
9269
|
+
/**
|
|
9270
|
+
*
|
|
9271
|
+
* @type {number}
|
|
9272
|
+
* @memberof PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer
|
|
9273
|
+
*/
|
|
9274
|
+
'extraFee': number;
|
|
9275
|
+
}
|
|
9215
9276
|
/**
|
|
9216
9277
|
* Make all properties in T optional
|
|
9217
9278
|
* @export
|
|
@@ -9312,6 +9373,19 @@ export interface PartialRecordLanguageEnumTitleString {
|
|
|
9312
9373
|
*/
|
|
9313
9374
|
'de'?: RecordLanguageEnumTitleStringTr;
|
|
9314
9375
|
}
|
|
9376
|
+
/**
|
|
9377
|
+
*
|
|
9378
|
+
* @export
|
|
9379
|
+
* @interface PartialRecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue
|
|
9380
|
+
*/
|
|
9381
|
+
export interface PartialRecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue {
|
|
9382
|
+
/**
|
|
9383
|
+
*
|
|
9384
|
+
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
9385
|
+
* @memberof PartialRecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue
|
|
9386
|
+
*/
|
|
9387
|
+
'components': PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
9388
|
+
}
|
|
9315
9389
|
/**
|
|
9316
9390
|
*
|
|
9317
9391
|
* @export
|
|
@@ -9799,6 +9873,12 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
9799
9873
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
9800
9874
|
*/
|
|
9801
9875
|
'dnsZoneDomain'?: string;
|
|
9876
|
+
/**
|
|
9877
|
+
*
|
|
9878
|
+
* @type {PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString}
|
|
9879
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
9880
|
+
*/
|
|
9881
|
+
'customPaymentMethods': PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString;
|
|
9802
9882
|
/**
|
|
9803
9883
|
*
|
|
9804
9884
|
* @type {{ [key: string]: string; }}
|
|
@@ -10294,7 +10374,7 @@ export interface PickIOrderExcludeKeyofIOrderHtmlOrIframe {
|
|
|
10294
10374
|
* @type {PaymentGatewayEnum}
|
|
10295
10375
|
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10296
10376
|
*/
|
|
10297
|
-
'paymentGateway'
|
|
10377
|
+
'paymentGateway'?: PaymentGatewayEnum;
|
|
10298
10378
|
/**
|
|
10299
10379
|
*
|
|
10300
10380
|
* @type {string}
|
|
@@ -11186,61 +11266,61 @@ export interface PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoRes
|
|
|
11186
11266
|
/**
|
|
11187
11267
|
* From T, pick a set of properties whose keys are in the union K
|
|
11188
11268
|
* @export
|
|
11189
|
-
* @interface
|
|
11269
|
+
* @interface PickIThemeExcludeKeyofIThemeGroups
|
|
11190
11270
|
*/
|
|
11191
|
-
export interface
|
|
11271
|
+
export interface PickIThemeExcludeKeyofIThemeGroups {
|
|
11192
11272
|
/**
|
|
11193
11273
|
*
|
|
11194
11274
|
* @type {string}
|
|
11195
|
-
* @memberof
|
|
11275
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
11196
11276
|
*/
|
|
11197
11277
|
'name': string;
|
|
11198
11278
|
/**
|
|
11199
11279
|
*
|
|
11200
11280
|
* @type {string}
|
|
11201
|
-
* @memberof
|
|
11281
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
11202
11282
|
*/
|
|
11203
11283
|
'company'?: string;
|
|
11204
11284
|
/**
|
|
11205
11285
|
*
|
|
11206
11286
|
* @type {string}
|
|
11207
|
-
* @memberof
|
|
11287
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
11208
11288
|
*/
|
|
11209
11289
|
'_id': string;
|
|
11210
11290
|
/**
|
|
11211
11291
|
*
|
|
11212
11292
|
* @type {number}
|
|
11213
|
-
* @memberof
|
|
11293
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
11214
11294
|
*/
|
|
11215
11295
|
'__v': number;
|
|
11216
11296
|
/**
|
|
11217
11297
|
*
|
|
11218
11298
|
* @type {string}
|
|
11219
|
-
* @memberof
|
|
11299
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
11220
11300
|
*/
|
|
11221
11301
|
'createdAt': string;
|
|
11222
11302
|
/**
|
|
11223
11303
|
*
|
|
11224
11304
|
* @type {string}
|
|
11225
|
-
* @memberof
|
|
11305
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
11226
11306
|
*/
|
|
11227
11307
|
'updatedAt': string;
|
|
11228
11308
|
/**
|
|
11229
11309
|
*
|
|
11230
11310
|
* @type {IImage}
|
|
11231
|
-
* @memberof
|
|
11311
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
11232
11312
|
*/
|
|
11233
11313
|
'thumbnail'?: IImage;
|
|
11234
11314
|
/**
|
|
11235
11315
|
*
|
|
11236
11316
|
* @type {string}
|
|
11237
|
-
* @memberof
|
|
11317
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
11238
11318
|
*/
|
|
11239
11319
|
'main'?: string;
|
|
11240
11320
|
/**
|
|
11241
11321
|
* Construct a type with a set of properties K of type T
|
|
11242
11322
|
* @type {{ [key: string]: any; }}
|
|
11243
|
-
* @memberof
|
|
11323
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
11244
11324
|
*/
|
|
11245
11325
|
'config': {
|
|
11246
11326
|
[key: string]: any;
|
|
@@ -11248,58 +11328,66 @@ export interface PickIThemeExcludeKeyofIThemeTemplate {
|
|
|
11248
11328
|
/**
|
|
11249
11329
|
*
|
|
11250
11330
|
* @type {string}
|
|
11251
|
-
* @memberof
|
|
11331
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
11252
11332
|
*/
|
|
11253
11333
|
'demoUrl'?: string;
|
|
11254
11334
|
/**
|
|
11255
11335
|
*
|
|
11256
11336
|
* @type {string}
|
|
11257
|
-
* @memberof
|
|
11337
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
11258
11338
|
*/
|
|
11259
11339
|
'creator'?: string;
|
|
11260
11340
|
}
|
|
11261
11341
|
/**
|
|
11262
11342
|
* From T, pick a set of properties whose keys are in the union K
|
|
11263
11343
|
* @export
|
|
11264
|
-
* @interface
|
|
11344
|
+
* @interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
11265
11345
|
*/
|
|
11266
|
-
export interface
|
|
11346
|
+
export interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles {
|
|
11267
11347
|
/**
|
|
11268
11348
|
*
|
|
11269
11349
|
* @type {string}
|
|
11270
|
-
* @memberof
|
|
11350
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
11271
11351
|
*/
|
|
11272
11352
|
'name': string;
|
|
11273
11353
|
/**
|
|
11274
11354
|
*
|
|
11275
11355
|
* @type {IImage}
|
|
11276
|
-
* @memberof
|
|
11356
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
11277
11357
|
*/
|
|
11278
11358
|
'thumbnail'?: IImage;
|
|
11279
11359
|
/**
|
|
11280
11360
|
* Construct a type with a set of properties K of type T
|
|
11281
11361
|
* @type {{ [key: string]: any; }}
|
|
11282
|
-
* @memberof
|
|
11362
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
11283
11363
|
*/
|
|
11284
11364
|
'config': {
|
|
11285
11365
|
[key: string]: any;
|
|
11286
11366
|
};
|
|
11367
|
+
/**
|
|
11368
|
+
* Make all properties in T optional
|
|
11369
|
+
* @type {{ [key: string]: PartialRecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
|
|
11370
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
11371
|
+
*/
|
|
11372
|
+
'groups': {
|
|
11373
|
+
[key: string]: PartialRecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue;
|
|
11374
|
+
};
|
|
11287
11375
|
/**
|
|
11288
11376
|
*
|
|
11289
11377
|
* @type {string}
|
|
11290
|
-
* @memberof
|
|
11378
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
11291
11379
|
*/
|
|
11292
11380
|
'demoUrl'?: string;
|
|
11293
11381
|
/**
|
|
11294
11382
|
*
|
|
11295
11383
|
* @type {string}
|
|
11296
|
-
* @memberof
|
|
11384
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
11297
11385
|
*/
|
|
11298
11386
|
'assetUrl': string;
|
|
11299
11387
|
/**
|
|
11300
11388
|
*
|
|
11301
11389
|
* @type {number}
|
|
11302
|
-
* @memberof
|
|
11390
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
11303
11391
|
*/
|
|
11304
11392
|
'assetVersion': number;
|
|
11305
11393
|
}
|
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.9",
|
|
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": "01c659b6663e174a2ee6a0b43d074df8e8c530ac"
|
|
41
41
|
}
|