@infisale-client/api-client 1.1.22 → 1.1.23
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 +300 -91
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -795,10 +795,10 @@ export interface IBrandCollectionQueryParams {
|
|
|
795
795
|
export interface IBrandPatchRequest {
|
|
796
796
|
/**
|
|
797
797
|
*
|
|
798
|
-
* @type {
|
|
798
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
799
799
|
* @memberof IBrandPatchRequest
|
|
800
800
|
*/
|
|
801
|
-
'contents'?:
|
|
801
|
+
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
802
802
|
/**
|
|
803
803
|
*
|
|
804
804
|
* @type {IImage}
|
|
@@ -820,10 +820,10 @@ export interface IBrandPostRequest {
|
|
|
820
820
|
'company': string;
|
|
821
821
|
/**
|
|
822
822
|
*
|
|
823
|
-
* @type {
|
|
823
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
824
824
|
* @memberof IBrandPostRequest
|
|
825
825
|
*/
|
|
826
|
-
'contents':
|
|
826
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
827
827
|
/**
|
|
828
828
|
*
|
|
829
829
|
* @type {IImage}
|
|
@@ -875,10 +875,10 @@ export interface IBrandResponse {
|
|
|
875
875
|
'thumbnail'?: IImage;
|
|
876
876
|
/**
|
|
877
877
|
*
|
|
878
|
-
* @type {
|
|
878
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
879
879
|
* @memberof IBrandResponse
|
|
880
880
|
*/
|
|
881
|
-
'contents':
|
|
881
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
882
882
|
}
|
|
883
883
|
/**
|
|
884
884
|
*
|
|
@@ -968,10 +968,10 @@ export interface ICategoryAttributesResponse {
|
|
|
968
968
|
'_id': string;
|
|
969
969
|
/**
|
|
970
970
|
*
|
|
971
|
-
* @type {
|
|
971
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
972
972
|
* @memberof ICategoryAttributesResponse
|
|
973
973
|
*/
|
|
974
|
-
'contents':
|
|
974
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
975
975
|
/**
|
|
976
976
|
*
|
|
977
977
|
* @type {Array<ICategoryAttributesResponseAttributesInner>}
|
|
@@ -1099,10 +1099,10 @@ export interface ICategoryPatchRequest {
|
|
|
1099
1099
|
'main'?: string;
|
|
1100
1100
|
/**
|
|
1101
1101
|
*
|
|
1102
|
-
* @type {
|
|
1102
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
1103
1103
|
* @memberof ICategoryPatchRequest
|
|
1104
1104
|
*/
|
|
1105
|
-
'contents'?:
|
|
1105
|
+
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
1106
1106
|
/**
|
|
1107
1107
|
*
|
|
1108
1108
|
* @type {IImage}
|
|
@@ -1130,10 +1130,10 @@ export interface ICategoryPostRequest {
|
|
|
1130
1130
|
'main'?: string;
|
|
1131
1131
|
/**
|
|
1132
1132
|
*
|
|
1133
|
-
* @type {
|
|
1133
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
1134
1134
|
* @memberof ICategoryPostRequest
|
|
1135
1135
|
*/
|
|
1136
|
-
'contents':
|
|
1136
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
1137
1137
|
/**
|
|
1138
1138
|
*
|
|
1139
1139
|
* @type {IImage}
|
|
@@ -1191,10 +1191,10 @@ export interface ICategoryResponse {
|
|
|
1191
1191
|
'main'?: string;
|
|
1192
1192
|
/**
|
|
1193
1193
|
*
|
|
1194
|
-
* @type {
|
|
1194
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
1195
1195
|
* @memberof ICategoryResponse
|
|
1196
1196
|
*/
|
|
1197
|
-
'contents':
|
|
1197
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
1198
1198
|
/**
|
|
1199
1199
|
*
|
|
1200
1200
|
* @type {IImage}
|
|
@@ -1356,10 +1356,10 @@ export interface ICollection {
|
|
|
1356
1356
|
'thumbnail'?: IImage;
|
|
1357
1357
|
/**
|
|
1358
1358
|
*
|
|
1359
|
-
* @type {
|
|
1359
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
1360
1360
|
* @memberof ICollection
|
|
1361
1361
|
*/
|
|
1362
|
-
'contents':
|
|
1362
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
1363
1363
|
/**
|
|
1364
1364
|
*
|
|
1365
1365
|
* @type {string}
|
|
@@ -1448,10 +1448,10 @@ export interface ICollectionPatchRequest {
|
|
|
1448
1448
|
'template'?: ITemplateResponse;
|
|
1449
1449
|
/**
|
|
1450
1450
|
*
|
|
1451
|
-
* @type {
|
|
1451
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
1452
1452
|
* @memberof ICollectionPatchRequest
|
|
1453
1453
|
*/
|
|
1454
|
-
'contents'?:
|
|
1454
|
+
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
1455
1455
|
/**
|
|
1456
1456
|
*
|
|
1457
1457
|
* @type {IImage}
|
|
@@ -1473,10 +1473,10 @@ export interface ICollectionPostRequest {
|
|
|
1473
1473
|
'company': string;
|
|
1474
1474
|
/**
|
|
1475
1475
|
*
|
|
1476
|
-
* @type {
|
|
1476
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
1477
1477
|
* @memberof ICollectionPostRequest
|
|
1478
1478
|
*/
|
|
1479
|
-
'contents':
|
|
1479
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
1480
1480
|
/**
|
|
1481
1481
|
*
|
|
1482
1482
|
* @type {IImage}
|
|
@@ -1528,10 +1528,10 @@ export interface ICollectionResponse {
|
|
|
1528
1528
|
'updatedAt': string;
|
|
1529
1529
|
/**
|
|
1530
1530
|
*
|
|
1531
|
-
* @type {
|
|
1531
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
1532
1532
|
* @memberof ICollectionResponse
|
|
1533
1533
|
*/
|
|
1534
|
-
'contents':
|
|
1534
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
1535
1535
|
/**
|
|
1536
1536
|
*
|
|
1537
1537
|
* @type {IImage}
|
|
@@ -1914,6 +1914,12 @@ export interface ICompanyAdminResponse {
|
|
|
1914
1914
|
* @memberof ICompanyAdminResponse
|
|
1915
1915
|
*/
|
|
1916
1916
|
'updatedAt': string;
|
|
1917
|
+
/**
|
|
1918
|
+
*
|
|
1919
|
+
* @type {ICompanyResponseConfig}
|
|
1920
|
+
* @memberof ICompanyAdminResponse
|
|
1921
|
+
*/
|
|
1922
|
+
'config': ICompanyResponseConfig;
|
|
1917
1923
|
/**
|
|
1918
1924
|
*
|
|
1919
1925
|
* @type {PlanTypeEnum}
|
|
@@ -2052,22 +2058,16 @@ export interface ICompanyAdminResponse {
|
|
|
2052
2058
|
'sender_email_dns_records'?: Array<PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsSenderEmailDnsRecordsInner>;
|
|
2053
2059
|
/**
|
|
2054
2060
|
*
|
|
2055
|
-
* @type {
|
|
2056
|
-
* @memberof ICompanyAdminResponse
|
|
2057
|
-
*/
|
|
2058
|
-
'main'?: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles;
|
|
2059
|
-
/**
|
|
2060
|
-
*
|
|
2061
|
-
* @type {ICompanyResponseConfig}
|
|
2061
|
+
* @type {RecordCurrencyEnumNumber}
|
|
2062
2062
|
* @memberof ICompanyAdminResponse
|
|
2063
2063
|
*/
|
|
2064
|
-
'
|
|
2064
|
+
'currency_rates': RecordCurrencyEnumNumber;
|
|
2065
2065
|
/**
|
|
2066
2066
|
*
|
|
2067
|
-
* @type {
|
|
2067
|
+
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles}
|
|
2068
2068
|
* @memberof ICompanyAdminResponse
|
|
2069
2069
|
*/
|
|
2070
|
-
'
|
|
2070
|
+
'main'?: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles;
|
|
2071
2071
|
/**
|
|
2072
2072
|
*
|
|
2073
2073
|
* @type {Array<ICompanyAdminResponseUsersInner>}
|
|
@@ -4302,10 +4302,10 @@ export interface IPagePatchRequest {
|
|
|
4302
4302
|
'template'?: ITemplateResponse;
|
|
4303
4303
|
/**
|
|
4304
4304
|
*
|
|
4305
|
-
* @type {
|
|
4305
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
4306
4306
|
* @memberof IPagePatchRequest
|
|
4307
4307
|
*/
|
|
4308
|
-
'contents'?:
|
|
4308
|
+
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
4309
4309
|
/**
|
|
4310
4310
|
*
|
|
4311
4311
|
* @type {IImage}
|
|
@@ -4333,10 +4333,10 @@ export interface IPagePostRequest {
|
|
|
4333
4333
|
'type': PageTypeEnum;
|
|
4334
4334
|
/**
|
|
4335
4335
|
*
|
|
4336
|
-
* @type {
|
|
4336
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
4337
4337
|
* @memberof IPagePostRequest
|
|
4338
4338
|
*/
|
|
4339
|
-
'contents':
|
|
4339
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
4340
4340
|
/**
|
|
4341
4341
|
*
|
|
4342
4342
|
* @type {IImage}
|
|
@@ -4394,10 +4394,10 @@ export interface IPageResponse {
|
|
|
4394
4394
|
'type': PageTypeEnum;
|
|
4395
4395
|
/**
|
|
4396
4396
|
*
|
|
4397
|
-
* @type {
|
|
4397
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
4398
4398
|
* @memberof IPageResponse
|
|
4399
4399
|
*/
|
|
4400
|
-
'contents':
|
|
4400
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
4401
4401
|
/**
|
|
4402
4402
|
*
|
|
4403
4403
|
* @type {IImage}
|
|
@@ -4922,10 +4922,10 @@ export interface IProductPatchRequest {
|
|
|
4922
4922
|
'price_info'?: PriceType;
|
|
4923
4923
|
/**
|
|
4924
4924
|
*
|
|
4925
|
-
* @type {
|
|
4925
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
4926
4926
|
* @memberof IProductPatchRequest
|
|
4927
4927
|
*/
|
|
4928
|
-
'contents'?:
|
|
4928
|
+
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
4929
4929
|
/**
|
|
4930
4930
|
*
|
|
4931
4931
|
* @type {{ [key: string]: IProductResponseVariantsValue; }}
|
|
@@ -5001,10 +5001,10 @@ export interface IProductPostRequest {
|
|
|
5001
5001
|
'price_info': PriceType;
|
|
5002
5002
|
/**
|
|
5003
5003
|
*
|
|
5004
|
-
* @type {
|
|
5004
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
5005
5005
|
* @memberof IProductPostRequest
|
|
5006
5006
|
*/
|
|
5007
|
-
'contents':
|
|
5007
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
5008
5008
|
/**
|
|
5009
5009
|
*
|
|
5010
5010
|
* @type {{ [key: string]: IProductResponseVariantsValue; }}
|
|
@@ -5122,10 +5122,10 @@ export interface IProductResponse {
|
|
|
5122
5122
|
'price_info': PriceType;
|
|
5123
5123
|
/**
|
|
5124
5124
|
*
|
|
5125
|
-
* @type {
|
|
5125
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
5126
5126
|
* @memberof IProductResponse
|
|
5127
5127
|
*/
|
|
5128
|
-
'contents':
|
|
5128
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
5129
5129
|
/**
|
|
5130
5130
|
*
|
|
5131
5131
|
* @type {{ [key: string]: IProductResponseVariantsValue; }}
|
|
@@ -6359,6 +6359,31 @@ export declare const PageTypeEnum: {
|
|
|
6359
6359
|
readonly NOT_FOUND: "not-found";
|
|
6360
6360
|
};
|
|
6361
6361
|
export type PageTypeEnum = typeof PageTypeEnum[keyof typeof PageTypeEnum];
|
|
6362
|
+
/**
|
|
6363
|
+
* Make all properties in T optional
|
|
6364
|
+
* @export
|
|
6365
|
+
* @interface PartialRecordLanguageEnumIContentsValue
|
|
6366
|
+
*/
|
|
6367
|
+
export interface PartialRecordLanguageEnumIContentsValue {
|
|
6368
|
+
/**
|
|
6369
|
+
*
|
|
6370
|
+
* @type {IContentsValue}
|
|
6371
|
+
* @memberof PartialRecordLanguageEnumIContentsValue
|
|
6372
|
+
*/
|
|
6373
|
+
'tr'?: IContentsValue;
|
|
6374
|
+
/**
|
|
6375
|
+
*
|
|
6376
|
+
* @type {IContentsValue}
|
|
6377
|
+
* @memberof PartialRecordLanguageEnumIContentsValue
|
|
6378
|
+
*/
|
|
6379
|
+
'en'?: IContentsValue;
|
|
6380
|
+
/**
|
|
6381
|
+
*
|
|
6382
|
+
* @type {IContentsValue}
|
|
6383
|
+
* @memberof PartialRecordLanguageEnumIContentsValue
|
|
6384
|
+
*/
|
|
6385
|
+
'de'?: IContentsValue;
|
|
6386
|
+
}
|
|
6362
6387
|
/**
|
|
6363
6388
|
* From T, pick a set of properties whose keys are in the union K
|
|
6364
6389
|
* @export
|
|
@@ -6416,10 +6441,10 @@ export interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponse
|
|
|
6416
6441
|
'company': string;
|
|
6417
6442
|
/**
|
|
6418
6443
|
*
|
|
6419
|
-
* @type {
|
|
6444
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
6420
6445
|
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponse
|
|
6421
6446
|
*/
|
|
6422
|
-
'contents':
|
|
6447
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
6423
6448
|
/**
|
|
6424
6449
|
*
|
|
6425
6450
|
* @type {IImage}
|
|
@@ -6471,10 +6496,10 @@ export interface PickICategoryExcludeKeyofICategoryAttributes {
|
|
|
6471
6496
|
'main'?: string;
|
|
6472
6497
|
/**
|
|
6473
6498
|
*
|
|
6474
|
-
* @type {
|
|
6499
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
6475
6500
|
* @memberof PickICategoryExcludeKeyofICategoryAttributes
|
|
6476
6501
|
*/
|
|
6477
|
-
'contents':
|
|
6502
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
6478
6503
|
/**
|
|
6479
6504
|
*
|
|
6480
6505
|
* @type {IImage}
|
|
@@ -6502,10 +6527,10 @@ export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoRes
|
|
|
6502
6527
|
'main'?: string;
|
|
6503
6528
|
/**
|
|
6504
6529
|
*
|
|
6505
|
-
* @type {
|
|
6530
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
6506
6531
|
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributes
|
|
6507
6532
|
*/
|
|
6508
|
-
'contents':
|
|
6533
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
6509
6534
|
/**
|
|
6510
6535
|
*
|
|
6511
6536
|
* @type {IImage}
|
|
@@ -6527,10 +6552,10 @@ export interface PickICategoryResponseIdOrContentsOrAttributes {
|
|
|
6527
6552
|
'_id': string;
|
|
6528
6553
|
/**
|
|
6529
6554
|
*
|
|
6530
|
-
* @type {
|
|
6555
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
6531
6556
|
* @memberof PickICategoryResponseIdOrContentsOrAttributes
|
|
6532
6557
|
*/
|
|
6533
|
-
'contents':
|
|
6558
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
6534
6559
|
/**
|
|
6535
6560
|
*
|
|
6536
6561
|
* @type {Array<ICategoryResponseAttributesInner>}
|
|
@@ -6576,10 +6601,10 @@ export interface PickICollectionExcludeKeyofICollectionTemplate {
|
|
|
6576
6601
|
'updatedAt': string;
|
|
6577
6602
|
/**
|
|
6578
6603
|
*
|
|
6579
|
-
* @type {
|
|
6604
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
6580
6605
|
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
6581
6606
|
*/
|
|
6582
|
-
'contents':
|
|
6607
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
6583
6608
|
/**
|
|
6584
6609
|
*
|
|
6585
6610
|
* @type {IImage}
|
|
@@ -6601,10 +6626,10 @@ export interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMong
|
|
|
6601
6626
|
'company': string;
|
|
6602
6627
|
/**
|
|
6603
6628
|
*
|
|
6604
|
-
* @type {
|
|
6629
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
6605
6630
|
* @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplate
|
|
6606
6631
|
*/
|
|
6607
|
-
'contents':
|
|
6632
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
6608
6633
|
/**
|
|
6609
6634
|
*
|
|
6610
6635
|
* @type {IImage}
|
|
@@ -7214,6 +7239,215 @@ export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUse
|
|
|
7214
7239
|
*/
|
|
7215
7240
|
'user': string;
|
|
7216
7241
|
}
|
|
7242
|
+
/**
|
|
7243
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
7244
|
+
* @export
|
|
7245
|
+
* @interface PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7246
|
+
*/
|
|
7247
|
+
export interface PickICompanyResponseExcludeKeyofICompanyResponseMain {
|
|
7248
|
+
/**
|
|
7249
|
+
*
|
|
7250
|
+
* @type {string}
|
|
7251
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7252
|
+
*/
|
|
7253
|
+
'name': string;
|
|
7254
|
+
/**
|
|
7255
|
+
*
|
|
7256
|
+
* @type {string}
|
|
7257
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7258
|
+
*/
|
|
7259
|
+
'phone'?: string;
|
|
7260
|
+
/**
|
|
7261
|
+
*
|
|
7262
|
+
* @type {string}
|
|
7263
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7264
|
+
*/
|
|
7265
|
+
'email'?: string;
|
|
7266
|
+
/**
|
|
7267
|
+
*
|
|
7268
|
+
* @type {LanguageEnum}
|
|
7269
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7270
|
+
*/
|
|
7271
|
+
'language': LanguageEnum;
|
|
7272
|
+
/**
|
|
7273
|
+
*
|
|
7274
|
+
* @type {CompanyStatusEnum}
|
|
7275
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7276
|
+
*/
|
|
7277
|
+
'status': CompanyStatusEnum;
|
|
7278
|
+
/**
|
|
7279
|
+
*
|
|
7280
|
+
* @type {string}
|
|
7281
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7282
|
+
*/
|
|
7283
|
+
'_id': string;
|
|
7284
|
+
/**
|
|
7285
|
+
*
|
|
7286
|
+
* @type {number}
|
|
7287
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7288
|
+
*/
|
|
7289
|
+
'__v': number;
|
|
7290
|
+
/**
|
|
7291
|
+
*
|
|
7292
|
+
* @type {string}
|
|
7293
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7294
|
+
*/
|
|
7295
|
+
'createdAt': string;
|
|
7296
|
+
/**
|
|
7297
|
+
*
|
|
7298
|
+
* @type {string}
|
|
7299
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7300
|
+
*/
|
|
7301
|
+
'updatedAt': string;
|
|
7302
|
+
/**
|
|
7303
|
+
*
|
|
7304
|
+
* @type {ICompanyResponseConfig}
|
|
7305
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7306
|
+
*/
|
|
7307
|
+
'config': ICompanyResponseConfig;
|
|
7308
|
+
/**
|
|
7309
|
+
*
|
|
7310
|
+
* @type {PlanTypeEnum}
|
|
7311
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7312
|
+
*/
|
|
7313
|
+
'plan': PlanTypeEnum;
|
|
7314
|
+
/**
|
|
7315
|
+
*
|
|
7316
|
+
* @type {CompanyTypeEnum}
|
|
7317
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7318
|
+
*/
|
|
7319
|
+
'type': CompanyTypeEnum;
|
|
7320
|
+
/**
|
|
7321
|
+
*
|
|
7322
|
+
* @type {string}
|
|
7323
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7324
|
+
*/
|
|
7325
|
+
'owner': string;
|
|
7326
|
+
/**
|
|
7327
|
+
*
|
|
7328
|
+
* @type {PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsAddress}
|
|
7329
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7330
|
+
*/
|
|
7331
|
+
'address'?: PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsAddress;
|
|
7332
|
+
/**
|
|
7333
|
+
*
|
|
7334
|
+
* @type {Array<string>}
|
|
7335
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7336
|
+
*/
|
|
7337
|
+
'domains': Array<string>;
|
|
7338
|
+
/**
|
|
7339
|
+
*
|
|
7340
|
+
* @type {string}
|
|
7341
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7342
|
+
*/
|
|
7343
|
+
'dns_zone_id'?: string;
|
|
7344
|
+
/**
|
|
7345
|
+
*
|
|
7346
|
+
* @type {string}
|
|
7347
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7348
|
+
*/
|
|
7349
|
+
'dns_zone_domain'?: string;
|
|
7350
|
+
/**
|
|
7351
|
+
*
|
|
7352
|
+
* @type {Array<PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsCustomHostnamesInner>}
|
|
7353
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7354
|
+
*/
|
|
7355
|
+
'custom_hostnames': Array<PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsCustomHostnamesInner>;
|
|
7356
|
+
/**
|
|
7357
|
+
*
|
|
7358
|
+
* @type {{ [key: string]: string; }}
|
|
7359
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7360
|
+
*/
|
|
7361
|
+
'socials'?: {
|
|
7362
|
+
[key: string]: string;
|
|
7363
|
+
};
|
|
7364
|
+
/**
|
|
7365
|
+
*
|
|
7366
|
+
* @type {string}
|
|
7367
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7368
|
+
*/
|
|
7369
|
+
'description'?: string;
|
|
7370
|
+
/**
|
|
7371
|
+
*
|
|
7372
|
+
* @type {IImage}
|
|
7373
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7374
|
+
*/
|
|
7375
|
+
'logo'?: IImage;
|
|
7376
|
+
/**
|
|
7377
|
+
*
|
|
7378
|
+
* @type {TimezoneEnum}
|
|
7379
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7380
|
+
*/
|
|
7381
|
+
'timezone': TimezoneEnum;
|
|
7382
|
+
/**
|
|
7383
|
+
*
|
|
7384
|
+
* @type {Array<LanguageEnum>}
|
|
7385
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7386
|
+
*/
|
|
7387
|
+
'languages': Array<LanguageEnum>;
|
|
7388
|
+
/**
|
|
7389
|
+
*
|
|
7390
|
+
* @type {CurrencyEnum}
|
|
7391
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7392
|
+
*/
|
|
7393
|
+
'currency': CurrencyEnum;
|
|
7394
|
+
/**
|
|
7395
|
+
*
|
|
7396
|
+
* @type {RecordCurrencyEnumCurrency}
|
|
7397
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7398
|
+
*/
|
|
7399
|
+
'currencies': RecordCurrencyEnumCurrency;
|
|
7400
|
+
/**
|
|
7401
|
+
*
|
|
7402
|
+
* @type {Array<PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsWarehousesInner>}
|
|
7403
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7404
|
+
*/
|
|
7405
|
+
'warehouses': Array<PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsWarehousesInner>;
|
|
7406
|
+
/**
|
|
7407
|
+
*
|
|
7408
|
+
* @type {{ [key: string]: PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsNavigationsValue; }}
|
|
7409
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7410
|
+
*/
|
|
7411
|
+
'navigations': {
|
|
7412
|
+
[key: string]: PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsNavigationsValue;
|
|
7413
|
+
};
|
|
7414
|
+
/**
|
|
7415
|
+
*
|
|
7416
|
+
* @type {PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsFirebaseWebCredentials}
|
|
7417
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7418
|
+
*/
|
|
7419
|
+
'firebase_web_credentials'?: PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsFirebaseWebCredentials;
|
|
7420
|
+
/**
|
|
7421
|
+
*
|
|
7422
|
+
* @type {PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsFirebaseLogin}
|
|
7423
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7424
|
+
*/
|
|
7425
|
+
'firebase_login': PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsFirebaseLogin;
|
|
7426
|
+
/**
|
|
7427
|
+
*
|
|
7428
|
+
* @type {string}
|
|
7429
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7430
|
+
*/
|
|
7431
|
+
'sender_email'?: string;
|
|
7432
|
+
/**
|
|
7433
|
+
*
|
|
7434
|
+
* @type {string}
|
|
7435
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7436
|
+
*/
|
|
7437
|
+
'sender_name'?: string;
|
|
7438
|
+
/**
|
|
7439
|
+
*
|
|
7440
|
+
* @type {Array<PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsSenderEmailDnsRecordsInner>}
|
|
7441
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7442
|
+
*/
|
|
7443
|
+
'sender_email_dns_records'?: Array<PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsSenderEmailDnsRecordsInner>;
|
|
7444
|
+
/**
|
|
7445
|
+
*
|
|
7446
|
+
* @type {RecordCurrencyEnumNumber}
|
|
7447
|
+
* @memberof PickICompanyResponseExcludeKeyofICompanyResponseMain
|
|
7448
|
+
*/
|
|
7449
|
+
'currency_rates': RecordCurrencyEnumNumber;
|
|
7450
|
+
}
|
|
7217
7451
|
/**
|
|
7218
7452
|
* From T, pick a set of properties whose keys are in the union K
|
|
7219
7453
|
* @export
|
|
@@ -7258,10 +7492,10 @@ export interface PickIPageExcludeKeyofIPageTemplate {
|
|
|
7258
7492
|
'type': PageTypeEnum;
|
|
7259
7493
|
/**
|
|
7260
7494
|
*
|
|
7261
|
-
* @type {
|
|
7495
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
7262
7496
|
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
7263
7497
|
*/
|
|
7264
|
-
'contents':
|
|
7498
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
7265
7499
|
/**
|
|
7266
7500
|
*
|
|
7267
7501
|
* @type {IImage}
|
|
@@ -7289,10 +7523,10 @@ export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrT
|
|
|
7289
7523
|
'type': PageTypeEnum;
|
|
7290
7524
|
/**
|
|
7291
7525
|
*
|
|
7292
|
-
* @type {
|
|
7526
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
7293
7527
|
* @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplate
|
|
7294
7528
|
*/
|
|
7295
|
-
'contents':
|
|
7529
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
7296
7530
|
/**
|
|
7297
7531
|
*
|
|
7298
7532
|
* @type {IImage}
|
|
@@ -7382,10 +7616,10 @@ export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplate {
|
|
|
7382
7616
|
'price_info': PriceType;
|
|
7383
7617
|
/**
|
|
7384
7618
|
*
|
|
7385
|
-
* @type {
|
|
7619
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
7386
7620
|
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplate
|
|
7387
7621
|
*/
|
|
7388
|
-
'contents':
|
|
7622
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
7389
7623
|
/**
|
|
7390
7624
|
*
|
|
7391
7625
|
* @type {{ [key: string]: IProductResponseVariantsValue; }}
|
|
@@ -7429,10 +7663,10 @@ export interface PickIProductIdOrContentsOrCollectionsOrCategory {
|
|
|
7429
7663
|
'collections': Array<string>;
|
|
7430
7664
|
/**
|
|
7431
7665
|
*
|
|
7432
|
-
* @type {
|
|
7666
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
7433
7667
|
* @memberof PickIProductIdOrContentsOrCollectionsOrCategory
|
|
7434
7668
|
*/
|
|
7435
|
-
'contents':
|
|
7669
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
7436
7670
|
}
|
|
7437
7671
|
/**
|
|
7438
7672
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -7492,10 +7726,10 @@ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPo
|
|
|
7492
7726
|
'price_info': PriceType;
|
|
7493
7727
|
/**
|
|
7494
7728
|
*
|
|
7495
|
-
* @type {
|
|
7729
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
7496
7730
|
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
|
|
7497
7731
|
*/
|
|
7498
|
-
'contents':
|
|
7732
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
7499
7733
|
/**
|
|
7500
7734
|
*
|
|
7501
7735
|
* @type {{ [key: string]: IProductResponseVariantsValue; }}
|
|
@@ -7897,31 +8131,6 @@ export interface RecordCurrencyEnumNumber {
|
|
|
7897
8131
|
*/
|
|
7898
8132
|
'jpy': number;
|
|
7899
8133
|
}
|
|
7900
|
-
/**
|
|
7901
|
-
* Construct a type with a set of properties K of type T
|
|
7902
|
-
* @export
|
|
7903
|
-
* @interface RecordLanguageEnumIContentsValue
|
|
7904
|
-
*/
|
|
7905
|
-
export interface RecordLanguageEnumIContentsValue {
|
|
7906
|
-
/**
|
|
7907
|
-
*
|
|
7908
|
-
* @type {IContentsValue}
|
|
7909
|
-
* @memberof RecordLanguageEnumIContentsValue
|
|
7910
|
-
*/
|
|
7911
|
-
'tr': IContentsValue;
|
|
7912
|
-
/**
|
|
7913
|
-
*
|
|
7914
|
-
* @type {IContentsValue}
|
|
7915
|
-
* @memberof RecordLanguageEnumIContentsValue
|
|
7916
|
-
*/
|
|
7917
|
-
'en': IContentsValue;
|
|
7918
|
-
/**
|
|
7919
|
-
*
|
|
7920
|
-
* @type {IContentsValue}
|
|
7921
|
-
* @memberof RecordLanguageEnumIContentsValue
|
|
7922
|
-
*/
|
|
7923
|
-
'de': IContentsValue;
|
|
7924
|
-
}
|
|
7925
8134
|
/**
|
|
7926
8135
|
* Construct a type with a set of properties K of type T
|
|
7927
8136
|
* @export
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api-client",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.23",
|
|
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",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"bugs": {
|
|
37
37
|
"url": "https://github.com/infisale/infisale-client/issues"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "a68ddc14d236422bc06d326aa5e76df64c898667"
|
|
40
40
|
}
|