@infisale-client/api-client 1.3.54 → 1.3.56
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 +415 -307
- package/dist/api/api.js +1 -1
- package/dist/api/api.mjs +1 -1
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -1612,13 +1612,11 @@ export interface ICollection {
|
|
|
1612
1612
|
*/
|
|
1613
1613
|
'slugs': Array<string>;
|
|
1614
1614
|
/**
|
|
1615
|
-
*
|
|
1616
|
-
* @type {
|
|
1615
|
+
*
|
|
1616
|
+
* @type {string}
|
|
1617
1617
|
* @memberof ICollection
|
|
1618
1618
|
*/
|
|
1619
|
-
'
|
|
1620
|
-
[key: string]: string;
|
|
1621
|
-
};
|
|
1619
|
+
'template': string;
|
|
1622
1620
|
}
|
|
1623
1621
|
/**
|
|
1624
1622
|
*
|
|
@@ -1700,10 +1698,10 @@ export type ICollectionCollectionsQueryParamsDateFieldEnum = typeof ICollectionC
|
|
|
1700
1698
|
export interface ICollectionPatchRequest {
|
|
1701
1699
|
/**
|
|
1702
1700
|
*
|
|
1703
|
-
* @type {
|
|
1701
|
+
* @type {string}
|
|
1704
1702
|
* @memberof ICollectionPatchRequest
|
|
1705
1703
|
*/
|
|
1706
|
-
'template'?:
|
|
1704
|
+
'template'?: string;
|
|
1707
1705
|
/**
|
|
1708
1706
|
*
|
|
1709
1707
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
@@ -1731,22 +1729,22 @@ export interface ICollectionPostRequest {
|
|
|
1731
1729
|
'company': string;
|
|
1732
1730
|
/**
|
|
1733
1731
|
*
|
|
1734
|
-
* @type {
|
|
1732
|
+
* @type {string}
|
|
1735
1733
|
* @memberof ICollectionPostRequest
|
|
1736
1734
|
*/
|
|
1737
|
-
'
|
|
1735
|
+
'template': string;
|
|
1738
1736
|
/**
|
|
1739
1737
|
*
|
|
1740
|
-
* @type {
|
|
1738
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
1741
1739
|
* @memberof ICollectionPostRequest
|
|
1742
1740
|
*/
|
|
1743
|
-
'
|
|
1741
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
1744
1742
|
/**
|
|
1745
1743
|
*
|
|
1746
|
-
* @type {
|
|
1744
|
+
* @type {IImage}
|
|
1747
1745
|
* @memberof ICollectionPostRequest
|
|
1748
1746
|
*/
|
|
1749
|
-
'
|
|
1747
|
+
'thumbnail'?: IImage;
|
|
1750
1748
|
}
|
|
1751
1749
|
/**
|
|
1752
1750
|
*
|
|
@@ -1754,6 +1752,12 @@ export interface ICollectionPostRequest {
|
|
|
1754
1752
|
* @interface ICollectionResponse
|
|
1755
1753
|
*/
|
|
1756
1754
|
export interface ICollectionResponse {
|
|
1755
|
+
/**
|
|
1756
|
+
*
|
|
1757
|
+
* @type {string}
|
|
1758
|
+
* @memberof ICollectionResponse
|
|
1759
|
+
*/
|
|
1760
|
+
'company': string;
|
|
1757
1761
|
/**
|
|
1758
1762
|
*
|
|
1759
1763
|
* @type {string}
|
|
@@ -1778,18 +1782,6 @@ export interface ICollectionResponse {
|
|
|
1778
1782
|
* @memberof ICollectionResponse
|
|
1779
1783
|
*/
|
|
1780
1784
|
'updatedAt': string;
|
|
1781
|
-
/**
|
|
1782
|
-
*
|
|
1783
|
-
* @type {string}
|
|
1784
|
-
* @memberof ICollectionResponse
|
|
1785
|
-
*/
|
|
1786
|
-
'company': string;
|
|
1787
|
-
/**
|
|
1788
|
-
*
|
|
1789
|
-
* @type {IImage}
|
|
1790
|
-
* @memberof ICollectionResponse
|
|
1791
|
-
*/
|
|
1792
|
-
'thumbnail'?: IImage;
|
|
1793
1785
|
/**
|
|
1794
1786
|
*
|
|
1795
1787
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
@@ -1803,13 +1795,11 @@ export interface ICollectionResponse {
|
|
|
1803
1795
|
*/
|
|
1804
1796
|
'slugs': Array<string>;
|
|
1805
1797
|
/**
|
|
1806
|
-
*
|
|
1807
|
-
* @type {
|
|
1798
|
+
*
|
|
1799
|
+
* @type {IImage}
|
|
1808
1800
|
* @memberof ICollectionResponse
|
|
1809
1801
|
*/
|
|
1810
|
-
'
|
|
1811
|
-
[key: string]: string;
|
|
1812
|
-
};
|
|
1802
|
+
'thumbnail'?: IImage;
|
|
1813
1803
|
/**
|
|
1814
1804
|
*
|
|
1815
1805
|
* @type {ContentStatusEnum}
|
|
@@ -2221,12 +2211,6 @@ export interface ICompany {
|
|
|
2221
2211
|
* @memberof ICompany
|
|
2222
2212
|
*/
|
|
2223
2213
|
'onboarding': RecordCompanyOnboardingStepEnumBoolean;
|
|
2224
|
-
/**
|
|
2225
|
-
*
|
|
2226
|
-
* @type {Array<PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCmsCollectionsInner>}
|
|
2227
|
-
* @memberof ICompany
|
|
2228
|
-
*/
|
|
2229
|
-
'cmsCollections': Array<PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCmsCollectionsInner>;
|
|
2230
2214
|
/**
|
|
2231
2215
|
*
|
|
2232
2216
|
* @type {CompanyStatusEnum}
|
|
@@ -2464,12 +2448,6 @@ export interface ICompanyAdminResponse {
|
|
|
2464
2448
|
* @memberof ICompanyAdminResponse
|
|
2465
2449
|
*/
|
|
2466
2450
|
'onboarding': RecordCompanyOnboardingStepEnumBoolean;
|
|
2467
|
-
/**
|
|
2468
|
-
*
|
|
2469
|
-
* @type {Array<PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCmsCollectionsInner>}
|
|
2470
|
-
* @memberof ICompanyAdminResponse
|
|
2471
|
-
*/
|
|
2472
|
-
'cmsCollections': Array<PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCmsCollectionsInner>;
|
|
2473
2451
|
/**
|
|
2474
2452
|
*
|
|
2475
2453
|
* @type {string}
|
|
@@ -2576,6 +2554,12 @@ export interface ICompanyAdminResponse {
|
|
|
2576
2554
|
* @memberof ICompanyAdminResponse
|
|
2577
2555
|
*/
|
|
2578
2556
|
'accountAccess': boolean;
|
|
2557
|
+
/**
|
|
2558
|
+
*
|
|
2559
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
2560
|
+
* @memberof ICompanyAdminResponse
|
|
2561
|
+
*/
|
|
2562
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
2579
2563
|
/**
|
|
2580
2564
|
*
|
|
2581
2565
|
* @type {IPlanResponse}
|
|
@@ -3188,12 +3172,6 @@ export interface ICompanyPatchRequest {
|
|
|
3188
3172
|
'legalDocuments'?: {
|
|
3189
3173
|
[key: string]: RecordStringUrlStringFileIImageValue;
|
|
3190
3174
|
};
|
|
3191
|
-
/**
|
|
3192
|
-
*
|
|
3193
|
-
* @type {Array<PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCmsCollectionsInner>}
|
|
3194
|
-
* @memberof ICompanyPatchRequest
|
|
3195
|
-
*/
|
|
3196
|
-
'cmsCollections'?: Array<PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCmsCollectionsInner>;
|
|
3197
3175
|
/**
|
|
3198
3176
|
*
|
|
3199
3177
|
* @type {string}
|
|
@@ -3561,12 +3539,6 @@ export interface ICompanyResponse {
|
|
|
3561
3539
|
* @memberof ICompanyResponse
|
|
3562
3540
|
*/
|
|
3563
3541
|
'onboarding': RecordCompanyOnboardingStepEnumBoolean;
|
|
3564
|
-
/**
|
|
3565
|
-
*
|
|
3566
|
-
* @type {Array<PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCmsCollectionsInner>}
|
|
3567
|
-
* @memberof ICompanyResponse
|
|
3568
|
-
*/
|
|
3569
|
-
'cmsCollections': Array<PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCmsCollectionsInner>;
|
|
3570
3542
|
/**
|
|
3571
3543
|
*
|
|
3572
3544
|
* @type {string}
|
|
@@ -3653,6 +3625,12 @@ export interface ICompanyResponse {
|
|
|
3653
3625
|
* @memberof ICompanyResponse
|
|
3654
3626
|
*/
|
|
3655
3627
|
'accountAccess': boolean;
|
|
3628
|
+
/**
|
|
3629
|
+
*
|
|
3630
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
3631
|
+
* @memberof ICompanyResponse
|
|
3632
|
+
*/
|
|
3633
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
3656
3634
|
}
|
|
3657
3635
|
/**
|
|
3658
3636
|
*
|
|
@@ -5100,6 +5078,55 @@ export interface INavigationLink {
|
|
|
5100
5078
|
*/
|
|
5101
5079
|
'object': any;
|
|
5102
5080
|
}
|
|
5081
|
+
/**
|
|
5082
|
+
*
|
|
5083
|
+
* @export
|
|
5084
|
+
* @interface INavigationLinkResponse
|
|
5085
|
+
*/
|
|
5086
|
+
export interface INavigationLinkResponse {
|
|
5087
|
+
/**
|
|
5088
|
+
*
|
|
5089
|
+
* @type {any}
|
|
5090
|
+
* @memberof INavigationLinkResponse
|
|
5091
|
+
*/
|
|
5092
|
+
'object': any;
|
|
5093
|
+
/**
|
|
5094
|
+
*
|
|
5095
|
+
* @type {string}
|
|
5096
|
+
* @memberof INavigationLinkResponse
|
|
5097
|
+
*/
|
|
5098
|
+
'_id': string;
|
|
5099
|
+
/**
|
|
5100
|
+
*
|
|
5101
|
+
* @type {string}
|
|
5102
|
+
* @memberof INavigationLinkResponse
|
|
5103
|
+
*/
|
|
5104
|
+
'title': string;
|
|
5105
|
+
/**
|
|
5106
|
+
*
|
|
5107
|
+
* @type {string}
|
|
5108
|
+
* @memberof INavigationLinkResponse
|
|
5109
|
+
*/
|
|
5110
|
+
'type': string;
|
|
5111
|
+
/**
|
|
5112
|
+
*
|
|
5113
|
+
* @type {string}
|
|
5114
|
+
* @memberof INavigationLinkResponse
|
|
5115
|
+
*/
|
|
5116
|
+
'url': string;
|
|
5117
|
+
/**
|
|
5118
|
+
*
|
|
5119
|
+
* @type {number}
|
|
5120
|
+
* @memberof INavigationLinkResponse
|
|
5121
|
+
*/
|
|
5122
|
+
'levels': number;
|
|
5123
|
+
/**
|
|
5124
|
+
*
|
|
5125
|
+
* @type {Array<INavigationLinkResponse>}
|
|
5126
|
+
* @memberof INavigationLinkResponse
|
|
5127
|
+
*/
|
|
5128
|
+
'links': Array<INavigationLinkResponse>;
|
|
5129
|
+
}
|
|
5103
5130
|
/**
|
|
5104
5131
|
*
|
|
5105
5132
|
* @export
|
|
@@ -5114,16 +5141,16 @@ export interface INavigationPatchRequest {
|
|
|
5114
5141
|
'title'?: string;
|
|
5115
5142
|
/**
|
|
5116
5143
|
*
|
|
5117
|
-
* @type {
|
|
5144
|
+
* @type {Array<INavigationLink>}
|
|
5118
5145
|
* @memberof INavigationPatchRequest
|
|
5119
5146
|
*/
|
|
5120
|
-
'
|
|
5147
|
+
'links'?: Array<INavigationLink>;
|
|
5121
5148
|
/**
|
|
5122
5149
|
*
|
|
5123
|
-
* @type {
|
|
5150
|
+
* @type {LanguageEnum}
|
|
5124
5151
|
* @memberof INavigationPatchRequest
|
|
5125
5152
|
*/
|
|
5126
|
-
'
|
|
5153
|
+
'locale'?: LanguageEnum;
|
|
5127
5154
|
}
|
|
5128
5155
|
/**
|
|
5129
5156
|
*
|
|
@@ -5151,16 +5178,16 @@ export interface INavigationPostRequest {
|
|
|
5151
5178
|
'slug': string;
|
|
5152
5179
|
/**
|
|
5153
5180
|
*
|
|
5154
|
-
* @type {
|
|
5181
|
+
* @type {Array<INavigationLink>}
|
|
5155
5182
|
* @memberof INavigationPostRequest
|
|
5156
5183
|
*/
|
|
5157
|
-
'
|
|
5184
|
+
'links': Array<INavigationLink>;
|
|
5158
5185
|
/**
|
|
5159
5186
|
*
|
|
5160
|
-
* @type {
|
|
5187
|
+
* @type {LanguageEnum}
|
|
5161
5188
|
* @memberof INavigationPostRequest
|
|
5162
5189
|
*/
|
|
5163
|
-
'
|
|
5190
|
+
'locale': LanguageEnum;
|
|
5164
5191
|
}
|
|
5165
5192
|
/**
|
|
5166
5193
|
*
|
|
@@ -5168,6 +5195,12 @@ export interface INavigationPostRequest {
|
|
|
5168
5195
|
* @interface INavigationResponse
|
|
5169
5196
|
*/
|
|
5170
5197
|
export interface INavigationResponse {
|
|
5198
|
+
/**
|
|
5199
|
+
*
|
|
5200
|
+
* @type {string}
|
|
5201
|
+
* @memberof INavigationResponse
|
|
5202
|
+
*/
|
|
5203
|
+
'company': string;
|
|
5171
5204
|
/**
|
|
5172
5205
|
*
|
|
5173
5206
|
* @type {string}
|
|
@@ -5197,31 +5230,25 @@ export interface INavigationResponse {
|
|
|
5197
5230
|
* @type {string}
|
|
5198
5231
|
* @memberof INavigationResponse
|
|
5199
5232
|
*/
|
|
5200
|
-
'
|
|
5201
|
-
/**
|
|
5202
|
-
*
|
|
5203
|
-
* @type {LanguageEnum}
|
|
5204
|
-
* @memberof INavigationResponse
|
|
5205
|
-
*/
|
|
5206
|
-
'locale': LanguageEnum;
|
|
5233
|
+
'title': string;
|
|
5207
5234
|
/**
|
|
5208
5235
|
*
|
|
5209
5236
|
* @type {string}
|
|
5210
5237
|
* @memberof INavigationResponse
|
|
5211
5238
|
*/
|
|
5212
|
-
'
|
|
5239
|
+
'slug': string;
|
|
5213
5240
|
/**
|
|
5214
5241
|
*
|
|
5215
|
-
* @type {
|
|
5242
|
+
* @type {LanguageEnum}
|
|
5216
5243
|
* @memberof INavigationResponse
|
|
5217
5244
|
*/
|
|
5218
|
-
'
|
|
5245
|
+
'locale': LanguageEnum;
|
|
5219
5246
|
/**
|
|
5220
5247
|
*
|
|
5221
|
-
* @type {Array<
|
|
5248
|
+
* @type {Array<INavigationLinkResponse>}
|
|
5222
5249
|
* @memberof INavigationResponse
|
|
5223
5250
|
*/
|
|
5224
|
-
'links': Array<
|
|
5251
|
+
'links': Array<INavigationLinkResponse>;
|
|
5225
5252
|
}
|
|
5226
5253
|
/**
|
|
5227
5254
|
*
|
|
@@ -6547,10 +6574,10 @@ export interface IPageGetAllQueryParams {
|
|
|
6547
6574
|
export interface IPagePatchRequest {
|
|
6548
6575
|
/**
|
|
6549
6576
|
*
|
|
6550
|
-
* @type {
|
|
6577
|
+
* @type {string}
|
|
6551
6578
|
* @memberof IPagePatchRequest
|
|
6552
6579
|
*/
|
|
6553
|
-
'template'?:
|
|
6580
|
+
'template'?: string;
|
|
6554
6581
|
/**
|
|
6555
6582
|
*
|
|
6556
6583
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
@@ -6576,6 +6603,12 @@ export interface IPagePostRequest {
|
|
|
6576
6603
|
* @memberof IPagePostRequest
|
|
6577
6604
|
*/
|
|
6578
6605
|
'company': string;
|
|
6606
|
+
/**
|
|
6607
|
+
*
|
|
6608
|
+
* @type {string}
|
|
6609
|
+
* @memberof IPagePostRequest
|
|
6610
|
+
*/
|
|
6611
|
+
'template': string;
|
|
6579
6612
|
/**
|
|
6580
6613
|
*
|
|
6581
6614
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
@@ -6594,12 +6627,6 @@ export interface IPagePostRequest {
|
|
|
6594
6627
|
* @memberof IPagePostRequest
|
|
6595
6628
|
*/
|
|
6596
6629
|
'type': string;
|
|
6597
|
-
/**
|
|
6598
|
-
*
|
|
6599
|
-
* @type {ITemplateResponse}
|
|
6600
|
-
* @memberof IPagePostRequest
|
|
6601
|
-
*/
|
|
6602
|
-
'template'?: ITemplateResponse;
|
|
6603
6630
|
}
|
|
6604
6631
|
/**
|
|
6605
6632
|
*
|
|
@@ -6637,14 +6664,6 @@ export interface IPageResponse {
|
|
|
6637
6664
|
* @memberof IPageResponse
|
|
6638
6665
|
*/
|
|
6639
6666
|
'updatedAt': string;
|
|
6640
|
-
/**
|
|
6641
|
-
* Construct a type with a set of properties K of type T
|
|
6642
|
-
* @type {{ [key: string]: string; }}
|
|
6643
|
-
* @memberof IPageResponse
|
|
6644
|
-
*/
|
|
6645
|
-
'templates': {
|
|
6646
|
-
[key: string]: string;
|
|
6647
|
-
};
|
|
6648
6667
|
/**
|
|
6649
6668
|
*
|
|
6650
6669
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
@@ -7342,10 +7361,10 @@ export interface IProductPatchRequest {
|
|
|
7342
7361
|
'brand'?: string;
|
|
7343
7362
|
/**
|
|
7344
7363
|
*
|
|
7345
|
-
* @type {
|
|
7364
|
+
* @type {string}
|
|
7346
7365
|
* @memberof IProductPatchRequest
|
|
7347
7366
|
*/
|
|
7348
|
-
'template'?:
|
|
7367
|
+
'template'?: string;
|
|
7349
7368
|
/**
|
|
7350
7369
|
*
|
|
7351
7370
|
* @type {string}
|
|
@@ -7523,10 +7542,10 @@ export interface IProductPostRequest {
|
|
|
7523
7542
|
'brand'?: string;
|
|
7524
7543
|
/**
|
|
7525
7544
|
*
|
|
7526
|
-
* @type {
|
|
7545
|
+
* @type {string}
|
|
7527
7546
|
* @memberof IProductPostRequest
|
|
7528
7547
|
*/
|
|
7529
|
-
'template'
|
|
7548
|
+
'template': string;
|
|
7530
7549
|
}
|
|
7531
7550
|
/**
|
|
7532
7551
|
*
|
|
@@ -7594,14 +7613,6 @@ export interface IProductResponse {
|
|
|
7594
7613
|
* @memberof IProductResponse
|
|
7595
7614
|
*/
|
|
7596
7615
|
'collections': Array<string>;
|
|
7597
|
-
/**
|
|
7598
|
-
* Construct a type with a set of properties K of type T
|
|
7599
|
-
* @type {{ [key: string]: string; }}
|
|
7600
|
-
* @memberof IProductResponse
|
|
7601
|
-
*/
|
|
7602
|
-
'templates': {
|
|
7603
|
-
[key: string]: string;
|
|
7604
|
-
};
|
|
7605
7616
|
/**
|
|
7606
7617
|
*
|
|
7607
7618
|
* @type {string}
|
|
@@ -8686,18 +8697,6 @@ export interface ITemplatePatchRequest {
|
|
|
8686
8697
|
* @memberof ITemplatePatchRequest
|
|
8687
8698
|
*/
|
|
8688
8699
|
'type'?: string;
|
|
8689
|
-
/**
|
|
8690
|
-
*
|
|
8691
|
-
* @type {boolean}
|
|
8692
|
-
* @memberof ITemplatePatchRequest
|
|
8693
|
-
*/
|
|
8694
|
-
'unique'?: boolean;
|
|
8695
|
-
/**
|
|
8696
|
-
*
|
|
8697
|
-
* @type {boolean}
|
|
8698
|
-
* @memberof ITemplatePatchRequest
|
|
8699
|
-
*/
|
|
8700
|
-
'default'?: boolean;
|
|
8701
8700
|
}
|
|
8702
8701
|
/**
|
|
8703
8702
|
*
|
|
@@ -8735,18 +8734,6 @@ export interface ITemplatePostRequest {
|
|
|
8735
8734
|
* @memberof ITemplatePostRequest
|
|
8736
8735
|
*/
|
|
8737
8736
|
'type': string;
|
|
8738
|
-
/**
|
|
8739
|
-
*
|
|
8740
|
-
* @type {boolean}
|
|
8741
|
-
* @memberof ITemplatePostRequest
|
|
8742
|
-
*/
|
|
8743
|
-
'unique': boolean;
|
|
8744
|
-
/**
|
|
8745
|
-
*
|
|
8746
|
-
* @type {boolean}
|
|
8747
|
-
* @memberof ITemplatePostRequest
|
|
8748
|
-
*/
|
|
8749
|
-
'default'?: boolean;
|
|
8750
8737
|
}
|
|
8751
8738
|
/**
|
|
8752
8739
|
*
|
|
@@ -8802,18 +8789,6 @@ export interface ITemplateResponse {
|
|
|
8802
8789
|
* @memberof ITemplateResponse
|
|
8803
8790
|
*/
|
|
8804
8791
|
'type': string;
|
|
8805
|
-
/**
|
|
8806
|
-
*
|
|
8807
|
-
* @type {boolean}
|
|
8808
|
-
* @memberof ITemplateResponse
|
|
8809
|
-
*/
|
|
8810
|
-
'unique': boolean;
|
|
8811
|
-
/**
|
|
8812
|
-
*
|
|
8813
|
-
* @type {boolean}
|
|
8814
|
-
* @memberof ITemplateResponse
|
|
8815
|
-
*/
|
|
8816
|
-
'default'?: boolean;
|
|
8817
8792
|
/**
|
|
8818
8793
|
*
|
|
8819
8794
|
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
@@ -8934,6 +8909,12 @@ export interface ITheme {
|
|
|
8934
8909
|
* @memberof ITheme
|
|
8935
8910
|
*/
|
|
8936
8911
|
'lastVersion': string;
|
|
8912
|
+
/**
|
|
8913
|
+
*
|
|
8914
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
8915
|
+
* @memberof ITheme
|
|
8916
|
+
*/
|
|
8917
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
8937
8918
|
/**
|
|
8938
8919
|
*
|
|
8939
8920
|
* @type {boolean}
|
|
@@ -9136,6 +9117,12 @@ export interface IThemeResponse {
|
|
|
9136
9117
|
* @memberof IThemeResponse
|
|
9137
9118
|
*/
|
|
9138
9119
|
'lastVersion': string;
|
|
9120
|
+
/**
|
|
9121
|
+
*
|
|
9122
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
9123
|
+
* @memberof IThemeResponse
|
|
9124
|
+
*/
|
|
9125
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
9139
9126
|
/**
|
|
9140
9127
|
*
|
|
9141
9128
|
* @type {boolean}
|
|
@@ -9349,6 +9336,12 @@ export interface IThemesResponseData {
|
|
|
9349
9336
|
* @memberof IThemesResponseData
|
|
9350
9337
|
*/
|
|
9351
9338
|
'creator'?: string;
|
|
9339
|
+
/**
|
|
9340
|
+
*
|
|
9341
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
9342
|
+
* @memberof IThemesResponseData
|
|
9343
|
+
*/
|
|
9344
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
9352
9345
|
/**
|
|
9353
9346
|
*
|
|
9354
9347
|
* @type {boolean}
|
|
@@ -9496,6 +9489,12 @@ export interface IThemesResponseDataMain {
|
|
|
9496
9489
|
* @memberof IThemesResponseDataMain
|
|
9497
9490
|
*/
|
|
9498
9491
|
'creator'?: string;
|
|
9492
|
+
/**
|
|
9493
|
+
*
|
|
9494
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
9495
|
+
* @memberof IThemesResponseDataMain
|
|
9496
|
+
*/
|
|
9497
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
9499
9498
|
/**
|
|
9500
9499
|
*
|
|
9501
9500
|
* @type {boolean}
|
|
@@ -9636,14 +9635,6 @@ export interface IUniquePageResponse {
|
|
|
9636
9635
|
* @memberof IUniquePageResponse
|
|
9637
9636
|
*/
|
|
9638
9637
|
'updatedAt': string;
|
|
9639
|
-
/**
|
|
9640
|
-
* Construct a type with a set of properties K of type T
|
|
9641
|
-
* @type {{ [key: string]: string; }}
|
|
9642
|
-
* @memberof IUniquePageResponse
|
|
9643
|
-
*/
|
|
9644
|
-
'templates': {
|
|
9645
|
-
[key: string]: string;
|
|
9646
|
-
};
|
|
9647
9638
|
/**
|
|
9648
9639
|
*
|
|
9649
9640
|
* @type {PartialRecordLanguageEnumTitleStringDescription63String}
|
|
@@ -10875,82 +10866,143 @@ export interface PickICategoryResponseIdOrContentsOrAttributes {
|
|
|
10875
10866
|
/**
|
|
10876
10867
|
* From T, pick a set of properties whose keys are in the union K
|
|
10877
10868
|
* @export
|
|
10878
|
-
* @interface
|
|
10869
|
+
* @interface PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
10879
10870
|
*/
|
|
10880
|
-
export interface
|
|
10871
|
+
export interface PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrSlugsOrKeyofIContentsValue {
|
|
10881
10872
|
/**
|
|
10882
10873
|
*
|
|
10883
|
-
* @type {
|
|
10884
|
-
* @memberof
|
|
10874
|
+
* @type {string}
|
|
10875
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
10885
10876
|
*/
|
|
10886
|
-
'
|
|
10877
|
+
'company': string;
|
|
10887
10878
|
/**
|
|
10888
10879
|
*
|
|
10889
|
-
* @type {
|
|
10890
|
-
* @memberof
|
|
10880
|
+
* @type {string}
|
|
10881
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
10891
10882
|
*/
|
|
10892
|
-
'
|
|
10883
|
+
'template': string;
|
|
10893
10884
|
/**
|
|
10894
10885
|
*
|
|
10895
|
-
* @type {
|
|
10896
|
-
* @memberof
|
|
10886
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
10887
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
10897
10888
|
*/
|
|
10898
|
-
'
|
|
10889
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
10899
10890
|
/**
|
|
10900
10891
|
*
|
|
10901
|
-
* @type {
|
|
10902
|
-
* @memberof
|
|
10892
|
+
* @type {IImage}
|
|
10893
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
10903
10894
|
*/
|
|
10904
|
-
'
|
|
10895
|
+
'thumbnail'?: IImage;
|
|
10896
|
+
}
|
|
10897
|
+
/**
|
|
10898
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
10899
|
+
* @export
|
|
10900
|
+
* @interface PickICollectionExcludeKeyofICollectionTemplate
|
|
10901
|
+
*/
|
|
10902
|
+
export interface PickICollectionExcludeKeyofICollectionTemplate {
|
|
10905
10903
|
/**
|
|
10906
10904
|
*
|
|
10907
10905
|
* @type {string}
|
|
10908
|
-
* @memberof
|
|
10906
|
+
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
10909
10907
|
*/
|
|
10910
|
-
'
|
|
10908
|
+
'company': string;
|
|
10911
10909
|
/**
|
|
10912
10910
|
*
|
|
10913
10911
|
* @type {string}
|
|
10914
|
-
* @memberof
|
|
10912
|
+
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
10915
10913
|
*/
|
|
10916
|
-
'
|
|
10914
|
+
'_id': string;
|
|
10915
|
+
/**
|
|
10916
|
+
*
|
|
10917
|
+
* @type {number}
|
|
10918
|
+
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
10919
|
+
*/
|
|
10920
|
+
'__v': number;
|
|
10917
10921
|
/**
|
|
10918
10922
|
*
|
|
10919
10923
|
* @type {string}
|
|
10920
|
-
* @memberof
|
|
10924
|
+
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
10921
10925
|
*/
|
|
10922
|
-
'
|
|
10926
|
+
'createdAt': string;
|
|
10927
|
+
/**
|
|
10928
|
+
*
|
|
10929
|
+
* @type {string}
|
|
10930
|
+
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
10931
|
+
*/
|
|
10932
|
+
'updatedAt': string;
|
|
10933
|
+
/**
|
|
10934
|
+
*
|
|
10935
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
10936
|
+
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
10937
|
+
*/
|
|
10938
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
10939
|
+
/**
|
|
10940
|
+
*
|
|
10941
|
+
* @type {Array<string>}
|
|
10942
|
+
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
10943
|
+
*/
|
|
10944
|
+
'slugs': Array<string>;
|
|
10945
|
+
/**
|
|
10946
|
+
*
|
|
10947
|
+
* @type {IImage}
|
|
10948
|
+
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
10949
|
+
*/
|
|
10950
|
+
'thumbnail'?: IImage;
|
|
10923
10951
|
}
|
|
10924
|
-
export declare const PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum: {
|
|
10925
|
-
readonly CREATED_AT: "createdAt";
|
|
10926
|
-
readonly UPDATED_AT: "updatedAt";
|
|
10927
|
-
};
|
|
10928
|
-
export type PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum = typeof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum[keyof typeof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum];
|
|
10929
10952
|
/**
|
|
10930
10953
|
* From T, pick a set of properties whose keys are in the union K
|
|
10931
10954
|
* @export
|
|
10932
|
-
* @interface
|
|
10955
|
+
* @interface PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
10933
10956
|
*/
|
|
10934
|
-
export interface
|
|
10957
|
+
export interface PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort {
|
|
10958
|
+
/**
|
|
10959
|
+
*
|
|
10960
|
+
* @type {OrderEnum}
|
|
10961
|
+
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
10962
|
+
*/
|
|
10963
|
+
'order'?: OrderEnum;
|
|
10964
|
+
/**
|
|
10965
|
+
*
|
|
10966
|
+
* @type {number}
|
|
10967
|
+
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
10968
|
+
*/
|
|
10969
|
+
'page'?: number;
|
|
10970
|
+
/**
|
|
10971
|
+
*
|
|
10972
|
+
* @type {number}
|
|
10973
|
+
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
10974
|
+
*/
|
|
10975
|
+
'itemsPerPage'?: number;
|
|
10935
10976
|
/**
|
|
10936
10977
|
*
|
|
10937
10978
|
* @type {string}
|
|
10938
|
-
* @memberof
|
|
10979
|
+
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
10939
10980
|
*/
|
|
10940
|
-
'
|
|
10981
|
+
'search'?: string;
|
|
10941
10982
|
/**
|
|
10942
10983
|
*
|
|
10943
|
-
* @type {
|
|
10944
|
-
* @memberof
|
|
10984
|
+
* @type {string}
|
|
10985
|
+
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
10945
10986
|
*/
|
|
10946
|
-
'
|
|
10987
|
+
'startDate'?: string;
|
|
10947
10988
|
/**
|
|
10948
10989
|
*
|
|
10949
|
-
* @type {
|
|
10950
|
-
* @memberof
|
|
10990
|
+
* @type {string}
|
|
10991
|
+
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
10951
10992
|
*/
|
|
10952
|
-
'
|
|
10993
|
+
'endDate'?: string;
|
|
10994
|
+
/**
|
|
10995
|
+
*
|
|
10996
|
+
* @type {string}
|
|
10997
|
+
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
10998
|
+
*/
|
|
10999
|
+
'dateField'?: PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum;
|
|
10953
11000
|
}
|
|
11001
|
+
export declare const PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum: {
|
|
11002
|
+
readonly CREATED_AT: "createdAt";
|
|
11003
|
+
readonly UPDATED_AT: "updatedAt";
|
|
11004
|
+
};
|
|
11005
|
+
export type PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum = typeof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum[keyof typeof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum];
|
|
10954
11006
|
/**
|
|
10955
11007
|
* From T, pick a set of properties whose keys are in the union K
|
|
10956
11008
|
* @export
|
|
@@ -11231,12 +11283,6 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
11231
11283
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
11232
11284
|
*/
|
|
11233
11285
|
'onboarding': RecordCompanyOnboardingStepEnumBoolean;
|
|
11234
|
-
/**
|
|
11235
|
-
*
|
|
11236
|
-
* @type {Array<PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCmsCollectionsInner>}
|
|
11237
|
-
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
11238
|
-
*/
|
|
11239
|
-
'cmsCollections': Array<PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCmsCollectionsInner>;
|
|
11240
11286
|
/**
|
|
11241
11287
|
*
|
|
11242
11288
|
* @type {string}
|
|
@@ -11256,37 +11302,6 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
11256
11302
|
*/
|
|
11257
11303
|
'storageUsageBytes': number;
|
|
11258
11304
|
}
|
|
11259
|
-
/**
|
|
11260
|
-
*
|
|
11261
|
-
* @export
|
|
11262
|
-
* @interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCmsCollectionsInner
|
|
11263
|
-
*/
|
|
11264
|
-
export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCmsCollectionsInner {
|
|
11265
|
-
/**
|
|
11266
|
-
*
|
|
11267
|
-
* @type {string}
|
|
11268
|
-
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCmsCollectionsInner
|
|
11269
|
-
*/
|
|
11270
|
-
'slug': string;
|
|
11271
|
-
/**
|
|
11272
|
-
*
|
|
11273
|
-
* @type {string}
|
|
11274
|
-
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCmsCollectionsInner
|
|
11275
|
-
*/
|
|
11276
|
-
'singularTitle': string;
|
|
11277
|
-
/**
|
|
11278
|
-
*
|
|
11279
|
-
* @type {string}
|
|
11280
|
-
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCmsCollectionsInner
|
|
11281
|
-
*/
|
|
11282
|
-
'pluralTitle': string;
|
|
11283
|
-
/**
|
|
11284
|
-
*
|
|
11285
|
-
* @type {string}
|
|
11286
|
-
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCmsCollectionsInner
|
|
11287
|
-
*/
|
|
11288
|
-
'title': string;
|
|
11289
|
-
}
|
|
11290
11305
|
/**
|
|
11291
11306
|
*
|
|
11292
11307
|
* @export
|
|
@@ -11568,18 +11583,110 @@ export interface PickINavigationExcludeKeyofINavigationKeyofMongoResponse {
|
|
|
11568
11583
|
* @memberof PickINavigationExcludeKeyofINavigationKeyofMongoResponse
|
|
11569
11584
|
*/
|
|
11570
11585
|
'slug': string;
|
|
11586
|
+
/**
|
|
11587
|
+
*
|
|
11588
|
+
* @type {Array<INavigationLink>}
|
|
11589
|
+
* @memberof PickINavigationExcludeKeyofINavigationKeyofMongoResponse
|
|
11590
|
+
*/
|
|
11591
|
+
'links': Array<INavigationLink>;
|
|
11571
11592
|
/**
|
|
11572
11593
|
*
|
|
11573
11594
|
* @type {LanguageEnum}
|
|
11574
11595
|
* @memberof PickINavigationExcludeKeyofINavigationKeyofMongoResponse
|
|
11575
11596
|
*/
|
|
11576
11597
|
'locale': LanguageEnum;
|
|
11598
|
+
}
|
|
11599
|
+
/**
|
|
11600
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
11601
|
+
* @export
|
|
11602
|
+
* @interface PickINavigationExcludeKeyofINavigationLinks
|
|
11603
|
+
*/
|
|
11604
|
+
export interface PickINavigationExcludeKeyofINavigationLinks {
|
|
11577
11605
|
/**
|
|
11578
11606
|
*
|
|
11579
|
-
* @type {
|
|
11580
|
-
* @memberof
|
|
11607
|
+
* @type {string}
|
|
11608
|
+
* @memberof PickINavigationExcludeKeyofINavigationLinks
|
|
11581
11609
|
*/
|
|
11582
|
-
'
|
|
11610
|
+
'company': string;
|
|
11611
|
+
/**
|
|
11612
|
+
*
|
|
11613
|
+
* @type {string}
|
|
11614
|
+
* @memberof PickINavigationExcludeKeyofINavigationLinks
|
|
11615
|
+
*/
|
|
11616
|
+
'_id': string;
|
|
11617
|
+
/**
|
|
11618
|
+
*
|
|
11619
|
+
* @type {number}
|
|
11620
|
+
* @memberof PickINavigationExcludeKeyofINavigationLinks
|
|
11621
|
+
*/
|
|
11622
|
+
'__v': number;
|
|
11623
|
+
/**
|
|
11624
|
+
*
|
|
11625
|
+
* @type {string}
|
|
11626
|
+
* @memberof PickINavigationExcludeKeyofINavigationLinks
|
|
11627
|
+
*/
|
|
11628
|
+
'createdAt': string;
|
|
11629
|
+
/**
|
|
11630
|
+
*
|
|
11631
|
+
* @type {string}
|
|
11632
|
+
* @memberof PickINavigationExcludeKeyofINavigationLinks
|
|
11633
|
+
*/
|
|
11634
|
+
'updatedAt': string;
|
|
11635
|
+
/**
|
|
11636
|
+
*
|
|
11637
|
+
* @type {string}
|
|
11638
|
+
* @memberof PickINavigationExcludeKeyofINavigationLinks
|
|
11639
|
+
*/
|
|
11640
|
+
'title': string;
|
|
11641
|
+
/**
|
|
11642
|
+
*
|
|
11643
|
+
* @type {string}
|
|
11644
|
+
* @memberof PickINavigationExcludeKeyofINavigationLinks
|
|
11645
|
+
*/
|
|
11646
|
+
'slug': string;
|
|
11647
|
+
/**
|
|
11648
|
+
*
|
|
11649
|
+
* @type {LanguageEnum}
|
|
11650
|
+
* @memberof PickINavigationExcludeKeyofINavigationLinks
|
|
11651
|
+
*/
|
|
11652
|
+
'locale': LanguageEnum;
|
|
11653
|
+
}
|
|
11654
|
+
/**
|
|
11655
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
11656
|
+
* @export
|
|
11657
|
+
* @interface PickINavigationLinkExcludeKeyofINavigationLinkLinks
|
|
11658
|
+
*/
|
|
11659
|
+
export interface PickINavigationLinkExcludeKeyofINavigationLinkLinks {
|
|
11660
|
+
/**
|
|
11661
|
+
*
|
|
11662
|
+
* @type {any}
|
|
11663
|
+
* @memberof PickINavigationLinkExcludeKeyofINavigationLinkLinks
|
|
11664
|
+
*/
|
|
11665
|
+
'object': any;
|
|
11666
|
+
/**
|
|
11667
|
+
*
|
|
11668
|
+
* @type {string}
|
|
11669
|
+
* @memberof PickINavigationLinkExcludeKeyofINavigationLinkLinks
|
|
11670
|
+
*/
|
|
11671
|
+
'_id': string;
|
|
11672
|
+
/**
|
|
11673
|
+
*
|
|
11674
|
+
* @type {string}
|
|
11675
|
+
* @memberof PickINavigationLinkExcludeKeyofINavigationLinkLinks
|
|
11676
|
+
*/
|
|
11677
|
+
'title': string;
|
|
11678
|
+
/**
|
|
11679
|
+
*
|
|
11680
|
+
* @type {string}
|
|
11681
|
+
* @memberof PickINavigationLinkExcludeKeyofINavigationLinkLinks
|
|
11682
|
+
*/
|
|
11683
|
+
'type': string;
|
|
11684
|
+
/**
|
|
11685
|
+
*
|
|
11686
|
+
* @type {string}
|
|
11687
|
+
* @memberof PickINavigationLinkExcludeKeyofINavigationLinkLinks
|
|
11688
|
+
*/
|
|
11689
|
+
'url': string;
|
|
11583
11690
|
}
|
|
11584
11691
|
/**
|
|
11585
11692
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -11970,6 +12077,43 @@ export interface PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner {
|
|
|
11970
12077
|
*/
|
|
11971
12078
|
'_id': string;
|
|
11972
12079
|
}
|
|
12080
|
+
/**
|
|
12081
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
12082
|
+
* @export
|
|
12083
|
+
* @interface PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
12084
|
+
*/
|
|
12085
|
+
export interface PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue {
|
|
12086
|
+
/**
|
|
12087
|
+
*
|
|
12088
|
+
* @type {string}
|
|
12089
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
12090
|
+
*/
|
|
12091
|
+
'company': string;
|
|
12092
|
+
/**
|
|
12093
|
+
*
|
|
12094
|
+
* @type {string}
|
|
12095
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
12096
|
+
*/
|
|
12097
|
+
'template': string;
|
|
12098
|
+
/**
|
|
12099
|
+
*
|
|
12100
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
12101
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
12102
|
+
*/
|
|
12103
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
12104
|
+
/**
|
|
12105
|
+
*
|
|
12106
|
+
* @type {IImage}
|
|
12107
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
12108
|
+
*/
|
|
12109
|
+
'thumbnail'?: IImage;
|
|
12110
|
+
/**
|
|
12111
|
+
*
|
|
12112
|
+
* @type {string}
|
|
12113
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
12114
|
+
*/
|
|
12115
|
+
'type': string;
|
|
12116
|
+
}
|
|
11973
12117
|
/**
|
|
11974
12118
|
* From T, pick a set of properties whose keys are in the union K
|
|
11975
12119
|
* @export
|
|
@@ -12006,14 +12150,6 @@ export interface PickIPageExcludeKeyofIPageTemplate {
|
|
|
12006
12150
|
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
12007
12151
|
*/
|
|
12008
12152
|
'updatedAt': string;
|
|
12009
|
-
/**
|
|
12010
|
-
* Construct a type with a set of properties K of type T
|
|
12011
|
-
* @type {{ [key: string]: string; }}
|
|
12012
|
-
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
12013
|
-
*/
|
|
12014
|
-
'templates': {
|
|
12015
|
-
[key: string]: string;
|
|
12016
|
-
};
|
|
12017
12153
|
/**
|
|
12018
12154
|
*
|
|
12019
12155
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
@@ -12039,37 +12175,6 @@ export interface PickIPageExcludeKeyofIPageTemplate {
|
|
|
12039
12175
|
*/
|
|
12040
12176
|
'type': string;
|
|
12041
12177
|
}
|
|
12042
|
-
/**
|
|
12043
|
-
* From T, pick a set of properties whose keys are in the union K
|
|
12044
|
-
* @export
|
|
12045
|
-
* @interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
|
|
12046
|
-
*/
|
|
12047
|
-
export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue {
|
|
12048
|
-
/**
|
|
12049
|
-
*
|
|
12050
|
-
* @type {string}
|
|
12051
|
-
* @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
|
|
12052
|
-
*/
|
|
12053
|
-
'company': string;
|
|
12054
|
-
/**
|
|
12055
|
-
*
|
|
12056
|
-
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
12057
|
-
* @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
|
|
12058
|
-
*/
|
|
12059
|
-
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
12060
|
-
/**
|
|
12061
|
-
*
|
|
12062
|
-
* @type {IImage}
|
|
12063
|
-
* @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
|
|
12064
|
-
*/
|
|
12065
|
-
'thumbnail'?: IImage;
|
|
12066
|
-
/**
|
|
12067
|
-
*
|
|
12068
|
-
* @type {string}
|
|
12069
|
-
* @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
|
|
12070
|
-
*/
|
|
12071
|
-
'type': string;
|
|
12072
|
-
}
|
|
12073
12178
|
/**
|
|
12074
12179
|
* From T, pick a set of properties whose keys are in the union K
|
|
12075
12180
|
* @export
|
|
@@ -12197,14 +12302,6 @@ export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttr
|
|
|
12197
12302
|
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
12198
12303
|
*/
|
|
12199
12304
|
'collections': Array<string>;
|
|
12200
|
-
/**
|
|
12201
|
-
* Construct a type with a set of properties K of type T
|
|
12202
|
-
* @type {{ [key: string]: string; }}
|
|
12203
|
-
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
12204
|
-
*/
|
|
12205
|
-
'templates': {
|
|
12206
|
-
[key: string]: string;
|
|
12207
|
-
};
|
|
12208
12305
|
/**
|
|
12209
12306
|
*
|
|
12210
12307
|
* @type {string}
|
|
@@ -12631,18 +12728,6 @@ export interface PickITemplateExcludeKeyofITemplateComponents {
|
|
|
12631
12728
|
* @memberof PickITemplateExcludeKeyofITemplateComponents
|
|
12632
12729
|
*/
|
|
12633
12730
|
'type': string;
|
|
12634
|
-
/**
|
|
12635
|
-
*
|
|
12636
|
-
* @type {boolean}
|
|
12637
|
-
* @memberof PickITemplateExcludeKeyofITemplateComponents
|
|
12638
|
-
*/
|
|
12639
|
-
'unique': boolean;
|
|
12640
|
-
/**
|
|
12641
|
-
*
|
|
12642
|
-
* @type {boolean}
|
|
12643
|
-
* @memberof PickITemplateExcludeKeyofITemplateComponents
|
|
12644
|
-
*/
|
|
12645
|
-
'default'?: boolean;
|
|
12646
12731
|
}
|
|
12647
12732
|
/**
|
|
12648
12733
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -12680,18 +12765,6 @@ export interface PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoRes
|
|
|
12680
12765
|
* @memberof PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoResponse
|
|
12681
12766
|
*/
|
|
12682
12767
|
'type': string;
|
|
12683
|
-
/**
|
|
12684
|
-
*
|
|
12685
|
-
* @type {boolean}
|
|
12686
|
-
* @memberof PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoResponse
|
|
12687
|
-
*/
|
|
12688
|
-
'unique': boolean;
|
|
12689
|
-
/**
|
|
12690
|
-
*
|
|
12691
|
-
* @type {boolean}
|
|
12692
|
-
* @memberof PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoResponse
|
|
12693
|
-
*/
|
|
12694
|
-
'default'?: boolean;
|
|
12695
12768
|
}
|
|
12696
12769
|
/**
|
|
12697
12770
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -12785,6 +12858,12 @@ export interface PickIThemeExcludeKeyofIThemeGroups {
|
|
|
12785
12858
|
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12786
12859
|
*/
|
|
12787
12860
|
'lastVersion': string;
|
|
12861
|
+
/**
|
|
12862
|
+
*
|
|
12863
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
12864
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12865
|
+
*/
|
|
12866
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
12788
12867
|
/**
|
|
12789
12868
|
*
|
|
12790
12869
|
* @type {boolean}
|
|
@@ -12792,6 +12871,37 @@ export interface PickIThemeExcludeKeyofIThemeGroups {
|
|
|
12792
12871
|
*/
|
|
12793
12872
|
'deleted': boolean;
|
|
12794
12873
|
}
|
|
12874
|
+
/**
|
|
12875
|
+
*
|
|
12876
|
+
* @export
|
|
12877
|
+
* @interface PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner
|
|
12878
|
+
*/
|
|
12879
|
+
export interface PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner {
|
|
12880
|
+
/**
|
|
12881
|
+
*
|
|
12882
|
+
* @type {string}
|
|
12883
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner
|
|
12884
|
+
*/
|
|
12885
|
+
'slug': string;
|
|
12886
|
+
/**
|
|
12887
|
+
*
|
|
12888
|
+
* @type {string}
|
|
12889
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner
|
|
12890
|
+
*/
|
|
12891
|
+
'singularTitle': string;
|
|
12892
|
+
/**
|
|
12893
|
+
*
|
|
12894
|
+
* @type {string}
|
|
12895
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner
|
|
12896
|
+
*/
|
|
12897
|
+
'pluralTitle': string;
|
|
12898
|
+
/**
|
|
12899
|
+
*
|
|
12900
|
+
* @type {string}
|
|
12901
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner
|
|
12902
|
+
*/
|
|
12903
|
+
'title': string;
|
|
12904
|
+
}
|
|
12795
12905
|
/**
|
|
12796
12906
|
* From T, pick a set of properties whose keys are in the union K
|
|
12797
12907
|
* @export
|
|
@@ -12886,6 +12996,12 @@ export interface PickIThemeExcludeKeyofIThemeLastVersion {
|
|
|
12886
12996
|
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
12887
12997
|
*/
|
|
12888
12998
|
'creator'?: string;
|
|
12999
|
+
/**
|
|
13000
|
+
*
|
|
13001
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
13002
|
+
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
13003
|
+
*/
|
|
13004
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
12889
13005
|
/**
|
|
12890
13006
|
*
|
|
12891
13007
|
* @type {boolean}
|
|
@@ -12981,6 +13097,12 @@ export interface PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain {
|
|
|
12981
13097
|
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12982
13098
|
*/
|
|
12983
13099
|
'creator'?: string;
|
|
13100
|
+
/**
|
|
13101
|
+
*
|
|
13102
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
13103
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
13104
|
+
*/
|
|
13105
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
12984
13106
|
/**
|
|
12985
13107
|
*
|
|
12986
13108
|
* @type {boolean}
|
|
@@ -13052,14 +13174,6 @@ export interface PickIUniquePageExcludeKeyofIUniquePageTemplate {
|
|
|
13052
13174
|
* @memberof PickIUniquePageExcludeKeyofIUniquePageTemplate
|
|
13053
13175
|
*/
|
|
13054
13176
|
'updatedAt': string;
|
|
13055
|
-
/**
|
|
13056
|
-
* Construct a type with a set of properties K of type T
|
|
13057
|
-
* @type {{ [key: string]: string; }}
|
|
13058
|
-
* @memberof PickIUniquePageExcludeKeyofIUniquePageTemplate
|
|
13059
|
-
*/
|
|
13060
|
-
'templates': {
|
|
13061
|
-
[key: string]: string;
|
|
13062
|
-
};
|
|
13063
13177
|
/**
|
|
13064
13178
|
*
|
|
13065
13179
|
* @type {PartialRecordLanguageEnumTitleStringDescription63String}
|
|
@@ -13365,12 +13479,6 @@ export interface RecordCompanyOnboardingStepEnumBoolean {
|
|
|
13365
13479
|
* @memberof RecordCompanyOnboardingStepEnumBoolean
|
|
13366
13480
|
*/
|
|
13367
13481
|
'addFirstPage': boolean;
|
|
13368
|
-
/**
|
|
13369
|
-
*
|
|
13370
|
-
* @type {boolean}
|
|
13371
|
-
* @memberof RecordCompanyOnboardingStepEnumBoolean
|
|
13372
|
-
*/
|
|
13373
|
-
'addFirstBlog': boolean;
|
|
13374
13482
|
/**
|
|
13375
13483
|
*
|
|
13376
13484
|
* @type {boolean}
|
|
@@ -13768,7 +13876,7 @@ export declare const SitemapTypeEnum: {
|
|
|
13768
13876
|
readonly PRODUCTS: "products";
|
|
13769
13877
|
readonly PAGES: "pages";
|
|
13770
13878
|
readonly COLLECTIONS: "collections";
|
|
13771
|
-
readonly
|
|
13879
|
+
readonly BLOG: "blog";
|
|
13772
13880
|
readonly UNIQUE_PAGES: "unique-pages";
|
|
13773
13881
|
};
|
|
13774
13882
|
export type SitemapTypeEnum = typeof SitemapTypeEnum[keyof typeof SitemapTypeEnum];
|
package/dist/api/api.js
CHANGED
package/dist/api/api.mjs
CHANGED
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.56",
|
|
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": "e29435b92aaa8ec010c486a6f3ed37019f3065cd"
|
|
41
41
|
}
|