@spacefast/common 0.0.8 → 0.0.10

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.
Files changed (78) hide show
  1. package/dist/contracts/activity.d.ts +1 -1
  2. package/dist/contracts/activity.js +11 -6
  3. package/dist/contracts/annotations.d.ts +2 -0
  4. package/dist/contracts/annotations.js +2 -1
  5. package/dist/contracts/api-keys.d.ts +4 -0
  6. package/dist/contracts/api-keys.js +4 -0
  7. package/dist/contracts/archives.d.ts +2 -8
  8. package/dist/contracts/archives.js +3 -8
  9. package/dist/contracts/builds.d.ts +1 -0
  10. package/dist/contracts/builds.js +5 -0
  11. package/dist/contracts/comments.d.ts +309 -0
  12. package/dist/contracts/comments.js +200 -0
  13. package/dist/contracts/device-auth.d.ts +221 -1
  14. package/dist/contracts/device-auth.js +106 -4
  15. package/dist/contracts/device-team-scope.d.ts +10 -0
  16. package/dist/contracts/device-team-scope.js +17 -0
  17. package/dist/contracts/error-code-meta.d.ts +52 -0
  18. package/dist/contracts/error-code-meta.js +13 -0
  19. package/dist/contracts/error-codes.d.ts +1 -1
  20. package/dist/contracts/error-codes.js +13 -0
  21. package/dist/contracts/features.d.ts +37 -38
  22. package/dist/contracts/features.js +51 -59
  23. package/dist/contracts/generated-feature-launch-entries.d.ts +2 -2
  24. package/dist/contracts/generated-feature-launch-entries.js +6 -6
  25. package/dist/contracts/ids.d.ts +1 -1
  26. package/dist/contracts/ids.js +1 -1
  27. package/dist/contracts/oauth-resources.d.ts +7 -0
  28. package/dist/contracts/oauth-resources.js +10 -2
  29. package/dist/contracts/operations.d.ts +1 -3
  30. package/dist/contracts/operations.js +5 -1
  31. package/dist/contracts/pages.d.ts +70 -0
  32. package/dist/contracts/pages.js +89 -0
  33. package/dist/contracts/publishes.d.ts +5 -0
  34. package/dist/contracts/publishes.js +25 -8
  35. package/dist/contracts/resources.d.ts +14 -62
  36. package/dist/contracts/runtime-api.d.ts +13 -15
  37. package/dist/contracts/runtime-api.js +12 -70
  38. package/dist/contracts/space-config.d.ts +32 -90
  39. package/dist/contracts/space-config.js +49 -54
  40. package/dist/contracts/spaces.d.ts +47 -187
  41. package/dist/contracts/spaces.js +19 -3
  42. package/dist/contracts/superadmin-spaces.d.ts +14 -62
  43. package/dist/contracts/superadmin-teams.d.ts +79 -0
  44. package/dist/contracts/superadmin-teams.js +36 -0
  45. package/dist/contracts/superadmin.d.ts +2 -0
  46. package/dist/contracts/superadmin.js +1 -0
  47. package/dist/contracts/teams.d.ts +1 -0
  48. package/dist/contracts/teams.js +8 -0
  49. package/dist/contracts/theme-json.js +4 -5
  50. package/dist/dashboard-paths/index.d.ts +31 -0
  51. package/dist/dashboard-paths/index.js +80 -0
  52. package/dist/docs/agent-handoff-document.d.ts +15 -0
  53. package/dist/docs/agent-handoff-document.js +179 -0
  54. package/dist/docs/agent-setup.d.ts +12 -1
  55. package/dist/docs/agent-setup.js +30 -16
  56. package/dist/docs/catalog.d.ts +2 -2
  57. package/dist/docs/catalog.js +2 -2
  58. package/dist/docs/error-docs.js +52 -0
  59. package/dist/utils/asset-fingerprint.d.ts +53 -0
  60. package/dist/utils/asset-fingerprint.js +574 -0
  61. package/dist/utils/credential-policy.d.ts +5 -0
  62. package/dist/utils/credential-policy.js +31 -8
  63. package/dist/utils/pages.d.ts +53 -0
  64. package/dist/utils/pages.js +274 -0
  65. package/dist/utils/query-keys.d.ts +4 -3
  66. package/dist/utils/query-keys.js +4 -3
  67. package/dist/utils/space-config.d.ts +2 -2
  68. package/dist/utils/space-config.js +1 -1
  69. package/dist/utils/wpcom-auth-redirects.d.ts +0 -4
  70. package/dist/utils/wpcom-auth-redirects.js +0 -6
  71. package/dist/vocabulary.d.ts +2 -2
  72. package/package.json +6 -1
  73. package/dist/contracts/space-theme.d.ts +0 -25
  74. package/dist/contracts/space-theme.js +0 -49
  75. package/dist/utils/gate-theme.d.ts +0 -61
  76. package/dist/utils/gate-theme.js +0 -217
  77. package/dist/utils/space-theme.d.ts +0 -18
  78. package/dist/utils/space-theme.js +0 -98
@@ -31,6 +31,14 @@ export declare const ERROR_CODE_META: {
31
31
  readonly retryable: false;
32
32
  readonly recovery: "contact_support";
33
33
  };
34
+ readonly agent_handoff_declined: {
35
+ readonly retryable: false;
36
+ readonly recovery: "re_auth";
37
+ };
38
+ readonly agent_handoff_limit_reached: {
39
+ readonly retryable: false;
40
+ readonly recovery: "fix_input";
41
+ };
34
42
  readonly ambiguous_space_slug: {
35
43
  readonly retryable: false;
36
44
  readonly recovery: "fix_input";
@@ -166,6 +174,10 @@ export declare const ERROR_CODE_META: {
166
174
  readonly retryable: false;
167
175
  readonly recovery: "fix_input";
168
176
  };
177
+ readonly comment_screenshot_rate_limited: {
178
+ readonly retryable: true;
179
+ readonly recovery: "wait";
180
+ };
169
181
  readonly config_file_too_large: {
170
182
  readonly retryable: false;
171
183
  readonly recovery: "fix_input";
@@ -556,6 +568,10 @@ export declare const ERROR_CODE_META: {
556
568
  readonly retryable: false;
557
569
  readonly recovery: "re_auth";
558
570
  };
571
+ readonly invalid_idempotency_key: {
572
+ readonly retryable: false;
573
+ readonly recovery: "fix_input";
574
+ };
559
575
  readonly invalid_publish_archive: {
560
576
  readonly retryable: false;
561
577
  readonly recovery: "fix_input";
@@ -688,6 +704,10 @@ export declare const ERROR_CODE_META: {
688
704
  readonly retryable: false;
689
705
  readonly recovery: "fix_input";
690
706
  };
707
+ readonly mcp_acted_for_team_deleted: {
708
+ readonly retryable: false;
709
+ readonly recovery: "fix_input";
710
+ };
691
711
  readonly member_already_exists: {
692
712
  readonly retryable: false;
693
713
  readonly recovery: "fix_input";
@@ -800,6 +820,10 @@ export declare const ERROR_CODE_META: {
800
820
  readonly retryable: false;
801
821
  readonly recovery: "fix_input";
802
822
  };
823
+ readonly publish_bytes_missing: {
824
+ readonly retryable: false;
825
+ readonly recovery: "fix_input";
826
+ };
803
827
  readonly publish_config_unsupported: {
804
828
  readonly retryable: false;
805
829
  readonly recovery: "fix_input";
@@ -812,10 +836,34 @@ export declare const ERROR_CODE_META: {
812
836
  readonly retryable: false;
813
837
  readonly recovery: "fix_input";
814
838
  };
839
+ readonly publish_hash_mismatch: {
840
+ readonly retryable: false;
841
+ readonly recovery: "fix_input";
842
+ };
843
+ readonly publish_inline_limit_exceeded: {
844
+ readonly retryable: false;
845
+ readonly recovery: "fix_input";
846
+ };
847
+ readonly publish_not_cancelable: {
848
+ readonly retryable: false;
849
+ readonly recovery: "fix_input";
850
+ };
851
+ readonly publish_path_collision: {
852
+ readonly retryable: false;
853
+ readonly recovery: "fix_input";
854
+ };
855
+ readonly publish_path_invalid: {
856
+ readonly retryable: false;
857
+ readonly recovery: "fix_input";
858
+ };
815
859
  readonly publish_setup_failed: {
816
860
  readonly retryable: true;
817
861
  readonly recovery: "retry";
818
862
  };
863
+ readonly publish_snapshot_empty: {
864
+ readonly retryable: false;
865
+ readonly recovery: "fix_input";
866
+ };
819
867
  readonly publish_upload_failed: {
820
868
  readonly retryable: true;
821
869
  readonly recovery: "retry";
@@ -996,6 +1044,10 @@ export declare const ERROR_CODE_META: {
996
1044
  readonly retryable: false;
997
1045
  readonly recovery: "fix_input";
998
1046
  };
1047
+ readonly space_has_active_publish: {
1048
+ readonly retryable: true;
1049
+ readonly recovery: "wait";
1050
+ };
999
1051
  readonly space_has_active_version: {
1000
1052
  readonly retryable: false;
1001
1053
  readonly recovery: "fix_input";
@@ -13,6 +13,8 @@ export const ERROR_CODE_META = {
13
13
  abuse_takedown: { retryable: false, recovery: "contact_support" },
14
14
  access_denied: { retryable: false, recovery: "re_auth" },
15
15
  account_suspended: { retryable: false, recovery: "contact_support" },
16
+ agent_handoff_declined: { retryable: false, recovery: "re_auth" },
17
+ agent_handoff_limit_reached: { retryable: false, recovery: "fix_input" },
16
18
  ambiguous_space_slug: { retryable: false, recovery: "fix_input" },
17
19
  anonymous_expired: {
18
20
  retryable: false,
@@ -62,6 +64,7 @@ export const ERROR_CODE_META = {
62
64
  claim_target_not_found: { retryable: false, recovery: "fix_input" },
63
65
  claimed_space_quota_exceeded: { retryable: false, recovery: "fix_input" },
64
66
  cli_upgrade_required: { retryable: false, recovery: "fix_input" },
67
+ comment_screenshot_rate_limited: { retryable: true, recovery: "wait" },
65
68
  config_file_too_large: { retryable: false, recovery: "fix_input" },
66
69
  config_invalid: { retryable: false, recovery: "fix_input" },
67
70
  config_meta_too_long: { retryable: false, recovery: "fix_input" },
@@ -190,6 +193,7 @@ export const ERROR_CODE_META = {
190
193
  invalid_domain_name: { retryable: false, recovery: "fix_input" },
191
194
  invalid_file_path: { retryable: false, recovery: "fix_input" },
192
195
  invalid_grant: { retryable: false, recovery: "re_auth" },
196
+ invalid_idempotency_key: { retryable: false, recovery: "fix_input" },
193
197
  invalid_publish_archive: { retryable: false, recovery: "fix_input" },
194
198
  invalid_publish_path: { retryable: false, recovery: "fix_input" },
195
199
  invalid_publish_payload: { retryable: false, recovery: "fix_input" },
@@ -223,6 +227,7 @@ export const ERROR_CODE_META = {
223
227
  manifest_body_too_large: { retryable: false, recovery: "fix_input" },
224
228
  manifest_duplicate_path: { retryable: false, recovery: "fix_input" },
225
229
  manifest_too_many_files: { retryable: false, recovery: "fix_input" },
230
+ mcp_acted_for_team_deleted: { retryable: false, recovery: "fix_input" },
226
231
  member_already_exists: { retryable: false, recovery: "fix_input" },
227
232
  missing_route_param: { retryable: false, recovery: "fix_input" },
228
233
  nameserver_delegation_required: { retryable: false, recovery: "fix_input" },
@@ -251,10 +256,17 @@ export const ERROR_CODE_META = {
251
256
  publish_archive_file_count_exceeded: { retryable: false, recovery: "fix_input" },
252
257
  publish_archive_too_large: { retryable: false, recovery: "fix_input" },
253
258
  publish_base_changed: { retryable: false, recovery: "fix_input" },
259
+ publish_bytes_missing: { retryable: false, recovery: "fix_input" },
254
260
  publish_config_unsupported: { retryable: false, recovery: "fix_input" },
255
261
  publish_failed: { retryable: false, recovery: "fix_input" },
256
262
  publish_file_missing: { retryable: false, recovery: "fix_input" },
263
+ publish_hash_mismatch: { retryable: false, recovery: "fix_input" },
264
+ publish_inline_limit_exceeded: { retryable: false, recovery: "fix_input" },
265
+ publish_not_cancelable: { retryable: false, recovery: "fix_input" },
266
+ publish_path_collision: { retryable: false, recovery: "fix_input" },
267
+ publish_path_invalid: { retryable: false, recovery: "fix_input" },
257
268
  publish_setup_failed: { retryable: true, recovery: "retry" },
269
+ publish_snapshot_empty: { retryable: false, recovery: "fix_input" },
258
270
  publish_upload_failed: { retryable: true, recovery: "retry" },
259
271
  publish_verification_failed: { retryable: true, recovery: "retry" },
260
272
  queue_not_found: { retryable: false, recovery: "fix_input" },
@@ -319,6 +331,7 @@ export const ERROR_CODE_META = {
319
331
  },
320
332
  space_disabled: { retryable: false, recovery: "fix_input" },
321
333
  space_expired: { retryable: false, recovery: "fix_input" },
334
+ space_has_active_publish: { retryable: true, recovery: "wait" },
322
335
  space_has_active_version: { retryable: false, recovery: "fix_input" },
323
336
  space_hostname_identity_missing: { retryable: false, recovery: "contact_support" },
324
337
  space_import_archive_invalid: { retryable: false, recovery: "fix_input" },
@@ -2,7 +2,7 @@ import { ERROR_DOCS_BASE_URL } from "../brand.js";
2
2
  export { ERROR_DOCS_BASE_URL };
3
3
  /** `docsUrl` derivation rule: docs origin + `/{code}`. Asserted by the conformance suite. */
4
4
  export declare function errorDocsUrl(code: string): string;
5
- export declare const ERROR_CODES: readonly ["abuse_report_invalid_transition", "abuse_report_rate_limited", "abuse_takedown", "access_denied", "account_suspended", "ambiguous_space_slug", "anonymous_expired", "anonymous_pool_unavailable", "anonymous_publish_rate_limited", "anonymous_space_limit_reached", "api_key_scope_underivable", "archive_body_required", "archive_too_large", "auth_code_required", "authorization_pending", "billing_receipt_invalid", "billing_receipt_not_bound_to_team", "billing_store_not_configured", "billing_subscription_conflict", "billing_unknown_product", "build_command_missing", "build_execution_unavailable", "build_failed", "build_install_failed", "build_no_index_html", "build_not_created", "build_oom", "build_output_dir_missing", "build_timeout", "cache_purge_domain_required", "cache_purge_path_required", "channel_name_reserved", "channel_pointer_moved", "channel_unsupported", "claim_blocked_takedown", "claim_target_not_found", "claimed_space_quota_exceeded", "cli_upgrade_required", "config_file_too_large", "config_invalid", "config_meta_too_long", "config_templates_over_limit", "continuation_unavailable", "continuation_used", "credential_expired", "credential_not_yet_valid", "credential_retired", "credential_revoked", "csam_blocked", "csam_policy_floor", "data_location_immutable", "datacenters_unavailable", "device_authorization_failed", "device_verification_rate_limited", "dns_export_required", "dns_field_conflict", "dns_field_not_applicable", "dns_import_partial_visibility", "dns_provider_auth_expired", "dns_provider_batch_unsupported", "dns_provider_change_pending", "dns_provider_conflict", "dns_provider_connection_in_use", "dns_provider_connection_unavailable", "dns_provider_controlled_desired_state", "dns_provider_credentials_expired", "dns_provider_feature_descriptors", "dns_provider_feature_unavailable", "dns_provider_field_unsupported", "dns_provider_future_authoritative_backend", "dns_provider_missing_permission", "dns_provider_not_connected", "dns_provider_operation_failed", "dns_provider_permission_denied", "dns_provider_rate_limited", "dns_provider_replace_all_requires_fresh_plan", "dns_provider_replace_all_write_strategy", "dns_provider_snapshot_stale", "dns_provider_snapshot_unavailable", "dns_provider_temporarily_unavailable", "dns_provider_timeout", "dns_provider_validation_failed", "dns_provider_workflow_templates", "dns_provider_zone_not_found", "dns_record_conflicts_with_managed", "dns_record_managed", "dns_record_not_found", "domain_already_exists", "domain_bound", "domain_facet_already_managed", "domain_facet_external", "domain_facet_not_applicable", "domain_hostname_site_mismatch", "domain_in_use", "domain_lookup_rate_limited", "domain_not_bound", "domain_quota_exceeded", "domain_registration_active", "domain_registration_not_renewable", "domain_reserved_suffix", "domain_transfer_active", "domain_wildcard_label", "domain_wildcard_not_enabled", "download_required", "duplicate_version_path", "enforcement_policy_overlap", "event_payload_too_large", "event_rate_limited", "expired_token", "export_archive_not_ready", "export_version_not_found", "feature_unavailable", "files_mode_does_not_support_spa", "forbidden", "free_external_proxy_disabled", "free_headers_basic_auth_disabled", "idempotency_conflict_in_progress", "idempotency_key_reused", "immutable_version_requires_login", "import_archive_not_uploaded", "import_not_cancelable", "import_not_waiting_for_archive", "incumbent_controls_dns", "inject_invalid", "inject_snippet_too_large", "internal_error", "invalid_claim_token", "invalid_continuation_token", "invalid_data_location", "invalid_device_code", "invalid_domain", "invalid_domain_name", "invalid_file_path", "invalid_grant", "invalid_publish_archive", "invalid_publish_path", "invalid_publish_payload", "invalid_request", "invalid_runtime_event", "invalid_space", "invalid_space_mode", "invalid_user_code", "invalid_version_path", "invalid_webhook_events", "invalid_webhook_payload", "invalid_webhook_signature", "invalid_webhook_url", "invalid_zero_realtime_event", "invalid_zero_realtime_replay_query", "invitation_already_exists", "invitation_email_mismatch", "invitation_expired", "invitation_not_pending", "ip_blocked", "job_not_found", "job_not_promotable", "job_not_removable", "job_not_retryable", "last_owner", "log_retention_clamped", "lost_domain_control", "malware_detected", "managed_domain_protected", "manifest_body_too_large", "manifest_duplicate_path", "manifest_too_many_files", "member_already_exists", "missing_route_param", "move_target_capacity_lost", "nameserver_delegation_required", "nameserver_divergence", "noop_publish", "not_enrolled", "not_found", "path_case_collision", "path_too_long", "placement_invalid_burstable", "placement_mode_requires_plan", "plan_grant_already_active", "plan_grant_already_revoked", "platform_tenant_immutable_client", "policy_exceeds_grantor", "principal_space_mismatch", "provider_error", "provider_job_failed", "provider_job_timeout", "provider_runtime_feature_unsupported", "provider_site_id_required", "proxy_upstream_denied", "proxy_upstream_unresolved", "publish_archive_compression_ratio_exceeded", "publish_archive_expanded_size_exceeded", "publish_archive_file_count_exceeded", "publish_archive_too_large", "publish_base_changed", "publish_config_unsupported", "publish_failed", "publish_file_missing", "publish_setup_failed", "publish_upload_failed", "publish_verification_failed", "queue_not_found", "rate_limited", "registration_expired", "registration_expiring", "routing_rules_over_plan", "runtime_action_forbidden", "runtime_api_not_found", "runtime_callback_forbidden", "runtime_engine_zip_missing", "runtime_hostname_unassigned", "runtime_instance_mismatch", "runtime_jti_missing", "runtime_jti_replayed", "runtime_jwks_key_missing", "runtime_logs_unavailable", "runtime_management_unavailable", "runtime_not_provisioned", "runtime_operation_missing", "runtime_scope_forbidden", "runtime_token_bad_signature", "runtime_token_expired", "runtime_token_invalid", "runtime_unauthorized", "runtime_upload_operation_not_supported", "runtime_upload_required", "scan_pending", "secret_variable_in_template", "site_already_deleted", "site_capacity_exceeded", "site_has_live_spaces", "site_not_static", "site_required", "site_suspended", "slow_down", "slug_invalid", "slug_reserved", "slug_unavailable", "space_already_claimed", "space_claim_unavailable", "space_claimed_credential_available", "space_disabled", "space_expired", "space_has_active_version", "space_hostname_identity_missing", "space_import_archive_invalid", "space_import_archive_too_large", "space_import_config_only_archive", "space_import_runtime_schema_unsupported", "space_moving", "space_no_live_version", "space_not_disabled", "space_not_restorable", "space_ref_ambiguous", "space_ref_required", "space_transferring", "space_unclaimed", "ssl_renewal_blocked", "static_control_file_not_supported", "static_runtime_control_path_not_supported", "static_runtime_required", "storage_bucket_unavailable", "storage_quota_exceeded", "storage_usage_unavailable", "stripe_error", "superseded_by_publish", "takeover_notice_window", "team_member_quota_exceeded", "team_ref_required", "team_required", "team_slug_conflict", "template_file_too_large", "template_not_in_version", "template_variable_unresolved", "tenant_id_mismatch", "tenant_not_found", "tenant_not_granted", "tenant_past_due", "tenant_selection_required", "tenant_suspended", "theme_value_invalid", "transfer_cross_tenant_unsupported", "transfer_move_failed", "transfer_not_cancelable", "transfer_push_failed", "transfer_source_changed", "transfer_target_same_as_source", "transfer_verify_failed", "unauthorized", "unsupported_publish_media_type", "upload_hash_mismatch", "upload_path_not_canonical", "upload_path_not_declared", "upload_session_cap_exceeded", "upload_size_mismatch", "user_banned", "validation_error", "variable_cascade_failed", "verification_required", "version_already_live", "version_artifact_not_found", "version_busy", "version_canceled", "version_closed", "version_expired", "version_failed", "version_file_count_exceeded", "version_file_not_found", "version_file_too_large", "version_files_missing", "version_in_use", "version_live", "version_no_publishable_files", "version_not_finalizable", "version_not_found", "version_not_prepared", "version_not_promotable", "version_not_ready", "version_quota_exceeded", "version_total_bytes_exceeded", "webhook_delivery_budget_exceeded", "whois_unavailable", "wp_cloud_anonymous_pool_required", "wp_cloud_assignment_kind_mismatch", "wp_cloud_assignment_space_mismatch", "wp_cloud_assignment_team_mismatch", "wp_cloud_client_in_use", "wp_cloud_client_not_found", "wp_cloud_site_still_assigned", "wp_cloud_team_shared_site_exists", "wp_cloud_webhook_secret_not_configured", "zero_activating", "zero_ai_unavailable", "zero_artifact_abi_mismatch", "zero_artifact_invalid", "zero_artifact_malformed", "zero_artifact_missing", "zero_artifact_path_invalid", "zero_artifact_unreadable", "zero_artifact_untrusted", "zero_auth_unavailable", "zero_blob_key_invalid", "zero_blob_store_full", "zero_blob_too_large", "zero_blob_value_invalid", "zero_bootstrap_encode_failed", "zero_bytecode_hash_mismatch", "zero_bytecode_invalid", "zero_bytecode_path_invalid", "zero_bytecode_unreadable", "zero_capabilities_encode_failed", "zero_client_bundle_not_loaded", "zero_db_connect_failed", "zero_db_execute_failed", "zero_db_host_install_failed", "zero_db_operation_invalid", "zero_db_operation_too_large", "zero_db_param_invalid", "zero_db_query_failed", "zero_db_row_invalid", "zero_db_sql_invalid", "zero_db_too_many_params", "zero_db_transaction_commit_failed", "zero_db_transaction_invalid", "zero_db_transaction_start_failed", "zero_db_url_invalid", "zero_db_url_missing", "zero_dev_endpoint_failed", "zero_dump_query_invalid", "zero_endpoint_compile_failed", "zero_endpoint_conflict", "zero_endpoint_duplicate", "zero_endpoint_id_duplicate", "zero_endpoint_index_invalid", "zero_endpoint_index_malformed", "zero_endpoint_index_path_invalid", "zero_endpoint_index_unreadable", "zero_endpoint_invalid", "zero_endpoint_mismatch", "zero_endpoint_not_found", "zero_endpoints_invalid", "zero_endpoints_too_many", "zero_envelope_encode_failed", "zero_js_context_init_failed", "zero_js_execution_failed", "zero_js_execution_timeout", "zero_js_globals_failed", "zero_js_response_malformed", "zero_js_runtime_init_failed", "zero_log_query_invalid", "zero_lookup_invalid", "zero_method_not_allowed", "zero_migration_failed", "zero_query_name_missing", "zero_realtime_forbidden", "zero_realtime_message_invalid", "zero_realtime_operation_unsupported", "zero_realtime_query_invalid", "zero_realtime_space_required", "zero_realtime_unavailable", "zero_realtime_websocket_forbidden", "zero_replay_failed", "zero_replay_query_invalid", "zero_replay_unavailable", "zero_request_body_too_large", "zero_requires_dedicated_plan", "zero_response_too_large", "zero_routes_invalid", "zero_run_compile_failed", "zero_run_duplicate", "zero_run_invalid", "zero_run_operation_unsupported", "zero_runner_envelope_invalid", "zero_runner_failed", "zero_runner_invalid_body", "zero_runner_invalid_response", "zero_runner_invalid_status", "zero_runner_protocol_unsupported", "zero_runner_response_encode_failed", "zero_runner_stdin_invalid", "zero_runner_stdin_too_large", "zero_runner_unavailable", "zero_runs_invalid", "zero_runs_require_runtime_compiler", "zero_runs_too_many", "zero_shopify_unavailable", "zero_source_compile_failed", "zero_source_hash_mismatch", "zero_source_invalid", "zero_source_path_invalid", "zero_source_unreadable"];
5
+ export declare const ERROR_CODES: readonly ["abuse_report_invalid_transition", "abuse_report_rate_limited", "abuse_takedown", "access_denied", "account_suspended", "agent_handoff_declined", "agent_handoff_limit_reached", "ambiguous_space_slug", "anonymous_expired", "anonymous_pool_unavailable", "anonymous_publish_rate_limited", "anonymous_space_limit_reached", "api_key_scope_underivable", "archive_body_required", "archive_too_large", "auth_code_required", "authorization_pending", "billing_receipt_invalid", "billing_receipt_not_bound_to_team", "billing_store_not_configured", "billing_subscription_conflict", "billing_unknown_product", "build_command_missing", "build_execution_unavailable", "build_failed", "build_install_failed", "build_no_index_html", "build_not_created", "build_oom", "build_output_dir_missing", "build_timeout", "cache_purge_domain_required", "cache_purge_path_required", "channel_name_reserved", "channel_pointer_moved", "channel_unsupported", "claim_blocked_takedown", "claim_target_not_found", "claimed_space_quota_exceeded", "cli_upgrade_required", "comment_screenshot_rate_limited", "config_file_too_large", "config_invalid", "config_meta_too_long", "config_templates_over_limit", "continuation_unavailable", "continuation_used", "credential_expired", "credential_not_yet_valid", "credential_retired", "credential_revoked", "csam_blocked", "csam_policy_floor", "data_location_immutable", "datacenters_unavailable", "device_authorization_failed", "device_verification_rate_limited", "dns_export_required", "dns_field_conflict", "dns_field_not_applicable", "dns_import_partial_visibility", "dns_provider_auth_expired", "dns_provider_batch_unsupported", "dns_provider_change_pending", "dns_provider_conflict", "dns_provider_connection_in_use", "dns_provider_connection_unavailable", "dns_provider_controlled_desired_state", "dns_provider_credentials_expired", "dns_provider_feature_descriptors", "dns_provider_feature_unavailable", "dns_provider_field_unsupported", "dns_provider_future_authoritative_backend", "dns_provider_missing_permission", "dns_provider_not_connected", "dns_provider_operation_failed", "dns_provider_permission_denied", "dns_provider_rate_limited", "dns_provider_replace_all_requires_fresh_plan", "dns_provider_replace_all_write_strategy", "dns_provider_snapshot_stale", "dns_provider_snapshot_unavailable", "dns_provider_temporarily_unavailable", "dns_provider_timeout", "dns_provider_validation_failed", "dns_provider_workflow_templates", "dns_provider_zone_not_found", "dns_record_conflicts_with_managed", "dns_record_managed", "dns_record_not_found", "domain_already_exists", "domain_bound", "domain_facet_already_managed", "domain_facet_external", "domain_facet_not_applicable", "domain_hostname_site_mismatch", "domain_in_use", "domain_lookup_rate_limited", "domain_not_bound", "domain_quota_exceeded", "domain_registration_active", "domain_registration_not_renewable", "domain_reserved_suffix", "domain_transfer_active", "domain_wildcard_label", "domain_wildcard_not_enabled", "download_required", "duplicate_version_path", "enforcement_policy_overlap", "event_payload_too_large", "event_rate_limited", "expired_token", "export_archive_not_ready", "export_version_not_found", "feature_unavailable", "files_mode_does_not_support_spa", "forbidden", "free_external_proxy_disabled", "free_headers_basic_auth_disabled", "idempotency_conflict_in_progress", "idempotency_key_reused", "immutable_version_requires_login", "import_archive_not_uploaded", "import_not_cancelable", "import_not_waiting_for_archive", "incumbent_controls_dns", "inject_invalid", "inject_snippet_too_large", "internal_error", "invalid_claim_token", "invalid_continuation_token", "invalid_data_location", "invalid_device_code", "invalid_domain", "invalid_domain_name", "invalid_file_path", "invalid_grant", "invalid_idempotency_key", "invalid_publish_archive", "invalid_publish_path", "invalid_publish_payload", "invalid_request", "invalid_runtime_event", "invalid_space", "invalid_space_mode", "invalid_user_code", "invalid_version_path", "invalid_webhook_events", "invalid_webhook_payload", "invalid_webhook_signature", "invalid_webhook_url", "invalid_zero_realtime_event", "invalid_zero_realtime_replay_query", "invitation_already_exists", "invitation_email_mismatch", "invitation_expired", "invitation_not_pending", "ip_blocked", "job_not_found", "job_not_promotable", "job_not_removable", "job_not_retryable", "last_owner", "log_retention_clamped", "lost_domain_control", "malware_detected", "managed_domain_protected", "manifest_body_too_large", "manifest_duplicate_path", "manifest_too_many_files", "mcp_acted_for_team_deleted", "member_already_exists", "missing_route_param", "move_target_capacity_lost", "nameserver_delegation_required", "nameserver_divergence", "noop_publish", "not_enrolled", "not_found", "path_case_collision", "path_too_long", "placement_invalid_burstable", "placement_mode_requires_plan", "plan_grant_already_active", "plan_grant_already_revoked", "platform_tenant_immutable_client", "policy_exceeds_grantor", "principal_space_mismatch", "provider_error", "provider_job_failed", "provider_job_timeout", "provider_runtime_feature_unsupported", "provider_site_id_required", "proxy_upstream_denied", "proxy_upstream_unresolved", "publish_archive_compression_ratio_exceeded", "publish_archive_expanded_size_exceeded", "publish_archive_file_count_exceeded", "publish_archive_too_large", "publish_base_changed", "publish_bytes_missing", "publish_config_unsupported", "publish_failed", "publish_file_missing", "publish_hash_mismatch", "publish_inline_limit_exceeded", "publish_not_cancelable", "publish_path_collision", "publish_path_invalid", "publish_setup_failed", "publish_snapshot_empty", "publish_upload_failed", "publish_verification_failed", "queue_not_found", "rate_limited", "registration_expired", "registration_expiring", "routing_rules_over_plan", "runtime_action_forbidden", "runtime_api_not_found", "runtime_callback_forbidden", "runtime_engine_zip_missing", "runtime_hostname_unassigned", "runtime_instance_mismatch", "runtime_jti_missing", "runtime_jti_replayed", "runtime_jwks_key_missing", "runtime_logs_unavailable", "runtime_management_unavailable", "runtime_not_provisioned", "runtime_operation_missing", "runtime_scope_forbidden", "runtime_token_bad_signature", "runtime_token_expired", "runtime_token_invalid", "runtime_unauthorized", "runtime_upload_operation_not_supported", "runtime_upload_required", "scan_pending", "secret_variable_in_template", "site_already_deleted", "site_capacity_exceeded", "site_has_live_spaces", "site_not_static", "site_required", "site_suspended", "slow_down", "slug_invalid", "slug_reserved", "slug_unavailable", "space_already_claimed", "space_claim_unavailable", "space_claimed_credential_available", "space_disabled", "space_expired", "space_has_active_publish", "space_has_active_version", "space_hostname_identity_missing", "space_import_archive_invalid", "space_import_archive_too_large", "space_import_config_only_archive", "space_import_runtime_schema_unsupported", "space_moving", "space_no_live_version", "space_not_disabled", "space_not_restorable", "space_ref_ambiguous", "space_ref_required", "space_transferring", "space_unclaimed", "ssl_renewal_blocked", "static_control_file_not_supported", "static_runtime_control_path_not_supported", "static_runtime_required", "storage_bucket_unavailable", "storage_quota_exceeded", "storage_usage_unavailable", "stripe_error", "superseded_by_publish", "takeover_notice_window", "team_member_quota_exceeded", "team_ref_required", "team_required", "team_slug_conflict", "template_file_too_large", "template_not_in_version", "template_variable_unresolved", "tenant_id_mismatch", "tenant_not_found", "tenant_not_granted", "tenant_past_due", "tenant_selection_required", "tenant_suspended", "theme_value_invalid", "transfer_cross_tenant_unsupported", "transfer_move_failed", "transfer_not_cancelable", "transfer_push_failed", "transfer_source_changed", "transfer_target_same_as_source", "transfer_verify_failed", "unauthorized", "unsupported_publish_media_type", "upload_hash_mismatch", "upload_path_not_canonical", "upload_path_not_declared", "upload_session_cap_exceeded", "upload_size_mismatch", "user_banned", "validation_error", "variable_cascade_failed", "verification_required", "version_already_live", "version_artifact_not_found", "version_busy", "version_canceled", "version_closed", "version_expired", "version_failed", "version_file_count_exceeded", "version_file_not_found", "version_file_too_large", "version_files_missing", "version_in_use", "version_live", "version_no_publishable_files", "version_not_finalizable", "version_not_found", "version_not_prepared", "version_not_promotable", "version_not_ready", "version_quota_exceeded", "version_total_bytes_exceeded", "webhook_delivery_budget_exceeded", "whois_unavailable", "wp_cloud_anonymous_pool_required", "wp_cloud_assignment_kind_mismatch", "wp_cloud_assignment_space_mismatch", "wp_cloud_assignment_team_mismatch", "wp_cloud_client_in_use", "wp_cloud_client_not_found", "wp_cloud_site_still_assigned", "wp_cloud_team_shared_site_exists", "wp_cloud_webhook_secret_not_configured", "zero_activating", "zero_ai_unavailable", "zero_artifact_abi_mismatch", "zero_artifact_invalid", "zero_artifact_malformed", "zero_artifact_missing", "zero_artifact_path_invalid", "zero_artifact_unreadable", "zero_artifact_untrusted", "zero_auth_unavailable", "zero_blob_key_invalid", "zero_blob_store_full", "zero_blob_too_large", "zero_blob_value_invalid", "zero_bootstrap_encode_failed", "zero_bytecode_hash_mismatch", "zero_bytecode_invalid", "zero_bytecode_path_invalid", "zero_bytecode_unreadable", "zero_capabilities_encode_failed", "zero_client_bundle_not_loaded", "zero_db_connect_failed", "zero_db_execute_failed", "zero_db_host_install_failed", "zero_db_operation_invalid", "zero_db_operation_too_large", "zero_db_param_invalid", "zero_db_query_failed", "zero_db_row_invalid", "zero_db_sql_invalid", "zero_db_too_many_params", "zero_db_transaction_commit_failed", "zero_db_transaction_invalid", "zero_db_transaction_start_failed", "zero_db_url_invalid", "zero_db_url_missing", "zero_dev_endpoint_failed", "zero_dump_query_invalid", "zero_endpoint_compile_failed", "zero_endpoint_conflict", "zero_endpoint_duplicate", "zero_endpoint_id_duplicate", "zero_endpoint_index_invalid", "zero_endpoint_index_malformed", "zero_endpoint_index_path_invalid", "zero_endpoint_index_unreadable", "zero_endpoint_invalid", "zero_endpoint_mismatch", "zero_endpoint_not_found", "zero_endpoints_invalid", "zero_endpoints_too_many", "zero_envelope_encode_failed", "zero_js_context_init_failed", "zero_js_execution_failed", "zero_js_execution_timeout", "zero_js_globals_failed", "zero_js_response_malformed", "zero_js_runtime_init_failed", "zero_log_query_invalid", "zero_lookup_invalid", "zero_method_not_allowed", "zero_migration_failed", "zero_query_name_missing", "zero_realtime_forbidden", "zero_realtime_message_invalid", "zero_realtime_operation_unsupported", "zero_realtime_query_invalid", "zero_realtime_space_required", "zero_realtime_unavailable", "zero_realtime_websocket_forbidden", "zero_replay_failed", "zero_replay_query_invalid", "zero_replay_unavailable", "zero_request_body_too_large", "zero_requires_dedicated_plan", "zero_response_too_large", "zero_routes_invalid", "zero_run_compile_failed", "zero_run_duplicate", "zero_run_invalid", "zero_run_operation_unsupported", "zero_runner_envelope_invalid", "zero_runner_failed", "zero_runner_invalid_body", "zero_runner_invalid_response", "zero_runner_invalid_status", "zero_runner_protocol_unsupported", "zero_runner_response_encode_failed", "zero_runner_stdin_invalid", "zero_runner_stdin_too_large", "zero_runner_unavailable", "zero_runs_invalid", "zero_runs_require_runtime_compiler", "zero_runs_too_many", "zero_shopify_unavailable", "zero_source_compile_failed", "zero_source_hash_mismatch", "zero_source_invalid", "zero_source_path_invalid", "zero_source_unreadable"];
6
6
  export type ErrorCode = (typeof ERROR_CODES)[number];
7
7
  export declare function isErrorCode(value: string): value is ErrorCode;
8
8
  /**
@@ -20,6 +20,8 @@ export const ERROR_CODES = [
20
20
  "abuse_takedown",
21
21
  "access_denied",
22
22
  "account_suspended",
23
+ "agent_handoff_declined",
24
+ "agent_handoff_limit_reached",
23
25
  "ambiguous_space_slug",
24
26
  "anonymous_expired",
25
27
  "anonymous_pool_unavailable",
@@ -53,6 +55,7 @@ export const ERROR_CODES = [
53
55
  "claim_target_not_found",
54
56
  "claimed_space_quota_exceeded",
55
57
  "cli_upgrade_required",
58
+ "comment_screenshot_rate_limited",
56
59
  "config_file_too_large",
57
60
  "config_invalid",
58
61
  "config_meta_too_long",
@@ -149,6 +152,7 @@ export const ERROR_CODES = [
149
152
  "invalid_domain_name",
150
153
  "invalid_file_path",
151
154
  "invalid_grant",
155
+ "invalid_idempotency_key",
152
156
  "invalid_publish_archive",
153
157
  "invalid_publish_path",
154
158
  "invalid_publish_payload",
@@ -181,6 +185,7 @@ export const ERROR_CODES = [
181
185
  "manifest_body_too_large",
182
186
  "manifest_duplicate_path",
183
187
  "manifest_too_many_files",
188
+ "mcp_acted_for_team_deleted",
184
189
  "member_already_exists",
185
190
  "missing_route_param",
186
191
  "move_target_capacity_lost",
@@ -210,10 +215,17 @@ export const ERROR_CODES = [
210
215
  "publish_archive_file_count_exceeded",
211
216
  "publish_archive_too_large",
212
217
  "publish_base_changed",
218
+ "publish_bytes_missing",
213
219
  "publish_config_unsupported",
214
220
  "publish_failed",
215
221
  "publish_file_missing",
222
+ "publish_hash_mismatch",
223
+ "publish_inline_limit_exceeded",
224
+ "publish_not_cancelable",
225
+ "publish_path_collision",
226
+ "publish_path_invalid",
216
227
  "publish_setup_failed",
228
+ "publish_snapshot_empty",
217
229
  "publish_upload_failed",
218
230
  "publish_verification_failed",
219
231
  "queue_not_found",
@@ -258,6 +270,7 @@ export const ERROR_CODES = [
258
270
  "space_claimed_credential_available",
259
271
  "space_disabled",
260
272
  "space_expired",
273
+ "space_has_active_publish",
261
274
  "space_has_active_version",
262
275
  "space_hostname_identity_missing",
263
276
  "space_import_archive_invalid",
@@ -9,7 +9,7 @@ export declare const planCodeSchema: z.ZodEnum<{
9
9
  }>;
10
10
  export type PlanCode = z.infer<typeof planCodeSchema>;
11
11
  export declare const DEFAULT_PLAN_CODE: PlanCode;
12
- export declare const FEATURE_KEYS: readonly ["plans.paid.available", "anonymous.publishing", "beta.enrollment_gate", "domains.search", "domains.registration", "domains.dns_management", "domains.wpcom_dns", "domains.domain_connect", "domains.proxy_bindings", "annotations.preview_loader", "annotations.comments", "annotations.anonymous_reviewers", "annotations.cli", "annotations.notices", "annotations.published_comments", "sites.dedicated_runtime", "shelf", "tags", "zero", "access.share_links", "access.invites", "access.firewall_card", "access.sso_connections", "access.byo_issuers", "access.views_panel", "pages.white_label"];
12
+ export declare const FEATURE_KEYS: readonly ["plans.paid.available", "anonymous.publishing", "beta.enrollment_gate", "domains.search", "domains.registration", "domains.dns_management", "domains.wpcom_dns", "domains.domain_connect", "domains.proxy_bindings", "collab.preview_loader", "collab.comments", "collab.anonymous_commenters", "collab.cli", "collab.notices", "collab.published_comments", "collab.drawing", "sites.dedicated_runtime", "shelf", "tags", "zero", "access.share_links", "access.invites", "access.firewall_card", "access.sso_connections", "access.byo_issuers", "access.views_panel"];
13
13
  export declare const featureKeySchema: z.ZodEnum<{
14
14
  zero: "zero";
15
15
  "plans.paid.available": "plans.paid.available";
@@ -21,12 +21,13 @@ export declare const featureKeySchema: z.ZodEnum<{
21
21
  "domains.wpcom_dns": "domains.wpcom_dns";
22
22
  "domains.domain_connect": "domains.domain_connect";
23
23
  "domains.proxy_bindings": "domains.proxy_bindings";
24
- "annotations.preview_loader": "annotations.preview_loader";
25
- "annotations.comments": "annotations.comments";
26
- "annotations.anonymous_reviewers": "annotations.anonymous_reviewers";
27
- "annotations.cli": "annotations.cli";
28
- "annotations.notices": "annotations.notices";
29
- "annotations.published_comments": "annotations.published_comments";
24
+ "collab.preview_loader": "collab.preview_loader";
25
+ "collab.comments": "collab.comments";
26
+ "collab.anonymous_commenters": "collab.anonymous_commenters";
27
+ "collab.cli": "collab.cli";
28
+ "collab.notices": "collab.notices";
29
+ "collab.published_comments": "collab.published_comments";
30
+ "collab.drawing": "collab.drawing";
30
31
  "sites.dedicated_runtime": "sites.dedicated_runtime";
31
32
  shelf: "shelf";
32
33
  tags: "tags";
@@ -36,7 +37,6 @@ export declare const featureKeySchema: z.ZodEnum<{
36
37
  "access.sso_connections": "access.sso_connections";
37
38
  "access.byo_issuers": "access.byo_issuers";
38
39
  "access.views_panel": "access.views_panel";
39
- "pages.white_label": "pages.white_label";
40
40
  }>;
41
41
  export type FeatureKey = z.infer<typeof featureKeySchema>;
42
42
  export declare const FEATURE_OVERRIDE_STATES: readonly ["enabled", "disabled", "kill_switch"];
@@ -112,9 +112,8 @@ export declare const teamEntitlementsSchema: z.ZodObject<{
112
112
  headersBasicAuth: z.ZodBoolean;
113
113
  externalProxy: z.ZodBoolean;
114
114
  dedicatedRuntime: z.ZodBoolean;
115
- pagesWhiteLabel: z.ZodBoolean;
116
- pagesCustomHtml: z.ZodBoolean;
117
- pagesAdvancedTheming: z.ZodBoolean;
115
+ pagesTemplates: z.ZodBoolean;
116
+ hideSpacefastBranding: z.ZodBoolean;
118
117
  runtimePhpWorkers: z.ZodNumber;
119
118
  analyticsHourlyGranularity: z.ZodBoolean;
120
119
  versionDiagnosticsIncluded: z.ZodBoolean;
@@ -131,9 +130,8 @@ export declare const teamEntitlementsResponseSchema: z.ZodObject<{
131
130
  headersBasicAuth: z.ZodBoolean;
132
131
  externalProxy: z.ZodBoolean;
133
132
  dedicatedRuntime: z.ZodBoolean;
134
- pagesWhiteLabel: z.ZodBoolean;
135
- pagesCustomHtml: z.ZodBoolean;
136
- pagesAdvancedTheming: z.ZodBoolean;
133
+ pagesTemplates: z.ZodBoolean;
134
+ hideSpacefastBranding: z.ZodBoolean;
137
135
  runtimePhpWorkers: z.ZodNumber;
138
136
  analyticsHourlyGranularity: z.ZodBoolean;
139
137
  versionDiagnosticsIncluded: z.ZodBoolean;
@@ -169,9 +167,10 @@ export type PlanDefinition = {
169
167
  headersBasicAuth: boolean;
170
168
  externalProxy: boolean;
171
169
  dedicatedRuntime: boolean;
172
- pagesWhiteLabel: boolean;
173
- pagesCustomHtml: boolean;
174
- pagesAdvancedTheming: boolean;
170
+ /** Paid full-page takeover templates under _pages/. */
171
+ pagesTemplates: boolean;
172
+ /** Paid removal of the tasteful Spacefast badge from designed defaults. */
173
+ hideSpacefastBranding: boolean;
175
174
  runtimePhpWorkers: number;
176
175
  analyticsHourlyGranularity: boolean;
177
176
  };
@@ -204,12 +203,13 @@ export declare const FeatureStateSchema: z.ZodObject<{
204
203
  "domains.wpcom_dns": "domains.wpcom_dns";
205
204
  "domains.domain_connect": "domains.domain_connect";
206
205
  "domains.proxy_bindings": "domains.proxy_bindings";
207
- "annotations.preview_loader": "annotations.preview_loader";
208
- "annotations.comments": "annotations.comments";
209
- "annotations.anonymous_reviewers": "annotations.anonymous_reviewers";
210
- "annotations.cli": "annotations.cli";
211
- "annotations.notices": "annotations.notices";
212
- "annotations.published_comments": "annotations.published_comments";
206
+ "collab.preview_loader": "collab.preview_loader";
207
+ "collab.comments": "collab.comments";
208
+ "collab.anonymous_commenters": "collab.anonymous_commenters";
209
+ "collab.cli": "collab.cli";
210
+ "collab.notices": "collab.notices";
211
+ "collab.published_comments": "collab.published_comments";
212
+ "collab.drawing": "collab.drawing";
213
213
  "sites.dedicated_runtime": "sites.dedicated_runtime";
214
214
  shelf: "shelf";
215
215
  tags: "tags";
@@ -219,7 +219,6 @@ export declare const FeatureStateSchema: z.ZodObject<{
219
219
  "access.sso_connections": "access.sso_connections";
220
220
  "access.byo_issuers": "access.byo_issuers";
221
221
  "access.views_panel": "access.views_panel";
222
- "pages.white_label": "pages.white_label";
223
222
  }>;
224
223
  enabled: z.ZodBoolean;
225
224
  source: z.ZodEnum<{
@@ -248,12 +247,13 @@ export declare const FeatureStateResponseSchema: z.ZodObject<{
248
247
  "domains.wpcom_dns": "domains.wpcom_dns";
249
248
  "domains.domain_connect": "domains.domain_connect";
250
249
  "domains.proxy_bindings": "domains.proxy_bindings";
251
- "annotations.preview_loader": "annotations.preview_loader";
252
- "annotations.comments": "annotations.comments";
253
- "annotations.anonymous_reviewers": "annotations.anonymous_reviewers";
254
- "annotations.cli": "annotations.cli";
255
- "annotations.notices": "annotations.notices";
256
- "annotations.published_comments": "annotations.published_comments";
250
+ "collab.preview_loader": "collab.preview_loader";
251
+ "collab.comments": "collab.comments";
252
+ "collab.anonymous_commenters": "collab.anonymous_commenters";
253
+ "collab.cli": "collab.cli";
254
+ "collab.notices": "collab.notices";
255
+ "collab.published_comments": "collab.published_comments";
256
+ "collab.drawing": "collab.drawing";
257
257
  "sites.dedicated_runtime": "sites.dedicated_runtime";
258
258
  shelf: "shelf";
259
259
  tags: "tags";
@@ -263,7 +263,6 @@ export declare const FeatureStateResponseSchema: z.ZodObject<{
263
263
  "access.sso_connections": "access.sso_connections";
264
264
  "access.byo_issuers": "access.byo_issuers";
265
265
  "access.views_panel": "access.views_panel";
266
- "pages.white_label": "pages.white_label";
267
266
  }>, z.ZodObject<{
268
267
  key: z.ZodEnum<{
269
268
  zero: "zero";
@@ -276,12 +275,13 @@ export declare const FeatureStateResponseSchema: z.ZodObject<{
276
275
  "domains.wpcom_dns": "domains.wpcom_dns";
277
276
  "domains.domain_connect": "domains.domain_connect";
278
277
  "domains.proxy_bindings": "domains.proxy_bindings";
279
- "annotations.preview_loader": "annotations.preview_loader";
280
- "annotations.comments": "annotations.comments";
281
- "annotations.anonymous_reviewers": "annotations.anonymous_reviewers";
282
- "annotations.cli": "annotations.cli";
283
- "annotations.notices": "annotations.notices";
284
- "annotations.published_comments": "annotations.published_comments";
278
+ "collab.preview_loader": "collab.preview_loader";
279
+ "collab.comments": "collab.comments";
280
+ "collab.anonymous_commenters": "collab.anonymous_commenters";
281
+ "collab.cli": "collab.cli";
282
+ "collab.notices": "collab.notices";
283
+ "collab.published_comments": "collab.published_comments";
284
+ "collab.drawing": "collab.drawing";
285
285
  "sites.dedicated_runtime": "sites.dedicated_runtime";
286
286
  shelf: "shelf";
287
287
  tags: "tags";
@@ -291,7 +291,6 @@ export declare const FeatureStateResponseSchema: z.ZodObject<{
291
291
  "access.sso_connections": "access.sso_connections";
292
292
  "access.byo_issuers": "access.byo_issuers";
293
293
  "access.views_panel": "access.views_panel";
294
- "pages.white_label": "pages.white_label";
295
294
  }>;
296
295
  enabled: z.ZodBoolean;
297
296
  source: z.ZodEnum<{