@infisale-client/api-client 1.1.10 → 1.1.18
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 +469 -211
- package/dist/api/api.js +8 -23
- package/dist/api/api.mjs +6 -21
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -734,10 +734,10 @@ export interface IBrandCollectionQueryParams {
|
|
|
734
734
|
'page'?: number;
|
|
735
735
|
/**
|
|
736
736
|
*
|
|
737
|
-
* @type {
|
|
737
|
+
* @type {number}
|
|
738
738
|
* @memberof IBrandCollectionQueryParams
|
|
739
739
|
*/
|
|
740
|
-
'itemsPerPage'?:
|
|
740
|
+
'itemsPerPage'?: number;
|
|
741
741
|
/**
|
|
742
742
|
*
|
|
743
743
|
* @type {string}
|
|
@@ -1020,10 +1020,10 @@ export interface ICategoryCollectionQueryParams {
|
|
|
1020
1020
|
'page'?: number;
|
|
1021
1021
|
/**
|
|
1022
1022
|
*
|
|
1023
|
-
* @type {
|
|
1023
|
+
* @type {number}
|
|
1024
1024
|
* @memberof ICategoryCollectionQueryParams
|
|
1025
1025
|
*/
|
|
1026
|
-
'itemsPerPage'?:
|
|
1026
|
+
'itemsPerPage'?: number;
|
|
1027
1027
|
/**
|
|
1028
1028
|
*
|
|
1029
1029
|
* @type {string}
|
|
@@ -1381,10 +1381,10 @@ export interface ICollectionCollectionsQueryParams {
|
|
|
1381
1381
|
'page'?: number;
|
|
1382
1382
|
/**
|
|
1383
1383
|
*
|
|
1384
|
-
* @type {
|
|
1384
|
+
* @type {number}
|
|
1385
1385
|
* @memberof ICollectionCollectionsQueryParams
|
|
1386
1386
|
*/
|
|
1387
|
-
'itemsPerPage'?:
|
|
1387
|
+
'itemsPerPage'?: number;
|
|
1388
1388
|
/**
|
|
1389
1389
|
*
|
|
1390
1390
|
* @type {string}
|
|
@@ -1717,17 +1717,17 @@ export interface ICompany {
|
|
|
1717
1717
|
'custom_hostnames': Array<ICompanyResponseCustomHostnamesInner>;
|
|
1718
1718
|
/**
|
|
1719
1719
|
*
|
|
1720
|
-
* @type {Array<
|
|
1720
|
+
* @type {Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner>}
|
|
1721
1721
|
* @memberof ICompany
|
|
1722
1722
|
*/
|
|
1723
|
-
'users': Array<
|
|
1723
|
+
'users': Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner>;
|
|
1724
1724
|
/**
|
|
1725
1725
|
*
|
|
1726
|
-
* @type {{ [key: string]:
|
|
1726
|
+
* @type {{ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue; }}
|
|
1727
1727
|
* @memberof ICompany
|
|
1728
1728
|
*/
|
|
1729
1729
|
'roles': {
|
|
1730
|
-
[key: string]:
|
|
1730
|
+
[key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue;
|
|
1731
1731
|
};
|
|
1732
1732
|
/**
|
|
1733
1733
|
*
|
|
@@ -1848,6 +1848,254 @@ export interface ICompany {
|
|
|
1848
1848
|
*/
|
|
1849
1849
|
'versions': Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner>;
|
|
1850
1850
|
}
|
|
1851
|
+
/**
|
|
1852
|
+
*
|
|
1853
|
+
* @export
|
|
1854
|
+
* @interface ICompanyAdminResponse
|
|
1855
|
+
*/
|
|
1856
|
+
export interface ICompanyAdminResponse {
|
|
1857
|
+
/**
|
|
1858
|
+
*
|
|
1859
|
+
* @type {string}
|
|
1860
|
+
* @memberof ICompanyAdminResponse
|
|
1861
|
+
*/
|
|
1862
|
+
'name': string;
|
|
1863
|
+
/**
|
|
1864
|
+
*
|
|
1865
|
+
* @type {string}
|
|
1866
|
+
* @memberof ICompanyAdminResponse
|
|
1867
|
+
*/
|
|
1868
|
+
'phone'?: string;
|
|
1869
|
+
/**
|
|
1870
|
+
*
|
|
1871
|
+
* @type {string}
|
|
1872
|
+
* @memberof ICompanyAdminResponse
|
|
1873
|
+
*/
|
|
1874
|
+
'email'?: string;
|
|
1875
|
+
/**
|
|
1876
|
+
*
|
|
1877
|
+
* @type {LanguageEnum}
|
|
1878
|
+
* @memberof ICompanyAdminResponse
|
|
1879
|
+
*/
|
|
1880
|
+
'language': LanguageEnum;
|
|
1881
|
+
/**
|
|
1882
|
+
*
|
|
1883
|
+
* @type {CompanyStatusEnum}
|
|
1884
|
+
* @memberof ICompanyAdminResponse
|
|
1885
|
+
*/
|
|
1886
|
+
'status': CompanyStatusEnum;
|
|
1887
|
+
/**
|
|
1888
|
+
*
|
|
1889
|
+
* @type {string}
|
|
1890
|
+
* @memberof ICompanyAdminResponse
|
|
1891
|
+
*/
|
|
1892
|
+
'_id': string;
|
|
1893
|
+
/**
|
|
1894
|
+
*
|
|
1895
|
+
* @type {number}
|
|
1896
|
+
* @memberof ICompanyAdminResponse
|
|
1897
|
+
*/
|
|
1898
|
+
'__v': number;
|
|
1899
|
+
/**
|
|
1900
|
+
*
|
|
1901
|
+
* @type {string}
|
|
1902
|
+
* @memberof ICompanyAdminResponse
|
|
1903
|
+
*/
|
|
1904
|
+
'createdAt': string;
|
|
1905
|
+
/**
|
|
1906
|
+
*
|
|
1907
|
+
* @type {string}
|
|
1908
|
+
* @memberof ICompanyAdminResponse
|
|
1909
|
+
*/
|
|
1910
|
+
'updatedAt': string;
|
|
1911
|
+
/**
|
|
1912
|
+
*
|
|
1913
|
+
* @type {PlanTypeEnum}
|
|
1914
|
+
* @memberof ICompanyAdminResponse
|
|
1915
|
+
*/
|
|
1916
|
+
'plan': PlanTypeEnum;
|
|
1917
|
+
/**
|
|
1918
|
+
*
|
|
1919
|
+
* @type {CompanyTypeEnum}
|
|
1920
|
+
* @memberof ICompanyAdminResponse
|
|
1921
|
+
*/
|
|
1922
|
+
'type': CompanyTypeEnum;
|
|
1923
|
+
/**
|
|
1924
|
+
*
|
|
1925
|
+
* @type {string}
|
|
1926
|
+
* @memberof ICompanyAdminResponse
|
|
1927
|
+
*/
|
|
1928
|
+
'owner': string;
|
|
1929
|
+
/**
|
|
1930
|
+
*
|
|
1931
|
+
* @type {ICompanyResponseAddress}
|
|
1932
|
+
* @memberof ICompanyAdminResponse
|
|
1933
|
+
*/
|
|
1934
|
+
'address'?: ICompanyResponseAddress;
|
|
1935
|
+
/**
|
|
1936
|
+
*
|
|
1937
|
+
* @type {Array<string>}
|
|
1938
|
+
* @memberof ICompanyAdminResponse
|
|
1939
|
+
*/
|
|
1940
|
+
'domains': Array<string>;
|
|
1941
|
+
/**
|
|
1942
|
+
*
|
|
1943
|
+
* @type {string}
|
|
1944
|
+
* @memberof ICompanyAdminResponse
|
|
1945
|
+
*/
|
|
1946
|
+
'dns_zone_id'?: string;
|
|
1947
|
+
/**
|
|
1948
|
+
*
|
|
1949
|
+
* @type {Array<ICompanyResponseCustomHostnamesInner>}
|
|
1950
|
+
* @memberof ICompanyAdminResponse
|
|
1951
|
+
*/
|
|
1952
|
+
'custom_hostnames': Array<ICompanyResponseCustomHostnamesInner>;
|
|
1953
|
+
/**
|
|
1954
|
+
*
|
|
1955
|
+
* @type {{ [key: string]: string; }}
|
|
1956
|
+
* @memberof ICompanyAdminResponse
|
|
1957
|
+
*/
|
|
1958
|
+
'socials'?: {
|
|
1959
|
+
[key: string]: string;
|
|
1960
|
+
};
|
|
1961
|
+
/**
|
|
1962
|
+
*
|
|
1963
|
+
* @type {string}
|
|
1964
|
+
* @memberof ICompanyAdminResponse
|
|
1965
|
+
*/
|
|
1966
|
+
'description'?: string;
|
|
1967
|
+
/**
|
|
1968
|
+
*
|
|
1969
|
+
* @type {IImage}
|
|
1970
|
+
* @memberof ICompanyAdminResponse
|
|
1971
|
+
*/
|
|
1972
|
+
'logo'?: IImage;
|
|
1973
|
+
/**
|
|
1974
|
+
*
|
|
1975
|
+
* @type {TimezoneEnum}
|
|
1976
|
+
* @memberof ICompanyAdminResponse
|
|
1977
|
+
*/
|
|
1978
|
+
'timezone': TimezoneEnum;
|
|
1979
|
+
/**
|
|
1980
|
+
*
|
|
1981
|
+
* @type {Array<LanguageEnum>}
|
|
1982
|
+
* @memberof ICompanyAdminResponse
|
|
1983
|
+
*/
|
|
1984
|
+
'languages': Array<LanguageEnum>;
|
|
1985
|
+
/**
|
|
1986
|
+
*
|
|
1987
|
+
* @type {CurrencyEnum}
|
|
1988
|
+
* @memberof ICompanyAdminResponse
|
|
1989
|
+
*/
|
|
1990
|
+
'currency': CurrencyEnum;
|
|
1991
|
+
/**
|
|
1992
|
+
*
|
|
1993
|
+
* @type {RecordCurrencyEnumCurrency}
|
|
1994
|
+
* @memberof ICompanyAdminResponse
|
|
1995
|
+
*/
|
|
1996
|
+
'currencies': RecordCurrencyEnumCurrency;
|
|
1997
|
+
/**
|
|
1998
|
+
*
|
|
1999
|
+
* @type {Array<ICompanyResponseWarehousesInner>}
|
|
2000
|
+
* @memberof ICompanyAdminResponse
|
|
2001
|
+
*/
|
|
2002
|
+
'warehouses': Array<ICompanyResponseWarehousesInner>;
|
|
2003
|
+
/**
|
|
2004
|
+
*
|
|
2005
|
+
* @type {{ [key: string]: ICompanyResponseNavigationsValue; }}
|
|
2006
|
+
* @memberof ICompanyAdminResponse
|
|
2007
|
+
*/
|
|
2008
|
+
'navigations': {
|
|
2009
|
+
[key: string]: ICompanyResponseNavigationsValue;
|
|
2010
|
+
};
|
|
2011
|
+
/**
|
|
2012
|
+
*
|
|
2013
|
+
* @type {ICompanyResponseFirebaseWebCredentials}
|
|
2014
|
+
* @memberof ICompanyAdminResponse
|
|
2015
|
+
*/
|
|
2016
|
+
'firebase_web_credentials'?: ICompanyResponseFirebaseWebCredentials;
|
|
2017
|
+
/**
|
|
2018
|
+
*
|
|
2019
|
+
* @type {ICompanyResponseFirebaseLogin}
|
|
2020
|
+
* @memberof ICompanyAdminResponse
|
|
2021
|
+
*/
|
|
2022
|
+
'firebase_login': ICompanyResponseFirebaseLogin;
|
|
2023
|
+
/**
|
|
2024
|
+
*
|
|
2025
|
+
* @type {string}
|
|
2026
|
+
* @memberof ICompanyAdminResponse
|
|
2027
|
+
*/
|
|
2028
|
+
'sender_email'?: string;
|
|
2029
|
+
/**
|
|
2030
|
+
*
|
|
2031
|
+
* @type {string}
|
|
2032
|
+
* @memberof ICompanyAdminResponse
|
|
2033
|
+
*/
|
|
2034
|
+
'sender_name'?: string;
|
|
2035
|
+
/**
|
|
2036
|
+
*
|
|
2037
|
+
* @type {Array<ICompanyResponseSenderEmailDnsRecordsInner>}
|
|
2038
|
+
* @memberof ICompanyAdminResponse
|
|
2039
|
+
*/
|
|
2040
|
+
'sender_email_dns_records'?: Array<ICompanyResponseSenderEmailDnsRecordsInner>;
|
|
2041
|
+
/**
|
|
2042
|
+
*
|
|
2043
|
+
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles}
|
|
2044
|
+
* @memberof ICompanyAdminResponse
|
|
2045
|
+
*/
|
|
2046
|
+
'main'?: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles;
|
|
2047
|
+
/**
|
|
2048
|
+
*
|
|
2049
|
+
* @type {ICompanyResponseConfig}
|
|
2050
|
+
* @memberof ICompanyAdminResponse
|
|
2051
|
+
*/
|
|
2052
|
+
'config': ICompanyResponseConfig;
|
|
2053
|
+
/**
|
|
2054
|
+
*
|
|
2055
|
+
* @type {RecordCurrencyEnumNumber}
|
|
2056
|
+
* @memberof ICompanyAdminResponse
|
|
2057
|
+
*/
|
|
2058
|
+
'currency_rates': RecordCurrencyEnumNumber;
|
|
2059
|
+
/**
|
|
2060
|
+
*
|
|
2061
|
+
* @type {Array<ICompanyAdminResponseUsersInner>}
|
|
2062
|
+
* @memberof ICompanyAdminResponse
|
|
2063
|
+
*/
|
|
2064
|
+
'users': Array<ICompanyAdminResponseUsersInner>;
|
|
2065
|
+
/**
|
|
2066
|
+
*
|
|
2067
|
+
* @type {{ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue; }}
|
|
2068
|
+
* @memberof ICompanyAdminResponse
|
|
2069
|
+
*/
|
|
2070
|
+
'roles': {
|
|
2071
|
+
[key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue;
|
|
2072
|
+
};
|
|
2073
|
+
}
|
|
2074
|
+
/**
|
|
2075
|
+
*
|
|
2076
|
+
* @export
|
|
2077
|
+
* @interface ICompanyAdminResponseUsersInner
|
|
2078
|
+
*/
|
|
2079
|
+
export interface ICompanyAdminResponseUsersInner {
|
|
2080
|
+
/**
|
|
2081
|
+
*
|
|
2082
|
+
* @type {CompanyUserStatusEnum}
|
|
2083
|
+
* @memberof ICompanyAdminResponseUsersInner
|
|
2084
|
+
*/
|
|
2085
|
+
'status': CompanyUserStatusEnum;
|
|
2086
|
+
/**
|
|
2087
|
+
*
|
|
2088
|
+
* @type {string}
|
|
2089
|
+
* @memberof ICompanyAdminResponseUsersInner
|
|
2090
|
+
*/
|
|
2091
|
+
'role': string;
|
|
2092
|
+
/**
|
|
2093
|
+
*
|
|
2094
|
+
* @type {PickIUserIdOrNameOrEmail}
|
|
2095
|
+
* @memberof ICompanyAdminResponseUsersInner
|
|
2096
|
+
*/
|
|
2097
|
+
'user': PickIUserIdOrNameOrEmail;
|
|
2098
|
+
}
|
|
1851
2099
|
/**
|
|
1852
2100
|
*
|
|
1853
2101
|
* @export
|
|
@@ -1862,10 +2110,10 @@ export interface ICompanyCollectionQueryParams {
|
|
|
1862
2110
|
'page'?: number;
|
|
1863
2111
|
/**
|
|
1864
2112
|
*
|
|
1865
|
-
* @type {
|
|
2113
|
+
* @type {number}
|
|
1866
2114
|
* @memberof ICompanyCollectionQueryParams
|
|
1867
2115
|
*/
|
|
1868
|
-
'itemsPerPage'?:
|
|
2116
|
+
'itemsPerPage'?: number;
|
|
1869
2117
|
/**
|
|
1870
2118
|
*
|
|
1871
2119
|
* @type {string}
|
|
@@ -2176,11 +2424,11 @@ export interface ICompanyPatchRequest {
|
|
|
2176
2424
|
'email'?: string;
|
|
2177
2425
|
/**
|
|
2178
2426
|
*
|
|
2179
|
-
* @type {{ [key: string]:
|
|
2427
|
+
* @type {{ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue; }}
|
|
2180
2428
|
* @memberof ICompanyPatchRequest
|
|
2181
2429
|
*/
|
|
2182
2430
|
'roles'?: {
|
|
2183
|
-
[key: string]:
|
|
2431
|
+
[key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue;
|
|
2184
2432
|
};
|
|
2185
2433
|
/**
|
|
2186
2434
|
*
|
|
@@ -2196,16 +2444,10 @@ export interface ICompanyPatchRequest {
|
|
|
2196
2444
|
'status'?: CompanyStatusEnum;
|
|
2197
2445
|
/**
|
|
2198
2446
|
*
|
|
2199
|
-
* @type {
|
|
2200
|
-
* @memberof ICompanyPatchRequest
|
|
2201
|
-
*/
|
|
2202
|
-
'owner'?: string;
|
|
2203
|
-
/**
|
|
2204
|
-
*
|
|
2205
|
-
* @type {Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageUsersInner>}
|
|
2447
|
+
* @type {Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner>}
|
|
2206
2448
|
* @memberof ICompanyPatchRequest
|
|
2207
2449
|
*/
|
|
2208
|
-
'users'?: Array<
|
|
2450
|
+
'users'?: Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner>;
|
|
2209
2451
|
/**
|
|
2210
2452
|
*
|
|
2211
2453
|
* @type {ICompanyPostRequestFirebaseAdminCredentials}
|
|
@@ -2224,6 +2466,12 @@ export interface ICompanyPatchRequest {
|
|
|
2224
2466
|
* @memberof ICompanyPatchRequest
|
|
2225
2467
|
*/
|
|
2226
2468
|
'type'?: CompanyTypeEnum;
|
|
2469
|
+
/**
|
|
2470
|
+
*
|
|
2471
|
+
* @type {string}
|
|
2472
|
+
* @memberof ICompanyPatchRequest
|
|
2473
|
+
*/
|
|
2474
|
+
'owner'?: string;
|
|
2227
2475
|
/**
|
|
2228
2476
|
*
|
|
2229
2477
|
* @type {ICompanyResponseAddress}
|
|
@@ -2319,11 +2567,11 @@ export interface ICompanyPostRequest {
|
|
|
2319
2567
|
'email'?: string;
|
|
2320
2568
|
/**
|
|
2321
2569
|
*
|
|
2322
|
-
* @type {{ [key: string]:
|
|
2570
|
+
* @type {{ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue; }}
|
|
2323
2571
|
* @memberof ICompanyPostRequest
|
|
2324
2572
|
*/
|
|
2325
2573
|
'roles': {
|
|
2326
|
-
[key: string]:
|
|
2574
|
+
[key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue;
|
|
2327
2575
|
};
|
|
2328
2576
|
/**
|
|
2329
2577
|
*
|
|
@@ -2425,10 +2673,10 @@ export interface ICompanyPostRequest {
|
|
|
2425
2673
|
'owner': string;
|
|
2426
2674
|
/**
|
|
2427
2675
|
*
|
|
2428
|
-
* @type {Array<
|
|
2676
|
+
* @type {Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner>}
|
|
2429
2677
|
* @memberof ICompanyPostRequest
|
|
2430
2678
|
*/
|
|
2431
|
-
'users': Array<
|
|
2679
|
+
'users': Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner>;
|
|
2432
2680
|
/**
|
|
2433
2681
|
*
|
|
2434
2682
|
* @type {Array<ICompanyPostRequestWarehousesInner>}
|
|
@@ -2564,20 +2812,6 @@ export interface ICompanyResponse {
|
|
|
2564
2812
|
* @memberof ICompanyResponse
|
|
2565
2813
|
*/
|
|
2566
2814
|
'email'?: string;
|
|
2567
|
-
/**
|
|
2568
|
-
*
|
|
2569
|
-
* @type {{ [key: string]: ICompanyResponseRolesValue; }}
|
|
2570
|
-
* @memberof ICompanyResponse
|
|
2571
|
-
*/
|
|
2572
|
-
'roles': {
|
|
2573
|
-
[key: string]: ICompanyResponseRolesValue;
|
|
2574
|
-
};
|
|
2575
|
-
/**
|
|
2576
|
-
*
|
|
2577
|
-
* @type {Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner>}
|
|
2578
|
-
* @memberof ICompanyResponse
|
|
2579
|
-
*/
|
|
2580
|
-
'versions': Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner>;
|
|
2581
2815
|
/**
|
|
2582
2816
|
*
|
|
2583
2817
|
* @type {LanguageEnum}
|
|
@@ -2626,6 +2860,12 @@ export interface ICompanyResponse {
|
|
|
2626
2860
|
* @memberof ICompanyResponse
|
|
2627
2861
|
*/
|
|
2628
2862
|
'type': CompanyTypeEnum;
|
|
2863
|
+
/**
|
|
2864
|
+
*
|
|
2865
|
+
* @type {string}
|
|
2866
|
+
* @memberof ICompanyResponse
|
|
2867
|
+
*/
|
|
2868
|
+
'owner': string;
|
|
2629
2869
|
/**
|
|
2630
2870
|
*
|
|
2631
2871
|
* @type {ICompanyResponseAddress}
|
|
@@ -2740,28 +2980,10 @@ export interface ICompanyResponse {
|
|
|
2740
2980
|
'sender_email_dns_records'?: Array<ICompanyResponseSenderEmailDnsRecordsInner>;
|
|
2741
2981
|
/**
|
|
2742
2982
|
*
|
|
2743
|
-
* @type {
|
|
2744
|
-
* @memberof ICompanyResponse
|
|
2745
|
-
*/
|
|
2746
|
-
'main'?: PickICompanyNameOrDomainsOrIdOrUsersOrLanguage;
|
|
2747
|
-
/**
|
|
2748
|
-
*
|
|
2749
|
-
* @type {IUserResponse}
|
|
2983
|
+
* @type {PickICompanyNameOrDomainsOrIdOrLanguage}
|
|
2750
2984
|
* @memberof ICompanyResponse
|
|
2751
2985
|
*/
|
|
2752
|
-
'
|
|
2753
|
-
/**
|
|
2754
|
-
*
|
|
2755
|
-
* @type {Array<ICompanyResponseUsersInner>}
|
|
2756
|
-
* @memberof ICompanyResponse
|
|
2757
|
-
*/
|
|
2758
|
-
'users': Array<ICompanyResponseUsersInner>;
|
|
2759
|
-
/**
|
|
2760
|
-
*
|
|
2761
|
-
* @type {IPlanResponse}
|
|
2762
|
-
* @memberof ICompanyResponse
|
|
2763
|
-
*/
|
|
2764
|
-
'_plan': IPlanResponse;
|
|
2986
|
+
'main'?: PickICompanyNameOrDomainsOrIdOrLanguage;
|
|
2765
2987
|
/**
|
|
2766
2988
|
*
|
|
2767
2989
|
* @type {ICompanyResponseConfig}
|
|
@@ -3014,62 +3236,6 @@ export interface ICompanyResponseNavigationsValue {
|
|
|
3014
3236
|
*/
|
|
3015
3237
|
'header': Array<NavigationUrl>;
|
|
3016
3238
|
}
|
|
3017
|
-
/**
|
|
3018
|
-
*
|
|
3019
|
-
* @export
|
|
3020
|
-
* @interface ICompanyResponseRolesValue
|
|
3021
|
-
*/
|
|
3022
|
-
export interface ICompanyResponseRolesValue {
|
|
3023
|
-
/**
|
|
3024
|
-
*
|
|
3025
|
-
* @type {ICompanyResponseRolesValueConfig}
|
|
3026
|
-
* @memberof ICompanyResponseRolesValue
|
|
3027
|
-
*/
|
|
3028
|
-
'config': ICompanyResponseRolesValueConfig;
|
|
3029
|
-
/**
|
|
3030
|
-
*
|
|
3031
|
-
* @type {ICompanyResponseRolesValueConfig}
|
|
3032
|
-
* @memberof ICompanyResponseRolesValue
|
|
3033
|
-
*/
|
|
3034
|
-
'navigation': ICompanyResponseRolesValueConfig;
|
|
3035
|
-
/**
|
|
3036
|
-
*
|
|
3037
|
-
* @type {ICompanyResponseRolesValueConfig}
|
|
3038
|
-
* @memberof ICompanyResponseRolesValue
|
|
3039
|
-
*/
|
|
3040
|
-
'company': ICompanyResponseRolesValueConfig;
|
|
3041
|
-
/**
|
|
3042
|
-
*
|
|
3043
|
-
* @type {ICompanyResponseRolesValueConfig}
|
|
3044
|
-
* @memberof ICompanyResponseRolesValue
|
|
3045
|
-
*/
|
|
3046
|
-
'page': ICompanyResponseRolesValueConfig;
|
|
3047
|
-
/**
|
|
3048
|
-
*
|
|
3049
|
-
* @type {ICompanyResponseRolesValueConfig}
|
|
3050
|
-
* @memberof ICompanyResponseRolesValue
|
|
3051
|
-
*/
|
|
3052
|
-
'product': ICompanyResponseRolesValueConfig;
|
|
3053
|
-
}
|
|
3054
|
-
/**
|
|
3055
|
-
*
|
|
3056
|
-
* @export
|
|
3057
|
-
* @interface ICompanyResponseRolesValueConfig
|
|
3058
|
-
*/
|
|
3059
|
-
export interface ICompanyResponseRolesValueConfig {
|
|
3060
|
-
/**
|
|
3061
|
-
*
|
|
3062
|
-
* @type {boolean}
|
|
3063
|
-
* @memberof ICompanyResponseRolesValueConfig
|
|
3064
|
-
*/
|
|
3065
|
-
'd': boolean;
|
|
3066
|
-
/**
|
|
3067
|
-
*
|
|
3068
|
-
* @type {boolean}
|
|
3069
|
-
* @memberof ICompanyResponseRolesValueConfig
|
|
3070
|
-
*/
|
|
3071
|
-
'm': boolean;
|
|
3072
|
-
}
|
|
3073
3239
|
/**
|
|
3074
3240
|
*
|
|
3075
3241
|
* @export
|
|
@@ -3101,31 +3267,6 @@ export interface ICompanyResponseSenderEmailDnsRecordsInner {
|
|
|
3101
3267
|
*/
|
|
3102
3268
|
'key': string;
|
|
3103
3269
|
}
|
|
3104
|
-
/**
|
|
3105
|
-
*
|
|
3106
|
-
* @export
|
|
3107
|
-
* @interface ICompanyResponseUsersInner
|
|
3108
|
-
*/
|
|
3109
|
-
export interface ICompanyResponseUsersInner {
|
|
3110
|
-
/**
|
|
3111
|
-
*
|
|
3112
|
-
* @type {CompanyUserStatusEnum}
|
|
3113
|
-
* @memberof ICompanyResponseUsersInner
|
|
3114
|
-
*/
|
|
3115
|
-
'status': CompanyUserStatusEnum;
|
|
3116
|
-
/**
|
|
3117
|
-
*
|
|
3118
|
-
* @type {string}
|
|
3119
|
-
* @memberof ICompanyResponseUsersInner
|
|
3120
|
-
*/
|
|
3121
|
-
'role': string;
|
|
3122
|
-
/**
|
|
3123
|
-
*
|
|
3124
|
-
* @type {IUserResponse}
|
|
3125
|
-
* @memberof ICompanyResponseUsersInner
|
|
3126
|
-
*/
|
|
3127
|
-
'user': IUserResponse;
|
|
3128
|
-
}
|
|
3129
3270
|
/**
|
|
3130
3271
|
*
|
|
3131
3272
|
* @export
|
|
@@ -3268,10 +3409,10 @@ export interface ICompanyUsersCollectionQueryParams {
|
|
|
3268
3409
|
'page'?: number;
|
|
3269
3410
|
/**
|
|
3270
3411
|
*
|
|
3271
|
-
* @type {
|
|
3412
|
+
* @type {number}
|
|
3272
3413
|
* @memberof ICompanyUsersCollectionQueryParams
|
|
3273
3414
|
*/
|
|
3274
|
-
'itemsPerPage'?:
|
|
3415
|
+
'itemsPerPage'?: number;
|
|
3275
3416
|
/**
|
|
3276
3417
|
*
|
|
3277
3418
|
* @type {string}
|
|
@@ -3315,6 +3456,19 @@ export interface ICompanyUsersCollectionQueryParams {
|
|
|
3315
3456
|
*/
|
|
3316
3457
|
'status'?: CompanyUserStatusEnum;
|
|
3317
3458
|
}
|
|
3459
|
+
/**
|
|
3460
|
+
*
|
|
3461
|
+
* @export
|
|
3462
|
+
* @interface ICompanyUsersResponse
|
|
3463
|
+
*/
|
|
3464
|
+
export interface ICompanyUsersResponse {
|
|
3465
|
+
/**
|
|
3466
|
+
*
|
|
3467
|
+
* @type {Array<ICompanyAdminResponseUsersInner>}
|
|
3468
|
+
* @memberof ICompanyUsersResponse
|
|
3469
|
+
*/
|
|
3470
|
+
'users': Array<ICompanyAdminResponseUsersInner>;
|
|
3471
|
+
}
|
|
3318
3472
|
/**
|
|
3319
3473
|
*
|
|
3320
3474
|
* @export
|
|
@@ -3533,10 +3687,10 @@ export interface IFileCollectionQueryParams {
|
|
|
3533
3687
|
'page'?: number;
|
|
3534
3688
|
/**
|
|
3535
3689
|
*
|
|
3536
|
-
* @type {
|
|
3690
|
+
* @type {number}
|
|
3537
3691
|
* @memberof IFileCollectionQueryParams
|
|
3538
3692
|
*/
|
|
3539
|
-
'itemsPerPage'?:
|
|
3693
|
+
'itemsPerPage'?: number;
|
|
3540
3694
|
/**
|
|
3541
3695
|
*
|
|
3542
3696
|
* @type {string}
|
|
@@ -3904,10 +4058,10 @@ export interface INotificationCollectionQueryParams {
|
|
|
3904
4058
|
'page'?: number;
|
|
3905
4059
|
/**
|
|
3906
4060
|
*
|
|
3907
|
-
* @type {
|
|
4061
|
+
* @type {number}
|
|
3908
4062
|
* @memberof INotificationCollectionQueryParams
|
|
3909
4063
|
*/
|
|
3910
|
-
'itemsPerPage'?:
|
|
4064
|
+
'itemsPerPage'?: number;
|
|
3911
4065
|
/**
|
|
3912
4066
|
*
|
|
3913
4067
|
* @type {string}
|
|
@@ -4093,10 +4247,10 @@ export interface IOperationCollectionQueryParams {
|
|
|
4093
4247
|
'page'?: number;
|
|
4094
4248
|
/**
|
|
4095
4249
|
*
|
|
4096
|
-
* @type {
|
|
4250
|
+
* @type {number}
|
|
4097
4251
|
* @memberof IOperationCollectionQueryParams
|
|
4098
4252
|
*/
|
|
4099
|
-
'itemsPerPage'?:
|
|
4253
|
+
'itemsPerPage'?: number;
|
|
4100
4254
|
/**
|
|
4101
4255
|
*
|
|
4102
4256
|
* @type {string}
|
|
@@ -4386,10 +4540,10 @@ export interface IPageCollectionQueryParams {
|
|
|
4386
4540
|
'page'?: number;
|
|
4387
4541
|
/**
|
|
4388
4542
|
*
|
|
4389
|
-
* @type {
|
|
4543
|
+
* @type {number}
|
|
4390
4544
|
* @memberof IPageCollectionQueryParams
|
|
4391
4545
|
*/
|
|
4392
|
-
'itemsPerPage'?:
|
|
4546
|
+
'itemsPerPage'?: number;
|
|
4393
4547
|
/**
|
|
4394
4548
|
*
|
|
4395
4549
|
* @type {string}
|
|
@@ -4451,6 +4605,31 @@ export interface IPageCollectionQueryParams {
|
|
|
4451
4605
|
*/
|
|
4452
4606
|
'status'?: ContentStatusEnum;
|
|
4453
4607
|
}
|
|
4608
|
+
/**
|
|
4609
|
+
*
|
|
4610
|
+
* @export
|
|
4611
|
+
* @interface IPageGetAllQueryParams
|
|
4612
|
+
*/
|
|
4613
|
+
export interface IPageGetAllQueryParams {
|
|
4614
|
+
/**
|
|
4615
|
+
*
|
|
4616
|
+
* @type {string}
|
|
4617
|
+
* @memberof IPageGetAllQueryParams
|
|
4618
|
+
*/
|
|
4619
|
+
'company'?: string;
|
|
4620
|
+
/**
|
|
4621
|
+
*
|
|
4622
|
+
* @type {string}
|
|
4623
|
+
* @memberof IPageGetAllQueryParams
|
|
4624
|
+
*/
|
|
4625
|
+
'domain'?: string;
|
|
4626
|
+
/**
|
|
4627
|
+
*
|
|
4628
|
+
* @type {Array<PageTypeEnum>}
|
|
4629
|
+
* @memberof IPageGetAllQueryParams
|
|
4630
|
+
*/
|
|
4631
|
+
'type'?: Array<PageTypeEnum>;
|
|
4632
|
+
}
|
|
4454
4633
|
/**
|
|
4455
4634
|
*
|
|
4456
4635
|
* @export
|
|
@@ -4631,10 +4810,10 @@ export interface IPlanCollectionQueryParams {
|
|
|
4631
4810
|
'page'?: number;
|
|
4632
4811
|
/**
|
|
4633
4812
|
*
|
|
4634
|
-
* @type {
|
|
4813
|
+
* @type {number}
|
|
4635
4814
|
* @memberof IPlanCollectionQueryParams
|
|
4636
4815
|
*/
|
|
4637
|
-
'itemsPerPage'?:
|
|
4816
|
+
'itemsPerPage'?: number;
|
|
4638
4817
|
/**
|
|
4639
4818
|
*
|
|
4640
4819
|
* @type {string}
|
|
@@ -4938,10 +5117,10 @@ export interface IProductCollectionQueryParams {
|
|
|
4938
5117
|
'page'?: number;
|
|
4939
5118
|
/**
|
|
4940
5119
|
*
|
|
4941
|
-
* @type {
|
|
5120
|
+
* @type {number}
|
|
4942
5121
|
* @memberof IProductCollectionQueryParams
|
|
4943
5122
|
*/
|
|
4944
|
-
'itemsPerPage'?:
|
|
5123
|
+
'itemsPerPage'?: number;
|
|
4945
5124
|
/**
|
|
4946
5125
|
*
|
|
4947
5126
|
* @type {string}
|
|
@@ -6138,10 +6317,10 @@ export interface IUserCollectionQueryParams {
|
|
|
6138
6317
|
'page'?: number;
|
|
6139
6318
|
/**
|
|
6140
6319
|
*
|
|
6141
|
-
* @type {
|
|
6320
|
+
* @type {number}
|
|
6142
6321
|
* @memberof IUserCollectionQueryParams
|
|
6143
6322
|
*/
|
|
6144
|
-
'itemsPerPage'?:
|
|
6323
|
+
'itemsPerPage'?: number;
|
|
6145
6324
|
/**
|
|
6146
6325
|
*
|
|
6147
6326
|
* @type {string}
|
|
@@ -6411,12 +6590,6 @@ export interface NavigationUrl {
|
|
|
6411
6590
|
* @memberof NavigationUrl
|
|
6412
6591
|
*/
|
|
6413
6592
|
'_id': string;
|
|
6414
|
-
/**
|
|
6415
|
-
*
|
|
6416
|
-
* @type {string}
|
|
6417
|
-
* @memberof NavigationUrl
|
|
6418
|
-
*/
|
|
6419
|
-
'page'?: string;
|
|
6420
6593
|
/**
|
|
6421
6594
|
*
|
|
6422
6595
|
* @type {Array<NavigationUrl>}
|
|
@@ -6510,22 +6683,6 @@ export declare const PageTypeEnum: {
|
|
|
6510
6683
|
readonly NOT_FOUND: "not-found";
|
|
6511
6684
|
};
|
|
6512
6685
|
export type PageTypeEnum = typeof PageTypeEnum[keyof typeof PageTypeEnum];
|
|
6513
|
-
/**
|
|
6514
|
-
*
|
|
6515
|
-
* @export
|
|
6516
|
-
* @enum {string}
|
|
6517
|
-
*/
|
|
6518
|
-
export declare const PaginationLimitEnum: {
|
|
6519
|
-
readonly NUMBER_10: 10;
|
|
6520
|
-
readonly NUMBER_20: 20;
|
|
6521
|
-
readonly NUMBER_30: 30;
|
|
6522
|
-
readonly NUMBER_40: 40;
|
|
6523
|
-
readonly NUMBER_50: 50;
|
|
6524
|
-
readonly NUMBER_100: 100;
|
|
6525
|
-
readonly NUMBER_200: 200;
|
|
6526
|
-
readonly NUMBER_500: 500;
|
|
6527
|
-
};
|
|
6528
|
-
export type PaginationLimitEnum = typeof PaginationLimitEnum[keyof typeof PaginationLimitEnum];
|
|
6529
6686
|
/**
|
|
6530
6687
|
* From T, pick a set of properties whose keys are in the union K
|
|
6531
6688
|
* @export
|
|
@@ -6573,62 +6730,163 @@ export interface PickICompanyIdOrName {
|
|
|
6573
6730
|
/**
|
|
6574
6731
|
* From T, pick a set of properties whose keys are in the union K
|
|
6575
6732
|
* @export
|
|
6576
|
-
* @interface
|
|
6733
|
+
* @interface PickICompanyNameOrDomainsOrIdOrLanguage
|
|
6734
|
+
*/
|
|
6735
|
+
export interface PickICompanyNameOrDomainsOrIdOrLanguage {
|
|
6736
|
+
/**
|
|
6737
|
+
*
|
|
6738
|
+
* @type {string}
|
|
6739
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrLanguage
|
|
6740
|
+
*/
|
|
6741
|
+
'name': string;
|
|
6742
|
+
/**
|
|
6743
|
+
*
|
|
6744
|
+
* @type {LanguageEnum}
|
|
6745
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrLanguage
|
|
6746
|
+
*/
|
|
6747
|
+
'language': LanguageEnum;
|
|
6748
|
+
/**
|
|
6749
|
+
*
|
|
6750
|
+
* @type {string}
|
|
6751
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrLanguage
|
|
6752
|
+
*/
|
|
6753
|
+
'_id': string;
|
|
6754
|
+
/**
|
|
6755
|
+
*
|
|
6756
|
+
* @type {Array<string>}
|
|
6757
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrLanguage
|
|
6758
|
+
*/
|
|
6759
|
+
'domains': Array<string>;
|
|
6760
|
+
}
|
|
6761
|
+
/**
|
|
6762
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
6763
|
+
* @export
|
|
6764
|
+
* @interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
|
|
6577
6765
|
*/
|
|
6578
|
-
export interface
|
|
6766
|
+
export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles {
|
|
6579
6767
|
/**
|
|
6580
6768
|
*
|
|
6581
6769
|
* @type {string}
|
|
6582
|
-
* @memberof
|
|
6770
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
|
|
6583
6771
|
*/
|
|
6584
6772
|
'name': string;
|
|
6773
|
+
/**
|
|
6774
|
+
*
|
|
6775
|
+
* @type {{ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue; }}
|
|
6776
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
|
|
6777
|
+
*/
|
|
6778
|
+
'roles': {
|
|
6779
|
+
[key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue;
|
|
6780
|
+
};
|
|
6585
6781
|
/**
|
|
6586
6782
|
*
|
|
6587
6783
|
* @type {LanguageEnum}
|
|
6588
|
-
* @memberof
|
|
6784
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
|
|
6589
6785
|
*/
|
|
6590
6786
|
'language': LanguageEnum;
|
|
6591
6787
|
/**
|
|
6592
6788
|
*
|
|
6593
6789
|
* @type {string}
|
|
6594
|
-
* @memberof
|
|
6790
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
|
|
6595
6791
|
*/
|
|
6596
6792
|
'_id': string;
|
|
6597
6793
|
/**
|
|
6598
6794
|
*
|
|
6599
|
-
* @type {Array<
|
|
6600
|
-
* @memberof
|
|
6795
|
+
* @type {Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner>}
|
|
6796
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
|
|
6797
|
+
*/
|
|
6798
|
+
'users': Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner>;
|
|
6799
|
+
/**
|
|
6800
|
+
*
|
|
6801
|
+
* @type {string}
|
|
6802
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
|
|
6601
6803
|
*/
|
|
6602
|
-
'
|
|
6804
|
+
'owner': string;
|
|
6603
6805
|
/**
|
|
6604
6806
|
*
|
|
6605
6807
|
* @type {Array<string>}
|
|
6606
|
-
* @memberof
|
|
6808
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
|
|
6607
6809
|
*/
|
|
6608
6810
|
'domains': Array<string>;
|
|
6609
6811
|
}
|
|
6610
6812
|
/**
|
|
6611
6813
|
*
|
|
6612
6814
|
* @export
|
|
6613
|
-
* @interface
|
|
6815
|
+
* @interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
6816
|
+
*/
|
|
6817
|
+
export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue {
|
|
6818
|
+
/**
|
|
6819
|
+
*
|
|
6820
|
+
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig}
|
|
6821
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
6822
|
+
*/
|
|
6823
|
+
'config': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig;
|
|
6824
|
+
/**
|
|
6825
|
+
*
|
|
6826
|
+
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig}
|
|
6827
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
6828
|
+
*/
|
|
6829
|
+
'navigation': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig;
|
|
6830
|
+
/**
|
|
6831
|
+
*
|
|
6832
|
+
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig}
|
|
6833
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
6834
|
+
*/
|
|
6835
|
+
'company': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig;
|
|
6836
|
+
/**
|
|
6837
|
+
*
|
|
6838
|
+
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig}
|
|
6839
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
6840
|
+
*/
|
|
6841
|
+
'page': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig;
|
|
6842
|
+
/**
|
|
6843
|
+
*
|
|
6844
|
+
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig}
|
|
6845
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
6846
|
+
*/
|
|
6847
|
+
'product': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig;
|
|
6848
|
+
}
|
|
6849
|
+
/**
|
|
6850
|
+
*
|
|
6851
|
+
* @export
|
|
6852
|
+
* @interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig
|
|
6853
|
+
*/
|
|
6854
|
+
export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig {
|
|
6855
|
+
/**
|
|
6856
|
+
*
|
|
6857
|
+
* @type {boolean}
|
|
6858
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig
|
|
6859
|
+
*/
|
|
6860
|
+
'd': boolean;
|
|
6861
|
+
/**
|
|
6862
|
+
*
|
|
6863
|
+
* @type {boolean}
|
|
6864
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig
|
|
6865
|
+
*/
|
|
6866
|
+
'm': boolean;
|
|
6867
|
+
}
|
|
6868
|
+
/**
|
|
6869
|
+
*
|
|
6870
|
+
* @export
|
|
6871
|
+
* @interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner
|
|
6614
6872
|
*/
|
|
6615
|
-
export interface
|
|
6873
|
+
export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner {
|
|
6616
6874
|
/**
|
|
6617
6875
|
*
|
|
6618
6876
|
* @type {CompanyUserStatusEnum}
|
|
6619
|
-
* @memberof
|
|
6877
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner
|
|
6620
6878
|
*/
|
|
6621
6879
|
'status': CompanyUserStatusEnum;
|
|
6622
6880
|
/**
|
|
6623
6881
|
*
|
|
6624
6882
|
* @type {string}
|
|
6625
|
-
* @memberof
|
|
6883
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner
|
|
6626
6884
|
*/
|
|
6627
6885
|
'role': string;
|
|
6628
6886
|
/**
|
|
6629
6887
|
*
|
|
6630
6888
|
* @type {string}
|
|
6631
|
-
* @memberof
|
|
6889
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner
|
|
6632
6890
|
*/
|
|
6633
6891
|
'user': string;
|
|
6634
6892
|
}
|
|
@@ -7591,7 +7849,7 @@ export declare const CollectionApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7591
7849
|
*
|
|
7592
7850
|
* @param {string} company
|
|
7593
7851
|
* @param {number} [page]
|
|
7594
|
-
* @param {
|
|
7852
|
+
* @param {number} [itemsPerPage]
|
|
7595
7853
|
* @param {string} [search]
|
|
7596
7854
|
* @param {string} [startDate]
|
|
7597
7855
|
* @param {string} [endDate]
|
|
@@ -7602,7 +7860,7 @@ export declare const CollectionApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7602
7860
|
* @param {*} [options] Override http request option.
|
|
7603
7861
|
* @throws {RequiredError}
|
|
7604
7862
|
*/
|
|
7605
|
-
getCollections: (company: string, page?: number, itemsPerPage?:
|
|
7863
|
+
getCollections: (company: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7606
7864
|
};
|
|
7607
7865
|
/**
|
|
7608
7866
|
* CollectionApi - functional programming interface
|
|
@@ -7621,7 +7879,7 @@ export declare const CollectionApiFp: (configuration?: Configuration) => {
|
|
|
7621
7879
|
*
|
|
7622
7880
|
* @param {string} company
|
|
7623
7881
|
* @param {number} [page]
|
|
7624
|
-
* @param {
|
|
7882
|
+
* @param {number} [itemsPerPage]
|
|
7625
7883
|
* @param {string} [search]
|
|
7626
7884
|
* @param {string} [startDate]
|
|
7627
7885
|
* @param {string} [endDate]
|
|
@@ -7632,7 +7890,7 @@ export declare const CollectionApiFp: (configuration?: Configuration) => {
|
|
|
7632
7890
|
* @param {*} [options] Override http request option.
|
|
7633
7891
|
* @throws {RequiredError}
|
|
7634
7892
|
*/
|
|
7635
|
-
getCollections(company: string, page?: number, itemsPerPage?:
|
|
7893
|
+
getCollections(company: 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<ICollectionsResponse>>;
|
|
7636
7894
|
};
|
|
7637
7895
|
/**
|
|
7638
7896
|
* CollectionApi - factory interface
|
|
@@ -7693,10 +7951,10 @@ export interface CollectionApiGetCollectionsRequest {
|
|
|
7693
7951
|
readonly page?: number;
|
|
7694
7952
|
/**
|
|
7695
7953
|
*
|
|
7696
|
-
* @type {
|
|
7954
|
+
* @type {number}
|
|
7697
7955
|
* @memberof CollectionApiGetCollections
|
|
7698
7956
|
*/
|
|
7699
|
-
readonly itemsPerPage?:
|
|
7957
|
+
readonly itemsPerPage?: number;
|
|
7700
7958
|
/**
|
|
7701
7959
|
*
|
|
7702
7960
|
* @type {string}
|
|
@@ -7859,7 +8117,7 @@ export declare const PageApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
7859
8117
|
*
|
|
7860
8118
|
* @param {string} company
|
|
7861
8119
|
* @param {number} [page]
|
|
7862
|
-
* @param {
|
|
8120
|
+
* @param {number} [itemsPerPage]
|
|
7863
8121
|
* @param {string} [search]
|
|
7864
8122
|
* @param {string} [startDate]
|
|
7865
8123
|
* @param {string} [endDate]
|
|
@@ -7872,7 +8130,7 @@ export declare const PageApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
7872
8130
|
* @param {*} [options] Override http request option.
|
|
7873
8131
|
* @throws {RequiredError}
|
|
7874
8132
|
*/
|
|
7875
|
-
getPages: (company: string, page?: number, itemsPerPage?:
|
|
8133
|
+
getPages: (company: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, domain?: string, type?: PageTypeEnum, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7876
8134
|
};
|
|
7877
8135
|
/**
|
|
7878
8136
|
* PageApi - functional programming interface
|
|
@@ -7901,7 +8159,7 @@ export declare const PageApiFp: (configuration?: Configuration) => {
|
|
|
7901
8159
|
*
|
|
7902
8160
|
* @param {string} company
|
|
7903
8161
|
* @param {number} [page]
|
|
7904
|
-
* @param {
|
|
8162
|
+
* @param {number} [itemsPerPage]
|
|
7905
8163
|
* @param {string} [search]
|
|
7906
8164
|
* @param {string} [startDate]
|
|
7907
8165
|
* @param {string} [endDate]
|
|
@@ -7914,7 +8172,7 @@ export declare const PageApiFp: (configuration?: Configuration) => {
|
|
|
7914
8172
|
* @param {*} [options] Override http request option.
|
|
7915
8173
|
* @throws {RequiredError}
|
|
7916
8174
|
*/
|
|
7917
|
-
getPages(company: string, page?: number, itemsPerPage?:
|
|
8175
|
+
getPages(company: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, domain?: string, type?: PageTypeEnum, status?: ContentStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IPagesResponse>>;
|
|
7918
8176
|
};
|
|
7919
8177
|
/**
|
|
7920
8178
|
* PageApi - factory interface
|
|
@@ -8013,10 +8271,10 @@ export interface PageApiGetPagesRequest {
|
|
|
8013
8271
|
readonly page?: number;
|
|
8014
8272
|
/**
|
|
8015
8273
|
*
|
|
8016
|
-
* @type {
|
|
8274
|
+
* @type {number}
|
|
8017
8275
|
* @memberof PageApiGetPages
|
|
8018
8276
|
*/
|
|
8019
|
-
readonly itemsPerPage?:
|
|
8277
|
+
readonly itemsPerPage?: number;
|
|
8020
8278
|
/**
|
|
8021
8279
|
*
|
|
8022
8280
|
* @type {string}
|
|
@@ -8121,7 +8379,7 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
|
|
|
8121
8379
|
*
|
|
8122
8380
|
* @param {string} company
|
|
8123
8381
|
* @param {number} [page]
|
|
8124
|
-
* @param {
|
|
8382
|
+
* @param {number} [itemsPerPage]
|
|
8125
8383
|
* @param {string} [search]
|
|
8126
8384
|
* @param {string} [startDate]
|
|
8127
8385
|
* @param {string} [endDate]
|
|
@@ -8135,7 +8393,7 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
|
|
|
8135
8393
|
* @param {*} [options] Override http request option.
|
|
8136
8394
|
* @throws {RequiredError}
|
|
8137
8395
|
*/
|
|
8138
|
-
getProducts: (company: string, page?: number, itemsPerPage?:
|
|
8396
|
+
getProducts: (company: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, collections?: string, category?: string, brand?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8139
8397
|
/**
|
|
8140
8398
|
*
|
|
8141
8399
|
* @param {string} company
|
|
@@ -8162,7 +8420,7 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
|
|
|
8162
8420
|
*
|
|
8163
8421
|
* @param {string} company
|
|
8164
8422
|
* @param {number} [page]
|
|
8165
|
-
* @param {
|
|
8423
|
+
* @param {number} [itemsPerPage]
|
|
8166
8424
|
* @param {string} [search]
|
|
8167
8425
|
* @param {string} [startDate]
|
|
8168
8426
|
* @param {string} [endDate]
|
|
@@ -8176,7 +8434,7 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
|
|
|
8176
8434
|
* @param {*} [options] Override http request option.
|
|
8177
8435
|
* @throws {RequiredError}
|
|
8178
8436
|
*/
|
|
8179
|
-
getProducts(company: string, page?: number, itemsPerPage?:
|
|
8437
|
+
getProducts(company: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, collections?: string, category?: string, brand?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IProductsResponse>>;
|
|
8180
8438
|
/**
|
|
8181
8439
|
*
|
|
8182
8440
|
* @param {string} company
|
|
@@ -8252,10 +8510,10 @@ export interface ProductApiGetProductsRequest {
|
|
|
8252
8510
|
readonly page?: number;
|
|
8253
8511
|
/**
|
|
8254
8512
|
*
|
|
8255
|
-
* @type {
|
|
8513
|
+
* @type {number}
|
|
8256
8514
|
* @memberof ProductApiGetProducts
|
|
8257
8515
|
*/
|
|
8258
|
-
readonly itemsPerPage?:
|
|
8516
|
+
readonly itemsPerPage?: number;
|
|
8259
8517
|
/**
|
|
8260
8518
|
*
|
|
8261
8519
|
* @type {string}
|
package/dist/api/api.js
CHANGED
|
@@ -16,8 +16,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
16
16
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
-
exports.PageApiAxiosParamCreator = exports.CompanyApi = exports.CompanyApiFactory = exports.CompanyApiFp = exports.CompanyApiAxiosParamCreator = exports.CollectionApi = exports.CollectionApiFactory = exports.CollectionApiFp = exports.CollectionApiAxiosParamCreator = exports.AuthApi = exports.AuthApiFactory = exports.AuthApiFp = exports.AuthApiAxiosParamCreator = exports.AddressApi = exports.AddressApiFactory = exports.AddressApiFp = exports.AddressApiAxiosParamCreator = exports.UserStatusEnum = exports.UserRoleEnum = exports.TimezoneEnum = exports.ThemeTypeEnum = exports.TemplateTypeEnum = exports.PlanTypeEnum = exports.PlanStatusEnum = exports.PlanCurrencyEnum = exports.
|
|
20
|
-
exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.ProductApi = exports.ProductApiFactory = exports.ProductApiFp = exports.ProductApiAxiosParamCreator = exports.PageApi = exports.PageApiFactory =
|
|
19
|
+
exports.PageApiFp = exports.PageApiAxiosParamCreator = exports.CompanyApi = exports.CompanyApiFactory = exports.CompanyApiFp = exports.CompanyApiAxiosParamCreator = exports.CollectionApi = exports.CollectionApiFactory = exports.CollectionApiFp = exports.CollectionApiAxiosParamCreator = exports.AuthApi = exports.AuthApiFactory = exports.AuthApiFp = exports.AuthApiAxiosParamCreator = exports.AddressApi = exports.AddressApiFactory = exports.AddressApiFp = exports.AddressApiAxiosParamCreator = exports.UserStatusEnum = exports.UserRoleEnum = exports.TimezoneEnum = exports.ThemeTypeEnum = exports.TemplateTypeEnum = exports.PlanTypeEnum = exports.PlanStatusEnum = exports.PlanCurrencyEnum = exports.PageTypeEnum = exports.OrderEnum = exports.OperationStatusEnum = exports.NotificationStatusEnum = exports.NotificationMessageEnum = exports.NavigationUrlTargetEnum = exports.LanguageEnum = exports.GridTypeEnum = exports.FileTypeEnum = exports.FileStatusEnum = exports.FileKeywordEnum = exports.EmailConfigDnsRecordTypeEnum = exports.CurrencyRateTypeEnum = exports.CurrencyEnum = exports.CountryEnum = exports.ContentStatusEnum = exports.ComponentTypeEnum = exports.ComponentProductTypeEnum = exports.ComponentProductOrderEnum = exports.ComponentProductListTypeEnum = exports.ComponentContentTypeEnum = exports.CompanyUserStatusEnum = exports.CompanyTypeEnum = exports.CompanyStatusEnum = void 0;
|
|
20
|
+
exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.ProductApi = exports.ProductApiFactory = exports.ProductApiFp = exports.ProductApiAxiosParamCreator = exports.PageApi = exports.PageApiFactory = void 0;
|
|
21
21
|
const axios_1 = __importDefault(require("axios"));
|
|
22
22
|
// Some imports not used depending on template conditions
|
|
23
23
|
// @ts-ignore
|
|
@@ -542,21 +542,6 @@ exports.PageTypeEnum = {
|
|
|
542
542
|
CHECKOUT: 'checkout',
|
|
543
543
|
NOT_FOUND: 'not-found'
|
|
544
544
|
};
|
|
545
|
-
/**
|
|
546
|
-
*
|
|
547
|
-
* @export
|
|
548
|
-
* @enum {string}
|
|
549
|
-
*/
|
|
550
|
-
exports.PaginationLimitEnum = {
|
|
551
|
-
NUMBER_10: 10,
|
|
552
|
-
NUMBER_20: 20,
|
|
553
|
-
NUMBER_30: 30,
|
|
554
|
-
NUMBER_40: 40,
|
|
555
|
-
NUMBER_50: 50,
|
|
556
|
-
NUMBER_100: 100,
|
|
557
|
-
NUMBER_200: 200,
|
|
558
|
-
NUMBER_500: 500
|
|
559
|
-
};
|
|
560
545
|
/**
|
|
561
546
|
*
|
|
562
547
|
* @export
|
|
@@ -1382,7 +1367,7 @@ const CollectionApiAxiosParamCreator = function (configuration) {
|
|
|
1382
1367
|
*
|
|
1383
1368
|
* @param {string} company
|
|
1384
1369
|
* @param {number} [page]
|
|
1385
|
-
* @param {
|
|
1370
|
+
* @param {number} [itemsPerPage]
|
|
1386
1371
|
* @param {string} [search]
|
|
1387
1372
|
* @param {string} [startDate]
|
|
1388
1373
|
* @param {string} [endDate]
|
|
@@ -1475,7 +1460,7 @@ const CollectionApiFp = function (configuration) {
|
|
|
1475
1460
|
*
|
|
1476
1461
|
* @param {string} company
|
|
1477
1462
|
* @param {number} [page]
|
|
1478
|
-
* @param {
|
|
1463
|
+
* @param {number} [itemsPerPage]
|
|
1479
1464
|
* @param {string} [search]
|
|
1480
1465
|
* @param {string} [startDate]
|
|
1481
1466
|
* @param {string} [endDate]
|
|
@@ -1731,7 +1716,7 @@ const PageApiAxiosParamCreator = function (configuration) {
|
|
|
1731
1716
|
*
|
|
1732
1717
|
* @param {string} company
|
|
1733
1718
|
* @param {number} [page]
|
|
1734
|
-
* @param {
|
|
1719
|
+
* @param {number} [itemsPerPage]
|
|
1735
1720
|
* @param {string} [search]
|
|
1736
1721
|
* @param {string} [startDate]
|
|
1737
1722
|
* @param {string} [endDate]
|
|
@@ -1847,7 +1832,7 @@ const PageApiFp = function (configuration) {
|
|
|
1847
1832
|
*
|
|
1848
1833
|
* @param {string} company
|
|
1849
1834
|
* @param {number} [page]
|
|
1850
|
-
* @param {
|
|
1835
|
+
* @param {number} [itemsPerPage]
|
|
1851
1836
|
* @param {string} [search]
|
|
1852
1837
|
* @param {string} [startDate]
|
|
1853
1838
|
* @param {string} [endDate]
|
|
@@ -1989,7 +1974,7 @@ const ProductApiAxiosParamCreator = function (configuration) {
|
|
|
1989
1974
|
*
|
|
1990
1975
|
* @param {string} company
|
|
1991
1976
|
* @param {number} [page]
|
|
1992
|
-
* @param {
|
|
1977
|
+
* @param {number} [itemsPerPage]
|
|
1993
1978
|
* @param {string} [search]
|
|
1994
1979
|
* @param {string} [startDate]
|
|
1995
1980
|
* @param {string} [endDate]
|
|
@@ -2130,7 +2115,7 @@ const ProductApiFp = function (configuration) {
|
|
|
2130
2115
|
*
|
|
2131
2116
|
* @param {string} company
|
|
2132
2117
|
* @param {number} [page]
|
|
2133
|
-
* @param {
|
|
2118
|
+
* @param {number} [itemsPerPage]
|
|
2134
2119
|
* @param {string} [search]
|
|
2135
2120
|
* @param {string} [startDate]
|
|
2136
2121
|
* @param {string} [endDate]
|
package/dist/api/api.mjs
CHANGED
|
@@ -532,21 +532,6 @@ export const PageTypeEnum = {
|
|
|
532
532
|
CHECKOUT: 'checkout',
|
|
533
533
|
NOT_FOUND: 'not-found'
|
|
534
534
|
};
|
|
535
|
-
/**
|
|
536
|
-
*
|
|
537
|
-
* @export
|
|
538
|
-
* @enum {string}
|
|
539
|
-
*/
|
|
540
|
-
export const PaginationLimitEnum = {
|
|
541
|
-
NUMBER_10: 10,
|
|
542
|
-
NUMBER_20: 20,
|
|
543
|
-
NUMBER_30: 30,
|
|
544
|
-
NUMBER_40: 40,
|
|
545
|
-
NUMBER_50: 50,
|
|
546
|
-
NUMBER_100: 100,
|
|
547
|
-
NUMBER_200: 200,
|
|
548
|
-
NUMBER_500: 500
|
|
549
|
-
};
|
|
550
535
|
/**
|
|
551
536
|
*
|
|
552
537
|
* @export
|
|
@@ -1364,7 +1349,7 @@ export const CollectionApiAxiosParamCreator = function (configuration) {
|
|
|
1364
1349
|
*
|
|
1365
1350
|
* @param {string} company
|
|
1366
1351
|
* @param {number} [page]
|
|
1367
|
-
* @param {
|
|
1352
|
+
* @param {number} [itemsPerPage]
|
|
1368
1353
|
* @param {string} [search]
|
|
1369
1354
|
* @param {string} [startDate]
|
|
1370
1355
|
* @param {string} [endDate]
|
|
@@ -1456,7 +1441,7 @@ export const CollectionApiFp = function (configuration) {
|
|
|
1456
1441
|
*
|
|
1457
1442
|
* @param {string} company
|
|
1458
1443
|
* @param {number} [page]
|
|
1459
|
-
* @param {
|
|
1444
|
+
* @param {number} [itemsPerPage]
|
|
1460
1445
|
* @param {string} [search]
|
|
1461
1446
|
* @param {string} [startDate]
|
|
1462
1447
|
* @param {string} [endDate]
|
|
@@ -1705,7 +1690,7 @@ export const PageApiAxiosParamCreator = function (configuration) {
|
|
|
1705
1690
|
*
|
|
1706
1691
|
* @param {string} company
|
|
1707
1692
|
* @param {number} [page]
|
|
1708
|
-
* @param {
|
|
1693
|
+
* @param {number} [itemsPerPage]
|
|
1709
1694
|
* @param {string} [search]
|
|
1710
1695
|
* @param {string} [startDate]
|
|
1711
1696
|
* @param {string} [endDate]
|
|
@@ -1820,7 +1805,7 @@ export const PageApiFp = function (configuration) {
|
|
|
1820
1805
|
*
|
|
1821
1806
|
* @param {string} company
|
|
1822
1807
|
* @param {number} [page]
|
|
1823
|
-
* @param {
|
|
1808
|
+
* @param {number} [itemsPerPage]
|
|
1824
1809
|
* @param {string} [search]
|
|
1825
1810
|
* @param {string} [startDate]
|
|
1826
1811
|
* @param {string} [endDate]
|
|
@@ -1959,7 +1944,7 @@ export const ProductApiAxiosParamCreator = function (configuration) {
|
|
|
1959
1944
|
*
|
|
1960
1945
|
* @param {string} company
|
|
1961
1946
|
* @param {number} [page]
|
|
1962
|
-
* @param {
|
|
1947
|
+
* @param {number} [itemsPerPage]
|
|
1963
1948
|
* @param {string} [search]
|
|
1964
1949
|
* @param {string} [startDate]
|
|
1965
1950
|
* @param {string} [endDate]
|
|
@@ -2099,7 +2084,7 @@ export const ProductApiFp = function (configuration) {
|
|
|
2099
2084
|
*
|
|
2100
2085
|
* @param {string} company
|
|
2101
2086
|
* @param {number} [page]
|
|
2102
|
-
* @param {
|
|
2087
|
+
* @param {number} [itemsPerPage]
|
|
2103
2088
|
* @param {string} [search]
|
|
2104
2089
|
* @param {string} [startDate]
|
|
2105
2090
|
* @param {string} [endDate]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api-client",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.18",
|
|
4
4
|
"description": "api-client-sdk",
|
|
5
5
|
"author": "Muhammet KÖKLÜ <105980019+byhipernova@users.noreply.github.com>",
|
|
6
6
|
"homepage": "https://github.com/infisale/infisale-client#readme",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"bugs": {
|
|
37
37
|
"url": "https://github.com/infisale/infisale-client/issues"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "b82699a1ff281029c72965d9842251b4a2ff20e9"
|
|
40
40
|
}
|