@floegence/redevplugin-ui 0.5.1 → 0.6.6
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 +234 -108
- package/dist/contracts.gen.js +255 -108
- package/dist/error-codes.gen.d.ts +3 -3
- package/dist/error-codes.gen.js +13 -1
- package/dist/errors.d.ts +1 -1
- package/dist/http.d.ts +5 -1
- package/dist/http.js +37 -1
- package/dist/local-import.js +16 -10
- package/dist/openapi.gen.d.ts +428 -182
- package/dist/platform.d.ts +10 -8
- package/dist/platform.js +102 -70
- package/dist/surface-scope.d.ts +2 -1
- package/dist/surface-scope.js +34 -9
- package/dist/surface.js +67 -8
- package/package.json +4 -1
package/dist/openapi.gen.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Do not make direct changes to the file.
|
|
4
4
|
*/
|
|
5
5
|
export interface paths {
|
|
6
|
-
"/_redevplugin/api/plugins/local-
|
|
6
|
+
"/_redevplugin/api/plugins/{plugin_instance_id}/local-import": {
|
|
7
7
|
parameters: {
|
|
8
8
|
query?: never;
|
|
9
9
|
header?: never;
|
|
@@ -11,7 +11,7 @@ export interface paths {
|
|
|
11
11
|
cookie?: never;
|
|
12
12
|
};
|
|
13
13
|
get?: never;
|
|
14
|
-
put
|
|
14
|
+
put: operations["updateLocalPackage"];
|
|
15
15
|
post: operations["importLocalPackage"];
|
|
16
16
|
delete?: never;
|
|
17
17
|
options?: never;
|
|
@@ -83,22 +83,6 @@ export interface paths {
|
|
|
83
83
|
patch?: never;
|
|
84
84
|
trace?: never;
|
|
85
85
|
};
|
|
86
|
-
"/_redevplugin/api/plugins/{plugin_instance_id}/local-import": {
|
|
87
|
-
parameters: {
|
|
88
|
-
query?: never;
|
|
89
|
-
header?: never;
|
|
90
|
-
path?: never;
|
|
91
|
-
cookie?: never;
|
|
92
|
-
};
|
|
93
|
-
get?: never;
|
|
94
|
-
put: operations["updateLocalPackage"];
|
|
95
|
-
post?: never;
|
|
96
|
-
delete?: never;
|
|
97
|
-
options?: never;
|
|
98
|
-
head?: never;
|
|
99
|
-
patch?: never;
|
|
100
|
-
trace?: never;
|
|
101
|
-
};
|
|
102
86
|
"/_redevplugin/api/plugins/update-release-ref": {
|
|
103
87
|
parameters: {
|
|
104
88
|
query?: never;
|
|
@@ -131,49 +115,49 @@ export interface paths {
|
|
|
131
115
|
patch?: never;
|
|
132
116
|
trace?: never;
|
|
133
117
|
};
|
|
134
|
-
"/_redevplugin/api/plugins/catalog": {
|
|
118
|
+
"/_redevplugin/api/plugins/catalog/query": {
|
|
135
119
|
parameters: {
|
|
136
120
|
query?: never;
|
|
137
121
|
header?: never;
|
|
138
122
|
path?: never;
|
|
139
123
|
cookie?: never;
|
|
140
124
|
};
|
|
141
|
-
get
|
|
125
|
+
get?: never;
|
|
142
126
|
put?: never;
|
|
143
|
-
post
|
|
127
|
+
post: operations["listPlugins"];
|
|
144
128
|
delete?: never;
|
|
145
129
|
options?: never;
|
|
146
130
|
head?: never;
|
|
147
131
|
patch?: never;
|
|
148
132
|
trace?: never;
|
|
149
133
|
};
|
|
150
|
-
"/_redevplugin/api/plugins/features": {
|
|
134
|
+
"/_redevplugin/api/plugins/features/query": {
|
|
151
135
|
parameters: {
|
|
152
136
|
query?: never;
|
|
153
137
|
header?: never;
|
|
154
138
|
path?: never;
|
|
155
139
|
cookie?: never;
|
|
156
140
|
};
|
|
157
|
-
get
|
|
141
|
+
get?: never;
|
|
158
142
|
put?: never;
|
|
159
|
-
post
|
|
143
|
+
post: operations["getPluginFeatures"];
|
|
160
144
|
delete?: never;
|
|
161
145
|
options?: never;
|
|
162
146
|
head?: never;
|
|
163
147
|
patch?: never;
|
|
164
148
|
trace?: never;
|
|
165
149
|
};
|
|
166
|
-
"/_redevplugin/api/plugins/platform/compatibility": {
|
|
150
|
+
"/_redevplugin/api/plugins/platform/compatibility/query": {
|
|
167
151
|
parameters: {
|
|
168
152
|
query?: never;
|
|
169
153
|
header?: never;
|
|
170
154
|
path?: never;
|
|
171
155
|
cookie?: never;
|
|
172
156
|
};
|
|
173
|
-
|
|
174
|
-
get: operations["getPluginPlatformCompatibility"];
|
|
157
|
+
get?: never;
|
|
175
158
|
put?: never;
|
|
176
|
-
|
|
159
|
+
/** @description Returns the host-consumable ReDevPlugin compatibility manifest for the mounted platform artifact set. */
|
|
160
|
+
post: operations["getPluginPlatformCompatibility"];
|
|
177
161
|
delete?: never;
|
|
178
162
|
options?: never;
|
|
179
163
|
head?: never;
|
|
@@ -196,7 +180,7 @@ export interface paths {
|
|
|
196
180
|
patch?: never;
|
|
197
181
|
trace?: never;
|
|
198
182
|
};
|
|
199
|
-
"/_redevplugin/api/plugins/
|
|
183
|
+
"/_redevplugin/api/plugins/session/revoke-scope": {
|
|
200
184
|
parameters: {
|
|
201
185
|
query?: never;
|
|
202
186
|
header?: never;
|
|
@@ -205,8 +189,8 @@ export interface paths {
|
|
|
205
189
|
};
|
|
206
190
|
get?: never;
|
|
207
191
|
put?: never;
|
|
208
|
-
/** @description
|
|
209
|
-
post: operations["
|
|
192
|
+
/** @description Irreversibly fences the authenticated session, drains every exact-session platform and runtime resource, and returns only public cumulative counts. */
|
|
193
|
+
post: operations["revokePluginSessionScope"];
|
|
210
194
|
delete?: never;
|
|
211
195
|
options?: never;
|
|
212
196
|
head?: never;
|
|
@@ -375,17 +359,17 @@ export interface paths {
|
|
|
375
359
|
patch?: never;
|
|
376
360
|
trace?: never;
|
|
377
361
|
};
|
|
378
|
-
"/_redevplugin/api/plugins/intents": {
|
|
362
|
+
"/_redevplugin/api/plugins/intents/query": {
|
|
379
363
|
parameters: {
|
|
380
364
|
query?: never;
|
|
381
365
|
header?: never;
|
|
382
366
|
path?: never;
|
|
383
367
|
cookie?: never;
|
|
384
368
|
};
|
|
385
|
-
|
|
386
|
-
get: operations["listPluginIntents"];
|
|
369
|
+
get?: never;
|
|
387
370
|
put?: never;
|
|
388
|
-
|
|
371
|
+
/** @description Lists enabled, runnable plugin intents available to host-mediated interop. The response data is `{ "intents": [...] }`. */
|
|
372
|
+
post: operations["listPluginIntents"];
|
|
389
373
|
delete?: never;
|
|
390
374
|
options?: never;
|
|
391
375
|
head?: never;
|
|
@@ -409,32 +393,32 @@ export interface paths {
|
|
|
409
393
|
patch?: never;
|
|
410
394
|
trace?: never;
|
|
411
395
|
};
|
|
412
|
-
"/_redevplugin/api/plugins/operations": {
|
|
396
|
+
"/_redevplugin/api/plugins/operations/query": {
|
|
413
397
|
parameters: {
|
|
414
398
|
query?: never;
|
|
415
399
|
header?: never;
|
|
416
400
|
path?: never;
|
|
417
401
|
cookie?: never;
|
|
418
402
|
};
|
|
419
|
-
get
|
|
403
|
+
get?: never;
|
|
420
404
|
put?: never;
|
|
421
|
-
post
|
|
405
|
+
post: operations["listPluginOperations"];
|
|
422
406
|
delete?: never;
|
|
423
407
|
options?: never;
|
|
424
408
|
head?: never;
|
|
425
409
|
patch?: never;
|
|
426
410
|
trace?: never;
|
|
427
411
|
};
|
|
428
|
-
"/_redevplugin/api/plugins/operations/{operation_id}": {
|
|
412
|
+
"/_redevplugin/api/plugins/operations/{operation_id}/query": {
|
|
429
413
|
parameters: {
|
|
430
414
|
query?: never;
|
|
431
415
|
header?: never;
|
|
432
416
|
path?: never;
|
|
433
417
|
cookie?: never;
|
|
434
418
|
};
|
|
435
|
-
get
|
|
419
|
+
get?: never;
|
|
436
420
|
put?: never;
|
|
437
|
-
post
|
|
421
|
+
post: operations["getPluginOperation"];
|
|
438
422
|
delete?: never;
|
|
439
423
|
options?: never;
|
|
440
424
|
head?: never;
|
|
@@ -506,16 +490,16 @@ export interface paths {
|
|
|
506
490
|
patch?: never;
|
|
507
491
|
trace?: never;
|
|
508
492
|
};
|
|
509
|
-
"/_redevplugin/api/plugins/runtime/health": {
|
|
493
|
+
"/_redevplugin/api/plugins/runtime/health/query": {
|
|
510
494
|
parameters: {
|
|
511
495
|
query?: never;
|
|
512
496
|
header?: never;
|
|
513
497
|
path?: never;
|
|
514
498
|
cookie?: never;
|
|
515
499
|
};
|
|
516
|
-
get
|
|
500
|
+
get?: never;
|
|
517
501
|
put?: never;
|
|
518
|
-
post
|
|
502
|
+
post: operations["getPluginRuntimeHealth"];
|
|
519
503
|
delete?: never;
|
|
520
504
|
options?: never;
|
|
521
505
|
head?: never;
|
|
@@ -570,16 +554,16 @@ export interface paths {
|
|
|
570
554
|
patch?: never;
|
|
571
555
|
trace?: never;
|
|
572
556
|
};
|
|
573
|
-
"/_redevplugin/api/plugins/retained-data": {
|
|
557
|
+
"/_redevplugin/api/plugins/retained-data/query": {
|
|
574
558
|
parameters: {
|
|
575
559
|
query?: never;
|
|
576
560
|
header?: never;
|
|
577
561
|
path?: never;
|
|
578
562
|
cookie?: never;
|
|
579
563
|
};
|
|
580
|
-
get
|
|
564
|
+
get?: never;
|
|
581
565
|
put?: never;
|
|
582
|
-
post
|
|
566
|
+
post: operations["listPluginRetainedData"];
|
|
583
567
|
delete?: never;
|
|
584
568
|
options?: never;
|
|
585
569
|
head?: never;
|
|
@@ -634,16 +618,16 @@ export interface paths {
|
|
|
634
618
|
patch?: never;
|
|
635
619
|
trace?: never;
|
|
636
620
|
};
|
|
637
|
-
"/_redevplugin/api/plugins/permissions": {
|
|
621
|
+
"/_redevplugin/api/plugins/permissions/query": {
|
|
638
622
|
parameters: {
|
|
639
623
|
query?: never;
|
|
640
624
|
header?: never;
|
|
641
625
|
path?: never;
|
|
642
626
|
cookie?: never;
|
|
643
627
|
};
|
|
644
|
-
get
|
|
628
|
+
get?: never;
|
|
645
629
|
put?: never;
|
|
646
|
-
post
|
|
630
|
+
post: operations["listPluginPermissionGrants"];
|
|
647
631
|
delete?: never;
|
|
648
632
|
options?: never;
|
|
649
633
|
head?: never;
|
|
@@ -682,16 +666,32 @@ export interface paths {
|
|
|
682
666
|
patch?: never;
|
|
683
667
|
trace?: never;
|
|
684
668
|
};
|
|
685
|
-
"/_redevplugin/api/plugins/security-policies": {
|
|
669
|
+
"/_redevplugin/api/plugins/security-policies/query": {
|
|
686
670
|
parameters: {
|
|
687
671
|
query?: never;
|
|
688
672
|
header?: never;
|
|
689
673
|
path?: never;
|
|
690
674
|
cookie?: never;
|
|
691
675
|
};
|
|
692
|
-
get
|
|
676
|
+
get?: never;
|
|
693
677
|
put?: never;
|
|
694
|
-
post
|
|
678
|
+
post: operations["listPluginSecurityPolicies"];
|
|
679
|
+
delete?: never;
|
|
680
|
+
options?: never;
|
|
681
|
+
head?: never;
|
|
682
|
+
patch?: never;
|
|
683
|
+
trace?: never;
|
|
684
|
+
};
|
|
685
|
+
"/_redevplugin/api/plugins/security-policies/{plugin_instance_id}/query": {
|
|
686
|
+
parameters: {
|
|
687
|
+
query?: never;
|
|
688
|
+
header?: never;
|
|
689
|
+
path?: never;
|
|
690
|
+
cookie?: never;
|
|
691
|
+
};
|
|
692
|
+
get?: never;
|
|
693
|
+
put?: never;
|
|
694
|
+
post: operations["getPluginSecurityPolicy"];
|
|
695
695
|
delete?: never;
|
|
696
696
|
options?: never;
|
|
697
697
|
head?: never;
|
|
@@ -705,7 +705,7 @@ export interface paths {
|
|
|
705
705
|
path?: never;
|
|
706
706
|
cookie?: never;
|
|
707
707
|
};
|
|
708
|
-
get
|
|
708
|
+
get?: never;
|
|
709
709
|
put: operations["putPluginSecurityPolicy"];
|
|
710
710
|
post?: never;
|
|
711
711
|
delete: operations["deletePluginSecurityPolicy"];
|
|
@@ -714,16 +714,16 @@ export interface paths {
|
|
|
714
714
|
patch?: never;
|
|
715
715
|
trace?: never;
|
|
716
716
|
};
|
|
717
|
-
"/_redevplugin/api/plugins/diagnostics": {
|
|
717
|
+
"/_redevplugin/api/plugins/diagnostics/query": {
|
|
718
718
|
parameters: {
|
|
719
719
|
query?: never;
|
|
720
720
|
header?: never;
|
|
721
721
|
path?: never;
|
|
722
722
|
cookie?: never;
|
|
723
723
|
};
|
|
724
|
-
get
|
|
724
|
+
get?: never;
|
|
725
725
|
put?: never;
|
|
726
|
-
post
|
|
726
|
+
post: operations["listPluginDiagnosticEvents"];
|
|
727
727
|
delete?: never;
|
|
728
728
|
options?: never;
|
|
729
729
|
head?: never;
|
|
@@ -778,16 +778,32 @@ export interface paths {
|
|
|
778
778
|
patch?: never;
|
|
779
779
|
trace?: never;
|
|
780
780
|
};
|
|
781
|
-
"/_redevplugin/api/plugins/{plugin_instance_id}/settings/schema": {
|
|
781
|
+
"/_redevplugin/api/plugins/{plugin_instance_id}/settings/schema/query": {
|
|
782
782
|
parameters: {
|
|
783
783
|
query?: never;
|
|
784
784
|
header?: never;
|
|
785
785
|
path?: never;
|
|
786
786
|
cookie?: never;
|
|
787
787
|
};
|
|
788
|
-
get
|
|
788
|
+
get?: never;
|
|
789
789
|
put?: never;
|
|
790
|
-
post
|
|
790
|
+
post: operations["getPluginSettingsSchema"];
|
|
791
|
+
delete?: never;
|
|
792
|
+
options?: never;
|
|
793
|
+
head?: never;
|
|
794
|
+
patch?: never;
|
|
795
|
+
trace?: never;
|
|
796
|
+
};
|
|
797
|
+
"/_redevplugin/api/plugins/{plugin_instance_id}/settings/query": {
|
|
798
|
+
parameters: {
|
|
799
|
+
query?: never;
|
|
800
|
+
header?: never;
|
|
801
|
+
path?: never;
|
|
802
|
+
cookie?: never;
|
|
803
|
+
};
|
|
804
|
+
get?: never;
|
|
805
|
+
put?: never;
|
|
806
|
+
post: operations["getPluginSettings"];
|
|
791
807
|
delete?: never;
|
|
792
808
|
options?: never;
|
|
793
809
|
head?: never;
|
|
@@ -801,7 +817,7 @@ export interface paths {
|
|
|
801
817
|
path?: never;
|
|
802
818
|
cookie?: never;
|
|
803
819
|
};
|
|
804
|
-
get
|
|
820
|
+
get?: never;
|
|
805
821
|
put?: never;
|
|
806
822
|
post?: never;
|
|
807
823
|
delete?: never;
|
|
@@ -864,10 +880,10 @@ export interface components {
|
|
|
864
880
|
ok: true;
|
|
865
881
|
data: components["schemas"]["SurfaceDisposeResult"];
|
|
866
882
|
};
|
|
867
|
-
|
|
883
|
+
SessionScopeRevokeSuccessResponse: {
|
|
868
884
|
/** @constant */
|
|
869
885
|
ok: true;
|
|
870
|
-
data: components["schemas"]["
|
|
886
|
+
data: components["schemas"]["SessionScopeRevokeCompleteResult"];
|
|
871
887
|
};
|
|
872
888
|
PluginRecordSuccessResponse: {
|
|
873
889
|
/** @constant */
|
|
@@ -1010,7 +1026,7 @@ export interface components {
|
|
|
1010
1026
|
data: components["schemas"]["PluginSettingsSnapshot"];
|
|
1011
1027
|
};
|
|
1012
1028
|
PlatformError: components["schemas"]["GenericPlatformError"] | components["schemas"]["JSONLimitPlatformError"] | components["schemas"]["PackageValidationPlatformError"] | components["schemas"]["ManagementRevisionPlatformError"] | components["schemas"]["AuthorizationRevisionPlatformError"] | components["schemas"]["BindingRevisionPlatformError"] | components["schemas"]["ValuesRevisionPlatformError"] | components["schemas"]["CapabilityPlatformError"] | components["schemas"]["WorkerPlatformError"];
|
|
1013
|
-
MutationPlatformError: components["schemas"]["MutationGenericPlatformError"] | components["schemas"]["MutationJSONLimitPlatformError"] | components["schemas"]["MutationPackageValidationPlatformError"] | components["schemas"]["MutationManagementRevisionPlatformError"] | components["schemas"]["MutationAuthorizationRevisionPlatformError"] | components["schemas"]["MutationBindingRevisionPlatformError"] | components["schemas"]["MutationValuesRevisionPlatformError"] | components["schemas"]["MutationCapabilityPlatformError"] | components["schemas"]["MutationWorkerPlatformError"];
|
|
1029
|
+
MutationPlatformError: components["schemas"]["MutationGenericPlatformError"] | components["schemas"]["MutationJSONLimitPlatformError"] | components["schemas"]["MutationPackageValidationPlatformError"] | components["schemas"]["MutationManagementRevisionPlatformError"] | components["schemas"]["MutationAuthorizationRevisionPlatformError"] | components["schemas"]["MutationBindingRevisionPlatformError"] | components["schemas"]["MutationValuesRevisionPlatformError"] | components["schemas"]["MutationCapabilityPlatformError"] | components["schemas"]["MutationWorkerPlatformError"] | components["schemas"]["MutationSessionTeardownPlatformError"];
|
|
1014
1030
|
GenericPlatformError: {
|
|
1015
1031
|
code: components["schemas"]["GenericPlatformErrorCode"];
|
|
1016
1032
|
message: components["schemas"]["PlatformErrorMessage"];
|
|
@@ -1126,8 +1142,16 @@ export interface components {
|
|
|
1126
1142
|
details: components["schemas"]["WorkerErrorDetails"];
|
|
1127
1143
|
mutation_outcome: components["schemas"]["MutationOutcome"];
|
|
1128
1144
|
};
|
|
1145
|
+
MutationSessionTeardownPlatformError: {
|
|
1146
|
+
/** @constant */
|
|
1147
|
+
code: "PLUGIN_SESSION_TEARDOWN_INCOMPLETE";
|
|
1148
|
+
message: components["schemas"]["PlatformErrorMessage"];
|
|
1149
|
+
details: components["schemas"]["SessionTeardownIncompleteErrorDetails"];
|
|
1150
|
+
/** @constant */
|
|
1151
|
+
mutation_outcome: "committed";
|
|
1152
|
+
};
|
|
1129
1153
|
/** @enum {string} */
|
|
1130
|
-
MutationOutcome: "not_committed" | "unknown";
|
|
1154
|
+
MutationOutcome: "committed" | "not_committed" | "unknown";
|
|
1131
1155
|
EmptyErrorDetails: Record<string, never>;
|
|
1132
1156
|
JSONLimitErrorDetails: {
|
|
1133
1157
|
/** @enum {string} */
|
|
@@ -1156,6 +1180,9 @@ export interface components {
|
|
|
1156
1180
|
/** @enum {string} */
|
|
1157
1181
|
worker_error_origin: "runtime" | "hostcall" | "plugin";
|
|
1158
1182
|
};
|
|
1183
|
+
SessionTeardownIncompleteErrorDetails: {
|
|
1184
|
+
session_scope: components["schemas"]["SessionScopeRevokeIncompleteResult"];
|
|
1185
|
+
};
|
|
1159
1186
|
ManagementRevisionMismatchDetails: {
|
|
1160
1187
|
plugin_instance_id: string;
|
|
1161
1188
|
expected_management_revision: number;
|
|
@@ -1180,21 +1207,22 @@ export interface components {
|
|
|
1180
1207
|
expected_values_revision: number;
|
|
1181
1208
|
actual_values_revision: number;
|
|
1182
1209
|
};
|
|
1183
|
-
ErrorCode: components["schemas"]["
|
|
1210
|
+
ErrorCode: components["schemas"]["ErrorCodesV6PlatformErrorCode"];
|
|
1184
1211
|
PlatformErrorMessage: string;
|
|
1185
1212
|
/** @enum {string} */
|
|
1186
|
-
GenericPlatformErrorCode: "PLUGIN_INVALID_REQUEST" | "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_DISABLED" | "PLUGIN_DISABLED_BY_POLICY" | "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_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_OPERATION_BLOCKED" | "PLUGIN_OPERATION_NOT_FOUND" | "PLUGIN_OPERATION_NOT_CANCELABLE" | "PLUGIN_NETWORK_TARGET_DENIED" | "PLUGIN_NETWORK_RATE_LIMITED" | "PLUGIN_RUNTIME_UNAVAILABLE" | "PLUGIN_RUNTIME_VERSION_MISMATCH" | "PLUGIN_UI_PROTOCOL_UNSUPPORTED" | "PLUGIN_UI_PROTOCOL_VIOLATION" | "PLUGIN_SURFACE_QUIESCE_TIMEOUT" | "PLUGIN_CONTRACT_MISMATCH" | "PLUGIN_CSRF_REQUIRED" | "PLUGIN_CSRF_INVALID" | "PLUGIN_FEATURE_NOT_CONFIGURED";
|
|
1213
|
+
GenericPlatformErrorCode: "PLUGIN_INVALID_REQUEST" | "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_DISABLED" | "PLUGIN_DISABLED_BY_POLICY" | "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_OPERATION_BLOCKED" | "PLUGIN_OPERATION_NOT_FOUND" | "PLUGIN_OPERATION_NOT_CANCELABLE" | "PLUGIN_NETWORK_TARGET_DENIED" | "PLUGIN_NETWORK_RATE_LIMITED" | "PLUGIN_RUNTIME_UNAVAILABLE" | "PLUGIN_RUNTIME_VERSION_MISMATCH" | "PLUGIN_RUNTIME_CONTRACT_MISMATCH" | "PLUGIN_UI_PROTOCOL_UNSUPPORTED" | "PLUGIN_UI_PROTOCOL_VIOLATION" | "PLUGIN_SURFACE_QUIESCE_TIMEOUT" | "PLUGIN_CONTRACT_MISMATCH" | "PLUGIN_CSRF_REQUIRED" | "PLUGIN_CSRF_INVALID" | "PLUGIN_FEATURE_NOT_CONFIGURED";
|
|
1187
1214
|
SurfaceDisposeResult: {
|
|
1188
1215
|
/** @constant */
|
|
1189
1216
|
disposed: true;
|
|
1190
1217
|
};
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1218
|
+
SessionScopeRevokeCounts: components["schemas"]["SessionScopeV1RevokeCounts"];
|
|
1219
|
+
SessionScopeRevokeResult: components["schemas"]["SessionScopeV1PublicRevokeResult"];
|
|
1220
|
+
SessionScopeRevokeCompleteResult: components["schemas"]["SessionScopeV1CompleteRevokeResult"];
|
|
1221
|
+
SessionScopeRevokeIncompleteResult: components["schemas"]["SessionScopeV1IncompleteRevokeResult"];
|
|
1194
1222
|
PluginCatalogResult: {
|
|
1195
1223
|
plugins: components["schemas"]["PluginRecord"][];
|
|
1196
1224
|
};
|
|
1197
|
-
PluginCompatibilityManifest: components["schemas"]["
|
|
1225
|
+
PluginCompatibilityManifest: components["schemas"]["CompatibilityManifestV8"];
|
|
1198
1226
|
PluginOperationList: {
|
|
1199
1227
|
operations: components["schemas"]["OperationRecord"][];
|
|
1200
1228
|
next_cursor?: string;
|
|
@@ -1274,7 +1302,7 @@ export interface components {
|
|
|
1274
1302
|
invocation_id?: string;
|
|
1275
1303
|
method?: string;
|
|
1276
1304
|
failure_code?: string;
|
|
1277
|
-
runtime_process_failure_code?: components["schemas"]["
|
|
1305
|
+
runtime_process_failure_code?: components["schemas"]["ErrorCodesV6RuntimeProcessFailureCode"];
|
|
1278
1306
|
operation_id?: string;
|
|
1279
1307
|
stream_id?: string;
|
|
1280
1308
|
runtime_instance_id?: string;
|
|
@@ -1282,9 +1310,10 @@ export interface components {
|
|
|
1282
1310
|
runtime_version?: string;
|
|
1283
1311
|
rust_ipc_version?: string;
|
|
1284
1312
|
wasm_abi_version?: string;
|
|
1313
|
+
contract_set_sha256?: string;
|
|
1285
1314
|
runtime_target_os?: string;
|
|
1286
1315
|
runtime_target_arch?: string;
|
|
1287
|
-
|
|
1316
|
+
runtime_binary_sha256?: string;
|
|
1288
1317
|
os?: string;
|
|
1289
1318
|
arch?: string;
|
|
1290
1319
|
stream?: string;
|
|
@@ -1362,15 +1391,20 @@ export interface components {
|
|
|
1362
1391
|
/** @constant */
|
|
1363
1392
|
arch: "arm64";
|
|
1364
1393
|
};
|
|
1394
|
+
/** @enum {string} */
|
|
1395
|
+
RuntimeAdmissionTarget: "linux/amd64" | "linux/arm64";
|
|
1365
1396
|
StrictSemVer: string;
|
|
1366
1397
|
RuntimeDescriptor: {
|
|
1367
|
-
version: components["schemas"]["StrictSemVer"];
|
|
1368
|
-
target: components["schemas"]["RuntimeTarget"];
|
|
1369
1398
|
/** @constant */
|
|
1370
|
-
|
|
1399
|
+
schema_version: "runtime-descriptor-v2";
|
|
1400
|
+
platform_version: components["schemas"]["StrictSemVer"];
|
|
1401
|
+
target: components["schemas"]["RuntimeAdmissionTarget"];
|
|
1402
|
+
/** @constant */
|
|
1403
|
+
rust_ipc_version: "rust-ipc-v6";
|
|
1371
1404
|
/** @constant */
|
|
1372
1405
|
wasm_abi_version: "redevplugin-wasm-worker-v2";
|
|
1373
|
-
|
|
1406
|
+
contract_set_sha256: string;
|
|
1407
|
+
binary_sha256: string;
|
|
1374
1408
|
};
|
|
1375
1409
|
/** @description Negotiated runtime capacities. per_plugin_concurrency must not exceed worker_count. Route capacities are derived exactly from negotiated limits: active hostcall routes = worker_count, canceled hostcall retention = worker_count + queue_capacity, and compile-flight artifact routes = worker_count. */
|
|
1376
1410
|
RuntimeLimits: {
|
|
@@ -1595,6 +1629,7 @@ export interface components {
|
|
|
1595
1629
|
};
|
|
1596
1630
|
PluginReleaseRef: {
|
|
1597
1631
|
source_id: string;
|
|
1632
|
+
channel: string;
|
|
1598
1633
|
release_metadata_ref: string;
|
|
1599
1634
|
release_metadata_sha256: string;
|
|
1600
1635
|
publisher_id: string;
|
|
@@ -1637,8 +1672,37 @@ export interface components {
|
|
|
1637
1672
|
surface_instance_id?: string;
|
|
1638
1673
|
expected_management_revision: number;
|
|
1639
1674
|
};
|
|
1640
|
-
|
|
1675
|
+
RevokeSessionScopeRequest: Record<string, never>;
|
|
1641
1676
|
EmptyRequest: Record<string, never>;
|
|
1677
|
+
EmptyQueryRequest: Record<string, never>;
|
|
1678
|
+
ListIntentsQueryRequest: {
|
|
1679
|
+
intent_id?: string;
|
|
1680
|
+
plugin_instance_id?: string;
|
|
1681
|
+
};
|
|
1682
|
+
ListOperationsQueryRequest: {
|
|
1683
|
+
plugin_instance_id?: string;
|
|
1684
|
+
cursor?: string;
|
|
1685
|
+
limit?: number;
|
|
1686
|
+
};
|
|
1687
|
+
ListRetainedDataQueryRequest: {
|
|
1688
|
+
plugin_instance_id?: string;
|
|
1689
|
+
};
|
|
1690
|
+
ListPermissionsQueryRequest: {
|
|
1691
|
+
plugin_instance_id?: string;
|
|
1692
|
+
active_only?: boolean;
|
|
1693
|
+
};
|
|
1694
|
+
ListDiagnosticsQueryRequest: {
|
|
1695
|
+
plugin_id?: string;
|
|
1696
|
+
plugin_instance_id?: string;
|
|
1697
|
+
surface_instance_id?: string;
|
|
1698
|
+
type?: string;
|
|
1699
|
+
/** @enum {string} */
|
|
1700
|
+
severity?: "info" | "warning";
|
|
1701
|
+
limit?: number;
|
|
1702
|
+
};
|
|
1703
|
+
SettingsQueryRequest: {
|
|
1704
|
+
scope: components["schemas"]["ResourceScopeKind"];
|
|
1705
|
+
};
|
|
1642
1706
|
SurfaceBootstrap: {
|
|
1643
1707
|
plugin_id: string;
|
|
1644
1708
|
plugin_instance_id: string;
|
|
@@ -2057,18 +2121,18 @@ export interface components {
|
|
|
2057
2121
|
};
|
|
2058
2122
|
remove?: string[];
|
|
2059
2123
|
};
|
|
2060
|
-
|
|
2124
|
+
ErrorCodesV6: Record<string, never>;
|
|
2061
2125
|
/** @enum {string} */
|
|
2062
|
-
|
|
2126
|
+
ErrorCodesV6PlatformErrorCode: "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_DISABLED" | "PLUGIN_DISABLED_BY_POLICY" | "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_OPERATION_BLOCKED" | "PLUGIN_OPERATION_NOT_FOUND" | "PLUGIN_OPERATION_NOT_CANCELABLE" | "PLUGIN_NETWORK_TARGET_DENIED" | "PLUGIN_NETWORK_RATE_LIMITED" | "PLUGIN_RUNTIME_UNAVAILABLE" | "PLUGIN_RUNTIME_VERSION_MISMATCH" | "PLUGIN_RUNTIME_CONTRACT_MISMATCH" | "PLUGIN_UI_PROTOCOL_UNSUPPORTED" | "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";
|
|
2063
2127
|
/** @enum {string} */
|
|
2064
|
-
|
|
2128
|
+
ErrorCodesV6BridgeErrorCode: "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_DISABLED" | "PLUGIN_DISABLED_BY_POLICY" | "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_OPERATION_BLOCKED" | "PLUGIN_OPERATION_NOT_FOUND" | "PLUGIN_OPERATION_NOT_CANCELABLE" | "PLUGIN_NETWORK_TARGET_DENIED" | "PLUGIN_NETWORK_RATE_LIMITED" | "PLUGIN_RUNTIME_UNAVAILABLE" | "PLUGIN_RUNTIME_VERSION_MISMATCH" | "PLUGIN_RUNTIME_CONTRACT_MISMATCH" | "PLUGIN_UI_PROTOCOL_UNSUPPORTED" | "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";
|
|
2065
2129
|
/** @enum {string} */
|
|
2066
|
-
|
|
2130
|
+
ErrorCodesV6TypescriptClientErrorCode: "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_DISABLED" | "PLUGIN_DISABLED_BY_POLICY" | "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_OPERATION_BLOCKED" | "PLUGIN_OPERATION_NOT_FOUND" | "PLUGIN_OPERATION_NOT_CANCELABLE" | "PLUGIN_NETWORK_TARGET_DENIED" | "PLUGIN_NETWORK_RATE_LIMITED" | "PLUGIN_RUNTIME_UNAVAILABLE" | "PLUGIN_RUNTIME_VERSION_MISMATCH" | "PLUGIN_RUNTIME_CONTRACT_MISMATCH" | "PLUGIN_UI_PROTOCOL_UNSUPPORTED" | "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";
|
|
2067
2131
|
/** @enum {string} */
|
|
2068
|
-
|
|
2132
|
+
ErrorCodesV6RustIpcErrorCode: "ARTIFACT_HANDLE_FAILED" | "HANDLE_GRANT_VALIDATION_FAILED" | "STORAGE_FILE_FAILED" | "STORAGE_KV_FAILED" | "STORAGE_SQLITE_FAILED" | "NETWORK_GRANT_FAILED" | "NETWORK_EXECUTE_FAILED" | "NETWORK_STREAM_STORE_UNAVAILABLE" | "NETWORK_STREAM_FAILED" | "NETWORK_STREAM_BACKPRESSURE" | "NETWORK_STREAM_INVALID" | "NETWORK_STREAM_NOT_FOUND" | "NETWORK_STREAM_CLOSED" | "WORKER_INVOCATION_INVALID" | "RUNTIME_CAPABILITY_REVOKED" | "RUNTIME_CONTROL_CHANNEL_STALE" | "RUNTIME_LEASE_INVALID" | "RUNTIME_LEASE_SIGNATURE_INVALID" | "PLUGIN_LEASE_REPLAYED" | "WASM_WORKER_INVALID" | "WASM_WORKER_FAILED" | "WASM_HOSTCALL_FAILED" | "RUNTIME_CAPACITY_EXCEEDED" | "RUNTIME_INVOCATION_CANCELED" | "PLUGIN_SESSION_REVOKED" | "SESSION_REVOKE_SEQUENCE_STALE" | "SESSION_REVOKE_DRAIN_TIMEOUT" | "UNSUPPORTED_FRAME";
|
|
2069
2133
|
/** @enum {string} */
|
|
2070
|
-
|
|
2071
|
-
|
|
2134
|
+
ErrorCodesV6RuntimeProcessFailureCode: "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";
|
|
2135
|
+
ErrorCodesV6RuntimeProcessExitFailure: {
|
|
2072
2136
|
/** @constant */
|
|
2073
2137
|
exit_code: 1;
|
|
2074
2138
|
/** @constant */
|
|
@@ -2114,19 +2178,64 @@ export interface components {
|
|
|
2114
2178
|
/** @constant */
|
|
2115
2179
|
code: "IPC_WRITER_PANICKED";
|
|
2116
2180
|
};
|
|
2117
|
-
|
|
2181
|
+
SessionScopeV1: components["schemas"]["SessionScopeV1PublicRevokeResult"];
|
|
2182
|
+
SessionScopeV1OwnerHash: string;
|
|
2183
|
+
SessionScopeV1SessionScope: {
|
|
2184
|
+
owner_session_hash: components["schemas"]["SessionScopeV1OwnerHash"];
|
|
2185
|
+
owner_user_hash: components["schemas"]["SessionScopeV1OwnerHash"];
|
|
2186
|
+
owner_env_hash: components["schemas"]["SessionScopeV1OwnerHash"];
|
|
2187
|
+
session_channel_id_hash: components["schemas"]["SessionScopeV1OwnerHash"];
|
|
2188
|
+
};
|
|
2189
|
+
/** @enum {string} */
|
|
2190
|
+
SessionScopeV1TeardownPhase: "bridge" | "confirmation" | "execution" | "operation" | "stream" | "runtime";
|
|
2191
|
+
SessionScopeV1RevokeCounts: {
|
|
2192
|
+
surfaces: components["schemas"]["SessionScopeV1Count"];
|
|
2193
|
+
asset_tickets: components["schemas"]["SessionScopeV1Count"];
|
|
2194
|
+
asset_sessions: components["schemas"]["SessionScopeV1Count"];
|
|
2195
|
+
plugin_gateway_tokens: components["schemas"]["SessionScopeV1Count"];
|
|
2196
|
+
confirmation_tokens: components["schemas"]["SessionScopeV1Count"];
|
|
2197
|
+
stream_tickets: components["schemas"]["SessionScopeV1Count"];
|
|
2198
|
+
handle_grants: components["schemas"]["SessionScopeV1Count"];
|
|
2199
|
+
confirmations: components["schemas"]["SessionScopeV1Count"];
|
|
2200
|
+
operations: components["schemas"]["SessionScopeV1Count"];
|
|
2201
|
+
streams: components["schemas"]["SessionScopeV1Count"];
|
|
2202
|
+
runtime_executions: components["schemas"]["SessionScopeV1Count"];
|
|
2203
|
+
active_network_requests: components["schemas"]["SessionScopeV1Count"];
|
|
2204
|
+
sockets: components["schemas"]["SessionScopeV1Count"];
|
|
2205
|
+
network_streams: components["schemas"]["SessionScopeV1Count"];
|
|
2206
|
+
storage_hostcalls: components["schemas"]["SessionScopeV1Count"];
|
|
2207
|
+
};
|
|
2208
|
+
SessionScopeV1Count: number;
|
|
2209
|
+
SessionScopeV1CompleteRevokeResult: {
|
|
2118
2210
|
/** @constant */
|
|
2119
|
-
|
|
2211
|
+
state: "complete";
|
|
2212
|
+
/** @constant */
|
|
2213
|
+
fenced: true;
|
|
2214
|
+
/** @constant */
|
|
2215
|
+
complete: true;
|
|
2216
|
+
counts: components["schemas"]["SessionScopeV1RevokeCounts"];
|
|
2217
|
+
};
|
|
2218
|
+
SessionScopeV1IncompleteRevokeResult: {
|
|
2219
|
+
/** @constant */
|
|
2220
|
+
state: "incomplete";
|
|
2221
|
+
/** @constant */
|
|
2222
|
+
fenced: true;
|
|
2223
|
+
/** @constant */
|
|
2224
|
+
complete: false;
|
|
2225
|
+
counts: components["schemas"]["SessionScopeV1RevokeCounts"];
|
|
2226
|
+
};
|
|
2227
|
+
SessionScopeV1PublicRevokeResult: components["schemas"]["SessionScopeV1CompleteRevokeResult"] | components["schemas"]["SessionScopeV1IncompleteRevokeResult"];
|
|
2228
|
+
CompatibilityManifestV8: {
|
|
2229
|
+
/** @constant */
|
|
2230
|
+
schema_version: "redevplugin.compatibility.v8";
|
|
2231
|
+
package_set: components["schemas"]["PlatformPackageSetV1"];
|
|
2120
2232
|
matrix: {
|
|
2121
|
-
redevplugin_go_version: string;
|
|
2122
|
-
redevplugin_ui_version: string;
|
|
2123
|
-
redevplugin_runtime_version: string;
|
|
2124
2233
|
/** @constant */
|
|
2125
2234
|
plugin_ui_protocol_version: "plugin-ui-v5";
|
|
2126
2235
|
/** @constant */
|
|
2127
|
-
plugin_host_protocol_version: "plugin-host-
|
|
2236
|
+
plugin_host_protocol_version: "plugin-host-v6";
|
|
2128
2237
|
/** @constant */
|
|
2129
|
-
rust_ipc_version: "rust-ipc-
|
|
2238
|
+
rust_ipc_version: "rust-ipc-v6";
|
|
2130
2239
|
/** @constant */
|
|
2131
2240
|
wasm_abi_version: "redevplugin-wasm-worker-v2";
|
|
2132
2241
|
/** @constant */
|
|
@@ -2136,11 +2245,33 @@ export interface components {
|
|
|
2136
2245
|
/** @constant */
|
|
2137
2246
|
release_metadata_schema_version: "release-metadata-v5";
|
|
2138
2247
|
/** @constant */
|
|
2139
|
-
|
|
2248
|
+
release_root_delegation_schema_version: "release-root-delegation-v1";
|
|
2249
|
+
/** @constant */
|
|
2250
|
+
release_source_policy_schema_version: "release-source-policy-v2";
|
|
2251
|
+
/** @constant */
|
|
2252
|
+
release_source_policy_pointer_schema_version: "release-source-policy-pointer-v1";
|
|
2253
|
+
/** @constant */
|
|
2254
|
+
release_revocation_schema_version: "release-revocation-v2";
|
|
2255
|
+
/** @constant */
|
|
2256
|
+
release_revocation_pointer_schema_version: "release-revocation-pointer-v1";
|
|
2257
|
+
/** @constant */
|
|
2258
|
+
release_trust_state_schema_version: "release-trust-state-v1";
|
|
2259
|
+
/** @constant */
|
|
2260
|
+
trusted_time_evidence_schema_version: "trusted-time-evidence-v1";
|
|
2261
|
+
/** @constant */
|
|
2262
|
+
trusted_time_leaf_schema_version: "trusted-time-leaf-v1";
|
|
2140
2263
|
/** @constant */
|
|
2141
|
-
|
|
2264
|
+
release_signing_ledger_schema_version: "release-signing-ledger-v1";
|
|
2142
2265
|
/** @constant */
|
|
2143
|
-
|
|
2266
|
+
release_signing_subject_schema_version: "release-signing-subject-v1";
|
|
2267
|
+
/** @constant */
|
|
2268
|
+
release_signature_envelope_schema_version: "release-signature-envelope-v1";
|
|
2269
|
+
/** @constant */
|
|
2270
|
+
release_signing_ledger_receipt_schema_version: "release-signing-ledger-receipt-v1";
|
|
2271
|
+
/** @constant */
|
|
2272
|
+
release_signing_ledger_evidence_schema_version: "release-signing-ledger-evidence-v1";
|
|
2273
|
+
/** @constant */
|
|
2274
|
+
token_ticket_schema_version: "token-ticket-v4";
|
|
2144
2275
|
/** @constant */
|
|
2145
2276
|
bridge_schema_version: "bridge-v5";
|
|
2146
2277
|
/** @constant */
|
|
@@ -2154,11 +2285,11 @@ export interface components {
|
|
|
2154
2285
|
/** @constant */
|
|
2155
2286
|
resource_scope_schema_version: "resource-scope-v1";
|
|
2156
2287
|
/** @constant */
|
|
2157
|
-
|
|
2288
|
+
session_scope_schema_version: "session-scope-v1";
|
|
2158
2289
|
/** @constant */
|
|
2159
|
-
|
|
2290
|
+
plugin_platform_openapi_version: "plugin-platform-v8";
|
|
2160
2291
|
/** @constant */
|
|
2161
|
-
|
|
2292
|
+
compatibility_schema_version: "compatibility-manifest-v8";
|
|
2162
2293
|
/** @constant */
|
|
2163
2294
|
worker_invocation_schema_version: "worker-invocation-v3";
|
|
2164
2295
|
/** @constant */
|
|
@@ -2174,22 +2305,125 @@ export interface components {
|
|
|
2174
2305
|
/** @constant */
|
|
2175
2306
|
host_capability_notices_schema_version: "host-capability-notices-v1";
|
|
2176
2307
|
/** @constant */
|
|
2177
|
-
error_codes_schema_version: "error-codes-
|
|
2308
|
+
error_codes_schema_version: "error-codes-v6";
|
|
2309
|
+
/** @constant */
|
|
2310
|
+
performance_contract_version: "performance-contract-v3";
|
|
2311
|
+
/** @constant */
|
|
2312
|
+
performance_evidence_schema_version: "performance-evidence-v3";
|
|
2313
|
+
/** @constant */
|
|
2314
|
+
contract_registry_version: "contract-registry-v2";
|
|
2315
|
+
/** @constant */
|
|
2316
|
+
platform_package_set_schema_version: "platform-package-set-v1";
|
|
2178
2317
|
/** @constant */
|
|
2179
|
-
|
|
2318
|
+
platform_package_publication_schema_version: "platform-package-publication-v1";
|
|
2180
2319
|
/** @constant */
|
|
2181
|
-
|
|
2320
|
+
runtime_admission_schema_version: "runtime-admission-v1";
|
|
2182
2321
|
/** @constant */
|
|
2183
|
-
|
|
2322
|
+
runtime_descriptor_schema_version: "runtime-descriptor-v2";
|
|
2323
|
+
/** @constant */
|
|
2324
|
+
owner_scope_inventory_registry_version: "owner-scope-inventory-registry-v1";
|
|
2325
|
+
/** @constant */
|
|
2326
|
+
owner_scope_inventory_schema_version: "owner-scope-inventory-v1";
|
|
2327
|
+
/** @constant */
|
|
2328
|
+
owner_scope_migration_schema_version: "owner-scope-migration-v1";
|
|
2329
|
+
/** @constant */
|
|
2330
|
+
process_containment_schema_version: "process-containment-v1";
|
|
2331
|
+
/** @constant */
|
|
2332
|
+
runtime_exec_journal_schema_version: "runtime-exec-journal-v1";
|
|
2333
|
+
/** @constant */
|
|
2334
|
+
quarantine_cleanup_schema_version: "quarantine-cleanup-v1";
|
|
2184
2335
|
};
|
|
2185
|
-
|
|
2336
|
+
contract_set_sha256: string;
|
|
2337
|
+
contracts: components["schemas"]["CompatibilityManifestV8Contract"][];
|
|
2186
2338
|
};
|
|
2187
|
-
|
|
2339
|
+
CompatibilityManifestV8Contract: {
|
|
2188
2340
|
id: string;
|
|
2189
2341
|
path: string;
|
|
2190
2342
|
version: string;
|
|
2191
2343
|
sha256: string;
|
|
2192
2344
|
};
|
|
2345
|
+
PlatformPackageSetV1: {
|
|
2346
|
+
/** @constant */
|
|
2347
|
+
schema_version: "redevplugin.platform_package_set.v1";
|
|
2348
|
+
platform_version: components["schemas"]["PlatformPackageSetV1Version"];
|
|
2349
|
+
go_module: components["schemas"]["PlatformPackageSetV1GoModule"];
|
|
2350
|
+
npm_packages: [
|
|
2351
|
+
components["schemas"]["PlatformPackageSetV1NpmContracts"],
|
|
2352
|
+
components["schemas"]["PlatformPackageSetV1NpmUi"]
|
|
2353
|
+
];
|
|
2354
|
+
rust_crates: [
|
|
2355
|
+
components["schemas"]["PlatformPackageSetV1RustContracts"],
|
|
2356
|
+
components["schemas"]["PlatformPackageSetV1RustIpc"],
|
|
2357
|
+
components["schemas"]["PlatformPackageSetV1RustWasmAbi"],
|
|
2358
|
+
components["schemas"]["PlatformPackageSetV1RustTargetClassifier"],
|
|
2359
|
+
components["schemas"]["PlatformPackageSetV1RustWorkerSdk"],
|
|
2360
|
+
components["schemas"]["PlatformPackageSetV1RustRuntime"]
|
|
2361
|
+
];
|
|
2362
|
+
/** @constant */
|
|
2363
|
+
contract_registry_version: "contract-registry-v2";
|
|
2364
|
+
contract_set_sha256: components["schemas"]["PlatformPackageSetV1Sha256"];
|
|
2365
|
+
};
|
|
2366
|
+
PlatformPackageSetV1Version: string;
|
|
2367
|
+
PlatformPackageSetV1Sha256: string;
|
|
2368
|
+
PlatformPackageSetV1GoModule: {
|
|
2369
|
+
/** @constant */
|
|
2370
|
+
module: "github.com/floegence/redevplugin";
|
|
2371
|
+
version: string;
|
|
2372
|
+
};
|
|
2373
|
+
PlatformPackageSetV1NpmPackage: {
|
|
2374
|
+
name: string;
|
|
2375
|
+
version: components["schemas"]["PlatformPackageSetV1Version"];
|
|
2376
|
+
};
|
|
2377
|
+
PlatformPackageSetV1NpmContracts: components["schemas"]["PlatformPackageSetV1NpmPackage"] & {
|
|
2378
|
+
/** @constant */
|
|
2379
|
+
name?: "@floegence/redevplugin-contracts";
|
|
2380
|
+
};
|
|
2381
|
+
PlatformPackageSetV1NpmUi: components["schemas"]["PlatformPackageSetV1NpmPackage"] & {
|
|
2382
|
+
/** @constant */
|
|
2383
|
+
name?: "@floegence/redevplugin-ui";
|
|
2384
|
+
};
|
|
2385
|
+
PlatformPackageSetV1RustCrate: {
|
|
2386
|
+
name: string;
|
|
2387
|
+
version: components["schemas"]["PlatformPackageSetV1Version"];
|
|
2388
|
+
/** @enum {unknown} */
|
|
2389
|
+
role: "contracts" | "ipc" | "wasm_abi" | "target_classifier" | "worker_sdk" | "runtime";
|
|
2390
|
+
};
|
|
2391
|
+
PlatformPackageSetV1RustContracts: components["schemas"]["PlatformPackageSetV1RustCrate"] & {
|
|
2392
|
+
/** @constant */
|
|
2393
|
+
name?: "redevplugin-contracts";
|
|
2394
|
+
/** @constant */
|
|
2395
|
+
role?: "contracts";
|
|
2396
|
+
};
|
|
2397
|
+
PlatformPackageSetV1RustIpc: components["schemas"]["PlatformPackageSetV1RustCrate"] & {
|
|
2398
|
+
/** @constant */
|
|
2399
|
+
name?: "redevplugin-ipc";
|
|
2400
|
+
/** @constant */
|
|
2401
|
+
role?: "ipc";
|
|
2402
|
+
};
|
|
2403
|
+
PlatformPackageSetV1RustWasmAbi: components["schemas"]["PlatformPackageSetV1RustCrate"] & {
|
|
2404
|
+
/** @constant */
|
|
2405
|
+
name?: "redevplugin-wasm-abi";
|
|
2406
|
+
/** @constant */
|
|
2407
|
+
role?: "wasm_abi";
|
|
2408
|
+
};
|
|
2409
|
+
PlatformPackageSetV1RustTargetClassifier: components["schemas"]["PlatformPackageSetV1RustCrate"] & {
|
|
2410
|
+
/** @constant */
|
|
2411
|
+
name?: "redevplugin-target-classifier";
|
|
2412
|
+
/** @constant */
|
|
2413
|
+
role?: "target_classifier";
|
|
2414
|
+
};
|
|
2415
|
+
PlatformPackageSetV1RustWorkerSdk: components["schemas"]["PlatformPackageSetV1RustCrate"] & {
|
|
2416
|
+
/** @constant */
|
|
2417
|
+
name?: "redevplugin-worker-sdk";
|
|
2418
|
+
/** @constant */
|
|
2419
|
+
role?: "worker_sdk";
|
|
2420
|
+
};
|
|
2421
|
+
PlatformPackageSetV1RustRuntime: components["schemas"]["PlatformPackageSetV1RustCrate"] & {
|
|
2422
|
+
/** @constant */
|
|
2423
|
+
name?: "redevplugin-runtime";
|
|
2424
|
+
/** @constant */
|
|
2425
|
+
role?: "runtime";
|
|
2426
|
+
};
|
|
2193
2427
|
ManifestV5: {
|
|
2194
2428
|
/** @constant */
|
|
2195
2429
|
schema_version: "redevplugin.manifest.v5";
|
|
@@ -2530,13 +2764,13 @@ export interface components {
|
|
|
2530
2764
|
"application/json": components["schemas"]["SurfaceDisposeSuccessResponse"];
|
|
2531
2765
|
};
|
|
2532
2766
|
};
|
|
2533
|
-
/** @description
|
|
2534
|
-
|
|
2767
|
+
/** @description Completed authenticated-session teardown response. */
|
|
2768
|
+
SessionScopeRevokeResponse: {
|
|
2535
2769
|
headers: {
|
|
2536
2770
|
[name: string]: unknown;
|
|
2537
2771
|
};
|
|
2538
2772
|
content: {
|
|
2539
|
-
"application/json": components["schemas"]["
|
|
2773
|
+
"application/json": components["schemas"]["SessionScopeRevokeSuccessResponse"];
|
|
2540
2774
|
};
|
|
2541
2775
|
};
|
|
2542
2776
|
/** @description Plugin lifecycle response with typed registry trust assessment. */
|
|
@@ -2804,7 +3038,6 @@ export interface components {
|
|
|
2804
3038
|
parameters: {
|
|
2805
3039
|
OperationID: string;
|
|
2806
3040
|
PluginInstanceID: string;
|
|
2807
|
-
SettingsScope: components["schemas"]["ResourceScopeKind"];
|
|
2808
3041
|
SurfaceInstanceID: string;
|
|
2809
3042
|
};
|
|
2810
3043
|
requestBodies: {
|
|
@@ -2843,9 +3076,9 @@ export interface components {
|
|
|
2843
3076
|
"application/json": components["schemas"]["OpenSurfaceRequest"];
|
|
2844
3077
|
};
|
|
2845
3078
|
};
|
|
2846
|
-
|
|
3079
|
+
RevokeSessionScopeRequest: {
|
|
2847
3080
|
content: {
|
|
2848
|
-
"application/json": components["schemas"]["
|
|
3081
|
+
"application/json": components["schemas"]["RevokeSessionScopeRequest"];
|
|
2849
3082
|
};
|
|
2850
3083
|
};
|
|
2851
3084
|
EmptyRequest: {
|
|
@@ -2853,6 +3086,41 @@ export interface components {
|
|
|
2853
3086
|
"application/json": components["schemas"]["EmptyRequest"];
|
|
2854
3087
|
};
|
|
2855
3088
|
};
|
|
3089
|
+
EmptyQueryRequest: {
|
|
3090
|
+
content: {
|
|
3091
|
+
"application/json": components["schemas"]["EmptyQueryRequest"];
|
|
3092
|
+
};
|
|
3093
|
+
};
|
|
3094
|
+
ListIntentsQueryRequest: {
|
|
3095
|
+
content: {
|
|
3096
|
+
"application/json": components["schemas"]["ListIntentsQueryRequest"];
|
|
3097
|
+
};
|
|
3098
|
+
};
|
|
3099
|
+
ListOperationsQueryRequest: {
|
|
3100
|
+
content: {
|
|
3101
|
+
"application/json": components["schemas"]["ListOperationsQueryRequest"];
|
|
3102
|
+
};
|
|
3103
|
+
};
|
|
3104
|
+
ListRetainedDataQueryRequest: {
|
|
3105
|
+
content: {
|
|
3106
|
+
"application/json": components["schemas"]["ListRetainedDataQueryRequest"];
|
|
3107
|
+
};
|
|
3108
|
+
};
|
|
3109
|
+
ListPermissionsQueryRequest: {
|
|
3110
|
+
content: {
|
|
3111
|
+
"application/json": components["schemas"]["ListPermissionsQueryRequest"];
|
|
3112
|
+
};
|
|
3113
|
+
};
|
|
3114
|
+
ListDiagnosticsQueryRequest: {
|
|
3115
|
+
content: {
|
|
3116
|
+
"application/json": components["schemas"]["ListDiagnosticsQueryRequest"];
|
|
3117
|
+
};
|
|
3118
|
+
};
|
|
3119
|
+
SettingsQueryRequest: {
|
|
3120
|
+
content: {
|
|
3121
|
+
"application/json": components["schemas"]["SettingsQueryRequest"];
|
|
3122
|
+
};
|
|
3123
|
+
};
|
|
2856
3124
|
PrepareSurfaceRequest: {
|
|
2857
3125
|
content: {
|
|
2858
3126
|
"application/json": components["schemas"]["PrepareSurfaceRequest"];
|
|
@@ -2984,13 +3252,35 @@ export interface components {
|
|
|
2984
3252
|
}
|
|
2985
3253
|
export type $defs = Record<string, never>;
|
|
2986
3254
|
export interface operations {
|
|
2987
|
-
|
|
3255
|
+
updateLocalPackage: {
|
|
2988
3256
|
parameters: {
|
|
2989
|
-
query
|
|
2990
|
-
|
|
3257
|
+
query?: never;
|
|
3258
|
+
header: {
|
|
3259
|
+
/** @description Canonical decimal management revision. Duplicate, combined, empty, or whitespace-padded values are rejected. */
|
|
3260
|
+
"X-ReDevPlugin-Expected-Management-Revision": number;
|
|
3261
|
+
};
|
|
3262
|
+
path: {
|
|
3263
|
+
plugin_instance_id: components["parameters"]["PluginInstanceID"];
|
|
2991
3264
|
};
|
|
3265
|
+
cookie?: never;
|
|
3266
|
+
};
|
|
3267
|
+
requestBody: {
|
|
3268
|
+
content: {
|
|
3269
|
+
"application/vnd.redevplugin.package+zip": string;
|
|
3270
|
+
};
|
|
3271
|
+
};
|
|
3272
|
+
responses: {
|
|
3273
|
+
200: components["responses"]["PluginRecordResponse"];
|
|
3274
|
+
default: components["responses"]["MutationPlatformErrorResponse"];
|
|
3275
|
+
};
|
|
3276
|
+
};
|
|
3277
|
+
importLocalPackage: {
|
|
3278
|
+
parameters: {
|
|
3279
|
+
query?: never;
|
|
2992
3280
|
header?: never;
|
|
2993
|
-
path
|
|
3281
|
+
path: {
|
|
3282
|
+
plugin_instance_id: components["parameters"]["PluginInstanceID"];
|
|
3283
|
+
};
|
|
2994
3284
|
cookie?: never;
|
|
2995
3285
|
};
|
|
2996
3286
|
requestBody: {
|
|
@@ -3055,27 +3345,6 @@ export interface operations {
|
|
|
3055
3345
|
default: components["responses"]["MutationPlatformErrorResponse"];
|
|
3056
3346
|
};
|
|
3057
3347
|
};
|
|
3058
|
-
updateLocalPackage: {
|
|
3059
|
-
parameters: {
|
|
3060
|
-
query: {
|
|
3061
|
-
expected_management_revision: number;
|
|
3062
|
-
};
|
|
3063
|
-
header?: never;
|
|
3064
|
-
path: {
|
|
3065
|
-
plugin_instance_id: string;
|
|
3066
|
-
};
|
|
3067
|
-
cookie?: never;
|
|
3068
|
-
};
|
|
3069
|
-
requestBody: {
|
|
3070
|
-
content: {
|
|
3071
|
-
"application/vnd.redevplugin.package+zip": string;
|
|
3072
|
-
};
|
|
3073
|
-
};
|
|
3074
|
-
responses: {
|
|
3075
|
-
200: components["responses"]["PluginRecordResponse"];
|
|
3076
|
-
default: components["responses"]["MutationPlatformErrorResponse"];
|
|
3077
|
-
};
|
|
3078
|
-
};
|
|
3079
3348
|
updateReleaseRef: {
|
|
3080
3349
|
parameters: {
|
|
3081
3350
|
query?: never;
|
|
@@ -3109,7 +3378,7 @@ export interface operations {
|
|
|
3109
3378
|
path?: never;
|
|
3110
3379
|
cookie?: never;
|
|
3111
3380
|
};
|
|
3112
|
-
requestBody
|
|
3381
|
+
requestBody: components["requestBodies"]["EmptyQueryRequest"];
|
|
3113
3382
|
responses: {
|
|
3114
3383
|
200: components["responses"]["PluginCatalogResponse"];
|
|
3115
3384
|
default: components["responses"]["PlatformErrorResponse"];
|
|
@@ -3122,7 +3391,7 @@ export interface operations {
|
|
|
3122
3391
|
path?: never;
|
|
3123
3392
|
cookie?: never;
|
|
3124
3393
|
};
|
|
3125
|
-
requestBody
|
|
3394
|
+
requestBody: components["requestBodies"]["EmptyQueryRequest"];
|
|
3126
3395
|
responses: {
|
|
3127
3396
|
200: components["responses"]["PluginFeaturesResponse"];
|
|
3128
3397
|
default: components["responses"]["PlatformErrorResponse"];
|
|
@@ -3135,7 +3404,7 @@ export interface operations {
|
|
|
3135
3404
|
path?: never;
|
|
3136
3405
|
cookie?: never;
|
|
3137
3406
|
};
|
|
3138
|
-
requestBody
|
|
3407
|
+
requestBody: components["requestBodies"]["EmptyQueryRequest"];
|
|
3139
3408
|
responses: {
|
|
3140
3409
|
200: components["responses"]["CompatibilityResponse"];
|
|
3141
3410
|
default: components["responses"]["PlatformErrorResponse"];
|
|
@@ -3154,16 +3423,16 @@ export interface operations {
|
|
|
3154
3423
|
default: components["responses"]["MutationPlatformErrorResponse"];
|
|
3155
3424
|
};
|
|
3156
3425
|
};
|
|
3157
|
-
|
|
3426
|
+
revokePluginSessionScope: {
|
|
3158
3427
|
parameters: {
|
|
3159
3428
|
query?: never;
|
|
3160
3429
|
header?: never;
|
|
3161
3430
|
path?: never;
|
|
3162
3431
|
cookie?: never;
|
|
3163
3432
|
};
|
|
3164
|
-
requestBody: components["requestBodies"]["
|
|
3433
|
+
requestBody: components["requestBodies"]["RevokeSessionScopeRequest"];
|
|
3165
3434
|
responses: {
|
|
3166
|
-
200: components["responses"]["
|
|
3435
|
+
200: components["responses"]["SessionScopeRevokeResponse"];
|
|
3167
3436
|
default: components["responses"]["MutationPlatformErrorResponse"];
|
|
3168
3437
|
};
|
|
3169
3438
|
};
|
|
@@ -3315,15 +3584,12 @@ export interface operations {
|
|
|
3315
3584
|
};
|
|
3316
3585
|
listPluginIntents: {
|
|
3317
3586
|
parameters: {
|
|
3318
|
-
query?:
|
|
3319
|
-
intent_id?: string;
|
|
3320
|
-
plugin_instance_id?: string;
|
|
3321
|
-
};
|
|
3587
|
+
query?: never;
|
|
3322
3588
|
header?: never;
|
|
3323
3589
|
path?: never;
|
|
3324
3590
|
cookie?: never;
|
|
3325
3591
|
};
|
|
3326
|
-
requestBody
|
|
3592
|
+
requestBody: components["requestBodies"]["ListIntentsQueryRequest"];
|
|
3327
3593
|
responses: {
|
|
3328
3594
|
200: components["responses"]["IntentListResponse"];
|
|
3329
3595
|
default: components["responses"]["PlatformErrorResponse"];
|
|
@@ -3344,16 +3610,12 @@ export interface operations {
|
|
|
3344
3610
|
};
|
|
3345
3611
|
listPluginOperations: {
|
|
3346
3612
|
parameters: {
|
|
3347
|
-
query?:
|
|
3348
|
-
plugin_instance_id?: string;
|
|
3349
|
-
cursor?: string;
|
|
3350
|
-
limit?: number;
|
|
3351
|
-
};
|
|
3613
|
+
query?: never;
|
|
3352
3614
|
header?: never;
|
|
3353
3615
|
path?: never;
|
|
3354
3616
|
cookie?: never;
|
|
3355
3617
|
};
|
|
3356
|
-
requestBody
|
|
3618
|
+
requestBody: components["requestBodies"]["ListOperationsQueryRequest"];
|
|
3357
3619
|
responses: {
|
|
3358
3620
|
200: components["responses"]["OperationListResponse"];
|
|
3359
3621
|
default: components["responses"]["PlatformErrorResponse"];
|
|
@@ -3368,7 +3630,7 @@ export interface operations {
|
|
|
3368
3630
|
};
|
|
3369
3631
|
cookie?: never;
|
|
3370
3632
|
};
|
|
3371
|
-
requestBody
|
|
3633
|
+
requestBody: components["requestBodies"]["EmptyQueryRequest"];
|
|
3372
3634
|
responses: {
|
|
3373
3635
|
200: components["responses"]["OperationRecordResponse"];
|
|
3374
3636
|
default: components["responses"]["PlatformErrorResponse"];
|
|
@@ -3435,7 +3697,7 @@ export interface operations {
|
|
|
3435
3697
|
path?: never;
|
|
3436
3698
|
cookie?: never;
|
|
3437
3699
|
};
|
|
3438
|
-
requestBody
|
|
3700
|
+
requestBody: components["requestBodies"]["EmptyQueryRequest"];
|
|
3439
3701
|
responses: {
|
|
3440
3702
|
200: components["responses"]["RuntimeHealthResponse"];
|
|
3441
3703
|
default: components["responses"]["PlatformErrorResponse"];
|
|
@@ -3482,14 +3744,12 @@ export interface operations {
|
|
|
3482
3744
|
};
|
|
3483
3745
|
listPluginRetainedData: {
|
|
3484
3746
|
parameters: {
|
|
3485
|
-
query?:
|
|
3486
|
-
plugin_instance_id?: string;
|
|
3487
|
-
};
|
|
3747
|
+
query?: never;
|
|
3488
3748
|
header?: never;
|
|
3489
3749
|
path?: never;
|
|
3490
3750
|
cookie?: never;
|
|
3491
3751
|
};
|
|
3492
|
-
requestBody
|
|
3752
|
+
requestBody: components["requestBodies"]["ListRetainedDataQueryRequest"];
|
|
3493
3753
|
responses: {
|
|
3494
3754
|
200: components["responses"]["RetainedDataListResponse"];
|
|
3495
3755
|
default: components["responses"]["PlatformErrorResponse"];
|
|
@@ -3536,15 +3796,12 @@ export interface operations {
|
|
|
3536
3796
|
};
|
|
3537
3797
|
listPluginPermissionGrants: {
|
|
3538
3798
|
parameters: {
|
|
3539
|
-
query?:
|
|
3540
|
-
plugin_instance_id?: string;
|
|
3541
|
-
active_only?: boolean;
|
|
3542
|
-
};
|
|
3799
|
+
query?: never;
|
|
3543
3800
|
header?: never;
|
|
3544
3801
|
path?: never;
|
|
3545
3802
|
cookie?: never;
|
|
3546
3803
|
};
|
|
3547
|
-
requestBody
|
|
3804
|
+
requestBody: components["requestBodies"]["ListPermissionsQueryRequest"];
|
|
3548
3805
|
responses: {
|
|
3549
3806
|
200: components["responses"]["PermissionListResponse"];
|
|
3550
3807
|
default: components["responses"]["PlatformErrorResponse"];
|
|
@@ -3583,7 +3840,7 @@ export interface operations {
|
|
|
3583
3840
|
path?: never;
|
|
3584
3841
|
cookie?: never;
|
|
3585
3842
|
};
|
|
3586
|
-
requestBody
|
|
3843
|
+
requestBody: components["requestBodies"]["EmptyQueryRequest"];
|
|
3587
3844
|
responses: {
|
|
3588
3845
|
200: components["responses"]["SecurityPolicyListResponse"];
|
|
3589
3846
|
default: components["responses"]["PlatformErrorResponse"];
|
|
@@ -3598,7 +3855,7 @@ export interface operations {
|
|
|
3598
3855
|
};
|
|
3599
3856
|
cookie?: never;
|
|
3600
3857
|
};
|
|
3601
|
-
requestBody
|
|
3858
|
+
requestBody: components["requestBodies"]["EmptyQueryRequest"];
|
|
3602
3859
|
responses: {
|
|
3603
3860
|
200: components["responses"]["SecurityPolicyRecordResponse"];
|
|
3604
3861
|
default: components["responses"]["PlatformErrorResponse"];
|
|
@@ -3636,19 +3893,12 @@ export interface operations {
|
|
|
3636
3893
|
};
|
|
3637
3894
|
listPluginDiagnosticEvents: {
|
|
3638
3895
|
parameters: {
|
|
3639
|
-
query?:
|
|
3640
|
-
plugin_id?: string;
|
|
3641
|
-
plugin_instance_id?: string;
|
|
3642
|
-
surface_instance_id?: string;
|
|
3643
|
-
type?: string;
|
|
3644
|
-
severity?: "info" | "warning";
|
|
3645
|
-
limit?: number;
|
|
3646
|
-
};
|
|
3896
|
+
query?: never;
|
|
3647
3897
|
header?: never;
|
|
3648
3898
|
path?: never;
|
|
3649
3899
|
cookie?: never;
|
|
3650
3900
|
};
|
|
3651
|
-
requestBody
|
|
3901
|
+
requestBody: components["requestBodies"]["ListDiagnosticsQueryRequest"];
|
|
3652
3902
|
responses: {
|
|
3653
3903
|
200: components["responses"]["DiagnosticEventListResponse"];
|
|
3654
3904
|
default: components["responses"]["PlatformErrorResponse"];
|
|
@@ -3695,16 +3945,14 @@ export interface operations {
|
|
|
3695
3945
|
};
|
|
3696
3946
|
getPluginSettingsSchema: {
|
|
3697
3947
|
parameters: {
|
|
3698
|
-
query
|
|
3699
|
-
scope: components["parameters"]["SettingsScope"];
|
|
3700
|
-
};
|
|
3948
|
+
query?: never;
|
|
3701
3949
|
header?: never;
|
|
3702
3950
|
path: {
|
|
3703
3951
|
plugin_instance_id: components["parameters"]["PluginInstanceID"];
|
|
3704
3952
|
};
|
|
3705
3953
|
cookie?: never;
|
|
3706
3954
|
};
|
|
3707
|
-
requestBody
|
|
3955
|
+
requestBody: components["requestBodies"]["SettingsQueryRequest"];
|
|
3708
3956
|
responses: {
|
|
3709
3957
|
200: components["responses"]["SettingsSchemaResponse"];
|
|
3710
3958
|
default: components["responses"]["PlatformErrorResponse"];
|
|
@@ -3712,16 +3960,14 @@ export interface operations {
|
|
|
3712
3960
|
};
|
|
3713
3961
|
getPluginSettings: {
|
|
3714
3962
|
parameters: {
|
|
3715
|
-
query
|
|
3716
|
-
scope: components["parameters"]["SettingsScope"];
|
|
3717
|
-
};
|
|
3963
|
+
query?: never;
|
|
3718
3964
|
header?: never;
|
|
3719
3965
|
path: {
|
|
3720
3966
|
plugin_instance_id: components["parameters"]["PluginInstanceID"];
|
|
3721
3967
|
};
|
|
3722
3968
|
cookie?: never;
|
|
3723
3969
|
};
|
|
3724
|
-
requestBody
|
|
3970
|
+
requestBody: components["requestBodies"]["SettingsQueryRequest"];
|
|
3725
3971
|
responses: {
|
|
3726
3972
|
200: components["responses"]["SettingsSnapshotResponse"];
|
|
3727
3973
|
default: components["responses"]["PlatformErrorResponse"];
|