waldur-js-client 8.0.9-dev.23 → 8.0.9-dev.25

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.
@@ -11708,6 +11708,10 @@ export type NestedSoftwareTargetRequest = {
11708
11708
  export type NestedSoftwareVersion = {
11709
11709
  readonly uuid: string;
11710
11710
  version: string;
11711
+ /**
11712
+ * EESSI EasyBuild module version
11713
+ */
11714
+ module_version?: string;
11711
11715
  release_date?: string | null;
11712
11716
  readonly targets: Array<NestedSoftwareTarget>;
11713
11717
  readonly module: {
@@ -11722,6 +11726,10 @@ export type NestedSoftwareVersion = {
11722
11726
  };
11723
11727
  export type NestedSoftwareVersionRequest = {
11724
11728
  version: string;
11729
+ /**
11730
+ * EESSI EasyBuild module version
11731
+ */
11732
+ module_version?: string;
11725
11733
  release_date?: string | null;
11726
11734
  };
11727
11735
  export type NestedTag = {
@@ -12458,6 +12466,7 @@ export type OfferingOverviewUpdateRequest = {
12458
12466
  * URL-friendly identifier. Only editable by staff users.
12459
12467
  */
12460
12468
  slug?: string;
12469
+ backend_id?: string;
12461
12470
  };
12462
12471
  export type OfferingPartition = {
12463
12472
  readonly uuid: string;
@@ -25043,6 +25052,10 @@ export type SoftwareVersion = {
25043
25052
  readonly created: string;
25044
25053
  readonly modified: string;
25045
25054
  readonly version: string;
25055
+ /**
25056
+ * EESSI EasyBuild module version
25057
+ */
25058
+ readonly module_version: string;
25046
25059
  readonly release_date: string | null;
25047
25060
  /**
25048
25061
  * Package dependencies (format varies by catalog type)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.9-dev.23",
3
+ "version": "8.0.9-dev.25",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",