waldur-js-client 8.0.9-dev.61 → 8.0.9-dev.62
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/dist/types.gen.d.ts +2 -1
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -325,7 +325,7 @@ export type AgentIdentity = {
|
|
|
325
325
|
readonly created_by: string | null;
|
|
326
326
|
name: string;
|
|
327
327
|
version?: string | null;
|
|
328
|
-
|
|
328
|
+
dependencies?: Array<AgentDependency>;
|
|
329
329
|
/**
|
|
330
330
|
* Example: '/etc/waldur/agent.yaml'
|
|
331
331
|
*/
|
|
@@ -346,6 +346,7 @@ export type AgentIdentityRequest = {
|
|
|
346
346
|
offering: string;
|
|
347
347
|
name: string;
|
|
348
348
|
version?: string | null;
|
|
349
|
+
dependencies?: Array<AgentDependencyRequest>;
|
|
349
350
|
/**
|
|
350
351
|
* Example: '/etc/waldur/agent.yaml'
|
|
351
352
|
*/
|