@spacefast/common 0.2.1 → 0.4.1
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/agents/marketplace-prompts.d.ts +1 -0
- package/dist/agents/marketplace-prompts.js +6 -0
- package/dist/agents/registry/core.d.ts +4 -12
- package/dist/agents/registry/core.js +7 -28
- package/dist/config/domains.d.ts +10 -8
- package/dist/config/domains.js +4 -7
- package/dist/contracts/access-core.d.ts +135 -0
- package/dist/contracts/access-core.js +242 -0
- package/dist/contracts/access-profiles.d.ts +8 -8
- package/dist/contracts/access-profiles.js +8 -8
- package/dist/contracts/access.d.ts +14 -103
- package/dist/contracts/access.js +10 -210
- package/dist/contracts/activity.d.ts +54 -55
- package/dist/contracts/activity.js +38 -9
- package/dist/contracts/api-keys.d.ts +69 -26
- package/dist/contracts/api-keys.js +29 -2
- package/dist/contracts/application-journal.d.ts +197 -4
- package/dist/contracts/application-journal.js +97 -16
- package/dist/contracts/auth.d.ts +20 -0
- package/dist/contracts/auth.js +18 -0
- package/dist/contracts/beta.d.ts +13 -0
- package/dist/contracts/beta.js +28 -0
- package/dist/contracts/billing.d.ts +2 -2
- package/dist/contracts/bootstrap.d.ts +23 -6
- package/dist/contracts/builds.d.ts +24 -4
- package/dist/contracts/builds.js +16 -4
- package/dist/contracts/channels.d.ts +43 -0
- package/dist/contracts/channels.js +22 -6
- package/dist/contracts/comments.d.ts +49 -0
- package/dist/contracts/comments.js +61 -2
- package/dist/contracts/commerce.d.ts +19 -13
- package/dist/contracts/connector-access.d.ts +28 -0
- package/dist/contracts/connector-access.js +31 -0
- package/dist/contracts/connectors.d.ts +2382 -0
- package/dist/contracts/connectors.js +941 -0
- package/dist/contracts/content-contract-verification.d.ts +112 -58
- package/dist/contracts/content-contract-verification.js +42 -54
- package/dist/contracts/content-model-emit.d.ts +97 -0
- package/dist/contracts/content-model-emit.js +306 -0
- package/dist/contracts/content-model-sdk.d.ts +101 -0
- package/dist/contracts/content-model-sdk.js +232 -0
- package/dist/contracts/{content-program.d.ts → content-model.d.ts} +338 -82
- package/dist/contracts/{content-program.js → content-model.js} +291 -63
- package/dist/contracts/content-platform-fixture.d.ts +380 -110
- package/dist/contracts/content-platform-fixture.js +8 -8
- package/dist/contracts/content-sync.d.ts +197 -74
- package/dist/contracts/content-sync.js +98 -37
- package/dist/contracts/content.d.ts +30 -422
- package/dist/contracts/content.js +34 -294
- package/dist/contracts/dashboard-prefs.d.ts +10 -3
- package/dist/contracts/dashboard-prefs.js +6 -3
- package/dist/contracts/data-location.d.ts +9 -0
- package/dist/contracts/data-location.js +7 -0
- package/dist/contracts/deployment-comparison.d.ts +67 -0
- package/dist/contracts/deployment-comparison.js +68 -0
- package/dist/contracts/device-auth.d.ts +55 -11
- package/dist/contracts/domains.d.ts +40 -16
- package/dist/contracts/domains.js +23 -0
- package/dist/contracts/enums.d.ts +1 -10
- package/dist/contracts/enums.js +0 -15
- package/dist/contracts/error-code-meta.d.ts +388 -20
- package/dist/contracts/error-code-meta.js +201 -5
- package/dist/contracts/error-codes.d.ts +17 -4
- package/dist/contracts/error-codes.js +109 -10
- package/dist/contracts/events.d.ts +5 -0
- package/dist/contracts/events.js +12 -3
- package/dist/contracts/execution.d.ts +5 -1
- package/dist/contracts/execution.js +4 -0
- package/dist/contracts/feature-lifecycle.d.ts +53 -20
- package/dist/contracts/feature-lifecycle.js +65 -23
- package/dist/contracts/features.d.ts +57 -31
- package/dist/contracts/features.js +0 -1
- package/dist/contracts/feedback.d.ts +124 -0
- package/dist/contracts/feedback.js +64 -0
- package/dist/contracts/fixtures/content-model-sdk-v1.generated.d.ts +129 -0
- package/dist/contracts/fixtures/content-model-sdk-v1.generated.js +48 -0
- package/dist/contracts/fixtures/content-platform-v1.json +101 -49
- package/dist/contracts/frame-session.d.ts +60 -10
- package/dist/contracts/frame-session.js +52 -12
- package/dist/contracts/functions.d.ts +28 -2
- package/dist/contracts/functions.js +25 -2
- package/dist/contracts/grant-copy.d.ts +2 -0
- package/dist/contracts/grant-copy.js +2 -0
- package/dist/contracts/grants-core.d.ts +95 -0
- package/dist/contracts/grants-core.js +435 -0
- package/dist/contracts/grants.d.ts +13 -84
- package/dist/contracts/grants.js +21 -369
- package/dist/contracts/ids-core.d.ts +11 -0
- package/dist/contracts/ids-core.js +14 -0
- package/dist/contracts/ids.d.ts +7 -4
- package/dist/contracts/ids.js +12 -4
- package/dist/contracts/internal.d.ts +18 -0
- package/dist/contracts/internal.js +19 -0
- package/dist/contracts/mcp.d.ts +8 -18
- package/dist/contracts/mcp.js +2 -23
- package/dist/contracts/notifications.d.ts +4 -1
- package/dist/contracts/notifications.js +1 -0
- package/dist/contracts/oauth-resources.d.ts +55 -9
- package/dist/contracts/oauth-resources.js +64 -1
- package/dist/contracts/oauth-scope-actions.d.ts +27 -3
- package/dist/contracts/oauth-scope-actions.js +18 -8
- package/dist/contracts/operations.d.ts +1 -1
- package/dist/contracts/partner-account.d.ts +629 -0
- package/dist/contracts/partner-account.js +18 -0
- package/dist/contracts/principal-assertion.d.ts +74 -1
- package/dist/contracts/principal-assertion.js +67 -3
- package/dist/contracts/publish-archive.d.ts +22 -1
- package/dist/contracts/push-new.d.ts +3 -3
- package/dist/contracts/push-new.js +1 -1
- package/dist/contracts/quotas.js +2 -1
- package/dist/contracts/repository-connections.d.ts +10 -6
- package/dist/contracts/repository-connections.js +15 -0
- package/dist/contracts/resources.d.ts +6 -5
- package/dist/contracts/resources.js +7 -0
- package/dist/contracts/route-inventory.d.ts +74 -19
- package/dist/contracts/route-inventory.js +20 -6
- package/dist/contracts/runtime-api.d.ts +415 -4
- package/dist/contracts/runtime-api.js +60 -15
- package/dist/contracts/runtime-app.d.ts +6 -1
- package/dist/contracts/runtime-components.d.ts +646 -18
- package/dist/contracts/runtime-components.js +304 -188
- package/dist/contracts/runtime-services.d.ts +15 -0
- package/dist/contracts/runtime-services.js +25 -0
- package/dist/contracts/runtime-storage.d.ts +32 -0
- package/dist/contracts/runtime-storage.js +37 -0
- package/dist/contracts/source-workspaces.d.ts +511 -0
- package/dist/contracts/source-workspaces.js +276 -0
- package/dist/contracts/space-config-spacefast.d.ts +394 -0
- package/dist/contracts/space-config-spacefast.js +70 -0
- package/dist/contracts/space-config.d.ts +177 -90
- package/dist/contracts/space-config.js +77 -92
- package/dist/contracts/spaces.d.ts +132 -24
- package/dist/contracts/spaces.js +77 -13
- package/dist/contracts/superadmin-connectors.d.ts +371 -0
- package/dist/contracts/superadmin-connectors.js +61 -0
- package/dist/contracts/superadmin-emails.d.ts +1 -1
- package/dist/contracts/superadmin-emails.js +1 -1
- package/dist/contracts/superadmin-entities.d.ts +105 -0
- package/dist/contracts/superadmin-entities.js +64 -0
- package/dist/contracts/superadmin-runtime.d.ts +35 -116
- package/dist/contracts/superadmin-runtime.js +13 -69
- package/dist/contracts/superadmin-search.d.ts +12 -14
- package/dist/contracts/superadmin-search.js +2 -2
- package/dist/contracts/superadmin-spaces.d.ts +15 -72
- package/dist/contracts/superadmin-spaces.js +2 -7
- package/dist/contracts/superadmin-teams.d.ts +12 -0
- package/dist/contracts/superadmin-teams.js +7 -1
- package/dist/contracts/superadmin-tenants.d.ts +44 -16
- package/dist/contracts/superadmin.d.ts +2 -2
- package/dist/contracts/tags.d.ts +12 -12
- package/dist/contracts/teams.d.ts +29 -1
- package/dist/contracts/teams.js +24 -2
- package/dist/contracts/tenants.d.ts +98 -0
- package/dist/contracts/tenants.js +20 -0
- package/dist/contracts/transfers.d.ts +92 -0
- package/dist/contracts/transfers.js +37 -0
- package/dist/contracts/usage.d.ts +9 -1
- package/dist/contracts/usage.js +2 -0
- package/dist/contracts/visual-review.d.ts +448 -0
- package/dist/contracts/visual-review.js +156 -0
- package/dist/contracts/wordpress-php-toolkit.json +9 -0
- package/dist/contracts/work-mode.d.ts +24 -0
- package/dist/contracts/work-mode.js +17 -0
- package/dist/contracts/wp-cli.d.ts +66 -0
- package/dist/contracts/wp-cli.js +68 -0
- package/dist/contracts/zero-catalog.d.ts +29 -0
- package/dist/contracts/zero-catalog.js +55 -0
- package/dist/contracts/zero-platform-abilities.generated.d.ts +31 -0
- package/dist/contracts/zero-platform-abilities.generated.js +373 -0
- package/dist/contracts/zero-spacefast.d.ts +444 -0
- package/dist/contracts/zero-spacefast.js +149 -0
- package/dist/contracts/zero-types.d.ts +47 -0
- package/dist/contracts/zero-types.js +263 -0
- package/dist/contracts/zero.d.ts +781 -14
- package/dist/contracts/zero.js +204 -10
- package/dist/dashboard-paths/index.d.ts +2 -2
- package/dist/dashboard-paths/route-reservations.generated.d.ts +2 -2
- package/dist/dashboard-paths/route-reservations.generated.js +5 -0
- package/dist/docs/agent-prose.d.ts +1 -1
- package/dist/docs/agent-prose.js +15 -18
- package/dist/docs/agent-setup.d.ts +1 -1
- package/dist/docs/agent-setup.js +5 -13
- package/dist/docs/catalog.d.ts +64 -28
- package/dist/docs/catalog.js +155 -28
- package/dist/docs/error-docs.d.ts +365 -17
- package/dist/docs/error-docs.js +369 -21
- package/dist/docs/reference-urls.js +1 -1
- package/dist/docs/skills.d.ts +84 -84
- package/dist/docs/skills.js +66 -47
- package/dist/docs/start-prompts.d.ts +14 -0
- package/dist/docs/start-prompts.js +20 -0
- package/dist/utils/account-labels.d.ts +7 -0
- package/dist/utils/account-labels.js +15 -0
- package/dist/utils/auth.d.ts +1 -0
- package/dist/utils/auth.js +1 -0
- package/dist/utils/credential-policy.d.ts +22 -1
- package/dist/utils/credential-policy.js +55 -6
- package/dist/utils/local-space-state.d.ts +7 -0
- package/dist/utils/local-space-state.js +7 -0
- package/dist/utils/logger.d.ts +34 -0
- package/dist/utils/logger.js +144 -0
- package/dist/utils/page-routes.d.ts +9 -0
- package/dist/utils/page-routes.js +82 -0
- package/dist/utils/pages.d.ts +2 -0
- package/dist/utils/pages.js +7 -0
- package/dist/utils/publish-form-data.d.ts +2 -0
- package/dist/utils/publish-form-data.js +2 -0
- package/dist/utils/publish-policy-spacefast.d.ts +13 -0
- package/dist/utils/publish-policy-spacefast.js +117 -0
- package/dist/utils/publish-policy.d.ts +22 -16
- package/dist/utils/publish-policy.fixtures.json +15 -0
- package/dist/utils/publish-policy.js +62 -139
- package/dist/utils/query-client.js +9 -1
- package/dist/utils/runtime-upload.d.ts +4 -0
- package/dist/utils/runtime-upload.js +5 -0
- package/dist/utils/space-config.d.ts +2 -3
- package/dist/utils/space-config.js +1 -1
- package/dist/utils/uploaded-source.d.ts +4 -0
- package/dist/utils/uploaded-source.js +12 -0
- package/dist/visual-review.d.ts +4 -0
- package/dist/visual-review.js +208 -0
- package/dist/vocabulary.d.ts +38 -0
- package/dist/vocabulary.js +55 -0
- package/package.json +7 -2
- package/dist/agents/registry/deeplink-probes.d.ts +0 -23
- package/dist/agents/registry/deeplink-probes.js +0 -18
|
@@ -138,6 +138,10 @@ export declare const ERROR_CODE_META: {
|
|
|
138
138
|
readonly retryable: false;
|
|
139
139
|
readonly recovery: "fix_input";
|
|
140
140
|
};
|
|
141
|
+
readonly catalog_unavailable: {
|
|
142
|
+
readonly retryable: true;
|
|
143
|
+
readonly recovery: "retry";
|
|
144
|
+
};
|
|
141
145
|
readonly channel_name_reserved: {
|
|
142
146
|
readonly retryable: false;
|
|
143
147
|
readonly recovery: "fix_input";
|
|
@@ -219,6 +223,101 @@ export declare const ERROR_CODE_META: {
|
|
|
219
223
|
readonly retryable: false;
|
|
220
224
|
readonly recovery: "fix_input";
|
|
221
225
|
};
|
|
226
|
+
readonly connection_ambiguous: {
|
|
227
|
+
readonly retryable: false;
|
|
228
|
+
readonly recovery: "fix_input";
|
|
229
|
+
readonly next: readonly ["GET /v1/connectors/connections?connector=<slug> and pick one", "Address the tool through that connection: <cxn_id>/<tool>"];
|
|
230
|
+
};
|
|
231
|
+
readonly connection_forbidden: {
|
|
232
|
+
readonly retryable: false;
|
|
233
|
+
readonly recovery: "re_auth";
|
|
234
|
+
readonly next: readonly ["Re-authorize with connectors:execute", "Ask the connection's owner to share it with the team"];
|
|
235
|
+
};
|
|
236
|
+
readonly connection_serving_not_granted: {
|
|
237
|
+
readonly retryable: false;
|
|
238
|
+
readonly recovery: "fix_input";
|
|
239
|
+
};
|
|
240
|
+
readonly owner_binding_requires_private_space: {
|
|
241
|
+
readonly retryable: false;
|
|
242
|
+
readonly recovery: "fix_input";
|
|
243
|
+
};
|
|
244
|
+
readonly visitor_role_not_bindable: {
|
|
245
|
+
readonly retryable: false;
|
|
246
|
+
readonly recovery: "fix_input";
|
|
247
|
+
};
|
|
248
|
+
readonly connector_role_unknown: {
|
|
249
|
+
readonly retryable: false;
|
|
250
|
+
readonly recovery: "fix_input";
|
|
251
|
+
};
|
|
252
|
+
readonly connector_serving_admin_only: {
|
|
253
|
+
readonly retryable: false;
|
|
254
|
+
readonly recovery: "fix_input";
|
|
255
|
+
};
|
|
256
|
+
readonly connector_serving_not_allowlisted: {
|
|
257
|
+
readonly retryable: false;
|
|
258
|
+
readonly recovery: "fix_input";
|
|
259
|
+
};
|
|
260
|
+
readonly connector_write_in_read_handler: {
|
|
261
|
+
readonly retryable: false;
|
|
262
|
+
readonly recovery: "fix_input";
|
|
263
|
+
};
|
|
264
|
+
readonly connection_needs_reauth: {
|
|
265
|
+
readonly retryable: false;
|
|
266
|
+
readonly recovery: "re_auth";
|
|
267
|
+
readonly next: readonly ["POST /v1/connectors/connections to reconnect — credentials are immutable, so reconnect rather than edit"];
|
|
268
|
+
};
|
|
269
|
+
readonly connection_not_found: {
|
|
270
|
+
readonly retryable: false;
|
|
271
|
+
readonly recovery: "fix_input";
|
|
272
|
+
};
|
|
273
|
+
readonly connection_revoked: {
|
|
274
|
+
readonly retryable: false;
|
|
275
|
+
readonly recovery: "re_auth";
|
|
276
|
+
readonly next: readonly ["POST /v1/connectors/connections to connect it again"];
|
|
277
|
+
};
|
|
278
|
+
readonly connector_approval_required: {
|
|
279
|
+
readonly retryable: false;
|
|
280
|
+
readonly recovery: "wait";
|
|
281
|
+
readonly next: readonly ["Open the `approvalUrl` in the error details so a person can approve or deny it", "GET /v1/connectors/runs/{id} until it leaves awaiting_approval"];
|
|
282
|
+
};
|
|
283
|
+
readonly connector_first_party_immutable: {
|
|
284
|
+
readonly retryable: false;
|
|
285
|
+
readonly recovery: "fix_input";
|
|
286
|
+
};
|
|
287
|
+
readonly connector_not_found: {
|
|
288
|
+
readonly retryable: false;
|
|
289
|
+
readonly recovery: "fix_input";
|
|
290
|
+
};
|
|
291
|
+
readonly connector_run_budget_exhausted: {
|
|
292
|
+
readonly retryable: true;
|
|
293
|
+
readonly recovery: "wait";
|
|
294
|
+
};
|
|
295
|
+
readonly connector_run_not_found: {
|
|
296
|
+
readonly retryable: false;
|
|
297
|
+
readonly recovery: "fix_input";
|
|
298
|
+
};
|
|
299
|
+
readonly connector_run_not_resumable: {
|
|
300
|
+
readonly retryable: false;
|
|
301
|
+
readonly recovery: "fix_input";
|
|
302
|
+
readonly next: readonly ["POST /v1/connectors/runs to run it again — a settled or expired run cannot be resumed"];
|
|
303
|
+
};
|
|
304
|
+
readonly connector_slug_taken: {
|
|
305
|
+
readonly retryable: false;
|
|
306
|
+
readonly recovery: "fix_input";
|
|
307
|
+
};
|
|
308
|
+
readonly connector_source_blocked: {
|
|
309
|
+
readonly retryable: false;
|
|
310
|
+
readonly recovery: "fix_input";
|
|
311
|
+
};
|
|
312
|
+
readonly connector_source_unreachable: {
|
|
313
|
+
readonly retryable: true;
|
|
314
|
+
readonly recovery: "retry";
|
|
315
|
+
};
|
|
316
|
+
readonly connector_tool_blocked: {
|
|
317
|
+
readonly retryable: false;
|
|
318
|
+
readonly recovery: "fix_input";
|
|
319
|
+
readonly next: readonly ["GET /v1/connectors/policies/resolve?address=<address> to see which rule blocked it", "Ask a team admin to change the rule, or call a tool that is not blocked"];
|
|
320
|
+
};
|
|
222
321
|
readonly continuation_unavailable: {
|
|
223
322
|
readonly retryable: false;
|
|
224
323
|
readonly recovery: "re_auth";
|
|
@@ -295,6 +394,11 @@ export declare const ERROR_CODE_META: {
|
|
|
295
394
|
readonly recovery: "wait";
|
|
296
395
|
readonly next: readonly ["Retry after the Retry-After seconds"];
|
|
297
396
|
};
|
|
397
|
+
readonly dns_control_observation_indeterminate: {
|
|
398
|
+
readonly retryable: true;
|
|
399
|
+
readonly recovery: "wait";
|
|
400
|
+
readonly next: readonly ["Wait briefly, then check the domain again"];
|
|
401
|
+
};
|
|
298
402
|
readonly dns_export_required: {
|
|
299
403
|
readonly retryable: false;
|
|
300
404
|
readonly recovery: "fix_input";
|
|
@@ -448,10 +552,6 @@ export declare const ERROR_CODE_META: {
|
|
|
448
552
|
readonly retryable: false;
|
|
449
553
|
readonly recovery: "fix_input";
|
|
450
554
|
};
|
|
451
|
-
readonly domain_hostname_site_mismatch: {
|
|
452
|
-
readonly retryable: false;
|
|
453
|
-
readonly recovery: "fix_input";
|
|
454
|
-
};
|
|
455
555
|
readonly domain_in_use: {
|
|
456
556
|
readonly retryable: false;
|
|
457
557
|
readonly recovery: "fix_input";
|
|
@@ -501,10 +601,19 @@ export declare const ERROR_CODE_META: {
|
|
|
501
601
|
readonly retryable: false;
|
|
502
602
|
readonly recovery: "fix_input";
|
|
503
603
|
};
|
|
604
|
+
readonly elevation_denied: {
|
|
605
|
+
readonly retryable: false;
|
|
606
|
+
readonly recovery: "contact_support";
|
|
607
|
+
};
|
|
504
608
|
readonly elevation_not_required: {
|
|
505
609
|
readonly retryable: false;
|
|
506
610
|
readonly recovery: "fix_input";
|
|
507
611
|
};
|
|
612
|
+
readonly elevation_required: {
|
|
613
|
+
readonly retryable: false;
|
|
614
|
+
readonly recovery: "wait";
|
|
615
|
+
readonly next: readonly ["Open the `url` in the error details so a person can approve or deny temporary access", "POST the `continuationToken` to /v1/actions/resume every 5 seconds", "After approval, retry the original operation"];
|
|
616
|
+
};
|
|
508
617
|
readonly email_already_claimed: {
|
|
509
618
|
readonly retryable: false;
|
|
510
619
|
readonly recovery: "fix_input";
|
|
@@ -542,10 +651,52 @@ export declare const ERROR_CODE_META: {
|
|
|
542
651
|
readonly retryable: false;
|
|
543
652
|
readonly recovery: "re_auth";
|
|
544
653
|
};
|
|
654
|
+
readonly frame_link_inactive: {
|
|
655
|
+
readonly retryable: false;
|
|
656
|
+
readonly recovery: "re_auth";
|
|
657
|
+
};
|
|
658
|
+
readonly frame_path_outside_link_resources: {
|
|
659
|
+
readonly retryable: false;
|
|
660
|
+
readonly recovery: "fix_input";
|
|
661
|
+
};
|
|
662
|
+
readonly frame_principal_required: {
|
|
663
|
+
readonly retryable: false;
|
|
664
|
+
readonly recovery: "re_auth";
|
|
665
|
+
};
|
|
666
|
+
readonly frame_session_invalid: {
|
|
667
|
+
readonly retryable: false;
|
|
668
|
+
readonly recovery: "re_auth";
|
|
669
|
+
};
|
|
670
|
+
readonly frame_session_stale: {
|
|
671
|
+
readonly retryable: false;
|
|
672
|
+
readonly recovery: "re_auth";
|
|
673
|
+
};
|
|
674
|
+
readonly frame_session_target_changed: {
|
|
675
|
+
readonly retryable: false;
|
|
676
|
+
readonly recovery: "re_auth";
|
|
677
|
+
};
|
|
678
|
+
readonly frame_target_fixed: {
|
|
679
|
+
readonly retryable: false;
|
|
680
|
+
readonly recovery: "fix_input";
|
|
681
|
+
};
|
|
682
|
+
readonly frame_version_required: {
|
|
683
|
+
readonly retryable: false;
|
|
684
|
+
readonly recovery: "fix_input";
|
|
685
|
+
};
|
|
545
686
|
readonly free_external_proxy_disabled: {
|
|
546
687
|
readonly retryable: false;
|
|
547
688
|
readonly recovery: "fix_input";
|
|
548
689
|
};
|
|
690
|
+
readonly hostname_contested: {
|
|
691
|
+
readonly retryable: false;
|
|
692
|
+
readonly recovery: "fix_input";
|
|
693
|
+
readonly next: readonly ["Publish under a different slug, or free the hostname at the provider"];
|
|
694
|
+
};
|
|
695
|
+
readonly human_approval_required: {
|
|
696
|
+
readonly retryable: false;
|
|
697
|
+
readonly recovery: "wait";
|
|
698
|
+
readonly next: readonly ["Open the `approvalUrl` in the error details — this run was parked for a person, and no agent decision will settle it", "GET /v1/connectors/runs/{id} until it leaves awaiting_approval"];
|
|
699
|
+
};
|
|
549
700
|
readonly idempotency_conflict_in_progress: {
|
|
550
701
|
readonly retryable: true;
|
|
551
702
|
readonly recovery: "wait";
|
|
@@ -734,6 +885,18 @@ export declare const ERROR_CODE_META: {
|
|
|
734
885
|
readonly retryable: false;
|
|
735
886
|
readonly recovery: "re_auth";
|
|
736
887
|
};
|
|
888
|
+
readonly jetpack_licensing_rejected: {
|
|
889
|
+
readonly retryable: false;
|
|
890
|
+
readonly recovery: "contact_support";
|
|
891
|
+
};
|
|
892
|
+
readonly jetpack_licensing_response_invalid: {
|
|
893
|
+
readonly retryable: true;
|
|
894
|
+
readonly recovery: "retry";
|
|
895
|
+
};
|
|
896
|
+
readonly jetpack_licensing_unavailable: {
|
|
897
|
+
readonly retryable: true;
|
|
898
|
+
readonly recovery: "retry";
|
|
899
|
+
};
|
|
737
900
|
readonly job_not_found: {
|
|
738
901
|
readonly retryable: false;
|
|
739
902
|
readonly recovery: "fix_input";
|
|
@@ -762,6 +925,15 @@ export declare const ERROR_CODE_META: {
|
|
|
762
925
|
readonly retryable: false;
|
|
763
926
|
readonly recovery: "fix_input";
|
|
764
927
|
};
|
|
928
|
+
readonly malformed_policy_pattern: {
|
|
929
|
+
readonly retryable: false;
|
|
930
|
+
readonly recovery: "fix_input";
|
|
931
|
+
};
|
|
932
|
+
readonly malformed_tool_address: {
|
|
933
|
+
readonly retryable: false;
|
|
934
|
+
readonly recovery: "fix_input";
|
|
935
|
+
readonly next: readonly ["Tool addresses are `<connectionId>/<tool>` — copy one from GET /v1/connectors/connections/{id}/tools"];
|
|
936
|
+
};
|
|
765
937
|
readonly malware_detected: {
|
|
766
938
|
readonly retryable: false;
|
|
767
939
|
readonly recovery: "contact_support";
|
|
@@ -815,6 +987,14 @@ export declare const ERROR_CODE_META: {
|
|
|
815
987
|
readonly retryable: false;
|
|
816
988
|
readonly recovery: "fix_input";
|
|
817
989
|
};
|
|
990
|
+
readonly next_package_layout_unsupported: {
|
|
991
|
+
readonly retryable: false;
|
|
992
|
+
readonly recovery: "fix_input";
|
|
993
|
+
};
|
|
994
|
+
readonly next_version_unsupported: {
|
|
995
|
+
readonly retryable: false;
|
|
996
|
+
readonly recovery: "fix_input";
|
|
997
|
+
};
|
|
818
998
|
readonly no_space_selected: {
|
|
819
999
|
readonly retryable: false;
|
|
820
1000
|
readonly recovery: "fix_input";
|
|
@@ -867,10 +1047,6 @@ export declare const ERROR_CODE_META: {
|
|
|
867
1047
|
readonly retryable: false;
|
|
868
1048
|
readonly recovery: "fix_input";
|
|
869
1049
|
};
|
|
870
|
-
readonly placement_invalid_burstable: {
|
|
871
|
-
readonly retryable: false;
|
|
872
|
-
readonly recovery: "fix_input";
|
|
873
|
-
};
|
|
874
1050
|
readonly policy_exceeds_grantor: {
|
|
875
1051
|
readonly retryable: false;
|
|
876
1052
|
readonly recovery: "fix_input";
|
|
@@ -1061,6 +1237,10 @@ export declare const ERROR_CODE_META: {
|
|
|
1061
1237
|
readonly recovery: "wait";
|
|
1062
1238
|
readonly next: readonly ["Retry after the Retry-After seconds"];
|
|
1063
1239
|
};
|
|
1240
|
+
readonly realtime_cursor_expired: {
|
|
1241
|
+
readonly retryable: false;
|
|
1242
|
+
readonly recovery: "fix_input";
|
|
1243
|
+
};
|
|
1064
1244
|
readonly registration_expired: {
|
|
1065
1245
|
readonly retryable: false;
|
|
1066
1246
|
readonly recovery: "fix_input";
|
|
@@ -1069,6 +1249,14 @@ export declare const ERROR_CODE_META: {
|
|
|
1069
1249
|
readonly retryable: false;
|
|
1070
1250
|
readonly recovery: "fix_input";
|
|
1071
1251
|
};
|
|
1252
|
+
readonly repository_ref_not_found: {
|
|
1253
|
+
readonly retryable: false;
|
|
1254
|
+
readonly recovery: "fix_input";
|
|
1255
|
+
};
|
|
1256
|
+
readonly repository_stale_base: {
|
|
1257
|
+
readonly retryable: false;
|
|
1258
|
+
readonly recovery: "fix_input";
|
|
1259
|
+
};
|
|
1072
1260
|
readonly resource_revision_changed: {
|
|
1073
1261
|
readonly retryable: false;
|
|
1074
1262
|
readonly recovery: "fix_input";
|
|
@@ -1077,6 +1265,10 @@ export declare const ERROR_CODE_META: {
|
|
|
1077
1265
|
readonly retryable: false;
|
|
1078
1266
|
readonly recovery: "fix_input";
|
|
1079
1267
|
};
|
|
1268
|
+
readonly run_replay_diverged: {
|
|
1269
|
+
readonly retryable: true;
|
|
1270
|
+
readonly recovery: "retry";
|
|
1271
|
+
};
|
|
1080
1272
|
readonly runtime_action_forbidden: {
|
|
1081
1273
|
readonly retryable: false;
|
|
1082
1274
|
readonly recovery: "re_auth";
|
|
@@ -1089,6 +1281,10 @@ export declare const ERROR_CODE_META: {
|
|
|
1089
1281
|
readonly retryable: false;
|
|
1090
1282
|
readonly recovery: "re_auth";
|
|
1091
1283
|
};
|
|
1284
|
+
readonly runtime_capabilities_pending: {
|
|
1285
|
+
readonly retryable: true;
|
|
1286
|
+
readonly recovery: "wait";
|
|
1287
|
+
};
|
|
1092
1288
|
readonly runtime_dev_unsupported: {
|
|
1093
1289
|
readonly retryable: false;
|
|
1094
1290
|
readonly recovery: "fix_input";
|
|
@@ -1202,14 +1398,6 @@ export declare const ERROR_CODE_META: {
|
|
|
1202
1398
|
readonly retryable: false;
|
|
1203
1399
|
readonly recovery: "fix_input";
|
|
1204
1400
|
};
|
|
1205
|
-
readonly site_has_live_spaces: {
|
|
1206
|
-
readonly retryable: false;
|
|
1207
|
-
readonly recovery: "fix_input";
|
|
1208
|
-
};
|
|
1209
|
-
readonly site_not_static: {
|
|
1210
|
-
readonly retryable: false;
|
|
1211
|
-
readonly recovery: "fix_input";
|
|
1212
|
-
};
|
|
1213
1401
|
readonly site_required: {
|
|
1214
1402
|
readonly retryable: false;
|
|
1215
1403
|
readonly recovery: "fix_input";
|
|
@@ -1247,6 +1435,154 @@ export declare const ERROR_CODE_META: {
|
|
|
1247
1435
|
readonly retryable: true;
|
|
1248
1436
|
readonly recovery: "wait";
|
|
1249
1437
|
};
|
|
1438
|
+
readonly source_branch_changed: {
|
|
1439
|
+
readonly retryable: false;
|
|
1440
|
+
readonly recovery: "fix_input";
|
|
1441
|
+
readonly next: readonly ["Sync the source workspace, then read its current revision."];
|
|
1442
|
+
};
|
|
1443
|
+
readonly source_branch_missing: {
|
|
1444
|
+
readonly retryable: false;
|
|
1445
|
+
readonly recovery: "fix_input";
|
|
1446
|
+
};
|
|
1447
|
+
readonly source_commit_not_saved: {
|
|
1448
|
+
readonly retryable: false;
|
|
1449
|
+
readonly recovery: "fix_input";
|
|
1450
|
+
};
|
|
1451
|
+
readonly source_conflict_content_unavailable: {
|
|
1452
|
+
readonly retryable: true;
|
|
1453
|
+
readonly recovery: "retry";
|
|
1454
|
+
};
|
|
1455
|
+
readonly source_conflicts_missing: {
|
|
1456
|
+
readonly retryable: false;
|
|
1457
|
+
readonly recovery: "fix_input";
|
|
1458
|
+
};
|
|
1459
|
+
readonly source_exact_diff_unsupported: {
|
|
1460
|
+
readonly retryable: false;
|
|
1461
|
+
readonly recovery: "contact_support";
|
|
1462
|
+
readonly next: readonly ["The provider cannot compare these exact snapshots. Do not change the requested base or retry the same comparison."];
|
|
1463
|
+
};
|
|
1464
|
+
readonly source_file_incomplete: {
|
|
1465
|
+
readonly retryable: true;
|
|
1466
|
+
readonly recovery: "retry";
|
|
1467
|
+
};
|
|
1468
|
+
readonly source_file_mode_unavailable: {
|
|
1469
|
+
readonly retryable: false;
|
|
1470
|
+
readonly recovery: "fix_input";
|
|
1471
|
+
};
|
|
1472
|
+
readonly source_file_required: {
|
|
1473
|
+
readonly retryable: false;
|
|
1474
|
+
readonly recovery: "fix_input";
|
|
1475
|
+
};
|
|
1476
|
+
readonly source_file_too_large: {
|
|
1477
|
+
readonly retryable: false;
|
|
1478
|
+
readonly recovery: "fix_input";
|
|
1479
|
+
};
|
|
1480
|
+
readonly source_file_unavailable: {
|
|
1481
|
+
readonly retryable: true;
|
|
1482
|
+
readonly recovery: "retry";
|
|
1483
|
+
};
|
|
1484
|
+
readonly source_files_too_large: {
|
|
1485
|
+
readonly retryable: false;
|
|
1486
|
+
readonly recovery: "fix_input";
|
|
1487
|
+
};
|
|
1488
|
+
readonly source_hunk_selection_invalid: {
|
|
1489
|
+
readonly retryable: false;
|
|
1490
|
+
readonly recovery: "fix_input";
|
|
1491
|
+
};
|
|
1492
|
+
readonly source_hunk_stale: {
|
|
1493
|
+
readonly retryable: false;
|
|
1494
|
+
readonly recovery: "fix_input";
|
|
1495
|
+
readonly next: readonly ["Read the current source diff and use its hunk IDs."];
|
|
1496
|
+
};
|
|
1497
|
+
readonly source_merge_snapshot_changed: {
|
|
1498
|
+
readonly retryable: true;
|
|
1499
|
+
readonly recovery: "retry";
|
|
1500
|
+
};
|
|
1501
|
+
readonly source_merge_undo_unsupported: {
|
|
1502
|
+
readonly retryable: false;
|
|
1503
|
+
readonly recovery: "fix_input";
|
|
1504
|
+
};
|
|
1505
|
+
readonly source_nothing_staged: {
|
|
1506
|
+
readonly retryable: false;
|
|
1507
|
+
readonly recovery: "fix_input";
|
|
1508
|
+
};
|
|
1509
|
+
readonly source_operation_pending: {
|
|
1510
|
+
readonly retryable: true;
|
|
1511
|
+
readonly recovery: "retry";
|
|
1512
|
+
readonly next: readonly ["Retry the pending operation with the same operation ID and input."];
|
|
1513
|
+
};
|
|
1514
|
+
readonly source_operation_reused: {
|
|
1515
|
+
readonly retryable: false;
|
|
1516
|
+
readonly recovery: "fix_input";
|
|
1517
|
+
};
|
|
1518
|
+
readonly source_operation_superseded: {
|
|
1519
|
+
readonly retryable: false;
|
|
1520
|
+
readonly recovery: "fix_input";
|
|
1521
|
+
};
|
|
1522
|
+
readonly source_operation_unreconciled: {
|
|
1523
|
+
readonly retryable: true;
|
|
1524
|
+
readonly recovery: "retry";
|
|
1525
|
+
readonly next: readonly ["Retry the pending operation. Do not start another write."];
|
|
1526
|
+
};
|
|
1527
|
+
readonly source_patch_unavailable: {
|
|
1528
|
+
readonly retryable: false;
|
|
1529
|
+
readonly recovery: "fix_input";
|
|
1530
|
+
};
|
|
1531
|
+
readonly source_resolution_invalid: {
|
|
1532
|
+
readonly retryable: false;
|
|
1533
|
+
readonly recovery: "fix_input";
|
|
1534
|
+
};
|
|
1535
|
+
readonly source_resolution_pending: {
|
|
1536
|
+
readonly retryable: true;
|
|
1537
|
+
readonly recovery: "retry";
|
|
1538
|
+
};
|
|
1539
|
+
readonly source_selection_invalid: {
|
|
1540
|
+
readonly retryable: false;
|
|
1541
|
+
readonly recovery: "fix_input";
|
|
1542
|
+
};
|
|
1543
|
+
readonly source_snapshot_changed: {
|
|
1544
|
+
readonly retryable: true;
|
|
1545
|
+
readonly recovery: "retry";
|
|
1546
|
+
};
|
|
1547
|
+
readonly source_tree_too_large: {
|
|
1548
|
+
readonly retryable: false;
|
|
1549
|
+
readonly recovery: "fix_input";
|
|
1550
|
+
};
|
|
1551
|
+
readonly source_workspace_closed: {
|
|
1552
|
+
readonly retryable: false;
|
|
1553
|
+
readonly recovery: "fix_input";
|
|
1554
|
+
};
|
|
1555
|
+
readonly source_workspace_connection_changed: {
|
|
1556
|
+
readonly retryable: false;
|
|
1557
|
+
readonly recovery: "fix_input";
|
|
1558
|
+
};
|
|
1559
|
+
readonly source_workspace_connection_in_use: {
|
|
1560
|
+
readonly retryable: false;
|
|
1561
|
+
readonly recovery: "fix_input";
|
|
1562
|
+
readonly next: readonly ["Close each open source workspace. Then retry the repository connection change."];
|
|
1563
|
+
};
|
|
1564
|
+
readonly source_workspace_dirty: {
|
|
1565
|
+
readonly retryable: false;
|
|
1566
|
+
readonly recovery: "fix_input";
|
|
1567
|
+
};
|
|
1568
|
+
readonly source_workspace_initializing: {
|
|
1569
|
+
readonly retryable: true;
|
|
1570
|
+
readonly recovery: "retry";
|
|
1571
|
+
};
|
|
1572
|
+
readonly source_workspace_ref_reserved: {
|
|
1573
|
+
readonly retryable: false;
|
|
1574
|
+
readonly recovery: "fix_input";
|
|
1575
|
+
};
|
|
1576
|
+
readonly source_workspace_revision_conflict: {
|
|
1577
|
+
readonly retryable: false;
|
|
1578
|
+
readonly recovery: "fix_input";
|
|
1579
|
+
readonly next: readonly ["Read the source workspace status and diff. Use the new revision."];
|
|
1580
|
+
};
|
|
1581
|
+
readonly source_workspaces_unavailable: {
|
|
1582
|
+
readonly retryable: false;
|
|
1583
|
+
readonly recovery: "contact_support";
|
|
1584
|
+
readonly next: readonly ["Source workspaces require native exact snapshot comparisons. Contact support before retrying mutations."];
|
|
1585
|
+
};
|
|
1250
1586
|
readonly space_already_claimed: {
|
|
1251
1587
|
readonly retryable: false;
|
|
1252
1588
|
readonly recovery: "fix_input";
|
|
@@ -1661,6 +1997,34 @@ export declare const ERROR_CODE_META: {
|
|
|
1661
1997
|
readonly retryable: false;
|
|
1662
1998
|
readonly recovery: "fix_input";
|
|
1663
1999
|
};
|
|
2000
|
+
readonly visual_review_context_too_large: {
|
|
2001
|
+
readonly retryable: false;
|
|
2002
|
+
readonly recovery: "fix_input";
|
|
2003
|
+
};
|
|
2004
|
+
readonly visual_review_expired: {
|
|
2005
|
+
readonly retryable: false;
|
|
2006
|
+
readonly recovery: "fix_input";
|
|
2007
|
+
};
|
|
2008
|
+
readonly visual_review_forbidden: {
|
|
2009
|
+
readonly retryable: false;
|
|
2010
|
+
readonly recovery: "re_auth";
|
|
2011
|
+
};
|
|
2012
|
+
readonly visual_review_invalid_image: {
|
|
2013
|
+
readonly retryable: false;
|
|
2014
|
+
readonly recovery: "fix_input";
|
|
2015
|
+
};
|
|
2016
|
+
readonly visual_review_invalid_note: {
|
|
2017
|
+
readonly retryable: false;
|
|
2018
|
+
readonly recovery: "fix_input";
|
|
2019
|
+
};
|
|
2020
|
+
readonly visual_review_submitted: {
|
|
2021
|
+
readonly retryable: false;
|
|
2022
|
+
readonly recovery: "fix_input";
|
|
2023
|
+
};
|
|
2024
|
+
readonly visual_review_too_large: {
|
|
2025
|
+
readonly retryable: false;
|
|
2026
|
+
readonly recovery: "fix_input";
|
|
2027
|
+
};
|
|
1664
2028
|
readonly webhook_delivery_budget_exceeded: {
|
|
1665
2029
|
readonly retryable: false;
|
|
1666
2030
|
readonly recovery: "fix_input";
|
|
@@ -1685,6 +2049,10 @@ export declare const ERROR_CODE_META: {
|
|
|
1685
2049
|
readonly retryable: false;
|
|
1686
2050
|
readonly recovery: "fix_input";
|
|
1687
2051
|
};
|
|
2052
|
+
readonly wp_cli_timeout: {
|
|
2053
|
+
readonly retryable: true;
|
|
2054
|
+
readonly recovery: "wait";
|
|
2055
|
+
};
|
|
1688
2056
|
readonly wp_cloud_client_in_use: {
|
|
1689
2057
|
readonly retryable: false;
|
|
1690
2058
|
readonly recovery: "fix_input";
|
|
@@ -1697,10 +2065,6 @@ export declare const ERROR_CODE_META: {
|
|
|
1697
2065
|
readonly retryable: false;
|
|
1698
2066
|
readonly recovery: "fix_input";
|
|
1699
2067
|
};
|
|
1700
|
-
readonly wp_cloud_team_shared_site_exists: {
|
|
1701
|
-
readonly retryable: false;
|
|
1702
|
-
readonly recovery: "fix_input";
|
|
1703
|
-
};
|
|
1704
2068
|
readonly wp_cloud_webhook_secret_not_configured: {
|
|
1705
2069
|
readonly retryable: false;
|
|
1706
2070
|
readonly recovery: "contact_support";
|
|
@@ -1989,6 +2353,10 @@ export declare const ERROR_CODE_META: {
|
|
|
1989
2353
|
readonly retryable: false;
|
|
1990
2354
|
readonly recovery: "fix_input";
|
|
1991
2355
|
};
|
|
2356
|
+
readonly zero_mutation_origin_invalid: {
|
|
2357
|
+
readonly retryable: false;
|
|
2358
|
+
readonly recovery: "fix_input";
|
|
2359
|
+
};
|
|
1992
2360
|
readonly zero_query_name_missing: {
|
|
1993
2361
|
readonly retryable: false;
|
|
1994
2362
|
readonly recovery: "fix_input";
|