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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.33",
3
+ "version": "1.0.35",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "type": "module",
@@ -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
  }