repzo 1.0.36 → 1.0.37
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 +1 -0
- package/package.json +1 -1
- package/src/types/index.ts +1 -0
package/lib/types/index.d.ts
CHANGED
|
@@ -2075,6 +2075,7 @@ export declare namespace Service {
|
|
|
2075
2075
|
name?: string[] | string;
|
|
2076
2076
|
local_name?: string[] | string;
|
|
2077
2077
|
disabled?: boolean;
|
|
2078
|
+
from_updatedAt?: number;
|
|
2078
2079
|
[key: string]: any;
|
|
2079
2080
|
};
|
|
2080
2081
|
interface Result extends DefaultPaginationResult {
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -2114,6 +2114,7 @@ export namespace Service {
|
|
|
2114
2114
|
name?: string[] | string;
|
|
2115
2115
|
local_name?: string[] | string;
|
|
2116
2116
|
disabled?: boolean;
|
|
2117
|
+
from_updatedAt?: number;
|
|
2117
2118
|
[key: string]: any; // integration_meta.
|
|
2118
2119
|
};
|
|
2119
2120
|
export interface Result extends DefaultPaginationResult {
|