waldur-js-client 8.0.9-dev.24 → 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.
- package/dist/types.gen.d.ts +12 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -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 = {
|
|
@@ -25044,6 +25052,10 @@ export type SoftwareVersion = {
|
|
|
25044
25052
|
readonly created: string;
|
|
25045
25053
|
readonly modified: string;
|
|
25046
25054
|
readonly version: string;
|
|
25055
|
+
/**
|
|
25056
|
+
* EESSI EasyBuild module version
|
|
25057
|
+
*/
|
|
25058
|
+
readonly module_version: string;
|
|
25047
25059
|
readonly release_date: string | null;
|
|
25048
25060
|
/**
|
|
25049
25061
|
* Package dependencies (format varies by catalog type)
|