@epilot/blueprint-manifest-client 3.7.0 → 3.8.0
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/openapi.d.ts +12 -0
- package/dist/openapi.json +10 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -718,6 +718,18 @@ declare namespace Components {
|
|
|
718
718
|
created_by?: CallerIdentity;
|
|
719
719
|
updated_at?: string; // date-time
|
|
720
720
|
updated_by?: CallerIdentity;
|
|
721
|
+
/**
|
|
722
|
+
* Whether a newer version is available in the marketplace
|
|
723
|
+
* example:
|
|
724
|
+
* true
|
|
725
|
+
*/
|
|
726
|
+
has_update_available?: boolean;
|
|
727
|
+
/**
|
|
728
|
+
* The latest version available in the marketplace
|
|
729
|
+
* example:
|
|
730
|
+
* v2.0.0
|
|
731
|
+
*/
|
|
732
|
+
latest_marketplace_version?: string;
|
|
721
733
|
}
|
|
722
734
|
export interface Job {
|
|
723
735
|
job_id?: /**
|
package/dist/openapi.json
CHANGED
|
@@ -1899,6 +1899,16 @@
|
|
|
1899
1899
|
},
|
|
1900
1900
|
"updated_by": {
|
|
1901
1901
|
"$ref": "#/components/schemas/CallerIdentity"
|
|
1902
|
+
},
|
|
1903
|
+
"has_update_available": {
|
|
1904
|
+
"type": "boolean",
|
|
1905
|
+
"description": "Whether a newer version is available in the marketplace",
|
|
1906
|
+
"example": true
|
|
1907
|
+
},
|
|
1908
|
+
"latest_marketplace_version": {
|
|
1909
|
+
"type": "string",
|
|
1910
|
+
"description": "The latest version available in the marketplace",
|
|
1911
|
+
"example": "v2.0.0"
|
|
1902
1912
|
}
|
|
1903
1913
|
},
|
|
1904
1914
|
"required": [
|