@stndrds/schema 1.0.0-alpha.225 → 1.0.0-alpha.227

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.js CHANGED
@@ -3,7 +3,7 @@
3
3
  var chunkFRCDMQER_js = require('./chunk-FRCDMQER.js');
4
4
  require('./chunk-PGERPYDR.js');
5
5
  var chunkNSM2JPC3_js = require('./chunk-NSM2JPC3.js');
6
- var chunkXTPYL6OM_js = require('./chunk-XTPYL6OM.js');
6
+ var chunkMUGKKCY3_js = require('./chunk-MUGKKCY3.js');
7
7
  require('./chunk-5WATIVCA.js');
8
8
  require('./chunk-O44XVGHE.js');
9
9
  require('./chunk-YIP5FJ5H.js');
@@ -1096,6 +1096,8 @@ var SYSTEM_RESOURCES = {
1096
1096
  AUDIT: "audit",
1097
1097
  /** Programmatic access keys */
1098
1098
  API_KEYS: "api-keys",
1099
+ /** OAuth connector connections (mailboxes, etc.) */
1100
+ CONNECTORS: "connectors",
1099
1101
  /** Environment variables for agents */
1100
1102
  ENV_VARS: "env-vars",
1101
1103
  /** Agent session visibility — required for an agent actor to read its own sessions */
@@ -1112,6 +1114,7 @@ var ALL_SYSTEM_RESOURCES = [
1112
1114
  SYSTEM_RESOURCES.DOCUMENTS,
1113
1115
  SYSTEM_RESOURCES.AUDIT,
1114
1116
  SYSTEM_RESOURCES.API_KEYS,
1117
+ SYSTEM_RESOURCES.CONNECTORS,
1115
1118
  SYSTEM_RESOURCES.ENV_VARS,
1116
1119
  SYSTEM_RESOURCES.SESSION
1117
1120
  ];
@@ -1126,6 +1129,7 @@ var SYSTEM_RESOURCE_LABELS = {
1126
1129
  documents: "Documents",
1127
1130
  audit: "Audit",
1128
1131
  "api-keys": "API keys",
1132
+ connectors: "Connected accounts",
1129
1133
  "env-vars": "Environment variables",
1130
1134
  session: "Agent sessions"
1131
1135
  };
@@ -1148,6 +1152,7 @@ var DEFAULT_ROLE_DESCRIPTIONS = {
1148
1152
  agent_default: "Default role for AI agents \u2014 CRUD on records plus documents and files"
1149
1153
  };
1150
1154
  var ALL_ACTIONS2 = ["read", "create", "update", "delete", "manage"];
1155
+ var MEMBER_CONNECTOR_ACTIONS = ["read", "create", "delete"];
1151
1156
  var DEFAULT_ROLE_PERMISSIONS = {
1152
1157
  owner: {
1153
1158
  system: [{ target: "*", actions: ALL_ACTIONS2 }],
@@ -1156,7 +1161,8 @@ var DEFAULT_ROLE_PERMISSIONS = {
1156
1161
  member: {
1157
1162
  system: [
1158
1163
  { target: "people", actions: ["read"] },
1159
- { target: "workspace", actions: ["read"] }
1164
+ { target: "workspace", actions: ["read"] },
1165
+ { target: "connectors", actions: MEMBER_CONNECTOR_ACTIONS }
1160
1166
  ],
1161
1167
  object: [{ target: "*", actions: ALL_ACTIONS2 }]
1162
1168
  },
@@ -1294,7 +1300,7 @@ var BaseAttributeBuilder = class {
1294
1300
  * @see https://standardschema.dev/
1295
1301
  */
1296
1302
  get "~standard"() {
1297
- const zodSchema = chunkXTPYL6OM_js.createAttributeValidator(this.build());
1303
+ const zodSchema = chunkMUGKKCY3_js.createAttributeValidator(this.build());
1298
1304
  return createStandardSchemaProps(zodSchema);
1299
1305
  }
1300
1306
  constructor(type, name, label) {
@@ -2067,9 +2073,9 @@ var RollupAttributeBuilder = class extends BaseAttributeBuilder {
2067
2073
  if (fn === "original" && targetType !== void 0 && targetType !== "select" && targetType !== "status" && targetType !== "multiselect") {
2068
2074
  const relation2 = this.attr.relationAttribute ?? "relation";
2069
2075
  const target = this.attr.targetAttribute ?? "field";
2070
- throw new chunkXTPYL6OM_js.SchemaError(
2076
+ throw new chunkMUGKKCY3_js.SchemaError(
2071
2077
  `Rollup "${this.attr.name}": .using("original") only supports a "select", "status", or "multiselect" target, but .targetType("${targetType}") was given. To surface a plain ${targetType} value from a related record, use a formula instead \u2014 e.g. formula({ name: "${this.attr.name}", label: "\u2026" }).expression("${relation2}.${target}").`,
2072
- chunkXTPYL6OM_js.SchemaErrorCode.VALIDATION_FAILED
2078
+ chunkMUGKKCY3_js.SchemaErrorCode.VALIDATION_FAILED
2073
2079
  );
2074
2080
  }
2075
2081
  return super.build();
@@ -2565,7 +2571,7 @@ var ObjectBuilder = class {
2565
2571
  * @see https://standardschema.dev/
2566
2572
  */
2567
2573
  get "~standard"() {
2568
- const zodSchema = chunkXTPYL6OM_js.createObjectValidator(this.build());
2574
+ const zodSchema = chunkMUGKKCY3_js.createObjectValidator(this.build());
2569
2575
  return createStandardSchemaProps(zodSchema);
2570
2576
  }
2571
2577
  /**
@@ -2730,7 +2736,7 @@ var ObjectBuilder = class {
2730
2736
  documentLayout(layout) {
2731
2737
  if (layout.presets) {
2732
2738
  for (const preset of layout.presets) {
2733
- validatePresetDepth(preset.structure, 1);
2739
+ validatePresetStructure(preset.id, preset.structure, 1);
2734
2740
  }
2735
2741
  }
2736
2742
  this.obj.documentLayout = layout;
@@ -2779,26 +2785,26 @@ var ObjectBuilder = class {
2779
2785
  throw new Error("[ObjectBuilder] Missing required field: label");
2780
2786
  }
2781
2787
  if (!this._labelExpression) {
2782
- throw new chunkXTPYL6OM_js.SchemaError(
2788
+ throw new chunkMUGKKCY3_js.SchemaError(
2783
2789
  `Object "${this.obj.name}" must have a labelExpression. The labelExpression defines how records are displayed in lists and relations (e.g. "{{ name }}").`,
2784
- chunkXTPYL6OM_js.SchemaErrorCode.VALIDATION_FAILED
2790
+ chunkMUGKKCY3_js.SchemaErrorCode.VALIDATION_FAILED
2785
2791
  );
2786
2792
  }
2787
2793
  const labelResult = labelExpressionSchema.safeParse(this._labelExpression);
2788
2794
  if (!labelResult.success) {
2789
2795
  const errorMsg = labelResult.error.issues[0]?.message ?? "Invalid labelExpression";
2790
- throw new chunkXTPYL6OM_js.SchemaError(
2796
+ throw new chunkMUGKKCY3_js.SchemaError(
2791
2797
  `Invalid labelExpression for "${this.obj.name}": ${errorMsg}`,
2792
- chunkXTPYL6OM_js.SchemaErrorCode.VALIDATION_FAILED
2798
+ chunkMUGKKCY3_js.SchemaErrorCode.VALIDATION_FAILED
2793
2799
  );
2794
2800
  }
2795
2801
  if (this._embeddingExpression !== void 0) {
2796
2802
  const embeddingResult = labelExpressionSchema.safeParse(this._embeddingExpression);
2797
2803
  if (!embeddingResult.success) {
2798
2804
  const errorMsg = embeddingResult.error.issues[0]?.message ?? "Invalid embeddingExpression";
2799
- throw new chunkXTPYL6OM_js.SchemaError(
2805
+ throw new chunkMUGKKCY3_js.SchemaError(
2800
2806
  `Invalid embeddingExpression for "${this.obj.name}": ${errorMsg}`,
2801
- chunkXTPYL6OM_js.SchemaErrorCode.VALIDATION_FAILED
2807
+ chunkMUGKKCY3_js.SchemaErrorCode.VALIDATION_FAILED
2802
2808
  );
2803
2809
  }
2804
2810
  }
@@ -2839,7 +2845,7 @@ var ObjectBuilder = class {
2839
2845
  objectNameSchema.parse(name);
2840
2846
  } catch (error) {
2841
2847
  if (error instanceof z3__default.default.ZodError) {
2842
- throw new chunkXTPYL6OM_js.SchemaError(error.issues[0].message, chunkXTPYL6OM_js.SchemaErrorCode.INVALID_OBJECT_NAME);
2848
+ throw new chunkMUGKKCY3_js.SchemaError(error.issues[0].message, chunkMUGKKCY3_js.SchemaErrorCode.INVALID_OBJECT_NAME);
2843
2849
  }
2844
2850
  throw error;
2845
2851
  }
@@ -2848,13 +2854,30 @@ var ObjectBuilder = class {
2848
2854
  function object(config) {
2849
2855
  return new ObjectBuilder(config);
2850
2856
  }
2851
- function validatePresetDepth(nodes, depth) {
2857
+ function validatePresetStructure(presetId, nodes, depth) {
2858
+ const fail = (message, detail) => {
2859
+ throw new chunkMUGKKCY3_js.ValidationError(message, [
2860
+ { path: ["documentLayout", "presets", presetId], message: detail }
2861
+ ]);
2862
+ };
2852
2863
  if (depth > MAX_PRESET_DEPTH) {
2853
- throw new Error(`Preset structure exceeds max depth of ${MAX_PRESET_DEPTH}`);
2864
+ fail(`Preset structure exceeds max depth of ${MAX_PRESET_DEPTH}`, "Preset structure too deep");
2854
2865
  }
2866
+ const seenSiblingTitles = /* @__PURE__ */ new Set();
2855
2867
  for (const node of nodes) {
2868
+ const title = node.title.trim();
2869
+ if (title.length === 0) {
2870
+ fail("Folder preset node title is required", "Empty folder title");
2871
+ }
2872
+ if (title.includes("/")) {
2873
+ fail("Folder preset node title cannot contain /", `Folder title contains /: "${title}"`);
2874
+ }
2875
+ if (seenSiblingTitles.has(title)) {
2876
+ fail("Folder preset sibling titles must be unique", `Duplicate folder title: "${title}"`);
2877
+ }
2878
+ seenSiblingTitles.add(title);
2856
2879
  if (node.children && node.children.length > 0) {
2857
- validatePresetDepth(node.children, depth + 1);
2880
+ validatePresetStructure(presetId, node.children, depth + 1);
2858
2881
  }
2859
2882
  }
2860
2883
  }
@@ -3273,6 +3296,39 @@ var ActivityTabConfig = class {
3273
3296
  return this.view.build();
3274
3297
  }
3275
3298
  };
3299
+ var EmailsTabConfig = class {
3300
+ /** @internal */
3301
+ constructor(view, base) {
3302
+ this.view = view;
3303
+ this.tabData = { ...base, type: "emails", emailAttributeIds: [] };
3304
+ }
3305
+ /** Set the text attributes whose values are matched against email participants. */
3306
+ emailAttributes(...attributeIds) {
3307
+ this.tabData.emailAttributeIds = attributeIds;
3308
+ return this;
3309
+ }
3310
+ /**
3311
+ * Continue building with a new tab
3312
+ */
3313
+ tab(name, label) {
3314
+ this.view._addTab(this.tabData);
3315
+ return new TabBuilder(this.view, name, label);
3316
+ }
3317
+ /**
3318
+ * Finish this tab and return to DetailViewBuilder
3319
+ */
3320
+ done() {
3321
+ this.view._addTab(this.tabData);
3322
+ return this.view;
3323
+ }
3324
+ /**
3325
+ * Build the final view definition
3326
+ */
3327
+ build() {
3328
+ this.view._addTab(this.tabData);
3329
+ return this.view.build();
3330
+ }
3331
+ };
3276
3332
  var DocumentsTabConfig = class {
3277
3333
  /** @internal */
3278
3334
  constructor(view, base) {
@@ -3435,6 +3491,13 @@ var TabBuilder = class {
3435
3491
  documents() {
3436
3492
  return new DocumentsTabConfig(this.view, this.base);
3437
3493
  }
3494
+ /**
3495
+ * Create an emails tab (query-time association via email-bearing attributes)
3496
+ * @example .emails().emailAttributes("email", "backup_email")
3497
+ */
3498
+ emails() {
3499
+ return new EmailsTabConfig(this.view, this.base);
3500
+ }
3438
3501
  /**
3439
3502
  * Create a forms tab to launch and track form instances linked to this record
3440
3503
  * @example .tab("forms", "Forms").forms()
@@ -4556,9 +4619,9 @@ Available objects: ${this.listNames().join(", ")}`
4556
4619
  }
4557
4620
  };
4558
4621
  var registry = new NativeObjectRegistryClass();
4559
-
4560
- // src/native/skill.object.ts
4561
- var SKILL_OBJECT = object({ name: "skill", label: "Skill" }).sealed().icon("sparkles").order(Number.MAX_SAFE_INTEGER).pluralLabel("Skills").labelExpression("{{ name }}").embeddingExpression("{{ name }}\n{{ description }}\n{{ content }}").attribute(text({ name: "name", label: "Name" }).required()).attribute(text({ name: "description", label: "Description" }).multiline().required()).attribute(richtext({ name: "content", label: "Content" })).build();
4622
+ var SKILL_OBJECT = object({ name: "skill", label: "Skill" }).sealed().icon("sparkles").order(Number.MAX_SAFE_INTEGER).pluralLabel("Skills").labelExpression("{{ name }}").embeddingExpression("{{ name }}\n{{ description }}\n{{ content }}").attribute(text({ name: "name", label: "Name" }).maxLength(constants.SKILL_NAME_MAX_LENGTH).required()).attribute(
4623
+ text({ name: "description", label: "Description" }).multiline().maxLength(constants.SKILL_DESCRIPTION_MAX_LENGTH).required()
4624
+ ).attribute(richtext({ name: "content", label: "Content" })).build();
4562
4625
  var SKILL_VIEW = detailView("skill-detail", "Skill").for("skill").default().sidePanel({ attributes: ["name", "description"] }).tab("content", "Content").richtext("content").titleAttribute("name").done().build();
4563
4626
  var SKILL_LIST_VIEW = listView("skill-list", "Skills").for("skill").default().tab("all", "All").table().columns("name", "description").sort("name", "asc").build();
4564
4627
 
@@ -6792,7 +6855,7 @@ function assertOperatorForType(operator, type, context) {
6792
6855
  if (!ops?.includes(operator)) {
6793
6856
  const validList = ops?.length ? ops.join(", ") : "(no operators registered for this type)";
6794
6857
  const summary = `Operator "${operator}" is not valid for ${context} type "${type}". Valid operators: ${validList}.`;
6795
- throw new chunkXTPYL6OM_js.ValidationError(summary, [
6858
+ throw new chunkMUGKKCY3_js.ValidationError(summary, [
6796
6859
  {
6797
6860
  path: ["operator"],
6798
6861
  message: summary
@@ -6808,7 +6871,7 @@ function assertRelativeDateValue(rule) {
6808
6871
  const valid = typeof v === "object" && v !== null && typeof v.amount === "number" && Number.isFinite(v.amount) && v.amount > 0 && typeof v.unit === "string" && RELATIVE_DATE_UNITS.has(v.unit) && typeof v.direction === "string" && RELATIVE_DATE_DIRECTIONS.has(v.direction);
6809
6872
  if (!valid) {
6810
6873
  const m = `Operator "is_within" requires a relative-date value { amount: positive number, unit: days|weeks|months|years, direction: past|future }`;
6811
- throw new chunkXTPYL6OM_js.ValidationError(m, [{ path: ["value"], message: m }]);
6874
+ throw new chunkMUGKKCY3_js.ValidationError(m, [{ path: ["value"], message: m }]);
6812
6875
  }
6813
6876
  }
6814
6877
  function assertDynamicValueForAttribute(rule, attrType) {
@@ -6816,34 +6879,34 @@ function assertDynamicValueForAttribute(rule, attrType) {
6816
6879
  const v = rule.value;
6817
6880
  if (v.dynamic === "actor" && attrType !== "user") {
6818
6881
  const m = `actor token (@me) is only valid on user attributes, not "${attrType}"`;
6819
- throw new chunkXTPYL6OM_js.ValidationError(m, [{ path: ["value"], message: m }]);
6882
+ throw new chunkMUGKKCY3_js.ValidationError(m, [{ path: ["value"], message: m }]);
6820
6883
  }
6821
6884
  if (v.dynamic === "date" && attrType !== "date") {
6822
6885
  const m = `date token (@today/@now) is only valid on date attributes, not "${attrType}"`;
6823
- throw new chunkXTPYL6OM_js.ValidationError(m, [{ path: ["value"], message: m }]);
6886
+ throw new chunkMUGKKCY3_js.ValidationError(m, [{ path: ["value"], message: m }]);
6824
6887
  }
6825
6888
  }
6826
6889
  function validateQualifiedRule(rule, context) {
6827
6890
  const rootAttr = context.attributes.find((a) => a.name === rule.attribute);
6828
6891
  const systemOps = SYSTEM_FILTER_OPERATORS[rule.attribute];
6829
6892
  if (!(rootAttr || systemOps)) {
6830
- throw new chunkXTPYL6OM_js.ValidationError(`Unknown attribute: ${rule.attribute}`, [
6893
+ throw new chunkMUGKKCY3_js.ValidationError(`Unknown attribute: ${rule.attribute}`, [
6831
6894
  { path: ["attribute"], message: `Unknown attribute: ${rule.attribute}` }
6832
6895
  ]);
6833
6896
  }
6834
6897
  if (rule.quantifier !== void 0 && !rule.property) {
6835
6898
  const m = `quantifier is only valid on qualified edge rules (set "property")`;
6836
- throw new chunkXTPYL6OM_js.ValidationError(m, [{ path: ["quantifier"], message: m }]);
6899
+ throw new chunkMUGKKCY3_js.ValidationError(m, [{ path: ["quantifier"], message: m }]);
6837
6900
  }
6838
6901
  if (!rootAttr) {
6839
6902
  if (rule.property) {
6840
- throw new chunkXTPYL6OM_js.ValidationError(`Cannot qualify system attribute "${rule.attribute}"`, [
6903
+ throw new chunkMUGKKCY3_js.ValidationError(`Cannot qualify system attribute "${rule.attribute}"`, [
6841
6904
  { path: ["property"], message: `"${rule.attribute}" is a system column, not a reference` }
6842
6905
  ]);
6843
6906
  }
6844
6907
  if (!systemOps.includes(rule.operator)) {
6845
6908
  const summary = `Operator "${rule.operator}" is not valid for system attribute "${rule.attribute}". Valid operators: ${systemOps.join(", ")}.`;
6846
- throw new chunkXTPYL6OM_js.ValidationError(summary, [{ path: ["operator"], message: summary }]);
6909
+ throw new chunkMUGKKCY3_js.ValidationError(summary, [{ path: ["operator"], message: summary }]);
6847
6910
  }
6848
6911
  assertRelativeDateValue(rule);
6849
6912
  return;
@@ -6854,25 +6917,25 @@ function validateQualifiedRule(rule, context) {
6854
6917
  if (!ops.includes(rule.operator)) {
6855
6918
  const validList = ops.length ? ops.join(", ") : "(not filterable)";
6856
6919
  const summary = `Operator "${rule.operator}" is not valid for attribute "${rootAttr.name}". Valid operators: ${validList}.`;
6857
- throw new chunkXTPYL6OM_js.ValidationError(summary, [{ path: ["operator"], message: summary }]);
6920
+ throw new chunkMUGKKCY3_js.ValidationError(summary, [{ path: ["operator"], message: summary }]);
6858
6921
  }
6859
6922
  assertRelativeDateValue(rule);
6860
6923
  return;
6861
6924
  }
6862
6925
  if (!REFERENCE_TYPES.has(rootAttr.type)) {
6863
- throw new chunkXTPYL6OM_js.ValidationError(`Cannot qualify ${rootAttr.type} attribute "${rule.attribute}"`, [
6926
+ throw new chunkMUGKKCY3_js.ValidationError(`Cannot qualify ${rootAttr.type} attribute "${rule.attribute}"`, [
6864
6927
  { path: ["property"], message: `Attribute "${rule.attribute}" is not a reference type` }
6865
6928
  ]);
6866
6929
  }
6867
6930
  const propSchema = rootAttr.properties;
6868
6931
  if (!propSchema) {
6869
- throw new chunkXTPYL6OM_js.ValidationError(`Attribute "${rule.attribute}" has no qualifyWith schema`, [
6932
+ throw new chunkMUGKKCY3_js.ValidationError(`Attribute "${rule.attribute}" has no qualifyWith schema`, [
6870
6933
  { path: ["property"], message: `"${rule.attribute}" has no qualifyWith` }
6871
6934
  ]);
6872
6935
  }
6873
6936
  const propDef = propSchema.definitions.find((p) => p.name === rule.property);
6874
6937
  if (!propDef) {
6875
- throw new chunkXTPYL6OM_js.ValidationError(
6938
+ throw new chunkMUGKKCY3_js.ValidationError(
6876
6939
  `Property "${rule.property}" not defined on "${rule.attribute}".qualifyWith()`,
6877
6940
  [{ path: ["property"], message: `Unknown property: ${rule.property}` }]
6878
6941
  );
@@ -6915,179 +6978,179 @@ Object.defineProperty(exports, "parseComputedFormula", {
6915
6978
  });
6916
6979
  Object.defineProperty(exports, "AccessDeniedError", {
6917
6980
  enumerable: true,
6918
- get: function () { return chunkXTPYL6OM_js.AccessDeniedError; }
6981
+ get: function () { return chunkMUGKKCY3_js.AccessDeniedError; }
6919
6982
  });
6920
6983
  Object.defineProperty(exports, "AttributeInUseError", {
6921
6984
  enumerable: true,
6922
- get: function () { return chunkXTPYL6OM_js.AttributeInUseError; }
6985
+ get: function () { return chunkMUGKKCY3_js.AttributeInUseError; }
6923
6986
  });
6924
6987
  Object.defineProperty(exports, "AttributeNotFoundError", {
6925
6988
  enumerable: true,
6926
- get: function () { return chunkXTPYL6OM_js.AttributeNotFoundError; }
6989
+ get: function () { return chunkMUGKKCY3_js.AttributeNotFoundError; }
6927
6990
  });
6928
6991
  Object.defineProperty(exports, "ChangeTypeNotSupportedError", {
6929
6992
  enumerable: true,
6930
- get: function () { return chunkXTPYL6OM_js.ChangeTypeNotSupportedError; }
6993
+ get: function () { return chunkMUGKKCY3_js.ChangeTypeNotSupportedError; }
6931
6994
  });
6932
6995
  Object.defineProperty(exports, "ConcurrentModificationError", {
6933
6996
  enumerable: true,
6934
- get: function () { return chunkXTPYL6OM_js.ConcurrentModificationError; }
6997
+ get: function () { return chunkMUGKKCY3_js.ConcurrentModificationError; }
6935
6998
  });
6936
6999
  Object.defineProperty(exports, "DestructiveSyncNotAllowedError", {
6937
7000
  enumerable: true,
6938
- get: function () { return chunkXTPYL6OM_js.DestructiveSyncNotAllowedError; }
7001
+ get: function () { return chunkMUGKKCY3_js.DestructiveSyncNotAllowedError; }
6939
7002
  });
6940
7003
  Object.defineProperty(exports, "DuplicateError", {
6941
7004
  enumerable: true,
6942
- get: function () { return chunkXTPYL6OM_js.DuplicateError; }
7005
+ get: function () { return chunkMUGKKCY3_js.DuplicateError; }
6943
7006
  });
6944
7007
  Object.defineProperty(exports, "ForbiddenError", {
6945
7008
  enumerable: true,
6946
- get: function () { return chunkXTPYL6OM_js.ForbiddenError; }
7009
+ get: function () { return chunkMUGKKCY3_js.ForbiddenError; }
6947
7010
  });
6948
7011
  Object.defineProperty(exports, "MemoryNotFoundError", {
6949
7012
  enumerable: true,
6950
- get: function () { return chunkXTPYL6OM_js.MemoryNotFoundError; }
7013
+ get: function () { return chunkMUGKKCY3_js.MemoryNotFoundError; }
6951
7014
  });
6952
7015
  Object.defineProperty(exports, "MigrationTimeoutError", {
6953
7016
  enumerable: true,
6954
- get: function () { return chunkXTPYL6OM_js.MigrationTimeoutError; }
7017
+ get: function () { return chunkMUGKKCY3_js.MigrationTimeoutError; }
6955
7018
  });
6956
7019
  Object.defineProperty(exports, "NotFoundError", {
6957
7020
  enumerable: true,
6958
- get: function () { return chunkXTPYL6OM_js.NotFoundError; }
7021
+ get: function () { return chunkMUGKKCY3_js.NotFoundError; }
6959
7022
  });
6960
7023
  Object.defineProperty(exports, "NotImplementedError", {
6961
7024
  enumerable: true,
6962
- get: function () { return chunkXTPYL6OM_js.NotImplementedError; }
7025
+ get: function () { return chunkMUGKKCY3_js.NotImplementedError; }
6963
7026
  });
6964
7027
  Object.defineProperty(exports, "ObjectNotFoundError", {
6965
7028
  enumerable: true,
6966
- get: function () { return chunkXTPYL6OM_js.ObjectNotFoundError; }
7029
+ get: function () { return chunkMUGKKCY3_js.ObjectNotFoundError; }
6967
7030
  });
6968
7031
  Object.defineProperty(exports, "ObjectReferencedError", {
6969
7032
  enumerable: true,
6970
- get: function () { return chunkXTPYL6OM_js.ObjectReferencedError; }
7033
+ get: function () { return chunkMUGKKCY3_js.ObjectReferencedError; }
6971
7034
  });
6972
7035
  Object.defineProperty(exports, "OrphanSystemAttributeError", {
6973
7036
  enumerable: true,
6974
- get: function () { return chunkXTPYL6OM_js.OrphanSystemAttributeError; }
7037
+ get: function () { return chunkMUGKKCY3_js.OrphanSystemAttributeError; }
6975
7038
  });
6976
7039
  Object.defineProperty(exports, "ProtectedResourceError", {
6977
7040
  enumerable: true,
6978
- get: function () { return chunkXTPYL6OM_js.ProtectedResourceError; }
7041
+ get: function () { return chunkMUGKKCY3_js.ProtectedResourceError; }
6979
7042
  });
6980
7043
  Object.defineProperty(exports, "ProtectedRoleError", {
6981
7044
  enumerable: true,
6982
- get: function () { return chunkXTPYL6OM_js.ProtectedRoleError; }
7045
+ get: function () { return chunkMUGKKCY3_js.ProtectedRoleError; }
6983
7046
  });
6984
7047
  Object.defineProperty(exports, "RecordNotFoundError", {
6985
7048
  enumerable: true,
6986
- get: function () { return chunkXTPYL6OM_js.RecordNotFoundError; }
7049
+ get: function () { return chunkMUGKKCY3_js.RecordNotFoundError; }
6987
7050
  });
6988
7051
  Object.defineProperty(exports, "RecordReferencedError", {
6989
7052
  enumerable: true,
6990
- get: function () { return chunkXTPYL6OM_js.RecordReferencedError; }
7053
+ get: function () { return chunkMUGKKCY3_js.RecordReferencedError; }
6991
7054
  });
6992
7055
  Object.defineProperty(exports, "RepositoryError", {
6993
7056
  enumerable: true,
6994
- get: function () { return chunkXTPYL6OM_js.RepositoryError; }
7057
+ get: function () { return chunkMUGKKCY3_js.RepositoryError; }
6995
7058
  });
6996
7059
  Object.defineProperty(exports, "RoleNotFoundError", {
6997
7060
  enumerable: true,
6998
- get: function () { return chunkXTPYL6OM_js.RoleNotFoundError; }
7061
+ get: function () { return chunkMUGKKCY3_js.RoleNotFoundError; }
6999
7062
  });
7000
7063
  Object.defineProperty(exports, "SchemaError", {
7001
7064
  enumerable: true,
7002
- get: function () { return chunkXTPYL6OM_js.SchemaError; }
7065
+ get: function () { return chunkMUGKKCY3_js.SchemaError; }
7003
7066
  });
7004
7067
  Object.defineProperty(exports, "SchemaErrorCode", {
7005
7068
  enumerable: true,
7006
- get: function () { return chunkXTPYL6OM_js.SchemaErrorCode; }
7069
+ get: function () { return chunkMUGKKCY3_js.SchemaErrorCode; }
7007
7070
  });
7008
7071
  Object.defineProperty(exports, "SearchBackendError", {
7009
7072
  enumerable: true,
7010
- get: function () { return chunkXTPYL6OM_js.SearchBackendError; }
7073
+ get: function () { return chunkMUGKKCY3_js.SearchBackendError; }
7011
7074
  });
7012
7075
  Object.defineProperty(exports, "StorageError", {
7013
7076
  enumerable: true,
7014
- get: function () { return chunkXTPYL6OM_js.StorageError; }
7077
+ get: function () { return chunkMUGKKCY3_js.StorageError; }
7015
7078
  });
7016
7079
  Object.defineProperty(exports, "SyncCascadeError", {
7017
7080
  enumerable: true,
7018
- get: function () { return chunkXTPYL6OM_js.SyncCascadeError; }
7081
+ get: function () { return chunkMUGKKCY3_js.SyncCascadeError; }
7019
7082
  });
7020
7083
  Object.defineProperty(exports, "SyncConflictError", {
7021
7084
  enumerable: true,
7022
- get: function () { return chunkXTPYL6OM_js.SyncConflictError; }
7085
+ get: function () { return chunkMUGKKCY3_js.SyncConflictError; }
7023
7086
  });
7024
7087
  Object.defineProperty(exports, "SyncError", {
7025
7088
  enumerable: true,
7026
- get: function () { return chunkXTPYL6OM_js.SyncError; }
7089
+ get: function () { return chunkMUGKKCY3_js.SyncError; }
7027
7090
  });
7028
7091
  Object.defineProperty(exports, "SystemEntityImmutableError", {
7029
7092
  enumerable: true,
7030
- get: function () { return chunkXTPYL6OM_js.SystemEntityImmutableError; }
7093
+ get: function () { return chunkMUGKKCY3_js.SystemEntityImmutableError; }
7031
7094
  });
7032
7095
  Object.defineProperty(exports, "ValidationError", {
7033
7096
  enumerable: true,
7034
- get: function () { return chunkXTPYL6OM_js.ValidationError; }
7097
+ get: function () { return chunkMUGKKCY3_js.ValidationError; }
7035
7098
  });
7036
7099
  Object.defineProperty(exports, "computeRecordStatus", {
7037
7100
  enumerable: true,
7038
- get: function () { return chunkXTPYL6OM_js.computeRecordStatus; }
7101
+ get: function () { return chunkMUGKKCY3_js.computeRecordStatus; }
7039
7102
  });
7040
7103
  Object.defineProperty(exports, "createFormAttributeValidator", {
7041
7104
  enumerable: true,
7042
- get: function () { return chunkXTPYL6OM_js.createFormAttributeValidator; }
7105
+ get: function () { return chunkMUGKKCY3_js.createFormAttributeValidator; }
7043
7106
  });
7044
7107
  Object.defineProperty(exports, "isAttributeInUseError", {
7045
7108
  enumerable: true,
7046
- get: function () { return chunkXTPYL6OM_js.isAttributeInUseError; }
7109
+ get: function () { return chunkMUGKKCY3_js.isAttributeInUseError; }
7047
7110
  });
7048
7111
  Object.defineProperty(exports, "isNotFoundError", {
7049
7112
  enumerable: true,
7050
- get: function () { return chunkXTPYL6OM_js.isNotFoundError; }
7113
+ get: function () { return chunkMUGKKCY3_js.isNotFoundError; }
7051
7114
  });
7052
7115
  Object.defineProperty(exports, "isObjectReferencedError", {
7053
7116
  enumerable: true,
7054
- get: function () { return chunkXTPYL6OM_js.isObjectReferencedError; }
7117
+ get: function () { return chunkMUGKKCY3_js.isObjectReferencedError; }
7055
7118
  });
7056
7119
  Object.defineProperty(exports, "isProtectedResourceError", {
7057
7120
  enumerable: true,
7058
- get: function () { return chunkXTPYL6OM_js.isProtectedResourceError; }
7121
+ get: function () { return chunkMUGKKCY3_js.isProtectedResourceError; }
7059
7122
  });
7060
7123
  Object.defineProperty(exports, "isRecordReferencedError", {
7061
7124
  enumerable: true,
7062
- get: function () { return chunkXTPYL6OM_js.isRecordReferencedError; }
7125
+ get: function () { return chunkMUGKKCY3_js.isRecordReferencedError; }
7063
7126
  });
7064
7127
  Object.defineProperty(exports, "isSchemaError", {
7065
7128
  enumerable: true,
7066
- get: function () { return chunkXTPYL6OM_js.isSchemaError; }
7129
+ get: function () { return chunkMUGKKCY3_js.isSchemaError; }
7067
7130
  });
7068
7131
  Object.defineProperty(exports, "isValidationError", {
7069
7132
  enumerable: true,
7070
- get: function () { return chunkXTPYL6OM_js.isValidationError; }
7133
+ get: function () { return chunkMUGKKCY3_js.isValidationError; }
7071
7134
  });
7072
7135
  Object.defineProperty(exports, "rejectUnknownAttributesOrThrow", {
7073
7136
  enumerable: true,
7074
- get: function () { return chunkXTPYL6OM_js.rejectUnknownAttributesOrThrow; }
7137
+ get: function () { return chunkMUGKKCY3_js.rejectUnknownAttributesOrThrow; }
7075
7138
  });
7076
7139
  Object.defineProperty(exports, "validateDraft", {
7077
7140
  enumerable: true,
7078
- get: function () { return chunkXTPYL6OM_js.validateDraft; }
7141
+ get: function () { return chunkMUGKKCY3_js.validateDraft; }
7079
7142
  });
7080
7143
  Object.defineProperty(exports, "validateDraftOrThrow", {
7081
7144
  enumerable: true,
7082
- get: function () { return chunkXTPYL6OM_js.validateDraftOrThrow; }
7145
+ get: function () { return chunkMUGKKCY3_js.validateDraftOrThrow; }
7083
7146
  });
7084
7147
  Object.defineProperty(exports, "validateObject", {
7085
7148
  enumerable: true,
7086
- get: function () { return chunkXTPYL6OM_js.validateObject; }
7149
+ get: function () { return chunkMUGKKCY3_js.validateObject; }
7087
7150
  });
7088
7151
  Object.defineProperty(exports, "validateObjectOrThrow", {
7089
7152
  enumerable: true,
7090
- get: function () { return chunkXTPYL6OM_js.validateObjectOrThrow; }
7153
+ get: function () { return chunkMUGKKCY3_js.validateObjectOrThrow; }
7091
7154
  });
7092
7155
  Object.defineProperty(exports, "DEFAULT_VALIDATION_MESSAGES", {
7093
7156
  enumerable: true,
@@ -7120,6 +7183,7 @@ exports.DetailViewBuilder = DetailViewBuilder;
7120
7183
  exports.DocumentSlotValidationError = DocumentSlotValidationError;
7121
7184
  exports.DocumentsTabConfig = DocumentsTabConfig;
7122
7185
  exports.EMPTY_VALUE_PLACEHOLDER = EMPTY_VALUE_PLACEHOLDER;
7186
+ exports.EmailsTabConfig = EmailsTabConfig;
7123
7187
  exports.FORM_FORBIDDEN_ATTRIBUTE_TYPES = FORM_FORBIDDEN_ATTRIBUTE_TYPES;
7124
7188
  exports.FlagRegistry = FlagRegistry;
7125
7189
  exports.FlagService = FlagService;