@objectstack/platform-objects 7.6.0 → 7.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -1,4 +1,5 @@
1
1
  import { ObjectSchema, Field } from '@objectstack/spec/data';
2
+ export { SysMetadata, SysMetadataAuditObject, SysMetadataHistoryObject, SysMetadataObject, SysViewDefinitionObject } from '@objectstack/metadata-core';
2
3
  import { Dashboard } from '@objectstack/spec/ui';
3
4
 
4
5
  // src/identity/sys-user.object.ts
@@ -4066,590 +4067,6 @@ var SysJobQueue = ObjectSchema.create({
4066
4067
  { fields: ["status"] }
4067
4068
  ]
4068
4069
  });
4069
- var SysMetadataObject = ObjectSchema.create({
4070
- name: "sys_metadata",
4071
- label: "System Metadata",
4072
- pluralLabel: "System Metadata",
4073
- icon: "settings",
4074
- isSystem: true,
4075
- // managedBy: 'system' — the metadata table backs every other config
4076
- // object. Writing rows directly here bypasses the typed Zod APIs and
4077
- // would let an admin inject malformed payloads. The "All Metadata"
4078
- // menu is therefore a read-only debug surface (Export only); typed
4079
- // edits flow through the dedicated per-type pages (Approval Process,
4080
- // Sharing Rule, etc.).
4081
- managedBy: "system",
4082
- description: "Stores platform and user-scope metadata records (objects, views, flows, etc.)",
4083
- fields: {
4084
- /** Primary Key (UUID) */
4085
- id: Field.text({
4086
- label: "ID",
4087
- required: true,
4088
- readonly: true
4089
- }),
4090
- /** Machine name — unique identifier used in code references */
4091
- name: Field.text({
4092
- label: "Name",
4093
- required: true,
4094
- searchable: true,
4095
- maxLength: 255
4096
- }),
4097
- /** Metadata type (e.g. "object", "view", "flow") */
4098
- type: Field.text({
4099
- label: "Metadata Type",
4100
- required: true,
4101
- searchable: true,
4102
- maxLength: 100
4103
- }),
4104
- /** Namespace / module grouping (e.g. "crm", "core") */
4105
- namespace: Field.text({
4106
- label: "Namespace",
4107
- required: false,
4108
- defaultValue: "default",
4109
- maxLength: 100
4110
- }),
4111
- /** Package that owns/delivered this metadata (legacy string identifier, kept for compat) */
4112
- package_id: Field.text({
4113
- label: "Package ID",
4114
- required: false,
4115
- maxLength: 255,
4116
- description: "Legacy package manifest ID string. Use package_version_id for new records."
4117
- }),
4118
- /**
4119
- * FK → sys_package_version (UUID). Set for metadata that belongs to a specific
4120
- * package release snapshot. NULL = platform-built-in or environment override.
4121
- */
4122
- package_version_id: Field.lookup("sys_package_version", {
4123
- label: "Package Version",
4124
- required: false,
4125
- description: "Foreign key to sys_package_version (UUID). Null = platform-built-in or env-level override."
4126
- }),
4127
- /** Who manages this record: package, platform, or user */
4128
- managed_by: Field.select(["package", "platform", "user"], {
4129
- label: "Managed By",
4130
- required: false
4131
- }),
4132
- /** Scope: system (code), platform (admin DB), user (personal DB) */
4133
- scope: Field.select(["system", "platform", "user"], {
4134
- label: "Scope",
4135
- required: true,
4136
- defaultValue: "platform"
4137
- }),
4138
- /** JSON payload — the actual metadata configuration */
4139
- metadata: Field.textarea({
4140
- label: "Metadata",
4141
- required: true,
4142
- description: "JSON-serialized metadata payload"
4143
- }),
4144
- /** Parent metadata name for extension/override */
4145
- extends: Field.text({
4146
- label: "Extends",
4147
- required: false,
4148
- maxLength: 255
4149
- }),
4150
- /** Merge strategy when extending parent metadata */
4151
- strategy: Field.select(["merge", "replace"], {
4152
- label: "Strategy",
4153
- required: false,
4154
- defaultValue: "merge"
4155
- }),
4156
- /** Owner user ID (for user-scope items) */
4157
- owner: Field.text({
4158
- label: "Owner",
4159
- required: false,
4160
- maxLength: 255
4161
- }),
4162
- /** Lifecycle state */
4163
- state: Field.select(["draft", "active", "archived", "deprecated"], {
4164
- label: "State",
4165
- required: false,
4166
- defaultValue: "active"
4167
- }),
4168
- /** Organization ID for multi-tenant isolation */
4169
- organization_id: Field.lookup("sys_organization", {
4170
- label: "Organization",
4171
- required: false,
4172
- description: "Organization for multi-tenant isolation."
4173
- }),
4174
- /**
4175
- * @deprecated ADR-0005 (revised 2026-05): per-env DBs replace per-project
4176
- * isolation. `environment_id` is no longer written by saveMetaItem and not
4177
- * consulted by overlay reads. Kept for legacy rows; new writes leave it
4178
- * NULL. Will be dropped in a future schema migration.
4179
- */
4180
- environment_id: Field.lookup("sys_environment", {
4181
- label: "Environment (deprecated)",
4182
- required: false,
4183
- description: "DEPRECATED. Use organization_id for tenant isolation."
4184
- }),
4185
- /** Version number for optimistic concurrency */
4186
- version: Field.number({
4187
- label: "Version",
4188
- required: false,
4189
- defaultValue: 1
4190
- }),
4191
- /** Content checksum for change detection (e.g. `sha256:<64 hex>` = 71 chars) */
4192
- checksum: Field.text({
4193
- label: "Checksum",
4194
- required: false,
4195
- maxLength: 71
4196
- }),
4197
- /** Origin of this metadata record */
4198
- source: Field.select(["filesystem", "database", "api", "migration"], {
4199
- label: "Source",
4200
- required: false
4201
- }),
4202
- /** Classification tags (JSON array) */
4203
- tags: Field.textarea({
4204
- label: "Tags",
4205
- required: false,
4206
- description: "JSON-serialized array of classification tags"
4207
- }),
4208
- /** Audit fields */
4209
- created_by: Field.lookup("sys_user", {
4210
- label: "Created By",
4211
- required: false,
4212
- readonly: true
4213
- }),
4214
- created_at: Field.datetime({
4215
- label: "Created At",
4216
- required: false,
4217
- readonly: true
4218
- }),
4219
- updated_by: Field.lookup("sys_user", {
4220
- label: "Updated By",
4221
- required: false
4222
- }),
4223
- updated_at: Field.datetime({
4224
- label: "Updated At",
4225
- required: false
4226
- })
4227
- },
4228
- indexes: [
4229
- // ADR-0005 (revised 2026-05): overlay uniqueness is scoped by
4230
- // (type, name, organization_id), restricted to active rows so resets
4231
- // / archived versions don't collide. environment_id is deprecated and
4232
- // not part of the discriminator. The runtime layer (protocol.ts
4233
- // ensureOverlayIndex) issues a DROP-then-CREATE migration to
4234
- // replace any pre-existing legacy composite index in-place.
4235
- {
4236
- name: "idx_sys_metadata_overlay_active",
4237
- fields: ["type", "name", "organization_id"],
4238
- unique: true,
4239
- partial: "state = 'active'"
4240
- },
4241
- { name: "idx_sys_metadata_org_type", fields: ["organization_id", "type"] },
4242
- { fields: ["type", "scope"] },
4243
- { fields: ["package_version_id"] },
4244
- { fields: ["state"] },
4245
- { fields: ["namespace"] }
4246
- ],
4247
- enable: {
4248
- trackHistory: true,
4249
- searchable: false,
4250
- apiEnabled: true,
4251
- apiMethods: ["get", "list", "create", "update", "delete"],
4252
- trash: false
4253
- },
4254
- // Named list views — power the Setup App "Data Model" group so admins
4255
- // can browse object/field metadata in a typed grid instead of the raw
4256
- // `All Metadata` debug surface. Each entry pre-filters by `type` and
4257
- // shows the columns that matter for that type. The dedicated visual
4258
- // designer (objectui's <ObjectManager> / <FieldDesigner>) deep-links
4259
- // from the row's `Edit in Designer` action; the grid stays useful for
4260
- // search, audit (state / updated_at) and triage.
4261
- listViews: {
4262
- only_objects: {
4263
- type: "grid",
4264
- name: "only_objects",
4265
- label: "Objects",
4266
- data: { provider: "object", object: "sys_metadata" },
4267
- columns: ["name", "namespace", "scope", "managed_by", "state", "updated_at"],
4268
- filter: [{ field: "type", operator: "equals", value: "object" }],
4269
- sort: [{ field: "name", order: "asc" }],
4270
- pagination: { pageSize: 50 }
4271
- },
4272
- only_fields: {
4273
- type: "grid",
4274
- name: "only_fields",
4275
- label: "Fields",
4276
- data: { provider: "object", object: "sys_metadata" },
4277
- columns: ["name", "namespace", "scope", "managed_by", "state", "updated_at"],
4278
- filter: [{ field: "type", operator: "equals", value: "field" }],
4279
- sort: [{ field: "name", order: "asc" }],
4280
- pagination: { pageSize: 50 }
4281
- },
4282
- all_metadata: {
4283
- type: "grid",
4284
- name: "all_metadata",
4285
- label: "All",
4286
- data: { provider: "object", object: "sys_metadata" },
4287
- columns: ["name", "type", "namespace", "scope", "state", "updated_at"],
4288
- sort: [{ field: "updated_at", order: "desc" }],
4289
- pagination: { pageSize: 50 }
4290
- }
4291
- }
4292
- });
4293
- var SysMetadataHistoryObject = ObjectSchema.create({
4294
- name: "sys_metadata_history",
4295
- label: "Metadata History",
4296
- pluralLabel: "Metadata History",
4297
- icon: "history",
4298
- isSystem: true,
4299
- managedBy: "system",
4300
- description: "Durable event log of metadata overlay changes (per-org, append-only)",
4301
- fields: {
4302
- /** Primary Key (UUID) */
4303
- id: Field.text({
4304
- label: "ID",
4305
- required: true,
4306
- readonly: true
4307
- }),
4308
- /** Per-org monotonic event sequence (durable cursor for replay). */
4309
- event_seq: Field.number({
4310
- label: "Event Seq",
4311
- required: true,
4312
- readonly: true,
4313
- description: "Per-organization monotonic event log cursor."
4314
- }),
4315
- /** Machine name (denormalized for easier querying) */
4316
- name: Field.text({
4317
- label: "Name",
4318
- required: true,
4319
- searchable: true,
4320
- readonly: true,
4321
- maxLength: 255
4322
- }),
4323
- /** Metadata type (denormalized for easier querying) */
4324
- type: Field.text({
4325
- label: "Metadata Type",
4326
- required: true,
4327
- searchable: true,
4328
- readonly: true,
4329
- maxLength: 100
4330
- }),
4331
- /** Per-(org,type,name) lineage counter at this snapshot. */
4332
- version: Field.number({
4333
- label: "Version",
4334
- required: true,
4335
- readonly: true
4336
- }),
4337
- /** Type of operation that created this history entry */
4338
- operation_type: Field.select(["create", "update", "publish", "revert", "delete"], {
4339
- label: "Operation Type",
4340
- required: true,
4341
- readonly: true
4342
- }),
4343
- /**
4344
- * Historical metadata snapshot (JSON payload).
4345
- * Null for `operation_type = 'delete'` — the row carries no body.
4346
- */
4347
- metadata: Field.textarea({
4348
- label: "Metadata",
4349
- required: false,
4350
- readonly: true,
4351
- description: "JSON-serialized metadata snapshot at this version (null for deletes)."
4352
- }),
4353
- /** SHA-256 checksum of metadata content (null for deletes). */
4354
- checksum: Field.text({
4355
- label: "Checksum",
4356
- required: false,
4357
- readonly: true,
4358
- maxLength: 80
4359
- }),
4360
- /** Checksum of the previous version (null for the first event). */
4361
- previous_checksum: Field.text({
4362
- label: "Previous Checksum",
4363
- required: false,
4364
- readonly: true,
4365
- maxLength: 80
4366
- }),
4367
- /** Human-readable description of changes (= MetadataEvent.message). */
4368
- change_note: Field.textarea({
4369
- label: "Change Note",
4370
- required: false,
4371
- readonly: true,
4372
- description: "Description of what changed in this version."
4373
- }),
4374
- /**
4375
- * Producer of the event ('sys-metadata-repo', 'fs', 'studio',
4376
- * 'api', …). Defaults to 'sys-metadata-repo' on the canonical
4377
- * write path; preserved on history() reads as MetadataEvent.source.
4378
- */
4379
- source: Field.text({
4380
- label: "Source",
4381
- required: false,
4382
- readonly: true,
4383
- maxLength: 64
4384
- }),
4385
- /** Organization ID for multi-tenant isolation */
4386
- organization_id: Field.lookup("sys_organization", {
4387
- label: "Organization",
4388
- required: false,
4389
- readonly: true,
4390
- description: "Organization for multi-tenant isolation."
4391
- }),
4392
- /** User who made this change (= MetadataEvent.actor). */
4393
- recorded_by: Field.lookup("sys_user", {
4394
- label: "Recorded By",
4395
- required: false,
4396
- readonly: true
4397
- }),
4398
- /** When was this version recorded */
4399
- recorded_at: Field.datetime({
4400
- label: "Recorded At",
4401
- required: true,
4402
- readonly: true
4403
- })
4404
- },
4405
- indexes: [
4406
- { fields: ["organization_id", "event_seq"], unique: true },
4407
- { fields: ["organization_id", "type", "name", "version"], unique: true },
4408
- { fields: ["organization_id", "type", "name", "recorded_at"] },
4409
- // ADR-0009: getByHash() lookup — execution-pinned types resolve a
4410
- // historical body by content hash via this index.
4411
- { fields: ["organization_id", "type", "name", "checksum"] },
4412
- { fields: ["type", "name"] },
4413
- { fields: ["recorded_at"] },
4414
- { fields: ["operation_type"] }
4415
- ],
4416
- enable: {
4417
- trackHistory: false,
4418
- searchable: false,
4419
- apiEnabled: true,
4420
- apiMethods: ["get", "list"],
4421
- trash: false
4422
- }
4423
- });
4424
- var SysMetadataAuditObject = ObjectSchema.create({
4425
- name: "sys_metadata_audit",
4426
- label: "Metadata Audit",
4427
- pluralLabel: "Metadata Audit",
4428
- icon: "shield-check",
4429
- isSystem: true,
4430
- managedBy: "append-only",
4431
- description: "Append-only audit trail of metadata write decisions (ADR-0010).",
4432
- fields: {
4433
- /** Primary Key (UUID) */
4434
- id: Field.text({
4435
- label: "ID",
4436
- required: true,
4437
- readonly: true
4438
- }),
4439
- /** When the decision was made (ISO-8601 UTC). */
4440
- occurred_at: Field.datetime({
4441
- label: "Occurred At",
4442
- required: true,
4443
- readonly: true
4444
- }),
4445
- /** Acting principal (user id, system id, or 'system'). */
4446
- actor: Field.text({
4447
- label: "Actor",
4448
- required: true,
4449
- readonly: true,
4450
- maxLength: 255,
4451
- description: 'Acting principal \u2014 user id, system id, or "system".'
4452
- }),
4453
- /** Code path that produced the decision (e.g. `protocol.saveMetaItem`). */
4454
- source: Field.text({
4455
- label: "Source",
4456
- required: false,
4457
- readonly: true,
4458
- maxLength: 128
4459
- }),
4460
- /** Metadata type (singular, e.g. `app`, `object`, `view`). */
4461
- type: Field.text({
4462
- label: "Metadata Type",
4463
- required: true,
4464
- readonly: true,
4465
- searchable: true,
4466
- maxLength: 100
4467
- }),
4468
- /** Item machine name. */
4469
- name: Field.text({
4470
- label: "Name",
4471
- required: true,
4472
- readonly: true,
4473
- searchable: true,
4474
- maxLength: 255
4475
- }),
4476
- /** Organization for multi-tenant filtering. NULL for env-wide writes. */
4477
- organization_id: Field.lookup("sys_organization", {
4478
- label: "Organization",
4479
- required: false,
4480
- readonly: true
4481
- }),
4482
- /** Operation kind. */
4483
- operation: Field.select(["save", "publish", "rollback", "delete", "reset"], {
4484
- label: "Operation",
4485
- required: true,
4486
- readonly: true
4487
- }),
4488
- /** Decision outcome — allowed, denied (refused), or forced (bypassed via override). */
4489
- outcome: Field.select(["allowed", "denied", "forced"], {
4490
- label: "Outcome",
4491
- required: true,
4492
- readonly: true
4493
- }),
4494
- /**
4495
- * Machine-readable code for the decision:
4496
- * - on `allowed`: `'ok'`
4497
- * - on `denied`: `'not_overridable'` | `'not_creatable'` |
4498
- * `'item_locked'` | `'invalid_metadata'` | `'destructive_change'` |
4499
- * `'metadata_conflict'`
4500
- * - on `forced`: `'lock_override'` (Phase 3)
4501
- */
4502
- code: Field.text({
4503
- label: "Code",
4504
- required: true,
4505
- readonly: true,
4506
- maxLength: 64
4507
- }),
4508
- /**
4509
- * Lock state observed at the time of the decision (`none` if the
4510
- * item carried no `_lock`). Captured even on `allowed` rows so
4511
- * later compliance queries can see "what was the lock state when
4512
- * this write succeeded".
4513
- */
4514
- lock_state: Field.select(["none", "no-overlay", "no-delete", "full"], {
4515
- label: "Lock State",
4516
- required: false,
4517
- readonly: true
4518
- }),
4519
- /** True when the write succeeded by bypassing a lock (Phase 3). */
4520
- lock_overridden: Field.boolean({
4521
- label: "Lock Overridden",
4522
- required: false,
4523
- readonly: true
4524
- }),
4525
- /** Optional request correlation id for tracing. */
4526
- request_id: Field.text({
4527
- label: "Request ID",
4528
- required: false,
4529
- readonly: true,
4530
- maxLength: 128
4531
- }),
4532
- /** Optional free-form context (e.g. brief diff summary). */
4533
- note: Field.textarea({
4534
- label: "Note",
4535
- required: false,
4536
- readonly: true
4537
- })
4538
- },
4539
- indexes: [
4540
- { fields: ["organization_id", "occurred_at"] },
4541
- { fields: ["type", "name", "occurred_at"] },
4542
- { fields: ["actor", "occurred_at"] },
4543
- { fields: ["outcome"] }
4544
- ],
4545
- enable: {
4546
- trackHistory: false,
4547
- searchable: false,
4548
- apiEnabled: true,
4549
- apiMethods: ["get", "list"],
4550
- trash: false
4551
- }
4552
- });
4553
- var SysViewDefinitionObject = ObjectSchema.create({
4554
- name: "sys_view_definition",
4555
- label: "View Definition",
4556
- pluralLabel: "View Definitions",
4557
- icon: "layout-grid",
4558
- isSystem: true,
4559
- description: "Runtime-authored view definitions (shared / personal layers). The package layer ships from source.",
4560
- fields: {
4561
- /** Primary Key (UUID) */
4562
- id: Field.text({ label: "ID", required: true, readonly: true }),
4563
- /**
4564
- * Globally-unique qualified view id, `<object>.<viewKey>`, matching the
4565
- * spec `ViewItemSchema.name`. For personal views the runtime may suffix
4566
- * to keep it unique per owner.
4567
- */
4568
- name: Field.text({
4569
- label: "Name",
4570
- required: true,
4571
- searchable: true,
4572
- maxLength: 255
4573
- }),
4574
- /** Bound object — the foreign key used to aggregate views for the switcher. */
4575
- object: Field.text({
4576
- label: "Object",
4577
- required: true,
4578
- searchable: true,
4579
- maxLength: 255
4580
- }),
4581
- /** Whether `config` is a ListView (list family) or a FormView. */
4582
- view_kind: Field.select(["list", "form"], {
4583
- label: "View Kind",
4584
- required: true,
4585
- defaultValue: "list"
4586
- }),
4587
- /** Display label (plain string; i18n keys also accepted). */
4588
- label: Field.text({ label: "Label", required: false, maxLength: 255 }),
4589
- /** Whether this is the object's default view in the switcher. */
4590
- is_default: Field.boolean({ label: "Is Default", required: false, defaultValue: false }),
4591
- /** Sort order within the object's switcher / left rail. */
4592
- view_order: Field.number({ label: "Order", required: false, defaultValue: 0 }),
4593
- /**
4594
- * Identity layer. Only `shared` and `personal` are stored at runtime;
4595
- * `package` views come from source.
4596
- */
4597
- scope: Field.select(["shared", "personal"], {
4598
- label: "Scope",
4599
- required: true,
4600
- defaultValue: "personal"
4601
- }),
4602
- /** Owner user id — set when scope = personal; null for shared. */
4603
- owner: Field.text({ label: "Owner", required: false, maxLength: 255 }),
4604
- /** Hidden from the switcher (per-user / per-org declutter). */
4605
- hidden: Field.boolean({ label: "Hidden", required: false, defaultValue: false }),
4606
- /** The ListView / FormView configuration payload. */
4607
- config: Field.json({
4608
- label: "Config",
4609
- required: true,
4610
- description: "ListView or FormView configuration (matches spec ViewItem.config)."
4611
- }),
4612
- /** Organization for multi-tenant isolation. */
4613
- organization_id: Field.lookup("sys_organization", {
4614
- label: "Organization",
4615
- required: false,
4616
- description: "Organization for multi-tenant isolation."
4617
- }),
4618
- /** Lifecycle state. */
4619
- state: Field.select(["draft", "active", "archived"], {
4620
- label: "State",
4621
- required: false,
4622
- defaultValue: "active"
4623
- }),
4624
- /** Audit fields. */
4625
- created_by: Field.lookup("sys_user", { label: "Created By", required: false, readonly: true }),
4626
- created_at: Field.datetime({ label: "Created At", required: false, readonly: true }),
4627
- updated_by: Field.lookup("sys_user", { label: "Updated By", required: false }),
4628
- updated_at: Field.datetime({ label: "Updated At", required: false })
4629
- },
4630
- indexes: [
4631
- // A given view name is unique per (organization, owner) among active rows —
4632
- // a shared view (owner NULL) and each user's personal views don't collide.
4633
- {
4634
- name: "idx_sys_view_def_active",
4635
- fields: ["name", "organization_id", "owner"],
4636
- unique: true,
4637
- partial: "state = 'active'"
4638
- },
4639
- // The switcher query: views for one object within a tenant.
4640
- { name: "idx_sys_view_def_object", fields: ["organization_id", "object"] },
4641
- { fields: ["scope"] },
4642
- { fields: ["owner"] },
4643
- { fields: ["state"] }
4644
- ],
4645
- enable: {
4646
- trackHistory: true,
4647
- searchable: false,
4648
- apiEnabled: true,
4649
- apiMethods: ["get", "list", "create", "update", "delete"],
4650
- trash: false
4651
- }
4652
- });
4653
4070
  var SysSetting = ObjectSchema.create({
4654
4071
  name: "sys_setting",
4655
4072
  label: "Setting",
@@ -4810,12 +4227,10 @@ var SysSecret = ObjectSchema.create({
4810
4227
  isSystem: true,
4811
4228
  managedBy: "system",
4812
4229
  description: "Cipher store referenced by sys_setting handles. Never holds plaintext.",
4813
- scope: "tenant",
4814
4230
  compactLayout: ["namespace", "key", "kms_key_id", "version", "rotated_at"],
4815
- defaultViewName: "all",
4816
- views: {
4231
+ listViews: {
4817
4232
  all: {
4818
- type: "list",
4233
+ type: "grid",
4819
4234
  name: "all",
4820
4235
  label: "All Secrets",
4821
4236
  columns: ["namespace", "key", "kms_key_id", "version", "rotated_at", "created_at"]
@@ -4903,12 +4318,10 @@ var SysSettingAudit = ObjectSchema.create({
4903
4318
  isSystem: true,
4904
4319
  managedBy: "system",
4905
4320
  description: "Append-only audit trail for SettingsService mutations.",
4906
- scope: "tenant",
4907
4321
  compactLayout: ["namespace", "key", "scope", "action", "actor_id", "created_at"],
4908
- defaultViewName: "recent",
4909
- views: {
4322
+ listViews: {
4910
4323
  recent: {
4911
- type: "list",
4324
+ type: "grid",
4912
4325
  name: "recent",
4913
4326
  label: "Recent",
4914
4327
  columns: ["created_at", "namespace", "key", "scope", "action", "actor_id", "source"],
@@ -21891,6 +21304,6 @@ function createPlatformObjectsPlugin() {
21891
21304
  return new PlatformObjectsPlugin();
21892
21305
  }
21893
21306
 
21894
- export { ACCOUNT_APP, MetadataFormsTranslations, PlatformObjectsPlugin, SETUP_APP, SETUP_NAV_CONTRIBUTIONS, STUDIO_APP, SetupAppTranslations, SysAccount, SysApiKey, SysAttachment, SysDepartment, SysDepartmentMember, SysDeviceCode, SysEmail, SysEmailTemplate, SysInvitation, SysJob, SysJobQueue, SysJobRun, SysJwks, SysMember, SysMetadataObject as SysMetadata, SysMetadataAuditObject, SysMetadataHistoryObject, SysMetadataObject, SysNotification, SysOauthAccessToken, SysOauthApplication, SysOauthConsent, SysOauthRefreshToken, SysOrganization, SysOrganizationDetailPage, SysReportSchedule, SysSavedReport, SysSecret, SysSession, SysSetting, SysSettingAudit, SysTeam, SysTeamMember, SysTwoFactor, SysUser, SysUserDetailPage, SysUserPreference, SysVerification, SysViewDefinitionObject, SystemOverviewDashboard, createPlatformObjectsPlugin, en, esES, jaJP, zhCN };
21307
+ export { ACCOUNT_APP, MetadataFormsTranslations, PlatformObjectsPlugin, SETUP_APP, SETUP_NAV_CONTRIBUTIONS, STUDIO_APP, SetupAppTranslations, SysAccount, SysApiKey, SysAttachment, SysDepartment, SysDepartmentMember, SysDeviceCode, SysEmail, SysEmailTemplate, SysInvitation, SysJob, SysJobQueue, SysJobRun, SysJwks, SysMember, SysNotification, SysOauthAccessToken, SysOauthApplication, SysOauthConsent, SysOauthRefreshToken, SysOrganization, SysOrganizationDetailPage, SysReportSchedule, SysSavedReport, SysSecret, SysSession, SysSetting, SysSettingAudit, SysTeam, SysTeamMember, SysTwoFactor, SysUser, SysUserDetailPage, SysUserPreference, SysVerification, SystemOverviewDashboard, createPlatformObjectsPlugin, en, esES, jaJP, zhCN };
21895
21308
  //# sourceMappingURL=index.mjs.map
21896
21309
  //# sourceMappingURL=index.mjs.map