repzo 1.0.116 → 1.0.117
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 -2
- package/package.json +1 -1
- package/src/types/index.ts +2 -2
package/lib/types/index.d.ts
CHANGED
|
@@ -6175,7 +6175,7 @@ export declare namespace Service {
|
|
|
6175
6175
|
client_id: string;
|
|
6176
6176
|
client_name: string;
|
|
6177
6177
|
comment?: string;
|
|
6178
|
-
creator:
|
|
6178
|
+
creator: AdminOrRepOrTenant | ClientCreator;
|
|
6179
6179
|
implemented_by?: AdminCreator | RepCreator;
|
|
6180
6180
|
latest: boolean;
|
|
6181
6181
|
version?: number;
|
|
@@ -6391,7 +6391,7 @@ export declare namespace Service {
|
|
|
6391
6391
|
client_id?: string;
|
|
6392
6392
|
client_name?: string;
|
|
6393
6393
|
comment?: string;
|
|
6394
|
-
creator?:
|
|
6394
|
+
creator?: AdminOrRepOrTenant | ClientCreator;
|
|
6395
6395
|
implemented_by?: AdminCreator | RepCreator;
|
|
6396
6396
|
latest?: boolean;
|
|
6397
6397
|
version?: number;
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -6124,7 +6124,7 @@ export namespace Service {
|
|
|
6124
6124
|
client_id: string;
|
|
6125
6125
|
client_name: string;
|
|
6126
6126
|
comment?: string;
|
|
6127
|
-
creator:
|
|
6127
|
+
creator: AdminOrRepOrTenant | ClientCreator;
|
|
6128
6128
|
implemented_by?: AdminCreator | RepCreator;
|
|
6129
6129
|
latest: boolean;
|
|
6130
6130
|
version?: number;
|
|
@@ -6324,7 +6324,7 @@ export namespace Service {
|
|
|
6324
6324
|
client_id?: string;
|
|
6325
6325
|
client_name?: string;
|
|
6326
6326
|
comment?: string;
|
|
6327
|
-
creator?:
|
|
6327
|
+
creator?: AdminOrRepOrTenant | ClientCreator;
|
|
6328
6328
|
implemented_by?: AdminCreator | RepCreator;
|
|
6329
6329
|
latest?: boolean;
|
|
6330
6330
|
version?: number;
|