@infisale-client/api 1.1.21 → 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 +765 -761
- package/dist/api/api.js +196 -185
- package/dist/api/api.mjs +196 -185
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -779,7 +779,7 @@ export interface IBrandCollectionQueryParams {
|
|
|
779
779
|
* @type {string}
|
|
780
780
|
* @memberof IBrandCollectionQueryParams
|
|
781
781
|
*/
|
|
782
|
-
'
|
|
782
|
+
'company_id': string;
|
|
783
783
|
/**
|
|
784
784
|
*
|
|
785
785
|
* @type {ContentStatusEnum}
|
|
@@ -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>}
|
|
@@ -1065,7 +1065,7 @@ export interface ICategoryCollectionQueryParams {
|
|
|
1065
1065
|
* @type {string}
|
|
1066
1066
|
* @memberof ICategoryCollectionQueryParams
|
|
1067
1067
|
*/
|
|
1068
|
-
'
|
|
1068
|
+
'company_id': string;
|
|
1069
1069
|
/**
|
|
1070
1070
|
*
|
|
1071
1071
|
* @type {ContentStatusEnum}
|
|
@@ -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}
|
|
@@ -1679,12 +1679,6 @@ export interface ICompany {
|
|
|
1679
1679
|
* @memberof ICompany
|
|
1680
1680
|
*/
|
|
1681
1681
|
'owner': string;
|
|
1682
|
-
/**
|
|
1683
|
-
*
|
|
1684
|
-
* @type {PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsAddress}
|
|
1685
|
-
* @memberof ICompany
|
|
1686
|
-
*/
|
|
1687
|
-
'address'?: PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsAddress;
|
|
1688
1682
|
/**
|
|
1689
1683
|
*
|
|
1690
1684
|
* @type {string}
|
|
@@ -1715,12 +1709,6 @@ export interface ICompany {
|
|
|
1715
1709
|
* @memberof ICompany
|
|
1716
1710
|
*/
|
|
1717
1711
|
'dns_zone_domain'?: string;
|
|
1718
|
-
/**
|
|
1719
|
-
*
|
|
1720
|
-
* @type {Array<PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsCustomHostnamesInner>}
|
|
1721
|
-
* @memberof ICompany
|
|
1722
|
-
*/
|
|
1723
|
-
'custom_hostnames': Array<PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsCustomHostnamesInner>;
|
|
1724
1712
|
/**
|
|
1725
1713
|
*
|
|
1726
1714
|
* @type {Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner>}
|
|
@@ -1793,54 +1781,66 @@ export interface ICompany {
|
|
|
1793
1781
|
'currencies': RecordCurrencyEnumCurrency;
|
|
1794
1782
|
/**
|
|
1795
1783
|
*
|
|
1796
|
-
* @type {Array<
|
|
1784
|
+
* @type {Array<ICompanyResponseWarehousesInner>}
|
|
1785
|
+
* @memberof ICompany
|
|
1786
|
+
*/
|
|
1787
|
+
'warehouses': Array<ICompanyResponseWarehousesInner>;
|
|
1788
|
+
/**
|
|
1789
|
+
*
|
|
1790
|
+
* @type {Array<ICompanyResponseSenderEmailDnsRecordsInner>}
|
|
1797
1791
|
* @memberof ICompany
|
|
1798
1792
|
*/
|
|
1799
|
-
'
|
|
1793
|
+
'sender_email_dns_records'?: Array<ICompanyResponseSenderEmailDnsRecordsInner>;
|
|
1800
1794
|
/**
|
|
1801
1795
|
*
|
|
1802
|
-
* @type {{ [key: string]:
|
|
1796
|
+
* @type {{ [key: string]: ICompanyResponseNavigationsValue; }}
|
|
1803
1797
|
* @memberof ICompany
|
|
1804
1798
|
*/
|
|
1805
1799
|
'navigations': {
|
|
1806
|
-
[key: string]:
|
|
1800
|
+
[key: string]: ICompanyResponseNavigationsValue;
|
|
1807
1801
|
};
|
|
1808
1802
|
/**
|
|
1809
1803
|
*
|
|
1810
|
-
* @type {
|
|
1804
|
+
* @type {ICompanyResponseFirebaseWebCredentials}
|
|
1811
1805
|
* @memberof ICompany
|
|
1812
1806
|
*/
|
|
1813
|
-
'
|
|
1807
|
+
'firebase_web_credentials'?: ICompanyResponseFirebaseWebCredentials;
|
|
1814
1808
|
/**
|
|
1815
1809
|
*
|
|
1816
|
-
* @type {
|
|
1810
|
+
* @type {ICompanyResponseFirebaseAdminCredentials}
|
|
1817
1811
|
* @memberof ICompany
|
|
1818
1812
|
*/
|
|
1819
|
-
'
|
|
1813
|
+
'firebase_admin_credentials'?: ICompanyResponseFirebaseAdminCredentials;
|
|
1820
1814
|
/**
|
|
1821
1815
|
*
|
|
1822
|
-
* @type {
|
|
1816
|
+
* @type {ICompanyResponseAddress}
|
|
1823
1817
|
* @memberof ICompany
|
|
1824
1818
|
*/
|
|
1825
|
-
'
|
|
1819
|
+
'address'?: ICompanyResponseAddress;
|
|
1826
1820
|
/**
|
|
1827
1821
|
*
|
|
1828
|
-
* @type {
|
|
1822
|
+
* @type {Array<ICompanyResponseCustomHostnamesInner>}
|
|
1829
1823
|
* @memberof ICompany
|
|
1830
1824
|
*/
|
|
1831
|
-
'
|
|
1825
|
+
'custom_hostnames': Array<ICompanyResponseCustomHostnamesInner>;
|
|
1826
|
+
/**
|
|
1827
|
+
*
|
|
1828
|
+
* @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysFirebaseLogin}
|
|
1829
|
+
* @memberof ICompany
|
|
1830
|
+
*/
|
|
1831
|
+
'firebase_login': PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysFirebaseLogin;
|
|
1832
1832
|
/**
|
|
1833
1833
|
*
|
|
1834
1834
|
* @type {string}
|
|
1835
1835
|
* @memberof ICompany
|
|
1836
1836
|
*/
|
|
1837
|
-
'
|
|
1837
|
+
'sender_email'?: string;
|
|
1838
1838
|
/**
|
|
1839
1839
|
*
|
|
1840
|
-
* @type {
|
|
1840
|
+
* @type {string}
|
|
1841
1841
|
* @memberof ICompany
|
|
1842
1842
|
*/
|
|
1843
|
-
'
|
|
1843
|
+
'sender_name'?: string;
|
|
1844
1844
|
/**
|
|
1845
1845
|
*
|
|
1846
1846
|
* @type {CompanyStatusEnum}
|
|
@@ -1932,12 +1932,6 @@ export interface ICompanyAdminResponse {
|
|
|
1932
1932
|
* @memberof ICompanyAdminResponse
|
|
1933
1933
|
*/
|
|
1934
1934
|
'owner': string;
|
|
1935
|
-
/**
|
|
1936
|
-
*
|
|
1937
|
-
* @type {PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsAddress}
|
|
1938
|
-
* @memberof ICompanyAdminResponse
|
|
1939
|
-
*/
|
|
1940
|
-
'address'?: PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsAddress;
|
|
1941
1935
|
/**
|
|
1942
1936
|
*
|
|
1943
1937
|
* @type {Array<string>}
|
|
@@ -1956,12 +1950,6 @@ export interface ICompanyAdminResponse {
|
|
|
1956
1950
|
* @memberof ICompanyAdminResponse
|
|
1957
1951
|
*/
|
|
1958
1952
|
'dns_zone_domain'?: string;
|
|
1959
|
-
/**
|
|
1960
|
-
*
|
|
1961
|
-
* @type {Array<PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsCustomHostnamesInner>}
|
|
1962
|
-
* @memberof ICompanyAdminResponse
|
|
1963
|
-
*/
|
|
1964
|
-
'custom_hostnames': Array<PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsCustomHostnamesInner>;
|
|
1965
1953
|
/**
|
|
1966
1954
|
*
|
|
1967
1955
|
* @type {{ [key: string]: string; }}
|
|
@@ -2008,80 +1996,98 @@ export interface ICompanyAdminResponse {
|
|
|
2008
1996
|
'currencies': RecordCurrencyEnumCurrency;
|
|
2009
1997
|
/**
|
|
2010
1998
|
*
|
|
2011
|
-
* @type {
|
|
1999
|
+
* @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysFirebaseLogin}
|
|
2012
2000
|
* @memberof ICompanyAdminResponse
|
|
2013
2001
|
*/
|
|
2014
|
-
'
|
|
2002
|
+
'firebase_login': PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysFirebaseLogin;
|
|
2015
2003
|
/**
|
|
2016
2004
|
*
|
|
2017
|
-
* @type {
|
|
2005
|
+
* @type {string}
|
|
2018
2006
|
* @memberof ICompanyAdminResponse
|
|
2019
2007
|
*/
|
|
2020
|
-
'
|
|
2021
|
-
[key: string]: PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsNavigationsValue;
|
|
2022
|
-
};
|
|
2008
|
+
'sender_email'?: string;
|
|
2023
2009
|
/**
|
|
2024
2010
|
*
|
|
2025
|
-
* @type {
|
|
2011
|
+
* @type {string}
|
|
2026
2012
|
* @memberof ICompanyAdminResponse
|
|
2027
2013
|
*/
|
|
2028
|
-
'
|
|
2014
|
+
'sender_name'?: string;
|
|
2029
2015
|
/**
|
|
2030
2016
|
*
|
|
2031
|
-
* @type {
|
|
2017
|
+
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles}
|
|
2032
2018
|
* @memberof ICompanyAdminResponse
|
|
2033
2019
|
*/
|
|
2034
|
-
'
|
|
2020
|
+
'main'?: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles;
|
|
2035
2021
|
/**
|
|
2036
2022
|
*
|
|
2037
|
-
* @type {
|
|
2023
|
+
* @type {ICompanyResponseConfig}
|
|
2038
2024
|
* @memberof ICompanyAdminResponse
|
|
2039
2025
|
*/
|
|
2040
|
-
'
|
|
2026
|
+
'config': ICompanyResponseConfig;
|
|
2041
2027
|
/**
|
|
2042
2028
|
*
|
|
2043
|
-
* @type {
|
|
2029
|
+
* @type {Array<ICompanyAdminResponseUsersInner>}
|
|
2044
2030
|
* @memberof ICompanyAdminResponse
|
|
2045
2031
|
*/
|
|
2046
|
-
'
|
|
2032
|
+
'users': Array<ICompanyAdminResponseUsersInner>;
|
|
2047
2033
|
/**
|
|
2048
2034
|
*
|
|
2049
|
-
* @type {
|
|
2035
|
+
* @type {{ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue; }}
|
|
2050
2036
|
* @memberof ICompanyAdminResponse
|
|
2051
2037
|
*/
|
|
2052
|
-
'
|
|
2038
|
+
'roles': {
|
|
2039
|
+
[key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue;
|
|
2040
|
+
};
|
|
2053
2041
|
/**
|
|
2054
2042
|
*
|
|
2055
|
-
* @type {
|
|
2043
|
+
* @type {RecordCurrencyEnumNumber}
|
|
2056
2044
|
* @memberof ICompanyAdminResponse
|
|
2057
2045
|
*/
|
|
2058
|
-
'
|
|
2046
|
+
'currency_rates': RecordCurrencyEnumNumber;
|
|
2059
2047
|
/**
|
|
2060
2048
|
*
|
|
2061
|
-
* @type {
|
|
2049
|
+
* @type {Array<ICompanyResponseWarehousesInner>}
|
|
2062
2050
|
* @memberof ICompanyAdminResponse
|
|
2063
2051
|
*/
|
|
2064
|
-
'
|
|
2052
|
+
'warehouses': Array<ICompanyResponseWarehousesInner>;
|
|
2065
2053
|
/**
|
|
2066
2054
|
*
|
|
2067
|
-
* @type {
|
|
2055
|
+
* @type {Array<ICompanyResponseSenderEmailDnsRecordsInner>}
|
|
2068
2056
|
* @memberof ICompanyAdminResponse
|
|
2069
2057
|
*/
|
|
2070
|
-
'
|
|
2058
|
+
'sender_email_dns_records'?: Array<ICompanyResponseSenderEmailDnsRecordsInner>;
|
|
2071
2059
|
/**
|
|
2072
2060
|
*
|
|
2073
|
-
* @type {
|
|
2061
|
+
* @type {{ [key: string]: ICompanyResponseNavigationsValue; }}
|
|
2074
2062
|
* @memberof ICompanyAdminResponse
|
|
2075
2063
|
*/
|
|
2076
|
-
'
|
|
2064
|
+
'navigations': {
|
|
2065
|
+
[key: string]: ICompanyResponseNavigationsValue;
|
|
2066
|
+
};
|
|
2077
2067
|
/**
|
|
2078
2068
|
*
|
|
2079
|
-
* @type {
|
|
2069
|
+
* @type {ICompanyResponseFirebaseWebCredentials}
|
|
2080
2070
|
* @memberof ICompanyAdminResponse
|
|
2081
2071
|
*/
|
|
2082
|
-
'
|
|
2083
|
-
|
|
2084
|
-
|
|
2072
|
+
'firebase_web_credentials'?: ICompanyResponseFirebaseWebCredentials;
|
|
2073
|
+
/**
|
|
2074
|
+
*
|
|
2075
|
+
* @type {ICompanyResponseFirebaseAdminCredentials}
|
|
2076
|
+
* @memberof ICompanyAdminResponse
|
|
2077
|
+
*/
|
|
2078
|
+
'firebase_admin_credentials'?: ICompanyResponseFirebaseAdminCredentials;
|
|
2079
|
+
/**
|
|
2080
|
+
*
|
|
2081
|
+
* @type {ICompanyResponseAddress}
|
|
2082
|
+
* @memberof ICompanyAdminResponse
|
|
2083
|
+
*/
|
|
2084
|
+
'address'?: ICompanyResponseAddress;
|
|
2085
|
+
/**
|
|
2086
|
+
*
|
|
2087
|
+
* @type {Array<ICompanyResponseCustomHostnamesInner>}
|
|
2088
|
+
* @memberof ICompanyAdminResponse
|
|
2089
|
+
*/
|
|
2090
|
+
'custom_hostnames': Array<ICompanyResponseCustomHostnamesInner>;
|
|
2085
2091
|
}
|
|
2086
2092
|
/**
|
|
2087
2093
|
*
|
|
@@ -2456,22 +2462,34 @@ export interface ICompanyPatchRequest {
|
|
|
2456
2462
|
'status'?: CompanyStatusEnum;
|
|
2457
2463
|
/**
|
|
2458
2464
|
*
|
|
2459
|
-
* @type {
|
|
2465
|
+
* @type {ICompanyResponseFirebaseAdminCredentials}
|
|
2460
2466
|
* @memberof ICompanyPatchRequest
|
|
2461
2467
|
*/
|
|
2462
|
-
'firebase_admin_credentials'?:
|
|
2468
|
+
'firebase_admin_credentials'?: ICompanyResponseFirebaseAdminCredentials;
|
|
2463
2469
|
/**
|
|
2464
2470
|
*
|
|
2465
|
-
* @type {
|
|
2471
|
+
* @type {Array<ICompanyResponseSenderEmailDnsRecordsInner>}
|
|
2466
2472
|
* @memberof ICompanyPatchRequest
|
|
2467
2473
|
*/
|
|
2468
|
-
'
|
|
2474
|
+
'sender_email_dns_records'?: Array<ICompanyResponseSenderEmailDnsRecordsInner>;
|
|
2469
2475
|
/**
|
|
2470
2476
|
*
|
|
2471
|
-
* @type {
|
|
2477
|
+
* @type {Array<ICompanyResponseWarehousesInner>}
|
|
2472
2478
|
* @memberof ICompanyPatchRequest
|
|
2473
2479
|
*/
|
|
2474
|
-
'
|
|
2480
|
+
'warehouses'?: Array<ICompanyResponseWarehousesInner>;
|
|
2481
|
+
/**
|
|
2482
|
+
*
|
|
2483
|
+
* @type {ICompanyResponseAddress}
|
|
2484
|
+
* @memberof ICompanyPatchRequest
|
|
2485
|
+
*/
|
|
2486
|
+
'address'?: ICompanyResponseAddress;
|
|
2487
|
+
/**
|
|
2488
|
+
*
|
|
2489
|
+
* @type {CompanyTypeEnum}
|
|
2490
|
+
* @memberof ICompanyPatchRequest
|
|
2491
|
+
*/
|
|
2492
|
+
'type'?: CompanyTypeEnum;
|
|
2475
2493
|
/**
|
|
2476
2494
|
*
|
|
2477
2495
|
* @type {string}
|
|
@@ -2528,85 +2546,6 @@ export interface ICompanyPatchRequest {
|
|
|
2528
2546
|
* @memberof ICompanyPatchRequest
|
|
2529
2547
|
*/
|
|
2530
2548
|
'currencies'?: RecordCurrencyEnumCurrency;
|
|
2531
|
-
/**
|
|
2532
|
-
*
|
|
2533
|
-
* @type {Array<PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsWarehousesInner>}
|
|
2534
|
-
* @memberof ICompanyPatchRequest
|
|
2535
|
-
*/
|
|
2536
|
-
'warehouses'?: Array<PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsWarehousesInner>;
|
|
2537
|
-
/**
|
|
2538
|
-
*
|
|
2539
|
-
* @type {Array<PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsSenderEmailDnsRecordsInner>}
|
|
2540
|
-
* @memberof ICompanyPatchRequest
|
|
2541
|
-
*/
|
|
2542
|
-
'sender_email_dns_records'?: Array<PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsSenderEmailDnsRecordsInner>;
|
|
2543
|
-
}
|
|
2544
|
-
/**
|
|
2545
|
-
*
|
|
2546
|
-
* @export
|
|
2547
|
-
* @interface ICompanyPatchRequestFirebaseAdminCredentials
|
|
2548
|
-
*/
|
|
2549
|
-
export interface ICompanyPatchRequestFirebaseAdminCredentials {
|
|
2550
|
-
/**
|
|
2551
|
-
*
|
|
2552
|
-
* @type {string}
|
|
2553
|
-
* @memberof ICompanyPatchRequestFirebaseAdminCredentials
|
|
2554
|
-
*/
|
|
2555
|
-
'universe_domain': string;
|
|
2556
|
-
/**
|
|
2557
|
-
*
|
|
2558
|
-
* @type {string}
|
|
2559
|
-
* @memberof ICompanyPatchRequestFirebaseAdminCredentials
|
|
2560
|
-
*/
|
|
2561
|
-
'auth_provider_x509_cert_url': string;
|
|
2562
|
-
/**
|
|
2563
|
-
*
|
|
2564
|
-
* @type {string}
|
|
2565
|
-
* @memberof ICompanyPatchRequestFirebaseAdminCredentials
|
|
2566
|
-
*/
|
|
2567
|
-
'token_uri': string;
|
|
2568
|
-
/**
|
|
2569
|
-
*
|
|
2570
|
-
* @type {string}
|
|
2571
|
-
* @memberof ICompanyPatchRequestFirebaseAdminCredentials
|
|
2572
|
-
*/
|
|
2573
|
-
'auth_uri': string;
|
|
2574
|
-
/**
|
|
2575
|
-
*
|
|
2576
|
-
* @type {string}
|
|
2577
|
-
* @memberof ICompanyPatchRequestFirebaseAdminCredentials
|
|
2578
|
-
*/
|
|
2579
|
-
'client_id': string;
|
|
2580
|
-
/**
|
|
2581
|
-
*
|
|
2582
|
-
* @type {string}
|
|
2583
|
-
* @memberof ICompanyPatchRequestFirebaseAdminCredentials
|
|
2584
|
-
*/
|
|
2585
|
-
'client_email': string;
|
|
2586
|
-
/**
|
|
2587
|
-
*
|
|
2588
|
-
* @type {string}
|
|
2589
|
-
* @memberof ICompanyPatchRequestFirebaseAdminCredentials
|
|
2590
|
-
*/
|
|
2591
|
-
'private_key': string;
|
|
2592
|
-
/**
|
|
2593
|
-
*
|
|
2594
|
-
* @type {string}
|
|
2595
|
-
* @memberof ICompanyPatchRequestFirebaseAdminCredentials
|
|
2596
|
-
*/
|
|
2597
|
-
'private_key_id': string;
|
|
2598
|
-
/**
|
|
2599
|
-
*
|
|
2600
|
-
* @type {string}
|
|
2601
|
-
* @memberof ICompanyPatchRequestFirebaseAdminCredentials
|
|
2602
|
-
*/
|
|
2603
|
-
'project_id': string;
|
|
2604
|
-
/**
|
|
2605
|
-
*
|
|
2606
|
-
* @type {string}
|
|
2607
|
-
* @memberof ICompanyPatchRequestFirebaseAdminCredentials
|
|
2608
|
-
*/
|
|
2609
|
-
'credential_type': string;
|
|
2610
2549
|
}
|
|
2611
2550
|
/**
|
|
2612
2551
|
*
|
|
@@ -2735,12 +2674,6 @@ export interface ICompanyResponse {
|
|
|
2735
2674
|
* @memberof ICompanyResponse
|
|
2736
2675
|
*/
|
|
2737
2676
|
'owner': string;
|
|
2738
|
-
/**
|
|
2739
|
-
*
|
|
2740
|
-
* @type {PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsAddress}
|
|
2741
|
-
* @memberof ICompanyResponse
|
|
2742
|
-
*/
|
|
2743
|
-
'address'?: PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsAddress;
|
|
2744
2677
|
/**
|
|
2745
2678
|
*
|
|
2746
2679
|
* @type {Array<string>}
|
|
@@ -2759,12 +2692,6 @@ export interface ICompanyResponse {
|
|
|
2759
2692
|
* @memberof ICompanyResponse
|
|
2760
2693
|
*/
|
|
2761
2694
|
'dns_zone_domain'?: string;
|
|
2762
|
-
/**
|
|
2763
|
-
*
|
|
2764
|
-
* @type {Array<PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsCustomHostnamesInner>}
|
|
2765
|
-
* @memberof ICompanyResponse
|
|
2766
|
-
*/
|
|
2767
|
-
'custom_hostnames': Array<PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsCustomHostnamesInner>;
|
|
2768
2695
|
/**
|
|
2769
2696
|
*
|
|
2770
2697
|
* @type {{ [key: string]: string; }}
|
|
@@ -2811,150 +2738,433 @@ export interface ICompanyResponse {
|
|
|
2811
2738
|
'currencies': RecordCurrencyEnumCurrency;
|
|
2812
2739
|
/**
|
|
2813
2740
|
*
|
|
2814
|
-
* @type {
|
|
2741
|
+
* @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysFirebaseLogin}
|
|
2815
2742
|
* @memberof ICompanyResponse
|
|
2816
2743
|
*/
|
|
2817
|
-
'
|
|
2744
|
+
'firebase_login': PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysFirebaseLogin;
|
|
2818
2745
|
/**
|
|
2819
2746
|
*
|
|
2820
|
-
* @type {
|
|
2747
|
+
* @type {string}
|
|
2821
2748
|
* @memberof ICompanyResponse
|
|
2822
2749
|
*/
|
|
2823
|
-
'
|
|
2824
|
-
[key: string]: PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsNavigationsValue;
|
|
2825
|
-
};
|
|
2750
|
+
'sender_email'?: string;
|
|
2826
2751
|
/**
|
|
2827
2752
|
*
|
|
2828
|
-
* @type {
|
|
2753
|
+
* @type {string}
|
|
2829
2754
|
* @memberof ICompanyResponse
|
|
2830
2755
|
*/
|
|
2831
|
-
'
|
|
2756
|
+
'sender_name'?: string;
|
|
2832
2757
|
/**
|
|
2833
2758
|
*
|
|
2834
|
-
* @type {
|
|
2759
|
+
* @type {PickICompanyNameOrDomainsOrIdOrLanguage}
|
|
2835
2760
|
* @memberof ICompanyResponse
|
|
2836
2761
|
*/
|
|
2837
|
-
'
|
|
2762
|
+
'main'?: PickICompanyNameOrDomainsOrIdOrLanguage;
|
|
2838
2763
|
/**
|
|
2839
2764
|
*
|
|
2840
|
-
* @type {
|
|
2765
|
+
* @type {ICompanyResponseConfig}
|
|
2841
2766
|
* @memberof ICompanyResponse
|
|
2842
2767
|
*/
|
|
2843
|
-
'
|
|
2768
|
+
'config': ICompanyResponseConfig;
|
|
2844
2769
|
/**
|
|
2845
2770
|
*
|
|
2846
|
-
* @type {
|
|
2771
|
+
* @type {RecordCurrencyEnumNumber}
|
|
2847
2772
|
* @memberof ICompanyResponse
|
|
2848
2773
|
*/
|
|
2849
|
-
'
|
|
2774
|
+
'currency_rates': RecordCurrencyEnumNumber;
|
|
2850
2775
|
/**
|
|
2851
2776
|
*
|
|
2852
|
-
* @type {Array<
|
|
2777
|
+
* @type {Array<ICompanyResponseWarehousesInner>}
|
|
2853
2778
|
* @memberof ICompanyResponse
|
|
2854
2779
|
*/
|
|
2855
|
-
'
|
|
2780
|
+
'warehouses': Array<ICompanyResponseWarehousesInner>;
|
|
2856
2781
|
/**
|
|
2857
2782
|
*
|
|
2858
|
-
* @type {
|
|
2783
|
+
* @type {Array<ICompanyResponseSenderEmailDnsRecordsInner>}
|
|
2859
2784
|
* @memberof ICompanyResponse
|
|
2860
2785
|
*/
|
|
2861
|
-
'
|
|
2786
|
+
'sender_email_dns_records'?: Array<ICompanyResponseSenderEmailDnsRecordsInner>;
|
|
2862
2787
|
/**
|
|
2863
2788
|
*
|
|
2864
|
-
* @type {
|
|
2789
|
+
* @type {{ [key: string]: ICompanyResponseNavigationsValue; }}
|
|
2865
2790
|
* @memberof ICompanyResponse
|
|
2866
2791
|
*/
|
|
2867
|
-
'
|
|
2792
|
+
'navigations': {
|
|
2793
|
+
[key: string]: ICompanyResponseNavigationsValue;
|
|
2794
|
+
};
|
|
2868
2795
|
/**
|
|
2869
2796
|
*
|
|
2870
|
-
* @type {
|
|
2797
|
+
* @type {ICompanyResponseFirebaseWebCredentials}
|
|
2871
2798
|
* @memberof ICompanyResponse
|
|
2872
2799
|
*/
|
|
2873
|
-
'
|
|
2800
|
+
'firebase_web_credentials'?: ICompanyResponseFirebaseWebCredentials;
|
|
2801
|
+
/**
|
|
2802
|
+
*
|
|
2803
|
+
* @type {ICompanyResponseFirebaseAdminCredentials}
|
|
2804
|
+
* @memberof ICompanyResponse
|
|
2805
|
+
*/
|
|
2806
|
+
'firebase_admin_credentials'?: ICompanyResponseFirebaseAdminCredentials;
|
|
2807
|
+
/**
|
|
2808
|
+
*
|
|
2809
|
+
* @type {ICompanyResponseAddress}
|
|
2810
|
+
* @memberof ICompanyResponse
|
|
2811
|
+
*/
|
|
2812
|
+
'address'?: ICompanyResponseAddress;
|
|
2813
|
+
/**
|
|
2814
|
+
*
|
|
2815
|
+
* @type {Array<ICompanyResponseCustomHostnamesInner>}
|
|
2816
|
+
* @memberof ICompanyResponse
|
|
2817
|
+
*/
|
|
2818
|
+
'custom_hostnames': Array<ICompanyResponseCustomHostnamesInner>;
|
|
2819
|
+
}
|
|
2820
|
+
/**
|
|
2821
|
+
*
|
|
2822
|
+
* @export
|
|
2823
|
+
* @interface ICompanyResponseAddress
|
|
2824
|
+
*/
|
|
2825
|
+
export interface ICompanyResponseAddress {
|
|
2826
|
+
/**
|
|
2827
|
+
*
|
|
2828
|
+
* @type {string}
|
|
2829
|
+
* @memberof ICompanyResponseAddress
|
|
2830
|
+
*/
|
|
2831
|
+
'description': string;
|
|
2832
|
+
/**
|
|
2833
|
+
*
|
|
2834
|
+
* @type {string}
|
|
2835
|
+
* @memberof ICompanyResponseAddress
|
|
2836
|
+
*/
|
|
2837
|
+
'city': string;
|
|
2838
|
+
/**
|
|
2839
|
+
*
|
|
2840
|
+
* @type {string}
|
|
2841
|
+
* @memberof ICompanyResponseAddress
|
|
2842
|
+
*/
|
|
2843
|
+
'state': string;
|
|
2844
|
+
/**
|
|
2845
|
+
*
|
|
2846
|
+
* @type {string}
|
|
2847
|
+
* @memberof ICompanyResponseAddress
|
|
2848
|
+
*/
|
|
2849
|
+
'country': string;
|
|
2874
2850
|
}
|
|
2875
2851
|
/**
|
|
2876
2852
|
*
|
|
2877
2853
|
* @export
|
|
2878
2854
|
* @interface ICompanyResponseConfig
|
|
2879
2855
|
*/
|
|
2880
|
-
export interface ICompanyResponseConfig {
|
|
2856
|
+
export interface ICompanyResponseConfig {
|
|
2857
|
+
/**
|
|
2858
|
+
*
|
|
2859
|
+
* @type {ICompanyResponseConfigTemplate}
|
|
2860
|
+
* @memberof ICompanyResponseConfig
|
|
2861
|
+
*/
|
|
2862
|
+
'template': ICompanyResponseConfigTemplate;
|
|
2863
|
+
/**
|
|
2864
|
+
*
|
|
2865
|
+
* @type {ICompanyResponseConfigCss}
|
|
2866
|
+
* @memberof ICompanyResponseConfig
|
|
2867
|
+
*/
|
|
2868
|
+
'css': ICompanyResponseConfigCss;
|
|
2869
|
+
/**
|
|
2870
|
+
*
|
|
2871
|
+
* @type {ICompanyResponseConfigInject}
|
|
2872
|
+
* @memberof ICompanyResponseConfig
|
|
2873
|
+
*/
|
|
2874
|
+
'inject': ICompanyResponseConfigInject;
|
|
2875
|
+
/**
|
|
2876
|
+
*
|
|
2877
|
+
* @type {ThemeTypeEnum}
|
|
2878
|
+
* @memberof ICompanyResponseConfig
|
|
2879
|
+
*/
|
|
2880
|
+
'theme': ThemeTypeEnum;
|
|
2881
|
+
}
|
|
2882
|
+
/**
|
|
2883
|
+
*
|
|
2884
|
+
* @export
|
|
2885
|
+
* @interface ICompanyResponseConfigCss
|
|
2886
|
+
*/
|
|
2887
|
+
export interface ICompanyResponseConfigCss {
|
|
2888
|
+
/**
|
|
2889
|
+
*
|
|
2890
|
+
* @type {{ [key: string]: string; }}
|
|
2891
|
+
* @memberof ICompanyResponseConfigCss
|
|
2892
|
+
*/
|
|
2893
|
+
'variables': {
|
|
2894
|
+
[key: string]: string;
|
|
2895
|
+
};
|
|
2896
|
+
}
|
|
2897
|
+
/**
|
|
2898
|
+
*
|
|
2899
|
+
* @export
|
|
2900
|
+
* @interface ICompanyResponseConfigInject
|
|
2901
|
+
*/
|
|
2902
|
+
export interface ICompanyResponseConfigInject {
|
|
2903
|
+
/**
|
|
2904
|
+
*
|
|
2905
|
+
* @type {string}
|
|
2906
|
+
* @memberof ICompanyResponseConfigInject
|
|
2907
|
+
*/
|
|
2908
|
+
'js': string;
|
|
2909
|
+
/**
|
|
2910
|
+
*
|
|
2911
|
+
* @type {string}
|
|
2912
|
+
* @memberof ICompanyResponseConfigInject
|
|
2913
|
+
*/
|
|
2914
|
+
'css': string;
|
|
2915
|
+
}
|
|
2916
|
+
/**
|
|
2917
|
+
*
|
|
2918
|
+
* @export
|
|
2919
|
+
* @interface ICompanyResponseConfigTemplate
|
|
2920
|
+
*/
|
|
2921
|
+
export interface ICompanyResponseConfigTemplate {
|
|
2922
|
+
/**
|
|
2923
|
+
*
|
|
2924
|
+
* @type {Array<ITemplateResponseComponentsInner>}
|
|
2925
|
+
* @memberof ICompanyResponseConfigTemplate
|
|
2926
|
+
*/
|
|
2927
|
+
'footer': Array<ITemplateResponseComponentsInner>;
|
|
2928
|
+
/**
|
|
2929
|
+
*
|
|
2930
|
+
* @type {Array<ITemplateResponseComponentsInner>}
|
|
2931
|
+
* @memberof ICompanyResponseConfigTemplate
|
|
2932
|
+
*/
|
|
2933
|
+
'header': Array<ITemplateResponseComponentsInner>;
|
|
2934
|
+
}
|
|
2935
|
+
/**
|
|
2936
|
+
*
|
|
2937
|
+
* @export
|
|
2938
|
+
* @interface ICompanyResponseCustomHostnamesInner
|
|
2939
|
+
*/
|
|
2940
|
+
export interface ICompanyResponseCustomHostnamesInner {
|
|
2941
|
+
/**
|
|
2942
|
+
*
|
|
2943
|
+
* @type {string}
|
|
2944
|
+
* @memberof ICompanyResponseCustomHostnamesInner
|
|
2945
|
+
*/
|
|
2946
|
+
'validation_code': string;
|
|
2947
|
+
/**
|
|
2948
|
+
*
|
|
2949
|
+
* @type {string}
|
|
2950
|
+
* @memberof ICompanyResponseCustomHostnamesInner
|
|
2951
|
+
*/
|
|
2952
|
+
'hostname': string;
|
|
2953
|
+
/**
|
|
2954
|
+
*
|
|
2955
|
+
* @type {string}
|
|
2956
|
+
* @memberof ICompanyResponseCustomHostnamesInner
|
|
2957
|
+
*/
|
|
2958
|
+
'zone_id': string;
|
|
2959
|
+
/**
|
|
2960
|
+
*
|
|
2961
|
+
* @type {string}
|
|
2962
|
+
* @memberof ICompanyResponseCustomHostnamesInner
|
|
2963
|
+
*/
|
|
2964
|
+
'id': string;
|
|
2965
|
+
}
|
|
2966
|
+
/**
|
|
2967
|
+
*
|
|
2968
|
+
* @export
|
|
2969
|
+
* @interface ICompanyResponseFirebaseAdminCredentials
|
|
2970
|
+
*/
|
|
2971
|
+
export interface ICompanyResponseFirebaseAdminCredentials {
|
|
2972
|
+
/**
|
|
2973
|
+
*
|
|
2974
|
+
* @type {string}
|
|
2975
|
+
* @memberof ICompanyResponseFirebaseAdminCredentials
|
|
2976
|
+
*/
|
|
2977
|
+
'universe_domain': string;
|
|
2978
|
+
/**
|
|
2979
|
+
*
|
|
2980
|
+
* @type {string}
|
|
2981
|
+
* @memberof ICompanyResponseFirebaseAdminCredentials
|
|
2982
|
+
*/
|
|
2983
|
+
'auth_provider_x509_cert_url': string;
|
|
2984
|
+
/**
|
|
2985
|
+
*
|
|
2986
|
+
* @type {string}
|
|
2987
|
+
* @memberof ICompanyResponseFirebaseAdminCredentials
|
|
2988
|
+
*/
|
|
2989
|
+
'token_uri': string;
|
|
2990
|
+
/**
|
|
2991
|
+
*
|
|
2992
|
+
* @type {string}
|
|
2993
|
+
* @memberof ICompanyResponseFirebaseAdminCredentials
|
|
2994
|
+
*/
|
|
2995
|
+
'auth_uri': string;
|
|
2996
|
+
/**
|
|
2997
|
+
*
|
|
2998
|
+
* @type {string}
|
|
2999
|
+
* @memberof ICompanyResponseFirebaseAdminCredentials
|
|
3000
|
+
*/
|
|
3001
|
+
'client_id': string;
|
|
3002
|
+
/**
|
|
3003
|
+
*
|
|
3004
|
+
* @type {string}
|
|
3005
|
+
* @memberof ICompanyResponseFirebaseAdminCredentials
|
|
3006
|
+
*/
|
|
3007
|
+
'client_email': string;
|
|
3008
|
+
/**
|
|
3009
|
+
*
|
|
3010
|
+
* @type {string}
|
|
3011
|
+
* @memberof ICompanyResponseFirebaseAdminCredentials
|
|
3012
|
+
*/
|
|
3013
|
+
'private_key': string;
|
|
3014
|
+
/**
|
|
3015
|
+
*
|
|
3016
|
+
* @type {string}
|
|
3017
|
+
* @memberof ICompanyResponseFirebaseAdminCredentials
|
|
3018
|
+
*/
|
|
3019
|
+
'private_key_id': string;
|
|
3020
|
+
/**
|
|
3021
|
+
*
|
|
3022
|
+
* @type {string}
|
|
3023
|
+
* @memberof ICompanyResponseFirebaseAdminCredentials
|
|
3024
|
+
*/
|
|
3025
|
+
'project_id': string;
|
|
3026
|
+
/**
|
|
3027
|
+
*
|
|
3028
|
+
* @type {string}
|
|
3029
|
+
* @memberof ICompanyResponseFirebaseAdminCredentials
|
|
3030
|
+
*/
|
|
3031
|
+
'credential_type': string;
|
|
3032
|
+
}
|
|
3033
|
+
/**
|
|
3034
|
+
*
|
|
3035
|
+
* @export
|
|
3036
|
+
* @interface ICompanyResponseFirebaseWebCredentials
|
|
3037
|
+
*/
|
|
3038
|
+
export interface ICompanyResponseFirebaseWebCredentials {
|
|
3039
|
+
/**
|
|
3040
|
+
*
|
|
3041
|
+
* @type {string}
|
|
3042
|
+
* @memberof ICompanyResponseFirebaseWebCredentials
|
|
3043
|
+
*/
|
|
3044
|
+
'measurementId': string;
|
|
3045
|
+
/**
|
|
3046
|
+
*
|
|
3047
|
+
* @type {string}
|
|
3048
|
+
* @memberof ICompanyResponseFirebaseWebCredentials
|
|
3049
|
+
*/
|
|
3050
|
+
'appId': string;
|
|
3051
|
+
/**
|
|
3052
|
+
*
|
|
3053
|
+
* @type {string}
|
|
3054
|
+
* @memberof ICompanyResponseFirebaseWebCredentials
|
|
3055
|
+
*/
|
|
3056
|
+
'messagingSenderId': string;
|
|
3057
|
+
/**
|
|
3058
|
+
*
|
|
3059
|
+
* @type {string}
|
|
3060
|
+
* @memberof ICompanyResponseFirebaseWebCredentials
|
|
3061
|
+
*/
|
|
3062
|
+
'storageBucket': string;
|
|
3063
|
+
/**
|
|
3064
|
+
*
|
|
3065
|
+
* @type {string}
|
|
3066
|
+
* @memberof ICompanyResponseFirebaseWebCredentials
|
|
3067
|
+
*/
|
|
3068
|
+
'projectId': string;
|
|
3069
|
+
/**
|
|
3070
|
+
*
|
|
3071
|
+
* @type {string}
|
|
3072
|
+
* @memberof ICompanyResponseFirebaseWebCredentials
|
|
3073
|
+
*/
|
|
3074
|
+
'authDomain': string;
|
|
3075
|
+
/**
|
|
3076
|
+
*
|
|
3077
|
+
* @type {string}
|
|
3078
|
+
* @memberof ICompanyResponseFirebaseWebCredentials
|
|
3079
|
+
*/
|
|
3080
|
+
'apiKey': string;
|
|
3081
|
+
}
|
|
3082
|
+
/**
|
|
3083
|
+
*
|
|
3084
|
+
* @export
|
|
3085
|
+
* @interface ICompanyResponseNavigationsValue
|
|
3086
|
+
*/
|
|
3087
|
+
export interface ICompanyResponseNavigationsValue {
|
|
3088
|
+
/**
|
|
3089
|
+
*
|
|
3090
|
+
* @type {Array<NavigationUrl>}
|
|
3091
|
+
* @memberof ICompanyResponseNavigationsValue
|
|
3092
|
+
*/
|
|
3093
|
+
'footer': Array<NavigationUrl>;
|
|
3094
|
+
/**
|
|
3095
|
+
*
|
|
3096
|
+
* @type {Array<NavigationUrl>}
|
|
3097
|
+
* @memberof ICompanyResponseNavigationsValue
|
|
3098
|
+
*/
|
|
3099
|
+
'header': Array<NavigationUrl>;
|
|
3100
|
+
}
|
|
3101
|
+
/**
|
|
3102
|
+
*
|
|
3103
|
+
* @export
|
|
3104
|
+
* @interface ICompanyResponseSenderEmailDnsRecordsInner
|
|
3105
|
+
*/
|
|
3106
|
+
export interface ICompanyResponseSenderEmailDnsRecordsInner {
|
|
2881
3107
|
/**
|
|
2882
3108
|
*
|
|
2883
|
-
* @type {
|
|
2884
|
-
* @memberof
|
|
3109
|
+
* @type {number}
|
|
3110
|
+
* @memberof ICompanyResponseSenderEmailDnsRecordsInner
|
|
2885
3111
|
*/
|
|
2886
|
-
'
|
|
3112
|
+
'priority'?: number;
|
|
2887
3113
|
/**
|
|
2888
3114
|
*
|
|
2889
|
-
* @type {
|
|
2890
|
-
* @memberof
|
|
3115
|
+
* @type {EmailConfigDnsRecordTypeEnum}
|
|
3116
|
+
* @memberof ICompanyResponseSenderEmailDnsRecordsInner
|
|
2891
3117
|
*/
|
|
2892
|
-
'
|
|
3118
|
+
'type': EmailConfigDnsRecordTypeEnum;
|
|
2893
3119
|
/**
|
|
2894
3120
|
*
|
|
2895
|
-
* @type {
|
|
2896
|
-
* @memberof
|
|
3121
|
+
* @type {string}
|
|
3122
|
+
* @memberof ICompanyResponseSenderEmailDnsRecordsInner
|
|
2897
3123
|
*/
|
|
2898
|
-
'
|
|
3124
|
+
'value': string;
|
|
2899
3125
|
/**
|
|
2900
3126
|
*
|
|
2901
|
-
* @type {
|
|
2902
|
-
* @memberof
|
|
3127
|
+
* @type {string}
|
|
3128
|
+
* @memberof ICompanyResponseSenderEmailDnsRecordsInner
|
|
2903
3129
|
*/
|
|
2904
|
-
'
|
|
3130
|
+
'key': string;
|
|
2905
3131
|
}
|
|
2906
3132
|
/**
|
|
2907
3133
|
*
|
|
2908
3134
|
* @export
|
|
2909
|
-
* @interface
|
|
3135
|
+
* @interface ICompanyResponseWarehousesInner
|
|
2910
3136
|
*/
|
|
2911
|
-
export interface
|
|
3137
|
+
export interface ICompanyResponseWarehousesInner {
|
|
2912
3138
|
/**
|
|
2913
3139
|
*
|
|
2914
|
-
* @type {
|
|
2915
|
-
* @memberof
|
|
3140
|
+
* @type {string}
|
|
3141
|
+
* @memberof ICompanyResponseWarehousesInner
|
|
2916
3142
|
*/
|
|
2917
|
-
'
|
|
2918
|
-
[key: string]: string;
|
|
2919
|
-
};
|
|
2920
|
-
}
|
|
2921
|
-
/**
|
|
2922
|
-
*
|
|
2923
|
-
* @export
|
|
2924
|
-
* @interface ICompanyResponseConfigInject
|
|
2925
|
-
*/
|
|
2926
|
-
export interface ICompanyResponseConfigInject {
|
|
3143
|
+
'email'?: string;
|
|
2927
3144
|
/**
|
|
2928
3145
|
*
|
|
2929
3146
|
* @type {string}
|
|
2930
|
-
* @memberof
|
|
3147
|
+
* @memberof ICompanyResponseWarehousesInner
|
|
2931
3148
|
*/
|
|
2932
|
-
'
|
|
3149
|
+
'phone'?: string;
|
|
2933
3150
|
/**
|
|
2934
3151
|
*
|
|
2935
3152
|
* @type {string}
|
|
2936
|
-
* @memberof
|
|
3153
|
+
* @memberof ICompanyResponseWarehousesInner
|
|
2937
3154
|
*/
|
|
2938
|
-
'
|
|
2939
|
-
}
|
|
2940
|
-
/**
|
|
2941
|
-
*
|
|
2942
|
-
* @export
|
|
2943
|
-
* @interface ICompanyResponseConfigTemplate
|
|
2944
|
-
*/
|
|
2945
|
-
export interface ICompanyResponseConfigTemplate {
|
|
3155
|
+
'address'?: string;
|
|
2946
3156
|
/**
|
|
2947
3157
|
*
|
|
2948
|
-
* @type {
|
|
2949
|
-
* @memberof
|
|
3158
|
+
* @type {string}
|
|
3159
|
+
* @memberof ICompanyResponseWarehousesInner
|
|
2950
3160
|
*/
|
|
2951
|
-
'
|
|
3161
|
+
'name': string;
|
|
2952
3162
|
/**
|
|
2953
3163
|
*
|
|
2954
|
-
* @type {
|
|
2955
|
-
* @memberof
|
|
3164
|
+
* @type {string}
|
|
3165
|
+
* @memberof ICompanyResponseWarehousesInner
|
|
2956
3166
|
*/
|
|
2957
|
-
'
|
|
3167
|
+
'_id': string;
|
|
2958
3168
|
}
|
|
2959
3169
|
/**
|
|
2960
3170
|
*
|
|
@@ -2996,22 +3206,22 @@ export interface ICompanyUpdateDomainRequest {
|
|
|
2996
3206
|
export interface ICompanyUpdateFirebaseConfigRequest {
|
|
2997
3207
|
/**
|
|
2998
3208
|
*
|
|
2999
|
-
* @type {
|
|
3209
|
+
* @type {ICompanyResponseFirebaseAdminCredentials}
|
|
3000
3210
|
* @memberof ICompanyUpdateFirebaseConfigRequest
|
|
3001
3211
|
*/
|
|
3002
|
-
'firebase_admin_credentials'?:
|
|
3212
|
+
'firebase_admin_credentials'?: ICompanyResponseFirebaseAdminCredentials;
|
|
3003
3213
|
/**
|
|
3004
3214
|
*
|
|
3005
|
-
* @type {
|
|
3215
|
+
* @type {ICompanyResponseFirebaseWebCredentials}
|
|
3006
3216
|
* @memberof ICompanyUpdateFirebaseConfigRequest
|
|
3007
3217
|
*/
|
|
3008
|
-
'firebase_web_credentials'?:
|
|
3218
|
+
'firebase_web_credentials'?: ICompanyResponseFirebaseWebCredentials;
|
|
3009
3219
|
/**
|
|
3010
3220
|
*
|
|
3011
|
-
* @type {
|
|
3221
|
+
* @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysFirebaseLogin}
|
|
3012
3222
|
* @memberof ICompanyUpdateFirebaseConfigRequest
|
|
3013
3223
|
*/
|
|
3014
|
-
'firebase_login'?:
|
|
3224
|
+
'firebase_login'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysFirebaseLogin;
|
|
3015
3225
|
}
|
|
3016
3226
|
/**
|
|
3017
3227
|
*
|
|
@@ -3021,11 +3231,11 @@ export interface ICompanyUpdateFirebaseConfigRequest {
|
|
|
3021
3231
|
export interface ICompanyUpdateNavigationRequest {
|
|
3022
3232
|
/**
|
|
3023
3233
|
*
|
|
3024
|
-
* @type {{ [key: string]:
|
|
3234
|
+
* @type {{ [key: string]: ICompanyResponseNavigationsValue; }}
|
|
3025
3235
|
* @memberof ICompanyUpdateNavigationRequest
|
|
3026
3236
|
*/
|
|
3027
3237
|
'navigations': {
|
|
3028
|
-
[key: string]:
|
|
3238
|
+
[key: string]: ICompanyResponseNavigationsValue;
|
|
3029
3239
|
};
|
|
3030
3240
|
}
|
|
3031
3241
|
/**
|
|
@@ -3384,7 +3594,7 @@ export interface IFileCollectionQueryParams {
|
|
|
3384
3594
|
* @type {string}
|
|
3385
3595
|
* @memberof IFileCollectionQueryParams
|
|
3386
3596
|
*/
|
|
3387
|
-
'
|
|
3597
|
+
'company_id': string;
|
|
3388
3598
|
/**
|
|
3389
3599
|
*
|
|
3390
3600
|
* @type {Array<FileKeywordEnum>}
|
|
@@ -3761,7 +3971,7 @@ export interface INotificationCollectionQueryParams {
|
|
|
3761
3971
|
* @type {string}
|
|
3762
3972
|
* @memberof INotificationCollectionQueryParams
|
|
3763
3973
|
*/
|
|
3764
|
-
'
|
|
3974
|
+
'company_id'?: string;
|
|
3765
3975
|
/**
|
|
3766
3976
|
*
|
|
3767
3977
|
* @type {NotificationStatusEnum}
|
|
@@ -4237,7 +4447,7 @@ export interface IPageCollectionQueryParams {
|
|
|
4237
4447
|
* @type {string}
|
|
4238
4448
|
* @memberof IPageCollectionQueryParams
|
|
4239
4449
|
*/
|
|
4240
|
-
'
|
|
4450
|
+
'company_id'?: string;
|
|
4241
4451
|
/**
|
|
4242
4452
|
*
|
|
4243
4453
|
* @type {string}
|
|
@@ -4268,7 +4478,7 @@ export interface IPageGetAllQueryParams {
|
|
|
4268
4478
|
* @type {string}
|
|
4269
4479
|
* @memberof IPageGetAllQueryParams
|
|
4270
4480
|
*/
|
|
4271
|
-
'
|
|
4481
|
+
'company_id'?: string;
|
|
4272
4482
|
/**
|
|
4273
4483
|
*
|
|
4274
4484
|
* @type {string}
|
|
@@ -4302,10 +4512,10 @@ export interface IPagePatchRequest {
|
|
|
4302
4512
|
'template'?: ITemplateResponse;
|
|
4303
4513
|
/**
|
|
4304
4514
|
*
|
|
4305
|
-
* @type {
|
|
4515
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
4306
4516
|
* @memberof IPagePatchRequest
|
|
4307
4517
|
*/
|
|
4308
|
-
'contents'?:
|
|
4518
|
+
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
4309
4519
|
/**
|
|
4310
4520
|
*
|
|
4311
4521
|
* @type {IImage}
|
|
@@ -4333,10 +4543,10 @@ export interface IPagePostRequest {
|
|
|
4333
4543
|
'type': PageTypeEnum;
|
|
4334
4544
|
/**
|
|
4335
4545
|
*
|
|
4336
|
-
* @type {
|
|
4546
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
4337
4547
|
* @memberof IPagePostRequest
|
|
4338
4548
|
*/
|
|
4339
|
-
'contents':
|
|
4549
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
4340
4550
|
/**
|
|
4341
4551
|
*
|
|
4342
4552
|
* @type {IImage}
|
|
@@ -4394,10 +4604,10 @@ export interface IPageResponse {
|
|
|
4394
4604
|
'type': PageTypeEnum;
|
|
4395
4605
|
/**
|
|
4396
4606
|
*
|
|
4397
|
-
* @type {
|
|
4607
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
4398
4608
|
* @memberof IPageResponse
|
|
4399
4609
|
*/
|
|
4400
|
-
'contents':
|
|
4610
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
4401
4611
|
/**
|
|
4402
4612
|
*
|
|
4403
4613
|
* @type {IImage}
|
|
@@ -4814,7 +5024,13 @@ export interface IProductCollectionQueryParams {
|
|
|
4814
5024
|
* @type {string}
|
|
4815
5025
|
* @memberof IProductCollectionQueryParams
|
|
4816
5026
|
*/
|
|
4817
|
-
'
|
|
5027
|
+
'company_id'?: string;
|
|
5028
|
+
/**
|
|
5029
|
+
*
|
|
5030
|
+
* @type {string}
|
|
5031
|
+
* @memberof IProductCollectionQueryParams
|
|
5032
|
+
*/
|
|
5033
|
+
'domain'?: string;
|
|
4818
5034
|
/**
|
|
4819
5035
|
*
|
|
4820
5036
|
* @type {string}
|
|
@@ -4916,10 +5132,10 @@ export interface IProductPatchRequest {
|
|
|
4916
5132
|
'price_info'?: PriceType;
|
|
4917
5133
|
/**
|
|
4918
5134
|
*
|
|
4919
|
-
* @type {
|
|
5135
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
4920
5136
|
* @memberof IProductPatchRequest
|
|
4921
5137
|
*/
|
|
4922
|
-
'contents'?:
|
|
5138
|
+
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
4923
5139
|
/**
|
|
4924
5140
|
*
|
|
4925
5141
|
* @type {{ [key: string]: IProductResponseVariantsValue; }}
|
|
@@ -4995,10 +5211,10 @@ export interface IProductPostRequest {
|
|
|
4995
5211
|
'price_info': PriceType;
|
|
4996
5212
|
/**
|
|
4997
5213
|
*
|
|
4998
|
-
* @type {
|
|
5214
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
4999
5215
|
* @memberof IProductPostRequest
|
|
5000
5216
|
*/
|
|
5001
|
-
'contents':
|
|
5217
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
5002
5218
|
/**
|
|
5003
5219
|
*
|
|
5004
5220
|
* @type {{ [key: string]: IProductResponseVariantsValue; }}
|
|
@@ -5116,10 +5332,10 @@ export interface IProductResponse {
|
|
|
5116
5332
|
'price_info': PriceType;
|
|
5117
5333
|
/**
|
|
5118
5334
|
*
|
|
5119
|
-
* @type {
|
|
5335
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
5120
5336
|
* @memberof IProductResponse
|
|
5121
5337
|
*/
|
|
5122
|
-
'contents':
|
|
5338
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
5123
5339
|
/**
|
|
5124
5340
|
*
|
|
5125
5341
|
* @type {{ [key: string]: IProductResponseVariantsValue; }}
|
|
@@ -6353,6 +6569,31 @@ export declare const PageTypeEnum: {
|
|
|
6353
6569
|
readonly NOT_FOUND: "not-found";
|
|
6354
6570
|
};
|
|
6355
6571
|
export type PageTypeEnum = typeof PageTypeEnum[keyof typeof PageTypeEnum];
|
|
6572
|
+
/**
|
|
6573
|
+
* Make all properties in T optional
|
|
6574
|
+
* @export
|
|
6575
|
+
* @interface PartialRecordLanguageEnumIContentsValue
|
|
6576
|
+
*/
|
|
6577
|
+
export interface PartialRecordLanguageEnumIContentsValue {
|
|
6578
|
+
/**
|
|
6579
|
+
*
|
|
6580
|
+
* @type {IContentsValue}
|
|
6581
|
+
* @memberof PartialRecordLanguageEnumIContentsValue
|
|
6582
|
+
*/
|
|
6583
|
+
'tr'?: IContentsValue;
|
|
6584
|
+
/**
|
|
6585
|
+
*
|
|
6586
|
+
* @type {IContentsValue}
|
|
6587
|
+
* @memberof PartialRecordLanguageEnumIContentsValue
|
|
6588
|
+
*/
|
|
6589
|
+
'en'?: IContentsValue;
|
|
6590
|
+
/**
|
|
6591
|
+
*
|
|
6592
|
+
* @type {IContentsValue}
|
|
6593
|
+
* @memberof PartialRecordLanguageEnumIContentsValue
|
|
6594
|
+
*/
|
|
6595
|
+
'de'?: IContentsValue;
|
|
6596
|
+
}
|
|
6356
6597
|
/**
|
|
6357
6598
|
* From T, pick a set of properties whose keys are in the union K
|
|
6358
6599
|
* @export
|
|
@@ -6410,10 +6651,10 @@ export interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponse
|
|
|
6410
6651
|
'company': string;
|
|
6411
6652
|
/**
|
|
6412
6653
|
*
|
|
6413
|
-
* @type {
|
|
6654
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
6414
6655
|
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponse
|
|
6415
6656
|
*/
|
|
6416
|
-
'contents':
|
|
6657
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
6417
6658
|
/**
|
|
6418
6659
|
*
|
|
6419
6660
|
* @type {IImage}
|
|
@@ -6465,10 +6706,10 @@ export interface PickICategoryExcludeKeyofICategoryAttributes {
|
|
|
6465
6706
|
'main'?: string;
|
|
6466
6707
|
/**
|
|
6467
6708
|
*
|
|
6468
|
-
* @type {
|
|
6709
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
6469
6710
|
* @memberof PickICategoryExcludeKeyofICategoryAttributes
|
|
6470
6711
|
*/
|
|
6471
|
-
'contents':
|
|
6712
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
6472
6713
|
/**
|
|
6473
6714
|
*
|
|
6474
6715
|
* @type {IImage}
|
|
@@ -6496,10 +6737,10 @@ export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoRes
|
|
|
6496
6737
|
'main'?: string;
|
|
6497
6738
|
/**
|
|
6498
6739
|
*
|
|
6499
|
-
* @type {
|
|
6740
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
6500
6741
|
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributes
|
|
6501
6742
|
*/
|
|
6502
|
-
'contents':
|
|
6743
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
6503
6744
|
/**
|
|
6504
6745
|
*
|
|
6505
6746
|
* @type {IImage}
|
|
@@ -6521,10 +6762,10 @@ export interface PickICategoryResponseIdOrContentsOrAttributes {
|
|
|
6521
6762
|
'_id': string;
|
|
6522
6763
|
/**
|
|
6523
6764
|
*
|
|
6524
|
-
* @type {
|
|
6765
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
6525
6766
|
* @memberof PickICategoryResponseIdOrContentsOrAttributes
|
|
6526
6767
|
*/
|
|
6527
|
-
'contents':
|
|
6768
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
6528
6769
|
/**
|
|
6529
6770
|
*
|
|
6530
6771
|
* @type {Array<ICategoryResponseAttributesInner>}
|
|
@@ -6553,478 +6794,242 @@ export interface PickICollectionExcludeKeyofICollectionTemplate {
|
|
|
6553
6794
|
/**
|
|
6554
6795
|
*
|
|
6555
6796
|
* @type {number}
|
|
6556
|
-
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
6557
|
-
*/
|
|
6558
|
-
'__v': number;
|
|
6559
|
-
/**
|
|
6560
|
-
*
|
|
6561
|
-
* @type {string}
|
|
6562
|
-
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
6563
|
-
*/
|
|
6564
|
-
'createdAt': string;
|
|
6565
|
-
/**
|
|
6566
|
-
*
|
|
6567
|
-
* @type {string}
|
|
6568
|
-
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
6569
|
-
*/
|
|
6570
|
-
'updatedAt': string;
|
|
6571
|
-
/**
|
|
6572
|
-
*
|
|
6573
|
-
* @type {RecordLanguageEnumIContentsValue}
|
|
6574
|
-
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
6575
|
-
*/
|
|
6576
|
-
'contents': RecordLanguageEnumIContentsValue;
|
|
6577
|
-
/**
|
|
6578
|
-
*
|
|
6579
|
-
* @type {IImage}
|
|
6580
|
-
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
6581
|
-
*/
|
|
6582
|
-
'thumbnail'?: IImage;
|
|
6583
|
-
}
|
|
6584
|
-
/**
|
|
6585
|
-
* From T, pick a set of properties whose keys are in the union K
|
|
6586
|
-
* @export
|
|
6587
|
-
* @interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplate
|
|
6588
|
-
*/
|
|
6589
|
-
export interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplate {
|
|
6590
|
-
/**
|
|
6591
|
-
*
|
|
6592
|
-
* @type {string}
|
|
6593
|
-
* @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplate
|
|
6594
|
-
*/
|
|
6595
|
-
'company': string;
|
|
6596
|
-
/**
|
|
6597
|
-
*
|
|
6598
|
-
* @type {RecordLanguageEnumIContentsValue}
|
|
6599
|
-
* @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplate
|
|
6600
|
-
*/
|
|
6601
|
-
'contents': RecordLanguageEnumIContentsValue;
|
|
6602
|
-
/**
|
|
6603
|
-
*
|
|
6604
|
-
* @type {IImage}
|
|
6605
|
-
* @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplate
|
|
6606
|
-
*/
|
|
6607
|
-
'thumbnail'?: IImage;
|
|
6608
|
-
}
|
|
6609
|
-
/**
|
|
6610
|
-
* From T, pick a set of properties whose keys are in the union K
|
|
6611
|
-
* @export
|
|
6612
|
-
* @interface PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions
|
|
6613
|
-
*/
|
|
6614
|
-
export interface PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions {
|
|
6615
|
-
/**
|
|
6616
|
-
*
|
|
6617
|
-
* @type {string}
|
|
6618
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions
|
|
6619
|
-
*/
|
|
6620
|
-
'name': string;
|
|
6621
|
-
/**
|
|
6622
|
-
*
|
|
6623
|
-
* @type {string}
|
|
6624
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions
|
|
6625
|
-
*/
|
|
6626
|
-
'phone'?: string;
|
|
6627
|
-
/**
|
|
6628
|
-
*
|
|
6629
|
-
* @type {string}
|
|
6630
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions
|
|
6631
|
-
*/
|
|
6632
|
-
'email'?: string;
|
|
6633
|
-
/**
|
|
6634
|
-
*
|
|
6635
|
-
* @type {LanguageEnum}
|
|
6636
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions
|
|
6637
|
-
*/
|
|
6638
|
-
'language': LanguageEnum;
|
|
6639
|
-
/**
|
|
6640
|
-
*
|
|
6641
|
-
* @type {CompanyStatusEnum}
|
|
6642
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions
|
|
6643
|
-
*/
|
|
6644
|
-
'status': CompanyStatusEnum;
|
|
6645
|
-
/**
|
|
6646
|
-
*
|
|
6647
|
-
* @type {string}
|
|
6648
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions
|
|
6649
|
-
*/
|
|
6650
|
-
'_id': string;
|
|
6651
|
-
/**
|
|
6652
|
-
*
|
|
6653
|
-
* @type {number}
|
|
6654
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions
|
|
6655
|
-
*/
|
|
6656
|
-
'__v': number;
|
|
6657
|
-
/**
|
|
6658
|
-
*
|
|
6659
|
-
* @type {string}
|
|
6660
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions
|
|
6661
|
-
*/
|
|
6662
|
-
'createdAt': string;
|
|
6663
|
-
/**
|
|
6664
|
-
*
|
|
6665
|
-
* @type {string}
|
|
6666
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions
|
|
6667
|
-
*/
|
|
6668
|
-
'updatedAt': string;
|
|
6669
|
-
/**
|
|
6670
|
-
*
|
|
6671
|
-
* @type {PlanTypeEnum}
|
|
6672
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions
|
|
6673
|
-
*/
|
|
6674
|
-
'plan': PlanTypeEnum;
|
|
6675
|
-
/**
|
|
6676
|
-
*
|
|
6677
|
-
* @type {CompanyTypeEnum}
|
|
6678
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions
|
|
6679
|
-
*/
|
|
6680
|
-
'type': CompanyTypeEnum;
|
|
6681
|
-
/**
|
|
6682
|
-
*
|
|
6683
|
-
* @type {string}
|
|
6684
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions
|
|
6685
|
-
*/
|
|
6686
|
-
'owner': string;
|
|
6687
|
-
/**
|
|
6688
|
-
*
|
|
6689
|
-
* @type {PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsAddress}
|
|
6690
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions
|
|
6691
|
-
*/
|
|
6692
|
-
'address'?: PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsAddress;
|
|
6693
|
-
/**
|
|
6694
|
-
*
|
|
6695
|
-
* @type {Array<string>}
|
|
6696
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions
|
|
6697
|
-
*/
|
|
6698
|
-
'domains': Array<string>;
|
|
6699
|
-
/**
|
|
6700
|
-
*
|
|
6701
|
-
* @type {string}
|
|
6702
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions
|
|
6703
|
-
*/
|
|
6704
|
-
'dns_zone_id'?: string;
|
|
6705
|
-
/**
|
|
6706
|
-
*
|
|
6707
|
-
* @type {string}
|
|
6708
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions
|
|
6709
|
-
*/
|
|
6710
|
-
'dns_zone_domain'?: string;
|
|
6711
|
-
/**
|
|
6712
|
-
*
|
|
6713
|
-
* @type {Array<PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsCustomHostnamesInner>}
|
|
6714
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions
|
|
6715
|
-
*/
|
|
6716
|
-
'custom_hostnames': Array<PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsCustomHostnamesInner>;
|
|
6717
|
-
/**
|
|
6718
|
-
*
|
|
6719
|
-
* @type {{ [key: string]: string; }}
|
|
6720
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions
|
|
6721
|
-
*/
|
|
6722
|
-
'socials'?: {
|
|
6723
|
-
[key: string]: string;
|
|
6724
|
-
};
|
|
6725
|
-
/**
|
|
6726
|
-
*
|
|
6727
|
-
* @type {string}
|
|
6728
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions
|
|
6729
|
-
*/
|
|
6730
|
-
'description'?: string;
|
|
6731
|
-
/**
|
|
6732
|
-
*
|
|
6733
|
-
* @type {IImage}
|
|
6734
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions
|
|
6735
|
-
*/
|
|
6736
|
-
'logo'?: IImage;
|
|
6737
|
-
/**
|
|
6738
|
-
*
|
|
6739
|
-
* @type {TimezoneEnum}
|
|
6740
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions
|
|
6741
|
-
*/
|
|
6742
|
-
'timezone': TimezoneEnum;
|
|
6743
|
-
/**
|
|
6744
|
-
*
|
|
6745
|
-
* @type {Array<LanguageEnum>}
|
|
6746
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions
|
|
6747
|
-
*/
|
|
6748
|
-
'languages': Array<LanguageEnum>;
|
|
6749
|
-
/**
|
|
6750
|
-
*
|
|
6751
|
-
* @type {CurrencyEnum}
|
|
6752
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions
|
|
6753
|
-
*/
|
|
6754
|
-
'currency': CurrencyEnum;
|
|
6755
|
-
/**
|
|
6756
|
-
*
|
|
6757
|
-
* @type {RecordCurrencyEnumCurrency}
|
|
6758
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersions
|
|
6797
|
+
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
6759
6798
|
*/
|
|
6760
|
-
'
|
|
6799
|
+
'__v': number;
|
|
6761
6800
|
/**
|
|
6762
6801
|
*
|
|
6763
|
-
* @type {
|
|
6764
|
-
* @memberof
|
|
6802
|
+
* @type {string}
|
|
6803
|
+
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
6765
6804
|
*/
|
|
6766
|
-
'
|
|
6805
|
+
'createdAt': string;
|
|
6767
6806
|
/**
|
|
6768
6807
|
*
|
|
6769
|
-
* @type {
|
|
6770
|
-
* @memberof
|
|
6808
|
+
* @type {string}
|
|
6809
|
+
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
6771
6810
|
*/
|
|
6772
|
-
'
|
|
6773
|
-
[key: string]: PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsNavigationsValue;
|
|
6774
|
-
};
|
|
6811
|
+
'updatedAt': string;
|
|
6775
6812
|
/**
|
|
6776
6813
|
*
|
|
6777
|
-
* @type {
|
|
6778
|
-
* @memberof
|
|
6814
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
6815
|
+
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
6779
6816
|
*/
|
|
6780
|
-
'
|
|
6817
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
6781
6818
|
/**
|
|
6782
6819
|
*
|
|
6783
|
-
* @type {
|
|
6784
|
-
* @memberof
|
|
6820
|
+
* @type {IImage}
|
|
6821
|
+
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
6785
6822
|
*/
|
|
6786
|
-
'
|
|
6823
|
+
'thumbnail'?: IImage;
|
|
6824
|
+
}
|
|
6825
|
+
/**
|
|
6826
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
6827
|
+
* @export
|
|
6828
|
+
* @interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplate
|
|
6829
|
+
*/
|
|
6830
|
+
export interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplate {
|
|
6787
6831
|
/**
|
|
6788
6832
|
*
|
|
6789
6833
|
* @type {string}
|
|
6790
|
-
* @memberof
|
|
6834
|
+
* @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplate
|
|
6791
6835
|
*/
|
|
6792
|
-
'
|
|
6836
|
+
'company': string;
|
|
6793
6837
|
/**
|
|
6794
6838
|
*
|
|
6795
|
-
* @type {
|
|
6796
|
-
* @memberof
|
|
6839
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
6840
|
+
* @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplate
|
|
6797
6841
|
*/
|
|
6798
|
-
'
|
|
6842
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
6799
6843
|
/**
|
|
6800
6844
|
*
|
|
6801
|
-
* @type {
|
|
6802
|
-
* @memberof
|
|
6845
|
+
* @type {IImage}
|
|
6846
|
+
* @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplate
|
|
6803
6847
|
*/
|
|
6804
|
-
'
|
|
6848
|
+
'thumbnail'?: IImage;
|
|
6805
6849
|
}
|
|
6806
6850
|
/**
|
|
6807
|
-
*
|
|
6851
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
6808
6852
|
* @export
|
|
6809
|
-
* @interface
|
|
6853
|
+
* @interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6810
6854
|
*/
|
|
6811
|
-
export interface
|
|
6855
|
+
export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
6812
6856
|
/**
|
|
6813
6857
|
*
|
|
6814
6858
|
* @type {string}
|
|
6815
|
-
* @memberof
|
|
6859
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6816
6860
|
*/
|
|
6817
|
-
'
|
|
6861
|
+
'name': string;
|
|
6818
6862
|
/**
|
|
6819
6863
|
*
|
|
6820
6864
|
* @type {string}
|
|
6821
|
-
* @memberof
|
|
6865
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6822
6866
|
*/
|
|
6823
|
-
'
|
|
6867
|
+
'phone'?: string;
|
|
6824
6868
|
/**
|
|
6825
6869
|
*
|
|
6826
6870
|
* @type {string}
|
|
6827
|
-
* @memberof
|
|
6871
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6828
6872
|
*/
|
|
6829
|
-
'
|
|
6873
|
+
'email'?: string;
|
|
6830
6874
|
/**
|
|
6831
6875
|
*
|
|
6832
|
-
* @type {
|
|
6833
|
-
* @memberof
|
|
6876
|
+
* @type {LanguageEnum}
|
|
6877
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6834
6878
|
*/
|
|
6835
|
-
'
|
|
6836
|
-
}
|
|
6837
|
-
/**
|
|
6838
|
-
*
|
|
6839
|
-
* @export
|
|
6840
|
-
* @interface PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsCustomHostnamesInner
|
|
6841
|
-
*/
|
|
6842
|
-
export interface PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsCustomHostnamesInner {
|
|
6879
|
+
'language': LanguageEnum;
|
|
6843
6880
|
/**
|
|
6844
6881
|
*
|
|
6845
|
-
* @type {
|
|
6846
|
-
* @memberof
|
|
6882
|
+
* @type {CompanyStatusEnum}
|
|
6883
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6847
6884
|
*/
|
|
6848
|
-
'
|
|
6885
|
+
'status': CompanyStatusEnum;
|
|
6849
6886
|
/**
|
|
6850
6887
|
*
|
|
6851
6888
|
* @type {string}
|
|
6852
|
-
* @memberof
|
|
6889
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6853
6890
|
*/
|
|
6854
|
-
'
|
|
6891
|
+
'_id': string;
|
|
6855
6892
|
/**
|
|
6856
6893
|
*
|
|
6857
|
-
* @type {
|
|
6858
|
-
* @memberof
|
|
6894
|
+
* @type {number}
|
|
6895
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6859
6896
|
*/
|
|
6860
|
-
'
|
|
6897
|
+
'__v': number;
|
|
6861
6898
|
/**
|
|
6862
6899
|
*
|
|
6863
6900
|
* @type {string}
|
|
6864
|
-
* @memberof
|
|
6901
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6865
6902
|
*/
|
|
6866
|
-
'
|
|
6867
|
-
}
|
|
6868
|
-
/**
|
|
6869
|
-
*
|
|
6870
|
-
* @export
|
|
6871
|
-
* @interface PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsFirebaseLogin
|
|
6872
|
-
*/
|
|
6873
|
-
export interface PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsFirebaseLogin {
|
|
6903
|
+
'createdAt': string;
|
|
6874
6904
|
/**
|
|
6875
6905
|
*
|
|
6876
|
-
* @type {
|
|
6877
|
-
* @memberof
|
|
6906
|
+
* @type {string}
|
|
6907
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6878
6908
|
*/
|
|
6879
|
-
'
|
|
6909
|
+
'updatedAt': string;
|
|
6880
6910
|
/**
|
|
6881
6911
|
*
|
|
6882
|
-
* @type {
|
|
6883
|
-
* @memberof
|
|
6912
|
+
* @type {PlanTypeEnum}
|
|
6913
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6884
6914
|
*/
|
|
6885
|
-
'
|
|
6915
|
+
'plan': PlanTypeEnum;
|
|
6886
6916
|
/**
|
|
6887
6917
|
*
|
|
6888
|
-
* @type {
|
|
6889
|
-
* @memberof
|
|
6918
|
+
* @type {CompanyTypeEnum}
|
|
6919
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6890
6920
|
*/
|
|
6891
|
-
'
|
|
6892
|
-
}
|
|
6893
|
-
/**
|
|
6894
|
-
*
|
|
6895
|
-
* @export
|
|
6896
|
-
* @interface PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsFirebaseWebCredentials
|
|
6897
|
-
*/
|
|
6898
|
-
export interface PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsFirebaseWebCredentials {
|
|
6921
|
+
'type': CompanyTypeEnum;
|
|
6899
6922
|
/**
|
|
6900
6923
|
*
|
|
6901
6924
|
* @type {string}
|
|
6902
|
-
* @memberof
|
|
6925
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6903
6926
|
*/
|
|
6904
|
-
'
|
|
6927
|
+
'owner': string;
|
|
6905
6928
|
/**
|
|
6906
6929
|
*
|
|
6907
|
-
* @type {string}
|
|
6908
|
-
* @memberof
|
|
6930
|
+
* @type {Array<string>}
|
|
6931
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6909
6932
|
*/
|
|
6910
|
-
'
|
|
6933
|
+
'domains': Array<string>;
|
|
6911
6934
|
/**
|
|
6912
6935
|
*
|
|
6913
6936
|
* @type {string}
|
|
6914
|
-
* @memberof
|
|
6937
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6915
6938
|
*/
|
|
6916
|
-
'
|
|
6939
|
+
'dns_zone_id'?: string;
|
|
6917
6940
|
/**
|
|
6918
6941
|
*
|
|
6919
6942
|
* @type {string}
|
|
6920
|
-
* @memberof
|
|
6943
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6921
6944
|
*/
|
|
6922
|
-
'
|
|
6945
|
+
'dns_zone_domain'?: string;
|
|
6923
6946
|
/**
|
|
6924
6947
|
*
|
|
6925
|
-
* @type {string}
|
|
6926
|
-
* @memberof
|
|
6948
|
+
* @type {{ [key: string]: string; }}
|
|
6949
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6927
6950
|
*/
|
|
6928
|
-
'
|
|
6951
|
+
'socials'?: {
|
|
6952
|
+
[key: string]: string;
|
|
6953
|
+
};
|
|
6929
6954
|
/**
|
|
6930
6955
|
*
|
|
6931
6956
|
* @type {string}
|
|
6932
|
-
* @memberof
|
|
6957
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6933
6958
|
*/
|
|
6934
|
-
'
|
|
6959
|
+
'description'?: string;
|
|
6935
6960
|
/**
|
|
6936
6961
|
*
|
|
6937
|
-
* @type {
|
|
6938
|
-
* @memberof
|
|
6962
|
+
* @type {IImage}
|
|
6963
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6939
6964
|
*/
|
|
6940
|
-
'
|
|
6941
|
-
}
|
|
6942
|
-
/**
|
|
6943
|
-
*
|
|
6944
|
-
* @export
|
|
6945
|
-
* @interface PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsNavigationsValue
|
|
6946
|
-
*/
|
|
6947
|
-
export interface PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsNavigationsValue {
|
|
6965
|
+
'logo'?: IImage;
|
|
6948
6966
|
/**
|
|
6949
6967
|
*
|
|
6950
|
-
* @type {
|
|
6951
|
-
* @memberof
|
|
6968
|
+
* @type {TimezoneEnum}
|
|
6969
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6952
6970
|
*/
|
|
6953
|
-
'
|
|
6971
|
+
'timezone': TimezoneEnum;
|
|
6954
6972
|
/**
|
|
6955
6973
|
*
|
|
6956
|
-
* @type {Array<
|
|
6957
|
-
* @memberof
|
|
6974
|
+
* @type {Array<LanguageEnum>}
|
|
6975
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6958
6976
|
*/
|
|
6959
|
-
'
|
|
6960
|
-
}
|
|
6961
|
-
/**
|
|
6962
|
-
*
|
|
6963
|
-
* @export
|
|
6964
|
-
* @interface PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsSenderEmailDnsRecordsInner
|
|
6965
|
-
*/
|
|
6966
|
-
export interface PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsSenderEmailDnsRecordsInner {
|
|
6977
|
+
'languages': Array<LanguageEnum>;
|
|
6967
6978
|
/**
|
|
6968
6979
|
*
|
|
6969
|
-
* @type {
|
|
6970
|
-
* @memberof
|
|
6980
|
+
* @type {CurrencyEnum}
|
|
6981
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6971
6982
|
*/
|
|
6972
|
-
'
|
|
6983
|
+
'currency': CurrencyEnum;
|
|
6973
6984
|
/**
|
|
6974
6985
|
*
|
|
6975
|
-
* @type {
|
|
6976
|
-
* @memberof
|
|
6986
|
+
* @type {RecordCurrencyEnumCurrency}
|
|
6987
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6977
6988
|
*/
|
|
6978
|
-
'
|
|
6989
|
+
'currencies': RecordCurrencyEnumCurrency;
|
|
6990
|
+
/**
|
|
6991
|
+
*
|
|
6992
|
+
* @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysFirebaseLogin}
|
|
6993
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6994
|
+
*/
|
|
6995
|
+
'firebase_login': PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysFirebaseLogin;
|
|
6979
6996
|
/**
|
|
6980
6997
|
*
|
|
6981
6998
|
* @type {string}
|
|
6982
|
-
* @memberof
|
|
6999
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6983
7000
|
*/
|
|
6984
|
-
'
|
|
7001
|
+
'sender_email'?: string;
|
|
6985
7002
|
/**
|
|
6986
7003
|
*
|
|
6987
7004
|
* @type {string}
|
|
6988
|
-
* @memberof
|
|
7005
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
6989
7006
|
*/
|
|
6990
|
-
'
|
|
7007
|
+
'sender_name'?: string;
|
|
6991
7008
|
}
|
|
6992
7009
|
/**
|
|
6993
7010
|
*
|
|
6994
7011
|
* @export
|
|
6995
|
-
* @interface
|
|
7012
|
+
* @interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysFirebaseLogin
|
|
6996
7013
|
*/
|
|
6997
|
-
export interface
|
|
6998
|
-
/**
|
|
6999
|
-
*
|
|
7000
|
-
* @type {string}
|
|
7001
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsWarehousesInner
|
|
7002
|
-
*/
|
|
7003
|
-
'email'?: string;
|
|
7004
|
-
/**
|
|
7005
|
-
*
|
|
7006
|
-
* @type {string}
|
|
7007
|
-
* @memberof PickICompanyExcludeKeyofICompanyUsersOrMainOrFirebaseAdminCredentialsOrConfigOrRolesOrVersionsWarehousesInner
|
|
7008
|
-
*/
|
|
7009
|
-
'phone'?: string;
|
|
7014
|
+
export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysFirebaseLogin {
|
|
7010
7015
|
/**
|
|
7011
7016
|
*
|
|
7012
|
-
* @type {
|
|
7013
|
-
* @memberof
|
|
7017
|
+
* @type {boolean}
|
|
7018
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysFirebaseLogin
|
|
7014
7019
|
*/
|
|
7015
|
-
'
|
|
7020
|
+
'apple': boolean;
|
|
7016
7021
|
/**
|
|
7017
7022
|
*
|
|
7018
|
-
* @type {
|
|
7019
|
-
* @memberof
|
|
7023
|
+
* @type {boolean}
|
|
7024
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysFirebaseLogin
|
|
7020
7025
|
*/
|
|
7021
|
-
'
|
|
7026
|
+
'facebook': boolean;
|
|
7022
7027
|
/**
|
|
7023
7028
|
*
|
|
7024
|
-
* @type {
|
|
7025
|
-
* @memberof
|
|
7029
|
+
* @type {boolean}
|
|
7030
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysFirebaseLogin
|
|
7026
7031
|
*/
|
|
7027
|
-
'
|
|
7032
|
+
'google': boolean;
|
|
7028
7033
|
}
|
|
7029
7034
|
/**
|
|
7030
7035
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -7252,10 +7257,10 @@ export interface PickIPageExcludeKeyofIPageTemplate {
|
|
|
7252
7257
|
'type': PageTypeEnum;
|
|
7253
7258
|
/**
|
|
7254
7259
|
*
|
|
7255
|
-
* @type {
|
|
7260
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
7256
7261
|
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
7257
7262
|
*/
|
|
7258
|
-
'contents':
|
|
7263
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
7259
7264
|
/**
|
|
7260
7265
|
*
|
|
7261
7266
|
* @type {IImage}
|
|
@@ -7283,10 +7288,10 @@ export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrT
|
|
|
7283
7288
|
'type': PageTypeEnum;
|
|
7284
7289
|
/**
|
|
7285
7290
|
*
|
|
7286
|
-
* @type {
|
|
7291
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
7287
7292
|
* @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplate
|
|
7288
7293
|
*/
|
|
7289
|
-
'contents':
|
|
7294
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
7290
7295
|
/**
|
|
7291
7296
|
*
|
|
7292
7297
|
* @type {IImage}
|
|
@@ -7376,10 +7381,10 @@ export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplate {
|
|
|
7376
7381
|
'price_info': PriceType;
|
|
7377
7382
|
/**
|
|
7378
7383
|
*
|
|
7379
|
-
* @type {
|
|
7384
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
7380
7385
|
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplate
|
|
7381
7386
|
*/
|
|
7382
|
-
'contents':
|
|
7387
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
7383
7388
|
/**
|
|
7384
7389
|
*
|
|
7385
7390
|
* @type {{ [key: string]: IProductResponseVariantsValue; }}
|
|
@@ -7423,10 +7428,10 @@ export interface PickIProductIdOrContentsOrCollectionsOrCategory {
|
|
|
7423
7428
|
'collections': Array<string>;
|
|
7424
7429
|
/**
|
|
7425
7430
|
*
|
|
7426
|
-
* @type {
|
|
7431
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
7427
7432
|
* @memberof PickIProductIdOrContentsOrCollectionsOrCategory
|
|
7428
7433
|
*/
|
|
7429
|
-
'contents':
|
|
7434
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
7430
7435
|
}
|
|
7431
7436
|
/**
|
|
7432
7437
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -7486,10 +7491,10 @@ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPo
|
|
|
7486
7491
|
'price_info': PriceType;
|
|
7487
7492
|
/**
|
|
7488
7493
|
*
|
|
7489
|
-
* @type {
|
|
7494
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
7490
7495
|
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
|
|
7491
7496
|
*/
|
|
7492
|
-
'contents':
|
|
7497
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
7493
7498
|
/**
|
|
7494
7499
|
*
|
|
7495
7500
|
* @type {{ [key: string]: IProductResponseVariantsValue; }}
|
|
@@ -7891,31 +7896,6 @@ export interface RecordCurrencyEnumNumber {
|
|
|
7891
7896
|
*/
|
|
7892
7897
|
'jpy': number;
|
|
7893
7898
|
}
|
|
7894
|
-
/**
|
|
7895
|
-
* Construct a type with a set of properties K of type T
|
|
7896
|
-
* @export
|
|
7897
|
-
* @interface RecordLanguageEnumIContentsValue
|
|
7898
|
-
*/
|
|
7899
|
-
export interface RecordLanguageEnumIContentsValue {
|
|
7900
|
-
/**
|
|
7901
|
-
*
|
|
7902
|
-
* @type {IContentsValue}
|
|
7903
|
-
* @memberof RecordLanguageEnumIContentsValue
|
|
7904
|
-
*/
|
|
7905
|
-
'tr': IContentsValue;
|
|
7906
|
-
/**
|
|
7907
|
-
*
|
|
7908
|
-
* @type {IContentsValue}
|
|
7909
|
-
* @memberof RecordLanguageEnumIContentsValue
|
|
7910
|
-
*/
|
|
7911
|
-
'en': IContentsValue;
|
|
7912
|
-
/**
|
|
7913
|
-
*
|
|
7914
|
-
* @type {IContentsValue}
|
|
7915
|
-
* @memberof RecordLanguageEnumIContentsValue
|
|
7916
|
-
*/
|
|
7917
|
-
'de': IContentsValue;
|
|
7918
|
-
}
|
|
7919
7899
|
/**
|
|
7920
7900
|
* Construct a type with a set of properties K of type T
|
|
7921
7901
|
* @export
|
|
@@ -8843,11 +8823,11 @@ export declare const BrandApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
8843
8823
|
deleteBrand: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8844
8824
|
/**
|
|
8845
8825
|
*
|
|
8846
|
-
* @param {string}
|
|
8826
|
+
* @param {string} companyId
|
|
8847
8827
|
* @param {*} [options] Override http request option.
|
|
8848
8828
|
* @throws {RequiredError}
|
|
8849
8829
|
*/
|
|
8850
|
-
getAllBrands: (
|
|
8830
|
+
getAllBrands: (companyId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8851
8831
|
/**
|
|
8852
8832
|
*
|
|
8853
8833
|
* @param {string} id
|
|
@@ -8857,7 +8837,7 @@ export declare const BrandApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
8857
8837
|
getBrandById: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8858
8838
|
/**
|
|
8859
8839
|
*
|
|
8860
|
-
* @param {string}
|
|
8840
|
+
* @param {string} companyId
|
|
8861
8841
|
* @param {number} [page]
|
|
8862
8842
|
* @param {number} [itemsPerPage]
|
|
8863
8843
|
* @param {string} [search]
|
|
@@ -8870,7 +8850,7 @@ export declare const BrandApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
8870
8850
|
* @param {*} [options] Override http request option.
|
|
8871
8851
|
* @throws {RequiredError}
|
|
8872
8852
|
*/
|
|
8873
|
-
getBrands: (
|
|
8853
|
+
getBrands: (companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8874
8854
|
/**
|
|
8875
8855
|
*
|
|
8876
8856
|
* @param {string} id
|
|
@@ -8901,11 +8881,11 @@ export declare const BrandApiFp: (configuration?: Configuration) => {
|
|
|
8901
8881
|
deleteBrand(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8902
8882
|
/**
|
|
8903
8883
|
*
|
|
8904
|
-
* @param {string}
|
|
8884
|
+
* @param {string} companyId
|
|
8905
8885
|
* @param {*} [options] Override http request option.
|
|
8906
8886
|
* @throws {RequiredError}
|
|
8907
8887
|
*/
|
|
8908
|
-
getAllBrands(
|
|
8888
|
+
getAllBrands(companyId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IBrandsResponse>>;
|
|
8909
8889
|
/**
|
|
8910
8890
|
*
|
|
8911
8891
|
* @param {string} id
|
|
@@ -8915,7 +8895,7 @@ export declare const BrandApiFp: (configuration?: Configuration) => {
|
|
|
8915
8895
|
getBrandById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IBrandResponse>>;
|
|
8916
8896
|
/**
|
|
8917
8897
|
*
|
|
8918
|
-
* @param {string}
|
|
8898
|
+
* @param {string} companyId
|
|
8919
8899
|
* @param {number} [page]
|
|
8920
8900
|
* @param {number} [itemsPerPage]
|
|
8921
8901
|
* @param {string} [search]
|
|
@@ -8928,7 +8908,7 @@ export declare const BrandApiFp: (configuration?: Configuration) => {
|
|
|
8928
8908
|
* @param {*} [options] Override http request option.
|
|
8929
8909
|
* @throws {RequiredError}
|
|
8930
8910
|
*/
|
|
8931
|
-
getBrands(
|
|
8911
|
+
getBrands(companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IBrandsResponse>>;
|
|
8932
8912
|
/**
|
|
8933
8913
|
*
|
|
8934
8914
|
* @param {string} id
|
|
@@ -9023,7 +9003,7 @@ export interface BrandApiGetAllBrandsRequest {
|
|
|
9023
9003
|
* @type {string}
|
|
9024
9004
|
* @memberof BrandApiGetAllBrands
|
|
9025
9005
|
*/
|
|
9026
|
-
readonly
|
|
9006
|
+
readonly companyId: string;
|
|
9027
9007
|
}
|
|
9028
9008
|
/**
|
|
9029
9009
|
* Request parameters for getBrandById operation in BrandApi.
|
|
@@ -9049,7 +9029,7 @@ export interface BrandApiGetBrandsRequest {
|
|
|
9049
9029
|
* @type {string}
|
|
9050
9030
|
* @memberof BrandApiGetBrands
|
|
9051
9031
|
*/
|
|
9052
|
-
readonly
|
|
9032
|
+
readonly companyId: string;
|
|
9053
9033
|
/**
|
|
9054
9034
|
*
|
|
9055
9035
|
* @type {number}
|
|
@@ -9201,14 +9181,14 @@ export declare const CategoryApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9201
9181
|
deleteCategory: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9202
9182
|
/**
|
|
9203
9183
|
*
|
|
9204
|
-
* @param {string}
|
|
9184
|
+
* @param {string} companyId
|
|
9205
9185
|
* @param {*} [options] Override http request option.
|
|
9206
9186
|
* @throws {RequiredError}
|
|
9207
9187
|
*/
|
|
9208
|
-
getAllCategories: (
|
|
9188
|
+
getAllCategories: (companyId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9209
9189
|
/**
|
|
9210
9190
|
*
|
|
9211
|
-
* @param {string}
|
|
9191
|
+
* @param {string} companyId
|
|
9212
9192
|
* @param {number} [page]
|
|
9213
9193
|
* @param {number} [itemsPerPage]
|
|
9214
9194
|
* @param {string} [search]
|
|
@@ -9221,14 +9201,14 @@ export declare const CategoryApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9221
9201
|
* @param {*} [options] Override http request option.
|
|
9222
9202
|
* @throws {RequiredError}
|
|
9223
9203
|
*/
|
|
9224
|
-
getCategories: (
|
|
9204
|
+
getCategories: (companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9225
9205
|
/**
|
|
9226
9206
|
*
|
|
9227
|
-
* @param {string}
|
|
9207
|
+
* @param {string} companyId
|
|
9228
9208
|
* @param {*} [options] Override http request option.
|
|
9229
9209
|
* @throws {RequiredError}
|
|
9230
9210
|
*/
|
|
9231
|
-
getCategoryAttributes: (
|
|
9211
|
+
getCategoryAttributes: (companyId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9232
9212
|
/**
|
|
9233
9213
|
*
|
|
9234
9214
|
* @param {string} id
|
|
@@ -9266,14 +9246,14 @@ export declare const CategoryApiFp: (configuration?: Configuration) => {
|
|
|
9266
9246
|
deleteCategory(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
9267
9247
|
/**
|
|
9268
9248
|
*
|
|
9269
|
-
* @param {string}
|
|
9249
|
+
* @param {string} companyId
|
|
9270
9250
|
* @param {*} [options] Override http request option.
|
|
9271
9251
|
* @throws {RequiredError}
|
|
9272
9252
|
*/
|
|
9273
|
-
getAllCategories(
|
|
9253
|
+
getAllCategories(companyId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IAllCategoriesResponse>>;
|
|
9274
9254
|
/**
|
|
9275
9255
|
*
|
|
9276
|
-
* @param {string}
|
|
9256
|
+
* @param {string} companyId
|
|
9277
9257
|
* @param {number} [page]
|
|
9278
9258
|
* @param {number} [itemsPerPage]
|
|
9279
9259
|
* @param {string} [search]
|
|
@@ -9286,14 +9266,14 @@ export declare const CategoryApiFp: (configuration?: Configuration) => {
|
|
|
9286
9266
|
* @param {*} [options] Override http request option.
|
|
9287
9267
|
* @throws {RequiredError}
|
|
9288
9268
|
*/
|
|
9289
|
-
getCategories(
|
|
9269
|
+
getCategories(companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICategoriesResponse>>;
|
|
9290
9270
|
/**
|
|
9291
9271
|
*
|
|
9292
|
-
* @param {string}
|
|
9272
|
+
* @param {string} companyId
|
|
9293
9273
|
* @param {*} [options] Override http request option.
|
|
9294
9274
|
* @throws {RequiredError}
|
|
9295
9275
|
*/
|
|
9296
|
-
getCategoryAttributes(
|
|
9276
|
+
getCategoryAttributes(companyId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ICategoryAttributesResponse>>>;
|
|
9297
9277
|
/**
|
|
9298
9278
|
*
|
|
9299
9279
|
* @param {string} id
|
|
@@ -9402,7 +9382,7 @@ export interface CategoryApiGetAllCategoriesRequest {
|
|
|
9402
9382
|
* @type {string}
|
|
9403
9383
|
* @memberof CategoryApiGetAllCategories
|
|
9404
9384
|
*/
|
|
9405
|
-
readonly
|
|
9385
|
+
readonly companyId: string;
|
|
9406
9386
|
}
|
|
9407
9387
|
/**
|
|
9408
9388
|
* Request parameters for getCategories operation in CategoryApi.
|
|
@@ -9415,7 +9395,7 @@ export interface CategoryApiGetCategoriesRequest {
|
|
|
9415
9395
|
* @type {string}
|
|
9416
9396
|
* @memberof CategoryApiGetCategories
|
|
9417
9397
|
*/
|
|
9418
|
-
readonly
|
|
9398
|
+
readonly companyId: string;
|
|
9419
9399
|
/**
|
|
9420
9400
|
*
|
|
9421
9401
|
* @type {number}
|
|
@@ -9482,7 +9462,7 @@ export interface CategoryApiGetCategoryAttributesRequest {
|
|
|
9482
9462
|
* @type {string}
|
|
9483
9463
|
* @memberof CategoryApiGetCategoryAttributes
|
|
9484
9464
|
*/
|
|
9485
|
-
readonly
|
|
9465
|
+
readonly companyId: string;
|
|
9486
9466
|
}
|
|
9487
9467
|
/**
|
|
9488
9468
|
* Request parameters for getCategoryById operation in CategoryApi.
|
|
@@ -11181,7 +11161,7 @@ export declare const FileApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
11181
11161
|
getFileById: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11182
11162
|
/**
|
|
11183
11163
|
*
|
|
11184
|
-
* @param {string}
|
|
11164
|
+
* @param {string} companyId
|
|
11185
11165
|
* @param {number} [page]
|
|
11186
11166
|
* @param {number} [itemsPerPage]
|
|
11187
11167
|
* @param {string} [search]
|
|
@@ -11196,7 +11176,7 @@ export declare const FileApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
11196
11176
|
* @param {*} [options] Override http request option.
|
|
11197
11177
|
* @throws {RequiredError}
|
|
11198
11178
|
*/
|
|
11199
|
-
getFiles: (
|
|
11179
|
+
getFiles: (companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, keywords?: Array<FileKeywordEnum>, type?: FileTypeEnum, status?: FileStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11200
11180
|
/**
|
|
11201
11181
|
*
|
|
11202
11182
|
* @param {string} id
|
|
@@ -11236,7 +11216,7 @@ export declare const FileApiFp: (configuration?: Configuration) => {
|
|
|
11236
11216
|
getFileById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IFileResponse>>;
|
|
11237
11217
|
/**
|
|
11238
11218
|
*
|
|
11239
|
-
* @param {string}
|
|
11219
|
+
* @param {string} companyId
|
|
11240
11220
|
* @param {number} [page]
|
|
11241
11221
|
* @param {number} [itemsPerPage]
|
|
11242
11222
|
* @param {string} [search]
|
|
@@ -11251,7 +11231,7 @@ export declare const FileApiFp: (configuration?: Configuration) => {
|
|
|
11251
11231
|
* @param {*} [options] Override http request option.
|
|
11252
11232
|
* @throws {RequiredError}
|
|
11253
11233
|
*/
|
|
11254
|
-
getFiles(
|
|
11234
|
+
getFiles(companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, keywords?: Array<FileKeywordEnum>, type?: FileTypeEnum, status?: FileStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IFilesResponse>>;
|
|
11255
11235
|
/**
|
|
11256
11236
|
*
|
|
11257
11237
|
* @param {string} id
|
|
@@ -11348,7 +11328,7 @@ export interface FileApiGetFilesRequest {
|
|
|
11348
11328
|
* @type {string}
|
|
11349
11329
|
* @memberof FileApiGetFiles
|
|
11350
11330
|
*/
|
|
11351
|
-
readonly
|
|
11331
|
+
readonly companyId: string;
|
|
11352
11332
|
/**
|
|
11353
11333
|
*
|
|
11354
11334
|
* @type {number}
|
|
@@ -11538,12 +11518,12 @@ export declare const NotificationApiAxiosParamCreator: (configuration?: Configur
|
|
|
11538
11518
|
* @param {OrderEnum} [order]
|
|
11539
11519
|
* @param {string} [sort]
|
|
11540
11520
|
* @param {string} [user]
|
|
11541
|
-
* @param {string} [
|
|
11521
|
+
* @param {string} [companyId]
|
|
11542
11522
|
* @param {NotificationStatusEnum} [status]
|
|
11543
11523
|
* @param {*} [options] Override http request option.
|
|
11544
11524
|
* @throws {RequiredError}
|
|
11545
11525
|
*/
|
|
11546
|
-
getNotifications: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, user?: string,
|
|
11526
|
+
getNotifications: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, user?: string, companyId?: string, status?: NotificationStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11547
11527
|
/**
|
|
11548
11528
|
*
|
|
11549
11529
|
* @param {*} [options] Override http request option.
|
|
@@ -11588,12 +11568,12 @@ export declare const NotificationApiFp: (configuration?: Configuration) => {
|
|
|
11588
11568
|
* @param {OrderEnum} [order]
|
|
11589
11569
|
* @param {string} [sort]
|
|
11590
11570
|
* @param {string} [user]
|
|
11591
|
-
* @param {string} [
|
|
11571
|
+
* @param {string} [companyId]
|
|
11592
11572
|
* @param {NotificationStatusEnum} [status]
|
|
11593
11573
|
* @param {*} [options] Override http request option.
|
|
11594
11574
|
* @throws {RequiredError}
|
|
11595
11575
|
*/
|
|
11596
|
-
getNotifications(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, user?: string,
|
|
11576
|
+
getNotifications(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, user?: string, companyId?: string, status?: NotificationStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<INotificationsResponse>>;
|
|
11597
11577
|
/**
|
|
11598
11578
|
*
|
|
11599
11579
|
* @param {*} [options] Override http request option.
|
|
@@ -11739,7 +11719,7 @@ export interface NotificationApiGetNotificationsRequest {
|
|
|
11739
11719
|
* @type {string}
|
|
11740
11720
|
* @memberof NotificationApiGetNotifications
|
|
11741
11721
|
*/
|
|
11742
|
-
readonly
|
|
11722
|
+
readonly companyId?: string;
|
|
11743
11723
|
/**
|
|
11744
11724
|
*
|
|
11745
11725
|
* @type {NotificationStatusEnum}
|
|
@@ -12194,13 +12174,13 @@ export declare const PageApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
12194
12174
|
deletePage: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12195
12175
|
/**
|
|
12196
12176
|
*
|
|
12197
|
-
* @param {string} [
|
|
12177
|
+
* @param {string} [companyId]
|
|
12198
12178
|
* @param {string} [domain]
|
|
12199
12179
|
* @param {Array<PageTypeEnum>} [type]
|
|
12200
12180
|
* @param {*} [options] Override http request option.
|
|
12201
12181
|
* @throws {RequiredError}
|
|
12202
12182
|
*/
|
|
12203
|
-
getAllPages: (
|
|
12183
|
+
getAllPages: (companyId?: string, domain?: string, type?: Array<PageTypeEnum>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12204
12184
|
/**
|
|
12205
12185
|
*
|
|
12206
12186
|
* @param {string} id
|
|
@@ -12211,21 +12191,21 @@ export declare const PageApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
12211
12191
|
/**
|
|
12212
12192
|
*
|
|
12213
12193
|
* @param {string} slug
|
|
12214
|
-
* @param {string} [
|
|
12194
|
+
* @param {string} [companyId]
|
|
12215
12195
|
* @param {string} [domain]
|
|
12216
12196
|
* @param {*} [options] Override http request option.
|
|
12217
12197
|
* @throws {RequiredError}
|
|
12218
12198
|
*/
|
|
12219
|
-
getPageBySlug: (slug: string,
|
|
12199
|
+
getPageBySlug: (slug: string, companyId?: string, domain?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12220
12200
|
/**
|
|
12221
12201
|
*
|
|
12222
12202
|
* @param {string} type
|
|
12223
|
-
* @param {string} [
|
|
12203
|
+
* @param {string} [companyId]
|
|
12224
12204
|
* @param {string} [domain]
|
|
12225
12205
|
* @param {*} [options] Override http request option.
|
|
12226
12206
|
* @throws {RequiredError}
|
|
12227
12207
|
*/
|
|
12228
|
-
getPageByType: (type: string,
|
|
12208
|
+
getPageByType: (type: string, companyId?: string, domain?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12229
12209
|
/**
|
|
12230
12210
|
*
|
|
12231
12211
|
* @param {number} [page]
|
|
@@ -12236,21 +12216,21 @@ export declare const PageApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
12236
12216
|
* @param {string} [dateField]
|
|
12237
12217
|
* @param {OrderEnum} [order]
|
|
12238
12218
|
* @param {string} [sort]
|
|
12239
|
-
* @param {string} [
|
|
12219
|
+
* @param {string} [companyId]
|
|
12240
12220
|
* @param {string} [domain]
|
|
12241
12221
|
* @param {PageTypeEnum} [type]
|
|
12242
12222
|
* @param {ContentStatusEnum} [status]
|
|
12243
12223
|
* @param {*} [options] Override http request option.
|
|
12244
12224
|
* @throws {RequiredError}
|
|
12245
12225
|
*/
|
|
12246
|
-
getPages: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string,
|
|
12226
|
+
getPages: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, type?: PageTypeEnum, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12247
12227
|
/**
|
|
12248
12228
|
*
|
|
12249
|
-
* @param {string}
|
|
12229
|
+
* @param {string} companyId
|
|
12250
12230
|
* @param {*} [options] Override http request option.
|
|
12251
12231
|
* @throws {RequiredError}
|
|
12252
12232
|
*/
|
|
12253
|
-
getUniquePages: (
|
|
12233
|
+
getUniquePages: (companyId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12254
12234
|
/**
|
|
12255
12235
|
*
|
|
12256
12236
|
* @param {string} id
|
|
@@ -12281,13 +12261,13 @@ export declare const PageApiFp: (configuration?: Configuration) => {
|
|
|
12281
12261
|
deletePage(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12282
12262
|
/**
|
|
12283
12263
|
*
|
|
12284
|
-
* @param {string} [
|
|
12264
|
+
* @param {string} [companyId]
|
|
12285
12265
|
* @param {string} [domain]
|
|
12286
12266
|
* @param {Array<PageTypeEnum>} [type]
|
|
12287
12267
|
* @param {*} [options] Override http request option.
|
|
12288
12268
|
* @throws {RequiredError}
|
|
12289
12269
|
*/
|
|
12290
|
-
getAllPages(
|
|
12270
|
+
getAllPages(companyId?: string, domain?: string, type?: Array<PageTypeEnum>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IPagesResponse>>;
|
|
12291
12271
|
/**
|
|
12292
12272
|
*
|
|
12293
12273
|
* @param {string} id
|
|
@@ -12298,21 +12278,21 @@ export declare const PageApiFp: (configuration?: Configuration) => {
|
|
|
12298
12278
|
/**
|
|
12299
12279
|
*
|
|
12300
12280
|
* @param {string} slug
|
|
12301
|
-
* @param {string} [
|
|
12281
|
+
* @param {string} [companyId]
|
|
12302
12282
|
* @param {string} [domain]
|
|
12303
12283
|
* @param {*} [options] Override http request option.
|
|
12304
12284
|
* @throws {RequiredError}
|
|
12305
12285
|
*/
|
|
12306
|
-
getPageBySlug(slug: string,
|
|
12286
|
+
getPageBySlug(slug: string, companyId?: string, domain?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IPageResponse>>;
|
|
12307
12287
|
/**
|
|
12308
12288
|
*
|
|
12309
12289
|
* @param {string} type
|
|
12310
|
-
* @param {string} [
|
|
12290
|
+
* @param {string} [companyId]
|
|
12311
12291
|
* @param {string} [domain]
|
|
12312
12292
|
* @param {*} [options] Override http request option.
|
|
12313
12293
|
* @throws {RequiredError}
|
|
12314
12294
|
*/
|
|
12315
|
-
getPageByType(type: string,
|
|
12295
|
+
getPageByType(type: string, companyId?: string, domain?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IPageResponse>>;
|
|
12316
12296
|
/**
|
|
12317
12297
|
*
|
|
12318
12298
|
* @param {number} [page]
|
|
@@ -12323,21 +12303,21 @@ export declare const PageApiFp: (configuration?: Configuration) => {
|
|
|
12323
12303
|
* @param {string} [dateField]
|
|
12324
12304
|
* @param {OrderEnum} [order]
|
|
12325
12305
|
* @param {string} [sort]
|
|
12326
|
-
* @param {string} [
|
|
12306
|
+
* @param {string} [companyId]
|
|
12327
12307
|
* @param {string} [domain]
|
|
12328
12308
|
* @param {PageTypeEnum} [type]
|
|
12329
12309
|
* @param {ContentStatusEnum} [status]
|
|
12330
12310
|
* @param {*} [options] Override http request option.
|
|
12331
12311
|
* @throws {RequiredError}
|
|
12332
12312
|
*/
|
|
12333
|
-
getPages(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string,
|
|
12313
|
+
getPages(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, type?: PageTypeEnum, status?: ContentStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IPagesResponse>>;
|
|
12334
12314
|
/**
|
|
12335
12315
|
*
|
|
12336
|
-
* @param {string}
|
|
12316
|
+
* @param {string} companyId
|
|
12337
12317
|
* @param {*} [options] Override http request option.
|
|
12338
12318
|
* @throws {RequiredError}
|
|
12339
12319
|
*/
|
|
12340
|
-
getUniquePages(
|
|
12320
|
+
getUniquePages(companyId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IPagesResponse>>;
|
|
12341
12321
|
/**
|
|
12342
12322
|
*
|
|
12343
12323
|
* @param {string} id
|
|
@@ -12453,7 +12433,7 @@ export interface PageApiGetAllPagesRequest {
|
|
|
12453
12433
|
* @type {string}
|
|
12454
12434
|
* @memberof PageApiGetAllPages
|
|
12455
12435
|
*/
|
|
12456
|
-
readonly
|
|
12436
|
+
readonly companyId?: string;
|
|
12457
12437
|
/**
|
|
12458
12438
|
*
|
|
12459
12439
|
* @type {string}
|
|
@@ -12497,7 +12477,7 @@ export interface PageApiGetPageBySlugRequest {
|
|
|
12497
12477
|
* @type {string}
|
|
12498
12478
|
* @memberof PageApiGetPageBySlug
|
|
12499
12479
|
*/
|
|
12500
|
-
readonly
|
|
12480
|
+
readonly companyId?: string;
|
|
12501
12481
|
/**
|
|
12502
12482
|
*
|
|
12503
12483
|
* @type {string}
|
|
@@ -12522,7 +12502,7 @@ export interface PageApiGetPageByTypeRequest {
|
|
|
12522
12502
|
* @type {string}
|
|
12523
12503
|
* @memberof PageApiGetPageByType
|
|
12524
12504
|
*/
|
|
12525
|
-
readonly
|
|
12505
|
+
readonly companyId?: string;
|
|
12526
12506
|
/**
|
|
12527
12507
|
*
|
|
12528
12508
|
* @type {string}
|
|
@@ -12589,7 +12569,7 @@ export interface PageApiGetPagesRequest {
|
|
|
12589
12569
|
* @type {string}
|
|
12590
12570
|
* @memberof PageApiGetPages
|
|
12591
12571
|
*/
|
|
12592
|
-
readonly
|
|
12572
|
+
readonly companyId?: string;
|
|
12593
12573
|
/**
|
|
12594
12574
|
*
|
|
12595
12575
|
* @type {string}
|
|
@@ -12620,7 +12600,7 @@ export interface PageApiGetUniquePagesRequest {
|
|
|
12620
12600
|
* @type {string}
|
|
12621
12601
|
* @memberof PageApiGetUniquePages
|
|
12622
12602
|
*/
|
|
12623
|
-
readonly
|
|
12603
|
+
readonly companyId: string;
|
|
12624
12604
|
}
|
|
12625
12605
|
/**
|
|
12626
12606
|
* Request parameters for updatePage operation in PageApi.
|
|
@@ -13058,20 +13038,20 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
|
|
|
13058
13038
|
deleteProduct: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13059
13039
|
/**
|
|
13060
13040
|
*
|
|
13061
|
-
* @param {string}
|
|
13041
|
+
* @param {string} companyId
|
|
13062
13042
|
* @param {string} [search]
|
|
13063
13043
|
* @param {string} [template]
|
|
13064
13044
|
* @param {*} [options] Override http request option.
|
|
13065
13045
|
* @throws {RequiredError}
|
|
13066
13046
|
*/
|
|
13067
|
-
getAllProducts: (
|
|
13047
|
+
getAllProducts: (companyId: string, search?: string, template?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13068
13048
|
/**
|
|
13069
13049
|
*
|
|
13070
|
-
* @param {string}
|
|
13050
|
+
* @param {string} companyId
|
|
13071
13051
|
* @param {*} [options] Override http request option.
|
|
13072
13052
|
* @throws {RequiredError}
|
|
13073
13053
|
*/
|
|
13074
|
-
getFirstProduct: (
|
|
13054
|
+
getFirstProduct: (companyId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13075
13055
|
/**
|
|
13076
13056
|
*
|
|
13077
13057
|
* @param {string} id
|
|
@@ -13082,11 +13062,12 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
|
|
|
13082
13062
|
/**
|
|
13083
13063
|
*
|
|
13084
13064
|
* @param {string} slug
|
|
13085
|
-
* @param {string}
|
|
13065
|
+
* @param {string} [companyId]
|
|
13066
|
+
* @param {string} [domain]
|
|
13086
13067
|
* @param {*} [options] Override http request option.
|
|
13087
13068
|
* @throws {RequiredError}
|
|
13088
13069
|
*/
|
|
13089
|
-
getProductBySlug: (slug: string, domain
|
|
13070
|
+
getProductBySlug: (slug: string, companyId?: string, domain?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13090
13071
|
/**
|
|
13091
13072
|
*
|
|
13092
13073
|
* @param {number} [page]
|
|
@@ -13097,7 +13078,8 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
|
|
|
13097
13078
|
* @param {string} [dateField]
|
|
13098
13079
|
* @param {OrderEnum} [order]
|
|
13099
13080
|
* @param {string} [sort]
|
|
13100
|
-
* @param {string} [
|
|
13081
|
+
* @param {string} [companyId]
|
|
13082
|
+
* @param {string} [domain]
|
|
13101
13083
|
* @param {string} [collections]
|
|
13102
13084
|
* @param {string} [category]
|
|
13103
13085
|
* @param {string} [brand]
|
|
@@ -13105,15 +13087,16 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
|
|
|
13105
13087
|
* @param {*} [options] Override http request option.
|
|
13106
13088
|
* @throws {RequiredError}
|
|
13107
13089
|
*/
|
|
13108
|
-
getProducts: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string,
|
|
13090
|
+
getProducts: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, collections?: string, category?: string, brand?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13109
13091
|
/**
|
|
13110
13092
|
*
|
|
13111
|
-
* @param {string} company
|
|
13112
13093
|
* @param {string} search
|
|
13094
|
+
* @param {string} [companyId]
|
|
13095
|
+
* @param {string} [domain]
|
|
13113
13096
|
* @param {*} [options] Override http request option.
|
|
13114
13097
|
* @throws {RequiredError}
|
|
13115
13098
|
*/
|
|
13116
|
-
searchProducts: (
|
|
13099
|
+
searchProducts: (search: string, companyId?: string, domain?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13117
13100
|
/**
|
|
13118
13101
|
*
|
|
13119
13102
|
* @param {string} id
|
|
@@ -13144,20 +13127,20 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
|
|
|
13144
13127
|
deleteProduct(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
13145
13128
|
/**
|
|
13146
13129
|
*
|
|
13147
|
-
* @param {string}
|
|
13130
|
+
* @param {string} companyId
|
|
13148
13131
|
* @param {string} [search]
|
|
13149
13132
|
* @param {string} [template]
|
|
13150
13133
|
* @param {*} [options] Override http request option.
|
|
13151
13134
|
* @throws {RequiredError}
|
|
13152
13135
|
*/
|
|
13153
|
-
getAllProducts(
|
|
13136
|
+
getAllProducts(companyId: string, search?: string, template?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IAllProductsResponse>>;
|
|
13154
13137
|
/**
|
|
13155
13138
|
*
|
|
13156
|
-
* @param {string}
|
|
13139
|
+
* @param {string} companyId
|
|
13157
13140
|
* @param {*} [options] Override http request option.
|
|
13158
13141
|
* @throws {RequiredError}
|
|
13159
13142
|
*/
|
|
13160
|
-
getFirstProduct(
|
|
13143
|
+
getFirstProduct(companyId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IProductResponse>>;
|
|
13161
13144
|
/**
|
|
13162
13145
|
*
|
|
13163
13146
|
* @param {string} id
|
|
@@ -13168,11 +13151,12 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
|
|
|
13168
13151
|
/**
|
|
13169
13152
|
*
|
|
13170
13153
|
* @param {string} slug
|
|
13171
|
-
* @param {string}
|
|
13154
|
+
* @param {string} [companyId]
|
|
13155
|
+
* @param {string} [domain]
|
|
13172
13156
|
* @param {*} [options] Override http request option.
|
|
13173
13157
|
* @throws {RequiredError}
|
|
13174
13158
|
*/
|
|
13175
|
-
getProductBySlug(slug: string, domain
|
|
13159
|
+
getProductBySlug(slug: string, companyId?: string, domain?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IProductResponse>>;
|
|
13176
13160
|
/**
|
|
13177
13161
|
*
|
|
13178
13162
|
* @param {number} [page]
|
|
@@ -13183,7 +13167,8 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
|
|
|
13183
13167
|
* @param {string} [dateField]
|
|
13184
13168
|
* @param {OrderEnum} [order]
|
|
13185
13169
|
* @param {string} [sort]
|
|
13186
|
-
* @param {string} [
|
|
13170
|
+
* @param {string} [companyId]
|
|
13171
|
+
* @param {string} [domain]
|
|
13187
13172
|
* @param {string} [collections]
|
|
13188
13173
|
* @param {string} [category]
|
|
13189
13174
|
* @param {string} [brand]
|
|
@@ -13191,15 +13176,16 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
|
|
|
13191
13176
|
* @param {*} [options] Override http request option.
|
|
13192
13177
|
* @throws {RequiredError}
|
|
13193
13178
|
*/
|
|
13194
|
-
getProducts(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string,
|
|
13179
|
+
getProducts(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, collections?: string, category?: string, brand?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IProductsResponse>>;
|
|
13195
13180
|
/**
|
|
13196
13181
|
*
|
|
13197
|
-
* @param {string} company
|
|
13198
13182
|
* @param {string} search
|
|
13183
|
+
* @param {string} [companyId]
|
|
13184
|
+
* @param {string} [domain]
|
|
13199
13185
|
* @param {*} [options] Override http request option.
|
|
13200
13186
|
* @throws {RequiredError}
|
|
13201
13187
|
*/
|
|
13202
|
-
searchProducts(
|
|
13188
|
+
searchProducts(search: string, companyId?: string, domain?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ISearchProductsResponse>>;
|
|
13203
13189
|
/**
|
|
13204
13190
|
*
|
|
13205
13191
|
* @param {string} id
|
|
@@ -13315,7 +13301,7 @@ export interface ProductApiGetAllProductsRequest {
|
|
|
13315
13301
|
* @type {string}
|
|
13316
13302
|
* @memberof ProductApiGetAllProducts
|
|
13317
13303
|
*/
|
|
13318
|
-
readonly
|
|
13304
|
+
readonly companyId: string;
|
|
13319
13305
|
/**
|
|
13320
13306
|
*
|
|
13321
13307
|
* @type {string}
|
|
@@ -13340,7 +13326,7 @@ export interface ProductApiGetFirstProductRequest {
|
|
|
13340
13326
|
* @type {string}
|
|
13341
13327
|
* @memberof ProductApiGetFirstProduct
|
|
13342
13328
|
*/
|
|
13343
|
-
readonly
|
|
13329
|
+
readonly companyId: string;
|
|
13344
13330
|
}
|
|
13345
13331
|
/**
|
|
13346
13332
|
* Request parameters for getProductById operation in ProductApi.
|
|
@@ -13372,7 +13358,13 @@ export interface ProductApiGetProductBySlugRequest {
|
|
|
13372
13358
|
* @type {string}
|
|
13373
13359
|
* @memberof ProductApiGetProductBySlug
|
|
13374
13360
|
*/
|
|
13375
|
-
readonly
|
|
13361
|
+
readonly companyId?: string;
|
|
13362
|
+
/**
|
|
13363
|
+
*
|
|
13364
|
+
* @type {string}
|
|
13365
|
+
* @memberof ProductApiGetProductBySlug
|
|
13366
|
+
*/
|
|
13367
|
+
readonly domain?: string;
|
|
13376
13368
|
}
|
|
13377
13369
|
/**
|
|
13378
13370
|
* Request parameters for getProducts operation in ProductApi.
|
|
@@ -13433,7 +13425,13 @@ export interface ProductApiGetProductsRequest {
|
|
|
13433
13425
|
* @type {string}
|
|
13434
13426
|
* @memberof ProductApiGetProducts
|
|
13435
13427
|
*/
|
|
13436
|
-
readonly
|
|
13428
|
+
readonly companyId?: string;
|
|
13429
|
+
/**
|
|
13430
|
+
*
|
|
13431
|
+
* @type {string}
|
|
13432
|
+
* @memberof ProductApiGetProducts
|
|
13433
|
+
*/
|
|
13434
|
+
readonly domain?: string;
|
|
13437
13435
|
/**
|
|
13438
13436
|
*
|
|
13439
13437
|
* @type {string}
|
|
@@ -13470,13 +13468,19 @@ export interface ProductApiSearchProductsRequest {
|
|
|
13470
13468
|
* @type {string}
|
|
13471
13469
|
* @memberof ProductApiSearchProducts
|
|
13472
13470
|
*/
|
|
13473
|
-
readonly
|
|
13471
|
+
readonly search: string;
|
|
13474
13472
|
/**
|
|
13475
13473
|
*
|
|
13476
13474
|
* @type {string}
|
|
13477
13475
|
* @memberof ProductApiSearchProducts
|
|
13478
13476
|
*/
|
|
13479
|
-
readonly
|
|
13477
|
+
readonly companyId?: string;
|
|
13478
|
+
/**
|
|
13479
|
+
*
|
|
13480
|
+
* @type {string}
|
|
13481
|
+
* @memberof ProductApiSearchProducts
|
|
13482
|
+
*/
|
|
13483
|
+
readonly domain?: string;
|
|
13480
13484
|
}
|
|
13481
13485
|
/**
|
|
13482
13486
|
* Request parameters for updateProduct operation in ProductApi.
|
|
@@ -13598,13 +13602,13 @@ export declare const TemplateApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13598
13602
|
getTemplateById: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13599
13603
|
/**
|
|
13600
13604
|
*
|
|
13601
|
-
* @param {string}
|
|
13605
|
+
* @param {string} companyId
|
|
13602
13606
|
* @param {TemplateTypeEnum} [type]
|
|
13603
13607
|
* @param {string} [search]
|
|
13604
13608
|
* @param {*} [options] Override http request option.
|
|
13605
13609
|
* @throws {RequiredError}
|
|
13606
13610
|
*/
|
|
13607
|
-
getTemplates: (
|
|
13611
|
+
getTemplates: (companyId: string, type?: TemplateTypeEnum, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13608
13612
|
/**
|
|
13609
13613
|
*
|
|
13610
13614
|
* @param {string} id
|
|
@@ -13635,13 +13639,13 @@ export declare const TemplateApiFp: (configuration?: Configuration) => {
|
|
|
13635
13639
|
getTemplateById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ITemplateResponse>>;
|
|
13636
13640
|
/**
|
|
13637
13641
|
*
|
|
13638
|
-
* @param {string}
|
|
13642
|
+
* @param {string} companyId
|
|
13639
13643
|
* @param {TemplateTypeEnum} [type]
|
|
13640
13644
|
* @param {string} [search]
|
|
13641
13645
|
* @param {*} [options] Override http request option.
|
|
13642
13646
|
* @throws {RequiredError}
|
|
13643
13647
|
*/
|
|
13644
|
-
getTemplates(
|
|
13648
|
+
getTemplates(companyId: string, type?: TemplateTypeEnum, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ITemplatesResponse>>;
|
|
13645
13649
|
/**
|
|
13646
13650
|
*
|
|
13647
13651
|
* @param {string} id
|
|
@@ -13722,7 +13726,7 @@ export interface TemplateApiGetTemplatesRequest {
|
|
|
13722
13726
|
* @type {string}
|
|
13723
13727
|
* @memberof TemplateApiGetTemplates
|
|
13724
13728
|
*/
|
|
13725
|
-
readonly
|
|
13729
|
+
readonly companyId: string;
|
|
13726
13730
|
/**
|
|
13727
13731
|
*
|
|
13728
13732
|
* @type {TemplateTypeEnum}
|