@floegence/redevplugin-ui 2.0.9 → 3.0.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/contracts.gen.d.ts +1 -288
- package/dist/contracts.gen.js +2 -325
- package/dist/error-codes.gen.d.ts +3 -3
- package/dist/error-codes.gen.js +1 -7
- package/dist/opaque-surface-policy.gen.js +1 -1
- package/dist/openapi.gen.d.ts +196 -348
- package/dist/platform.d.ts +0 -6
- package/dist/platform.js +0 -5
- package/dist/plugin.d.ts +1 -1
- package/dist/plugin.js +1 -1
- package/dist/surface.d.ts +0 -5
- package/dist/surface.js +4 -17
- package/package.json +2 -2
package/dist/contracts.gen.d.ts
CHANGED
|
@@ -1,288 +1 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
/** @deprecated Internal frozen transport alias. Plugin code should use surfaceAPIMajor. */
|
|
3
|
-
export declare const pluginUIProtocolVersion: "plugin-ui-v7";
|
|
4
|
-
export declare const pluginHostProtocolVersion: "plugin-host-v11";
|
|
5
|
-
export declare const bridgeSchemaVersion: "bridge-v7";
|
|
6
|
-
export declare const tokenTicketSchemaVersion: "token-ticket-v4";
|
|
7
|
-
export declare const redevPluginContractVersions: {
|
|
8
|
-
readonly plugin_ui_protocol_version: "plugin-ui-v7";
|
|
9
|
-
readonly supported_plugin_ui_protocol_versions: readonly ["plugin-ui-v7"];
|
|
10
|
-
readonly plugin_ui_transport_mappings: readonly [{
|
|
11
|
-
readonly plugin_ui_protocol_version: "plugin-ui-v7";
|
|
12
|
-
readonly opaque_surface_transport_schema_version: "opaque-surface-transport-v6";
|
|
13
|
-
readonly bridge_schema_version: "bridge-v7";
|
|
14
|
-
}];
|
|
15
|
-
readonly plugin_host_protocol_version: "plugin-host-v11";
|
|
16
|
-
readonly rust_ipc_version: "rust-ipc-v7";
|
|
17
|
-
readonly wasm_abi_version: "redevplugin-wasm-worker-v2";
|
|
18
|
-
readonly manifest_schema_version: "manifest-v9";
|
|
19
|
-
readonly package_signature_schema_version: "package-signature-v1";
|
|
20
|
-
readonly release_metadata_schema_version: "release-metadata-v8";
|
|
21
|
-
readonly release_root_delegation_schema_version: "release-root-delegation-v1";
|
|
22
|
-
readonly release_source_policy_schema_version: "release-source-policy-v3";
|
|
23
|
-
readonly release_source_policy_pointer_schema_version: "release-source-policy-pointer-v2";
|
|
24
|
-
readonly release_revocation_schema_version: "release-revocation-v3";
|
|
25
|
-
readonly release_revocation_pointer_schema_version: "release-revocation-pointer-v2";
|
|
26
|
-
readonly token_ticket_schema_version: "token-ticket-v4";
|
|
27
|
-
readonly bridge_schema_version: "bridge-v7";
|
|
28
|
-
readonly opaque_surface_document_schema_version: "opaque-surface-document-v3";
|
|
29
|
-
readonly opaque_surface_transport_schema_version: "opaque-surface-transport-v6";
|
|
30
|
-
readonly target_classifier_version: "target-classifier-v2";
|
|
31
|
-
readonly network_grant_schema_version: "network-grant-v2";
|
|
32
|
-
readonly resource_scope_schema_version: "resource-scope-v1";
|
|
33
|
-
readonly session_scope_schema_version: "session-scope-v1";
|
|
34
|
-
readonly plugin_platform_openapi_version: "plugin-platform-v17";
|
|
35
|
-
readonly public_api_catalog_version: "public-api-v1";
|
|
36
|
-
readonly compatibility_manifest_version: "redevplugin.compatibility.v20";
|
|
37
|
-
readonly compatibility_schema_version: "compatibility-manifest-v20";
|
|
38
|
-
readonly worker_invocation_schema_version: "worker-invocation-v3";
|
|
39
|
-
readonly host_capability_contract_schema_version: "host-capability-contract-v1";
|
|
40
|
-
readonly host_capability_pin_schema_version: "host-capability-pin-v1";
|
|
41
|
-
readonly error_codes_schema_version: "error-codes-v8";
|
|
42
|
-
readonly performance_contract_version: "performance-contract-v4";
|
|
43
|
-
readonly performance_evidence_schema_version: "performance-evidence-v4";
|
|
44
|
-
readonly contract_registry_version: "contract-registry-v2";
|
|
45
|
-
readonly platform_package_set_schema_version: "platform-package-set-v3";
|
|
46
|
-
readonly platform_package_publication_schema_version: "platform-package-publication-v2";
|
|
47
|
-
readonly runtime_admission_schema_version: "runtime-admission-v1";
|
|
48
|
-
readonly runtime_descriptor_schema_version: "runtime-descriptor-v3";
|
|
49
|
-
readonly owner_scope_inventory_registry_version: "owner-scope-inventory-registry-v1";
|
|
50
|
-
readonly owner_scope_inventory_schema_version: "owner-scope-inventory-v1";
|
|
51
|
-
readonly owner_scope_migration_schema_version: "owner-scope-migration-v1";
|
|
52
|
-
readonly owner_scope_root_recovery_schema_version: "owner-scope-root-recovery-v1";
|
|
53
|
-
readonly process_containment_schema_version: "process-containment-v1";
|
|
54
|
-
readonly runtime_exec_journal_schema_version: "runtime-exec-journal-v1";
|
|
55
|
-
readonly quarantine_cleanup_schema_version: "quarantine-cleanup-v1";
|
|
56
|
-
};
|
|
57
|
-
export type ReDevPluginContractArtifact = {
|
|
58
|
-
readonly id: string;
|
|
59
|
-
readonly path: string;
|
|
60
|
-
readonly version: string;
|
|
61
|
-
readonly sha256: string;
|
|
62
|
-
};
|
|
63
|
-
export declare const redevPluginContractArtifacts: readonly [{
|
|
64
|
-
readonly id: "compatibility-manifest-schema";
|
|
65
|
-
readonly path: "spec/plugin/compatibility-manifest-v20.schema.json";
|
|
66
|
-
readonly version: "compatibility-manifest-v20";
|
|
67
|
-
readonly sha256: "8ace15ee3f0bb05e5cdd3449385dd498e37f5fb2e22a67302efb5efeaee1aa02";
|
|
68
|
-
}, {
|
|
69
|
-
readonly id: "contract-registry-schema";
|
|
70
|
-
readonly path: "spec/plugin/contract-registry-v2.schema.json";
|
|
71
|
-
readonly version: "contract-registry-v2";
|
|
72
|
-
readonly sha256: "92ffee62b7954eecdc1ce0cf364c1f719060a19aec5d997c1b1493362e941367";
|
|
73
|
-
}, {
|
|
74
|
-
readonly id: "error-codes-schema";
|
|
75
|
-
readonly path: "spec/plugin/error-codes-v8.schema.json";
|
|
76
|
-
readonly version: "error-codes-v8";
|
|
77
|
-
readonly sha256: "5ec127f0fdd6e749d8ee342e53796acd04d1c220fb03cca462bd5222c57b5944";
|
|
78
|
-
}, {
|
|
79
|
-
readonly id: "external-signer-request-schema";
|
|
80
|
-
readonly path: "spec/plugin/external-signer-request-v1.schema.json";
|
|
81
|
-
readonly version: "external-signer-request-v1";
|
|
82
|
-
readonly sha256: "56884e9bb0b00d07fe7e8c52acfc33a4a7bab54f8a02d504f35b00bab42a03fb";
|
|
83
|
-
}, {
|
|
84
|
-
readonly id: "external-signer-response-schema";
|
|
85
|
-
readonly path: "spec/plugin/external-signer-response-v1.schema.json";
|
|
86
|
-
readonly version: "external-signer-response-v1";
|
|
87
|
-
readonly sha256: "b3b6d2b3dfe4f9bb680387e4c3a8010faef91d2d12fe28e76e51d5d84703a047";
|
|
88
|
-
}, {
|
|
89
|
-
readonly id: "host-capability-contract-schema";
|
|
90
|
-
readonly path: "spec/plugin/host-capability-contract-v1.schema.json";
|
|
91
|
-
readonly version: "host-capability-contract-v1";
|
|
92
|
-
readonly sha256: "4816f59ac0819d02fb05ddd48f2ac12a2d2103a8e15d5257ca8b7d5188ab21a4";
|
|
93
|
-
}, {
|
|
94
|
-
readonly id: "host-capability-pin-schema";
|
|
95
|
-
readonly path: "spec/plugin/host-capability-pin-v1.schema.json";
|
|
96
|
-
readonly version: "host-capability-pin-v1";
|
|
97
|
-
readonly sha256: "23591639475c485134c842cae5e53a679dde1b30374a6430ce6e4827be4d18ed";
|
|
98
|
-
}, {
|
|
99
|
-
readonly id: "iframe-bridge-schema";
|
|
100
|
-
readonly path: "spec/plugin/bridge-v7.schema.json";
|
|
101
|
-
readonly version: "bridge-v7";
|
|
102
|
-
readonly sha256: "5a6e7307f1649eb70d13e83e5d16177458957bffb3262b9299b4cf6d443e284a";
|
|
103
|
-
}, {
|
|
104
|
-
readonly id: "manifest-schema";
|
|
105
|
-
readonly path: "spec/plugin/manifest-v9.schema.json";
|
|
106
|
-
readonly version: "manifest-v9";
|
|
107
|
-
readonly sha256: "d8b0fc348179a1a9af81f152897bad1891b1f8b7a7a4448c0a4e54e9883f1322";
|
|
108
|
-
}, {
|
|
109
|
-
readonly id: "network-grant-schema";
|
|
110
|
-
readonly path: "spec/plugin/network-grant-v2.schema.json";
|
|
111
|
-
readonly version: "network-grant-v2";
|
|
112
|
-
readonly sha256: "5fc1cfc3469a992e551fd392fab982abb6f95e456a1cb768ceca137f7c693abc";
|
|
113
|
-
}, {
|
|
114
|
-
readonly id: "opaque-surface-document-schema";
|
|
115
|
-
readonly path: "spec/plugin/opaque-surface-document-v3.schema.json";
|
|
116
|
-
readonly version: "opaque-surface-document-v3";
|
|
117
|
-
readonly sha256: "63419ff5b5a8890e14f97ca29aaae175b93daff61d4567c5bdff7f6e6a9e7450";
|
|
118
|
-
}, {
|
|
119
|
-
readonly id: "opaque-surface-transport-schema";
|
|
120
|
-
readonly path: "spec/plugin/opaque-surface-transport-v6.schema.json";
|
|
121
|
-
readonly version: "opaque-surface-transport-v6";
|
|
122
|
-
readonly sha256: "8f2af2669edc9413020c26765ee3f1986ef63a7d0803466861d8cdae3977ccff";
|
|
123
|
-
}, {
|
|
124
|
-
readonly id: "owner-scope-inventory-registry";
|
|
125
|
-
readonly path: "spec/plugin/owner-scope-inventories-v1.json";
|
|
126
|
-
readonly version: "owner-scope-inventory-registry-v1";
|
|
127
|
-
readonly sha256: "f655313a641368383b3d84b6ea4f6a2a2ef42a44a4dd23f71211361c9c2e0505";
|
|
128
|
-
}, {
|
|
129
|
-
readonly id: "owner-scope-inventory-schema";
|
|
130
|
-
readonly path: "spec/plugin/owner-scope-inventory-v1.schema.json";
|
|
131
|
-
readonly version: "owner-scope-inventory-v1";
|
|
132
|
-
readonly sha256: "21dc4980103f3a36f4252ce141d7350476ec00968e8a320695e450274e928be1";
|
|
133
|
-
}, {
|
|
134
|
-
readonly id: "owner-scope-migration-schema";
|
|
135
|
-
readonly path: "spec/plugin/owner-scope-migration-v1.schema.json";
|
|
136
|
-
readonly version: "owner-scope-migration-v1";
|
|
137
|
-
readonly sha256: "497fff8a09d48fe195c18d13ff05ca6c9f8406f6215588901cb6d89315b713eb";
|
|
138
|
-
}, {
|
|
139
|
-
readonly id: "owner-scope-root-recovery-schema";
|
|
140
|
-
readonly path: "spec/plugin/owner-scope-root-recovery-v1.schema.json";
|
|
141
|
-
readonly version: "owner-scope-root-recovery-v1";
|
|
142
|
-
readonly sha256: "81b961a9933d129c8f9119e3091226039ffbc0b4721116a4811f9785bebf9d64";
|
|
143
|
-
}, {
|
|
144
|
-
readonly id: "package-signature-schema";
|
|
145
|
-
readonly path: "spec/plugin/package-signature-v1.schema.json";
|
|
146
|
-
readonly version: "package-signature-v1";
|
|
147
|
-
readonly sha256: "13951c0f6831ba28647774368c76a817868aeb7984628e2cf3dc4ad1b54f8284";
|
|
148
|
-
}, {
|
|
149
|
-
readonly id: "performance-contract";
|
|
150
|
-
readonly path: "spec/plugin/performance-contract-v4.json";
|
|
151
|
-
readonly version: "performance-contract-v4";
|
|
152
|
-
readonly sha256: "08830053b38f0f8466c4e9e608fd7f21e24175063ec02307543fbd8adfb5692e";
|
|
153
|
-
}, {
|
|
154
|
-
readonly id: "performance-evidence-schema";
|
|
155
|
-
readonly path: "spec/plugin/performance-evidence-v4.schema.json";
|
|
156
|
-
readonly version: "performance-evidence-v4";
|
|
157
|
-
readonly sha256: "f51ba9d425f0e40bc4f2db7ed26454e7575b14ffb6937a06dc01b8e7a66b3f61";
|
|
158
|
-
}, {
|
|
159
|
-
readonly id: "platform-package-publication-schema";
|
|
160
|
-
readonly path: "spec/plugin/platform-package-publication-v2.schema.json";
|
|
161
|
-
readonly version: "platform-package-publication-v2";
|
|
162
|
-
readonly sha256: "1cc7a342b7dda8533324764c7f29fa7a3ca24a93f6015e7a18a17539febd538a";
|
|
163
|
-
}, {
|
|
164
|
-
readonly id: "platform-package-set-schema";
|
|
165
|
-
readonly path: "spec/plugin/platform-package-set-v3.schema.json";
|
|
166
|
-
readonly version: "platform-package-set-v3";
|
|
167
|
-
readonly sha256: "8acba305f9df90be10cca516b98a598efc9a4bffd0e3c2915d78385e18397b88";
|
|
168
|
-
}, {
|
|
169
|
-
readonly id: "plugin-platform-openapi";
|
|
170
|
-
readonly path: "spec/openapi/plugin-platform-v17.yaml";
|
|
171
|
-
readonly version: "plugin-platform-v17";
|
|
172
|
-
readonly sha256: "1a043991f4d87ddfabdf614364e1bec42400f4bc19b7856c4c774b9f282fcda3";
|
|
173
|
-
}, {
|
|
174
|
-
readonly id: "presentation-icon-evidence-schema";
|
|
175
|
-
readonly path: "spec/plugin/presentation-icon-evidence-v1.schema.json";
|
|
176
|
-
readonly version: "presentation-icon-evidence-v1";
|
|
177
|
-
readonly sha256: "0b302ff651bec9447637dd08b672d2371fcf383c5d9505e885955aa1b607ec15";
|
|
178
|
-
}, {
|
|
179
|
-
readonly id: "presentation-locale-fixture";
|
|
180
|
-
readonly path: "spec/plugin/presentation-locale-fixtures-v1.json";
|
|
181
|
-
readonly version: "presentation-locale-fixtures-v1";
|
|
182
|
-
readonly sha256: "cbb4c0188d020b5fbde9a0c2c33b3677d21cc64c0f0297b7f6f3f6c0efabc40e";
|
|
183
|
-
}, {
|
|
184
|
-
readonly id: "process-containment-schema";
|
|
185
|
-
readonly path: "spec/plugin/process-containment-v1.schema.json";
|
|
186
|
-
readonly version: "process-containment-v1";
|
|
187
|
-
readonly sha256: "930ea44b1f62361706e994649e84f62af0a6418b77a661ae9bf9c10f1398e3fc";
|
|
188
|
-
}, {
|
|
189
|
-
readonly id: "public-api-catalog";
|
|
190
|
-
readonly path: "spec/plugin/public-api-v1.json";
|
|
191
|
-
readonly version: "public-api-v1";
|
|
192
|
-
readonly sha256: "562a80933bb079abf082dc354e4ff206c8a00b6670be5d17ef5d191a9c52fc75";
|
|
193
|
-
}, {
|
|
194
|
-
readonly id: "publisher-release-ref-schema";
|
|
195
|
-
readonly path: "spec/plugin/publisher-release-ref-v1.schema.json";
|
|
196
|
-
readonly version: "publisher-release-ref-v1";
|
|
197
|
-
readonly sha256: "f68241937dc291b1f660c2c184bd60a7058a4471d2966bd7954ba574c84fe726";
|
|
198
|
-
}, {
|
|
199
|
-
readonly id: "quarantine-cleanup-schema";
|
|
200
|
-
readonly path: "spec/plugin/quarantine-cleanup-v1.schema.json";
|
|
201
|
-
readonly version: "quarantine-cleanup-v1";
|
|
202
|
-
readonly sha256: "0aced01a8d409953d5075a799ac273cae79e285ac82debe93ac4d8b706571ad1";
|
|
203
|
-
}, {
|
|
204
|
-
readonly id: "release-metadata-schema";
|
|
205
|
-
readonly path: "spec/plugin/release-metadata-v8.schema.json";
|
|
206
|
-
readonly version: "release-metadata-v8";
|
|
207
|
-
readonly sha256: "ad8888e6b5673786ea0fc82475be92835c3b177b685cca5bb3efd936d461b215";
|
|
208
|
-
}, {
|
|
209
|
-
readonly id: "release-publisher-config-schema";
|
|
210
|
-
readonly path: "spec/plugin/release-publisher-config-v1.schema.json";
|
|
211
|
-
readonly version: "release-publisher-config-v1";
|
|
212
|
-
readonly sha256: "47d782062652b85a77dc67a98c8859f2f1dc598d4496df13ca70c4ceb02df227";
|
|
213
|
-
}, {
|
|
214
|
-
readonly id: "release-revocation-pointer-schema";
|
|
215
|
-
readonly path: "spec/plugin/release-revocation-pointer-v2.schema.json";
|
|
216
|
-
readonly version: "release-revocation-pointer-v2";
|
|
217
|
-
readonly sha256: "51ced7ca790d7d3d3dcb2e65faf3a3a74713ccefe7b2a5b97355a0b3226bdf34";
|
|
218
|
-
}, {
|
|
219
|
-
readonly id: "release-revocation-schema";
|
|
220
|
-
readonly path: "spec/plugin/release-revocation-v3.schema.json";
|
|
221
|
-
readonly version: "release-revocation-v3";
|
|
222
|
-
readonly sha256: "930d2729719f5f44de108df23e9efbbae17f7a3072963c1c5471197b189aa8d9";
|
|
223
|
-
}, {
|
|
224
|
-
readonly id: "release-root-delegation-schema";
|
|
225
|
-
readonly path: "spec/plugin/release-root-delegation-v1.schema.json";
|
|
226
|
-
readonly version: "release-root-delegation-v1";
|
|
227
|
-
readonly sha256: "f46249f9d51610b7a8401adc4ed04c098adaad408f35661b092f8d67767e21f2";
|
|
228
|
-
}, {
|
|
229
|
-
readonly id: "release-source-policy-pointer-schema";
|
|
230
|
-
readonly path: "spec/plugin/release-source-policy-pointer-v2.schema.json";
|
|
231
|
-
readonly version: "release-source-policy-pointer-v2";
|
|
232
|
-
readonly sha256: "a4b2ba0909a633cfd0a365dff87ca1b6eaf6df53ac38b4d2b458d7ea85da6dd1";
|
|
233
|
-
}, {
|
|
234
|
-
readonly id: "release-source-policy-schema";
|
|
235
|
-
readonly path: "spec/plugin/release-source-policy-v3.schema.json";
|
|
236
|
-
readonly version: "release-source-policy-v3";
|
|
237
|
-
readonly sha256: "9b6964cbbaeab6400ab25ff3da6fca891b9833c7f644f56367b420382d096244";
|
|
238
|
-
}, {
|
|
239
|
-
readonly id: "resource-scope-schema";
|
|
240
|
-
readonly path: "spec/plugin/resource-scope-v1.schema.json";
|
|
241
|
-
readonly version: "resource-scope-v1";
|
|
242
|
-
readonly sha256: "e6021bd576c7220ad5536645a7ad8e57ee7aeb9901c31a89444fa6b695d8dc6f";
|
|
243
|
-
}, {
|
|
244
|
-
readonly id: "runtime-admission-schema";
|
|
245
|
-
readonly path: "spec/plugin/runtime-admission-v1.schema.json";
|
|
246
|
-
readonly version: "runtime-admission-v1";
|
|
247
|
-
readonly sha256: "bee7b149876447d663a4099dbd71e71fa97f8ff80ddf4e12cbfba951a47c4beb";
|
|
248
|
-
}, {
|
|
249
|
-
readonly id: "runtime-descriptor-schema";
|
|
250
|
-
readonly path: "spec/plugin/runtime-descriptor-v3.schema.json";
|
|
251
|
-
readonly version: "runtime-descriptor-v3";
|
|
252
|
-
readonly sha256: "c95c9126c0bbb4b5f697114d4e11d7107d1bebea56d700d3549d00812e7c3e97";
|
|
253
|
-
}, {
|
|
254
|
-
readonly id: "runtime-exec-journal-schema";
|
|
255
|
-
readonly path: "spec/plugin/runtime-exec-journal-v1.schema.json";
|
|
256
|
-
readonly version: "runtime-exec-journal-v1";
|
|
257
|
-
readonly sha256: "2bddbba383843b8ebc1554009909f0bb25e98616be763826a697cb0f408870d2";
|
|
258
|
-
}, {
|
|
259
|
-
readonly id: "rust-ipc-schema";
|
|
260
|
-
readonly path: "spec/plugin/ipc-v7.schema.json";
|
|
261
|
-
readonly version: "rust-ipc-v7";
|
|
262
|
-
readonly sha256: "1e1c5b6414030a0c7ffa6f4356f95e2f78f339b9b4dff45bb3691931316d9502";
|
|
263
|
-
}, {
|
|
264
|
-
readonly id: "session-scope-schema";
|
|
265
|
-
readonly path: "spec/plugin/session-scope-v1.schema.json";
|
|
266
|
-
readonly version: "session-scope-v1";
|
|
267
|
-
readonly sha256: "38044d65de36ce5219929ac4080547660734a7c6bb4d26d9b90e5838b1db331a";
|
|
268
|
-
}, {
|
|
269
|
-
readonly id: "target-classifier-fixture";
|
|
270
|
-
readonly path: "spec/plugin/target-classifier-v2.json";
|
|
271
|
-
readonly version: "target-classifier-v2";
|
|
272
|
-
readonly sha256: "ae7336cce77a2e820f96f1cc309b93f8442c932dcebec25e3890d31cd098e2d1";
|
|
273
|
-
}, {
|
|
274
|
-
readonly id: "token-ticket-schema";
|
|
275
|
-
readonly path: "spec/plugin/token-ticket-v4.schema.json";
|
|
276
|
-
readonly version: "token-ticket-v4";
|
|
277
|
-
readonly sha256: "1576e35e4e06ba67c2fdc038934c5d5184fd1224adbd75c9f8eaf6a144ade238";
|
|
278
|
-
}, {
|
|
279
|
-
readonly id: "wasm-worker-schema";
|
|
280
|
-
readonly path: "spec/plugin/wasm-worker-v2.schema.json";
|
|
281
|
-
readonly version: "redevplugin-wasm-worker-v2";
|
|
282
|
-
readonly sha256: "00bf123f3a9ed932de4b71c180e2a5c34af0f82050defb271fedec42cf217902";
|
|
283
|
-
}, {
|
|
284
|
-
readonly id: "worker-invocation-schema";
|
|
285
|
-
readonly path: "spec/plugin/worker-invocation-v3.schema.json";
|
|
286
|
-
readonly version: "worker-invocation-v3";
|
|
287
|
-
readonly sha256: "f75b5b6ea0f5936e15f84a76d9b496690d7e1b7da7a05948ad26a88cc1360847";
|
|
288
|
-
}];
|
|
1
|
+
export declare const pluginAPIMajor: 1;
|
package/dist/contracts.gen.js
CHANGED
|
@@ -1,325 +1,2 @@
|
|
|
1
|
-
// Code generated by scripts/
|
|
2
|
-
export const
|
|
3
|
-
/** @deprecated Internal frozen transport alias. Plugin code should use surfaceAPIMajor. */
|
|
4
|
-
export const pluginUIProtocolVersion = "plugin-ui-v7";
|
|
5
|
-
export const pluginHostProtocolVersion = "plugin-host-v11";
|
|
6
|
-
export const bridgeSchemaVersion = "bridge-v7";
|
|
7
|
-
export const tokenTicketSchemaVersion = "token-ticket-v4";
|
|
8
|
-
export const redevPluginContractVersions = {
|
|
9
|
-
"plugin_ui_protocol_version": "plugin-ui-v7",
|
|
10
|
-
"supported_plugin_ui_protocol_versions": ["plugin-ui-v7"],
|
|
11
|
-
"plugin_ui_transport_mappings": [{ "plugin_ui_protocol_version": "plugin-ui-v7", "opaque_surface_transport_schema_version": "opaque-surface-transport-v6", "bridge_schema_version": "bridge-v7" }],
|
|
12
|
-
"plugin_host_protocol_version": "plugin-host-v11",
|
|
13
|
-
"rust_ipc_version": "rust-ipc-v7",
|
|
14
|
-
"wasm_abi_version": "redevplugin-wasm-worker-v2",
|
|
15
|
-
"manifest_schema_version": "manifest-v9",
|
|
16
|
-
"package_signature_schema_version": "package-signature-v1",
|
|
17
|
-
"release_metadata_schema_version": "release-metadata-v8",
|
|
18
|
-
"release_root_delegation_schema_version": "release-root-delegation-v1",
|
|
19
|
-
"release_source_policy_schema_version": "release-source-policy-v3",
|
|
20
|
-
"release_source_policy_pointer_schema_version": "release-source-policy-pointer-v2",
|
|
21
|
-
"release_revocation_schema_version": "release-revocation-v3",
|
|
22
|
-
"release_revocation_pointer_schema_version": "release-revocation-pointer-v2",
|
|
23
|
-
"token_ticket_schema_version": "token-ticket-v4",
|
|
24
|
-
"bridge_schema_version": "bridge-v7",
|
|
25
|
-
"opaque_surface_document_schema_version": "opaque-surface-document-v3",
|
|
26
|
-
"opaque_surface_transport_schema_version": "opaque-surface-transport-v6",
|
|
27
|
-
"target_classifier_version": "target-classifier-v2",
|
|
28
|
-
"network_grant_schema_version": "network-grant-v2",
|
|
29
|
-
"resource_scope_schema_version": "resource-scope-v1",
|
|
30
|
-
"session_scope_schema_version": "session-scope-v1",
|
|
31
|
-
"plugin_platform_openapi_version": "plugin-platform-v17",
|
|
32
|
-
"public_api_catalog_version": "public-api-v1",
|
|
33
|
-
"compatibility_manifest_version": "redevplugin.compatibility.v20",
|
|
34
|
-
"compatibility_schema_version": "compatibility-manifest-v20",
|
|
35
|
-
"worker_invocation_schema_version": "worker-invocation-v3",
|
|
36
|
-
"host_capability_contract_schema_version": "host-capability-contract-v1",
|
|
37
|
-
"host_capability_pin_schema_version": "host-capability-pin-v1",
|
|
38
|
-
"error_codes_schema_version": "error-codes-v8",
|
|
39
|
-
"performance_contract_version": "performance-contract-v4",
|
|
40
|
-
"performance_evidence_schema_version": "performance-evidence-v4",
|
|
41
|
-
"contract_registry_version": "contract-registry-v2",
|
|
42
|
-
"platform_package_set_schema_version": "platform-package-set-v3",
|
|
43
|
-
"platform_package_publication_schema_version": "platform-package-publication-v2",
|
|
44
|
-
"runtime_admission_schema_version": "runtime-admission-v1",
|
|
45
|
-
"runtime_descriptor_schema_version": "runtime-descriptor-v3",
|
|
46
|
-
"owner_scope_inventory_registry_version": "owner-scope-inventory-registry-v1",
|
|
47
|
-
"owner_scope_inventory_schema_version": "owner-scope-inventory-v1",
|
|
48
|
-
"owner_scope_migration_schema_version": "owner-scope-migration-v1",
|
|
49
|
-
"owner_scope_root_recovery_schema_version": "owner-scope-root-recovery-v1",
|
|
50
|
-
"process_containment_schema_version": "process-containment-v1",
|
|
51
|
-
"runtime_exec_journal_schema_version": "runtime-exec-journal-v1",
|
|
52
|
-
"quarantine_cleanup_schema_version": "quarantine-cleanup-v1",
|
|
53
|
-
};
|
|
54
|
-
export const redevPluginContractArtifacts = [
|
|
55
|
-
{
|
|
56
|
-
id: "compatibility-manifest-schema",
|
|
57
|
-
path: "spec/plugin/compatibility-manifest-v20.schema.json",
|
|
58
|
-
version: "compatibility-manifest-v20",
|
|
59
|
-
sha256: "8ace15ee3f0bb05e5cdd3449385dd498e37f5fb2e22a67302efb5efeaee1aa02",
|
|
60
|
-
},
|
|
61
|
-
{
|
|
62
|
-
id: "contract-registry-schema",
|
|
63
|
-
path: "spec/plugin/contract-registry-v2.schema.json",
|
|
64
|
-
version: "contract-registry-v2",
|
|
65
|
-
sha256: "92ffee62b7954eecdc1ce0cf364c1f719060a19aec5d997c1b1493362e941367",
|
|
66
|
-
},
|
|
67
|
-
{
|
|
68
|
-
id: "error-codes-schema",
|
|
69
|
-
path: "spec/plugin/error-codes-v8.schema.json",
|
|
70
|
-
version: "error-codes-v8",
|
|
71
|
-
sha256: "5ec127f0fdd6e749d8ee342e53796acd04d1c220fb03cca462bd5222c57b5944",
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
id: "external-signer-request-schema",
|
|
75
|
-
path: "spec/plugin/external-signer-request-v1.schema.json",
|
|
76
|
-
version: "external-signer-request-v1",
|
|
77
|
-
sha256: "56884e9bb0b00d07fe7e8c52acfc33a4a7bab54f8a02d504f35b00bab42a03fb",
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
id: "external-signer-response-schema",
|
|
81
|
-
path: "spec/plugin/external-signer-response-v1.schema.json",
|
|
82
|
-
version: "external-signer-response-v1",
|
|
83
|
-
sha256: "b3b6d2b3dfe4f9bb680387e4c3a8010faef91d2d12fe28e76e51d5d84703a047",
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
id: "host-capability-contract-schema",
|
|
87
|
-
path: "spec/plugin/host-capability-contract-v1.schema.json",
|
|
88
|
-
version: "host-capability-contract-v1",
|
|
89
|
-
sha256: "4816f59ac0819d02fb05ddd48f2ac12a2d2103a8e15d5257ca8b7d5188ab21a4",
|
|
90
|
-
},
|
|
91
|
-
{
|
|
92
|
-
id: "host-capability-pin-schema",
|
|
93
|
-
path: "spec/plugin/host-capability-pin-v1.schema.json",
|
|
94
|
-
version: "host-capability-pin-v1",
|
|
95
|
-
sha256: "23591639475c485134c842cae5e53a679dde1b30374a6430ce6e4827be4d18ed",
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
id: "iframe-bridge-schema",
|
|
99
|
-
path: "spec/plugin/bridge-v7.schema.json",
|
|
100
|
-
version: "bridge-v7",
|
|
101
|
-
sha256: "5a6e7307f1649eb70d13e83e5d16177458957bffb3262b9299b4cf6d443e284a",
|
|
102
|
-
},
|
|
103
|
-
{
|
|
104
|
-
id: "manifest-schema",
|
|
105
|
-
path: "spec/plugin/manifest-v9.schema.json",
|
|
106
|
-
version: "manifest-v9",
|
|
107
|
-
sha256: "d8b0fc348179a1a9af81f152897bad1891b1f8b7a7a4448c0a4e54e9883f1322",
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
id: "network-grant-schema",
|
|
111
|
-
path: "spec/plugin/network-grant-v2.schema.json",
|
|
112
|
-
version: "network-grant-v2",
|
|
113
|
-
sha256: "5fc1cfc3469a992e551fd392fab982abb6f95e456a1cb768ceca137f7c693abc",
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
id: "opaque-surface-document-schema",
|
|
117
|
-
path: "spec/plugin/opaque-surface-document-v3.schema.json",
|
|
118
|
-
version: "opaque-surface-document-v3",
|
|
119
|
-
sha256: "63419ff5b5a8890e14f97ca29aaae175b93daff61d4567c5bdff7f6e6a9e7450",
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
id: "opaque-surface-transport-schema",
|
|
123
|
-
path: "spec/plugin/opaque-surface-transport-v6.schema.json",
|
|
124
|
-
version: "opaque-surface-transport-v6",
|
|
125
|
-
sha256: "8f2af2669edc9413020c26765ee3f1986ef63a7d0803466861d8cdae3977ccff",
|
|
126
|
-
},
|
|
127
|
-
{
|
|
128
|
-
id: "owner-scope-inventory-registry",
|
|
129
|
-
path: "spec/plugin/owner-scope-inventories-v1.json",
|
|
130
|
-
version: "owner-scope-inventory-registry-v1",
|
|
131
|
-
sha256: "f655313a641368383b3d84b6ea4f6a2a2ef42a44a4dd23f71211361c9c2e0505",
|
|
132
|
-
},
|
|
133
|
-
{
|
|
134
|
-
id: "owner-scope-inventory-schema",
|
|
135
|
-
path: "spec/plugin/owner-scope-inventory-v1.schema.json",
|
|
136
|
-
version: "owner-scope-inventory-v1",
|
|
137
|
-
sha256: "21dc4980103f3a36f4252ce141d7350476ec00968e8a320695e450274e928be1",
|
|
138
|
-
},
|
|
139
|
-
{
|
|
140
|
-
id: "owner-scope-migration-schema",
|
|
141
|
-
path: "spec/plugin/owner-scope-migration-v1.schema.json",
|
|
142
|
-
version: "owner-scope-migration-v1",
|
|
143
|
-
sha256: "497fff8a09d48fe195c18d13ff05ca6c9f8406f6215588901cb6d89315b713eb",
|
|
144
|
-
},
|
|
145
|
-
{
|
|
146
|
-
id: "owner-scope-root-recovery-schema",
|
|
147
|
-
path: "spec/plugin/owner-scope-root-recovery-v1.schema.json",
|
|
148
|
-
version: "owner-scope-root-recovery-v1",
|
|
149
|
-
sha256: "81b961a9933d129c8f9119e3091226039ffbc0b4721116a4811f9785bebf9d64",
|
|
150
|
-
},
|
|
151
|
-
{
|
|
152
|
-
id: "package-signature-schema",
|
|
153
|
-
path: "spec/plugin/package-signature-v1.schema.json",
|
|
154
|
-
version: "package-signature-v1",
|
|
155
|
-
sha256: "13951c0f6831ba28647774368c76a817868aeb7984628e2cf3dc4ad1b54f8284",
|
|
156
|
-
},
|
|
157
|
-
{
|
|
158
|
-
id: "performance-contract",
|
|
159
|
-
path: "spec/plugin/performance-contract-v4.json",
|
|
160
|
-
version: "performance-contract-v4",
|
|
161
|
-
sha256: "08830053b38f0f8466c4e9e608fd7f21e24175063ec02307543fbd8adfb5692e",
|
|
162
|
-
},
|
|
163
|
-
{
|
|
164
|
-
id: "performance-evidence-schema",
|
|
165
|
-
path: "spec/plugin/performance-evidence-v4.schema.json",
|
|
166
|
-
version: "performance-evidence-v4",
|
|
167
|
-
sha256: "f51ba9d425f0e40bc4f2db7ed26454e7575b14ffb6937a06dc01b8e7a66b3f61",
|
|
168
|
-
},
|
|
169
|
-
{
|
|
170
|
-
id: "platform-package-publication-schema",
|
|
171
|
-
path: "spec/plugin/platform-package-publication-v2.schema.json",
|
|
172
|
-
version: "platform-package-publication-v2",
|
|
173
|
-
sha256: "1cc7a342b7dda8533324764c7f29fa7a3ca24a93f6015e7a18a17539febd538a",
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
id: "platform-package-set-schema",
|
|
177
|
-
path: "spec/plugin/platform-package-set-v3.schema.json",
|
|
178
|
-
version: "platform-package-set-v3",
|
|
179
|
-
sha256: "8acba305f9df90be10cca516b98a598efc9a4bffd0e3c2915d78385e18397b88",
|
|
180
|
-
},
|
|
181
|
-
{
|
|
182
|
-
id: "plugin-platform-openapi",
|
|
183
|
-
path: "spec/openapi/plugin-platform-v17.yaml",
|
|
184
|
-
version: "plugin-platform-v17",
|
|
185
|
-
sha256: "1a043991f4d87ddfabdf614364e1bec42400f4bc19b7856c4c774b9f282fcda3",
|
|
186
|
-
},
|
|
187
|
-
{
|
|
188
|
-
id: "presentation-icon-evidence-schema",
|
|
189
|
-
path: "spec/plugin/presentation-icon-evidence-v1.schema.json",
|
|
190
|
-
version: "presentation-icon-evidence-v1",
|
|
191
|
-
sha256: "0b302ff651bec9447637dd08b672d2371fcf383c5d9505e885955aa1b607ec15",
|
|
192
|
-
},
|
|
193
|
-
{
|
|
194
|
-
id: "presentation-locale-fixture",
|
|
195
|
-
path: "spec/plugin/presentation-locale-fixtures-v1.json",
|
|
196
|
-
version: "presentation-locale-fixtures-v1",
|
|
197
|
-
sha256: "cbb4c0188d020b5fbde9a0c2c33b3677d21cc64c0f0297b7f6f3f6c0efabc40e",
|
|
198
|
-
},
|
|
199
|
-
{
|
|
200
|
-
id: "process-containment-schema",
|
|
201
|
-
path: "spec/plugin/process-containment-v1.schema.json",
|
|
202
|
-
version: "process-containment-v1",
|
|
203
|
-
sha256: "930ea44b1f62361706e994649e84f62af0a6418b77a661ae9bf9c10f1398e3fc",
|
|
204
|
-
},
|
|
205
|
-
{
|
|
206
|
-
id: "public-api-catalog",
|
|
207
|
-
path: "spec/plugin/public-api-v1.json",
|
|
208
|
-
version: "public-api-v1",
|
|
209
|
-
sha256: "562a80933bb079abf082dc354e4ff206c8a00b6670be5d17ef5d191a9c52fc75",
|
|
210
|
-
},
|
|
211
|
-
{
|
|
212
|
-
id: "publisher-release-ref-schema",
|
|
213
|
-
path: "spec/plugin/publisher-release-ref-v1.schema.json",
|
|
214
|
-
version: "publisher-release-ref-v1",
|
|
215
|
-
sha256: "f68241937dc291b1f660c2c184bd60a7058a4471d2966bd7954ba574c84fe726",
|
|
216
|
-
},
|
|
217
|
-
{
|
|
218
|
-
id: "quarantine-cleanup-schema",
|
|
219
|
-
path: "spec/plugin/quarantine-cleanup-v1.schema.json",
|
|
220
|
-
version: "quarantine-cleanup-v1",
|
|
221
|
-
sha256: "0aced01a8d409953d5075a799ac273cae79e285ac82debe93ac4d8b706571ad1",
|
|
222
|
-
},
|
|
223
|
-
{
|
|
224
|
-
id: "release-metadata-schema",
|
|
225
|
-
path: "spec/plugin/release-metadata-v8.schema.json",
|
|
226
|
-
version: "release-metadata-v8",
|
|
227
|
-
sha256: "ad8888e6b5673786ea0fc82475be92835c3b177b685cca5bb3efd936d461b215",
|
|
228
|
-
},
|
|
229
|
-
{
|
|
230
|
-
id: "release-publisher-config-schema",
|
|
231
|
-
path: "spec/plugin/release-publisher-config-v1.schema.json",
|
|
232
|
-
version: "release-publisher-config-v1",
|
|
233
|
-
sha256: "47d782062652b85a77dc67a98c8859f2f1dc598d4496df13ca70c4ceb02df227",
|
|
234
|
-
},
|
|
235
|
-
{
|
|
236
|
-
id: "release-revocation-pointer-schema",
|
|
237
|
-
path: "spec/plugin/release-revocation-pointer-v2.schema.json",
|
|
238
|
-
version: "release-revocation-pointer-v2",
|
|
239
|
-
sha256: "51ced7ca790d7d3d3dcb2e65faf3a3a74713ccefe7b2a5b97355a0b3226bdf34",
|
|
240
|
-
},
|
|
241
|
-
{
|
|
242
|
-
id: "release-revocation-schema",
|
|
243
|
-
path: "spec/plugin/release-revocation-v3.schema.json",
|
|
244
|
-
version: "release-revocation-v3",
|
|
245
|
-
sha256: "930d2729719f5f44de108df23e9efbbae17f7a3072963c1c5471197b189aa8d9",
|
|
246
|
-
},
|
|
247
|
-
{
|
|
248
|
-
id: "release-root-delegation-schema",
|
|
249
|
-
path: "spec/plugin/release-root-delegation-v1.schema.json",
|
|
250
|
-
version: "release-root-delegation-v1",
|
|
251
|
-
sha256: "f46249f9d51610b7a8401adc4ed04c098adaad408f35661b092f8d67767e21f2",
|
|
252
|
-
},
|
|
253
|
-
{
|
|
254
|
-
id: "release-source-policy-pointer-schema",
|
|
255
|
-
path: "spec/plugin/release-source-policy-pointer-v2.schema.json",
|
|
256
|
-
version: "release-source-policy-pointer-v2",
|
|
257
|
-
sha256: "a4b2ba0909a633cfd0a365dff87ca1b6eaf6df53ac38b4d2b458d7ea85da6dd1",
|
|
258
|
-
},
|
|
259
|
-
{
|
|
260
|
-
id: "release-source-policy-schema",
|
|
261
|
-
path: "spec/plugin/release-source-policy-v3.schema.json",
|
|
262
|
-
version: "release-source-policy-v3",
|
|
263
|
-
sha256: "9b6964cbbaeab6400ab25ff3da6fca891b9833c7f644f56367b420382d096244",
|
|
264
|
-
},
|
|
265
|
-
{
|
|
266
|
-
id: "resource-scope-schema",
|
|
267
|
-
path: "spec/plugin/resource-scope-v1.schema.json",
|
|
268
|
-
version: "resource-scope-v1",
|
|
269
|
-
sha256: "e6021bd576c7220ad5536645a7ad8e57ee7aeb9901c31a89444fa6b695d8dc6f",
|
|
270
|
-
},
|
|
271
|
-
{
|
|
272
|
-
id: "runtime-admission-schema",
|
|
273
|
-
path: "spec/plugin/runtime-admission-v1.schema.json",
|
|
274
|
-
version: "runtime-admission-v1",
|
|
275
|
-
sha256: "bee7b149876447d663a4099dbd71e71fa97f8ff80ddf4e12cbfba951a47c4beb",
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
id: "runtime-descriptor-schema",
|
|
279
|
-
path: "spec/plugin/runtime-descriptor-v3.schema.json",
|
|
280
|
-
version: "runtime-descriptor-v3",
|
|
281
|
-
sha256: "c95c9126c0bbb4b5f697114d4e11d7107d1bebea56d700d3549d00812e7c3e97",
|
|
282
|
-
},
|
|
283
|
-
{
|
|
284
|
-
id: "runtime-exec-journal-schema",
|
|
285
|
-
path: "spec/plugin/runtime-exec-journal-v1.schema.json",
|
|
286
|
-
version: "runtime-exec-journal-v1",
|
|
287
|
-
sha256: "2bddbba383843b8ebc1554009909f0bb25e98616be763826a697cb0f408870d2",
|
|
288
|
-
},
|
|
289
|
-
{
|
|
290
|
-
id: "rust-ipc-schema",
|
|
291
|
-
path: "spec/plugin/ipc-v7.schema.json",
|
|
292
|
-
version: "rust-ipc-v7",
|
|
293
|
-
sha256: "1e1c5b6414030a0c7ffa6f4356f95e2f78f339b9b4dff45bb3691931316d9502",
|
|
294
|
-
},
|
|
295
|
-
{
|
|
296
|
-
id: "session-scope-schema",
|
|
297
|
-
path: "spec/plugin/session-scope-v1.schema.json",
|
|
298
|
-
version: "session-scope-v1",
|
|
299
|
-
sha256: "38044d65de36ce5219929ac4080547660734a7c6bb4d26d9b90e5838b1db331a",
|
|
300
|
-
},
|
|
301
|
-
{
|
|
302
|
-
id: "target-classifier-fixture",
|
|
303
|
-
path: "spec/plugin/target-classifier-v2.json",
|
|
304
|
-
version: "target-classifier-v2",
|
|
305
|
-
sha256: "ae7336cce77a2e820f96f1cc309b93f8442c932dcebec25e3890d31cd098e2d1",
|
|
306
|
-
},
|
|
307
|
-
{
|
|
308
|
-
id: "token-ticket-schema",
|
|
309
|
-
path: "spec/plugin/token-ticket-v4.schema.json",
|
|
310
|
-
version: "token-ticket-v4",
|
|
311
|
-
sha256: "1576e35e4e06ba67c2fdc038934c5d5184fd1224adbd75c9f8eaf6a144ade238",
|
|
312
|
-
},
|
|
313
|
-
{
|
|
314
|
-
id: "wasm-worker-schema",
|
|
315
|
-
path: "spec/plugin/wasm-worker-v2.schema.json",
|
|
316
|
-
version: "redevplugin-wasm-worker-v2",
|
|
317
|
-
sha256: "00bf123f3a9ed932de4b71c180e2a5c34af0f82050defb271fedec42cf217902",
|
|
318
|
-
},
|
|
319
|
-
{
|
|
320
|
-
id: "worker-invocation-schema",
|
|
321
|
-
path: "spec/plugin/worker-invocation-v3.schema.json",
|
|
322
|
-
version: "worker-invocation-v3",
|
|
323
|
-
sha256: "f75b5b6ea0f5936e15f84a76d9b496690d7e1b7da7a05948ad26a88cc1360847",
|
|
324
|
-
},
|
|
325
|
-
];
|
|
1
|
+
// Code generated by scripts/generate_ui_contracts.mjs; DO NOT EDIT.
|
|
2
|
+
export const pluginAPIMajor = 1;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const pluginPlatformErrorCodes: readonly ["PLUGIN_INVALID_REQUEST", "PLUGIN_MANIFEST_INVALID", "PLUGIN_PACKAGE_INVALID", "PLUGIN_PACKAGE_TOO_LARGE", "PLUGIN_PACKAGE_PATH_FORBIDDEN", "PLUGIN_SIGNATURE_INVALID", "PLUGIN_TRUST_STATE_DENIED", "PLUGIN_TRUST_VERIFICATION_REQUIRED", "PLUGIN_TRUST_VERIFICATION_INVALID", "PLUGIN_RELEASE_REF_VERIFICATION_FAILED", "PLUGIN_RELEASE_REF_POLICY_DENIED", "PLUGIN_RELEASE_NETWORK", "PLUGIN_RELEASE_TIMEOUT", "PLUGIN_RELEASE_ASSET_MISSING", "PLUGIN_RELEASE_ASSET_INTEGRITY", "PLUGIN_INSTALL_INTERRUPTED", "PLUGIN_INSTALL_STATE_CONFLICT", "PLUGIN_INTERNAL_FAILURE", "PLUGIN_DISABLED", "
|
|
2
|
-
export declare const pluginBridgeErrorCodes: readonly ["PLUGIN_INVALID_REQUEST", "PLUGIN_MANIFEST_INVALID", "PLUGIN_PACKAGE_INVALID", "PLUGIN_PACKAGE_TOO_LARGE", "PLUGIN_PACKAGE_PATH_FORBIDDEN", "PLUGIN_SIGNATURE_INVALID", "PLUGIN_TRUST_STATE_DENIED", "PLUGIN_TRUST_VERIFICATION_REQUIRED", "PLUGIN_TRUST_VERIFICATION_INVALID", "PLUGIN_RELEASE_REF_VERIFICATION_FAILED", "PLUGIN_RELEASE_REF_POLICY_DENIED", "PLUGIN_RELEASE_NETWORK", "PLUGIN_RELEASE_TIMEOUT", "PLUGIN_RELEASE_ASSET_MISSING", "PLUGIN_RELEASE_ASSET_INTEGRITY", "PLUGIN_INSTALL_INTERRUPTED", "PLUGIN_INSTALL_STATE_CONFLICT", "PLUGIN_INTERNAL_FAILURE", "PLUGIN_DISABLED", "
|
|
3
|
-
export declare const pluginClientErrorCodes: readonly ["PLUGIN_INVALID_REQUEST", "PLUGIN_MANIFEST_INVALID", "PLUGIN_PACKAGE_INVALID", "PLUGIN_PACKAGE_TOO_LARGE", "PLUGIN_PACKAGE_PATH_FORBIDDEN", "PLUGIN_SIGNATURE_INVALID", "PLUGIN_TRUST_STATE_DENIED", "PLUGIN_TRUST_VERIFICATION_REQUIRED", "PLUGIN_TRUST_VERIFICATION_INVALID", "PLUGIN_RELEASE_REF_VERIFICATION_FAILED", "PLUGIN_RELEASE_REF_POLICY_DENIED", "PLUGIN_RELEASE_NETWORK", "PLUGIN_RELEASE_TIMEOUT", "PLUGIN_RELEASE_ASSET_MISSING", "PLUGIN_RELEASE_ASSET_INTEGRITY", "PLUGIN_INSTALL_INTERRUPTED", "PLUGIN_INSTALL_STATE_CONFLICT", "PLUGIN_INTERNAL_FAILURE", "PLUGIN_DISABLED", "
|
|
1
|
+
export declare const pluginPlatformErrorCodes: readonly ["PLUGIN_INVALID_REQUEST", "PLUGIN_MANIFEST_INVALID", "PLUGIN_PACKAGE_INVALID", "PLUGIN_PACKAGE_TOO_LARGE", "PLUGIN_PACKAGE_PATH_FORBIDDEN", "PLUGIN_SIGNATURE_INVALID", "PLUGIN_TRUST_STATE_DENIED", "PLUGIN_TRUST_VERIFICATION_REQUIRED", "PLUGIN_TRUST_VERIFICATION_INVALID", "PLUGIN_RELEASE_REF_VERIFICATION_FAILED", "PLUGIN_RELEASE_REF_POLICY_DENIED", "PLUGIN_RELEASE_NETWORK", "PLUGIN_RELEASE_TIMEOUT", "PLUGIN_RELEASE_ASSET_MISSING", "PLUGIN_RELEASE_ASSET_INTEGRITY", "PLUGIN_INSTALL_INTERRUPTED", "PLUGIN_INSTALL_STATE_CONFLICT", "PLUGIN_INTERNAL_FAILURE", "PLUGIN_DISABLED", "PLUGIN_PERMISSION_DENIED", "PLUGIN_ORIGIN_DENIED", "PLUGIN_ACTION_DENIED", "PLUGIN_OWNER_SCOPE_MISMATCH", "PLUGIN_SECRET_SCOPE_MISMATCH", "PLUGIN_STORAGE_SCOPE_MISMATCH", "PLUGIN_ADAPTER_FAILURE", "PLUGIN_SESSION_REVOKED", "PLUGIN_SESSION_TEARDOWN_INCOMPLETE", "PLUGIN_SESSION_FENCE_CAPACITY", "PLUGIN_CONFIRMATION_REQUIRED", "PLUGIN_CONFIRMATION_INVALID", "PLUGIN_TOKEN_EXPIRED", "PLUGIN_TOKEN_REPLAY", "PLUGIN_GATEWAY_TOKEN_INVALID", "PLUGIN_GATEWAY_TOKEN_REPLAYED", "PLUGIN_GATEWAY_TOKEN_CHANNEL_MISMATCH", "PLUGIN_ASSET_TICKET_INVALID", "PLUGIN_ASSET_SESSION_INVALID", "PLUGIN_STREAM_TICKET_INVALID", "PLUGIN_STREAM_DELIVERY_INVALID", "PLUGIN_STREAM_CANCELLED", "PLUGIN_LEASE_INVALID", "PLUGIN_LEASE_REPLAYED", "PLUGIN_GRANT_INVALID", "PLUGIN_STORAGE_QUOTA_EXCEEDED", "PLUGIN_EXECUTION_BLOCKED", "PLUGIN_EXECUTION_NOT_FOUND", "PLUGIN_EXECUTION_NOT_CANCELABLE", "PLUGIN_NETWORK_TARGET_DENIED", "PLUGIN_NETWORK_RATE_LIMITED", "PLUGIN_RUNTIME_UNAVAILABLE", "PLUGIN_RUNTIME_VERSION_MISMATCH", "PLUGIN_RUNTIME_CONTRACT_MISMATCH", "PLUGIN_UI_PROTOCOL_VIOLATION", "PLUGIN_SURFACE_QUIESCE_TIMEOUT", "PLUGIN_JSON_LIMIT_EXCEEDED", "PLUGIN_CAPABILITY_ERROR", "PLUGIN_WORKER_ERROR", "PLUGIN_CONTRACT_MISMATCH", "PLUGIN_MANAGEMENT_REVISION_MISMATCH", "PLUGIN_AUTHORIZATION_REVISION_MISMATCH", "PLUGIN_BINDING_REVISION_MISMATCH", "PLUGIN_VALUES_REVISION_MISMATCH", "PLUGIN_CSRF_REQUIRED", "PLUGIN_CSRF_INVALID", "PLUGIN_FEATURE_NOT_CONFIGURED"];
|
|
2
|
+
export declare const pluginBridgeErrorCodes: readonly ["PLUGIN_INVALID_REQUEST", "PLUGIN_MANIFEST_INVALID", "PLUGIN_PACKAGE_INVALID", "PLUGIN_PACKAGE_TOO_LARGE", "PLUGIN_PACKAGE_PATH_FORBIDDEN", "PLUGIN_SIGNATURE_INVALID", "PLUGIN_TRUST_STATE_DENIED", "PLUGIN_TRUST_VERIFICATION_REQUIRED", "PLUGIN_TRUST_VERIFICATION_INVALID", "PLUGIN_RELEASE_REF_VERIFICATION_FAILED", "PLUGIN_RELEASE_REF_POLICY_DENIED", "PLUGIN_RELEASE_NETWORK", "PLUGIN_RELEASE_TIMEOUT", "PLUGIN_RELEASE_ASSET_MISSING", "PLUGIN_RELEASE_ASSET_INTEGRITY", "PLUGIN_INSTALL_INTERRUPTED", "PLUGIN_INSTALL_STATE_CONFLICT", "PLUGIN_INTERNAL_FAILURE", "PLUGIN_DISABLED", "PLUGIN_PERMISSION_DENIED", "PLUGIN_ORIGIN_DENIED", "PLUGIN_ACTION_DENIED", "PLUGIN_OWNER_SCOPE_MISMATCH", "PLUGIN_SECRET_SCOPE_MISMATCH", "PLUGIN_STORAGE_SCOPE_MISMATCH", "PLUGIN_ADAPTER_FAILURE", "PLUGIN_SESSION_REVOKED", "PLUGIN_SESSION_TEARDOWN_INCOMPLETE", "PLUGIN_SESSION_FENCE_CAPACITY", "PLUGIN_CONFIRMATION_REQUIRED", "PLUGIN_CONFIRMATION_INVALID", "PLUGIN_TOKEN_EXPIRED", "PLUGIN_TOKEN_REPLAY", "PLUGIN_GATEWAY_TOKEN_INVALID", "PLUGIN_GATEWAY_TOKEN_REPLAYED", "PLUGIN_GATEWAY_TOKEN_CHANNEL_MISMATCH", "PLUGIN_ASSET_TICKET_INVALID", "PLUGIN_ASSET_SESSION_INVALID", "PLUGIN_STREAM_TICKET_INVALID", "PLUGIN_STREAM_DELIVERY_INVALID", "PLUGIN_STREAM_CANCELLED", "PLUGIN_LEASE_INVALID", "PLUGIN_LEASE_REPLAYED", "PLUGIN_GRANT_INVALID", "PLUGIN_STORAGE_QUOTA_EXCEEDED", "PLUGIN_EXECUTION_BLOCKED", "PLUGIN_EXECUTION_NOT_FOUND", "PLUGIN_EXECUTION_NOT_CANCELABLE", "PLUGIN_NETWORK_TARGET_DENIED", "PLUGIN_NETWORK_RATE_LIMITED", "PLUGIN_RUNTIME_UNAVAILABLE", "PLUGIN_RUNTIME_VERSION_MISMATCH", "PLUGIN_RUNTIME_CONTRACT_MISMATCH", "PLUGIN_UI_PROTOCOL_VIOLATION", "PLUGIN_SURFACE_QUIESCE_TIMEOUT", "PLUGIN_JSON_LIMIT_EXCEEDED", "PLUGIN_CAPABILITY_ERROR", "PLUGIN_WORKER_ERROR", "PLUGIN_CONTRACT_MISMATCH", "PLUGIN_MANAGEMENT_REVISION_MISMATCH", "PLUGIN_AUTHORIZATION_REVISION_MISMATCH", "PLUGIN_BINDING_REVISION_MISMATCH", "PLUGIN_VALUES_REVISION_MISMATCH", "PLUGIN_CSRF_REQUIRED", "PLUGIN_CSRF_INVALID", "PLUGIN_FEATURE_NOT_CONFIGURED", "PLUGIN_CONFIRMATION_REJECTED", "PLUGIN_BRIDGE_CANCELLED", "PLUGIN_BRIDGE_TIMEOUT", "PLUGIN_BRIDGE_DISPOSED", "PLUGIN_BRIDGE_HANDSHAKE_FAILED", "PLUGIN_BRIDGE_HANDSHAKE_REQUIRED"];
|
|
3
|
+
export declare const pluginClientErrorCodes: readonly ["PLUGIN_INVALID_REQUEST", "PLUGIN_MANIFEST_INVALID", "PLUGIN_PACKAGE_INVALID", "PLUGIN_PACKAGE_TOO_LARGE", "PLUGIN_PACKAGE_PATH_FORBIDDEN", "PLUGIN_SIGNATURE_INVALID", "PLUGIN_TRUST_STATE_DENIED", "PLUGIN_TRUST_VERIFICATION_REQUIRED", "PLUGIN_TRUST_VERIFICATION_INVALID", "PLUGIN_RELEASE_REF_VERIFICATION_FAILED", "PLUGIN_RELEASE_REF_POLICY_DENIED", "PLUGIN_RELEASE_NETWORK", "PLUGIN_RELEASE_TIMEOUT", "PLUGIN_RELEASE_ASSET_MISSING", "PLUGIN_RELEASE_ASSET_INTEGRITY", "PLUGIN_INSTALL_INTERRUPTED", "PLUGIN_INSTALL_STATE_CONFLICT", "PLUGIN_INTERNAL_FAILURE", "PLUGIN_DISABLED", "PLUGIN_PERMISSION_DENIED", "PLUGIN_ORIGIN_DENIED", "PLUGIN_ACTION_DENIED", "PLUGIN_OWNER_SCOPE_MISMATCH", "PLUGIN_SECRET_SCOPE_MISMATCH", "PLUGIN_STORAGE_SCOPE_MISMATCH", "PLUGIN_ADAPTER_FAILURE", "PLUGIN_SESSION_REVOKED", "PLUGIN_SESSION_TEARDOWN_INCOMPLETE", "PLUGIN_SESSION_FENCE_CAPACITY", "PLUGIN_CONFIRMATION_REQUIRED", "PLUGIN_CONFIRMATION_INVALID", "PLUGIN_TOKEN_EXPIRED", "PLUGIN_TOKEN_REPLAY", "PLUGIN_GATEWAY_TOKEN_INVALID", "PLUGIN_GATEWAY_TOKEN_REPLAYED", "PLUGIN_GATEWAY_TOKEN_CHANNEL_MISMATCH", "PLUGIN_ASSET_TICKET_INVALID", "PLUGIN_ASSET_SESSION_INVALID", "PLUGIN_STREAM_TICKET_INVALID", "PLUGIN_STREAM_DELIVERY_INVALID", "PLUGIN_STREAM_CANCELLED", "PLUGIN_LEASE_INVALID", "PLUGIN_LEASE_REPLAYED", "PLUGIN_GRANT_INVALID", "PLUGIN_STORAGE_QUOTA_EXCEEDED", "PLUGIN_EXECUTION_BLOCKED", "PLUGIN_EXECUTION_NOT_FOUND", "PLUGIN_EXECUTION_NOT_CANCELABLE", "PLUGIN_NETWORK_TARGET_DENIED", "PLUGIN_NETWORK_RATE_LIMITED", "PLUGIN_RUNTIME_UNAVAILABLE", "PLUGIN_RUNTIME_VERSION_MISMATCH", "PLUGIN_RUNTIME_CONTRACT_MISMATCH", "PLUGIN_UI_PROTOCOL_VIOLATION", "PLUGIN_SURFACE_QUIESCE_TIMEOUT", "PLUGIN_JSON_LIMIT_EXCEEDED", "PLUGIN_CAPABILITY_ERROR", "PLUGIN_WORKER_ERROR", "PLUGIN_CONTRACT_MISMATCH", "PLUGIN_MANAGEMENT_REVISION_MISMATCH", "PLUGIN_AUTHORIZATION_REVISION_MISMATCH", "PLUGIN_BINDING_REVISION_MISMATCH", "PLUGIN_VALUES_REVISION_MISMATCH", "PLUGIN_CSRF_REQUIRED", "PLUGIN_CSRF_INVALID", "PLUGIN_FEATURE_NOT_CONFIGURED", "PLUGIN_CONFIRMATION_REJECTED", "PLUGIN_BRIDGE_CANCELLED", "PLUGIN_BRIDGE_TIMEOUT", "PLUGIN_BRIDGE_DISPOSED", "PLUGIN_BRIDGE_HANDSHAKE_FAILED", "PLUGIN_BRIDGE_HANDSHAKE_REQUIRED", "PLUGIN_PLATFORM_REQUEST_FAILED", "PLUGIN_STREAM_FAILED"];
|
|
4
4
|
export declare const runtimeProcessFailureCodes: readonly ["RUNTIME_PROCESS_FAILED", "RUNTIME_PROCESS_EXIT_UNEXPECTED", "RUNTIME_PROCESS_EXIT_UNRECOGNIZED", "RUNTIME_PROCESS_SIGNALLED", "IPC_WRITER_CAPACITY_OVERFLOW", "IPC_WRITER_CAPACITY_LIMIT_EXCEEDED", "IPC_WRITER_START_FAILED", "IPC_WRITER_CLOSED", "IPC_WRITER_BATCH_SIZE_OVERFLOW", "IPC_WRITER_WRITE_FAILED", "IPC_WRITER_FLUSH_FAILED", "IPC_WRITER_PANICKED"];
|