repzo 1.0.34 → 1.0.36
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 +667 -333
- package/lib/index.js +1509 -978
- package/lib/types/index.d.ts +5243 -4894
- package/package.json +1 -1
- package/src/types/index.ts +5 -0
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -1953,6 +1953,8 @@ export namespace Service {
|
|
|
1953
1953
|
disabled?: boolean;
|
|
1954
1954
|
integration_meta?: { [key: string]: any };
|
|
1955
1955
|
company_namespace: string[];
|
|
1956
|
+
teams?: string[];
|
|
1957
|
+
teams_populated?: Team.TeamSchema[];
|
|
1956
1958
|
createdAt: string;
|
|
1957
1959
|
updatedAt: string;
|
|
1958
1960
|
__v: number;
|
|
@@ -1961,9 +1963,11 @@ export namespace Service {
|
|
|
1961
1963
|
tag?: string;
|
|
1962
1964
|
type?: TagType;
|
|
1963
1965
|
disabled?: boolean;
|
|
1966
|
+
teams?: string[];
|
|
1964
1967
|
integration_meta?: { [key: string]: any };
|
|
1965
1968
|
company_namespace?: string[];
|
|
1966
1969
|
}
|
|
1970
|
+
type PopulatedKeys = "teams";
|
|
1967
1971
|
|
|
1968
1972
|
export namespace Find {
|
|
1969
1973
|
export type Params = DefaultPaginationQueryParams & {
|
|
@@ -1973,6 +1977,7 @@ export namespace Service {
|
|
|
1973
1977
|
type?: TagType[] | TagType;
|
|
1974
1978
|
disabled?: boolean;
|
|
1975
1979
|
from_updatedAt?: number;
|
|
1980
|
+
populatedKeys?: PopulatedKeys[];
|
|
1976
1981
|
[key: string]: any; // integration_meta.
|
|
1977
1982
|
};
|
|
1978
1983
|
export interface Result extends DefaultPaginationResult {
|