@datatr-ux/ovhcloud-types 1.0.29 → 1.0.31

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.
@@ -1,5 +1,9 @@
1
+ import { AttachedTo } from './volume/AttachedTo';
2
+ import { VolumeStatusEnum } from '../volume/VolumeStatusEnum';
1
3
  /** Region volume */
2
4
  export interface Volume {
5
+ /** Volume attached to list */
6
+ attachedTo: AttachedTo[];
3
7
  /** Availability zone of the volume */
4
8
  availabilityZone?: string;
5
9
  /** Volume ID */
@@ -8,5 +12,7 @@ export interface Volume {
8
12
  name: string;
9
13
  /** Volume size */
10
14
  size: number;
15
+ /** Volume status */
16
+ status: VolumeStatusEnum;
11
17
  }
12
18
  //# sourceMappingURL=Volume.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Volume.d.ts","sourceRoot":"","sources":["../../../generated/types/cloud/region/Volume.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,MAAM,WAAW,MAAM;IACrB,sCAAsC;IACtC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,gBAAgB;IAChB,EAAE,EAAE,MAAM,CAAC;IACX,kBAAkB;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,kBAAkB;IAClB,IAAI,EAAE,MAAM,CAAC;CACd"}
1
+ {"version":3,"file":"Volume.d.ts","sourceRoot":"","sources":["../../../generated/types/cloud/region/Volume.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,wCAAwC,CAAC;AACpE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uCAAuC,CAAC;AAEzE,oBAAoB;AACpB,MAAM,WAAW,MAAM;IACrB,8BAA8B;IAC9B,UAAU,EAAE,UAAU,EAAE,CAAC;IACzB,sCAAsC;IACtC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,gBAAgB;IAChB,EAAE,EAAE,MAAM,CAAC;IACX,kBAAkB;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,kBAAkB;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,oBAAoB;IACpB,MAAM,EAAE,gBAAgB,CAAC;CAC1B"}
@@ -0,0 +1,6 @@
1
+ /** Region volume attached to */
2
+ export interface AttachedTo {
3
+ /** Instance ID */
4
+ id: string;
5
+ }
6
+ //# sourceMappingURL=AttachedTo.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AttachedTo.d.ts","sourceRoot":"","sources":["../../../../generated/types/cloud/region/volume/AttachedTo.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,MAAM,WAAW,UAAU;IACzB,kBAAkB;IAClB,EAAE,EAAE,MAAM,CAAC;CACZ"}
@@ -0,0 +1 @@
1
+ export {};
@@ -1,4 +1,5 @@
1
1
  import * as create from './create/index';
2
+ export * from './AttachedTo';
2
3
  export * from './Create';
3
4
  export { create };
4
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../generated/types/cloud/region/volume/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAEzC,cAAc,UAAU,CAAC;AACzB,OAAO,EAAE,MAAM,EAAE,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../generated/types/cloud/region/volume/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAEzC,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,OAAO,EAAE,MAAM,EAAE,CAAC"}
@@ -1,3 +1,4 @@
1
1
  import * as create from './create/index.js';
2
+ export * from './AttachedTo.js';
2
3
  export * from './Create.js';
3
4
  export { create };
@@ -1,6 +1,6 @@
1
1
  /** A numeric value tagged with its unit */
2
2
  export interface UnitAndValueString {
3
- /** */
3
+ /** Unit of the value */
4
4
  unit: string;
5
5
  /** */
6
6
  value: string;
@@ -1 +1 @@
1
- {"version":3,"file":"UnitAndValueString.d.ts","sourceRoot":"","sources":["../../generated/types/complexType/UnitAndValueString.ts"],"names":[],"mappings":"AAAA,2CAA2C;AAC3C,MAAM,WAAW,kBAAkB;IACjC,OAAO;IACP,IAAI,EAAE,MAAM,CAAC;IACb,OAAO;IACP,KAAK,EAAE,MAAM,CAAC;CACf"}
1
+ {"version":3,"file":"UnitAndValueString.d.ts","sourceRoot":"","sources":["../../generated/types/complexType/UnitAndValueString.ts"],"names":[],"mappings":"AAAA,2CAA2C;AAC3C,MAAM,WAAW,kBAAkB;IACjC,wBAAwB;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,OAAO;IACP,KAAK,EAAE,MAAM,CAAC;CACf"}
@@ -1,11 +1,15 @@
1
1
  import { TaskStatusEnum } from './TaskStatusEnum';
2
2
  /** Describes the current status of a task */
3
3
  export interface Task {
4
+ /** Date when the action was completed */
5
+ doneDate?: string;
4
6
  /** */
5
7
  function: string;
6
8
  /** */
7
9
  id: number;
8
10
  /** */
11
+ isArchived: boolean;
12
+ /** */
9
13
  status: TaskStatusEnum;
10
14
  /** Date when the action will start */
11
15
  todoDate: string;
@@ -1 +1 @@
1
- {"version":3,"file":"Task.d.ts","sourceRoot":"","sources":["../../generated/types/xdsl/Task.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAE7D,6CAA6C;AAC7C,MAAM,WAAW,IAAI;IACnB,OAAO;IACP,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO;IACP,EAAE,EAAE,MAAM,CAAC;IACX,OAAO;IACP,MAAM,EAAE,cAAc,CAAC;IACvB,sCAAsC;IACtC,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO;IACP,UAAU,EAAE,MAAM,CAAC;CACpB"}
1
+ {"version":3,"file":"Task.d.ts","sourceRoot":"","sources":["../../generated/types/xdsl/Task.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAE7D,6CAA6C;AAC7C,MAAM,WAAW,IAAI;IACnB,yCAAyC;IACzC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO;IACP,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO;IACP,EAAE,EAAE,MAAM,CAAC;IACX,OAAO;IACP,UAAU,EAAE,OAAO,CAAC;IACpB,OAAO;IACP,MAAM,EAAE,cAAc,CAAC;IACvB,sCAAsC;IACtC,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO;IACP,UAAU,EAAE,MAAM,CAAC;CACpB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datatr-ux/ovhcloud-types",
3
- "version": "1.0.29",
3
+ "version": "1.0.31",
4
4
  "description": "TypeScript types for OVHCloud projects",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",