@floegence/redevplugin-ui 0.7.26 → 0.7.27
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/contracts.gen.d.ts +1 -1
- package/dist/contracts.gen.js +1 -1
- package/dist/openapi.gen.d.ts +53 -0
- package/package.json +2 -2
package/dist/contracts.gen.d.ts
CHANGED
|
@@ -214,7 +214,7 @@ export declare const redevPluginContractArtifacts: readonly [{
|
|
|
214
214
|
readonly id: "plugin-platform-openapi";
|
|
215
215
|
readonly path: "spec/openapi/plugin-platform-v15.yaml";
|
|
216
216
|
readonly version: "plugin-platform-v15";
|
|
217
|
-
readonly sha256: "
|
|
217
|
+
readonly sha256: "c91f95dddd8486529b8e8ce8da6656fa9561bfeabaeb88125b43974134a943ff";
|
|
218
218
|
}, {
|
|
219
219
|
readonly id: "presentation-icon-evidence-schema";
|
|
220
220
|
readonly path: "spec/plugin/presentation-icon-evidence-v1.schema.json";
|
package/dist/contracts.gen.js
CHANGED
|
@@ -234,7 +234,7 @@ export const redevPluginContractArtifacts = [
|
|
|
234
234
|
id: "plugin-platform-openapi",
|
|
235
235
|
path: "spec/openapi/plugin-platform-v15.yaml",
|
|
236
236
|
version: "plugin-platform-v15",
|
|
237
|
-
sha256: "
|
|
237
|
+
sha256: "c91f95dddd8486529b8e8ce8da6656fa9561bfeabaeb88125b43974134a943ff",
|
|
238
238
|
},
|
|
239
239
|
{
|
|
240
240
|
id: "presentation-icon-evidence-schema",
|
package/dist/openapi.gen.d.ts
CHANGED
|
@@ -266,6 +266,23 @@ export interface paths {
|
|
|
266
266
|
patch?: never;
|
|
267
267
|
trace?: never;
|
|
268
268
|
};
|
|
269
|
+
"/_redevplugin/api/plugins/{plugin_instance_id}/icon/{sha256}": {
|
|
270
|
+
parameters: {
|
|
271
|
+
query?: never;
|
|
272
|
+
header?: never;
|
|
273
|
+
path?: never;
|
|
274
|
+
cookie?: never;
|
|
275
|
+
};
|
|
276
|
+
/** @description Returns the content-addressed presentation icon from the installed package asset store. */
|
|
277
|
+
get: operations["readInstalledPluginIcon"];
|
|
278
|
+
put?: never;
|
|
279
|
+
post?: never;
|
|
280
|
+
delete?: never;
|
|
281
|
+
options?: never;
|
|
282
|
+
head?: never;
|
|
283
|
+
patch?: never;
|
|
284
|
+
trace?: never;
|
|
285
|
+
};
|
|
269
286
|
"/_redevplugin/api/plugins/features/query": {
|
|
270
287
|
parameters: {
|
|
271
288
|
query?: never;
|
|
@@ -3890,6 +3907,7 @@ export interface components {
|
|
|
3890
3907
|
parameters: {
|
|
3891
3908
|
OperationID: string;
|
|
3892
3909
|
PluginInstanceID: string;
|
|
3910
|
+
SHA256Digest: string;
|
|
3893
3911
|
RequestID: string;
|
|
3894
3912
|
SurfaceInstanceID: string;
|
|
3895
3913
|
};
|
|
@@ -4401,6 +4419,41 @@ export interface operations {
|
|
|
4401
4419
|
default: components["responses"]["PlatformErrorResponse"];
|
|
4402
4420
|
};
|
|
4403
4421
|
};
|
|
4422
|
+
readInstalledPluginIcon: {
|
|
4423
|
+
parameters: {
|
|
4424
|
+
query?: never;
|
|
4425
|
+
header?: never;
|
|
4426
|
+
path: {
|
|
4427
|
+
plugin_instance_id: components["parameters"]["PluginInstanceID"];
|
|
4428
|
+
sha256: components["parameters"]["SHA256Digest"];
|
|
4429
|
+
};
|
|
4430
|
+
cookie?: never;
|
|
4431
|
+
};
|
|
4432
|
+
requestBody?: never;
|
|
4433
|
+
responses: {
|
|
4434
|
+
/** @description Verified PNG or WebP icon bytes. */
|
|
4435
|
+
200: {
|
|
4436
|
+
headers: {
|
|
4437
|
+
ETag?: string;
|
|
4438
|
+
"Cache-Control"?: string;
|
|
4439
|
+
"X-Content-Type-Options"?: "nosniff";
|
|
4440
|
+
[name: string]: unknown;
|
|
4441
|
+
};
|
|
4442
|
+
content: {
|
|
4443
|
+
"image/png": string;
|
|
4444
|
+
"image/webp": string;
|
|
4445
|
+
};
|
|
4446
|
+
};
|
|
4447
|
+
/** @description The immutable digest matches If-None-Match. */
|
|
4448
|
+
304: {
|
|
4449
|
+
headers: {
|
|
4450
|
+
[name: string]: unknown;
|
|
4451
|
+
};
|
|
4452
|
+
content?: never;
|
|
4453
|
+
};
|
|
4454
|
+
default: components["responses"]["PlatformErrorResponse"];
|
|
4455
|
+
};
|
|
4456
|
+
};
|
|
4404
4457
|
getPluginFeatures: {
|
|
4405
4458
|
parameters: {
|
|
4406
4459
|
query?: never;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@floegence/redevplugin-ui",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.27",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"dist"
|
|
41
41
|
],
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@floegence/redevplugin-contracts": "0.7.
|
|
43
|
+
"@floegence/redevplugin-contracts": "0.7.27"
|
|
44
44
|
},
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|