repzo 1.0.35 → 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 -4896
- package/package.json +1 -1
- package/src/types/index.ts +3 -0
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -1954,6 +1954,7 @@ export namespace Service {
|
|
|
1954
1954
|
integration_meta?: { [key: string]: any };
|
|
1955
1955
|
company_namespace: string[];
|
|
1956
1956
|
teams?: string[];
|
|
1957
|
+
teams_populated?: Team.TeamSchema[];
|
|
1957
1958
|
createdAt: string;
|
|
1958
1959
|
updatedAt: string;
|
|
1959
1960
|
__v: number;
|
|
@@ -1966,6 +1967,7 @@ export namespace Service {
|
|
|
1966
1967
|
integration_meta?: { [key: string]: any };
|
|
1967
1968
|
company_namespace?: string[];
|
|
1968
1969
|
}
|
|
1970
|
+
type PopulatedKeys = "teams";
|
|
1969
1971
|
|
|
1970
1972
|
export namespace Find {
|
|
1971
1973
|
export type Params = DefaultPaginationQueryParams & {
|
|
@@ -1975,6 +1977,7 @@ export namespace Service {
|
|
|
1975
1977
|
type?: TagType[] | TagType;
|
|
1976
1978
|
disabled?: boolean;
|
|
1977
1979
|
from_updatedAt?: number;
|
|
1980
|
+
populatedKeys?: PopulatedKeys[];
|
|
1978
1981
|
[key: string]: any; // integration_meta.
|
|
1979
1982
|
};
|
|
1980
1983
|
export interface Result extends DefaultPaginationResult {
|