repzo 1.0.33 → 1.0.35
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/lib/index.d.ts +333 -669
- package/lib/index.js +978 -1509
- package/lib/types/index.d.ts +4896 -5236
- package/package.json +1 -1
- package/src/types/index.ts +4 -0
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -1655,6 +1655,8 @@ export namespace Service {
|
|
|
1655
1655
|
search?: string;
|
|
1656
1656
|
name?: string[] | string;
|
|
1657
1657
|
disabled?: boolean;
|
|
1658
|
+
from_updatedAt?: number;
|
|
1659
|
+
to_updatedAt?: number;
|
|
1658
1660
|
};
|
|
1659
1661
|
export interface Result extends DefaultPaginationResult {
|
|
1660
1662
|
data: TeamSchema[];
|
|
@@ -1951,6 +1953,7 @@ export namespace Service {
|
|
|
1951
1953
|
disabled?: boolean;
|
|
1952
1954
|
integration_meta?: { [key: string]: any };
|
|
1953
1955
|
company_namespace: string[];
|
|
1956
|
+
teams?: string[];
|
|
1954
1957
|
createdAt: string;
|
|
1955
1958
|
updatedAt: string;
|
|
1956
1959
|
__v: number;
|
|
@@ -1959,6 +1962,7 @@ export namespace Service {
|
|
|
1959
1962
|
tag?: string;
|
|
1960
1963
|
type?: TagType;
|
|
1961
1964
|
disabled?: boolean;
|
|
1965
|
+
teams?: string[];
|
|
1962
1966
|
integration_meta?: { [key: string]: any };
|
|
1963
1967
|
company_namespace?: string[];
|
|
1964
1968
|
}
|