From ceb668990bd3671e1a73e49dcb6c24d178e071c1 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 14 Sep 2026 03:44:16 +0000 Subject: [PATCH 1/4] fix(spec): reachability roots include the unregistered kind schemas MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `computeSurfaceReachability()` in the authorable-surface deletion gate built its root set from `listMetadataTypeSchemaTypes()`, which per #6245 deliberately does not enumerate `UNREGISTERED_KIND_SCHEMAS`. `connector` lives there, so the BFS never started from it and `integration/DataSyncConfig` — two hops away through `syncConfig` — read `null`: check (c) proof 2 waived a bare baseline deletion for a def `stack.connectors[]` and `PUT /api/v1/meta/connector/:name` really parse. The gate now enumerates its own reachability root union. #6245's guarantee is untouched: `listMetadataTypeSchemaTypes()` still does not name the unregistered kinds, and being read here grants none of the KIND obligations it withholds. Claude-Session: https://claude.ai/code/session_014DBGjJFyndTj766aReCL2g Co-authored-by: Claude --- packages/spec/scripts/build-schemas.ts | 60 ++++++++++++++++++++++++-- 1 file changed, 56 insertions(+), 4 deletions(-) diff --git a/packages/spec/scripts/build-schemas.ts b/packages/spec/scripts/build-schemas.ts index 90466d3694c..a6915166494 100644 --- a/packages/spec/scripts/build-schemas.ts +++ b/packages/spec/scripts/build-schemas.ts @@ -85,6 +85,7 @@ import { RETIRED_DEFS_BY_MAJOR, RETIRED_KEYS_BY_MAJOR } from '../src/migrations/ import { getMetadataTypeSchema, listMetadataTypeSchemaTypes, + listUnregisteredKindSchemaTypes, } from '../src/kernel/metadata-type-schemas'; import * as AI from '../src/ai'; import * as API from '../src/api'; @@ -1142,11 +1143,61 @@ interface SurfaceReachability { reachableVia(defKey: string): 'root-graph' | 'derived-clone' | null; } +/** + * The type names this gate starts its BFS from — deliberately NOT the same set + * as `listMetadataTypeSchemaTypes()`, and the difference is the whole of #17356. + * + * Two different questions wear the same words here, and conflating them produced + * a false "unreachable" in the tree: + * + * - **"is this a REGISTERED metadata type?"** — `listMetadataTypeSchemaTypes()`, + * which unions BUILTIN_METADATA_TYPE_SCHEMAS with the + * EXTRA_METADATA_TYPE_SCHEMAS overlay and, per **#6245**, pointedly does not + * enumerate UNREGISTERED_KIND_SCHEMAS: enrolling those entries there "would + * claim a status this change is careful not to grant" (a `MetadataTypeSchema` + * enum member, a DEFAULT_METADATA_TYPE_REGISTRY entry, a create seed, a place + * in the #4001 campaign count). That function answers its own question + * correctly and this file does not touch it. + * - **"is there an AUTHOR who could be authoring against this def?"** — the only + * question a REACHABILITY root set is asking, because the sole consequence of + * `reachableVia() === null` is waiving a tombstone on the grounds that nobody + * can receive the prescription. For THAT question the unregistered kinds are + * authored documents too: `PUT /api/v1/meta/connector/:name` and a + * `defineStack({ connectors: [...] })` manifest both parse a metadata document + * against `UNREGISTERED_KIND_SCHEMAS['connector']` (#6245 bound them there for + * exactly that reason), and `getMetadataTypeSchema()` resolves them as its + * third fallback. + * + * Measured on #17356: with the registered set alone the BFS starts from 26 roots, + * closes over 5420 nodes, and misses `integration/DataSyncConfig` — two hops from + * the `connector` root, through `syncConfig` unwrapped once through `optional` to + * the very instance the module exports. A bare deletion of one of its baseline + * lines was therefore waived by check (c) proof 2 as "over-collection, never parsed + * against a metadata document", while `stack.connectors[]` parses it on every boot. + * + * ⛔ So do NOT "simplify" these two back into one call. They differ on purpose, in + * the direction #6245 fixed and the direction #4650's docblock promises: one shared + * entry marks a def reachable, because a false "reachable" demands a tombstone too + * many while a false "unreachable" would waive one silently. + * + * `listUnregisteredKindSchemaTypes()` exists (#6931) so a check can ENUMERATE that + * map and for nothing else, and being listed by it grants nothing — which is the + * whole reason it, and not a new kind registration, is what this gate reads. + */ +function reachabilityRootTypes(): string[] { + const types = new Set(listMetadataTypeSchemaTypes()); + for (const kind of listUnregisteredKindSchemaTypes()) types.add(kind); + return [...types].sort(); +} + /** * Reachability of every emitted def from the metadata-type roots — * BUILTIN_METADATA_TYPE_SCHEMAS plus the EXTRA_METADATA_TYPE_SCHEMAS overlay - * (both behind listMetadataTypeSchemaTypes / getMetadataTypeSchema), i.e. the - * schemas a metadata document is actually parsed against. Computed by BFS over + * plus the UNREGISTERED_KIND_SCHEMAS bindings (all three behind + * `reachabilityRootTypes()` / getMetadataTypeSchema), i.e. the schemas a metadata + * document is actually parsed against. That union is this gate's own, and the + * docblock on `reachabilityRootTypes()` above is the authority on why it is not + * `listMetadataTypeSchemaTypes()`. Computed by BFS over * THIS build's in-memory Zod graph, per the 2026-08-02 ruling on #4650 — a * static import/regex approximation misses alias imports, runtime * registration and casts, so it is deliberately not used here. @@ -1163,7 +1214,7 @@ interface SurfaceReachability { function computeSurfaceReachability(): SurfaceReachability { const rootTypes: string[] = []; const roots: z.ZodType[] = []; - for (const type of listMetadataTypeSchemaTypes()) { + for (const type of reachabilityRootTypes()) { const schema = getMetadataTypeSchema(type); if (schema) { rootTypes.push(type); @@ -2202,7 +2253,8 @@ let gitResolvedAnchor: { rev: string; keys: string[] } | null = null; if (via === null) { allowed.push( `${key} — def not reachable from the ${reachability.rootTypes.length} metadata-type roots\n` + - ` (BUILTIN_METADATA_TYPE_SCHEMAS + EXTRA_METADATA_TYPE_SCHEMAS overlay; BFS over this\n` + + ` (BUILTIN_METADATA_TYPE_SCHEMAS + EXTRA_METADATA_TYPE_SCHEMAS overlay +\n` + + ` UNREGISTERED_KIND_SCHEMAS, this gate's own union — #17356; BFS over this\n` + ` build's in-memory Zod graph): an over-collected entry, never parsed against a\n` + ` metadata document. This waives ONLY the tombstone requirement of this file — it is\n` + ` not a license to change the schema (#4650).`, From c548dea23815e4c15b520d1d31ee58216c83b199 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 14 Sep 2026 03:50:05 +0000 Subject: [PATCH 2/4] test(spec): pin both reachability directions for the unregistered-kind roots MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A def whose only root is an UNREGISTERED kind (`integration/DataSyncConfig`, two hops from `connector`) must be refused a bare baseline deletion, while a genuinely unreachable def (`api/SessionResponse`) must still carry proof 2 — both read off ONE seeded state, because either direction alone is satisfiable by a gate that is simply wrong in the other. Read twice: once with OS_EAGER_SCHEMAS=1, the way `gen:schema` runs and the only regime where `reachableVia()` can answer 'root-graph'; once without, where `lazySchema()` hands back a Proxy and the same verdict arrives through the derived-clone bridge. The fixture guard asserts #6245's boundary has not moved, which is what keeps the pin discriminating. Claude-Session: https://claude.ai/code/session_014DBGjJFyndTj766aReCL2g Co-authored-by: Claude --- .../scripts/build-schemas-check-mode.test.ts | 138 +++++++++++++++++- 1 file changed, 136 insertions(+), 2 deletions(-) diff --git a/packages/spec/scripts/build-schemas-check-mode.test.ts b/packages/spec/scripts/build-schemas-check-mode.test.ts index 8a199dad1cf..6016897ac82 100644 --- a/packages/spec/scripts/build-schemas-check-mode.test.ts +++ b/packages/spec/scripts/build-schemas-check-mode.test.ts @@ -62,6 +62,12 @@ import { RETIRED_DEFS_BY_MAJOR, RETIRED_KEYS_BY_MAJOR, } from '../src/migrations/registry'; +// Read ONLY to keep the #17356 fixture honest about which SET its root lives in +// — never to assert gate behaviour, which is read off the spawned run's output. +import { + listMetadataTypeSchemaTypes, + listUnregisteredKindSchemaTypes, +} from '../src/kernel/metadata-type-schemas'; import { AUTHORABLE_SURFACE_DIR_NAME, SCHEMA_MANIFEST_DIR_NAME, @@ -496,7 +502,7 @@ afterAll(() => { if (sharedSandbox) fs.rmSync(sandboxRoot(sharedSandbox), { recursive: true, force: true }); }); -function run(args: string[] = []): { status: number; output: string } { +function run(args: string[] = [], extraEnv: NodeJS.ProcessEnv = {}): { status: number; output: string } { const r = spawnSync(TSX, [script, ...args], { cwd: sandbox, encoding: 'utf8', @@ -505,11 +511,29 @@ function run(args: string[] = []): { status: number; output: string } { // The generator shells out to git itself (`merge-base`, `cat-file`, a // `--depth=1` fetch), so the fixture's isolation has to reach its children // too — a `GIT_DIR` inherited here would point them at another repo (#9068). - env: HERMETIC_ENV, + env: { ...HERMETIC_ENV, ...extraEnv }, }); return { status: r.status ?? -1, output: `${r.stdout ?? ''}${r.stderr ?? ''}` }; } +/** + * How `gen:schema` and `check:authorable-surface` actually run — both package + * scripts export `OS_EAGER_SCHEMAS=1`, so `lazySchema()` returns the real schema + * and every def key holds the instance the BFS walks. + * + * Left OFF by default, because it is: this file's other cases pin the gate's + * reporting and its side effects, which the flag does not touch, and turning it + * on for all of them would change a graph shape they were written against. But a + * REACHABILITY case cannot be indifferent to it. Without the flag `lazySchema()` + * hands back a Proxy, `zodByDefKey` holds the Proxy while the walk visits the + * resolved target, and a def that IS a root's own child resolves through the + * derived-clone bridge instead of by identity — 'reachable' either way, so the + * gate's verdict is the same, but it is not the closure CI computes and + * `reachableVia()` never answers 'root-graph'. #17356's acceptance is stated in + * that vocabulary, so the pin below reads both. + */ +const EAGER_SCHEMAS_ENV: NodeJS.ProcessEnv = { OS_EAGER_SCHEMAS: '1' }; + /** Seed the sandbox manifest shards from the committed set; returns the bytes. */ function seedManifest(mutate: (schemas: string[]) => string[]): string { return writeManifestShards(manifestDir, mutate([...pristine])); @@ -957,6 +981,29 @@ const DELETED_LEAF_COLLIDER = `data/Object:${DELETED_LEAF_COLLIDER_LEAF} [RETIRE * envelope no metadata document is ever parsed against (the issue's own * over-collection example). */ const DELETED_UNREACHABLE = 'api/SessionResponse:zzOverCollected4650'; +/** #17356's pin. A def whose ONLY root is an UNREGISTERED KIND — `connector`, + * bound in `UNREGISTERED_KIND_SCHEMAS` by #6245 and deliberately absent from + * `listMetadataTypeSchemaTypes()`. `integration/DataSyncConfig` sits two hops + * from that root (`connector.syncConfig`, unwrapped once through `optional`), + * and `stack.connectors[]` / `PUT /api/v1/meta/connector/:name` both parse a + * real metadata document through it. + * + * Until #17356 the gate built its roots from `listMetadataTypeSchemaTypes()` + * alone, so this def read `null` and check (c) proof 2 WAIVED a bare deletion + * of its baseline line as "over-collection, never parsed against a metadata + * document" — the false "unreachable" the #4650 docblock names as the + * dangerous direction. Measured on `main` at ca7886047b27 by deleting + * `integration/DataSyncConfig:timestampField` from both the schema and the + * baseline: `gen:schema` exit 0, with the proof-2 line printed. + * + * The prop is synthetic for the reason every fixture here is: check (c) only + * ever sees a key the build STOPPED emitting, and the def is judged by its + * DEF half (`key.slice(0, key.indexOf(':'))`), so a synthetic leaf under the + * real def runs the identical code path as the real deletion did. */ +const DELETED_VIA_UNREGISTERED_KIND_DEF = 'integration/DataSyncConfig'; +const DELETED_VIA_UNREGISTERED_KIND = `${DELETED_VIA_UNREGISTERED_KIND_DEF}:zzOnlyRootIsAnUnregisteredKind17356`; +/** The unregistered kind that def's only root lives in. */ +const UNREGISTERED_KIND_ROOT = 'connector'; /** Def the build no longer emits at all — the literal #4643 cluster. */ const DELETED_GONE_DEF = ['identity/Session:userId', 'identity/Session:token']; /** Aged-out tombstone. Since #5898 the proof is a DECLARATION, not a clause @@ -990,6 +1037,7 @@ describe('build-schemas.ts — deleted baseline lines must prove themselves (#46 DELETED_UNREGISTERED, DELETED_LEAF_COLLIDER, DELETED_UNREACHABLE, + DELETED_VIA_UNREGISTERED_KIND, ...DELETED_GONE_DEF, DELETED_AGED, DELETED_BY_RENAME, @@ -1023,6 +1071,26 @@ describe('build-schemas.ts — deleted baseline lines must prove themselves (#46 Object.values(RETIRED_KEYS_BY_MAJOR).flat(), `${DELETED_LEAF_COLLIDER} is now declared for real — the pin needs an UNdeclared key`, ).not.toContain(DELETED_LEAF_COLLIDER.replace(RETIRED_MARK, '')); + // #17356's fixture is only a pin while its def's root is still an + // UNREGISTERED kind. Both halves are loud here: enrol `connector` into the + // registered set (reversing #6245) and the test below still passes while + // asserting nothing about this gate's own root union — the exact way a pin + // goes quiet. This pair is also acceptance 4 of the card, stated where it + // fails rather than where it is believed. + expect( + listMetadataTypeSchemaTypes(), + `'${UNREGISTERED_KIND_ROOT}' is now a REGISTERED metadata type — #6245's boundary moved, ` + + `so the #17356 fixture no longer models a def rooted only in UNREGISTERED_KIND_SCHEMAS`, + ).not.toContain(UNREGISTERED_KIND_ROOT); + expect( + listUnregisteredKindSchemaTypes(), + `'${UNREGISTERED_KIND_ROOT}' left UNREGISTERED_KIND_SCHEMAS — re-pick the fixture's root`, + ).toContain(UNREGISTERED_KIND_ROOT); + expect( + keys.some((k) => k.startsWith(`${DELETED_VIA_UNREGISTERED_KIND_DEF}:`)), + `${DELETED_VIA_UNREGISTERED_KIND_DEF} is no longer emitted with authorable keys — check (c) ` + + `would route this fixture to the vanished-def proof instead; re-pick the def`, + ).toBe(true); // The manifest ratchet runs first; keep it current so every run reaches (c). seedManifest((s) => s); }); @@ -1138,6 +1206,72 @@ describe('build-schemas.ts — deleted baseline lines must prove themselves (#46 }, ); + it( + '#17356 — a def rooted only in an UNREGISTERED kind is reachable, and a genuinely unreachable one still is not', + { timeout: SPAWN_TIMEOUT_MS }, + () => { + // BOTH directions in ONE run, because either alone is satisfiable by a + // gate that is simply wrong in the other direction: "always reachable" + // passes the first assertion and destroys proof 2, "always unreachable" + // passes the second and restores the defect. + // + // The defect: `computeSurfaceReachability()` built its roots from + // `listMetadataTypeSchemaTypes()`, which per #6245 deliberately does not + // enumerate `UNREGISTERED_KIND_SCHEMAS`. `connector` lives there, so the + // BFS never started from it, `integration/DataSyncConfig` read `null`, + // and a bare deletion of one of its baseline lines was waived as + // over-collection — for a def `stack.connectors[]` parses on every boot. + // The gate now enumerates its own reachability root union; the KIND + // vocabulary `listMetadataTypeSchemaTypes()` answers is untouched (the + // `beforeAll` guard above asserts that half). + seedBase((s) => [...s, DELETED_VIA_UNREGISTERED_KIND, DELETED_UNREACHABLE].sort()); + const canonical = seedSurface((s) => s); + + const rx = (key: string, tail: string): RegExp => + new RegExp(`${key.replace(/[/$]/g, '\\$&')} — ${tail}`); + + // Read the gate as CI runs it FIRST — `gen:schema` exports + // OS_EAGER_SCHEMAS=1, and only there does the card's acceptance sentence + // ("answers a root-graph hit rather than null") have a literal reading. + const eager = run(['--check'], EAGER_SCHEMAS_ENV); + + // Direction 1 — the unregistered-kind root is a root: no waiver, and the + // verdict names the reason a reader has to act on (the entry was LIVE). + expect(eager.status).toBe(1); + expect(eager.output).toContain('authorable baseline line(s) were deleted without proof (#4650)'); + expect(eager.output).toMatch( + rx(DELETED_VIA_UNREGISTERED_KIND, 'def reachable from the metadata-type roots; .*was LIVE'), + ); + // Specifically NOT the proof-2 waiver, for this key. Asserting the absence + // is the pin: narrow the roots back to `listMetadataTypeSchemaTypes()` and + // the run exits 0 printing exactly the string below. + expect(eager.output).not.toMatch(rx(DELETED_VIA_UNREGISTERED_KIND, 'def not reachable from the')); + + // Direction 2 — conservatism is not turned around. A REST response + // envelope no metadata document is parsed against still reads unreachable + // and still carries its own proof, in this same run. + expect(eager.output).toContain('carry their own proof (#4650)'); + expect(eager.output).toMatch(rx(DELETED_UNREACHABLE, 'def not reachable from the \\d+ metadata-type roots')); + // The waiver message names all three sources of the union it computed, so + // a reader judging a waiver is not reading the pre-#17356 claim that the + // roots are the REGISTERED set. + expect(eager.output).toContain('BUILTIN_METADATA_TYPE_SCHEMAS + EXTRA_METADATA_TYPE_SCHEMAS'); + expect(eager.output).toContain('UNREGISTERED_KIND_SCHEMAS'); + + // Same two directions under the lazy-Proxy graph, where the def resolves + // through the derived-clone bridge rather than by identity. The VERDICT is + // what this gate acts on, so it is the verdict that is pinned in both + // regimes; the wording differs and is deliberately not asserted here. + const lazy = run(['--check']); + expect(lazy.status).toBe(1); + expect(lazy.output).toMatch(rx(DELETED_VIA_UNREGISTERED_KIND, 'def .*was LIVE \\(never tombstoned\\)')); + expect(lazy.output).not.toMatch(rx(DELETED_VIA_UNREGISTERED_KIND, 'def not reachable from the')); + expect(lazy.output).toMatch(rx(DELETED_UNREACHABLE, 'def not reachable from the \\d+ metadata-type roots')); + + expect(readSurface()).toBe(canonical); + }, + ); + it( 'check (a) is intact: a key the BUILD stops emitting while still recorded is fatal before (c) ever runs', { timeout: SPAWN_TIMEOUT_MS }, From dc98ee22a340cc1f8fe2bac24b7f562956b45435 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 16 Sep 2026 11:02:34 +0000 Subject: [PATCH 3/4] chore(spec): advance the committed authorable-surface anchor to b9598e9cab9d The maintainer's ruling on batch #135 item 3 (letter A) directs this PR to carry a second, separate commit that advances the committed anchor with `pnpm --filter @objectstack/spec gen:authorable-surface-base`. `authorable-surface.base.json` was anchored on 53ef05744f37 (7836 keys) and is now anchored on b9598e9cab9d (7772 keys), the merge base this branch resolves against origin/main after the preceding merge commit. Why it is owed: this branch widens the reachability root set from 26 to 30, so two keys that main had already retired through the guidance route stopped being waivable as "def not reachable from the metadata-type roots". Against the stale anchor a shallow CI checkout reads them as deletions this branch made: 2 authorable baseline line(s) were deleted without proof (#4650): - data/Metric:filters - integration/DataSyncConfig:schedule Both retirements are already on main. Advancing the anchor is the deliberate maintenance act the build's own output names; it forgives no future deletion, and a bare deletion of a reachable key is still refused on the advanced anchor. Claude-Session: https://claude.ai/code/session_01KB5PFtxuy1x3dcR5gxudx6 Co-authored-by: Claude --- packages/spec/authorable-surface.base.json | 2048 ++++++++++---------- 1 file changed, 992 insertions(+), 1056 deletions(-) diff --git a/packages/spec/authorable-surface.base.json b/packages/spec/authorable-surface.base.json index 4c329b0d3ba..ec983b479bf 100644 --- a/packages/spec/authorable-surface.base.json +++ b/packages/spec/authorable-surface.base.json @@ -1,6 +1,6 @@ { "description": "⛔ NOT the live surface — a pinned anchor for the deletion gate; the live surface is `authorable-surface/*.json`. ⛔ Never answer \"is this key authorable today?\" from this file: it is a snapshot at `baseRev`, so every key authored since is missing from it, and reading it alone yields false negatives that grow with the lag (`check:authorable-surface` prints the current delta on every run — ⛔ never hard-code that number). Ask the live ratchet instead, or read the UNION of ratchet and anchor where no key may be dropped: `scripts/docs-audit/affected-docs.mjs` is the reference consumer for that union read, and its `--self-test` pins both halves — that a key added after `baseRev` is still authorable, and that the `[RETIRED]` tombstone annotation the ratchet carries is stripped rather than matched. What this file IS, and the only question it answers: in-tree anchor for the authorable-surface deletion gate (#4650, #5235) — a verbatim copy of the keys in authorable-surface/ as they stood at `baseRev`, a commit on origin/main. A build that CAN reach origin/main anchors on the merge base instead, and re-verifies this file against `baseRev` — so a PR that edits it to hide a deletion goes red wherever the network exists. A build that CANNOT reach GitHub (image-build stages, air-gapped, fork, historical-tag reproduction) anchors here instead of failing. Written only by `gen:schema`, only from a git-resolved baseline — never from the build that is being checked. See #5235; #14612 for why the negative leads.", - "baseRev": "53ef05744f37789a3e2e2ee94325a616b706bea0", + "baseRev": "b9598e9cab9de8e35886f9c02ae01a42ce36cb96", "keys": [ "ai/AIModelConfig:maxTokens", "ai/AIModelConfig:model", @@ -60,11 +60,13 @@ "ai/BlueprintNavItem:label", "ai/BlueprintNavItem:target", "ai/BlueprintNavItem:type", + "ai/BlueprintNavItem:viewName", "ai/BlueprintObject:description", "ai/BlueprintObject:fields", "ai/BlueprintObject:label", "ai/BlueprintObject:name", "ai/BlueprintObject:nameField", + "ai/BlueprintObject:sharingModel", "ai/BlueprintSeed:object", "ai/BlueprintSeed:records", "ai/BlueprintSummaryOperations:conditions", @@ -88,7 +90,8 @@ "ai/CodeContent:type", "ai/ConversationAnalytics:assistantMessages", "ai/ConversationAnalytics:averageTokensPerMessage", - "ai/ConversationAnalytics:duration", + "ai/ConversationAnalytics:duration [RETIRED]", + "ai/ConversationAnalytics:durationSeconds", "ai/ConversationAnalytics:firstMessageAt", "ai/ConversationAnalytics:lastMessageAt", "ai/ConversationAnalytics:peakTokenUsage", @@ -500,7 +503,8 @@ "api/ApiEndpoint:_packageVersion", "api/ApiEndpoint:_provenance", "api/ApiEndpoint:authRequired", - "api/ApiEndpoint:cacheTtl", + "api/ApiEndpoint:cacheTtl [RETIRED]", + "api/ApiEndpoint:cacheTtlSeconds", "api/ApiEndpoint:description", "api/ApiEndpoint:inputMapping", "api/ApiEndpoint:method", @@ -514,10 +518,13 @@ "api/ApiEndpoint:type", "api/ApiError:category", "api/ApiError:code", + "api/ApiError:declaredCode", "api/ApiError:details", "api/ApiError:httpStatus", "api/ApiError:message", + "api/ApiError:refusal", "api/ApiError:requestId", + "api/ApiError:userMessage", "api/ApiMapping:source", "api/ApiMapping:target", "api/ApiMapping:transform", @@ -527,7 +534,9 @@ "api/ApiRoutes:auth", "api/ApiRoutes:automation", "api/ApiRoutes:data", + "api/ApiRoutes:datasources", "api/ApiRoutes:discovery", + "api/ApiRoutes:email", "api/ApiRoutes:i18n", "api/ApiRoutes:mcp", "api/ApiRoutes:metadata", @@ -569,6 +578,23 @@ "api/ApproveAiPendingActionResponse:error", "api/ApproveAiPendingActionResponse:result", "api/ApproveAiPendingActionResponse:status", + "api/AssembledInstalledPackage:enabled", + "api/AssembledInstalledPackage:errorMessage", + "api/AssembledInstalledPackage:installedAt", + "api/AssembledInstalledPackage:installedVersion", + "api/AssembledInstalledPackage:manifest", + "api/AssembledInstalledPackage:previousVersion", + "api/AssembledInstalledPackage:registeredNamespaces", + "api/AssembledInstalledPackage:settings", + "api/AssembledInstalledPackage:status", + "api/AssembledInstalledPackage:statusChangedAt", + "api/AssembledInstalledPackage:updatedAt", + "api/AssembledInstalledPackage:upgradeHistory", + "api/AuditMetaItemRequest:limit", + "api/AuditMetaItemRequest:name", + "api/AuditMetaItemRequest:organizationId", + "api/AuditMetaItemRequest:type", + "api/AuditMetaItemResponse:events", "api/AuthEndpoint:forgetPassword", "api/AuthEndpoint:getSession", "api/AuthEndpoint:resetPassword", @@ -577,9 +603,9 @@ "api/AuthEndpoint:signOut", "api/AuthEndpoint:signUpEmail", "api/AuthEndpoint:verifyEmail", - "api/AuthFeaturesConfig:magicLink", + "api/AuthFeaturesConfig:magicLink [RETIRED]", "api/AuthFeaturesConfig:organization", - "api/AuthFeaturesConfig:passkeys", + "api/AuthFeaturesConfig:passkeys [RETIRED]", "api/AuthFeaturesConfig:phoneNumber", "api/AuthFeaturesConfig:phoneNumberOtp", "api/AuthFeaturesConfig:ssoEnforced", @@ -618,7 +644,7 @@ "api/BatchDataResponse:succeeded", "api/BatchDataResponse:success", "api/BatchDataResponse:total", - "api/BatchEndpointsConfig:defaultAtomic", + "api/BatchEndpointsConfig:defaultAtomic [RETIRED]", "api/BatchEndpointsConfig:enableBatchEndpoint", "api/BatchEndpointsConfig:maxBatchSize", "api/BatchEndpointsConfig:operations", @@ -653,6 +679,7 @@ "api/BulkDataEvent:id", "api/BulkDataEvent:matched", "api/BulkDataEvent:object", + "api/BulkDataEvent:organizationId", "api/BulkDataEvent:timestamp", "api/BulkDataEvent:type", "api/BulkDataEvent:userId", @@ -682,6 +709,11 @@ "api/CheckPermissionRequest:recordId", "api/CheckPermissionResponse:allowed", "api/CheckPermissionResponse:reason", + "api/CloneDataResponse:droppedFields", + "api/CloneDataResponse:id", + "api/CloneDataResponse:object", + "api/CloneDataResponse:record", + "api/CloneDataResponse:sourceId", "api/CodeGenerationTemplate:language", "api/CodeGenerationTemplate:name", "api/CodeGenerationTemplate:template", @@ -752,6 +784,7 @@ "api/CreateImportJobRequest:dryRun", "api/CreateImportJobRequest:format", "api/CreateImportJobRequest:mapping", + "api/CreateImportJobRequest:mappingName", "api/CreateImportJobRequest:matchFields", "api/CreateImportJobRequest:nullValues", "api/CreateImportJobRequest:rows", @@ -786,14 +819,10 @@ "api/CrossObjectBatchRequest:operations", "api/CrossObjectBatchResponse:droppedFields", "api/CrossObjectBatchResponse:results", - "api/CrudEndpointPattern:description", - "api/CrudEndpointPattern:method", - "api/CrudEndpointPattern:path", - "api/CrudEndpointPattern:summary", "api/CrudEndpointsConfig:dataPrefix", - "api/CrudEndpointsConfig:objectParamStyle", + "api/CrudEndpointsConfig:objectParamStyle [RETIRED]", "api/CrudEndpointsConfig:operations", - "api/CrudEndpointsConfig:patterns", + "api/CrudEndpointsConfig:patterns [RETIRED]", "api/CursorMessage:cursor", "api/CursorMessage:messageId", "api/CursorMessage:timestamp", @@ -811,6 +840,7 @@ "api/DataEvent:changes", "api/DataEvent:id", "api/DataEvent:object", + "api/DataEvent:organizationId", "api/DataEvent:recordId", "api/DataEvent:timestamp", "api/DataEvent:type", @@ -818,7 +848,8 @@ "api/DataLoaderConfig:batchScheduleFn", "api/DataLoaderConfig:cacheEnabled", "api/DataLoaderConfig:cacheKeyFn", - "api/DataLoaderConfig:cacheTtl", + "api/DataLoaderConfig:cacheTtl [RETIRED]", + "api/DataLoaderConfig:cacheTtlSeconds", "api/DataLoaderConfig:coalesceRequests", "api/DataLoaderConfig:maxBatchSize", "api/DataLoaderConfig:maxConcurrency", @@ -846,10 +877,17 @@ "api/DeleteManyDataResponse:total", "api/DeleteManyRequest:ids", "api/DeleteManyRequest:options", + "api/DeleteMetaItemRequest:actor", + "api/DeleteMetaItemRequest:dropStorage", "api/DeleteMetaItemRequest:name", + "api/DeleteMetaItemRequest:organizationId", + "api/DeleteMetaItemRequest:parentVersion", + "api/DeleteMetaItemRequest:state", "api/DeleteMetaItemRequest:type", "api/DeleteMetaItemResponse:message", + "api/DeleteMetaItemResponse:projectionApplied", "api/DeleteMetaItemResponse:reset", + "api/DeleteMetaItemResponse:seq", "api/DeleteMetaItemResponse:success", "api/DeleteResponse:error", "api/DeleteResponse:id", @@ -857,11 +895,24 @@ "api/DeleteResponse:success", "api/DeviceRequestResponse:code", "api/DeviceRequestResponse:expiresAt", - "api/DeviceRequestResponse:interval", + "api/DeviceRequestResponse:interval [RETIRED]", + "api/DeviceRequestResponse:intervalSeconds", "api/DeviceRequestResponse:verificationUrl", + "api/DiffMetaItemResponse:added", + "api/DiffMetaItemResponse:changed", + "api/DiffMetaItemResponse:fromVersion", + "api/DiffMetaItemResponse:name", + "api/DiffMetaItemResponse:removed", + "api/DiffMetaItemResponse:toVersion", + "api/DiffMetaItemResponse:type", "api/DisablePackageRequest:id", "api/DisablePackageResponse:message", "api/DisablePackageResponse:package", + "api/DiscardPackageDraftsResponse:discarded", + "api/DiscardPackageDraftsResponse:discardedCount", + "api/DiscardPackageDraftsResponse:failed", + "api/DiscardPackageDraftsResponse:failedCount", + "api/DiscardPackageDraftsResponse:success", "api/Discovery:capabilities", "api/Discovery:environment", "api/Discovery:locale", @@ -888,6 +939,12 @@ "api/DocumentState:documentId", "api/DocumentState:lastModified", "api/DocumentState:version", + "api/DuplicatePackageResponse:copied", + "api/DuplicatePackageResponse:copiedCount", + "api/DuplicatePackageResponse:failed", + "api/DuplicatePackageResponse:failedCount", + "api/DuplicatePackageResponse:success", + "api/DuplicatePackageResponse:targetPackageId", "api/ETag:value", "api/ETag:weak", "api/EditMessage:messageId", @@ -924,12 +981,15 @@ "api/EnhancedApiError:helpText", "api/EnhancedApiError:httpStatus", "api/EnhancedApiError:message", + "api/EnhancedApiError:refusal", "api/EnhancedApiError:requestId", - "api/EnhancedApiError:retryAfter", + "api/EnhancedApiError:retryAfter [RETIRED]", + "api/EnhancedApiError:retryAfterSeconds", "api/EnhancedApiError:retryStrategy", "api/EnhancedApiError:retryable", "api/EnhancedApiError:timestamp", "api/EnhancedApiError:traceId", + "api/EnhancedApiError:userMessage", "api/ErrorHandlingConfig:customErrorMessages", "api/ErrorHandlingConfig:documentationBaseUrl", "api/ErrorHandlingConfig:enabled", @@ -998,6 +1058,9 @@ "api/FieldMappingEntry:targetField", "api/FieldMappingEntry:targetLabel", "api/FieldMappingEntry:transform", + "api/FieldSortability:caveat", + "api/FieldSortability:reason", + "api/FieldSortability:sortable", "api/FileDownloadUrlResponse:data", "api/FileDownloadUrlResponse:error", "api/FileDownloadUrlResponse:meta", @@ -1018,6 +1081,7 @@ "api/FindDataResponse:object", "api/FindDataResponse:records", "api/FindDataResponse:total", + "api/FindReferencesToMetaResponse:references", "api/FlowSummary:enabled", "api/FlowSummary:label", "api/FlowSummary:lastRunAt", @@ -1084,9 +1148,15 @@ "api/GetInstalledPackageResponse:meta", "api/GetInstalledPackageResponse:success", "api/GetLocalesResponse:locales", + "api/GetMetaDiagnosticsResponse:entries", + "api/GetMetaDiagnosticsResponse:scannedItems", + "api/GetMetaDiagnosticsResponse:scannedTypes", + "api/GetMetaDiagnosticsResponse:stats", + "api/GetMetaDiagnosticsResponse:total", "api/GetMetaItemCachedRequest:cacheRequest", "api/GetMetaItemCachedRequest:locale", "api/GetMetaItemCachedRequest:name", + "api/GetMetaItemCachedRequest:organizationId", "api/GetMetaItemCachedRequest:type", "api/GetMetaItemCachedResponse:cacheControl", "api/GetMetaItemCachedResponse:data", @@ -1094,13 +1164,50 @@ "api/GetMetaItemCachedResponse:lastModified", "api/GetMetaItemCachedResponse:notModified", "api/GetMetaItemCachedResponse:version", + "api/GetMetaItemLayeredRequest:name", + "api/GetMetaItemLayeredRequest:organizationId", + "api/GetMetaItemLayeredRequest:packageId", + "api/GetMetaItemLayeredRequest:type", + "api/GetMetaItemLayeredResponse:_diagnostics", + "api/GetMetaItemLayeredResponse:code", + "api/GetMetaItemLayeredResponse:deletable", + "api/GetMetaItemLayeredResponse:editable", + "api/GetMetaItemLayeredResponse:effective", + "api/GetMetaItemLayeredResponse:lock", + "api/GetMetaItemLayeredResponse:lockDocsUrl", + "api/GetMetaItemLayeredResponse:lockReason", + "api/GetMetaItemLayeredResponse:lockSource", + "api/GetMetaItemLayeredResponse:name", + "api/GetMetaItemLayeredResponse:overlay", + "api/GetMetaItemLayeredResponse:overlayScope", + "api/GetMetaItemLayeredResponse:packageId", + "api/GetMetaItemLayeredResponse:packageVersion", + "api/GetMetaItemLayeredResponse:provenance", + "api/GetMetaItemLayeredResponse:resettable", + "api/GetMetaItemLayeredResponse:type", "api/GetMetaItemRequest:name", + "api/GetMetaItemRequest:organizationId", "api/GetMetaItemRequest:packageId", + "api/GetMetaItemRequest:previewDrafts", + "api/GetMetaItemRequest:state", "api/GetMetaItemRequest:type", + "api/GetMetaItemResponse:deletable", + "api/GetMetaItemResponse:editable", "api/GetMetaItemResponse:item", + "api/GetMetaItemResponse:lock", + "api/GetMetaItemResponse:lockDocsUrl", + "api/GetMetaItemResponse:lockReason", + "api/GetMetaItemResponse:lockSource", "api/GetMetaItemResponse:name", + "api/GetMetaItemResponse:packageId", + "api/GetMetaItemResponse:packageVersion", + "api/GetMetaItemResponse:provenance", + "api/GetMetaItemResponse:resettable", + "api/GetMetaItemResponse:sortability", "api/GetMetaItemResponse:type", + "api/GetMetaItemsRequest:organizationId", "api/GetMetaItemsRequest:packageId", + "api/GetMetaItemsRequest:previewDrafts", "api/GetMetaItemsRequest:type", "api/GetMetaItemsResponse:items", "api/GetMetaItemsResponse:type", @@ -1147,6 +1254,12 @@ "api/GetUiViewResponse:name", "api/GetUiViewResponse:object", "api/GetUiViewResponse:protection", + "api/HistoryMetaItemRequest:limit", + "api/HistoryMetaItemRequest:name", + "api/HistoryMetaItemRequest:organizationId", + "api/HistoryMetaItemRequest:sinceSeq", + "api/HistoryMetaItemRequest:type", + "api/HistoryMetaItemResponse:events", "api/HttpFindQueryParams:count", "api/HttpFindQueryParams:distinct [RETIRED]", "api/HttpFindQueryParams:expand", @@ -1215,6 +1328,7 @@ "api/ImportRequest:dryRun", "api/ImportRequest:format", "api/ImportRequest:mapping", + "api/ImportRequest:mappingName", "api/ImportRequest:matchFields", "api/ImportRequest:nullValues", "api/ImportRequest:rows", @@ -1279,6 +1393,7 @@ "api/ListAiPendingActionsRequest:status", "api/ListAiPendingActionsResponse:items", "api/ListAiPendingActionsResponse:total", + "api/ListDraftsResponse:drafts", "api/ListExportJobsRequest:cursor", "api/ListExportJobsRequest:limit", "api/ListExportJobsRequest:object", @@ -1308,13 +1423,14 @@ "api/ListInstalledPackagesResponse:error", "api/ListInstalledPackagesResponse:meta", "api/ListInstalledPackagesResponse:success", - "api/ListNotificationsRequest:cursor", + "api/ListNotificationsRequest:cursor [RETIRED]", "api/ListNotificationsRequest:limit", "api/ListNotificationsRequest:read", "api/ListNotificationsRequest:type", - "api/ListNotificationsResponse:cursor", + "api/ListNotificationsResponse:cursor [RETIRED]", "api/ListNotificationsResponse:notifications", "api/ListNotificationsResponse:unreadCount", + "api/ListPackageCommitsResponse:commits", "api/ListPackagesRequest:enabled", "api/ListPackagesRequest:status", "api/ListPackagesRequest:type", @@ -1373,13 +1489,10 @@ "api/MetadataDependentsResponse:error", "api/MetadataDependentsResponse:meta", "api/MetadataDependentsResponse:success", - "api/MetadataEffectiveResponse:data", - "api/MetadataEffectiveResponse:error", - "api/MetadataEffectiveResponse:meta", - "api/MetadataEffectiveResponse:success", - "api/MetadataEndpointsConfig:cacheTtl", + "api/MetadataEndpointsConfig:cacheTtl [RETIRED]", "api/MetadataEndpointsConfig:enableCache", "api/MetadataEndpointsConfig:endpoints", + "api/MetadataEndpointsConfig:maskObjectFields", "api/MetadataEndpointsConfig:prefix", "api/MetadataEvent:definition", "api/MetadataEvent:id", @@ -1420,25 +1533,6 @@ "api/MetadataNamesResponse:error", "api/MetadataNamesResponse:meta", "api/MetadataNamesResponse:success", - "api/MetadataOverlayResponse:data", - "api/MetadataOverlayResponse:error", - "api/MetadataOverlayResponse:meta", - "api/MetadataOverlayResponse:success", - "api/MetadataOverlaySaveRequest:active", - "api/MetadataOverlaySaveRequest:baseName", - "api/MetadataOverlaySaveRequest:baseType", - "api/MetadataOverlaySaveRequest:changes", - "api/MetadataOverlaySaveRequest:createdAt", - "api/MetadataOverlaySaveRequest:createdBy", - "api/MetadataOverlaySaveRequest:id", - "api/MetadataOverlaySaveRequest:owner", - "api/MetadataOverlaySaveRequest:packageId", - "api/MetadataOverlaySaveRequest:packageVersion", - "api/MetadataOverlaySaveRequest:patch", - "api/MetadataOverlaySaveRequest:scope", - "api/MetadataOverlaySaveRequest:tenantId", - "api/MetadataOverlaySaveRequest:updatedAt", - "api/MetadataOverlaySaveRequest:updatedBy", "api/MetadataQueryRequest:namespaces", "api/MetadataQueryRequest:packageId", "api/MetadataQueryRequest:page", @@ -1519,6 +1613,7 @@ "api/ObjectDefinitionResponse:error", "api/ObjectDefinitionResponse:meta", "api/ObjectDefinitionResponse:success", + "api/ObjectSortability:fields", "api/OpenApiGenerationConfig:apiVersion", "api/OpenApiGenerationConfig:contact", "api/OpenApiGenerationConfig:description", @@ -1556,6 +1651,10 @@ "api/OperatorMapping:odata", "api/OperatorMapping:operator", "api/OperatorMapping:rest", + "api/PackageExportManifest:id", + "api/PackageExportManifest:label", + "api/PackageExportManifest:name", + "api/PackageExportManifest:version", "api/PackageInstallRequest:artifactRef", "api/PackageInstallRequest:enableOnInstall", "api/PackageInstallRequest:manifest", @@ -1566,13 +1665,15 @@ "api/PackageInstallResponse:meta", "api/PackageInstallResponse:success", "api/PackagePathParams:packageId", + "api/PackagePublishResult:itemsPublished", + "api/PackagePublishResult:packageId", + "api/PackagePublishResult:publishedAt", + "api/PackagePublishResult:success", + "api/PackagePublishResult:validationErrors", + "api/PackagePublishResult:version", "api/PackageRollbackRequest:packageId", "api/PackageRollbackRequest:rollbackCustomizations", "api/PackageRollbackRequest:snapshotId", - "api/PackageRollbackResponse:data", - "api/PackageRollbackResponse:error", - "api/PackageRollbackResponse:meta", - "api/PackageRollbackResponse:success", "api/PackageUpgradeRequest:createSnapshot", "api/PackageUpgradeRequest:dryRun", "api/PackageUpgradeRequest:manifest", @@ -1611,6 +1712,37 @@ "api/PresignedUrlResponse:error", "api/PresignedUrlResponse:meta", "api/PresignedUrlResponse:success", + "api/ProvenanceWaiver:code", + "api/ProvenanceWaiver:package", + "api/ProvenanceWaiver:reason", + "api/ProvenanceWaiver:registeredUnder", + "api/PublishMetaItemRequest:actor", + "api/PublishMetaItemRequest:message", + "api/PublishMetaItemRequest:name", + "api/PublishMetaItemRequest:organizationId", + "api/PublishMetaItemRequest:packageId", + "api/PublishMetaItemRequest:type", + "api/PublishMetaItemResponse:advisories", + "api/PublishMetaItemResponse:materializeApplied", + "api/PublishMetaItemResponse:message", + "api/PublishMetaItemResponse:projectionApplied", + "api/PublishMetaItemResponse:seedApplied", + "api/PublishMetaItemResponse:seq", + "api/PublishMetaItemResponse:success", + "api/PublishMetaItemResponse:version", + "api/PublishPackageDraftsResponse:commitId", + "api/PublishPackageDraftsResponse:failed", + "api/PublishPackageDraftsResponse:failedCount", + "api/PublishPackageDraftsResponse:materializeApplied", + "api/PublishPackageDraftsResponse:outcome", + "api/PublishPackageDraftsResponse:probes", + "api/PublishPackageDraftsResponse:published", + "api/PublishPackageDraftsResponse:publishedCount", + "api/PublishPackageDraftsResponse:rebindError", + "api/PublishPackageDraftsResponse:seedApplied", + "api/PublishPackageDraftsResponse:success", + "api/PublishPackageDraftsResponse:unhiddenApps", + "api/PublishPackageDraftsResponse:unhideError", "api/QueryAdapterConfig:odata", "api/QueryAdapterConfig:operatorMappings", "api/QueryAdapterConfig:rest", @@ -1654,6 +1786,10 @@ "api/RealtimeSubscribeResponse:subscriptionId", "api/RealtimeUnsubscribeRequest:subscriptionId", "api/RealtimeUnsubscribeResponse:success", + "api/ReassignOrphanedMetadataResponse:reassigned", + "api/ReassignOrphanedMetadataResponse:reassignedCount", + "api/ReassignOrphanedMetadataResponse:success", + "api/ReassignOrphanedMetadataResponse:targetPackageId", "api/RefreshTokenRequest:refreshToken", "api/RegisterDeviceRequest:deviceId", "api/RegisterDeviceRequest:name", @@ -1682,6 +1818,19 @@ "api/ResolveDependenciesResponse:error", "api/ResolveDependenciesResponse:meta", "api/ResolveDependenciesResponse:success", + "api/ResolvedBook:groups", + "api/ResolvedBook:label", + "api/ResolvedBook:name", + "api/ResolvedEntry:badge", + "api/ResolvedEntry:description", + "api/ResolvedEntry:doc", + "api/ResolvedEntry:href", + "api/ResolvedEntry:icon", + "api/ResolvedEntry:label", + "api/ResolvedEntry:separator", + "api/ResolvedGroup:entries", + "api/ResolvedGroup:key", + "api/ResolvedGroup:label", "api/ResponseEnvelopeConfig:customMetadata", "api/ResponseEnvelopeConfig:enabled", "api/ResponseEnvelopeConfig:includeDuration", @@ -1699,17 +1848,19 @@ "api/RestApiConfig:enableMetadata", "api/RestApiConfig:enableOpenApi", "api/RestApiConfig:enableProjectScoping", + "api/RestApiConfig:enableSearch", "api/RestApiConfig:enableUi", "api/RestApiConfig:projectResolution", "api/RestApiConfig:requireAuth [RETIRED]", "api/RestApiConfig:responseFormat", "api/RestApiConfig:version", - "api/RestApiEndpoint:cacheTtl", + "api/RestApiEndpoint:cacheTtl [RETIRED]", + "api/RestApiEndpoint:cacheTtlSeconds", "api/RestApiEndpoint:cacheable", "api/RestApiEndpoint:category", "api/RestApiEndpoint:description", "api/RestApiEndpoint:handler", - "api/RestApiEndpoint:handlerStatus", + "api/RestApiEndpoint:handlerStatus [RETIRED]", "api/RestApiEndpoint:method", "api/RestApiEndpoint:path", "api/RestApiEndpoint:permissions", @@ -1719,7 +1870,8 @@ "api/RestApiEndpoint:responseSchema", "api/RestApiEndpoint:summary", "api/RestApiEndpoint:tags", - "api/RestApiEndpoint:timeout", + "api/RestApiEndpoint:timeout [RETIRED]", + "api/RestApiEndpoint:timeoutMs", "api/RestApiPluginConfig:basePath", "api/RestApiPluginConfig:cors", "api/RestApiPluginConfig:enabled", @@ -1749,16 +1901,23 @@ "api/RestServerConfig:metadata", "api/RestServerConfig:openApi31 [RETIRED]", "api/RestServerConfig:routes", - "api/RouteCoverageEntry:category", - "api/RouteCoverageEntry:handlerStatus", - "api/RouteCoverageEntry:healthCheckPassed", - "api/RouteCoverageEntry:method", - "api/RouteCoverageEntry:path", - "api/RouteCoverageEntry:service", - "api/RouteCoverageReport:adapter", - "api/RouteCoverageReport:entries", - "api/RouteCoverageReport:summary", - "api/RouteCoverageReport:timestamp", + "api/ResumeFailureDetails:repairable", + "api/ResumeFailureDetails:runId", + "api/ResumeFailureDetails:status", + "api/RevertPackageCommitResponse:failed", + "api/RevertPackageCommitResponse:failedCount", + "api/RevertPackageCommitResponse:revertCommitId", + "api/RevertPackageCommitResponse:reverted", + "api/RevertPackageCommitResponse:revertedCount", + "api/RevertPackageCommitResponse:success", + "api/RollbackMetaItemResponse:message", + "api/RollbackMetaItemResponse:restoredFromVersion", + "api/RollbackMetaItemResponse:seq", + "api/RollbackMetaItemResponse:success", + "api/RollbackMetaItemResponse:version", + "api/RollbackToPackageCommitResponse:failed", + "api/RollbackToPackageCommitResponse:revertedCommits", + "api/RollbackToPackageCommitResponse:success", "api/RouteDefinition:category", "api/RouteDefinition:description", "api/RouteDefinition:handler", @@ -1768,11 +1927,12 @@ "api/RouteDefinition:public", "api/RouteDefinition:rateLimit", "api/RouteDefinition:summary", - "api/RouteDefinition:timeout", - "api/RouteGenerationConfig:excludeObjects", - "api/RouteGenerationConfig:includeObjects", - "api/RouteGenerationConfig:nameTransform", - "api/RouteGenerationConfig:overrides", + "api/RouteDefinition:timeout [RETIRED]", + "api/RouteDefinition:timeoutMs", + "api/RouteGenerationConfig:excludeObjects [RETIRED]", + "api/RouteGenerationConfig:includeObjects [RETIRED]", + "api/RouteGenerationConfig:nameTransform [RETIRED]", + "api/RouteGenerationConfig:overrides [RETIRED]", "api/RouteHealthEntry:declared", "api/RouteHealthEntry:handlerRegistered", "api/RouteHealthEntry:healthStatus", @@ -1790,9 +1950,23 @@ "api/RouterConfig:cors", "api/RouterConfig:mounts", "api/RouterConfig:staticMounts", + "api/RuntimeAuthoringIssue:hint", + "api/RuntimeAuthoringIssue:message", + "api/RuntimeAuthoringIssue:path", + "api/RuntimeAuthoringIssue:rule", + "api/RuntimeAuthoringIssue:severity", + "api/RuntimeAuthoringIssue:where", + "api/SaveMetaItemRequest:actor", + "api/SaveMetaItemRequest:force", "api/SaveMetaItemRequest:item", + "api/SaveMetaItemRequest:mode", "api/SaveMetaItemRequest:name", + "api/SaveMetaItemRequest:organizationId", + "api/SaveMetaItemRequest:packageId", + "api/SaveMetaItemRequest:parentVersion", "api/SaveMetaItemRequest:type", + "api/SaveMetaItemRequest:writeFace", + "api/SaveMetaItemResponse:advisories", "api/SaveMetaItemResponse:message", "api/SaveMetaItemResponse:projectionApplied", "api/SaveMetaItemResponse:seq", @@ -1827,6 +2001,22 @@ "api/ScheduledExport:object", "api/ScheduledExport:schedule", "api/ScheduledExport:templateId", + "api/SearchAllHit:id", + "api/SearchAllHit:object", + "api/SearchAllHit:record", + "api/SearchAllHit:snippet", + "api/SearchAllHit:title", + "api/SearchAllPageHit:kind", + "api/SearchAllPageHit:name", + "api/SearchAllPageHit:pageType", + "api/SearchAllPageHit:snippet", + "api/SearchAllPageHit:title", + "api/SearchAllResponse:hits", + "api/SearchAllResponse:pages", + "api/SearchAllResponse:query", + "api/SearchAllResponse:totalHits", + "api/SearchAllResponse:totalObjects", + "api/SearchAllResponse:truncated", "api/ServiceInfo:enabled", "api/ServiceInfo:handlerReady", "api/ServiceInfo:message", @@ -1853,7 +2043,7 @@ "api/SessionUser:emailVerified", "api/SessionUser:id", "api/SessionUser:image", - "api/SessionUser:language", + "api/SessionUser:language [RETIRED]", "api/SessionUser:name", "api/SessionUser:roles", "api/SessionUser:tenantId", @@ -1868,7 +2058,8 @@ "api/SimpleCursorPosition:recordId", "api/SimpleCursorPosition:selection", "api/SimpleCursorPosition:userId", - "api/SimplePresenceState:lastSeen", + "api/SimplePresenceState:lastSeen [RETIRED]", + "api/SimplePresenceState:lastSeenAt", "api/SimplePresenceState:metadata", "api/SimplePresenceState:status", "api/SimplePresenceState:userId", @@ -1877,6 +2068,9 @@ "api/SingleRecordResponse:error", "api/SingleRecordResponse:meta", "api/SingleRecordResponse:success", + "api/StandardSynonymWaiver:code", + "api/StandardSynonymWaiver:reason", + "api/StandardSynonymWaiver:shadows", "api/SubscribeMessage:messageId", "api/SubscribeMessage:subscription", "api/SubscribeMessage:timestamp", @@ -2019,19 +2213,24 @@ "api/VersioningConfig:versions", "api/WebSocketConfig:headers", "api/WebSocketConfig:maxReconnectAttempts", - "api/WebSocketConfig:pingInterval", + "api/WebSocketConfig:pingInterval [RETIRED]", + "api/WebSocketConfig:pingIntervalMs", "api/WebSocketConfig:protocols", "api/WebSocketConfig:reconnect", - "api/WebSocketConfig:reconnectInterval", - "api/WebSocketConfig:timeout", + "api/WebSocketConfig:reconnectInterval [RETIRED]", + "api/WebSocketConfig:reconnectIntervalMs", + "api/WebSocketConfig:timeout [RETIRED]", + "api/WebSocketConfig:timeoutMs", "api/WebSocketConfig:url", "api/WebSocketEvent:channel", + "api/WebSocketEvent:occurredAt", "api/WebSocketEvent:payload", - "api/WebSocketEvent:timestamp", + "api/WebSocketEvent:timestamp [RETIRED]", "api/WebSocketEvent:type", "api/WebSocketServerConfig:cursorSharing", "api/WebSocketServerConfig:enabled", - "api/WebSocketServerConfig:heartbeatInterval", + "api/WebSocketServerConfig:heartbeatInterval [RETIRED]", + "api/WebSocketServerConfig:heartbeatIntervalMs", "api/WebSocketServerConfig:path", "api/WebSocketServerConfig:presence", "api/WebSocketServerConfig:reconnectAttempts", @@ -2055,7 +2254,7 @@ "automation/ActionDescriptor:description", "automation/ActionDescriptor:handlerContract", "automation/ActionDescriptor:icon", - "automation/ActionDescriptor:isAsync", + "automation/ActionDescriptor:isAsync [RETIRED]", "automation/ActionDescriptor:maturity", "automation/ActionDescriptor:name", "automation/ActionDescriptor:needsOutbox", @@ -2086,6 +2285,11 @@ "automation/ApprovalNodeConfig:maxRevisions", "automation/ApprovalNodeConfig:minApprovals", "automation/ApprovalNodeConfig:onEmptyApprovers", + "automation/AssignmentConfig:assignments", + "automation/AssignmentExpressionValue:ast", + "automation/AssignmentExpressionValue:dialect", + "automation/AssignmentExpressionValue:meta", + "automation/AssignmentExpressionValue:source", "automation/BpmnDiagnostic:bpmnElementId", "automation/BpmnDiagnostic:message", "automation/BpmnDiagnostic:nodeId", @@ -2137,6 +2341,8 @@ "automation/DeleteRecordConfig:filter", "automation/DeleteRecordConfig:multi", "automation/DeleteRecordConfig:objectName", + "automation/EndConfig:message", + "automation/EndConfig:outcome", "automation/ExecutionError:code", "automation/ExecutionError:context", "automation/ExecutionError:executionId", @@ -2153,6 +2359,7 @@ "automation/ExecutionLog:flowName", "automation/ExecutionLog:flowVersion", "automation/ExecutionLog:id", + "automation/ExecutionLog:refusalMessage", "automation/ExecutionLog:runAs", "automation/ExecutionLog:startedAt", "automation/ExecutionLog:status", @@ -2161,6 +2368,7 @@ "automation/ExecutionLog:tenantId", "automation/ExecutionLog:trigger", "automation/ExecutionLog:variables", + "automation/ExecutionStepLog:branch", "automation/ExecutionStepLog:completedAt", "automation/ExecutionStepLog:durationMs", "automation/ExecutionStepLog:error", @@ -2178,6 +2386,7 @@ "automation/ExecutionStepLog:startedAt", "automation/ExecutionStepLog:status", "automation/ExecutionStepMetrics:acted", + "automation/ExecutionStepMetrics:failures", "automation/ExecutionStepMetrics:selected", "automation/ExecutionStepMetrics:unmeasuredEffect", "automation/ExecutionStepSkipReason:edgeId", @@ -2243,11 +2452,13 @@ "automation/FlowRunNodeSummary:unmeasured", "automation/FlowRunSummary:acted", "automation/FlowRunSummary:detailOmitted", + "automation/FlowRunSummary:failed", "automation/FlowRunSummary:gates", "automation/FlowRunSummary:nodes", "automation/FlowRunSummary:selected", "automation/FlowRunSummary:skipped", "automation/FlowRunSummary:unmeasured", + "automation/FlowVariable:defaultValue", "automation/FlowVariable:isInput", "automation/FlowVariable:isOutput", "automation/FlowVariable:name", @@ -2300,6 +2511,8 @@ "automation/NotifyConfig:severity", "automation/NotifyConfig:sourceId", "automation/NotifyConfig:sourceObject", + "automation/NotifyConfig:template", + "automation/NotifyConfig:templateData", "automation/NotifyConfig:title", "automation/NotifyConfig:topic", "automation/ParallelBranch:edges", @@ -2315,7 +2528,6 @@ "automation/ScheduleState:consecutiveFailures", "automation/ScheduleState:createdAt", "automation/ScheduleState:createdBy", - "automation/ScheduleState:cronExpression", "automation/ScheduleState:endDate", "automation/ScheduleState:flowName", "automation/ScheduleState:id", @@ -2339,10 +2551,14 @@ "automation/ScreenConfig:title", "automation/ScreenConfig:waitForInput", "automation/ScreenFieldConfig:defaultValue", + "automation/ScreenFieldConfig:inlineHelpText", "automation/ScreenFieldConfig:label", + "automation/ScreenFieldConfig:max", + "automation/ScreenFieldConfig:min", "automation/ScreenFieldConfig:name", "automation/ScreenFieldConfig:options", "automation/ScreenFieldConfig:placeholder", + "automation/ScreenFieldConfig:reference", "automation/ScreenFieldConfig:required", "automation/ScreenFieldConfig:type", "automation/ScreenFieldConfig:visibleWhen", @@ -2385,6 +2601,11 @@ "automation/TryCatchConfig:errorVariable", "automation/TryCatchConfig:retry", "automation/TryCatchConfig:try", + "automation/TryCatchErrorValue:code", + "automation/TryCatchErrorValue:item", + "automation/TryCatchErrorValue:iteration", + "automation/TryCatchErrorValue:message", + "automation/TryCatchErrorValue:nodeId", "automation/UpdateRecordConfig:fields", "automation/UpdateRecordConfig:filter", "automation/UpdateRecordConfig:multi", @@ -2424,515 +2645,6 @@ "automation/Webhook:timeoutMs", "automation/Webhook:triggers", "automation/Webhook:url", - "cloud/AppDiscoveryRequest:categories", - "cloud/AppDiscoveryRequest:limit", - "cloud/AppDiscoveryRequest:platformVersion", - "cloud/AppDiscoveryRequest:tenantId", - "cloud/AppDiscoveryResponse:collections", - "cloud/AppDiscoveryResponse:featured", - "cloud/AppDiscoveryResponse:newArrivals", - "cloud/AppDiscoveryResponse:recommended", - "cloud/AppDiscoveryResponse:trending", - "cloud/AppSubscription:autoRenew", - "cloud/AppSubscription:billingCycle", - "cloud/AppSubscription:createdAt", - "cloud/AppSubscription:currentPeriodEnd", - "cloud/AppSubscription:currentPeriodStart", - "cloud/AppSubscription:id", - "cloud/AppSubscription:licenseKey", - "cloud/AppSubscription:listingId", - "cloud/AppSubscription:plan", - "cloud/AppSubscription:priceInCents", - "cloud/AppSubscription:status", - "cloud/AppSubscription:tenantId", - "cloud/AppSubscription:trialEndDate", - "cloud/ArtifactDownloadResponse:downloadUrl", - "cloud/ArtifactDownloadResponse:expiresAt", - "cloud/ArtifactDownloadResponse:format", - "cloud/ArtifactDownloadResponse:sha256", - "cloud/ArtifactDownloadResponse:size", - "cloud/ArtifactReference:format", - "cloud/ArtifactReference:sha256", - "cloud/ArtifactReference:size", - "cloud/ArtifactReference:uploadedAt", - "cloud/ArtifactReference:url", - "cloud/CreateListingRequest:category", - "cloud/CreateListingRequest:description", - "cloud/CreateListingRequest:documentationUrl", - "cloud/CreateListingRequest:iconUrl", - "cloud/CreateListingRequest:name", - "cloud/CreateListingRequest:packageId", - "cloud/CreateListingRequest:priceInCents", - "cloud/CreateListingRequest:pricing", - "cloud/CreateListingRequest:repositoryUrl", - "cloud/CreateListingRequest:screenshots", - "cloud/CreateListingRequest:supportUrl", - "cloud/CreateListingRequest:tagline", - "cloud/CreateListingRequest:tags", - "cloud/CreatePackageRequest:category", - "cloud/CreatePackageRequest:createdBy", - "cloud/CreatePackageRequest:description", - "cloud/CreatePackageRequest:displayName", - "cloud/CreatePackageRequest:homepageUrl", - "cloud/CreatePackageRequest:iconUrl", - "cloud/CreatePackageRequest:isStarter", - "cloud/CreatePackageRequest:license", - "cloud/CreatePackageRequest:manifestId", - "cloud/CreatePackageRequest:ownerOrgId", - "cloud/CreatePackageRequest:publisher", - "cloud/CreatePackageRequest:tags", - "cloud/CreatePackageRequest:translations", - "cloud/CreatePackageRequest:visibility", - "cloud/CreatePackageVersionRequest:createdBy", - "cloud/CreatePackageVersionRequest:isPreRelease", - "cloud/CreatePackageVersionRequest:manifestJson", - "cloud/CreatePackageVersionRequest:packageId", - "cloud/CreatePackageVersionRequest:releaseNotes", - "cloud/CreatePackageVersionRequest:version", - "cloud/CuratedCollection:coverImageUrl", - "cloud/CuratedCollection:createdAt", - "cloud/CuratedCollection:createdBy", - "cloud/CuratedCollection:description", - "cloud/CuratedCollection:id", - "cloud/CuratedCollection:listingIds", - "cloud/CuratedCollection:name", - "cloud/CuratedCollection:published", - "cloud/CuratedCollection:sortOrder", - "cloud/CuratedCollection:updatedAt", - "cloud/Environment:apiBaseUrl", - "cloud/Environment:consoleUrl", - "cloud/Environment:createdAt", - "cloud/Environment:createdBy", - "cloud/Environment:databaseDriver", - "cloud/Environment:databaseUrl", - "cloud/Environment:displayName", - "cloud/Environment:hostname", - "cloud/Environment:id", - "cloud/Environment:isDefault", - "cloud/Environment:isSystem", - "cloud/Environment:metadata", - "cloud/Environment:organizationId", - "cloud/Environment:plan", - "cloud/Environment:provisionedAt", - "cloud/Environment:status", - "cloud/Environment:storageLimitMb", - "cloud/Environment:updatedAt", - "cloud/Environment:visibility", - "cloud/EnvironmentCredential:authorization", - "cloud/EnvironmentCredential:createdAt", - "cloud/EnvironmentCredential:encryptionKeyId", - "cloud/EnvironmentCredential:environmentId", - "cloud/EnvironmentCredential:expiresAt", - "cloud/EnvironmentCredential:id", - "cloud/EnvironmentCredential:revokedAt", - "cloud/EnvironmentCredential:secretCiphertext", - "cloud/EnvironmentCredential:status", - "cloud/EnvironmentMember:createdAt", - "cloud/EnvironmentMember:environmentId", - "cloud/EnvironmentMember:id", - "cloud/EnvironmentMember:invitedBy", - "cloud/EnvironmentMember:role", - "cloud/EnvironmentMember:updatedAt", - "cloud/EnvironmentMember:userId", - "cloud/EnvironmentPackageInstallation:enabled", - "cloud/EnvironmentPackageInstallation:environmentId", - "cloud/EnvironmentPackageInstallation:errorMessage", - "cloud/EnvironmentPackageInstallation:id", - "cloud/EnvironmentPackageInstallation:installedAt", - "cloud/EnvironmentPackageInstallation:installedBy", - "cloud/EnvironmentPackageInstallation:packageId", - "cloud/EnvironmentPackageInstallation:packageVersionId", - "cloud/EnvironmentPackageInstallation:settings", - "cloud/EnvironmentPackageInstallation:status", - "cloud/EnvironmentPackageInstallation:updatedAt", - "cloud/EnvironmentPackageInstallation:withSampleData", - "cloud/FeaturedListing:active", - "cloud/FeaturedListing:bannerUrl", - "cloud/FeaturedListing:editorialNote", - "cloud/FeaturedListing:endDate", - "cloud/FeaturedListing:listingId", - "cloud/FeaturedListing:priority", - "cloud/FeaturedListing:startDate", - "cloud/InstallPackageToEnvironmentRequest:allowDraft", - "cloud/InstallPackageToEnvironmentRequest:enableOnInstall", - "cloud/InstallPackageToEnvironmentRequest:installedBy", - "cloud/InstallPackageToEnvironmentRequest:packageManifestId", - "cloud/InstallPackageToEnvironmentRequest:packageVersionId", - "cloud/InstallPackageToEnvironmentRequest:settings", - "cloud/InstallPackageToEnvironmentRequest:version", - "cloud/InstallPackageToEnvironmentRequest:withSampleData", - "cloud/InstalledAppSummary:enabled", - "cloud/InstalledAppSummary:iconUrl", - "cloud/InstalledAppSummary:installedAt", - "cloud/InstalledAppSummary:installedVersion", - "cloud/InstalledAppSummary:latestVersion", - "cloud/InstalledAppSummary:listingId", - "cloud/InstalledAppSummary:name", - "cloud/InstalledAppSummary:packageId", - "cloud/InstalledAppSummary:subscriptionStatus", - "cloud/InstalledAppSummary:updateAvailable", - "cloud/ListEnvironmentPackagesResponse:packages", - "cloud/ListEnvironmentPackagesResponse:total", - "cloud/ListInstalledAppsRequest:enabled", - "cloud/ListInstalledAppsRequest:page", - "cloud/ListInstalledAppsRequest:pageSize", - "cloud/ListInstalledAppsRequest:sortBy", - "cloud/ListInstalledAppsRequest:tenantId", - "cloud/ListInstalledAppsRequest:updateAvailable", - "cloud/ListInstalledAppsResponse:items", - "cloud/ListInstalledAppsResponse:page", - "cloud/ListInstalledAppsResponse:pageSize", - "cloud/ListInstalledAppsResponse:total", - "cloud/ListReviewsRequest:listingId", - "cloud/ListReviewsRequest:page", - "cloud/ListReviewsRequest:pageSize", - "cloud/ListReviewsRequest:rating", - "cloud/ListReviewsRequest:sortBy", - "cloud/ListReviewsResponse:items", - "cloud/ListReviewsResponse:page", - "cloud/ListReviewsResponse:pageSize", - "cloud/ListReviewsResponse:ratingSummary", - "cloud/ListReviewsResponse:total", - "cloud/ListingActionRequest:action", - "cloud/ListingActionRequest:listingId", - "cloud/ListingActionRequest:reason", - "cloud/MarketplaceHealthMetrics:averageReviewTime", - "cloud/MarketplaceHealthMetrics:listingsByCategory", - "cloud/MarketplaceHealthMetrics:listingsByPricing", - "cloud/MarketplaceHealthMetrics:listingsByStatus", - "cloud/MarketplaceHealthMetrics:pendingReviews", - "cloud/MarketplaceHealthMetrics:snapshotAt", - "cloud/MarketplaceHealthMetrics:totalInstalls", - "cloud/MarketplaceHealthMetrics:totalListings", - "cloud/MarketplaceHealthMetrics:totalPublishers", - "cloud/MarketplaceHealthMetrics:verifiedPublishers", - "cloud/MarketplaceInstallRequest:artifactRef", - "cloud/MarketplaceInstallRequest:enableOnInstall", - "cloud/MarketplaceInstallRequest:licenseKey", - "cloud/MarketplaceInstallRequest:listingId", - "cloud/MarketplaceInstallRequest:settings", - "cloud/MarketplaceInstallRequest:tenantId", - "cloud/MarketplaceInstallRequest:version", - "cloud/MarketplaceInstallResponse:message", - "cloud/MarketplaceInstallResponse:packageId", - "cloud/MarketplaceInstallResponse:success", - "cloud/MarketplaceInstallResponse:version", - "cloud/MarketplaceListing:category", - "cloud/MarketplaceListing:description", - "cloud/MarketplaceListing:documentationUrl", - "cloud/MarketplaceListing:iconUrl", - "cloud/MarketplaceListing:id", - "cloud/MarketplaceListing:latestVersion", - "cloud/MarketplaceListing:minPlatformVersion", - "cloud/MarketplaceListing:name", - "cloud/MarketplaceListing:packageId", - "cloud/MarketplaceListing:packageType", - "cloud/MarketplaceListing:priceInCents", - "cloud/MarketplaceListing:pricing", - "cloud/MarketplaceListing:publishedAt", - "cloud/MarketplaceListing:publisherId", - "cloud/MarketplaceListing:repositoryUrl", - "cloud/MarketplaceListing:screenshots", - "cloud/MarketplaceListing:stats", - "cloud/MarketplaceListing:status", - "cloud/MarketplaceListing:supportUrl", - "cloud/MarketplaceListing:tagline", - "cloud/MarketplaceListing:tags", - "cloud/MarketplaceListing:translations", - "cloud/MarketplaceListing:updatedAt", - "cloud/MarketplaceListing:versions", - "cloud/MarketplaceSearchRequest:category", - "cloud/MarketplaceSearchRequest:page", - "cloud/MarketplaceSearchRequest:pageSize", - "cloud/MarketplaceSearchRequest:platformVersion", - "cloud/MarketplaceSearchRequest:pricing", - "cloud/MarketplaceSearchRequest:publisherVerification", - "cloud/MarketplaceSearchRequest:query", - "cloud/MarketplaceSearchRequest:sortBy", - "cloud/MarketplaceSearchRequest:sortDirection", - "cloud/MarketplaceSearchRequest:tags", - "cloud/MarketplaceSearchResponse:facets", - "cloud/MarketplaceSearchResponse:items", - "cloud/MarketplaceSearchResponse:page", - "cloud/MarketplaceSearchResponse:pageSize", - "cloud/MarketplaceSearchResponse:total", - "cloud/Package:category", - "cloud/Package:createdAt", - "cloud/Package:createdBy", - "cloud/Package:description", - "cloud/Package:displayName", - "cloud/Package:homepageUrl", - "cloud/Package:iconUrl", - "cloud/Package:id", - "cloud/Package:isStarter", - "cloud/Package:license", - "cloud/Package:manifestId", - "cloud/Package:ownerOrgId", - "cloud/Package:publisher", - "cloud/Package:readme", - "cloud/Package:tags", - "cloud/Package:translations", - "cloud/Package:updatedAt", - "cloud/Package:visibility", - "cloud/PackageDependency:optional", - "cloud/PackageDependency:packageId", - "cloud/PackageDependency:versionRange", - "cloud/PackageInstallation:config", - "cloud/PackageInstallation:id", - "cloud/PackageInstallation:installedAt", - "cloud/PackageInstallation:installedBy", - "cloud/PackageInstallation:packageId", - "cloud/PackageInstallation:status", - "cloud/PackageInstallation:tenantId", - "cloud/PackageInstallation:updatedAt", - "cloud/PackageInstallation:version", - "cloud/PackageManifest:configurationSchema", - "cloud/PackageManifest:dependencies", - "cloud/PackageManifest:description", - "cloud/PackageManifest:id", - "cloud/PackageManifest:metadata", - "cloud/PackageManifest:metadataTypes", - "cloud/PackageManifest:migrations", - "cloud/PackageManifest:minPlatformVersion", - "cloud/PackageManifest:name", - "cloud/PackageManifest:scope", - "cloud/PackageManifest:version", - "cloud/PackageSubmission:artifactUrl", - "cloud/PackageSubmission:id", - "cloud/PackageSubmission:isNewListing", - "cloud/PackageSubmission:packageId", - "cloud/PackageSubmission:publisherId", - "cloud/PackageSubmission:releaseNotes", - "cloud/PackageSubmission:reviewedAt", - "cloud/PackageSubmission:reviewerNotes", - "cloud/PackageSubmission:scanResults", - "cloud/PackageSubmission:status", - "cloud/PackageSubmission:submittedAt", - "cloud/PackageSubmission:version", - "cloud/PackageTranslation:description", - "cloud/PackageTranslation:displayName", - "cloud/PackageTranslation:readme", - "cloud/PackageTranslation:screenshotCaptions", - "cloud/PackageTranslation:tagline", - "cloud/PackageVersion:checksum", - "cloud/PackageVersion:createdAt", - "cloud/PackageVersion:createdBy", - "cloud/PackageVersion:id", - "cloud/PackageVersion:isPreRelease", - "cloud/PackageVersion:manifestJson", - "cloud/PackageVersion:minPlatformVersion", - "cloud/PackageVersion:packageId", - "cloud/PackageVersion:publishedAt", - "cloud/PackageVersion:publishedBy", - "cloud/PackageVersion:releaseNotes", - "cloud/PackageVersion:status", - "cloud/PackageVersion:updatedAt", - "cloud/PackageVersion:version", - "cloud/PolicyAction:action", - "cloud/PolicyAction:actionAt", - "cloud/PolicyAction:actionBy", - "cloud/PolicyAction:id", - "cloud/PolicyAction:listingId", - "cloud/PolicyAction:reason", - "cloud/PolicyAction:resolution", - "cloud/PolicyAction:resolved", - "cloud/PolicyAction:violationType", - "cloud/ProvisionEnvironmentRequest:createdBy", - "cloud/ProvisionEnvironmentRequest:displayName", - "cloud/ProvisionEnvironmentRequest:driver", - "cloud/ProvisionEnvironmentRequest:hostname", - "cloud/ProvisionEnvironmentRequest:isDefault", - "cloud/ProvisionEnvironmentRequest:metadata", - "cloud/ProvisionEnvironmentRequest:organizationId", - "cloud/ProvisionEnvironmentRequest:plan", - "cloud/ProvisionEnvironmentRequest:storageLimitMb", - "cloud/ProvisionEnvironmentRequest:templateId", - "cloud/ProvisionEnvironmentRequest:visibility", - "cloud/ProvisionEnvironmentResponse:credential", - "cloud/ProvisionEnvironmentResponse:durationMs", - "cloud/ProvisionEnvironmentResponse:environment", - "cloud/ProvisionEnvironmentResponse:hostnameAssignment", - "cloud/ProvisionEnvironmentResponse:warnings", - "cloud/ProvisionOrganizationRequest:createdBy", - "cloud/ProvisionOrganizationRequest:defaultEnvironmentDisplayName", - "cloud/ProvisionOrganizationRequest:driver", - "cloud/ProvisionOrganizationRequest:metadata", - "cloud/ProvisionOrganizationRequest:organizationId", - "cloud/ProvisionOrganizationRequest:plan", - "cloud/ProvisionOrganizationRequest:storageLimitMb", - "cloud/ProvisionOrganizationResponse:defaultEnvironment", - "cloud/ProvisionOrganizationResponse:durationMs", - "cloud/ProvisionOrganizationResponse:warnings", - "cloud/ProvisionTenantRequest:metadata", - "cloud/ProvisionTenantRequest:organizationId", - "cloud/ProvisionTenantRequest:plan", - "cloud/ProvisionTenantRequest:region", - "cloud/ProvisionTenantRequest:storageLimitMb", - "cloud/ProvisionTenantResponse:durationMs", - "cloud/ProvisionTenantResponse:tenant", - "cloud/ProvisionTenantResponse:warnings", - "cloud/PublishPackageVersionRequest:publishedBy", - "cloud/Publisher:description", - "cloud/Publisher:email", - "cloud/Publisher:id", - "cloud/Publisher:logoUrl", - "cloud/Publisher:name", - "cloud/Publisher:registeredAt", - "cloud/Publisher:type", - "cloud/Publisher:verification", - "cloud/Publisher:website", - "cloud/PublisherProfile:agreementVersion", - "cloud/PublisherProfile:organizationId", - "cloud/PublisherProfile:publisherId", - "cloud/PublisherProfile:registeredAt", - "cloud/PublisherProfile:supportEmail", - "cloud/PublisherProfile:verification", - "cloud/PublisherProfile:website", - "cloud/PublishingAnalyticsRequest:listingId", - "cloud/PublishingAnalyticsRequest:metrics", - "cloud/PublishingAnalyticsRequest:timeRange", - "cloud/PublishingAnalyticsResponse:listingId", - "cloud/PublishingAnalyticsResponse:ratingDistribution", - "cloud/PublishingAnalyticsResponse:summary", - "cloud/PublishingAnalyticsResponse:timeRange", - "cloud/PublishingAnalyticsResponse:timeSeries", - "cloud/RecommendedApp:activeInstalls", - "cloud/RecommendedApp:averageRating", - "cloud/RecommendedApp:category", - "cloud/RecommendedApp:iconUrl", - "cloud/RecommendedApp:listingId", - "cloud/RecommendedApp:name", - "cloud/RecommendedApp:pricing", - "cloud/RecommendedApp:reason", - "cloud/RecommendedApp:tagline", - "cloud/ReviewCriterion:category", - "cloud/ReviewCriterion:description", - "cloud/ReviewCriterion:id", - "cloud/ReviewCriterion:notes", - "cloud/ReviewCriterion:passed", - "cloud/ReviewCriterion:required", - "cloud/RollbackEnvironmentPackageRequest:rolledBackBy", - "cloud/RollbackEnvironmentPackageRequest:targetPackageVersionId", - "cloud/SubmissionReview:completedAt", - "cloud/SubmissionReview:criteria", - "cloud/SubmissionReview:decision", - "cloud/SubmissionReview:feedback", - "cloud/SubmissionReview:id", - "cloud/SubmissionReview:internalNotes", - "cloud/SubmissionReview:rejectionReasons", - "cloud/SubmissionReview:reviewerId", - "cloud/SubmissionReview:startedAt", - "cloud/SubmissionReview:submissionId", - "cloud/SubmitReviewRequest:body", - "cloud/SubmitReviewRequest:listingId", - "cloud/SubmitReviewRequest:rating", - "cloud/SubmitReviewRequest:title", - "cloud/TemplateManifest:category", - "cloud/TemplateManifest:description", - "cloud/TemplateManifest:displayName", - "cloud/TemplateManifest:homepageUrl", - "cloud/TemplateManifest:iconUrl", - "cloud/TemplateManifest:isStarter", - "cloud/TemplateManifest:license", - "cloud/TemplateManifest:manifestId", - "cloud/TemplateManifest:name", - "cloud/TemplateManifest:preview", - "cloud/TemplateManifest:publisher", - "cloud/TemplateManifest:readmePath", - "cloud/TemplateManifest:scaffold", - "cloud/TemplateManifest:skills", - "cloud/TemplateManifest:specVersion", - "cloud/TemplateManifest:tags", - "cloud/TemplateManifest:translations", - "cloud/TemplateManifest:visibility", - "cloud/TenantContext:databaseUrl", - "cloud/TenantContext:metadata", - "cloud/TenantContext:organizationId", - "cloud/TenantContext:organizationSlug", - "cloud/TenantContext:plan", - "cloud/TenantContext:tenantId", - "cloud/TenantDatabase:authToken", - "cloud/TenantDatabase:createdAt", - "cloud/TenantDatabase:databaseName", - "cloud/TenantDatabase:databaseUrl", - "cloud/TenantDatabase:id", - "cloud/TenantDatabase:lastAccessedAt", - "cloud/TenantDatabase:metadata", - "cloud/TenantDatabase:organizationId", - "cloud/TenantDatabase:plan", - "cloud/TenantDatabase:region", - "cloud/TenantDatabase:status", - "cloud/TenantDatabase:storageLimitMb", - "cloud/TenantDatabase:updatedAt", - "cloud/TenantRoutingConfig:customDomainMapping", - "cloud/TenantRoutingConfig:defaultTenantId", - "cloud/TenantRoutingConfig:enabled", - "cloud/TenantRoutingConfig:identificationSources", - "cloud/TenantRoutingConfig:jwtOrganizationClaim", - "cloud/TenantRoutingConfig:subdomainPattern", - "cloud/TenantRoutingConfig:tenantHeaderName", - "cloud/TimeSeriesPoint:date", - "cloud/TimeSeriesPoint:value", - "cloud/TrendingListing:installVelocity", - "cloud/TrendingListing:listingId", - "cloud/TrendingListing:period", - "cloud/TrendingListing:rank", - "cloud/TrendingListing:trendScore", - "cloud/UpdateListingRequest:category", - "cloud/UpdateListingRequest:description", - "cloud/UpdateListingRequest:documentationUrl", - "cloud/UpdateListingRequest:iconUrl", - "cloud/UpdateListingRequest:listingId", - "cloud/UpdateListingRequest:name", - "cloud/UpdateListingRequest:priceInCents", - "cloud/UpdateListingRequest:pricing", - "cloud/UpdateListingRequest:repositoryUrl", - "cloud/UpdateListingRequest:screenshots", - "cloud/UpdateListingRequest:supportUrl", - "cloud/UpdateListingRequest:tagline", - "cloud/UpdateListingRequest:tags", - "cloud/UpdatePackageRequest:category", - "cloud/UpdatePackageRequest:description", - "cloud/UpdatePackageRequest:displayName", - "cloud/UpdatePackageRequest:homepageUrl", - "cloud/UpdatePackageRequest:iconUrl", - "cloud/UpdatePackageRequest:isStarter", - "cloud/UpdatePackageRequest:license", - "cloud/UpdatePackageRequest:publisher", - "cloud/UpdatePackageRequest:readme", - "cloud/UpdatePackageRequest:tags", - "cloud/UpdatePackageRequest:translations", - "cloud/UpdatePackageRequest:visibility", - "cloud/UpdatePackageVersionRequest:isPreRelease", - "cloud/UpdatePackageVersionRequest:manifestJson", - "cloud/UpdatePackageVersionRequest:releaseNotes", - "cloud/UpgradeEnvironmentPackageRequest:allowDraft", - "cloud/UpgradeEnvironmentPackageRequest:targetPackageVersionId", - "cloud/UpgradeEnvironmentPackageRequest:targetVersion", - "cloud/UpgradeEnvironmentPackageRequest:upgradedBy", - "cloud/UserReview:appVersion", - "cloud/UserReview:body", - "cloud/UserReview:displayName", - "cloud/UserReview:helpfulCount", - "cloud/UserReview:id", - "cloud/UserReview:listingId", - "cloud/UserReview:moderationStatus", - "cloud/UserReview:publisherResponse", - "cloud/UserReview:rating", - "cloud/UserReview:submittedAt", - "cloud/UserReview:title", - "cloud/UserReview:updatedAt", - "cloud/UserReview:userId", - "cloud/VersionRelease:artifactChecksum", - "cloud/VersionRelease:artifactUrl", - "cloud/VersionRelease:changelog", - "cloud/VersionRelease:channel", - "cloud/VersionRelease:deprecated", - "cloud/VersionRelease:deprecationMessage", - "cloud/VersionRelease:minPlatformVersion", - "cloud/VersionRelease:releaseNotes", - "cloud/VersionRelease:releasedAt", - "cloud/VersionRelease:version", "data/Address:city", "data/Address:country", "data/Address:countryCode", @@ -2948,7 +2660,7 @@ "data/AddressValue:state", "data/AddressValue:street", "data/AggregationNode:alias", - "data/AggregationNode:distinct", + "data/AggregationNode:distinct [RETIRED]", "data/AggregationNode:field", "data/AggregationNode:filter", "data/AggregationNode:function", @@ -2966,11 +2678,16 @@ "data/AnalyticsQuery:timeDimensions", "data/AnalyticsQuery:timezone", "data/AnalyticsQuery:where", - "data/AutoPersistenceConfig:autoSaveInterval", + "data/AutoPersistenceConfig:autoSaveInterval [RETIRED]", + "data/AutoPersistenceConfig:autoSaveIntervalMs", "data/AutoPersistenceConfig:key", "data/AutoPersistenceConfig:path", "data/AutoPersistenceConfig:type", "data/BaseEngineOptions:context", + "data/ComparisonOperator:$gt", + "data/ComparisonOperator:$gte", + "data/ComparisonOperator:$lt", + "data/ComparisonOperator:$lte", "data/ConditionalValidation:_lock", "data/ConditionalValidation:_lockDocsUrl", "data/ConditionalValidation:_lockReason", @@ -3010,6 +2727,13 @@ "data/CrossFieldValidation:severity", "data/CrossFieldValidation:tags", "data/CrossFieldValidation:type", + "data/Cube:_lock", + "data/Cube:_lockDocsUrl", + "data/Cube:_lockReason", + "data/Cube:_lockSource", + "data/Cube:_packageId", + "data/Cube:_packageVersion", + "data/Cube:_provenance", "data/Cube:description", "data/Cube:dimensions", "data/Cube:joins", @@ -3073,7 +2797,7 @@ "data/DataEngineUpdateOptions:filter", "data/DataEngineUpdateOptions:multi", "data/DataEngineUpdateOptions:returning", - "data/DataEngineUpdateOptions:upsert", + "data/DataEngineUpdateOptions:upsert [RETIRED]", "data/DataEngineUpdateRequest:data", "data/DataEngineUpdateRequest:id", "data/DataEngineUpdateRequest:method", @@ -3197,7 +2921,8 @@ "data/DriverOptions:skipCache", "data/DriverOptions:tenantId", "data/DriverOptions:tenantIds", - "data/DriverOptions:timeout", + "data/DriverOptions:timeout [RETIRED]", + "data/DriverOptions:timeoutMs", "data/DriverOptions:timezone", "data/DriverOptions:traceContext", "data/DriverOptions:transaction", @@ -3205,9 +2930,9 @@ "data/DroppedFieldsEvent:object", "data/DroppedFieldsEvent:reason", "data/ESignatureConfig:enabled", - "data/ESignatureConfig:expirationDays", + "data/ESignatureConfig:expirationDays [RETIRED]", "data/ESignatureConfig:provider", - "data/ESignatureConfig:reminderDays", + "data/ESignatureConfig:reminderDays [RETIRED]", "data/ESignatureConfig:signers", "data/EngineAggregateOptions:aggregations", "data/EngineAggregateOptions:context", @@ -3235,7 +2960,7 @@ "data/EngineUpdateOptions:context", "data/EngineUpdateOptions:multi", "data/EngineUpdateOptions:returning", - "data/EngineUpdateOptions:upsert", + "data/EngineUpdateOptions:upsert [RETIRED]", "data/EngineUpdateOptions:where", "data/EqualityOperator:$eq", "data/EqualityOperator:$ne", @@ -3251,32 +2976,11 @@ "data/ExternalColumn:primaryKey", "data/ExternalColumn:sqlType", "data/ExternalColumn:suggestedFieldType", - "data/ExternalDataSource:authentication", - "data/ExternalDataSource:endpoint", - "data/ExternalDataSource:id", - "data/ExternalDataSource:name", - "data/ExternalDataSource:type", "data/ExternalDatasourceSettings:allowWrites", "data/ExternalDatasourceSettings:allowedSchemas", "data/ExternalDatasourceSettings:credentialsRef", "data/ExternalDatasourceSettings:queryTimeoutMs", "data/ExternalDatasourceSettings:validation", - "data/ExternalFieldMapping:defaultValue", - "data/ExternalFieldMapping:readonly", - "data/ExternalFieldMapping:source", - "data/ExternalFieldMapping:target", - "data/ExternalFieldMapping:transform [RETIRED]", - "data/ExternalFieldMapping:type", - "data/ExternalLookup:caching", - "data/ExternalLookup:dataSource", - "data/ExternalLookup:fallback", - "data/ExternalLookup:fieldMappings", - "data/ExternalLookup:fieldName", - "data/ExternalLookup:pagination", - "data/ExternalLookup:query", - "data/ExternalLookup:rateLimit", - "data/ExternalLookup:retry", - "data/ExternalLookup:transform", "data/ExternalTable:columns", "data/ExternalTable:indexes", "data/ExternalTable:remoteName", @@ -3312,11 +3016,13 @@ "data/Field:inlineEdit", "data/Field:inlineHelpText", "data/Field:inlineTitle", + "data/Field:internal", "data/Field:label", "data/Field:language", "data/Field:lookupColumns", "data/Field:lookupFilters", "data/Field:lookupPageSize", + "data/Field:maskingRule", "data/Field:max", "data/Field:maxLength", "data/Field:maxSize", @@ -3325,17 +3031,21 @@ "data/Field:multiple", "data/Field:name", "data/Field:options", + "data/Field:placeholder", "data/Field:precision", "data/Field:readonly", "data/Field:readonlyWhen", "data/Field:reference", + "data/Field:referenceVia", "data/Field:relatedList", "data/Field:relatedListColumns", + "data/Field:relatedListFilter", "data/Field:relatedListTitle", "data/Field:required", "data/Field:requiredPermissions", "data/Field:requiredWhen", "data/Field:returnType", + "data/Field:rows", "data/Field:scale", "data/Field:searchable", "data/Field:sortable", @@ -3346,10 +3056,34 @@ "data/Field:trackHistory", "data/Field:type", "data/Field:unique", + "data/Field:useGrouping", + "data/Field:valueDomain", "data/Field:visibleWhen", "data/Field:widget", + "data/FieldMaskingKeep:keepHead", + "data/FieldMaskingKeep:keepTail", + "data/FieldOperators:$between", + "data/FieldOperators:$contains", + "data/FieldOperators:$endsWith", + "data/FieldOperators:$eq", + "data/FieldOperators:$exists", + "data/FieldOperators:$gt", + "data/FieldOperators:$gte", + "data/FieldOperators:$icontains", + "data/FieldOperators:$ilike", + "data/FieldOperators:$in", + "data/FieldOperators:$like", + "data/FieldOperators:$lt", + "data/FieldOperators:$lte", + "data/FieldOperators:$ne", + "data/FieldOperators:$nin", + "data/FieldOperators:$notContains", + "data/FieldOperators:$null", + "data/FieldOperators:$startsWith", "data/FieldReference:$field", - "data/FilePersistenceConfig:autoSaveInterval", + "data/FieldReference:addDays", + "data/FilePersistenceConfig:autoSaveInterval [RETIRED]", + "data/FilePersistenceConfig:autoSaveIntervalMs", "data/FilePersistenceConfig:path", "data/FilePersistenceConfig:type", "data/FileValue:alt", @@ -3386,7 +3120,30 @@ "data/FullTextSearch:minScore", "data/FullTextSearch:operator", "data/FullTextSearch:query", + "data/Hook:_lock", + "data/Hook:_lockDocsUrl", + "data/Hook:_lockReason", + "data/Hook:_lockSource", + "data/Hook:_packageId", + "data/Hook:_packageVersion", + "data/Hook:_provenance", + "data/Hook:async", + "data/Hook:body", + "data/Hook:condition", + "data/Hook:description", + "data/Hook:events", + "data/Hook:handler", + "data/Hook:label", + "data/Hook:name", + "data/Hook:object", + "data/Hook:onError", + "data/Hook:priority", + "data/Hook:retryPolicy", + "data/Hook:runAs", + "data/Hook:timeout [RETIRED]", + "data/Hook:timeoutMs", "data/HookContext:api", + "data/HookContext:dispatch", "data/HookContext:event", "data/HookContext:id", "data/HookContext:input", @@ -3394,8 +3151,10 @@ "data/HookContext:previous", "data/HookContext:provenance", "data/HookContext:ql", + "data/HookContext:referentialFieldClear", "data/HookContext:result", "data/HookContext:session", + "data/HookContext:submitted", "data/HookContext:transaction", "data/HookContext:user", "data/ImportFieldMapping:params", @@ -3407,6 +3166,26 @@ "data/Index:partial [RETIRED]", "data/Index:type [RETIRED]", "data/Index:unique", + "data/InlineGridColumn:accept", + "data/InlineGridColumn:autofill", + "data/InlineGridColumn:computed", + "data/InlineGridColumn:defaultHidden", + "data/InlineGridColumn:displayField", + "data/InlineGridColumn:expr", + "data/InlineGridColumn:idField", + "data/InlineGridColumn:label", + "data/InlineGridColumn:multiple", + "data/InlineGridColumn:name", + "data/InlineGridColumn:options", + "data/InlineGridColumn:prefix", + "data/InlineGridColumn:readonlyWhen", + "data/InlineGridColumn:reference", + "data/InlineGridColumn:required", + "data/InlineGridColumn:requiredWhen", + "data/InlineGridColumn:scale", + "data/InlineGridColumn:step", + "data/InlineGridColumn:type", + "data/InlineGridColumn:width", "data/JSONValidation:_lock", "data/JSONValidation:_lockDocsUrl", "data/JSONValidation:_lockReason", @@ -3457,7 +3236,6 @@ "data/Mapping:targetObject", "data/Mapping:upsertKey", "data/Metric:description", - "data/Metric:filters", "data/Metric:format", "data/Metric:label", "data/Metric:name", @@ -3467,14 +3245,14 @@ "data/MongoConfig:database", "data/MongoConfig:host", "data/MongoConfig:options", - "data/MongoConfig:password", + "data/MongoConfig:password [RETIRED]", "data/MongoConfig:port", "data/MongoConfig:url", "data/MongoConfig:username", "data/MysqlConfig:autoMigrate", "data/MysqlConfig:database", "data/MysqlConfig:host", - "data/MysqlConfig:password", + "data/MysqlConfig:password [RETIRED]", "data/MysqlConfig:port", "data/MysqlConfig:ssl", "data/MysqlConfig:url", @@ -3521,12 +3299,16 @@ "data/NoSQLQueryOptions:profile", "data/NoSQLQueryOptions:projection", "data/NoSQLQueryOptions:readFromSecondary", - "data/NoSQLQueryOptions:timeout", + "data/NoSQLQueryOptions:timeout [RETIRED]", + "data/NoSQLQueryOptions:timeoutMs", "data/NoSQLQueryOptions:useCursor", "data/NoSQLTransactionOptions:maxCommitTimeMS", "data/NoSQLTransactionOptions:readConcern", "data/NoSQLTransactionOptions:readPreference", "data/NoSQLTransactionOptions:writeConcern", + "data/NormalizedFilter:$and", + "data/NormalizedFilter:$not", + "data/NormalizedFilter:$or", "data/Object:_lock", "data/Object:_lockDocsUrl", "data/Object:_lockReason", @@ -3540,6 +3322,7 @@ "data/Object:datasource", "data/Object:description", "data/Object:displayNameField", + "data/Object:editMode", "data/Object:enable", "data/Object:external", "data/Object:externalSharingModel", @@ -3606,6 +3389,7 @@ "data/ObjectFieldGroup:icon", "data/ObjectFieldGroup:key", "data/ObjectFieldGroup:label", + "data/ObjectFieldGroup:visibleWhen", "data/PerOperationRequiredPermissions:create", "data/PerOperationRequiredPermissions:delete", "data/PerOperationRequiredPermissions:read", @@ -3618,7 +3402,7 @@ "data/PostgresConfig:autoMigrate", "data/PostgresConfig:database", "data/PostgresConfig:host", - "data/PostgresConfig:password", + "data/PostgresConfig:password [RETIRED]", "data/PostgresConfig:port", "data/PostgresConfig:schema", "data/PostgresConfig:ssl", @@ -3643,6 +3427,7 @@ "data/Query:where", "data/Query:windowFunctions [RETIRED]", "data/QueryFilter:where", + "data/RangeOperator:$between", "data/ReferenceResolution:field", "data/ReferenceResolution:fieldType", "data/ReferenceResolution:multiple", @@ -3708,6 +3493,7 @@ "data/Seed:_provenance", "data/Seed:env", "data/Seed:externalId", + "data/Seed:locale", "data/Seed:mode", "data/Seed:object", "data/Seed:records", @@ -3731,6 +3517,7 @@ "data/SeedLoaderConfig:env", "data/SeedLoaderConfig:haltOnError", "data/SeedLoaderConfig:identity", + "data/SeedLoaderConfig:locale", "data/SeedLoaderConfig:multiPass", "data/SeedLoaderConfig:organizationId", "data/SeedLoaderConfig:transaction", @@ -3744,6 +3531,7 @@ "data/SeedLoaderResult:summary", "data/SelectOption:color", "data/SelectOption:default", + "data/SelectOption:description", "data/SelectOption:label", "data/SelectOption:value", "data/SelectOption:visibleWhen", @@ -3784,10 +3572,22 @@ "data/StringOperator:$contains", "data/StringOperator:$endsWith", "data/StringOperator:$icontains", + "data/StringOperator:$ilike", + "data/StringOperator:$like", "data/StringOperator:$notContains", "data/StringOperator:$startsWith", "data/TenancyConfig:enabled", + "data/TenancyConfig:organizationField", "data/TenancyConfig:tenantField", + "data/TursoConfig:authToken [RETIRED]", + "data/TursoConfig:concurrency", + "data/TursoConfig:encryptionKey", + "data/TursoConfig:mode", + "data/TursoConfig:sync", + "data/TursoConfig:syncUrl", + "data/TursoConfig:timeout [RETIRED]", + "data/TursoConfig:timeoutMs", + "data/TursoConfig:url", "identity/Account:accessToken", "identity/Account:createdAt", "identity/Account:expiresAt", @@ -3802,25 +3602,6 @@ "identity/Account:type", "identity/Account:updatedAt", "identity/Account:userId", - "identity/ApiKey:createdAt", - "identity/ApiKey:enabled", - "identity/ApiKey:expiresAt", - "identity/ApiKey:id", - "identity/ApiKey:lastRefetchAt", - "identity/ApiKey:lastUsedAt", - "identity/ApiKey:metadata", - "identity/ApiKey:name", - "identity/ApiKey:organizationId", - "identity/ApiKey:permissions", - "identity/ApiKey:prefix", - "identity/ApiKey:rateLimitEnabled", - "identity/ApiKey:rateLimitMax", - "identity/ApiKey:rateLimitTimeWindow", - "identity/ApiKey:remaining", - "identity/ApiKey:scopes", - "identity/ApiKey:start", - "identity/ApiKey:updatedAt", - "identity/ApiKey:userId", "identity/EvalUser:email", "identity/EvalUser:id", "identity/EvalUser:isPlatformAdmin", @@ -3978,15 +3759,23 @@ "integration/CircuitBreakerConfig:failureThreshold", "integration/CircuitBreakerConfig:fallbackStrategy", "integration/CircuitBreakerConfig:halfOpenMaxRequests", - "integration/CircuitBreakerConfig:monitoringWindow", + "integration/CircuitBreakerConfig:monitoringWindow [RETIRED]", + "integration/CircuitBreakerConfig:monitoringWindowMs", "integration/CircuitBreakerConfig:resetTimeoutMs", + "integration/Connector:_lock", + "integration/Connector:_lockDocsUrl", + "integration/Connector:_lockReason", + "integration/Connector:_lockSource", + "integration/Connector:_packageId", + "integration/Connector:_packageVersion", + "integration/Connector:_provenance", "integration/Connector:actions", "integration/Connector:auth", "integration/Connector:authentication", "integration/Connector:connectionTimeoutMs", "integration/Connector:description", "integration/Connector:enabled", - "integration/Connector:errorMapping", + "integration/Connector:errorMapping [RETIRED]", "integration/Connector:fieldMappings", "integration/Connector:health", "integration/Connector:icon", @@ -4029,7 +3818,8 @@ "integration/ConnectorInstanceBearerAuth:type", "integration/ConnectorInstanceNoAuth:type", "integration/ConnectorTrigger:description", - "integration/ConnectorTrigger:interval", + "integration/ConnectorTrigger:interval [RETIRED]", + "integration/ConnectorTrigger:intervalSeconds", "integration/ConnectorTrigger:key", "integration/ConnectorTrigger:label", "integration/ConnectorTrigger:type", @@ -4039,16 +3829,22 @@ "integration/DataSyncConfig:direction", "integration/DataSyncConfig:filters", "integration/DataSyncConfig:realtimeSync", - "integration/DataSyncConfig:schedule", "integration/DataSyncConfig:strategy", "integration/DataSyncConfig:timestampField", + "integration/DeclarativeConnectorEntry:_lock", + "integration/DeclarativeConnectorEntry:_lockDocsUrl", + "integration/DeclarativeConnectorEntry:_lockReason", + "integration/DeclarativeConnectorEntry:_lockSource", + "integration/DeclarativeConnectorEntry:_packageId", + "integration/DeclarativeConnectorEntry:_packageVersion", + "integration/DeclarativeConnectorEntry:_provenance", "integration/DeclarativeConnectorEntry:actions", "integration/DeclarativeConnectorEntry:auth", "integration/DeclarativeConnectorEntry:authentication", "integration/DeclarativeConnectorEntry:connectionTimeoutMs", "integration/DeclarativeConnectorEntry:description", "integration/DeclarativeConnectorEntry:enabled", - "integration/DeclarativeConnectorEntry:errorMapping", + "integration/DeclarativeConnectorEntry:errorMapping [RETIRED]", "integration/DeclarativeConnectorEntry:fieldMappings", "integration/DeclarativeConnectorEntry:health", "integration/DeclarativeConnectorEntry:icon", @@ -4065,17 +3861,6 @@ "integration/DeclarativeConnectorEntry:triggers", "integration/DeclarativeConnectorEntry:type", "integration/DeclarativeConnectorEntry:webhooks", - "integration/ErrorMappingConfig:defaultCategory", - "integration/ErrorMappingConfig:logUnmapped", - "integration/ErrorMappingConfig:rules", - "integration/ErrorMappingConfig:unmappedBehavior", - "integration/ErrorMappingRule:retryable", - "integration/ErrorMappingRule:severity", - "integration/ErrorMappingRule:sourceCode", - "integration/ErrorMappingRule:sourceMessage", - "integration/ErrorMappingRule:targetCategory", - "integration/ErrorMappingRule:targetCode", - "integration/ErrorMappingRule:userMessage", "integration/HealthCheckConfig:enabled", "integration/HealthCheckConfig:endpoint", "integration/HealthCheckConfig:expectedStatus", @@ -4113,12 +3898,6 @@ "integration/WebhookConfig:timeoutMs", "integration/WebhookConfig:triggers", "integration/WebhookConfig:url", - "kernel/AdvancedPluginLifecycleConfig:degradation", - "kernel/AdvancedPluginLifecycleConfig:health", - "kernel/AdvancedPluginLifecycleConfig:hotReload", - "kernel/AdvancedPluginLifecycleConfig:observability", - "kernel/AdvancedPluginLifecycleConfig:resources", - "kernel/AdvancedPluginLifecycleConfig:updates", "kernel/ArtifactChecksum:algorithm", "kernel/ArtifactChecksum:files", "kernel/ArtifactFileEntry:category", @@ -4137,9 +3916,6 @@ "kernel/BreakingChange:removedIn", "kernel/BreakingChange:severity", "kernel/BreakingChange:type", - "kernel/CLICommandContribution:description", - "kernel/CLICommandContribution:module", - "kernel/CLICommandContribution:name", "kernel/ClusterCapabilityConfig:driver", "kernel/ClusterCapabilityConfig:driverOptions", "kernel/ClusterCapabilityConfig:heartbeatMs", @@ -4157,12 +3933,6 @@ "kernel/CompatibilityMatrixEntry:migrationScript", "kernel/CompatibilityMatrixEntry:testCoverage", "kernel/CompatibilityMatrixEntry:to", - "kernel/CustomizationPolicy:allowAddFields", - "kernel/CustomizationPolicy:allowCustomization", - "kernel/CustomizationPolicy:allowDeleteFields", - "kernel/CustomizationPolicy:customizableFields", - "kernel/CustomizationPolicy:lockedFields", - "kernel/CustomizationPolicy:metadataType", "kernel/DeadLetterQueueEntry:error", "kernel/DeadLetterQueueEntry:event", "kernel/DeadLetterQueueEntry:failedHandler", @@ -4199,13 +3969,6 @@ "kernel/DisablePackageRequest:id", "kernel/DisablePackageResponse:message", "kernel/DisablePackageResponse:package", - "kernel/DistributedStateConfig:auth", - "kernel/DistributedStateConfig:customConfig", - "kernel/DistributedStateConfig:endpoints", - "kernel/DistributedStateConfig:keyPrefix", - "kernel/DistributedStateConfig:provider", - "kernel/DistributedStateConfig:replication", - "kernel/DistributedStateConfig:ttl", "kernel/EnablePackageRequest:id", "kernel/EnablePackageResponse:message", "kernel/EnablePackageResponse:package", @@ -4259,7 +4022,8 @@ "kernel/EventMetadata:userId", "kernel/EventPersistence:enabled", "kernel/EventPersistence:filter", - "kernel/EventPersistence:retention", + "kernel/EventPersistence:retention [RETIRED]", + "kernel/EventPersistence:retentionDays", "kernel/EventPersistence:storage", "kernel/EventQueueConfig:concurrency", "kernel/EventQueueConfig:deadLetterQueue", @@ -4277,7 +4041,8 @@ "kernel/EventRoute:transform", "kernel/EventSourcingConfig:aggregateTypes", "kernel/EventSourcingConfig:enabled", - "kernel/EventSourcingConfig:retention", + "kernel/EventSourcingConfig:retention [RETIRED]", + "kernel/EventSourcingConfig:retentionDays", "kernel/EventSourcingConfig:snapshotInterval", "kernel/EventSourcingConfig:snapshotRetention", "kernel/EventSourcingConfig:storage", @@ -4302,6 +4067,7 @@ "kernel/ExecutionContext:actor", "kernel/ExecutionContext:attributedUserId", "kernel/ExecutionContext:audience", + "kernel/ExecutionContext:authGate", "kernel/ExecutionContext:currency", "kernel/ExecutionContext:email", "kernel/ExecutionContext:flowRunId", @@ -4310,6 +4076,7 @@ "kernel/ExecutionContext:oauthScopes", "kernel/ExecutionContext:onBehalfOf", "kernel/ExecutionContext:org_user_ids", + "kernel/ExecutionContext:performedBy", "kernel/ExecutionContext:permissions", "kernel/ExecutionContext:positions", "kernel/ExecutionContext:posture", @@ -4333,32 +4100,17 @@ "kernel/ExtensionPoint:id", "kernel/ExtensionPoint:name", "kernel/ExtensionPoint:type", - "kernel/FieldChange:changedAt", - "kernel/FieldChange:changedBy", - "kernel/FieldChange:currentValue", - "kernel/FieldChange:originalValue", - "kernel/FieldChange:path", "kernel/GetPackageRequest:id", "kernel/GetPackageResponse:package", - "kernel/GracefulDegradation:autoRecovery", - "kernel/GracefulDegradation:criticalDependencies", - "kernel/GracefulDegradation:degradedFeatures", - "kernel/GracefulDegradation:enabled", - "kernel/GracefulDegradation:fallbackMode", - "kernel/GracefulDegradation:optionalDependencies", - "kernel/HealthStatus:details", - "kernel/HealthStatus:healthy", - "kernel/HealthStatus:message", - "kernel/HealthStatus:timestamp", "kernel/HotReloadConfig:afterReload", "kernel/HotReloadConfig:beforeReload", - "kernel/HotReloadConfig:debounceDelay", - "kernel/HotReloadConfig:distributedConfig", + "kernel/HotReloadConfig:debounceDelay [RETIRED]", + "kernel/HotReloadConfig:debounceDelayMs", "kernel/HotReloadConfig:enabled", "kernel/HotReloadConfig:preserveState", "kernel/HotReloadConfig:shutdownTimeout", "kernel/HotReloadConfig:stateStrategy", - "kernel/HotReloadConfig:watchPatterns", + "kernel/HotReloadConfig:watchPatterns [RETIRED]", "kernel/InstallPackageRequest:enableOnInstall", "kernel/InstallPackageRequest:manifest", "kernel/InstallPackageRequest:platformVersion", @@ -4383,8 +4135,9 @@ "kernel/KernelContext:features", "kernel/KernelContext:instanceId", "kernel/KernelContext:mode", - "kernel/KernelContext:previewMode", - "kernel/KernelContext:startTime", + "kernel/KernelContext:previewMode [RETIRED]", + "kernel/KernelContext:startTime [RETIRED]", + "kernel/KernelContext:startedAt", "kernel/KernelContext:version", "kernel/KernelContext:workspaceRoot", "kernel/KernelSecurityPolicy:auditLog", @@ -4423,8 +4176,8 @@ "kernel/ListPackagesRequest:type", "kernel/ListPackagesResponse:packages", "kernel/ListPackagesResponse:total", - "kernel/Manifest:capabilities", - "kernel/Manifest:configuration", + "kernel/Manifest:capabilities [RETIRED]", + "kernel/Manifest:configuration [RETIRED]", "kernel/Manifest:contributes", "kernel/Manifest:data", "kernel/Manifest:datasources", @@ -4433,10 +4186,11 @@ "kernel/Manifest:description", "kernel/Manifest:engine", "kernel/Manifest:engines", - "kernel/Manifest:extensions", + "kernel/Manifest:extensions [RETIRED]", "kernel/Manifest:id", "kernel/Manifest:integrity", - "kernel/Manifest:loading", + "kernel/Manifest:loading [RETIRED]", + "kernel/Manifest:main", "kernel/Manifest:name", "kernel/Manifest:namespace", "kernel/Manifest:navigationContributions", @@ -4447,22 +4201,6 @@ "kernel/Manifest:scope", "kernel/Manifest:type", "kernel/Manifest:version", - "kernel/MergeConflict:baseValue", - "kernel/MergeConflict:customValue", - "kernel/MergeConflict:incomingValue", - "kernel/MergeConflict:path", - "kernel/MergeConflict:reason", - "kernel/MergeConflict:suggestedResolution", - "kernel/MergeResult:autoResolved", - "kernel/MergeResult:conflicts", - "kernel/MergeResult:mergedMetadata", - "kernel/MergeResult:stats", - "kernel/MergeResult:success", - "kernel/MergeResult:updatedOverlay", - "kernel/MergeStrategyConfig:alwaysAcceptIncoming", - "kernel/MergeStrategyConfig:alwaysKeepCustom", - "kernel/MergeStrategyConfig:autoResolveNonConflicting", - "kernel/MergeStrategyConfig:defaultStrategy", "kernel/MetadataBulkResult:errors", "kernel/MetadataBulkResult:failed", "kernel/MetadataBulkResult:succeeded", @@ -4489,28 +4227,13 @@ "kernel/MetadataManagerConfig:validation", "kernel/MetadataManagerConfig:watch", "kernel/MetadataManagerConfig:watchOptions", - "kernel/MetadataOverlay:active", - "kernel/MetadataOverlay:baseName", - "kernel/MetadataOverlay:baseType", - "kernel/MetadataOverlay:changes", - "kernel/MetadataOverlay:createdAt", - "kernel/MetadataOverlay:createdBy", - "kernel/MetadataOverlay:id", - "kernel/MetadataOverlay:owner", - "kernel/MetadataOverlay:packageId", - "kernel/MetadataOverlay:packageVersion", - "kernel/MetadataOverlay:patch", - "kernel/MetadataOverlay:scope", - "kernel/MetadataOverlay:tenantId", - "kernel/MetadataOverlay:updatedAt", - "kernel/MetadataOverlay:updatedBy", - "kernel/MetadataPluginConfig:additionalTypes", + "kernel/MetadataPluginConfig:additionalTypes [RETIRED]", "kernel/MetadataPluginConfig:bootstrap", "kernel/MetadataPluginConfig:cacheMaxItems", - "kernel/MetadataPluginConfig:customizationPolicies", + "kernel/MetadataPluginConfig:customizationPolicies [RETIRED]", "kernel/MetadataPluginConfig:enableEvents", "kernel/MetadataPluginConfig:enableVersioning", - "kernel/MetadataPluginConfig:mergeStrategy", + "kernel/MetadataPluginConfig:mergeStrategy [RETIRED]", "kernel/MetadataPluginConfig:storage", "kernel/MetadataPluginConfig:validateOnWrite", "kernel/MetadataPluginManifest:capabilities", @@ -4591,7 +4314,8 @@ "kernel/PackageDependencyResolutionResult:errors", "kernel/PackageDependencyResolutionResult:graph", "kernel/PackageDependencyResolutionResult:installOrder", - "kernel/PackageDependencyResolutionResult:resolvedIn", + "kernel/PackageDependencyResolutionResult:resolvedIn [RETIRED]", + "kernel/PackageDependencyResolutionResult:resolvedInMs", "kernel/PackageDependencyResolutionResult:status", "kernel/Plugin:author", "kernel/Plugin:default", @@ -4602,13 +4326,6 @@ "kernel/Plugin:staticPath", "kernel/Plugin:type", "kernel/Plugin:version", - "kernel/PluginCaching:compression", - "kernel/PluginCaching:enabled", - "kernel/PluginCaching:invalidateOn", - "kernel/PluginCaching:keyStrategy", - "kernel/PluginCaching:maxSize", - "kernel/PluginCaching:storage", - "kernel/PluginCaching:ttl", "kernel/PluginCapability:certificationDate", "kernel/PluginCapability:certified", "kernel/PluginCapability:conformance", @@ -4621,11 +4338,6 @@ "kernel/PluginCapabilityManifest:implements", "kernel/PluginCapabilityManifest:provides", "kernel/PluginCapabilityManifest:requires", - "kernel/PluginCodeSplitting:chunkNaming", - "kernel/PluginCodeSplitting:enabled", - "kernel/PluginCodeSplitting:maxChunkSize", - "kernel/PluginCodeSplitting:sharedDependencies", - "kernel/PluginCodeSplitting:strategy", "kernel/PluginCompatibilityMatrix:compatibilityMatrix", "kernel/PluginCompatibilityMatrix:currentVersion", "kernel/PluginCompatibilityMatrix:minimumCompatibleVersion", @@ -4636,56 +4348,30 @@ "kernel/PluginDependency:reason", "kernel/PluginDependency:requiredCapabilities", "kernel/PluginDependency:version", - "kernel/PluginDependencyResolution:circularDependencies", - "kernel/PluginDependencyResolution:conflictResolution", - "kernel/PluginDependencyResolution:optionalDependencies", - "kernel/PluginDependencyResolution:peerDependencies", - "kernel/PluginDependencyResolution:strategy", "kernel/PluginDependencyResolutionResult:conflicts", "kernel/PluginDependencyResolutionResult:dependencyGraph", "kernel/PluginDependencyResolutionResult:installationOrder", "kernel/PluginDependencyResolutionResult:resolved", "kernel/PluginDependencyResolutionResult:success", "kernel/PluginDependencyResolutionResult:warnings", - "kernel/PluginDynamicImport:enabled", - "kernel/PluginDynamicImport:mode", - "kernel/PluginDynamicImport:prefetch", - "kernel/PluginDynamicImport:preload", - "kernel/PluginDynamicImport:retry", - "kernel/PluginDynamicImport:timeout", - "kernel/PluginDynamicImport:webpackChunkName", "kernel/PluginEngines:platform", "kernel/PluginEngines:protocol", - "kernel/PluginHealthCheck:autoRestart", + "kernel/PluginHealthCheck:autoRestart [RETIRED]", "kernel/PluginHealthCheck:checkMethod", "kernel/PluginHealthCheck:failureThreshold", - "kernel/PluginHealthCheck:interval", - "kernel/PluginHealthCheck:maxRestartAttempts", - "kernel/PluginHealthCheck:restartBackoff", + "kernel/PluginHealthCheck:interval [RETIRED]", + "kernel/PluginHealthCheck:intervalMs", + "kernel/PluginHealthCheck:maxRestartAttempts [RETIRED]", + "kernel/PluginHealthCheck:restartBackoff [RETIRED]", "kernel/PluginHealthCheck:successThreshold", - "kernel/PluginHealthCheck:timeout", + "kernel/PluginHealthCheck:timeout [RETIRED]", + "kernel/PluginHealthCheck:timeoutMs", "kernel/PluginHealthReport:checks", "kernel/PluginHealthReport:dependencies", "kernel/PluginHealthReport:message", "kernel/PluginHealthReport:metrics", "kernel/PluginHealthReport:status", "kernel/PluginHealthReport:timestamp", - "kernel/PluginHotReload:debounceMs", - "kernel/PluginHotReload:enabled", - "kernel/PluginHotReload:environment", - "kernel/PluginHotReload:hooks", - "kernel/PluginHotReload:ignorePatterns", - "kernel/PluginHotReload:preserveState", - "kernel/PluginHotReload:productionSafety", - "kernel/PluginHotReload:stateSerialization", - "kernel/PluginHotReload:strategy", - "kernel/PluginHotReload:watchPatterns", - "kernel/PluginInitialization:critical", - "kernel/PluginInitialization:healthCheckInterval", - "kernel/PluginInitialization:mode", - "kernel/PluginInitialization:priority", - "kernel/PluginInitialization:retry", - "kernel/PluginInitialization:timeout", "kernel/PluginInstallConfig:autoUpdate", "kernel/PluginInstallConfig:config", "kernel/PluginInstallConfig:options", @@ -4698,16 +4384,6 @@ "kernel/PluginInterface:name", "kernel/PluginInterface:stability", "kernel/PluginInterface:version", - "kernel/PluginLoadingConfig:caching", - "kernel/PluginLoadingConfig:codeSplitting", - "kernel/PluginLoadingConfig:dependencyResolution", - "kernel/PluginLoadingConfig:dynamicImport", - "kernel/PluginLoadingConfig:hotReload", - "kernel/PluginLoadingConfig:initialization", - "kernel/PluginLoadingConfig:monitoring", - "kernel/PluginLoadingConfig:preload", - "kernel/PluginLoadingConfig:sandboxing", - "kernel/PluginLoadingConfig:strategy", "kernel/PluginLoadingEvent:durationMs", "kernel/PluginLoadingEvent:error", "kernel/PluginLoadingEvent:metadata", @@ -4728,12 +4404,6 @@ "kernel/PluginMetadata:requiresServices", "kernel/PluginMetadata:signature", "kernel/PluginMetadata:version", - "kernel/PluginPerformanceMonitoring:budgets", - "kernel/PluginPerformanceMonitoring:enabled", - "kernel/PluginPerformanceMonitoring:metrics", - "kernel/PluginPerformanceMonitoring:onBudgetViolation", - "kernel/PluginPerformanceMonitoring:reportingInterval", - "kernel/PluginPerformanceMonitoring:samplingRate", "kernel/PluginPermission:actions", "kernel/PluginPermission:description", "kernel/PluginPermission:filter", @@ -4749,10 +4419,6 @@ "kernel/PluginPermissions:hooks", "kernel/PluginPermissions:network", "kernel/PluginPermissions:services", - "kernel/PluginPreloadConfig:conditions", - "kernel/PluginPreloadConfig:enabled", - "kernel/PluginPreloadConfig:priority", - "kernel/PluginPreloadConfig:resources", "kernel/PluginProvenance:artifacts", "kernel/PluginProvenance:attestations", "kernel/PluginProvenance:build", @@ -4786,13 +4452,6 @@ "kernel/PluginRegistryEntry:updatedAt", "kernel/PluginRegistryEntry:vendor", "kernel/PluginRegistryEntry:version", - "kernel/PluginSandboxing:allowedCapabilities", - "kernel/PluginSandboxing:enabled", - "kernel/PluginSandboxing:ipc", - "kernel/PluginSandboxing:isolationLevel", - "kernel/PluginSandboxing:permissions", - "kernel/PluginSandboxing:resourceQuotas", - "kernel/PluginSandboxing:scope", "kernel/PluginSearchFilters:category", "kernel/PluginSearchFilters:implementsProtocols", "kernel/PluginSearchFilters:limit", @@ -4815,11 +4474,15 @@ "kernel/PluginSecurityManifest:trustLevel", "kernel/PluginSecurityManifest:vulnerabilities", "kernel/PluginSecurityManifest:vulnerabilityDisclosure", - "kernel/PluginStartupResult:duration", + "kernel/PluginStartupResult:duration [RETIRED]", + "kernel/PluginStartupResult:durationMs", "kernel/PluginStartupResult:error", - "kernel/PluginStartupResult:health", - "kernel/PluginStartupResult:plugin", + "kernel/PluginStartupResult:health [RETIRED]", + "kernel/PluginStartupResult:plugin [RETIRED]", + "kernel/PluginStartupResult:pluginName", + "kernel/PluginStartupResult:startTime [RETIRED]", "kernel/PluginStartupResult:success", + "kernel/PluginStartupResult:timedOut", "kernel/PluginStateSnapshot:metadata", "kernel/PluginStateSnapshot:pluginId", "kernel/PluginStateSnapshot:state", @@ -4837,11 +4500,6 @@ "kernel/PluginTrustScore:pluginId", "kernel/PluginTrustScore:score", "kernel/PluginTrustScore:updatedAt", - "kernel/PluginUpdateStrategy:autoUpdateConstraints", - "kernel/PluginUpdateStrategy:mode", - "kernel/PluginUpdateStrategy:rollback", - "kernel/PluginUpdateStrategy:schedule", - "kernel/PluginUpdateStrategy:validation", "kernel/PluginVendor:email", "kernel/PluginVendor:id", "kernel/PluginVendor:name", @@ -4859,12 +4517,6 @@ "kernel/PluginVersionMetadata:support", "kernel/PluginVersionMetadata:version", "kernel/PluginVersionMetadata:versionString", - "kernel/PreviewModeConfig:autoLogin", - "kernel/PreviewModeConfig:bannerMessage", - "kernel/PreviewModeConfig:expiresInSeconds", - "kernel/PreviewModeConfig:readOnly", - "kernel/PreviewModeConfig:simulatedRole", - "kernel/PreviewModeConfig:simulatedUserName", "kernel/ProtocolFeature:deprecatedSince", "kernel/ProtocolFeature:description", "kernel/ProtocolFeature:enabled", @@ -4992,22 +4644,14 @@ "kernel/ServiceRegistryConfig:maxServices", "kernel/ServiceRegistryConfig:scopeTypes", "kernel/ServiceRegistryConfig:strictMode", - "kernel/StartupOptions:context", - "kernel/StartupOptions:healthCheck", - "kernel/StartupOptions:parallel", - "kernel/StartupOptions:rollbackOnFailure", - "kernel/StartupOptions:timeout", - "kernel/StartupOrchestrationResult:allSuccessful", - "kernel/StartupOrchestrationResult:results", - "kernel/StartupOrchestrationResult:rolledBack", - "kernel/StartupOrchestrationResult:totalDuration", "kernel/TenantRuntimeContext:appName", "kernel/TenantRuntimeContext:cwd", "kernel/TenantRuntimeContext:features", "kernel/TenantRuntimeContext:instanceId", "kernel/TenantRuntimeContext:mode", - "kernel/TenantRuntimeContext:previewMode", - "kernel/TenantRuntimeContext:startTime", + "kernel/TenantRuntimeContext:previewMode [RETIRED]", + "kernel/TenantRuntimeContext:startTime [RETIRED]", + "kernel/TenantRuntimeContext:startedAt", "kernel/TenantRuntimeContext:tenantDbUrl", "kernel/TenantRuntimeContext:tenantId", "kernel/TenantRuntimeContext:tenantPlan", @@ -5036,7 +4680,8 @@ "kernel/UpgradePlan:affectedCustomizations", "kernel/UpgradePlan:changes", "kernel/UpgradePlan:dependencyUpgrades", - "kernel/UpgradePlan:estimatedDuration", + "kernel/UpgradePlan:estimatedDuration [RETIRED]", + "kernel/UpgradePlan:estimatedDurationSeconds", "kernel/UpgradePlan:fromVersion", "kernel/UpgradePlan:impactLevel", "kernel/UpgradePlan:migrationScripts", @@ -5063,6 +4708,195 @@ "kernel/ValidationWarning:code", "kernel/ValidationWarning:field", "kernel/ValidationWarning:message", + "marketplace/ArtifactDownloadResponse:downloadUrl", + "marketplace/ArtifactDownloadResponse:expiresAt", + "marketplace/ArtifactDownloadResponse:format", + "marketplace/ArtifactDownloadResponse:sha256", + "marketplace/ArtifactDownloadResponse:size", + "marketplace/ArtifactReference:format", + "marketplace/ArtifactReference:sha256", + "marketplace/ArtifactReference:size", + "marketplace/ArtifactReference:uploadedAt", + "marketplace/ArtifactReference:url", + "marketplace/CreatePackageRequest:category", + "marketplace/CreatePackageRequest:createdBy", + "marketplace/CreatePackageRequest:description", + "marketplace/CreatePackageRequest:displayName", + "marketplace/CreatePackageRequest:homepageUrl", + "marketplace/CreatePackageRequest:iconUrl", + "marketplace/CreatePackageRequest:isStarter", + "marketplace/CreatePackageRequest:license", + "marketplace/CreatePackageRequest:manifestId", + "marketplace/CreatePackageRequest:namespace", + "marketplace/CreatePackageRequest:ownerOrgId", + "marketplace/CreatePackageRequest:publisher", + "marketplace/CreatePackageRequest:tags", + "marketplace/CreatePackageRequest:translations", + "marketplace/CreatePackageRequest:visibility", + "marketplace/CreatePackageVersionRequest:createdBy", + "marketplace/CreatePackageVersionRequest:isPreRelease", + "marketplace/CreatePackageVersionRequest:manifestJson", + "marketplace/CreatePackageVersionRequest:packageId", + "marketplace/CreatePackageVersionRequest:releaseNotes", + "marketplace/CreatePackageVersionRequest:version", + "marketplace/MarketplaceInstallRequest:artifactRef", + "marketplace/MarketplaceInstallRequest:enableOnInstall", + "marketplace/MarketplaceInstallRequest:licenseKey", + "marketplace/MarketplaceInstallRequest:listingId", + "marketplace/MarketplaceInstallRequest:settings", + "marketplace/MarketplaceInstallRequest:tenantId", + "marketplace/MarketplaceInstallRequest:version", + "marketplace/MarketplaceInstallResponse:message", + "marketplace/MarketplaceInstallResponse:packageId", + "marketplace/MarketplaceInstallResponse:success", + "marketplace/MarketplaceInstallResponse:version", + "marketplace/MarketplaceListing:category", + "marketplace/MarketplaceListing:description", + "marketplace/MarketplaceListing:documentationUrl", + "marketplace/MarketplaceListing:iconUrl", + "marketplace/MarketplaceListing:id", + "marketplace/MarketplaceListing:latestVersion", + "marketplace/MarketplaceListing:minPlatformVersion", + "marketplace/MarketplaceListing:name", + "marketplace/MarketplaceListing:packageId", + "marketplace/MarketplaceListing:packageType", + "marketplace/MarketplaceListing:priceInCents", + "marketplace/MarketplaceListing:pricing", + "marketplace/MarketplaceListing:publishedAt", + "marketplace/MarketplaceListing:publisherId", + "marketplace/MarketplaceListing:repositoryUrl", + "marketplace/MarketplaceListing:screenshots", + "marketplace/MarketplaceListing:stats", + "marketplace/MarketplaceListing:status", + "marketplace/MarketplaceListing:supportUrl", + "marketplace/MarketplaceListing:tagline", + "marketplace/MarketplaceListing:tags", + "marketplace/MarketplaceListing:translations", + "marketplace/MarketplaceListing:updatedAt", + "marketplace/MarketplaceListing:versions", + "marketplace/MarketplaceSearchRequest:category", + "marketplace/MarketplaceSearchRequest:page", + "marketplace/MarketplaceSearchRequest:pageSize", + "marketplace/MarketplaceSearchRequest:platformVersion", + "marketplace/MarketplaceSearchRequest:pricing", + "marketplace/MarketplaceSearchRequest:publisherVerification", + "marketplace/MarketplaceSearchRequest:query", + "marketplace/MarketplaceSearchRequest:sortBy", + "marketplace/MarketplaceSearchRequest:sortDirection", + "marketplace/MarketplaceSearchRequest:tags", + "marketplace/MarketplaceSearchResponse:facets", + "marketplace/MarketplaceSearchResponse:items", + "marketplace/MarketplaceSearchResponse:page", + "marketplace/MarketplaceSearchResponse:pageSize", + "marketplace/MarketplaceSearchResponse:total", + "marketplace/Package:category", + "marketplace/Package:createdAt", + "marketplace/Package:createdBy", + "marketplace/Package:description", + "marketplace/Package:displayName", + "marketplace/Package:homepageUrl", + "marketplace/Package:iconUrl", + "marketplace/Package:id", + "marketplace/Package:isStarter", + "marketplace/Package:license", + "marketplace/Package:manifestId", + "marketplace/Package:namespace", + "marketplace/Package:ownerOrgId", + "marketplace/Package:publisher", + "marketplace/Package:readme", + "marketplace/Package:tags", + "marketplace/Package:translations", + "marketplace/Package:updatedAt", + "marketplace/Package:visibility", + "marketplace/PackageDependency:optional", + "marketplace/PackageDependency:packageId", + "marketplace/PackageDependency:versionRange", + "marketplace/PackageManifest:configurationSchema", + "marketplace/PackageManifest:dependencies", + "marketplace/PackageManifest:description", + "marketplace/PackageManifest:id", + "marketplace/PackageManifest:metadata", + "marketplace/PackageManifest:metadataTypes", + "marketplace/PackageManifest:migrations", + "marketplace/PackageManifest:minPlatformVersion", + "marketplace/PackageManifest:name", + "marketplace/PackageManifest:scope", + "marketplace/PackageManifest:version", + "marketplace/PackageSubmission:artifactUrl", + "marketplace/PackageSubmission:id", + "marketplace/PackageSubmission:isNewListing", + "marketplace/PackageSubmission:packageId", + "marketplace/PackageSubmission:publisherId", + "marketplace/PackageSubmission:releaseNotes", + "marketplace/PackageSubmission:reviewedAt", + "marketplace/PackageSubmission:reviewerNotes", + "marketplace/PackageSubmission:scanResults", + "marketplace/PackageSubmission:status", + "marketplace/PackageSubmission:submittedAt", + "marketplace/PackageSubmission:version", + "marketplace/PackageTranslation:description", + "marketplace/PackageTranslation:displayName", + "marketplace/PackageTranslation:readme", + "marketplace/PackageTranslation:screenshotCaptions", + "marketplace/PackageTranslation:tagline", + "marketplace/PackageVersion:checksum", + "marketplace/PackageVersion:createdAt", + "marketplace/PackageVersion:createdBy", + "marketplace/PackageVersion:id", + "marketplace/PackageVersion:isPreRelease", + "marketplace/PackageVersion:manifestJson", + "marketplace/PackageVersion:minPlatformVersion", + "marketplace/PackageVersion:packageId", + "marketplace/PackageVersion:publishedAt", + "marketplace/PackageVersion:publishedBy", + "marketplace/PackageVersion:releaseNotes", + "marketplace/PackageVersion:status", + "marketplace/PackageVersion:updatedAt", + "marketplace/PackageVersion:version", + "marketplace/PublishPackageVersionRequest:publishedBy", + "marketplace/Publisher:description", + "marketplace/Publisher:email", + "marketplace/Publisher:id", + "marketplace/Publisher:logoUrl", + "marketplace/Publisher:name", + "marketplace/Publisher:registeredAt", + "marketplace/Publisher:type", + "marketplace/Publisher:verification", + "marketplace/Publisher:website", + "marketplace/TemplateManifest:category", + "marketplace/TemplateManifest:description", + "marketplace/TemplateManifest:displayName", + "marketplace/TemplateManifest:homepageUrl", + "marketplace/TemplateManifest:iconUrl", + "marketplace/TemplateManifest:isStarter", + "marketplace/TemplateManifest:license", + "marketplace/TemplateManifest:manifestId", + "marketplace/TemplateManifest:name", + "marketplace/TemplateManifest:namespace", + "marketplace/TemplateManifest:preview", + "marketplace/TemplateManifest:publisher", + "marketplace/TemplateManifest:readmePath", + "marketplace/TemplateManifest:scaffold", + "marketplace/TemplateManifest:skills", + "marketplace/TemplateManifest:specVersion", + "marketplace/TemplateManifest:tags", + "marketplace/TemplateManifest:translations", + "marketplace/TemplateManifest:visibility", + "marketplace/UpdatePackageRequest:category", + "marketplace/UpdatePackageRequest:description", + "marketplace/UpdatePackageRequest:displayName", + "marketplace/UpdatePackageRequest:homepageUrl", + "marketplace/UpdatePackageRequest:iconUrl", + "marketplace/UpdatePackageRequest:isStarter", + "marketplace/UpdatePackageRequest:license", + "marketplace/UpdatePackageRequest:publisher", + "marketplace/UpdatePackageRequest:readme", + "marketplace/UpdatePackageRequest:tags", + "marketplace/UpdatePackageRequest:translations", + "marketplace/UpdatePackageRequest:visibility", + "marketplace/UpdatePackageVersionRequest:isPreRelease", + "marketplace/UpdatePackageVersionRequest:manifestJson", + "marketplace/UpdatePackageVersionRequest:releaseNotes", "qa/TestAction:payload", "qa/TestAction:target", "qa/TestAction:type", @@ -5104,6 +4938,13 @@ "security/AdminScope:includeSubtree", "security/AdminScope:manageAssignments", "security/AdminScope:manageBindings", + "security/CapabilityDeclaration:_lock", + "security/CapabilityDeclaration:_lockDocsUrl", + "security/CapabilityDeclaration:_lockReason", + "security/CapabilityDeclaration:_lockSource", + "security/CapabilityDeclaration:_packageId", + "security/CapabilityDeclaration:_packageVersion", + "security/CapabilityDeclaration:_provenance", "security/CapabilityDeclaration:description", "security/CapabilityDeclaration:label", "security/CapabilityDeclaration:name", @@ -5129,9 +4970,9 @@ "security/EffectiveObjectPermission:allowDelete", "security/EffectiveObjectPermission:allowEdit", "security/EffectiveObjectPermission:allowExport", - "security/EffectiveObjectPermission:allowPurge", + "security/EffectiveObjectPermission:allowPurge [RETIRED]", "security/EffectiveObjectPermission:allowRead", - "security/EffectiveObjectPermission:allowRestore", + "security/EffectiveObjectPermission:allowRestore [RETIRED]", "security/EffectiveObjectPermission:allowTransfer", "security/EffectiveObjectPermission:apiOperations", "security/EffectiveObjectPermission:modifyAllRecords", @@ -5145,6 +4986,7 @@ "security/ExplainDecision:principal", "security/ExplainDecision:readFilter", "security/ExplainDecision:record", + "security/ExplainDecision:records", "security/ExplainLayer:contributors", "security/ExplainLayer:detail", "security/ExplainLayer:kernelTier", @@ -5165,6 +5007,7 @@ "security/ExplainRequest:object", "security/ExplainRequest:operation", "security/ExplainRequest:recordId", + "security/ExplainRequest:recordIds", "security/ExplainRequest:userId", "security/FieldPermission:editable", "security/FieldPermission:readable", @@ -5172,14 +5015,17 @@ "security/ObjectPermission:allowDelete", "security/ObjectPermission:allowEdit", "security/ObjectPermission:allowExport", - "security/ObjectPermission:allowPurge", + "security/ObjectPermission:allowPurge [RETIRED]", "security/ObjectPermission:allowRead", - "security/ObjectPermission:allowRestore", + "security/ObjectPermission:allowRestore [RETIRED]", "security/ObjectPermission:allowTransfer", "security/ObjectPermission:modifyAllRecords", "security/ObjectPermission:readScope", "security/ObjectPermission:viewAllRecords", "security/ObjectPermission:writeScope", + "security/OrgScopingEntitlement:platformGlobalObjects", + "security/OrgScopingEntitlement:supportedPostures", + "security/OrgScopingEntitlement:suppressUnboundedOrgAdminGrant", "security/PermissionSet:_lock", "security/PermissionSet:_lockDocsUrl", "security/PermissionSet:_lockReason", @@ -5248,6 +5094,10 @@ "shared/CorsConfig:maxAge", "shared/CorsConfig:methods", "shared/CorsConfig:origins", + "shared/EvaluatedExpression:ast", + "shared/EvaluatedExpression:dialect", + "shared/EvaluatedExpression:meta", + "shared/EvaluatedExpression:source", "shared/Expression:ast", "shared/Expression:dialect", "shared/Expression:meta", @@ -5442,7 +5292,8 @@ "system/AccessControlConfig:blockedIps", "system/AccessControlConfig:corsEnabled", "system/AccessControlConfig:exposeHeaders", - "system/AccessControlConfig:maxAge", + "system/AccessControlConfig:maxAge [RETIRED]", + "system/AccessControlConfig:maxAgeSeconds", "system/AccessControlConfig:publicAccess", "system/ActionResultDialogTranslation:acknowledge", "system/ActionResultDialogTranslation:description", @@ -5485,7 +5336,11 @@ "system/AppManifest:seedData", "system/AppManifest:version", "system/AppManifest:views", + "system/AudienceConfig:allowedEmailDomains", + "system/AudienceConfig:posture", + "system/AudienceConfig:selfRegistrationPermissionSet", "system/AuthConfig:advanced", + "system/AuthConfig:audience", "system/AuthConfig:baseUrl", "system/AuthConfig:databaseUrl", "system/AuthConfig:emailAndPassword", @@ -5509,6 +5364,9 @@ "system/AuthPluginConfig:passkeys", "system/AuthPluginConfig:passwordRejectBreached", "system/AuthPluginConfig:phoneNumber", + "system/AuthPluginConfig:scim", + "system/AuthPluginConfig:sso", + "system/AuthPluginConfig:ssoDomainVerification", "system/AuthPluginConfig:twoFactor", "system/AuthProviderConfig:clientId", "system/AuthProviderConfig:clientSecret", @@ -5545,7 +5403,6 @@ "system/BackupConfig:destination", "system/BackupConfig:encryption", "system/BackupConfig:retention", - "system/BackupConfig:schedule", "system/BackupConfig:strategy", "system/BackupConfig:verifyAfterBackup", "system/BackupRetention:days", @@ -5615,34 +5472,14 @@ "system/CacheTier:maxSize", "system/CacheTier:name", "system/CacheTier:strategy", - "system/CacheTier:ttl", + "system/CacheTier:ttl [RETIRED]", + "system/CacheTier:ttlSeconds", "system/CacheTier:type", "system/CacheTier:warmup", "system/CacheWarmup:concurrency", "system/CacheWarmup:enabled", "system/CacheWarmup:patterns", - "system/CacheWarmup:schedule", "system/CacheWarmup:strategy", - "system/ChangeImpact:affectedSystems", - "system/ChangeImpact:affectedUsers", - "system/ChangeImpact:downtime", - "system/ChangeImpact:level", - "system/ChangeRequest:approval", - "system/ChangeRequest:attachments", - "system/ChangeRequest:description", - "system/ChangeRequest:id", - "system/ChangeRequest:impact", - "system/ChangeRequest:implementation", - "system/ChangeRequest:metadata", - "system/ChangeRequest:priority", - "system/ChangeRequest:requestedAt", - "system/ChangeRequest:requestedBy", - "system/ChangeRequest:rollbackPlan", - "system/ChangeRequest:schedule", - "system/ChangeRequest:securityImpact", - "system/ChangeRequest:status", - "system/ChangeRequest:title", - "system/ChangeRequest:type", "system/ChangeSet:author", "system/ChangeSet:createdAt", "system/ChangeSet:dependencies", @@ -5665,7 +5502,8 @@ "system/CollaborationSessionConfig:enableAwareness", "system/CollaborationSessionConfig:enableCursorSharing", "system/CollaborationSessionConfig:enablePresence", - "system/CollaborationSessionConfig:idleTimeout", + "system/CollaborationSessionConfig:idleTimeout [RETIRED]", + "system/CollaborationSessionConfig:idleTimeoutMs", "system/CollaborationSessionConfig:maxUsers", "system/CollaborationSessionConfig:mode", "system/CollaborationSessionConfig:persistence", @@ -5691,10 +5529,6 @@ "system/ConsoleDestinationConfig:colors", "system/ConsoleDestinationConfig:prettyPrint", "system/ConsoleDestinationConfig:stream", - "system/ConsumerConfig:autoOffsetReset", - "system/ConsumerConfig:enableAutoCommit", - "system/ConsumerConfig:groupId", - "system/ConsumerConfig:maxPollRecords", "system/CounterOperation:delta", "system/CounterOperation:replicaId", "system/CounterOperation:timestamp", @@ -5727,7 +5561,10 @@ "system/DataMigrationFlag:advisory", "system/DataMigrationFlag:applied_at", "system/DataMigrationFlag:blocking", + "system/DataMigrationFlag:columns_moved_at", "system/DataMigrationFlag:details", + "system/DataMigrationFlag:deviation_detail", + "system/DataMigrationFlag:deviation_observed_at", "system/DataMigrationFlag:id", "system/DataMigrationFlag:last_run_at", "system/DataMigrationFlag:verified_at", @@ -5736,9 +5573,6 @@ "system/DatabaseLevelIsolationStrategy:database", "system/DatabaseLevelIsolationStrategy:encryption", "system/DatabaseLevelIsolationStrategy:strategy", - "system/DeadLetterQueue:enabled", - "system/DeadLetterQueue:maxRetries", - "system/DeadLetterQueue:queueName", "system/DeleteObjectOperation:objectName", "system/DeleteObjectOperation:type", "system/DeployBundle:flows", @@ -5868,7 +5702,8 @@ "system/FailoverConfig:autoFailover", "system/FailoverConfig:dns", "system/FailoverConfig:failureThreshold", - "system/FailoverConfig:healthCheckInterval", + "system/FailoverConfig:healthCheckInterval [RETIRED]", + "system/FailoverConfig:healthCheckIntervalSeconds", "system/FailoverConfig:mode", "system/FailoverConfig:regions", "system/Feature:code", @@ -5907,48 +5742,9 @@ "system/HttpDestinationConfig:headers", "system/HttpDestinationConfig:method", "system/HttpDestinationConfig:retry", - "system/HttpDestinationConfig:timeout", + "system/HttpDestinationConfig:timeout [RETIRED]", + "system/HttpDestinationConfig:timeoutMs", "system/HttpDestinationConfig:url", - "system/Incident:affectedDataClassifications", - "system/Incident:affectedSystems", - "system/Incident:category", - "system/Incident:correctiveActions", - "system/Incident:description", - "system/Incident:detectedAt", - "system/Incident:id", - "system/Incident:lessonsLearned", - "system/Incident:metadata", - "system/Incident:relatedChangeRequestIds", - "system/Incident:reportedAt", - "system/Incident:reportedBy", - "system/Incident:resolvedAt", - "system/Incident:responsePhases", - "system/Incident:rootCause", - "system/Incident:severity", - "system/Incident:status", - "system/Incident:title", - "system/IncidentNotificationMatrix:escalationChain", - "system/IncidentNotificationMatrix:escalationTimeoutMinutes", - "system/IncidentNotificationMatrix:rules", - "system/IncidentNotificationRule:channels", - "system/IncidentNotificationRule:notifyRegulators", - "system/IncidentNotificationRule:recipients", - "system/IncidentNotificationRule:regulatorDeadlineHours", - "system/IncidentNotificationRule:severity", - "system/IncidentNotificationRule:withinMinutes", - "system/IncidentResponsePhase:assignedTo", - "system/IncidentResponsePhase:completedAt", - "system/IncidentResponsePhase:description", - "system/IncidentResponsePhase:notes", - "system/IncidentResponsePhase:phase", - "system/IncidentResponsePhase:targetHours", - "system/IncidentResponsePolicy:defaultResponseTeam", - "system/IncidentResponsePolicy:enabled", - "system/IncidentResponsePolicy:notificationMatrix", - "system/IncidentResponsePolicy:regulatoryNotificationThreshold", - "system/IncidentResponsePolicy:requirePostIncidentReview", - "system/IncidentResponsePolicy:retentionDays", - "system/IncidentResponsePolicy:triageDeadlineHours", "system/IntervalSchedule:intervalMs", "system/IntervalSchedule:type", "system/Job:_lock", @@ -5965,13 +5761,20 @@ "system/Job:name", "system/Job:retryPolicy", "system/Job:schedule", - "system/Job:timeout", + "system/Job:timeout [RETIRED]", + "system/Job:timeoutMs", "system/JobExecution:completedAt", "system/JobExecution:durationMs", "system/JobExecution:error", "system/JobExecution:jobId", "system/JobExecution:startedAt", "system/JobExecution:status", + "system/KernelServiceStatus:enabled", + "system/KernelServiceStatus:features", + "system/KernelServiceStatus:name", + "system/KernelServiceStatus:provider", + "system/KernelServiceStatus:status", + "system/KernelServiceStatus:version", "system/KeyRotationPolicy:autoRotate", "system/KeyRotationPolicy:enabled", "system/KeyRotationPolicy:frequencyDays", @@ -6052,12 +5855,6 @@ "system/MaskingVisibilityRule:defaultMasked", "system/MaskingVisibilityRule:requireApproval", "system/MaskingVisibilityRule:unmaskRoles", - "system/MessageQueueConfig:consumers", - "system/MessageQueueConfig:deadLetterQueue", - "system/MessageQueueConfig:provider", - "system/MessageQueueConfig:sasl", - "system/MessageQueueConfig:ssl", - "system/MessageQueueConfig:topics", "system/MetadataCollectionInfo:count", "system/MetadataCollectionInfo:namespaces", "system/MetadataCollectionInfo:type", @@ -6215,11 +6012,13 @@ "system/MetricExportConfig:batch", "system/MetricExportConfig:config", "system/MetricExportConfig:endpoint", - "system/MetricExportConfig:interval", + "system/MetricExportConfig:interval [RETIRED]", + "system/MetricExportConfig:intervalSeconds", "system/MetricExportConfig:type", "system/MetricsConfig:aggregations", "system/MetricsConfig:cardinalityLimits", - "system/MetricsConfig:collectionInterval", + "system/MetricsConfig:collectionInterval [RETIRED]", + "system/MetricsConfig:collectionIntervalSeconds", "system/MetricsConfig:defaultLabels", "system/MetricsConfig:enabled", "system/MetricsConfig:exports", @@ -6317,6 +6116,8 @@ "system/ObjectStorageConfig:scope", "system/ObjectTranslationData:_actions", "system/ObjectTranslationData:_sections", + "system/ObjectTranslationData:_tabs", + "system/ObjectTranslationData:_validations", "system/ObjectTranslationData:_views", "system/ObjectTranslationData:description", "system/ObjectTranslationData:fields", @@ -6390,9 +6191,11 @@ "system/RegistryConfig:visibility", "system/RegistryUpstream:auth", "system/RegistryUpstream:retry", - "system/RegistryUpstream:syncInterval", + "system/RegistryUpstream:syncInterval [RETIRED]", + "system/RegistryUpstream:syncIntervalSeconds", "system/RegistryUpstream:syncPolicy", - "system/RegistryUpstream:timeout", + "system/RegistryUpstream:timeout [RETIRED]", + "system/RegistryUpstream:timeoutMs", "system/RegistryUpstream:tls", "system/RegistryUpstream:url", "system/RemoveFieldOperation:fieldName", @@ -6401,6 +6204,19 @@ "system/RenameObjectOperation:newName", "system/RenameObjectOperation:oldName", "system/RenameObjectOperation:type", + "system/ResolvedBook:groups", + "system/ResolvedBook:label", + "system/ResolvedBook:name", + "system/ResolvedEntry:badge", + "system/ResolvedEntry:description", + "system/ResolvedEntry:doc", + "system/ResolvedEntry:href", + "system/ResolvedEntry:icon", + "system/ResolvedEntry:label", + "system/ResolvedEntry:separator", + "system/ResolvedGroup:entries", + "system/ResolvedGroup:key", + "system/ResolvedGroup:label", "system/ResolvedSettingValue:cascadeChain", "system/ResolvedSettingValue:locked", "system/ResolvedSettingValue:lockedReason", @@ -6412,9 +6228,6 @@ "system/RetryPolicy:maxRetries", "system/RetryPolicy:maxRetryDelayMs", "system/RetryPolicy:retryDelayMs [RETIRED]", - "system/RollbackPlan:description", - "system/RollbackPlan:steps", - "system/RollbackPlan:testProcedure", "system/RouteHandlerMetadata:handler", "system/RouteHandlerMetadata:metadata", "system/RouteHandlerMetadata:method", @@ -6482,12 +6295,6 @@ "system/ServiceLevelObjective:period", "system/ServiceLevelObjective:sli", "system/ServiceLevelObjective:target", - "system/ServiceStatus:enabled", - "system/ServiceStatus:features", - "system/ServiceStatus:name", - "system/ServiceStatus:provider", - "system/ServiceStatus:status", - "system/ServiceStatus:version", "system/SettingsActionResult:details", "system/SettingsActionResult:message", "system/SettingsActionResult:ok", @@ -6516,7 +6323,8 @@ "system/SettingsNamespacePayload:values", "system/Span:attributes", "system/Span:context", - "system/Span:duration", + "system/Span:duration [RETIRED]", + "system/Span:durationMs", "system/Span:endTime", "system/Span:events", "system/Span:instrumentationLibrary", @@ -6578,7 +6386,8 @@ "system/StorageConnection:sasToken", "system/StorageConnection:secretAccessKey", "system/StorageConnection:sessionToken", - "system/StorageConnection:timeout", + "system/StorageConnection:timeout [RETIRED]", + "system/StorageConnection:timeoutMs", "system/StorageConnection:useSSL", "system/StructuredLogEntry:context", "system/StructuredLogEntry:environment", @@ -6694,11 +6503,6 @@ "system/TimeSeriesDataPoint:labels", "system/TimeSeriesDataPoint:timestamp", "system/TimeSeriesDataPoint:value", - "system/TopicConfig:compressionType", - "system/TopicConfig:name", - "system/TopicConfig:partitions", - "system/TopicConfig:replicationFactor", - "system/TopicConfig:retentionMs", "system/TraceContext:parentSpanId", "system/TraceContext:remote", "system/TraceContext:sampled", @@ -6729,31 +6533,6 @@ "system/TracingConfig:sampling", "system/TracingConfig:spanLimits", "system/TracingConfig:traceIdGenerator", - "system/TrainingCourse:category", - "system/TrainingCourse:description", - "system/TrainingCourse:durationMinutes", - "system/TrainingCourse:id", - "system/TrainingCourse:mandatory", - "system/TrainingCourse:passingScore", - "system/TrainingCourse:targetRoles", - "system/TrainingCourse:title", - "system/TrainingCourse:validityDays", - "system/TrainingCourse:version", - "system/TrainingPlan:courses", - "system/TrainingPlan:enabled", - "system/TrainingPlan:gracePeriodDays", - "system/TrainingPlan:recertificationIntervalDays", - "system/TrainingPlan:reminderDaysBefore", - "system/TrainingPlan:sendReminders", - "system/TrainingPlan:trackCompletion", - "system/TrainingRecord:assignedAt", - "system/TrainingRecord:completedAt", - "system/TrainingRecord:courseId", - "system/TrainingRecord:expiresAt", - "system/TrainingRecord:notes", - "system/TrainingRecord:score", - "system/TrainingRecord:status", - "system/TrainingRecord:userId", "system/TranslationConfig:defaultLocale", "system/TranslationConfig:fallbackLocale", "system/TranslationConfig:supportedLocales", @@ -6769,6 +6548,8 @@ "system/TranslationCoverageResult:translatedKeys", "system/TranslationData:apps", "system/TranslationData:dashboards", + "system/TranslationData:datasets", + "system/TranslationData:flows", "system/TranslationData:globalActions", "system/TranslationData:messages", "system/TranslationData:metadataForms", @@ -6792,6 +6573,8 @@ "system/TranslationItem:_provenance", "system/TranslationItem:apps", "system/TranslationItem:dashboards", + "system/TranslationItem:datasets", + "system/TranslationItem:flows", "system/TranslationItem:globalActions", "system/TranslationItem:label", "system/TranslationItem:locale", @@ -6830,9 +6613,11 @@ "ui/Action:bulkEnabled [RETIRED]", "ui/Action:component", "ui/Action:confirmText", + "ui/Action:description", "ui/Action:disabled", "ui/Action:errorMessage", "ui/Action:execute [RETIRED]", + "ui/Action:execution", "ui/Action:icon", "ui/Action:label", "ui/Action:locations", @@ -6841,10 +6626,13 @@ "ui/Action:name", "ui/Action:newTabUrl", "ui/Action:objectName", + "ui/Action:onSuccess", "ui/Action:openIn", "ui/Action:opensInNewTab", + "ui/Action:operation", "ui/Action:order", "ui/Action:params", + "ui/Action:patch", "ui/Action:recordIdField", "ui/Action:recordIdParam", "ui/Action:refreshAfter", @@ -6877,6 +6665,7 @@ "ui/ActionNavItem:type", "ui/ActionNavItem:visible", "ui/ActionParam:accept", + "ui/ActionParam:carryOver", "ui/ActionParam:defaultFromRow", "ui/ActionParam:defaultValue", "ui/ActionParam:field", @@ -6908,6 +6697,7 @@ "ui/App:_packageId", "ui/App:_packageVersion", "ui/App:_provenance", + "ui/App:_unpublished", "ui/App:active", "ui/App:apis [RETIRED]", "ui/App:areas", @@ -6945,26 +6735,6 @@ "ui/AriaProps:ariaDescribedBy", "ui/AriaProps:ariaLabel", "ui/AriaProps:role", - "ui/BorderRadius:2xl", - "ui/BorderRadius:base", - "ui/BorderRadius:full", - "ui/BorderRadius:lg", - "ui/BorderRadius:md", - "ui/BorderRadius:none", - "ui/BorderRadius:sm", - "ui/BorderRadius:xl", - "ui/BreakpointColumnMap:2xl", - "ui/BreakpointColumnMap:lg", - "ui/BreakpointColumnMap:md", - "ui/BreakpointColumnMap:sm", - "ui/BreakpointColumnMap:xl", - "ui/BreakpointColumnMap:xs", - "ui/BreakpointOrderMap:2xl", - "ui/BreakpointOrderMap:lg", - "ui/BreakpointOrderMap:md", - "ui/BreakpointOrderMap:sm", - "ui/BreakpointOrderMap:xl", - "ui/BreakpointOrderMap:xs", "ui/BulkActionDef:batchSize", "ui/BulkActionDef:confirmLabel", "ui/BulkActionDef:confirmText", @@ -6990,6 +6760,7 @@ "ui/BulkActionParam:placeholder", "ui/BulkActionParam:required", "ui/BulkActionParam:type", + "ui/CalendarConfig:allDayField", "ui/CalendarConfig:colorField", "ui/CalendarConfig:endDateField", "ui/CalendarConfig:startDateField", @@ -7014,7 +6785,7 @@ "ui/ChartAxis:stepSize", "ui/ChartAxis:title", "ui/ChartConfig:annotations", - "ui/ChartConfig:aria", + "ui/ChartConfig:aria [RETIRED]", "ui/ChartConfig:colors", "ui/ChartConfig:description", "ui/ChartConfig:height", @@ -7044,23 +6815,6 @@ "ui/ChartSeries:type", "ui/ChartSeries:variant", "ui/ChartSeries:yAxis", - "ui/ColorPalette:accent", - "ui/ColorPalette:background", - "ui/ColorPalette:border", - "ui/ColorPalette:disabled", - "ui/ColorPalette:error", - "ui/ColorPalette:info", - "ui/ColorPalette:primary", - "ui/ColorPalette:primaryDark", - "ui/ColorPalette:primaryLight", - "ui/ColorPalette:secondary", - "ui/ColorPalette:secondaryDark", - "ui/ColorPalette:secondaryLight", - "ui/ColorPalette:success", - "ui/ColorPalette:surface", - "ui/ColorPalette:text", - "ui/ColorPalette:textSecondary", - "ui/ColorPalette:warning", "ui/ColumnPrefix:field", "ui/ColumnPrefix:type", "ui/ColumnSummaryConfig:field", @@ -7096,7 +6850,8 @@ "ui/Dashboard:name", "ui/Dashboard:performance [RETIRED]", "ui/Dashboard:protection", - "ui/Dashboard:refreshInterval", + "ui/Dashboard:refreshInterval [RETIRED]", + "ui/Dashboard:refreshIntervalSeconds", "ui/Dashboard:widgets", "ui/DashboardHeader:actions", "ui/DashboardHeader:showDescription", @@ -7186,18 +6941,18 @@ "ui/ElementDataSource:object", "ui/ElementDataSource:sort", "ui/ElementDataSource:view", - "ui/ElementFilterProps:aria", - "ui/ElementFilterProps:fields", - "ui/ElementFilterProps:layout", - "ui/ElementFilterProps:object", - "ui/ElementFilterProps:showSearch", - "ui/ElementFilterProps:targetVariable", - "ui/ElementFormProps:aria", - "ui/ElementFormProps:fields", - "ui/ElementFormProps:mode", - "ui/ElementFormProps:object", - "ui/ElementFormProps:onSubmit", - "ui/ElementFormProps:submitLabel", + "ui/ElementFilterProps:aria [RETIRED]", + "ui/ElementFilterProps:fields [RETIRED]", + "ui/ElementFilterProps:layout [RETIRED]", + "ui/ElementFilterProps:object [RETIRED]", + "ui/ElementFilterProps:showSearch [RETIRED]", + "ui/ElementFilterProps:targetVariable [RETIRED]", + "ui/ElementFormProps:aria [RETIRED]", + "ui/ElementFormProps:fields [RETIRED]", + "ui/ElementFormProps:mode [RETIRED]", + "ui/ElementFormProps:object [RETIRED]", + "ui/ElementFormProps:onSubmit [RETIRED]", + "ui/ElementFormProps:submitLabel [RETIRED]", "ui/ElementImageProps:alt", "ui/ElementImageProps:aria", "ui/ElementImageProps:fit", @@ -7223,11 +6978,13 @@ "ui/ElementRecordPickerProps:filter", "ui/ElementRecordPickerProps:label", "ui/ElementRecordPickerProps:labelField", + "ui/ElementRecordPickerProps:limit", "ui/ElementRecordPickerProps:multiple [RETIRED]", "ui/ElementRecordPickerProps:object", "ui/ElementRecordPickerProps:placeholder", "ui/ElementRecordPickerProps:searchFields [RETIRED]", - "ui/ElementRecordPickerProps:targetVariable", + "ui/ElementRecordPickerProps:sort", + "ui/ElementRecordPickerProps:targetVariable [RETIRED]", "ui/ElementRecordPickerProps:valueField", "ui/ElementTextInputProps:aria", "ui/ElementTextInputProps:defaultValue", @@ -7237,7 +6994,7 @@ "ui/ElementTextInputProps:label", "ui/ElementTextInputProps:placeholder", "ui/ElementTextInputProps:required", - "ui/ElementTextInputProps:targetVariable", + "ui/ElementTextInputProps:targetVariable [RETIRED]", "ui/ElementTextProps:align", "ui/ElementTextProps:aria", "ui/ElementTextProps:content", @@ -7263,6 +7020,7 @@ "ui/FormField:options", "ui/FormField:placeholder", "ui/FormField:precision", + "ui/FormField:publicPicker", "ui/FormField:readonly", "ui/FormField:reference", "ui/FormField:required", @@ -7272,16 +7030,26 @@ "ui/FormField:visibleOn", "ui/FormField:visibleWhen", "ui/FormField:widget", + "ui/FormFieldPublicPicker:displayFields", + "ui/FormFieldPublicPicker:filter", + "ui/FormFieldPublicPicker:maxResults", + "ui/FormFieldPublicPicker:object", "ui/FormSection:collapsed", "ui/FormSection:collapsible", "ui/FormSection:columns", "ui/FormSection:description", "ui/FormSection:fields", + "ui/FormSection:group", "ui/FormSection:label", "ui/FormSection:name", "ui/FormSection:pane", "ui/FormSection:visibleOn", "ui/FormSection:visibleWhen", + "ui/FormSelectOption:color", + "ui/FormSelectOption:description", + "ui/FormSelectOption:label", + "ui/FormSelectOption:value", + "ui/FormSelectOption:visibleWhen", "ui/FormView:allowSkip", "ui/FormView:aria [RETIRED]", "ui/FormView:buttons", @@ -7316,20 +7084,31 @@ "ui/GanttConfig:autoZoomToFilter", "ui/GanttConfig:baselineEndField", "ui/GanttConfig:baselineStartField", + "ui/GanttConfig:borderColorField", "ui/GanttConfig:capacity", "ui/GanttConfig:colorField", + "ui/GanttConfig:defaultCollapsedDepth", "ui/GanttConfig:dependenciesField", + "ui/GanttConfig:dependencyTypes", "ui/GanttConfig:effortField", "ui/GanttConfig:endDateField", + "ui/GanttConfig:exportFileName", "ui/GanttConfig:groupByField", + "ui/GanttConfig:interactions", + "ui/GanttConfig:lockField", + "ui/GanttConfig:objectField", "ui/GanttConfig:parentField", "ui/GanttConfig:progressField", "ui/GanttConfig:quickFilters", "ui/GanttConfig:resourceView", "ui/GanttConfig:startDateField", + "ui/GanttConfig:summaryExtent", + "ui/GanttConfig:timeSegments", + "ui/GanttConfig:timeZone", "ui/GanttConfig:titleField", "ui/GanttConfig:tooltipFields", "ui/GanttConfig:typeField", + "ui/GanttConfig:viewMode", "ui/GanttQuickFilter:field", "ui/GanttQuickFilter:label", "ui/GanttQuickFilter:options", @@ -7337,6 +7116,7 @@ "ui/GlobalFilter:field", "ui/GlobalFilter:label", "ui/GlobalFilter:name", + "ui/GlobalFilter:object", "ui/GlobalFilter:options", "ui/GlobalFilter:optionsFrom", "ui/GlobalFilter:scope", @@ -7367,6 +7147,7 @@ "ui/HttpRequest:method", "ui/HttpRequest:params", "ui/HttpRequest:url", + "ui/InlineAction:bodyExtra", "ui/InlineAction:confirmText", "ui/InlineAction:errorMessage", "ui/InlineAction:label", @@ -7425,11 +7206,18 @@ "ui/ListColumn:type", "ui/ListColumn:width", "ui/ListColumn:wrap", + "ui/ListMapConfig:center", + "ui/ListMapConfig:descriptionField", + "ui/ListMapConfig:latitudeField", + "ui/ListMapConfig:locationField", + "ui/ListMapConfig:longitudeField", + "ui/ListMapConfig:titleField", + "ui/ListMapConfig:zoom", "ui/ListView:addRecord", "ui/ListView:allowPrinting", "ui/ListView:appearance", "ui/ListView:aria", - "ui/ListView:bordered", + "ui/ListView:bordered [RETIRED]", "ui/ListView:bulkActionDefs", "ui/ListView:bulkActions", "ui/ListView:calendar", @@ -7451,8 +7239,10 @@ "ui/ListView:inlineEdit", "ui/ListView:kanban", "ui/ListView:label", + "ui/ListView:map", "ui/ListView:name", "ui/ListView:navigation", + "ui/ListView:pageName [RETIRED]", "ui/ListView:pagination", "ui/ListView:performance [RETIRED]", "ui/ListView:resizable", @@ -7465,14 +7255,14 @@ "ui/ListView:sharing", "ui/ListView:showRecordCount", "ui/ListView:sort", - "ui/ListView:striped", + "ui/ListView:striped [RETIRED]", "ui/ListView:tabs", "ui/ListView:timeline", "ui/ListView:tree", "ui/ListView:type", "ui/ListView:userActions", "ui/ListView:userFilters", - "ui/ListView:virtualScroll", + "ui/ListView:virtualScroll [RETIRED]", "ui/NavigationArea:description", "ui/NavigationArea:icon", "ui/NavigationArea:id", @@ -7488,11 +7278,110 @@ "ui/NavigationContribution:group", "ui/NavigationContribution:items", "ui/NavigationContribution:priority", + "ui/ObjectCalendarProps:calendar", + "ui/ObjectCalendarProps:data", + "ui/ObjectCalendarProps:defaultView", + "ui/ObjectCalendarProps:filter", + "ui/ObjectCalendarProps:loading", + "ui/ObjectCalendarProps:locale", + "ui/ObjectCalendarProps:objectName", + "ui/ObjectCalendarProps:sort", + "ui/ObjectCalendarProps:staticData", + "ui/ObjectFormProps:allowSkip", + "ui/ObjectFormProps:cancelText", + "ui/ObjectFormProps:columns", + "ui/ObjectFormProps:confirmOnDiscard", + "ui/ObjectFormProps:contentLayout", + "ui/ObjectFormProps:customFields", + "ui/ObjectFormProps:defaultTab", + "ui/ObjectFormProps:description", + "ui/ObjectFormProps:drawerSide", + "ui/ObjectFormProps:drawerWidth", + "ui/ObjectFormProps:fields", + "ui/ObjectFormProps:formType", + "ui/ObjectFormProps:initialData", + "ui/ObjectFormProps:initialValues", + "ui/ObjectFormProps:layout", + "ui/ObjectFormProps:mobile", + "ui/ObjectFormProps:modalCloseButton", + "ui/ObjectFormProps:modalSize", + "ui/ObjectFormProps:mode", + "ui/ObjectFormProps:navigateOnSuccess", + "ui/ObjectFormProps:nextText", + "ui/ObjectFormProps:objectName", + "ui/ObjectFormProps:prevText", + "ui/ObjectFormProps:readOnly", + "ui/ObjectFormProps:recordId", + "ui/ObjectFormProps:resetOnSuccess", + "ui/ObjectFormProps:sections", + "ui/ObjectFormProps:showCancel", + "ui/ObjectFormProps:showReset", + "ui/ObjectFormProps:showStepIndicator", + "ui/ObjectFormProps:showSubmit", + "ui/ObjectFormProps:splitDirection", + "ui/ObjectFormProps:splitResizable", + "ui/ObjectFormProps:splitSize", + "ui/ObjectFormProps:submitBehavior", + "ui/ObjectFormProps:submitText", + "ui/ObjectFormProps:successMessage", + "ui/ObjectFormProps:tabPosition", + "ui/ObjectFormProps:title", + "ui/ObjectGridProps:aggregations", + "ui/ObjectGridProps:batchActions", + "ui/ObjectGridProps:bulkActionDefs", + "ui/ObjectGridProps:bulkActions", + "ui/ObjectGridProps:columns", + "ui/ObjectGridProps:conditionalFormatting", + "ui/ObjectGridProps:data", + "ui/ObjectGridProps:defaultFilters", + "ui/ObjectGridProps:defaultSort [RETIRED]", + "ui/ObjectGridProps:editable", + "ui/ObjectGridProps:exportOptions", + "ui/ObjectGridProps:fields", + "ui/ObjectGridProps:filter", + "ui/ObjectGridProps:frozenColumns", + "ui/ObjectGridProps:grouping", + "ui/ObjectGridProps:label", + "ui/ObjectGridProps:navigation", + "ui/ObjectGridProps:objectName", + "ui/ObjectGridProps:operations", + "ui/ObjectGridProps:pageSize", + "ui/ObjectGridProps:pagination", + "ui/ObjectGridProps:reorderableColumns", + "ui/ObjectGridProps:resizable", + "ui/ObjectGridProps:resizableColumns", + "ui/ObjectGridProps:rowActions", + "ui/ObjectGridProps:rowColor", + "ui/ObjectGridProps:rowHeight", + "ui/ObjectGridProps:searchableFields", + "ui/ObjectGridProps:selectable", + "ui/ObjectGridProps:selection", + "ui/ObjectGridProps:showColumnTypeIcons", + "ui/ObjectGridProps:showPagination", + "ui/ObjectGridProps:showSearch", + "ui/ObjectGridProps:singleClickEdit", + "ui/ObjectGridProps:sort", + "ui/ObjectGridProps:staticData", + "ui/ObjectGridProps:title", + "ui/ObjectKanbanProps:cardFields", + "ui/ObjectKanbanProps:cardTitle", + "ui/ObjectKanbanProps:columns", + "ui/ObjectKanbanProps:conditionalFormatting", + "ui/ObjectKanbanProps:coverImageField", + "ui/ObjectKanbanProps:data", + "ui/ObjectKanbanProps:filter", + "ui/ObjectKanbanProps:groupBy", + "ui/ObjectKanbanProps:grouping", + "ui/ObjectKanbanProps:limit", + "ui/ObjectKanbanProps:objectName", + "ui/ObjectKanbanProps:quickAdd [RETIRED]", + "ui/ObjectKanbanProps:swimlaneField", + "ui/ObjectKanbanProps:titleField", "ui/ObjectListView:addRecord", "ui/ObjectListView:allowPrinting", "ui/ObjectListView:appearance", "ui/ObjectListView:aria", - "ui/ObjectListView:bordered", + "ui/ObjectListView:bordered [RETIRED]", "ui/ObjectListView:bulkActionDefs", "ui/ObjectListView:bulkActions", "ui/ObjectListView:calendar", @@ -7514,8 +7403,10 @@ "ui/ObjectListView:inlineEdit", "ui/ObjectListView:kanban", "ui/ObjectListView:label", + "ui/ObjectListView:map", "ui/ObjectListView:name", "ui/ObjectListView:navigation", + "ui/ObjectListView:pageName [RETIRED]", "ui/ObjectListView:pagination", "ui/ObjectListView:performance [RETIRED]", "ui/ObjectListView:resizable", @@ -7528,14 +7419,46 @@ "ui/ObjectListView:sharing", "ui/ObjectListView:showRecordCount", "ui/ObjectListView:sort", - "ui/ObjectListView:striped", + "ui/ObjectListView:striped [RETIRED]", "ui/ObjectListView:tabs", "ui/ObjectListView:timeline", "ui/ObjectListView:tree", "ui/ObjectListView:type", "ui/ObjectListView:userActions", "ui/ObjectListView:userFilters", - "ui/ObjectListView:virtualScroll", + "ui/ObjectListView:virtualScroll [RETIRED]", + "ui/ObjectMasterDetailFormProps:cancelText", + "ui/ObjectMasterDetailFormProps:details", + "ui/ObjectMasterDetailFormProps:fields", + "ui/ObjectMasterDetailFormProps:formType", + "ui/ObjectMasterDetailFormProps:initialData", + "ui/ObjectMasterDetailFormProps:initialValues", + "ui/ObjectMasterDetailFormProps:mode", + "ui/ObjectMasterDetailFormProps:objectName", + "ui/ObjectMasterDetailFormProps:recordId", + "ui/ObjectMasterDetailFormProps:sections", + "ui/ObjectMasterDetailFormProps:showSubmit", + "ui/ObjectMasterDetailFormProps:submitText", + "ui/ObjectMasterDetailFormProps:taxRateField", + "ui/ObjectMasterDetailFormProps:title", + "ui/ObjectMetricProps:aggregate", + "ui/ObjectMetricProps:colorVariant", + "ui/ObjectMetricProps:compareTo", + "ui/ObjectMetricProps:currency", + "ui/ObjectMetricProps:description", + "ui/ObjectMetricProps:drillDown", + "ui/ObjectMetricProps:fallbackValue", + "ui/ObjectMetricProps:filter", + "ui/ObjectMetricProps:format", + "ui/ObjectMetricProps:icon", + "ui/ObjectMetricProps:invert", + "ui/ObjectMetricProps:label", + "ui/ObjectMetricProps:objectName", + "ui/ObjectMetricProps:prefix", + "ui/ObjectMetricProps:suffix", + "ui/ObjectMetricProps:title", + "ui/ObjectMetricProps:trend", + "ui/ObjectMetricProps:variant", "ui/ObjectNavItem:badge", "ui/ObjectNavItem:badgeVariant", "ui/ObjectNavItem:filters", @@ -7549,6 +7472,7 @@ "ui/ObjectNavItem:requiredPermissions", "ui/ObjectNavItem:requiresObject", "ui/ObjectNavItem:requiresService", + "ui/ObjectNavItem:runAction", "ui/ObjectNavItem:type", "ui/ObjectNavItem:viewName", "ui/ObjectNavItem:visible", @@ -7562,7 +7486,7 @@ "ui/Page:_packageVersion", "ui/Page:_provenance", "ui/Page:aria", - "ui/Page:assignedProfiles", + "ui/Page:assignedProfiles [RETIRED]", "ui/Page:description", "ui/Page:icon", "ui/Page:interfaceConfig", @@ -7581,7 +7505,8 @@ "ui/PageAccordionProps:allowMultiple", "ui/PageAccordionProps:aria", "ui/PageAccordionProps:items", - "ui/PageCardProps:actions", + "ui/PageAccordionProps:variant", + "ui/PageCardProps:actions [RETIRED]", "ui/PageCardProps:aria", "ui/PageCardProps:body [RETIRED]", "ui/PageCardProps:bordered", @@ -7595,7 +7520,7 @@ "ui/PageComponent:id", "ui/PageComponent:label", "ui/PageComponent:properties", - "ui/PageComponent:responsive", + "ui/PageComponent:responsive [RETIRED]", "ui/PageComponent:responsiveStyles", "ui/PageComponent:style", "ui/PageComponent:type", @@ -7605,7 +7530,12 @@ "ui/PageHeaderProps:actions", "ui/PageHeaderProps:aria", "ui/PageHeaderProps:breadcrumb", - "ui/PageHeaderProps:icon", + "ui/PageHeaderProps:icon [RETIRED]", + "ui/PageHeaderProps:maxVisible", + "ui/PageHeaderProps:mobileMaxVisible", + "ui/PageHeaderProps:recordChrome", + "ui/PageHeaderProps:showCopyId", + "ui/PageHeaderProps:showStar", "ui/PageHeaderProps:subtitle", "ui/PageHeaderProps:title", "ui/PageNavItem:badge", @@ -7624,10 +7554,12 @@ "ui/PageRegion:components", "ui/PageRegion:name", "ui/PageRegion:width", + "ui/PageTabsProps:alwaysShowStrip", "ui/PageTabsProps:aria", "ui/PageTabsProps:items", "ui/PageTabsProps:position", - "ui/PageTabsProps:type", + "ui/PageTabsProps:tabStyle", + "ui/PageTabsProps:type [RETIRED]", "ui/PageVariable:defaultValue", "ui/PageVariable:name", "ui/PageVariable:source", @@ -7646,6 +7578,17 @@ "ui/RecordActivityProps:showSubscriptionToggle", "ui/RecordActivityProps:types", "ui/RecordActivityProps:unifiedTimeline", + "ui/RecordAlertAction:actionName", + "ui/RecordAlertAction:label", + "ui/RecordAlertAction:variant", + "ui/RecordAlertProps:action", + "ui/RecordAlertProps:body", + "ui/RecordAlertProps:dismissKey", + "ui/RecordAlertProps:dismissible", + "ui/RecordAlertProps:icon", + "ui/RecordAlertProps:severity", + "ui/RecordAlertProps:title", + "ui/RecordAlertProps:visible", "ui/RecordChatterProps:aria", "ui/RecordChatterProps:collapsible", "ui/RecordChatterProps:defaultCollapsed", @@ -7656,14 +7599,28 @@ "ui/RecordDetailsProps:columns", "ui/RecordDetailsProps:fields", "ui/RecordDetailsProps:hideFields", - "ui/RecordDetailsProps:layout", + "ui/RecordDetailsProps:inlineEdit", + "ui/RecordDetailsProps:layout [RETIRED]", "ui/RecordDetailsProps:sections", + "ui/RecordDetailsProps:showHeader", "ui/RecordHighlightsProps:aria", "ui/RecordHighlightsProps:fields", "ui/RecordHighlightsProps:layout", + "ui/RecordHistoryProps:emptyText", + "ui/RecordHistoryProps:limit", + "ui/RecordHistoryProps:unknownUserText", "ui/RecordPathProps:aria", "ui/RecordPathProps:stages", "ui/RecordPathProps:statusField", + "ui/RecordQuickActionsProps:actionNames", + "ui/RecordQuickActionsProps:align", + "ui/RecordQuickActionsProps:inline", + "ui/RecordQuickActionsProps:location", + "ui/RecordQuickActionsProps:requiredPermissions", + "ui/RecordQuickActionsProps:size", + "ui/RecordQuickActionsProps:variant", + "ui/RecordReferenceRailProps:entries", + "ui/RecordReferenceRailProps:hideEmpty", "ui/RecordRelatedListProps:actions", "ui/RecordRelatedListProps:add", "ui/RecordRelatedListProps:aria", @@ -7676,6 +7633,11 @@ "ui/RecordRelatedListProps:showViewAll", "ui/RecordRelatedListProps:sort", "ui/RecordRelatedListProps:title", + "ui/ReferenceRailEntry:displayField", + "ui/ReferenceRailEntry:limit", + "ui/ReferenceRailEntry:objectName", + "ui/ReferenceRailEntry:relationshipField", + "ui/ReferenceRailEntry:title", "ui/Report:_lock", "ui/Report:_lockDocsUrl", "ui/Report:_lockReason", @@ -7698,7 +7660,7 @@ "ui/Report:type", "ui/Report:values", "ui/ReportChart:annotations", - "ui/ReportChart:aria", + "ui/ReportChart:aria [RETIRED]", "ui/ReportChart:colors", "ui/ReportChart:description", "ui/ReportChart:height", @@ -7725,10 +7687,6 @@ "ui/ReportNavItem:visible", "ui/ReportSort:by", "ui/ReportSort:direction", - "ui/ResponsiveConfig:breakpoint", - "ui/ResponsiveConfig:columns", - "ui/ResponsiveConfig:hiddenOn", - "ui/ResponsiveConfig:order", "ui/ResponsiveStyles:large", "ui/ResponsiveStyles:medium", "ui/ResponsiveStyles:small", @@ -7736,32 +7694,12 @@ "ui/RowColorConfig:colors", "ui/RowColorConfig:field", "ui/SelectionConfig:type", - "ui/Shadow:2xl", - "ui/Shadow:base", - "ui/Shadow:inner", - "ui/Shadow:lg", - "ui/Shadow:md", - "ui/Shadow:none", - "ui/Shadow:sm", - "ui/Shadow:xl", "ui/SharingConfig:allowAnonymous", "ui/SharingConfig:allowedDomains", "ui/SharingConfig:enabled", "ui/SharingConfig:expiresAt", "ui/SharingConfig:password", "ui/SharingConfig:publicLink", - "ui/Theme:animation [RETIRED]", - "ui/Theme:borderRadius", - "ui/Theme:colors", - "ui/Theme:customVars", - "ui/Theme:description", - "ui/Theme:extends", - "ui/Theme:label", - "ui/Theme:mode", - "ui/Theme:name", - "ui/Theme:shadows", - "ui/Theme:typography", - "ui/Theme:zIndex [RETIRED]", "ui/TimelineConfig:colorField", "ui/TimelineConfig:endDateField", "ui/TimelineConfig:groupByField", @@ -7772,11 +7710,6 @@ "ui/TreeConfig:fields", "ui/TreeConfig:labelField", "ui/TreeConfig:parentField", - "ui/Typography:fontFamily", - "ui/Typography:fontSize [RETIRED]", - "ui/Typography:fontWeight [RETIRED]", - "ui/Typography:letterSpacing [RETIRED]", - "ui/Typography:lineHeight [RETIRED]", "ui/UrlNavItem:badge", "ui/UrlNavItem:badgeVariant", "ui/UrlNavItem:icon", @@ -7794,7 +7727,10 @@ "ui/UserActionsConfig:buttons", "ui/UserActionsConfig:editInline", "ui/UserActionsConfig:filter", + "ui/UserActionsConfig:group", + "ui/UserActionsConfig:hideFields", "ui/UserActionsConfig:refresh", + "ui/UserActionsConfig:rowColor", "ui/UserActionsConfig:rowHeight", "ui/UserActionsConfig:search", "ui/UserActionsConfig:sort", From 251d76a2fbdea63b61eb967c440cdbc2bc46740e Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 16 Sep 2026 17:02:54 +0000 Subject: [PATCH 4/4] merge origin/main (os-regen artifacts taken from main; regeneration follows) --- packages/spec/authorable-surface.base.json | 34 +++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/packages/spec/authorable-surface.base.json b/packages/spec/authorable-surface.base.json index ec983b479bf..49fd6af5da0 100644 --- a/packages/spec/authorable-surface.base.json +++ b/packages/spec/authorable-surface.base.json @@ -1,6 +1,6 @@ { "description": "⛔ NOT the live surface — a pinned anchor for the deletion gate; the live surface is `authorable-surface/*.json`. ⛔ Never answer \"is this key authorable today?\" from this file: it is a snapshot at `baseRev`, so every key authored since is missing from it, and reading it alone yields false negatives that grow with the lag (`check:authorable-surface` prints the current delta on every run — ⛔ never hard-code that number). Ask the live ratchet instead, or read the UNION of ratchet and anchor where no key may be dropped: `scripts/docs-audit/affected-docs.mjs` is the reference consumer for that union read, and its `--self-test` pins both halves — that a key added after `baseRev` is still authorable, and that the `[RETIRED]` tombstone annotation the ratchet carries is stripped rather than matched. What this file IS, and the only question it answers: in-tree anchor for the authorable-surface deletion gate (#4650, #5235) — a verbatim copy of the keys in authorable-surface/ as they stood at `baseRev`, a commit on origin/main. A build that CAN reach origin/main anchors on the merge base instead, and re-verifies this file against `baseRev` — so a PR that edits it to hide a deletion goes red wherever the network exists. A build that CANNOT reach GitHub (image-build stages, air-gapped, fork, historical-tag reproduction) anchors here instead of failing. Written only by `gen:schema`, only from a git-resolved baseline — never from the build that is being checked. See #5235; #14612 for why the negative leads.", - "baseRev": "b9598e9cab9de8e35886f9c02ae01a42ce36cb96", + "baseRev": "85c6d76ec42a879f219436eaa58bda06c68298b2", "keys": [ "ai/AIModelConfig:maxTokens", "ai/AIModelConfig:model", @@ -7326,6 +7326,23 @@ "ui/ObjectFormProps:successMessage", "ui/ObjectFormProps:tabPosition", "ui/ObjectFormProps:title", + "ui/ObjectGanttProps:criticalPath", + "ui/ObjectGanttProps:data", + "ui/ObjectGanttProps:filter", + "ui/ObjectGanttProps:gantt", + "ui/ObjectGanttProps:holidays", + "ui/ObjectGanttProps:label", + "ui/ObjectGanttProps:markers", + "ui/ObjectGanttProps:mobileReadOnly", + "ui/ObjectGanttProps:navigation", + "ui/ObjectGanttProps:objectName", + "ui/ObjectGanttProps:persistLayout", + "ui/ObjectGanttProps:readOnly", + "ui/ObjectGanttProps:showBaselines", + "ui/ObjectGanttProps:skipWeekends", + "ui/ObjectGanttProps:sort", + "ui/ObjectGanttProps:staticData", + "ui/ObjectGanttProps:viewName", "ui/ObjectGridProps:aggregations", "ui/ObjectGridProps:batchActions", "ui/ObjectGridProps:bulkActionDefs", @@ -7427,6 +7444,15 @@ "ui/ObjectListView:userActions", "ui/ObjectListView:userFilters", "ui/ObjectListView:virtualScroll [RETIRED]", + "ui/ObjectMapProps:data", + "ui/ObjectMapProps:enableClustering", + "ui/ObjectMapProps:filter", + "ui/ObjectMapProps:map", + "ui/ObjectMapProps:mapStyle", + "ui/ObjectMapProps:navigation", + "ui/ObjectMapProps:objectName", + "ui/ObjectMapProps:sort", + "ui/ObjectMapProps:staticData", "ui/ObjectMasterDetailFormProps:cancelText", "ui/ObjectMasterDetailFormProps:details", "ui/ObjectMasterDetailFormProps:fields", @@ -7476,6 +7502,12 @@ "ui/ObjectNavItem:type", "ui/ObjectNavItem:viewName", "ui/ObjectNavItem:visible", + "ui/ObjectTreeProps:data", + "ui/ObjectTreeProps:filter", + "ui/ObjectTreeProps:navigation", + "ui/ObjectTreeProps:objectName", + "ui/ObjectTreeProps:staticData", + "ui/ObjectTreeProps:tree", "ui/ObjectUserFilters:element", "ui/ObjectUserFilters:fields", "ui/Page:_lock",