@infisale-client/api-client 1.1.4 → 1.1.17

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 CHANGED
@@ -471,6 +471,21 @@ export declare const EmailConfigDnsRecordTypeEnum: {
471
471
  readonly MX: "MX";
472
472
  };
473
473
  export type EmailConfigDnsRecordTypeEnum = typeof EmailConfigDnsRecordTypeEnum[keyof typeof EmailConfigDnsRecordTypeEnum];
474
+ /**
475
+ *
476
+ * @export
477
+ * @enum {string}
478
+ */
479
+ export declare const FileKeywordEnum: {
480
+ readonly CAROUSEL: "carousel";
481
+ readonly BANNER: "banner";
482
+ readonly CONTENT: "content";
483
+ readonly LOGO: "logo";
484
+ readonly PRODUCT: "product";
485
+ readonly ATTACHMENT: "attachment";
486
+ readonly COMMENT: "comment";
487
+ };
488
+ export type FileKeywordEnum = typeof FileKeywordEnum[keyof typeof FileKeywordEnum];
474
489
  /**
475
490
  *
476
491
  * @export
@@ -511,6 +526,49 @@ export declare const GridTypeEnum: {
511
526
  readonly _1_1_2: "1-1-2";
512
527
  };
513
528
  export type GridTypeEnum = typeof GridTypeEnum[keyof typeof GridTypeEnum];
529
+ /**
530
+ *
531
+ * @export
532
+ * @interface IAddProductToBasketRequest
533
+ */
534
+ export interface IAddProductToBasketRequest {
535
+ /**
536
+ *
537
+ * @type {string}
538
+ * @memberof IAddProductToBasketRequest
539
+ */
540
+ 'domain': string;
541
+ /**
542
+ *
543
+ * @type {string}
544
+ * @memberof IAddProductToBasketRequest
545
+ */
546
+ 'basket'?: string;
547
+ /**
548
+ *
549
+ * @type {string}
550
+ * @memberof IAddProductToBasketRequest
551
+ */
552
+ 'product': string;
553
+ /**
554
+ *
555
+ * @type {number}
556
+ * @memberof IAddProductToBasketRequest
557
+ */
558
+ 'amount': number;
559
+ /**
560
+ *
561
+ * @type {string}
562
+ * @memberof IAddProductToBasketRequest
563
+ */
564
+ 'main_variant'?: string;
565
+ /**
566
+ *
567
+ * @type {string}
568
+ * @memberof IAddProductToBasketRequest
569
+ */
570
+ 'sub_variant'?: string;
571
+ }
514
572
  /**
515
573
  *
516
574
  * @export
@@ -550,6 +608,118 @@ export interface IAllProductsResponse {
550
608
  */
551
609
  'data': Array<PickIProductIdOrContentsOrCollectionsOrCategory>;
552
610
  }
611
+ /**
612
+ *
613
+ * @export
614
+ * @interface IBasketMergeRequest
615
+ */
616
+ export interface IBasketMergeRequest {
617
+ /**
618
+ *
619
+ * @type {string}
620
+ * @memberof IBasketMergeRequest
621
+ */
622
+ 'id': string;
623
+ }
624
+ /**
625
+ *
626
+ * @export
627
+ * @interface IBasketResponse
628
+ */
629
+ export interface IBasketResponse {
630
+ /**
631
+ *
632
+ * @type {string}
633
+ * @memberof IBasketResponse
634
+ */
635
+ 'company': string;
636
+ /**
637
+ *
638
+ * @type {string}
639
+ * @memberof IBasketResponse
640
+ */
641
+ '_id': string;
642
+ /**
643
+ *
644
+ * @type {number}
645
+ * @memberof IBasketResponse
646
+ */
647
+ '__v': number;
648
+ /**
649
+ *
650
+ * @type {string}
651
+ * @memberof IBasketResponse
652
+ */
653
+ 'createdAt': string;
654
+ /**
655
+ *
656
+ * @type {string}
657
+ * @memberof IBasketResponse
658
+ */
659
+ 'updatedAt': string;
660
+ /**
661
+ *
662
+ * @type {string}
663
+ * @memberof IBasketResponse
664
+ */
665
+ 'user': string;
666
+ /**
667
+ *
668
+ * @type {Array<IBasketResponseItemsInner>}
669
+ * @memberof IBasketResponse
670
+ */
671
+ 'items': Array<IBasketResponseItemsInner>;
672
+ }
673
+ /**
674
+ *
675
+ * @export
676
+ * @interface IBasketResponseItemsInner
677
+ */
678
+ export interface IBasketResponseItemsInner {
679
+ /**
680
+ *
681
+ * @type {string}
682
+ * @memberof IBasketResponseItemsInner
683
+ */
684
+ 'sub_variant'?: string;
685
+ /**
686
+ *
687
+ * @type {string}
688
+ * @memberof IBasketResponseItemsInner
689
+ */
690
+ 'main_variant'?: string;
691
+ /**
692
+ *
693
+ * @type {number}
694
+ * @memberof IBasketResponseItemsInner
695
+ */
696
+ 'amount': number;
697
+ /**
698
+ *
699
+ * @type {IProductsResponse}
700
+ * @memberof IBasketResponseItemsInner
701
+ */
702
+ 'product': IProductsResponse;
703
+ /**
704
+ *
705
+ * @type {string}
706
+ * @memberof IBasketResponseItemsInner
707
+ */
708
+ '_id': string;
709
+ }
710
+ /**
711
+ *
712
+ * @export
713
+ * @interface IBasketUpdateAmountRequest
714
+ */
715
+ export interface IBasketUpdateAmountRequest {
716
+ /**
717
+ *
718
+ * @type {number}
719
+ * @memberof IBasketUpdateAmountRequest
720
+ */
721
+ 'amount': number;
722
+ }
553
723
  /**
554
724
  *
555
725
  * @export
@@ -564,10 +734,10 @@ export interface IBrandCollectionQueryParams {
564
734
  'page'?: number;
565
735
  /**
566
736
  *
567
- * @type {PaginationLimitEnum}
737
+ * @type {number}
568
738
  * @memberof IBrandCollectionQueryParams
569
739
  */
570
- 'itemsPerPage'?: PaginationLimitEnum;
740
+ 'itemsPerPage'?: number;
571
741
  /**
572
742
  *
573
743
  * @type {string}
@@ -850,10 +1020,10 @@ export interface ICategoryCollectionQueryParams {
850
1020
  'page'?: number;
851
1021
  /**
852
1022
  *
853
- * @type {PaginationLimitEnum}
1023
+ * @type {number}
854
1024
  * @memberof ICategoryCollectionQueryParams
855
1025
  */
856
- 'itemsPerPage'?: PaginationLimitEnum;
1026
+ 'itemsPerPage'?: number;
857
1027
  /**
858
1028
  *
859
1029
  * @type {string}
@@ -1211,10 +1381,10 @@ export interface ICollectionCollectionsQueryParams {
1211
1381
  'page'?: number;
1212
1382
  /**
1213
1383
  *
1214
- * @type {PaginationLimitEnum}
1384
+ * @type {number}
1215
1385
  * @memberof ICollectionCollectionsQueryParams
1216
1386
  */
1217
- 'itemsPerPage'?: PaginationLimitEnum;
1387
+ 'itemsPerPage'?: number;
1218
1388
  /**
1219
1389
  *
1220
1390
  * @type {string}
@@ -1547,17 +1717,17 @@ export interface ICompany {
1547
1717
  'custom_hostnames': Array<ICompanyResponseCustomHostnamesInner>;
1548
1718
  /**
1549
1719
  *
1550
- * @type {Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageUsersInner>}
1720
+ * @type {Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner>}
1551
1721
  * @memberof ICompany
1552
1722
  */
1553
- 'users': Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageUsersInner>;
1723
+ 'users': Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner>;
1554
1724
  /**
1555
1725
  *
1556
- * @type {{ [key: string]: ICompanyResponseRolesValue; }}
1726
+ * @type {{ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue; }}
1557
1727
  * @memberof ICompany
1558
1728
  */
1559
1729
  'roles': {
1560
- [key: string]: ICompanyResponseRolesValue;
1730
+ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue;
1561
1731
  };
1562
1732
  /**
1563
1733
  *
@@ -1653,6 +1823,12 @@ export interface ICompany {
1653
1823
  * @memberof ICompany
1654
1824
  */
1655
1825
  'sender_email'?: string;
1826
+ /**
1827
+ *
1828
+ * @type {string}
1829
+ * @memberof ICompany
1830
+ */
1831
+ 'sender_name'?: string;
1656
1832
  /**
1657
1833
  *
1658
1834
  * @type {Array<ICompanyResponseSenderEmailDnsRecordsInner>}
@@ -1672,6 +1848,254 @@ export interface ICompany {
1672
1848
  */
1673
1849
  'versions': Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner>;
1674
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
+ }
1675
2099
  /**
1676
2100
  *
1677
2101
  * @export
@@ -1686,10 +2110,10 @@ export interface ICompanyCollectionQueryParams {
1686
2110
  'page'?: number;
1687
2111
  /**
1688
2112
  *
1689
- * @type {PaginationLimitEnum}
2113
+ * @type {number}
1690
2114
  * @memberof ICompanyCollectionQueryParams
1691
2115
  */
1692
- 'itemsPerPage'?: PaginationLimitEnum;
2116
+ 'itemsPerPage'?: number;
1693
2117
  /**
1694
2118
  *
1695
2119
  * @type {string}
@@ -2000,11 +2424,11 @@ export interface ICompanyPatchRequest {
2000
2424
  'email'?: string;
2001
2425
  /**
2002
2426
  *
2003
- * @type {{ [key: string]: ICompanyResponseRolesValue; }}
2427
+ * @type {{ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue; }}
2004
2428
  * @memberof ICompanyPatchRequest
2005
2429
  */
2006
2430
  'roles'?: {
2007
- [key: string]: ICompanyResponseRolesValue;
2431
+ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue;
2008
2432
  };
2009
2433
  /**
2010
2434
  *
@@ -2020,16 +2444,10 @@ export interface ICompanyPatchRequest {
2020
2444
  'status'?: CompanyStatusEnum;
2021
2445
  /**
2022
2446
  *
2023
- * @type {string}
2447
+ * @type {Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner>}
2024
2448
  * @memberof ICompanyPatchRequest
2025
2449
  */
2026
- 'owner'?: string;
2027
- /**
2028
- *
2029
- * @type {Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageUsersInner>}
2030
- * @memberof ICompanyPatchRequest
2031
- */
2032
- 'users'?: Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageUsersInner>;
2450
+ 'users'?: Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner>;
2033
2451
  /**
2034
2452
  *
2035
2453
  * @type {ICompanyPostRequestFirebaseAdminCredentials}
@@ -2048,6 +2466,12 @@ export interface ICompanyPatchRequest {
2048
2466
  * @memberof ICompanyPatchRequest
2049
2467
  */
2050
2468
  'type'?: CompanyTypeEnum;
2469
+ /**
2470
+ *
2471
+ * @type {string}
2472
+ * @memberof ICompanyPatchRequest
2473
+ */
2474
+ 'owner'?: string;
2051
2475
  /**
2052
2476
  *
2053
2477
  * @type {ICompanyResponseAddress}
@@ -2110,12 +2534,6 @@ export interface ICompanyPatchRequest {
2110
2534
  * @memberof ICompanyPatchRequest
2111
2535
  */
2112
2536
  'warehouses'?: Array<ICompanyPostRequestWarehousesInner>;
2113
- /**
2114
- *
2115
- * @type {string}
2116
- * @memberof ICompanyPatchRequest
2117
- */
2118
- 'sender_email'?: string;
2119
2537
  /**
2120
2538
  *
2121
2539
  * @type {Array<ICompanyResponseSenderEmailDnsRecordsInner>}
@@ -2149,11 +2567,11 @@ export interface ICompanyPostRequest {
2149
2567
  'email'?: string;
2150
2568
  /**
2151
2569
  *
2152
- * @type {{ [key: string]: ICompanyResponseRolesValue; }}
2570
+ * @type {{ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue; }}
2153
2571
  * @memberof ICompanyPostRequest
2154
2572
  */
2155
2573
  'roles': {
2156
- [key: string]: ICompanyResponseRolesValue;
2574
+ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue;
2157
2575
  };
2158
2576
  /**
2159
2577
  *
@@ -2241,12 +2659,6 @@ export interface ICompanyPostRequest {
2241
2659
  * @memberof ICompanyPostRequest
2242
2660
  */
2243
2661
  'currencies': RecordCurrencyEnumCurrency;
2244
- /**
2245
- *
2246
- * @type {string}
2247
- * @memberof ICompanyPostRequest
2248
- */
2249
- 'sender_email'?: string;
2250
2662
  /**
2251
2663
  *
2252
2664
  * @type {Array<ICompanyResponseSenderEmailDnsRecordsInner>}
@@ -2261,10 +2673,10 @@ export interface ICompanyPostRequest {
2261
2673
  'owner': string;
2262
2674
  /**
2263
2675
  *
2264
- * @type {Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageUsersInner>}
2676
+ * @type {Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner>}
2265
2677
  * @memberof ICompanyPostRequest
2266
2678
  */
2267
- 'users': Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageUsersInner>;
2679
+ 'users': Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner>;
2268
2680
  /**
2269
2681
  *
2270
2682
  * @type {Array<ICompanyPostRequestWarehousesInner>}
@@ -2393,27 +2805,13 @@ export interface ICompanyResponse {
2393
2805
  * @type {string}
2394
2806
  * @memberof ICompanyResponse
2395
2807
  */
2396
- 'phone'?: string;
2397
- /**
2398
- *
2399
- * @type {string}
2400
- * @memberof ICompanyResponse
2401
- */
2402
- 'email'?: string;
2403
- /**
2404
- *
2405
- * @type {{ [key: string]: ICompanyResponseRolesValue; }}
2406
- * @memberof ICompanyResponse
2407
- */
2408
- 'roles': {
2409
- [key: string]: ICompanyResponseRolesValue;
2410
- };
2808
+ 'phone'?: string;
2411
2809
  /**
2412
2810
  *
2413
- * @type {Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner>}
2811
+ * @type {string}
2414
2812
  * @memberof ICompanyResponse
2415
2813
  */
2416
- 'versions': Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner>;
2814
+ 'email'?: string;
2417
2815
  /**
2418
2816
  *
2419
2817
  * @type {LanguageEnum}
@@ -2462,6 +2860,12 @@ export interface ICompanyResponse {
2462
2860
  * @memberof ICompanyResponse
2463
2861
  */
2464
2862
  'type': CompanyTypeEnum;
2863
+ /**
2864
+ *
2865
+ * @type {string}
2866
+ * @memberof ICompanyResponse
2867
+ */
2868
+ 'owner': string;
2465
2869
  /**
2466
2870
  *
2467
2871
  * @type {ICompanyResponseAddress}
@@ -2564,34 +2968,22 @@ export interface ICompanyResponse {
2564
2968
  'sender_email'?: string;
2565
2969
  /**
2566
2970
  *
2567
- * @type {Array<ICompanyResponseSenderEmailDnsRecordsInner>}
2568
- * @memberof ICompanyResponse
2569
- */
2570
- 'sender_email_dns_records'?: Array<ICompanyResponseSenderEmailDnsRecordsInner>;
2571
- /**
2572
- *
2573
- * @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguage}
2574
- * @memberof ICompanyResponse
2575
- */
2576
- 'main'?: PickICompanyNameOrDomainsOrIdOrUsersOrLanguage;
2577
- /**
2578
- *
2579
- * @type {IUserResponse}
2971
+ * @type {string}
2580
2972
  * @memberof ICompanyResponse
2581
2973
  */
2582
- 'owner': IUserResponse;
2974
+ 'sender_name'?: string;
2583
2975
  /**
2584
2976
  *
2585
- * @type {Array<ICompanyResponseUsersInner>}
2977
+ * @type {Array<ICompanyResponseSenderEmailDnsRecordsInner>}
2586
2978
  * @memberof ICompanyResponse
2587
2979
  */
2588
- 'users': Array<ICompanyResponseUsersInner>;
2980
+ 'sender_email_dns_records'?: Array<ICompanyResponseSenderEmailDnsRecordsInner>;
2589
2981
  /**
2590
2982
  *
2591
- * @type {IPlanResponse}
2983
+ * @type {PickICompanyNameOrDomainsOrIdOrLanguage}
2592
2984
  * @memberof ICompanyResponse
2593
2985
  */
2594
- '_plan': IPlanResponse;
2986
+ 'main'?: PickICompanyNameOrDomainsOrIdOrLanguage;
2595
2987
  /**
2596
2988
  *
2597
2989
  * @type {ICompanyResponseConfig}
@@ -2844,62 +3236,6 @@ export interface ICompanyResponseNavigationsValue {
2844
3236
  */
2845
3237
  'header': Array<NavigationUrl>;
2846
3238
  }
2847
- /**
2848
- *
2849
- * @export
2850
- * @interface ICompanyResponseRolesValue
2851
- */
2852
- export interface ICompanyResponseRolesValue {
2853
- /**
2854
- *
2855
- * @type {ICompanyResponseRolesValueConfig}
2856
- * @memberof ICompanyResponseRolesValue
2857
- */
2858
- 'config': ICompanyResponseRolesValueConfig;
2859
- /**
2860
- *
2861
- * @type {ICompanyResponseRolesValueConfig}
2862
- * @memberof ICompanyResponseRolesValue
2863
- */
2864
- 'navigation': ICompanyResponseRolesValueConfig;
2865
- /**
2866
- *
2867
- * @type {ICompanyResponseRolesValueConfig}
2868
- * @memberof ICompanyResponseRolesValue
2869
- */
2870
- 'company': ICompanyResponseRolesValueConfig;
2871
- /**
2872
- *
2873
- * @type {ICompanyResponseRolesValueConfig}
2874
- * @memberof ICompanyResponseRolesValue
2875
- */
2876
- 'page': ICompanyResponseRolesValueConfig;
2877
- /**
2878
- *
2879
- * @type {ICompanyResponseRolesValueConfig}
2880
- * @memberof ICompanyResponseRolesValue
2881
- */
2882
- 'product': ICompanyResponseRolesValueConfig;
2883
- }
2884
- /**
2885
- *
2886
- * @export
2887
- * @interface ICompanyResponseRolesValueConfig
2888
- */
2889
- export interface ICompanyResponseRolesValueConfig {
2890
- /**
2891
- *
2892
- * @type {boolean}
2893
- * @memberof ICompanyResponseRolesValueConfig
2894
- */
2895
- 'd': boolean;
2896
- /**
2897
- *
2898
- * @type {boolean}
2899
- * @memberof ICompanyResponseRolesValueConfig
2900
- */
2901
- 'm': boolean;
2902
- }
2903
3239
  /**
2904
3240
  *
2905
3241
  * @export
@@ -2931,31 +3267,6 @@ export interface ICompanyResponseSenderEmailDnsRecordsInner {
2931
3267
  */
2932
3268
  'key': string;
2933
3269
  }
2934
- /**
2935
- *
2936
- * @export
2937
- * @interface ICompanyResponseUsersInner
2938
- */
2939
- export interface ICompanyResponseUsersInner {
2940
- /**
2941
- *
2942
- * @type {CompanyUserStatusEnum}
2943
- * @memberof ICompanyResponseUsersInner
2944
- */
2945
- 'status': CompanyUserStatusEnum;
2946
- /**
2947
- *
2948
- * @type {string}
2949
- * @memberof ICompanyResponseUsersInner
2950
- */
2951
- 'role': string;
2952
- /**
2953
- *
2954
- * @type {IUserResponse}
2955
- * @memberof ICompanyResponseUsersInner
2956
- */
2957
- 'user': IUserResponse;
2958
- }
2959
3270
  /**
2960
3271
  *
2961
3272
  * @export
@@ -3098,10 +3409,10 @@ export interface ICompanyUsersCollectionQueryParams {
3098
3409
  'page'?: number;
3099
3410
  /**
3100
3411
  *
3101
- * @type {PaginationLimitEnum}
3412
+ * @type {number}
3102
3413
  * @memberof ICompanyUsersCollectionQueryParams
3103
3414
  */
3104
- 'itemsPerPage'?: PaginationLimitEnum;
3415
+ 'itemsPerPage'?: number;
3105
3416
  /**
3106
3417
  *
3107
3418
  * @type {string}
@@ -3145,6 +3456,19 @@ export interface ICompanyUsersCollectionQueryParams {
3145
3456
  */
3146
3457
  'status'?: CompanyUserStatusEnum;
3147
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
+ }
3148
3472
  /**
3149
3473
  *
3150
3474
  * @export
@@ -3363,10 +3687,10 @@ export interface IFileCollectionQueryParams {
3363
3687
  'page'?: number;
3364
3688
  /**
3365
3689
  *
3366
- * @type {PaginationLimitEnum}
3690
+ * @type {number}
3367
3691
  * @memberof IFileCollectionQueryParams
3368
3692
  */
3369
- 'itemsPerPage'?: PaginationLimitEnum;
3693
+ 'itemsPerPage'?: number;
3370
3694
  /**
3371
3695
  *
3372
3696
  * @type {string}
@@ -3408,13 +3732,13 @@ export interface IFileCollectionQueryParams {
3408
3732
  * @type {string}
3409
3733
  * @memberof IFileCollectionQueryParams
3410
3734
  */
3411
- 'user'?: string;
3735
+ 'company': string;
3412
3736
  /**
3413
3737
  *
3414
- * @type {string}
3738
+ * @type {Array<FileKeywordEnum>}
3415
3739
  * @memberof IFileCollectionQueryParams
3416
3740
  */
3417
- 'company'?: string;
3741
+ 'keywords'?: Array<FileKeywordEnum>;
3418
3742
  /**
3419
3743
  *
3420
3744
  * @type {FileTypeEnum}
@@ -3442,10 +3766,10 @@ export interface IFilePatchRequest {
3442
3766
  'name'?: string;
3443
3767
  /**
3444
3768
  *
3445
- * @type {FileStatusEnum}
3769
+ * @type {Array<FileKeywordEnum>}
3446
3770
  * @memberof IFilePatchRequest
3447
3771
  */
3448
- 'status'?: FileStatusEnum;
3772
+ 'keywords'?: Array<FileKeywordEnum>;
3449
3773
  }
3450
3774
  /**
3451
3775
  *
@@ -3453,18 +3777,6 @@ export interface IFilePatchRequest {
3453
3777
  * @interface IFileResponse
3454
3778
  */
3455
3779
  export interface IFileResponse {
3456
- /**
3457
- *
3458
- * @type {string}
3459
- * @memberof IFileResponse
3460
- */
3461
- 'name': string;
3462
- /**
3463
- *
3464
- * @type {FileStatusEnum}
3465
- * @memberof IFileResponse
3466
- */
3467
- 'status': FileStatusEnum;
3468
3780
  /**
3469
3781
  *
3470
3782
  * @type {string}
@@ -3491,78 +3803,52 @@ export interface IFileResponse {
3491
3803
  'updatedAt': string;
3492
3804
  /**
3493
3805
  *
3494
- * @type {FileTypeEnum}
3806
+ * @type {string}
3495
3807
  * @memberof IFileResponse
3496
3808
  */
3497
- 'type': FileTypeEnum;
3809
+ 'name': string;
3498
3810
  /**
3499
3811
  *
3500
- * @type {Array<IImagePathsInner>}
3812
+ * @type {string}
3501
3813
  * @memberof IFileResponse
3502
3814
  */
3503
- 'paths': Array<IImagePathsInner>;
3815
+ 'user'?: string;
3504
3816
  /**
3505
3817
  *
3506
3818
  * @type {string}
3507
3819
  * @memberof IFileResponse
3508
3820
  */
3509
- 'mimetype': string;
3821
+ 'company'?: string;
3510
3822
  /**
3511
3823
  *
3512
- * @type {IFileResponseUser}
3824
+ * @type {Array<IImagePathsInner>}
3513
3825
  * @memberof IFileResponse
3514
3826
  */
3515
- 'user'?: IFileResponseUser;
3827
+ 'paths': Array<IImagePathsInner>;
3516
3828
  /**
3517
3829
  *
3518
- * @type {IFileResponseCompany}
3830
+ * @type {FileTypeEnum}
3519
3831
  * @memberof IFileResponse
3520
3832
  */
3521
- 'company'?: IFileResponseCompany;
3522
- }
3523
- /**
3524
- *
3525
- * @export
3526
- * @interface IFileResponseCompany
3527
- */
3528
- export interface IFileResponseCompany {
3529
- /**
3530
- *
3531
- * @type {string}
3532
- * @memberof IFileResponseCompany
3533
- */
3534
- 'name': string;
3535
- /**
3536
- *
3537
- * @type {string}
3538
- * @memberof IFileResponseCompany
3539
- */
3540
- '_id': string;
3541
- }
3542
- /**
3543
- *
3544
- * @export
3545
- * @interface IFileResponseUser
3546
- */
3547
- export interface IFileResponseUser {
3833
+ 'type': FileTypeEnum;
3548
3834
  /**
3549
3835
  *
3550
- * @type {string}
3551
- * @memberof IFileResponseUser
3836
+ * @type {Array<FileKeywordEnum>}
3837
+ * @memberof IFileResponse
3552
3838
  */
3553
- 'email': string;
3839
+ 'keywords'?: Array<FileKeywordEnum>;
3554
3840
  /**
3555
3841
  *
3556
3842
  * @type {string}
3557
- * @memberof IFileResponseUser
3843
+ * @memberof IFileResponse
3558
3844
  */
3559
- 'name': string;
3845
+ 'mimetype': string;
3560
3846
  /**
3561
3847
  *
3562
- * @type {string}
3563
- * @memberof IFileResponseUser
3848
+ * @type {FileStatusEnum}
3849
+ * @memberof IFileResponse
3564
3850
  */
3565
- '_id': string;
3851
+ 'status': FileStatusEnum;
3566
3852
  }
3567
3853
  /**
3568
3854
  *
@@ -3772,10 +4058,10 @@ export interface INotificationCollectionQueryParams {
3772
4058
  'page'?: number;
3773
4059
  /**
3774
4060
  *
3775
- * @type {PaginationLimitEnum}
4061
+ * @type {number}
3776
4062
  * @memberof INotificationCollectionQueryParams
3777
4063
  */
3778
- 'itemsPerPage'?: PaginationLimitEnum;
4064
+ 'itemsPerPage'?: number;
3779
4065
  /**
3780
4066
  *
3781
4067
  * @type {string}
@@ -3961,10 +4247,10 @@ export interface IOperationCollectionQueryParams {
3961
4247
  'page'?: number;
3962
4248
  /**
3963
4249
  *
3964
- * @type {PaginationLimitEnum}
4250
+ * @type {number}
3965
4251
  * @memberof IOperationCollectionQueryParams
3966
4252
  */
3967
- 'itemsPerPage'?: PaginationLimitEnum;
4253
+ 'itemsPerPage'?: number;
3968
4254
  /**
3969
4255
  *
3970
4256
  * @type {string}
@@ -4254,10 +4540,10 @@ export interface IPageCollectionQueryParams {
4254
4540
  'page'?: number;
4255
4541
  /**
4256
4542
  *
4257
- * @type {PaginationLimitEnum}
4543
+ * @type {number}
4258
4544
  * @memberof IPageCollectionQueryParams
4259
4545
  */
4260
- 'itemsPerPage'?: PaginationLimitEnum;
4546
+ 'itemsPerPage'?: number;
4261
4547
  /**
4262
4548
  *
4263
4549
  * @type {string}
@@ -4499,10 +4785,10 @@ export interface IPlanCollectionQueryParams {
4499
4785
  'page'?: number;
4500
4786
  /**
4501
4787
  *
4502
- * @type {PaginationLimitEnum}
4788
+ * @type {number}
4503
4789
  * @memberof IPlanCollectionQueryParams
4504
4790
  */
4505
- 'itemsPerPage'?: PaginationLimitEnum;
4791
+ 'itemsPerPage'?: number;
4506
4792
  /**
4507
4793
  *
4508
4794
  * @type {string}
@@ -4806,10 +5092,10 @@ export interface IProductCollectionQueryParams {
4806
5092
  'page'?: number;
4807
5093
  /**
4808
5094
  *
4809
- * @type {PaginationLimitEnum}
5095
+ * @type {number}
4810
5096
  * @memberof IProductCollectionQueryParams
4811
5097
  */
4812
- 'itemsPerPage'?: PaginationLimitEnum;
5098
+ 'itemsPerPage'?: number;
4813
5099
  /**
4814
5100
  *
4815
5101
  * @type {string}
@@ -6006,10 +6292,10 @@ export interface IUserCollectionQueryParams {
6006
6292
  'page'?: number;
6007
6293
  /**
6008
6294
  *
6009
- * @type {PaginationLimitEnum}
6295
+ * @type {number}
6010
6296
  * @memberof IUserCollectionQueryParams
6011
6297
  */
6012
- 'itemsPerPage'?: PaginationLimitEnum;
6298
+ 'itemsPerPage'?: number;
6013
6299
  /**
6014
6300
  *
6015
6301
  * @type {string}
@@ -6065,12 +6351,6 @@ export interface IUserPatchRequest {
6065
6351
  * @memberof IUserPatchRequest
6066
6352
  */
6067
6353
  'name'?: string;
6068
- /**
6069
- *
6070
- * @type {string}
6071
- * @memberof IUserPatchRequest
6072
- */
6073
- 'email'?: string;
6074
6354
  /**
6075
6355
  *
6076
6356
  * @type {string}
@@ -6089,12 +6369,6 @@ export interface IUserPatchRequest {
6089
6369
  * @memberof IUserPatchRequest
6090
6370
  */
6091
6371
  'roles'?: Array<UserRoleEnum>;
6092
- /**
6093
- *
6094
- * @type {UserStatusEnum}
6095
- * @memberof IUserPatchRequest
6096
- */
6097
- 'status'?: UserStatusEnum;
6098
6372
  }
6099
6373
  /**
6100
6374
  *
@@ -6132,12 +6406,6 @@ export interface IUserPostRequest {
6132
6406
  * @memberof IUserPostRequest
6133
6407
  */
6134
6408
  'roles'?: Array<UserRoleEnum>;
6135
- /**
6136
- *
6137
- * @type {UserStatusEnum}
6138
- * @memberof IUserPostRequest
6139
- */
6140
- 'status'?: UserStatusEnum;
6141
6409
  }
6142
6410
  /**
6143
6411
  *
@@ -6396,22 +6664,6 @@ export declare const PageTypeEnum: {
6396
6664
  readonly NOT_FOUND: "not-found";
6397
6665
  };
6398
6666
  export type PageTypeEnum = typeof PageTypeEnum[keyof typeof PageTypeEnum];
6399
- /**
6400
- *
6401
- * @export
6402
- * @enum {string}
6403
- */
6404
- export declare const PaginationLimitEnum: {
6405
- readonly NUMBER_10: 10;
6406
- readonly NUMBER_20: 20;
6407
- readonly NUMBER_30: 30;
6408
- readonly NUMBER_40: 40;
6409
- readonly NUMBER_50: 50;
6410
- readonly NUMBER_100: 100;
6411
- readonly NUMBER_200: 200;
6412
- readonly NUMBER_500: 500;
6413
- };
6414
- export type PaginationLimitEnum = typeof PaginationLimitEnum[keyof typeof PaginationLimitEnum];
6415
6667
  /**
6416
6668
  * From T, pick a set of properties whose keys are in the union K
6417
6669
  * @export
@@ -6459,62 +6711,163 @@ export interface PickICompanyIdOrName {
6459
6711
  /**
6460
6712
  * From T, pick a set of properties whose keys are in the union K
6461
6713
  * @export
6462
- * @interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguage
6714
+ * @interface PickICompanyNameOrDomainsOrIdOrLanguage
6715
+ */
6716
+ export interface PickICompanyNameOrDomainsOrIdOrLanguage {
6717
+ /**
6718
+ *
6719
+ * @type {string}
6720
+ * @memberof PickICompanyNameOrDomainsOrIdOrLanguage
6721
+ */
6722
+ 'name': string;
6723
+ /**
6724
+ *
6725
+ * @type {LanguageEnum}
6726
+ * @memberof PickICompanyNameOrDomainsOrIdOrLanguage
6727
+ */
6728
+ 'language': LanguageEnum;
6729
+ /**
6730
+ *
6731
+ * @type {string}
6732
+ * @memberof PickICompanyNameOrDomainsOrIdOrLanguage
6733
+ */
6734
+ '_id': string;
6735
+ /**
6736
+ *
6737
+ * @type {Array<string>}
6738
+ * @memberof PickICompanyNameOrDomainsOrIdOrLanguage
6739
+ */
6740
+ 'domains': Array<string>;
6741
+ }
6742
+ /**
6743
+ * From T, pick a set of properties whose keys are in the union K
6744
+ * @export
6745
+ * @interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
6463
6746
  */
6464
- export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguage {
6747
+ export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles {
6465
6748
  /**
6466
6749
  *
6467
6750
  * @type {string}
6468
- * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguage
6751
+ * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
6469
6752
  */
6470
6753
  'name': string;
6754
+ /**
6755
+ *
6756
+ * @type {{ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue; }}
6757
+ * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
6758
+ */
6759
+ 'roles': {
6760
+ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue;
6761
+ };
6471
6762
  /**
6472
6763
  *
6473
6764
  * @type {LanguageEnum}
6474
- * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguage
6765
+ * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
6475
6766
  */
6476
6767
  'language': LanguageEnum;
6477
6768
  /**
6478
6769
  *
6479
6770
  * @type {string}
6480
- * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguage
6771
+ * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
6481
6772
  */
6482
6773
  '_id': string;
6483
6774
  /**
6484
6775
  *
6485
- * @type {Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageUsersInner>}
6486
- * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguage
6776
+ * @type {Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner>}
6777
+ * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
6778
+ */
6779
+ 'users': Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner>;
6780
+ /**
6781
+ *
6782
+ * @type {string}
6783
+ * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
6487
6784
  */
6488
- 'users': Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageUsersInner>;
6785
+ 'owner': string;
6489
6786
  /**
6490
6787
  *
6491
6788
  * @type {Array<string>}
6492
- * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguage
6789
+ * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
6493
6790
  */
6494
6791
  'domains': Array<string>;
6495
6792
  }
6496
6793
  /**
6497
6794
  *
6498
6795
  * @export
6499
- * @interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageUsersInner
6796
+ * @interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
6797
+ */
6798
+ export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue {
6799
+ /**
6800
+ *
6801
+ * @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig}
6802
+ * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
6803
+ */
6804
+ 'config': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig;
6805
+ /**
6806
+ *
6807
+ * @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig}
6808
+ * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
6809
+ */
6810
+ 'navigation': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig;
6811
+ /**
6812
+ *
6813
+ * @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig}
6814
+ * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
6815
+ */
6816
+ 'company': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig;
6817
+ /**
6818
+ *
6819
+ * @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig}
6820
+ * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
6821
+ */
6822
+ 'page': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig;
6823
+ /**
6824
+ *
6825
+ * @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig}
6826
+ * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
6827
+ */
6828
+ 'product': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig;
6829
+ }
6830
+ /**
6831
+ *
6832
+ * @export
6833
+ * @interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig
6834
+ */
6835
+ export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig {
6836
+ /**
6837
+ *
6838
+ * @type {boolean}
6839
+ * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig
6840
+ */
6841
+ 'd': boolean;
6842
+ /**
6843
+ *
6844
+ * @type {boolean}
6845
+ * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig
6846
+ */
6847
+ 'm': boolean;
6848
+ }
6849
+ /**
6850
+ *
6851
+ * @export
6852
+ * @interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner
6500
6853
  */
6501
- export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageUsersInner {
6854
+ export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner {
6502
6855
  /**
6503
6856
  *
6504
6857
  * @type {CompanyUserStatusEnum}
6505
- * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageUsersInner
6858
+ * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner
6506
6859
  */
6507
6860
  'status': CompanyUserStatusEnum;
6508
6861
  /**
6509
6862
  *
6510
6863
  * @type {string}
6511
- * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageUsersInner
6864
+ * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner
6512
6865
  */
6513
6866
  'role': string;
6514
6867
  /**
6515
6868
  *
6516
6869
  * @type {string}
6517
- * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageUsersInner
6870
+ * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner
6518
6871
  */
6519
6872
  'user': string;
6520
6873
  }
@@ -7477,7 +7830,7 @@ export declare const CollectionApiAxiosParamCreator: (configuration?: Configurat
7477
7830
  *
7478
7831
  * @param {string} company
7479
7832
  * @param {number} [page]
7480
- * @param {PaginationLimitEnum} [itemsPerPage]
7833
+ * @param {number} [itemsPerPage]
7481
7834
  * @param {string} [search]
7482
7835
  * @param {string} [startDate]
7483
7836
  * @param {string} [endDate]
@@ -7488,7 +7841,7 @@ export declare const CollectionApiAxiosParamCreator: (configuration?: Configurat
7488
7841
  * @param {*} [options] Override http request option.
7489
7842
  * @throws {RequiredError}
7490
7843
  */
7491
- getCollections: (company: string, page?: number, itemsPerPage?: PaginationLimitEnum, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7844
+ 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>;
7492
7845
  };
7493
7846
  /**
7494
7847
  * CollectionApi - functional programming interface
@@ -7507,7 +7860,7 @@ export declare const CollectionApiFp: (configuration?: Configuration) => {
7507
7860
  *
7508
7861
  * @param {string} company
7509
7862
  * @param {number} [page]
7510
- * @param {PaginationLimitEnum} [itemsPerPage]
7863
+ * @param {number} [itemsPerPage]
7511
7864
  * @param {string} [search]
7512
7865
  * @param {string} [startDate]
7513
7866
  * @param {string} [endDate]
@@ -7518,7 +7871,7 @@ export declare const CollectionApiFp: (configuration?: Configuration) => {
7518
7871
  * @param {*} [options] Override http request option.
7519
7872
  * @throws {RequiredError}
7520
7873
  */
7521
- getCollections(company: string, page?: number, itemsPerPage?: PaginationLimitEnum, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICollectionsResponse>>;
7874
+ 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>>;
7522
7875
  };
7523
7876
  /**
7524
7877
  * CollectionApi - factory interface
@@ -7579,10 +7932,10 @@ export interface CollectionApiGetCollectionsRequest {
7579
7932
  readonly page?: number;
7580
7933
  /**
7581
7934
  *
7582
- * @type {PaginationLimitEnum}
7935
+ * @type {number}
7583
7936
  * @memberof CollectionApiGetCollections
7584
7937
  */
7585
- readonly itemsPerPage?: PaginationLimitEnum;
7938
+ readonly itemsPerPage?: number;
7586
7939
  /**
7587
7940
  *
7588
7941
  * @type {string}
@@ -7745,7 +8098,7 @@ export declare const PageApiAxiosParamCreator: (configuration?: Configuration) =
7745
8098
  *
7746
8099
  * @param {string} company
7747
8100
  * @param {number} [page]
7748
- * @param {PaginationLimitEnum} [itemsPerPage]
8101
+ * @param {number} [itemsPerPage]
7749
8102
  * @param {string} [search]
7750
8103
  * @param {string} [startDate]
7751
8104
  * @param {string} [endDate]
@@ -7758,7 +8111,7 @@ export declare const PageApiAxiosParamCreator: (configuration?: Configuration) =
7758
8111
  * @param {*} [options] Override http request option.
7759
8112
  * @throws {RequiredError}
7760
8113
  */
7761
- getPages: (company: string, page?: number, itemsPerPage?: PaginationLimitEnum, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, domain?: string, type?: PageTypeEnum, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8114
+ 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>;
7762
8115
  };
7763
8116
  /**
7764
8117
  * PageApi - functional programming interface
@@ -7787,7 +8140,7 @@ export declare const PageApiFp: (configuration?: Configuration) => {
7787
8140
  *
7788
8141
  * @param {string} company
7789
8142
  * @param {number} [page]
7790
- * @param {PaginationLimitEnum} [itemsPerPage]
8143
+ * @param {number} [itemsPerPage]
7791
8144
  * @param {string} [search]
7792
8145
  * @param {string} [startDate]
7793
8146
  * @param {string} [endDate]
@@ -7800,7 +8153,7 @@ export declare const PageApiFp: (configuration?: Configuration) => {
7800
8153
  * @param {*} [options] Override http request option.
7801
8154
  * @throws {RequiredError}
7802
8155
  */
7803
- getPages(company: string, page?: number, itemsPerPage?: PaginationLimitEnum, 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>>;
8156
+ 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>>;
7804
8157
  };
7805
8158
  /**
7806
8159
  * PageApi - factory interface
@@ -7899,10 +8252,10 @@ export interface PageApiGetPagesRequest {
7899
8252
  readonly page?: number;
7900
8253
  /**
7901
8254
  *
7902
- * @type {PaginationLimitEnum}
8255
+ * @type {number}
7903
8256
  * @memberof PageApiGetPages
7904
8257
  */
7905
- readonly itemsPerPage?: PaginationLimitEnum;
8258
+ readonly itemsPerPage?: number;
7906
8259
  /**
7907
8260
  *
7908
8261
  * @type {string}
@@ -8007,7 +8360,7 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
8007
8360
  *
8008
8361
  * @param {string} company
8009
8362
  * @param {number} [page]
8010
- * @param {PaginationLimitEnum} [itemsPerPage]
8363
+ * @param {number} [itemsPerPage]
8011
8364
  * @param {string} [search]
8012
8365
  * @param {string} [startDate]
8013
8366
  * @param {string} [endDate]
@@ -8021,7 +8374,7 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
8021
8374
  * @param {*} [options] Override http request option.
8022
8375
  * @throws {RequiredError}
8023
8376
  */
8024
- getProducts: (company: string, page?: number, itemsPerPage?: PaginationLimitEnum, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, collections?: string, category?: string, brand?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8377
+ 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>;
8025
8378
  /**
8026
8379
  *
8027
8380
  * @param {string} company
@@ -8048,7 +8401,7 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
8048
8401
  *
8049
8402
  * @param {string} company
8050
8403
  * @param {number} [page]
8051
- * @param {PaginationLimitEnum} [itemsPerPage]
8404
+ * @param {number} [itemsPerPage]
8052
8405
  * @param {string} [search]
8053
8406
  * @param {string} [startDate]
8054
8407
  * @param {string} [endDate]
@@ -8062,7 +8415,7 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
8062
8415
  * @param {*} [options] Override http request option.
8063
8416
  * @throws {RequiredError}
8064
8417
  */
8065
- getProducts(company: string, page?: number, itemsPerPage?: PaginationLimitEnum, 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>>;
8418
+ 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>>;
8066
8419
  /**
8067
8420
  *
8068
8421
  * @param {string} company
@@ -8138,10 +8491,10 @@ export interface ProductApiGetProductsRequest {
8138
8491
  readonly page?: number;
8139
8492
  /**
8140
8493
  *
8141
- * @type {PaginationLimitEnum}
8494
+ * @type {number}
8142
8495
  * @memberof ProductApiGetProducts
8143
8496
  */
8144
- readonly itemsPerPage?: PaginationLimitEnum;
8497
+ readonly itemsPerPage?: number;
8145
8498
  /**
8146
8499
  *
8147
8500
  * @type {string}