repzo 1.0.34 → 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/types/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/types/index.ts +2 -0
package/lib/types/index.d.ts
CHANGED
|
@@ -1748,6 +1748,7 @@ export declare namespace Service {
|
|
|
1748
1748
|
[key: string]: any;
|
|
1749
1749
|
};
|
|
1750
1750
|
company_namespace: string[];
|
|
1751
|
+
teams?: string[];
|
|
1751
1752
|
createdAt: string;
|
|
1752
1753
|
updatedAt: string;
|
|
1753
1754
|
__v: number;
|
|
@@ -1756,6 +1757,7 @@ export declare namespace Service {
|
|
|
1756
1757
|
tag?: string;
|
|
1757
1758
|
type?: TagType;
|
|
1758
1759
|
disabled?: boolean;
|
|
1760
|
+
teams?: string[];
|
|
1759
1761
|
integration_meta?: {
|
|
1760
1762
|
[key: string]: any;
|
|
1761
1763
|
};
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -1953,6 +1953,7 @@ export namespace Service {
|
|
|
1953
1953
|
disabled?: boolean;
|
|
1954
1954
|
integration_meta?: { [key: string]: any };
|
|
1955
1955
|
company_namespace: string[];
|
|
1956
|
+
teams?: string[];
|
|
1956
1957
|
createdAt: string;
|
|
1957
1958
|
updatedAt: string;
|
|
1958
1959
|
__v: number;
|
|
@@ -1961,6 +1962,7 @@ export namespace Service {
|
|
|
1961
1962
|
tag?: string;
|
|
1962
1963
|
type?: TagType;
|
|
1963
1964
|
disabled?: boolean;
|
|
1965
|
+
teams?: string[];
|
|
1964
1966
|
integration_meta?: { [key: string]: any };
|
|
1965
1967
|
company_namespace?: string[];
|
|
1966
1968
|
}
|