@infisale-client/api-client 1.3.53 → 1.3.55
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 +288 -315
- 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}
|
|
@@ -2235,10 +2219,10 @@ export interface ICompany {
|
|
|
2235
2219
|
'status': CompanyStatusEnum;
|
|
2236
2220
|
/**
|
|
2237
2221
|
*
|
|
2238
|
-
* @type {Array<
|
|
2222
|
+
* @type {Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>}
|
|
2239
2223
|
* @memberof ICompany
|
|
2240
2224
|
*/
|
|
2241
|
-
'versions': Array<
|
|
2225
|
+
'versions': Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>;
|
|
2242
2226
|
/**
|
|
2243
2227
|
*
|
|
2244
2228
|
* @type {string}
|
|
@@ -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
|
*
|
|
@@ -5099,6 +5077,12 @@ export interface INavigationLink {
|
|
|
5099
5077
|
* @memberof INavigationLink
|
|
5100
5078
|
*/
|
|
5101
5079
|
'object': any;
|
|
5080
|
+
/**
|
|
5081
|
+
*
|
|
5082
|
+
* @type {number}
|
|
5083
|
+
* @memberof INavigationLink
|
|
5084
|
+
*/
|
|
5085
|
+
'levels': number;
|
|
5102
5086
|
}
|
|
5103
5087
|
/**
|
|
5104
5088
|
*
|
|
@@ -5710,10 +5694,10 @@ export interface IOperationResponse {
|
|
|
5710
5694
|
'status': OperationStatusEnum;
|
|
5711
5695
|
/**
|
|
5712
5696
|
*
|
|
5713
|
-
* @type {Array<
|
|
5697
|
+
* @type {Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>}
|
|
5714
5698
|
* @memberof IOperationResponse
|
|
5715
5699
|
*/
|
|
5716
|
-
'versions': Array<
|
|
5700
|
+
'versions': Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>;
|
|
5717
5701
|
}
|
|
5718
5702
|
/**
|
|
5719
5703
|
*
|
|
@@ -6069,10 +6053,10 @@ export interface IOrderResponse {
|
|
|
6069
6053
|
'shipping': number;
|
|
6070
6054
|
/**
|
|
6071
6055
|
*
|
|
6072
|
-
* @type {
|
|
6056
|
+
* @type {ShippingProviderRates}
|
|
6073
6057
|
* @memberof IOrderResponse
|
|
6074
6058
|
*/
|
|
6075
|
-
'shippingRate':
|
|
6059
|
+
'shippingRate': ShippingProviderRates;
|
|
6076
6060
|
/**
|
|
6077
6061
|
*
|
|
6078
6062
|
* @type {number}
|
|
@@ -6547,10 +6531,10 @@ export interface IPageGetAllQueryParams {
|
|
|
6547
6531
|
export interface IPagePatchRequest {
|
|
6548
6532
|
/**
|
|
6549
6533
|
*
|
|
6550
|
-
* @type {
|
|
6534
|
+
* @type {string}
|
|
6551
6535
|
* @memberof IPagePatchRequest
|
|
6552
6536
|
*/
|
|
6553
|
-
'template'?:
|
|
6537
|
+
'template'?: string;
|
|
6554
6538
|
/**
|
|
6555
6539
|
*
|
|
6556
6540
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
@@ -6576,6 +6560,12 @@ export interface IPagePostRequest {
|
|
|
6576
6560
|
* @memberof IPagePostRequest
|
|
6577
6561
|
*/
|
|
6578
6562
|
'company': string;
|
|
6563
|
+
/**
|
|
6564
|
+
*
|
|
6565
|
+
* @type {string}
|
|
6566
|
+
* @memberof IPagePostRequest
|
|
6567
|
+
*/
|
|
6568
|
+
'template': string;
|
|
6579
6569
|
/**
|
|
6580
6570
|
*
|
|
6581
6571
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
@@ -6594,12 +6584,6 @@ export interface IPagePostRequest {
|
|
|
6594
6584
|
* @memberof IPagePostRequest
|
|
6595
6585
|
*/
|
|
6596
6586
|
'type': string;
|
|
6597
|
-
/**
|
|
6598
|
-
*
|
|
6599
|
-
* @type {ITemplateResponse}
|
|
6600
|
-
* @memberof IPagePostRequest
|
|
6601
|
-
*/
|
|
6602
|
-
'template'?: ITemplateResponse;
|
|
6603
6587
|
}
|
|
6604
6588
|
/**
|
|
6605
6589
|
*
|
|
@@ -6637,14 +6621,6 @@ export interface IPageResponse {
|
|
|
6637
6621
|
* @memberof IPageResponse
|
|
6638
6622
|
*/
|
|
6639
6623
|
'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
6624
|
/**
|
|
6649
6625
|
*
|
|
6650
6626
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
@@ -7342,10 +7318,10 @@ export interface IProductPatchRequest {
|
|
|
7342
7318
|
'brand'?: string;
|
|
7343
7319
|
/**
|
|
7344
7320
|
*
|
|
7345
|
-
* @type {
|
|
7321
|
+
* @type {string}
|
|
7346
7322
|
* @memberof IProductPatchRequest
|
|
7347
7323
|
*/
|
|
7348
|
-
'template'?:
|
|
7324
|
+
'template'?: string;
|
|
7349
7325
|
/**
|
|
7350
7326
|
*
|
|
7351
7327
|
* @type {string}
|
|
@@ -7523,10 +7499,10 @@ export interface IProductPostRequest {
|
|
|
7523
7499
|
'brand'?: string;
|
|
7524
7500
|
/**
|
|
7525
7501
|
*
|
|
7526
|
-
* @type {
|
|
7502
|
+
* @type {string}
|
|
7527
7503
|
* @memberof IProductPostRequest
|
|
7528
7504
|
*/
|
|
7529
|
-
'template'
|
|
7505
|
+
'template': string;
|
|
7530
7506
|
}
|
|
7531
7507
|
/**
|
|
7532
7508
|
*
|
|
@@ -7594,14 +7570,6 @@ export interface IProductResponse {
|
|
|
7594
7570
|
* @memberof IProductResponse
|
|
7595
7571
|
*/
|
|
7596
7572
|
'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
7573
|
/**
|
|
7606
7574
|
*
|
|
7607
7575
|
* @type {string}
|
|
@@ -8686,18 +8654,6 @@ export interface ITemplatePatchRequest {
|
|
|
8686
8654
|
* @memberof ITemplatePatchRequest
|
|
8687
8655
|
*/
|
|
8688
8656
|
'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
8657
|
}
|
|
8702
8658
|
/**
|
|
8703
8659
|
*
|
|
@@ -8735,18 +8691,6 @@ export interface ITemplatePostRequest {
|
|
|
8735
8691
|
* @memberof ITemplatePostRequest
|
|
8736
8692
|
*/
|
|
8737
8693
|
'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
8694
|
}
|
|
8751
8695
|
/**
|
|
8752
8696
|
*
|
|
@@ -8802,18 +8746,6 @@ export interface ITemplateResponse {
|
|
|
8802
8746
|
* @memberof ITemplateResponse
|
|
8803
8747
|
*/
|
|
8804
8748
|
'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
8749
|
/**
|
|
8818
8750
|
*
|
|
8819
8751
|
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
@@ -8934,6 +8866,12 @@ export interface ITheme {
|
|
|
8934
8866
|
* @memberof ITheme
|
|
8935
8867
|
*/
|
|
8936
8868
|
'lastVersion': string;
|
|
8869
|
+
/**
|
|
8870
|
+
*
|
|
8871
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
8872
|
+
* @memberof ITheme
|
|
8873
|
+
*/
|
|
8874
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
8937
8875
|
/**
|
|
8938
8876
|
*
|
|
8939
8877
|
* @type {boolean}
|
|
@@ -9136,6 +9074,12 @@ export interface IThemeResponse {
|
|
|
9136
9074
|
* @memberof IThemeResponse
|
|
9137
9075
|
*/
|
|
9138
9076
|
'lastVersion': string;
|
|
9077
|
+
/**
|
|
9078
|
+
*
|
|
9079
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
9080
|
+
* @memberof IThemeResponse
|
|
9081
|
+
*/
|
|
9082
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
9139
9083
|
/**
|
|
9140
9084
|
*
|
|
9141
9085
|
* @type {boolean}
|
|
@@ -9349,6 +9293,12 @@ export interface IThemesResponseData {
|
|
|
9349
9293
|
* @memberof IThemesResponseData
|
|
9350
9294
|
*/
|
|
9351
9295
|
'creator'?: string;
|
|
9296
|
+
/**
|
|
9297
|
+
*
|
|
9298
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
9299
|
+
* @memberof IThemesResponseData
|
|
9300
|
+
*/
|
|
9301
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
9352
9302
|
/**
|
|
9353
9303
|
*
|
|
9354
9304
|
* @type {boolean}
|
|
@@ -9496,6 +9446,12 @@ export interface IThemesResponseDataMain {
|
|
|
9496
9446
|
* @memberof IThemesResponseDataMain
|
|
9497
9447
|
*/
|
|
9498
9448
|
'creator'?: string;
|
|
9449
|
+
/**
|
|
9450
|
+
*
|
|
9451
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
9452
|
+
* @memberof IThemesResponseDataMain
|
|
9453
|
+
*/
|
|
9454
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
9499
9455
|
/**
|
|
9500
9456
|
*
|
|
9501
9457
|
* @type {boolean}
|
|
@@ -9636,14 +9592,6 @@ export interface IUniquePageResponse {
|
|
|
9636
9592
|
* @memberof IUniquePageResponse
|
|
9637
9593
|
*/
|
|
9638
9594
|
'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
9595
|
/**
|
|
9648
9596
|
*
|
|
9649
9597
|
* @type {PartialRecordLanguageEnumTitleStringDescription63String}
|
|
@@ -10178,10 +10126,10 @@ export interface IUserResponse {
|
|
|
10178
10126
|
'roles': Array<UserRoleEnum>;
|
|
10179
10127
|
/**
|
|
10180
10128
|
*
|
|
10181
|
-
* @type {Array<
|
|
10129
|
+
* @type {Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>}
|
|
10182
10130
|
* @memberof IUserResponse
|
|
10183
10131
|
*/
|
|
10184
|
-
'versions': Array<
|
|
10132
|
+
'versions': Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>;
|
|
10185
10133
|
/**
|
|
10186
10134
|
*
|
|
10187
10135
|
* @type {string}
|
|
@@ -10196,10 +10144,10 @@ export interface IUserResponse {
|
|
|
10196
10144
|
'language': LanguageEnum;
|
|
10197
10145
|
/**
|
|
10198
10146
|
*
|
|
10199
|
-
* @type {
|
|
10147
|
+
* @type {PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesContactPermissions}
|
|
10200
10148
|
* @memberof IUserResponse
|
|
10201
10149
|
*/
|
|
10202
|
-
'contactPermissions':
|
|
10150
|
+
'contactPermissions': PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesContactPermissions;
|
|
10203
10151
|
/**
|
|
10204
10152
|
*
|
|
10205
10153
|
* @type {Array<IAddress>}
|
|
@@ -10872,6 +10820,92 @@ export interface PickICategoryResponseIdOrContentsOrAttributes {
|
|
|
10872
10820
|
*/
|
|
10873
10821
|
'attributes': Array<ICategoryResponseAttributesInner>;
|
|
10874
10822
|
}
|
|
10823
|
+
/**
|
|
10824
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
10825
|
+
* @export
|
|
10826
|
+
* @interface PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
10827
|
+
*/
|
|
10828
|
+
export interface PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrSlugsOrKeyofIContentsValue {
|
|
10829
|
+
/**
|
|
10830
|
+
*
|
|
10831
|
+
* @type {string}
|
|
10832
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
10833
|
+
*/
|
|
10834
|
+
'company': string;
|
|
10835
|
+
/**
|
|
10836
|
+
*
|
|
10837
|
+
* @type {string}
|
|
10838
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
10839
|
+
*/
|
|
10840
|
+
'template': string;
|
|
10841
|
+
/**
|
|
10842
|
+
*
|
|
10843
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
10844
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
10845
|
+
*/
|
|
10846
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
10847
|
+
/**
|
|
10848
|
+
*
|
|
10849
|
+
* @type {IImage}
|
|
10850
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
10851
|
+
*/
|
|
10852
|
+
'thumbnail'?: IImage;
|
|
10853
|
+
}
|
|
10854
|
+
/**
|
|
10855
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
10856
|
+
* @export
|
|
10857
|
+
* @interface PickICollectionExcludeKeyofICollectionTemplate
|
|
10858
|
+
*/
|
|
10859
|
+
export interface PickICollectionExcludeKeyofICollectionTemplate {
|
|
10860
|
+
/**
|
|
10861
|
+
*
|
|
10862
|
+
* @type {string}
|
|
10863
|
+
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
10864
|
+
*/
|
|
10865
|
+
'company': string;
|
|
10866
|
+
/**
|
|
10867
|
+
*
|
|
10868
|
+
* @type {string}
|
|
10869
|
+
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
10870
|
+
*/
|
|
10871
|
+
'_id': string;
|
|
10872
|
+
/**
|
|
10873
|
+
*
|
|
10874
|
+
* @type {number}
|
|
10875
|
+
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
10876
|
+
*/
|
|
10877
|
+
'__v': number;
|
|
10878
|
+
/**
|
|
10879
|
+
*
|
|
10880
|
+
* @type {string}
|
|
10881
|
+
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
10882
|
+
*/
|
|
10883
|
+
'createdAt': string;
|
|
10884
|
+
/**
|
|
10885
|
+
*
|
|
10886
|
+
* @type {string}
|
|
10887
|
+
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
10888
|
+
*/
|
|
10889
|
+
'updatedAt': string;
|
|
10890
|
+
/**
|
|
10891
|
+
*
|
|
10892
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
10893
|
+
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
10894
|
+
*/
|
|
10895
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
10896
|
+
/**
|
|
10897
|
+
*
|
|
10898
|
+
* @type {Array<string>}
|
|
10899
|
+
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
10900
|
+
*/
|
|
10901
|
+
'slugs': Array<string>;
|
|
10902
|
+
/**
|
|
10903
|
+
*
|
|
10904
|
+
* @type {IImage}
|
|
10905
|
+
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
10906
|
+
*/
|
|
10907
|
+
'thumbnail'?: IImage;
|
|
10908
|
+
}
|
|
10875
10909
|
/**
|
|
10876
10910
|
* From T, pick a set of properties whose keys are in the union K
|
|
10877
10911
|
* @export
|
|
@@ -10926,31 +10960,6 @@ export declare const PickICollectionQueryParamsExcludeKeyofICollectionQueryParam
|
|
|
10926
10960
|
readonly UPDATED_AT: "updatedAt";
|
|
10927
10961
|
};
|
|
10928
10962
|
export type PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum = typeof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum[keyof typeof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum];
|
|
10929
|
-
/**
|
|
10930
|
-
* From T, pick a set of properties whose keys are in the union K
|
|
10931
|
-
* @export
|
|
10932
|
-
* @interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
|
|
10933
|
-
*/
|
|
10934
|
-
export interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue {
|
|
10935
|
-
/**
|
|
10936
|
-
*
|
|
10937
|
-
* @type {string}
|
|
10938
|
-
* @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
|
|
10939
|
-
*/
|
|
10940
|
-
'company': string;
|
|
10941
|
-
/**
|
|
10942
|
-
*
|
|
10943
|
-
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
10944
|
-
* @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
|
|
10945
|
-
*/
|
|
10946
|
-
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
10947
|
-
/**
|
|
10948
|
-
*
|
|
10949
|
-
* @type {IImage}
|
|
10950
|
-
* @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
|
|
10951
|
-
*/
|
|
10952
|
-
'thumbnail'?: IImage;
|
|
10953
|
-
}
|
|
10954
10963
|
/**
|
|
10955
10964
|
* From T, pick a set of properties whose keys are in the union K
|
|
10956
10965
|
* @export
|
|
@@ -11231,12 +11240,6 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
11231
11240
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
11232
11241
|
*/
|
|
11233
11242
|
'onboarding': RecordCompanyOnboardingStepEnumBoolean;
|
|
11234
|
-
/**
|
|
11235
|
-
*
|
|
11236
|
-
* @type {Array<PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCmsCollectionsInner>}
|
|
11237
|
-
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
11238
|
-
*/
|
|
11239
|
-
'cmsCollections': Array<PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCmsCollectionsInner>;
|
|
11240
11243
|
/**
|
|
11241
11244
|
*
|
|
11242
11245
|
* @type {string}
|
|
@@ -11256,37 +11259,6 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
11256
11259
|
*/
|
|
11257
11260
|
'storageUsageBytes': number;
|
|
11258
11261
|
}
|
|
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
11262
|
/**
|
|
11291
11263
|
*
|
|
11292
11264
|
* @export
|
|
@@ -11709,10 +11681,10 @@ export interface PickIOrderExcludeKeyofIOrderHtmlOrIframe {
|
|
|
11709
11681
|
'shipping': number;
|
|
11710
11682
|
/**
|
|
11711
11683
|
*
|
|
11712
|
-
* @type {
|
|
11684
|
+
* @type {ShippingProviderRates}
|
|
11713
11685
|
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
11714
11686
|
*/
|
|
11715
|
-
'shippingRate':
|
|
11687
|
+
'shippingRate': ShippingProviderRates;
|
|
11716
11688
|
/**
|
|
11717
11689
|
*
|
|
11718
11690
|
* @type {number}
|
|
@@ -11970,6 +11942,43 @@ export interface PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner {
|
|
|
11970
11942
|
*/
|
|
11971
11943
|
'_id': string;
|
|
11972
11944
|
}
|
|
11945
|
+
/**
|
|
11946
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
11947
|
+
* @export
|
|
11948
|
+
* @interface PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
11949
|
+
*/
|
|
11950
|
+
export interface PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue {
|
|
11951
|
+
/**
|
|
11952
|
+
*
|
|
11953
|
+
* @type {string}
|
|
11954
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
11955
|
+
*/
|
|
11956
|
+
'company': string;
|
|
11957
|
+
/**
|
|
11958
|
+
*
|
|
11959
|
+
* @type {string}
|
|
11960
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
11961
|
+
*/
|
|
11962
|
+
'template': string;
|
|
11963
|
+
/**
|
|
11964
|
+
*
|
|
11965
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
11966
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
11967
|
+
*/
|
|
11968
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
11969
|
+
/**
|
|
11970
|
+
*
|
|
11971
|
+
* @type {IImage}
|
|
11972
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
11973
|
+
*/
|
|
11974
|
+
'thumbnail'?: IImage;
|
|
11975
|
+
/**
|
|
11976
|
+
*
|
|
11977
|
+
* @type {string}
|
|
11978
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
11979
|
+
*/
|
|
11980
|
+
'type': string;
|
|
11981
|
+
}
|
|
11973
11982
|
/**
|
|
11974
11983
|
* From T, pick a set of properties whose keys are in the union K
|
|
11975
11984
|
* @export
|
|
@@ -12006,14 +12015,6 @@ export interface PickIPageExcludeKeyofIPageTemplate {
|
|
|
12006
12015
|
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
12007
12016
|
*/
|
|
12008
12017
|
'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
12018
|
/**
|
|
12018
12019
|
*
|
|
12019
12020
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
@@ -12039,37 +12040,6 @@ export interface PickIPageExcludeKeyofIPageTemplate {
|
|
|
12039
12040
|
*/
|
|
12040
12041
|
'type': string;
|
|
12041
12042
|
}
|
|
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
12043
|
/**
|
|
12074
12044
|
* From T, pick a set of properties whose keys are in the union K
|
|
12075
12045
|
* @export
|
|
@@ -12197,14 +12167,6 @@ export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttr
|
|
|
12197
12167
|
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
12198
12168
|
*/
|
|
12199
12169
|
'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
12170
|
/**
|
|
12209
12171
|
*
|
|
12210
12172
|
* @type {string}
|
|
@@ -12631,18 +12593,6 @@ export interface PickITemplateExcludeKeyofITemplateComponents {
|
|
|
12631
12593
|
* @memberof PickITemplateExcludeKeyofITemplateComponents
|
|
12632
12594
|
*/
|
|
12633
12595
|
'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
12596
|
}
|
|
12647
12597
|
/**
|
|
12648
12598
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -12680,18 +12630,6 @@ export interface PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoRes
|
|
|
12680
12630
|
* @memberof PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoResponse
|
|
12681
12631
|
*/
|
|
12682
12632
|
'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
12633
|
}
|
|
12696
12634
|
/**
|
|
12697
12635
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -12785,6 +12723,12 @@ export interface PickIThemeExcludeKeyofIThemeGroups {
|
|
|
12785
12723
|
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12786
12724
|
*/
|
|
12787
12725
|
'lastVersion': string;
|
|
12726
|
+
/**
|
|
12727
|
+
*
|
|
12728
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
12729
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12730
|
+
*/
|
|
12731
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
12788
12732
|
/**
|
|
12789
12733
|
*
|
|
12790
12734
|
* @type {boolean}
|
|
@@ -12792,6 +12736,37 @@ export interface PickIThemeExcludeKeyofIThemeGroups {
|
|
|
12792
12736
|
*/
|
|
12793
12737
|
'deleted': boolean;
|
|
12794
12738
|
}
|
|
12739
|
+
/**
|
|
12740
|
+
*
|
|
12741
|
+
* @export
|
|
12742
|
+
* @interface PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner
|
|
12743
|
+
*/
|
|
12744
|
+
export interface PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner {
|
|
12745
|
+
/**
|
|
12746
|
+
*
|
|
12747
|
+
* @type {string}
|
|
12748
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner
|
|
12749
|
+
*/
|
|
12750
|
+
'slug': string;
|
|
12751
|
+
/**
|
|
12752
|
+
*
|
|
12753
|
+
* @type {string}
|
|
12754
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner
|
|
12755
|
+
*/
|
|
12756
|
+
'singularTitle': string;
|
|
12757
|
+
/**
|
|
12758
|
+
*
|
|
12759
|
+
* @type {string}
|
|
12760
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner
|
|
12761
|
+
*/
|
|
12762
|
+
'pluralTitle': string;
|
|
12763
|
+
/**
|
|
12764
|
+
*
|
|
12765
|
+
* @type {string}
|
|
12766
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner
|
|
12767
|
+
*/
|
|
12768
|
+
'title': string;
|
|
12769
|
+
}
|
|
12795
12770
|
/**
|
|
12796
12771
|
* From T, pick a set of properties whose keys are in the union K
|
|
12797
12772
|
* @export
|
|
@@ -12886,6 +12861,12 @@ export interface PickIThemeExcludeKeyofIThemeLastVersion {
|
|
|
12886
12861
|
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
12887
12862
|
*/
|
|
12888
12863
|
'creator'?: string;
|
|
12864
|
+
/**
|
|
12865
|
+
*
|
|
12866
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
12867
|
+
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
12868
|
+
*/
|
|
12869
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
12889
12870
|
/**
|
|
12890
12871
|
*
|
|
12891
12872
|
* @type {boolean}
|
|
@@ -12981,6 +12962,12 @@ export interface PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain {
|
|
|
12981
12962
|
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12982
12963
|
*/
|
|
12983
12964
|
'creator'?: string;
|
|
12965
|
+
/**
|
|
12966
|
+
*
|
|
12967
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
12968
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12969
|
+
*/
|
|
12970
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
12984
12971
|
/**
|
|
12985
12972
|
*
|
|
12986
12973
|
* @type {boolean}
|
|
@@ -13052,14 +13039,6 @@ export interface PickIUniquePageExcludeKeyofIUniquePageTemplate {
|
|
|
13052
13039
|
* @memberof PickIUniquePageExcludeKeyofIUniquePageTemplate
|
|
13053
13040
|
*/
|
|
13054
13041
|
'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
13042
|
/**
|
|
13064
13043
|
*
|
|
13065
13044
|
* @type {PartialRecordLanguageEnumTitleStringDescription63String}
|
|
@@ -13082,135 +13061,135 @@ export interface PickIUniquePageExcludeKeyofIUniquePageTemplate {
|
|
|
13082
13061
|
/**
|
|
13083
13062
|
* From T, pick a set of properties whose keys are in the union K
|
|
13084
13063
|
* @export
|
|
13085
|
-
* @interface
|
|
13064
|
+
* @interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13086
13065
|
*/
|
|
13087
|
-
export interface
|
|
13066
|
+
export interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates {
|
|
13088
13067
|
/**
|
|
13089
13068
|
*
|
|
13090
13069
|
* @type {string}
|
|
13091
|
-
* @memberof
|
|
13070
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13092
13071
|
*/
|
|
13093
13072
|
'name': string;
|
|
13094
13073
|
/**
|
|
13095
13074
|
*
|
|
13096
13075
|
* @type {string}
|
|
13097
|
-
* @memberof
|
|
13076
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13098
13077
|
*/
|
|
13099
13078
|
'phone'?: string;
|
|
13100
13079
|
/**
|
|
13101
13080
|
*
|
|
13102
13081
|
* @type {string}
|
|
13103
|
-
* @memberof
|
|
13082
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13104
13083
|
*/
|
|
13105
13084
|
'email': string;
|
|
13106
13085
|
/**
|
|
13107
13086
|
*
|
|
13108
13087
|
* @type {Array<UserRoleEnum>}
|
|
13109
|
-
* @memberof
|
|
13088
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13110
13089
|
*/
|
|
13111
13090
|
'roles': Array<UserRoleEnum>;
|
|
13112
13091
|
/**
|
|
13113
13092
|
*
|
|
13114
|
-
* @type {Array<
|
|
13115
|
-
* @memberof
|
|
13093
|
+
* @type {Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>}
|
|
13094
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13116
13095
|
*/
|
|
13117
|
-
'versions': Array<
|
|
13096
|
+
'versions': Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner>;
|
|
13118
13097
|
/**
|
|
13119
13098
|
*
|
|
13120
13099
|
* @type {string}
|
|
13121
|
-
* @memberof
|
|
13100
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13122
13101
|
*/
|
|
13123
13102
|
'company': string;
|
|
13124
13103
|
/**
|
|
13125
13104
|
*
|
|
13126
13105
|
* @type {LanguageEnum}
|
|
13127
|
-
* @memberof
|
|
13106
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13128
13107
|
*/
|
|
13129
13108
|
'language': LanguageEnum;
|
|
13130
13109
|
/**
|
|
13131
13110
|
*
|
|
13132
|
-
* @type {
|
|
13133
|
-
* @memberof
|
|
13111
|
+
* @type {PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesContactPermissions}
|
|
13112
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13134
13113
|
*/
|
|
13135
|
-
'contactPermissions':
|
|
13114
|
+
'contactPermissions': PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesContactPermissions;
|
|
13136
13115
|
/**
|
|
13137
13116
|
*
|
|
13138
13117
|
* @type {Array<IAddress>}
|
|
13139
|
-
* @memberof
|
|
13118
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13140
13119
|
*/
|
|
13141
13120
|
'addresses': Array<IAddress>;
|
|
13142
13121
|
/**
|
|
13143
13122
|
*
|
|
13144
13123
|
* @type {UserStatusEnum}
|
|
13145
|
-
* @memberof
|
|
13124
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13146
13125
|
*/
|
|
13147
13126
|
'status': UserStatusEnum;
|
|
13148
13127
|
/**
|
|
13149
13128
|
*
|
|
13150
13129
|
* @type {string}
|
|
13151
|
-
* @memberof
|
|
13130
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13152
13131
|
*/
|
|
13153
13132
|
'_id': string;
|
|
13154
13133
|
/**
|
|
13155
13134
|
*
|
|
13156
13135
|
* @type {number}
|
|
13157
|
-
* @memberof
|
|
13136
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13158
13137
|
*/
|
|
13159
13138
|
'__v': number;
|
|
13160
13139
|
/**
|
|
13161
13140
|
*
|
|
13162
13141
|
* @type {string}
|
|
13163
|
-
* @memberof
|
|
13142
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13164
13143
|
*/
|
|
13165
13144
|
'createdAt': string;
|
|
13166
13145
|
/**
|
|
13167
13146
|
*
|
|
13168
13147
|
* @type {string}
|
|
13169
|
-
* @memberof
|
|
13148
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDates
|
|
13170
13149
|
*/
|
|
13171
13150
|
'updatedAt': string;
|
|
13172
13151
|
}
|
|
13173
13152
|
/**
|
|
13174
13153
|
*
|
|
13175
13154
|
* @export
|
|
13176
|
-
* @interface
|
|
13155
|
+
* @interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesContactPermissions
|
|
13177
13156
|
*/
|
|
13178
|
-
export interface
|
|
13157
|
+
export interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesContactPermissions {
|
|
13179
13158
|
/**
|
|
13180
13159
|
*
|
|
13181
13160
|
* @type {boolean}
|
|
13182
|
-
* @memberof
|
|
13161
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesContactPermissions
|
|
13183
13162
|
*/
|
|
13184
13163
|
'sms': boolean;
|
|
13185
13164
|
/**
|
|
13186
13165
|
*
|
|
13187
13166
|
* @type {boolean}
|
|
13188
|
-
* @memberof
|
|
13167
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesContactPermissions
|
|
13189
13168
|
*/
|
|
13190
13169
|
'email': boolean;
|
|
13191
13170
|
}
|
|
13192
13171
|
/**
|
|
13193
13172
|
*
|
|
13194
13173
|
* @export
|
|
13195
|
-
* @interface
|
|
13174
|
+
* @interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner
|
|
13196
13175
|
*/
|
|
13197
|
-
export interface
|
|
13176
|
+
export interface PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner {
|
|
13198
13177
|
/**
|
|
13199
13178
|
*
|
|
13200
13179
|
* @type {string}
|
|
13201
|
-
* @memberof
|
|
13180
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner
|
|
13202
13181
|
*/
|
|
13203
13182
|
'date': string;
|
|
13204
13183
|
/**
|
|
13205
13184
|
*
|
|
13206
13185
|
* @type {object}
|
|
13207
|
-
* @memberof
|
|
13186
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner
|
|
13208
13187
|
*/
|
|
13209
13188
|
'data': object;
|
|
13210
13189
|
/**
|
|
13211
13190
|
*
|
|
13212
13191
|
* @type {string}
|
|
13213
|
-
* @memberof
|
|
13192
|
+
* @memberof PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTOrLastForgotPasswordRequestDatesVersionsInner
|
|
13214
13193
|
*/
|
|
13215
13194
|
'user': string;
|
|
13216
13195
|
}
|
|
@@ -13365,12 +13344,6 @@ export interface RecordCompanyOnboardingStepEnumBoolean {
|
|
|
13365
13344
|
* @memberof RecordCompanyOnboardingStepEnumBoolean
|
|
13366
13345
|
*/
|
|
13367
13346
|
'addFirstPage': boolean;
|
|
13368
|
-
/**
|
|
13369
|
-
*
|
|
13370
|
-
* @type {boolean}
|
|
13371
|
-
* @memberof RecordCompanyOnboardingStepEnumBoolean
|
|
13372
|
-
*/
|
|
13373
|
-
'addFirstBlog': boolean;
|
|
13374
13347
|
/**
|
|
13375
13348
|
*
|
|
13376
13349
|
* @type {boolean}
|
|
@@ -13768,7 +13741,7 @@ export declare const SitemapTypeEnum: {
|
|
|
13768
13741
|
readonly PRODUCTS: "products";
|
|
13769
13742
|
readonly PAGES: "pages";
|
|
13770
13743
|
readonly COLLECTIONS: "collections";
|
|
13771
|
-
readonly
|
|
13744
|
+
readonly BLOG: "blog";
|
|
13772
13745
|
readonly UNIQUE_PAGES: "unique-pages";
|
|
13773
13746
|
};
|
|
13774
13747
|
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.55",
|
|
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": "a1464e90c026cd04549482c0200787d645397c81"
|
|
41
41
|
}
|