@epilot/app-client 0.5.1 → 0.5.2
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 +6 -0
- package/dist/openapi.json +10 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -951,6 +951,10 @@ declare namespace Components {
|
|
|
951
951
|
* Flag to indicate if the app is public.
|
|
952
952
|
*/
|
|
953
953
|
public?: boolean;
|
|
954
|
+
/**
|
|
955
|
+
* List of available versions of the app
|
|
956
|
+
*/
|
|
957
|
+
versions?: /* Configuration data about your app which is versionable */ ConfigurationVersion[];
|
|
954
958
|
}
|
|
955
959
|
export interface S3Reference {
|
|
956
960
|
/**
|
|
@@ -1263,6 +1267,8 @@ declare namespace Paths {
|
|
|
1263
1267
|
pageSize?: number;
|
|
1264
1268
|
};
|
|
1265
1269
|
}
|
|
1270
|
+
export interface $400 {
|
|
1271
|
+
}
|
|
1266
1272
|
}
|
|
1267
1273
|
}
|
|
1268
1274
|
namespace PatchComponent {
|
package/dist/openapi.json
CHANGED
|
@@ -443,6 +443,9 @@
|
|
|
443
443
|
}
|
|
444
444
|
}
|
|
445
445
|
}
|
|
446
|
+
},
|
|
447
|
+
"400": {
|
|
448
|
+
"description": "Invalid parameter"
|
|
446
449
|
}
|
|
447
450
|
}
|
|
448
451
|
}
|
|
@@ -2242,6 +2245,13 @@
|
|
|
2242
2245
|
"default": true,
|
|
2243
2246
|
"description": "Flag to indicate if the app is public.",
|
|
2244
2247
|
"readOnly": true
|
|
2248
|
+
},
|
|
2249
|
+
"versions": {
|
|
2250
|
+
"type": "array",
|
|
2251
|
+
"items": {
|
|
2252
|
+
"$ref": "#/components/schemas/ConfigurationVersion"
|
|
2253
|
+
},
|
|
2254
|
+
"description": "List of available versions of the app"
|
|
2245
2255
|
}
|
|
2246
2256
|
}
|
|
2247
2257
|
},
|