@stndrds/schema 1.0.0-alpha.289 → 1.0.0-alpha.292
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/{chunk-K7XGY34S.js → chunk-D4A6FL67.js} +28 -7
- package/dist/{chunk-RMJ75YLQ.mjs → chunk-QYJ532XI.mjs} +28 -7
- package/dist/index.d.mts +80 -1
- package/dist/index.d.ts +80 -1
- package/dist/index.js +145 -103
- package/dist/index.mjs +40 -3
- package/dist/validation/all.js +10 -10
- package/dist/validation/all.mjs +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var chunkZHB4VBCX_js = require('./chunk-ZHB4VBCX.js');
|
|
4
|
-
var
|
|
4
|
+
var chunkD4A6FL67_js = require('./chunk-D4A6FL67.js');
|
|
5
5
|
var chunkRDYTVHNN_js = require('./chunk-RDYTVHNN.js');
|
|
6
6
|
require('./chunk-EEH4XQ7W.js');
|
|
7
7
|
require('./chunk-EW5XR2X3.js');
|
|
@@ -93,7 +93,7 @@ function inferInverseCardinality(cardinality) {
|
|
|
93
93
|
return cardinality === "one" ? "many" : "many";
|
|
94
94
|
}
|
|
95
95
|
function isAttributeSortable2(attr) {
|
|
96
|
-
return
|
|
96
|
+
return chunkD4A6FL67_js.isAttributeSortable(attr);
|
|
97
97
|
}
|
|
98
98
|
|
|
99
99
|
// src/types/audit.ts
|
|
@@ -244,6 +244,7 @@ var MAX_TODO_DESCRIPTION_CHARS = 500;
|
|
|
244
244
|
var MAX_TODO_RESULT_CHARS = 2e3;
|
|
245
245
|
|
|
246
246
|
// src/types/agent-ui-data.ts
|
|
247
|
+
var SESSION_STATE_STREAM_ID = "session-state";
|
|
247
248
|
var NATIVE_AGENT_UI_PART_IDS_METADATA_KEY = "__stndrdsNativeUiPartIds";
|
|
248
249
|
var NATIVE_AGENT_UI_PART_IDS_METADATA_SCHEMA_VERSION = 1;
|
|
249
250
|
var INVALID_NATIVE_PART_IDS = "Native agent UI part IDs metadata is invalid";
|
|
@@ -882,6 +883,19 @@ function extractAttributeNames(template) {
|
|
|
882
883
|
}
|
|
883
884
|
return names;
|
|
884
885
|
}
|
|
886
|
+
var SINGLE_ATTRIBUTE_EXPRESSION = /^\{\{\s*([a-zA-Z_][a-zA-Z0-9_]*)\s*\}\}$/;
|
|
887
|
+
function getSingleAttributeFromExpression(template) {
|
|
888
|
+
const match = template.trim().match(SINGLE_ATTRIBUTE_EXPRESSION);
|
|
889
|
+
return match ? match[1] : null;
|
|
890
|
+
}
|
|
891
|
+
function getEditableLabelAttribute(labelExpression, attributes) {
|
|
892
|
+
const name = getSingleAttributeFromExpression(labelExpression);
|
|
893
|
+
if (name === null) return null;
|
|
894
|
+
const attribute = attributes.find((candidate) => candidate.name === name);
|
|
895
|
+
if (!attribute || attribute.type !== "text") return null;
|
|
896
|
+
if (chunkD4A6FL67_js.getAttributeCapabilities(attribute).authoring.readOnly) return null;
|
|
897
|
+
return attribute;
|
|
898
|
+
}
|
|
885
899
|
|
|
886
900
|
// src/lib/relation-label.ts
|
|
887
901
|
var PROPS_TOKEN_RE = /\{\{\s*props\./;
|
|
@@ -1157,7 +1171,7 @@ function assertUniqueBy(items, getKey, buildError) {
|
|
|
1157
1171
|
var ATTRIBUTE_NAME_SCHEMA = z2__default.default.string().min(1, "Attribute name cannot be empty").max(MAX_NAME_LENGTH, `Attribute name is too long (max ${MAX_NAME_LENGTH} characters)`).regex(ATTRIBUTE_NAME_REGEX, {
|
|
1158
1172
|
message: "Invalid attribute name format.\nName must be a valid variable identifier:\n \u2705 Valid: 'firstName', 'first_name', 'FirstName', 'FIRST_NAME'\n \u274C Invalid: 'first-name', 'first name', '123name', 'first.name'"
|
|
1159
1173
|
}).refine(
|
|
1160
|
-
(name) => !
|
|
1174
|
+
(name) => !chunkD4A6FL67_js.RESERVED_ATTRIBUTE_NAMES.includes(name),
|
|
1161
1175
|
{ message: "This is a reserved attribute name" }
|
|
1162
1176
|
);
|
|
1163
1177
|
function validateAttributeName(name) {
|
|
@@ -1174,10 +1188,10 @@ function validateAttributeName(name) {
|
|
|
1174
1188
|
"[AttributeBuilder] Invalid attribute name format.\nName must be a valid variable identifier:\n \u2705 Valid: 'firstName', 'first_name', 'FirstName', 'FIRST_NAME'\n \u274C Invalid: 'first-name', 'first name', '123name', 'first.name'"
|
|
1175
1189
|
);
|
|
1176
1190
|
}
|
|
1177
|
-
if (
|
|
1191
|
+
if (chunkD4A6FL67_js.RESERVED_ATTRIBUTE_NAMES.includes(name)) {
|
|
1178
1192
|
throw new Error(
|
|
1179
1193
|
`[AttributeBuilder] "${name}" is a reserved name and cannot be used as an attribute name.
|
|
1180
|
-
Reserved names: ${
|
|
1194
|
+
Reserved names: ${chunkD4A6FL67_js.RESERVED_ATTRIBUTE_NAMES.join(", ")}`
|
|
1181
1195
|
);
|
|
1182
1196
|
}
|
|
1183
1197
|
}
|
|
@@ -4977,7 +4991,7 @@ var viewRegistry = new ViewRegistry();
|
|
|
4977
4991
|
// src/views/auto-generator.ts
|
|
4978
4992
|
function getRuntimeAttributes(attributes, excludeNames = []) {
|
|
4979
4993
|
return attributes.filter(
|
|
4980
|
-
(attr) => !(!
|
|
4994
|
+
(attr) => !(!chunkD4A6FL67_js.getAttributeCapabilities(attr).lifecycle.visibleInRuntime || attr.system || excludeNames.includes(attr.name))
|
|
4981
4995
|
);
|
|
4982
4996
|
}
|
|
4983
4997
|
function sortAttributes(attributes) {
|
|
@@ -5010,7 +5024,7 @@ function generateDefaultDetailView(object2, options = {}) {
|
|
|
5010
5024
|
const { includeActivityTab = true, includeDocumentsTab = true, excludeAttributes = [] } = options;
|
|
5011
5025
|
const runtimeAttrs = getRuntimeAttributes(object2.attributes, excludeAttributes);
|
|
5012
5026
|
const sortedAttrs = sortAttributes(
|
|
5013
|
-
runtimeAttrs.filter((attr) =>
|
|
5027
|
+
runtimeAttrs.filter((attr) => chunkD4A6FL67_js.getAttributeCapabilities(attr).presentation.formField)
|
|
5014
5028
|
);
|
|
5015
5029
|
const formTab = {
|
|
5016
5030
|
id: "form",
|
|
@@ -5067,7 +5081,7 @@ function generateDefaultListView(object2, options = {}) {
|
|
|
5067
5081
|
const { excludeAttributes = [], maxListColumns = 5 } = options;
|
|
5068
5082
|
const runtimeAttrs = getRuntimeAttributes(object2.attributes, excludeAttributes);
|
|
5069
5083
|
const sortedAttrs = sortAttributes(
|
|
5070
|
-
runtimeAttrs.filter((attr) =>
|
|
5084
|
+
runtimeAttrs.filter((attr) => chunkD4A6FL67_js.getAttributeCapabilities(attr).presentation.defaultColumn)
|
|
5071
5085
|
);
|
|
5072
5086
|
const columns = sortedAttrs.slice(0, maxListColumns).map((attr) => attr.name);
|
|
5073
5087
|
const config = {
|
|
@@ -5225,6 +5239,19 @@ var FormRegistry = class {
|
|
|
5225
5239
|
};
|
|
5226
5240
|
var formRegistry = new FormRegistry();
|
|
5227
5241
|
|
|
5242
|
+
// src/realtime/agent-stream-frame-id.ts
|
|
5243
|
+
function formatAgentStreamFrameId(streamId, sequence) {
|
|
5244
|
+
return `${streamId}:${sequence}`;
|
|
5245
|
+
}
|
|
5246
|
+
function parseAgentStreamFrameId(value) {
|
|
5247
|
+
const separator = value.lastIndexOf(":");
|
|
5248
|
+
if (separator <= 0) return null;
|
|
5249
|
+
const streamId = value.slice(0, separator);
|
|
5250
|
+
const sequence = Number(value.slice(separator + 1));
|
|
5251
|
+
if (!Number.isInteger(sequence) || sequence <= 0) return null;
|
|
5252
|
+
return { streamId, sequence };
|
|
5253
|
+
}
|
|
5254
|
+
|
|
5228
5255
|
// src/realtime/agent-ui-message-batch.ts
|
|
5229
5256
|
var AGENT_UI_BATCH_MAX_BYTES = 204800;
|
|
5230
5257
|
var AGENT_UI_BATCH_MAX_ITEMS = 256;
|
|
@@ -7008,7 +7035,7 @@ var OPERATOR_SPECS = {
|
|
|
7008
7035
|
appliesTo: ["date"],
|
|
7009
7036
|
evaluateInMemory: (v, rv) => {
|
|
7010
7037
|
const d = toDate2(v);
|
|
7011
|
-
const bounds =
|
|
7038
|
+
const bounds = chunkD4A6FL67_js.resolveIsWithinBounds(rv);
|
|
7012
7039
|
if (!(d && bounds)) return false;
|
|
7013
7040
|
return d.getTime() >= bounds.startMs && d.getTime() < bounds.endMs;
|
|
7014
7041
|
}
|
|
@@ -7044,7 +7071,7 @@ var OPERATOR_SPECS = {
|
|
|
7044
7071
|
// src/filters/evaluate.ts
|
|
7045
7072
|
var systemAttribute = (name, type) => ({ id: `system:${name}`, name, label: name, type, system: true });
|
|
7046
7073
|
var RECORD_SYSTEM_ATTRIBUTES = [
|
|
7047
|
-
...Object.entries(
|
|
7074
|
+
...Object.entries(chunkD4A6FL67_js.SYSTEM_FILTER_ATTRIBUTE_TYPES).map(
|
|
7048
7075
|
([name, type]) => systemAttribute(name, type)
|
|
7049
7076
|
)
|
|
7050
7077
|
];
|
|
@@ -7085,7 +7112,7 @@ function evaluateRule(rule, values, attrByName) {
|
|
|
7085
7112
|
(definition) => definition.name === rule.property
|
|
7086
7113
|
);
|
|
7087
7114
|
if (!property) return false;
|
|
7088
|
-
const positiveOperator =
|
|
7115
|
+
const positiveOperator = chunkD4A6FL67_js.normalizeForEdgeRpc(rule.operator);
|
|
7089
7116
|
const propertySpec = OPERATOR_SPECS[positiveOperator];
|
|
7090
7117
|
if (!propertySpec?.appliesTo.includes(property.type)) return false;
|
|
7091
7118
|
const rootValue = values[rule.attribute];
|
|
@@ -7103,7 +7130,7 @@ function evaluateRule(rule, values, attrByName) {
|
|
|
7103
7130
|
property
|
|
7104
7131
|
);
|
|
7105
7132
|
});
|
|
7106
|
-
return (rule.quantifier ??
|
|
7133
|
+
return (rule.quantifier ?? chunkD4A6FL67_js.getOperatorPolarity(rule.operator)) === "none" ? !matches : matches;
|
|
7107
7134
|
}
|
|
7108
7135
|
const spec = OPERATOR_SPECS[rule.operator];
|
|
7109
7136
|
if (!spec) return false;
|
|
@@ -7152,7 +7179,7 @@ function normalizePhoneComparands(stored, rule) {
|
|
|
7152
7179
|
return [normalizeOne(stored), normalizeOne(rule)];
|
|
7153
7180
|
}
|
|
7154
7181
|
function normalizeComparableValue(type, value) {
|
|
7155
|
-
if (type === "currency") return
|
|
7182
|
+
if (type === "currency") return chunkD4A6FL67_js.extractCurrencyFilterValue(value);
|
|
7156
7183
|
if (type === "date") {
|
|
7157
7184
|
if (isDateRangeValue(value)) return dateValueStart(value);
|
|
7158
7185
|
if (value instanceof Date) return Number.isNaN(value.getTime()) ? null : value.toISOString();
|
|
@@ -7199,20 +7226,20 @@ function deriveCreateDefaultsFromFilters(state, attributes, ctx) {
|
|
|
7199
7226
|
if (!attribute) continue;
|
|
7200
7227
|
const value = extractDeterministicValue(rule, ctx);
|
|
7201
7228
|
if (value === void 0) continue;
|
|
7202
|
-
defaults[rule.attribute] =
|
|
7229
|
+
defaults[rule.attribute] = chunkD4A6FL67_js.getAttributeCapabilities(attribute).storage.cardinality === "many" ? [value] : value;
|
|
7203
7230
|
}
|
|
7204
7231
|
return defaults;
|
|
7205
7232
|
}
|
|
7206
7233
|
function extractDeterministicValue(rule, ctx) {
|
|
7207
7234
|
if (rule.operator === "is") {
|
|
7208
|
-
if (
|
|
7235
|
+
if (chunkD4A6FL67_js.isDynamicValue(rule.value)) return resolveDynamicValue(rule.value, ctx);
|
|
7209
7236
|
if (rule.value === null || Array.isArray(rule.value)) return void 0;
|
|
7210
7237
|
return rule.value;
|
|
7211
7238
|
}
|
|
7212
7239
|
if (rule.operator === "any_of") {
|
|
7213
7240
|
if (!Array.isArray(rule.value) || rule.value.length !== 1) return void 0;
|
|
7214
7241
|
const single = rule.value[0];
|
|
7215
|
-
if (
|
|
7242
|
+
if (chunkD4A6FL67_js.isDynamicValue(single)) return resolveDynamicValue(single, ctx);
|
|
7216
7243
|
return single;
|
|
7217
7244
|
}
|
|
7218
7245
|
return void 0;
|
|
@@ -7301,10 +7328,10 @@ var attributeNameSchema = z2.z.string().min(1).superRefine((name, ctx) => {
|
|
|
7301
7328
|
'The attribute\'s machine name \u2014 the record\'s field key, and what `{{ name }}` refers to in a labelExpression. Must be a valid identifier: starts with a letter or underscore, then only letters/digits/underscores ("montantHt", "first_name", "FIRST_NAME" are valid; "first-name", "first name", "123name" are not). Max 63 characters. Cannot be a name reserved by the record shape itself (id, createdAt, updatedAt, createdBy, lastUpdatedBy, objectId, label, embeddingText, values, metadata, deletedAt, deletedBy, schemaVersion).'
|
|
7302
7329
|
);
|
|
7303
7330
|
var objectNameSchema = z2.z.string().min(1).superRefine((name, ctx) => {
|
|
7304
|
-
if (
|
|
7331
|
+
if (chunkD4A6FL67_js.RESERVED_OBJECT_NAMES.includes(name)) {
|
|
7305
7332
|
ctx.addIssue({
|
|
7306
7333
|
code: z2.z.ZodIssueCode.custom,
|
|
7307
|
-
message: `"${name}" is a reserved object name (${
|
|
7334
|
+
message: `"${name}" is a reserved object name (${chunkD4A6FL67_js.RESERVED_OBJECT_NAMES.join(", ")}) and cannot be used for a new object.`
|
|
7308
7335
|
});
|
|
7309
7336
|
}
|
|
7310
7337
|
try {
|
|
@@ -7439,13 +7466,13 @@ var proposedDefaultViewTargetSchema = z2.z.discriminatedUnion("viewType", [
|
|
|
7439
7466
|
z2.z.object({
|
|
7440
7467
|
objectName: viewTargetObjectNameSchema,
|
|
7441
7468
|
viewType: z2.z.literal("list").describe("Targets the object's default list view (the grid)."),
|
|
7442
|
-
canonicalConfig:
|
|
7469
|
+
canonicalConfig: chunkD4A6FL67_js.listViewConfigSchema.describe(CANONICAL_CONFIG_DESCRIPTION),
|
|
7443
7470
|
baselineToken: z2.z.string().min(1).optional().describe(BASELINE_TOKEN_DESCRIPTION)
|
|
7444
7471
|
}).strict(),
|
|
7445
7472
|
z2.z.object({
|
|
7446
7473
|
objectName: viewTargetObjectNameSchema,
|
|
7447
7474
|
viewType: z2.z.literal("detail").describe("Targets the object's default detail view (the single-record view)."),
|
|
7448
|
-
canonicalConfig:
|
|
7475
|
+
canonicalConfig: chunkD4A6FL67_js.detailViewConfigSchema.describe(CANONICAL_CONFIG_DESCRIPTION),
|
|
7449
7476
|
baselineToken: z2.z.string().min(1).optional().describe(BASELINE_TOKEN_DESCRIPTION)
|
|
7450
7477
|
}).strict()
|
|
7451
7478
|
]);
|
|
@@ -7459,13 +7486,13 @@ var persistedDefaultViewTargetSchema = z2.z.discriminatedUnion("viewType", [
|
|
|
7459
7486
|
z2.z.object({
|
|
7460
7487
|
objectName: z2.z.string().min(1),
|
|
7461
7488
|
viewType: z2.z.literal("list"),
|
|
7462
|
-
canonicalConfig:
|
|
7489
|
+
canonicalConfig: chunkD4A6FL67_js.listViewConfigSchema,
|
|
7463
7490
|
...persistedBaselineFields
|
|
7464
7491
|
}).strict(),
|
|
7465
7492
|
z2.z.object({
|
|
7466
7493
|
objectName: z2.z.string().min(1),
|
|
7467
7494
|
viewType: z2.z.literal("detail"),
|
|
7468
|
-
canonicalConfig:
|
|
7495
|
+
canonicalConfig: chunkD4A6FL67_js.detailViewConfigSchema,
|
|
7469
7496
|
...persistedBaselineFields
|
|
7470
7497
|
}).strict()
|
|
7471
7498
|
]).superRefine((target, ctx) => {
|
|
@@ -7839,6 +7866,16 @@ var customDataChunkSchemas = {
|
|
|
7839
7866
|
toolCallId: z2.z.string(),
|
|
7840
7867
|
impact: toolImpactSchema.optional(),
|
|
7841
7868
|
relaxableByAuto: z2.z.boolean().optional()
|
|
7869
|
+
}).strict(),
|
|
7870
|
+
"session-state": z2.z.object({
|
|
7871
|
+
state: z2.z.object({
|
|
7872
|
+
phase: z2.z.enum(["queued", "running", "parked", "terminal"]),
|
|
7873
|
+
parkedOn: z2.z.enum(["human", "agents"]).optional(),
|
|
7874
|
+
humanRequestIds: z2.z.array(z2.z.string()).optional(),
|
|
7875
|
+
outcome: z2.z.enum(["completed", "failed", "cancelled", "timeout", "expired"]).optional()
|
|
7876
|
+
}).strict(),
|
|
7877
|
+
version: z2.z.number().int().positive(),
|
|
7878
|
+
updatedAt: z2.z.string().datetime({ offset: true })
|
|
7842
7879
|
}).strict()
|
|
7843
7880
|
};
|
|
7844
7881
|
function isAgentUIDataName(value) {
|
|
@@ -7995,9 +8032,9 @@ function firstChangedProperty(op) {
|
|
|
7995
8032
|
const keys = Object.keys(op.changes).sort();
|
|
7996
8033
|
return keys.length === 1 ? [keys[0]] : void 0;
|
|
7997
8034
|
}
|
|
7998
|
-
var tabPayload =
|
|
7999
|
-
var groupPayload =
|
|
8000
|
-
var fieldPayload =
|
|
8035
|
+
var tabPayload = chunkD4A6FL67_js.detailTabDraftSchema;
|
|
8036
|
+
var groupPayload = chunkD4A6FL67_js.groupWriteSchema;
|
|
8037
|
+
var fieldPayload = chunkD4A6FL67_js.fieldSlotSchema;
|
|
8001
8038
|
var addTabSchema = z2.z.object({
|
|
8002
8039
|
...viewOperationBase,
|
|
8003
8040
|
type: z2.z.literal("add_tab"),
|
|
@@ -8354,14 +8391,14 @@ var updateTableTabChanges = z2.z.object({
|
|
|
8354
8391
|
* splitting the pair across two operations would wipe the column list while
|
|
8355
8392
|
* the source change vanished (#2763, #2787).
|
|
8356
8393
|
*/
|
|
8357
|
-
source:
|
|
8358
|
-
columns:
|
|
8394
|
+
source: chunkD4A6FL67_js.tableSourceSchema.optional(),
|
|
8395
|
+
columns: chunkD4A6FL67_js.columnsSchema.optional(),
|
|
8359
8396
|
// Nullable, not merely optional: the panels clear a filter list or a sort
|
|
8360
8397
|
// list by sending `null`, because `undefined` does not survive
|
|
8361
8398
|
// `JSON.stringify` and the operation would arrive with no changes at all
|
|
8362
8399
|
// (#2787). `apply` drops the key rather than storing the null.
|
|
8363
|
-
filters:
|
|
8364
|
-
sorts:
|
|
8400
|
+
filters: chunkD4A6FL67_js.filterStateSchema.nullable().optional(),
|
|
8401
|
+
sorts: chunkD4A6FL67_js.sortsSchema.nullable().optional(),
|
|
8365
8402
|
allowCreate: z2.z.boolean().optional(),
|
|
8366
8403
|
allowEdit: z2.z.boolean().optional(),
|
|
8367
8404
|
allowDelete: z2.z.boolean().optional(),
|
|
@@ -8525,18 +8562,18 @@ function firstChangedProperty2(op) {
|
|
|
8525
8562
|
}
|
|
8526
8563
|
function withoutKanbanKeys(tab) {
|
|
8527
8564
|
const rest = { ...tab };
|
|
8528
|
-
for (const key of
|
|
8565
|
+
for (const key of chunkD4A6FL67_js.LIST_TAB_KANBAN_KEYS) delete rest[key];
|
|
8529
8566
|
return rest;
|
|
8530
8567
|
}
|
|
8531
8568
|
function withoutTableKeys(tab) {
|
|
8532
8569
|
const rest = { ...tab };
|
|
8533
|
-
for (const key of
|
|
8570
|
+
for (const key of chunkD4A6FL67_js.LIST_TAB_TABLE_KEYS) delete rest[key];
|
|
8534
8571
|
return rest;
|
|
8535
8572
|
}
|
|
8536
8573
|
function assertStillPublishableTab(before, after, viewId, tabId) {
|
|
8537
|
-
const parsed =
|
|
8574
|
+
const parsed = chunkD4A6FL67_js.listViewTabSchema.safeParse(after);
|
|
8538
8575
|
if (!parsed.success) {
|
|
8539
|
-
if (!
|
|
8576
|
+
if (!chunkD4A6FL67_js.listViewTabSchema.safeParse(before).success) return after;
|
|
8540
8577
|
const detail = parsed.error.issues.map(
|
|
8541
8578
|
(issue) => issue.path.length ? `${issue.path.join(".")}: ${issue.message}` : issue.message
|
|
8542
8579
|
).join(", ");
|
|
@@ -8564,9 +8601,9 @@ function mapListTab(state, viewId, tabId, fn) {
|
|
|
8564
8601
|
};
|
|
8565
8602
|
});
|
|
8566
8603
|
}
|
|
8567
|
-
var listTabPayload =
|
|
8568
|
-
var filterGroupPayload =
|
|
8569
|
-
var sortRulesPayload =
|
|
8604
|
+
var listTabPayload = chunkD4A6FL67_js.listViewTabSchema;
|
|
8605
|
+
var filterGroupPayload = chunkD4A6FL67_js.filterGroupSchema;
|
|
8606
|
+
var sortRulesPayload = chunkD4A6FL67_js.sortsSchema;
|
|
8570
8607
|
function setOnTab(type, key, valueSchema, describe) {
|
|
8571
8608
|
const schema = z2.z.object({ ...listTabBase, type: z2.z.literal(type), value: valueSchema });
|
|
8572
8609
|
return defineOperation({
|
|
@@ -8634,7 +8671,7 @@ var updateListTabSchema = z2.z.object({
|
|
|
8634
8671
|
label: z2.z.string().min(1).optional(),
|
|
8635
8672
|
icon: chunk5JMQNH2A_js.iconNameSchema.optional(),
|
|
8636
8673
|
default: z2.z.boolean().optional(),
|
|
8637
|
-
visibility: z2.z.enum(
|
|
8674
|
+
visibility: z2.z.enum(chunkD4A6FL67_js.LIST_VIEW_TAB_VISIBILITIES).optional()
|
|
8638
8675
|
}).refine((c) => Object.keys(c).length > 0, "update_list_tab needs at least one change")
|
|
8639
8676
|
});
|
|
8640
8677
|
var updateListTabFocus = (op) => ({
|
|
@@ -9372,267 +9409,267 @@ Object.defineProperty(exports, "indexBy", {
|
|
|
9372
9409
|
});
|
|
9373
9410
|
Object.defineProperty(exports, "ATTRIBUTE_FILTER_OPERATORS", {
|
|
9374
9411
|
enumerable: true,
|
|
9375
|
-
get: function () { return
|
|
9412
|
+
get: function () { return chunkD4A6FL67_js.ATTRIBUTE_FILTER_OPERATORS; }
|
|
9376
9413
|
});
|
|
9377
9414
|
Object.defineProperty(exports, "LIST_TAB_KANBAN_KEYS", {
|
|
9378
9415
|
enumerable: true,
|
|
9379
|
-
get: function () { return
|
|
9416
|
+
get: function () { return chunkD4A6FL67_js.LIST_TAB_KANBAN_KEYS; }
|
|
9380
9417
|
});
|
|
9381
9418
|
Object.defineProperty(exports, "LIST_TAB_TABLE_KEYS", {
|
|
9382
9419
|
enumerable: true,
|
|
9383
|
-
get: function () { return
|
|
9420
|
+
get: function () { return chunkD4A6FL67_js.LIST_TAB_TABLE_KEYS; }
|
|
9384
9421
|
});
|
|
9385
9422
|
Object.defineProperty(exports, "LIST_VIEW_TAB_VISIBILITIES", {
|
|
9386
9423
|
enumerable: true,
|
|
9387
|
-
get: function () { return
|
|
9424
|
+
get: function () { return chunkD4A6FL67_js.LIST_VIEW_TAB_VISIBILITIES; }
|
|
9388
9425
|
});
|
|
9389
9426
|
Object.defineProperty(exports, "NO_VALUE_OPERATORS", {
|
|
9390
9427
|
enumerable: true,
|
|
9391
|
-
get: function () { return
|
|
9428
|
+
get: function () { return chunkD4A6FL67_js.NO_VALUE_OPERATORS; }
|
|
9392
9429
|
});
|
|
9393
9430
|
Object.defineProperty(exports, "OPERATORS_BY_TYPE", {
|
|
9394
9431
|
enumerable: true,
|
|
9395
|
-
get: function () { return
|
|
9432
|
+
get: function () { return chunkD4A6FL67_js.OPERATORS_BY_TYPE; }
|
|
9396
9433
|
});
|
|
9397
9434
|
Object.defineProperty(exports, "REMOVED_OPERATOR_REPLACEMENTS", {
|
|
9398
9435
|
enumerable: true,
|
|
9399
|
-
get: function () { return
|
|
9436
|
+
get: function () { return chunkD4A6FL67_js.REMOVED_OPERATOR_REPLACEMENTS; }
|
|
9400
9437
|
});
|
|
9401
9438
|
Object.defineProperty(exports, "RESERVED_ATTRIBUTE_NAMES", {
|
|
9402
9439
|
enumerable: true,
|
|
9403
|
-
get: function () { return
|
|
9440
|
+
get: function () { return chunkD4A6FL67_js.RESERVED_ATTRIBUTE_NAMES; }
|
|
9404
9441
|
});
|
|
9405
9442
|
Object.defineProperty(exports, "RESERVED_OBJECT_NAMES", {
|
|
9406
9443
|
enumerable: true,
|
|
9407
|
-
get: function () { return
|
|
9444
|
+
get: function () { return chunkD4A6FL67_js.RESERVED_OBJECT_NAMES; }
|
|
9408
9445
|
});
|
|
9409
9446
|
Object.defineProperty(exports, "RESOURCE_VISIBILITIES", {
|
|
9410
9447
|
enumerable: true,
|
|
9411
|
-
get: function () { return
|
|
9448
|
+
get: function () { return chunkD4A6FL67_js.RESOURCE_VISIBILITIES; }
|
|
9412
9449
|
});
|
|
9413
9450
|
Object.defineProperty(exports, "SYNONYM_ALIASES", {
|
|
9414
9451
|
enumerable: true,
|
|
9415
|
-
get: function () { return
|
|
9452
|
+
get: function () { return chunkD4A6FL67_js.SYNONYM_ALIASES; }
|
|
9416
9453
|
});
|
|
9417
9454
|
Object.defineProperty(exports, "SYSTEM_ATTRIBUTES", {
|
|
9418
9455
|
enumerable: true,
|
|
9419
|
-
get: function () { return
|
|
9456
|
+
get: function () { return chunkD4A6FL67_js.SYSTEM_ATTRIBUTES; }
|
|
9420
9457
|
});
|
|
9421
9458
|
Object.defineProperty(exports, "SYSTEM_ATTRIBUTE_I18N_KEYS", {
|
|
9422
9459
|
enumerable: true,
|
|
9423
|
-
get: function () { return
|
|
9460
|
+
get: function () { return chunkD4A6FL67_js.SYSTEM_ATTRIBUTE_I18N_KEYS; }
|
|
9424
9461
|
});
|
|
9425
9462
|
Object.defineProperty(exports, "SYSTEM_FIELD_NAMES", {
|
|
9426
9463
|
enumerable: true,
|
|
9427
|
-
get: function () { return
|
|
9464
|
+
get: function () { return chunkD4A6FL67_js.SYSTEM_FIELD_NAMES; }
|
|
9428
9465
|
});
|
|
9429
9466
|
Object.defineProperty(exports, "SYSTEM_FILTER_ATTRIBUTE_TYPES", {
|
|
9430
9467
|
enumerable: true,
|
|
9431
|
-
get: function () { return
|
|
9468
|
+
get: function () { return chunkD4A6FL67_js.SYSTEM_FILTER_ATTRIBUTE_TYPES; }
|
|
9432
9469
|
});
|
|
9433
9470
|
Object.defineProperty(exports, "canonicalizeFilterValue", {
|
|
9434
9471
|
enumerable: true,
|
|
9435
|
-
get: function () { return
|
|
9472
|
+
get: function () { return chunkD4A6FL67_js.canonicalizeFilterValue; }
|
|
9436
9473
|
});
|
|
9437
9474
|
Object.defineProperty(exports, "collectQualifiedRuleIssues", {
|
|
9438
9475
|
enumerable: true,
|
|
9439
|
-
get: function () { return
|
|
9476
|
+
get: function () { return chunkD4A6FL67_js.collectQualifiedRuleIssues; }
|
|
9440
9477
|
});
|
|
9441
9478
|
Object.defineProperty(exports, "columnsSchema", {
|
|
9442
9479
|
enumerable: true,
|
|
9443
|
-
get: function () { return
|
|
9480
|
+
get: function () { return chunkD4A6FL67_js.columnsSchema; }
|
|
9444
9481
|
});
|
|
9445
9482
|
Object.defineProperty(exports, "currentActor", {
|
|
9446
9483
|
enumerable: true,
|
|
9447
|
-
get: function () { return
|
|
9484
|
+
get: function () { return chunkD4A6FL67_js.currentActor; }
|
|
9448
9485
|
});
|
|
9449
9486
|
Object.defineProperty(exports, "detailTabDraftSchema", {
|
|
9450
9487
|
enumerable: true,
|
|
9451
|
-
get: function () { return
|
|
9488
|
+
get: function () { return chunkD4A6FL67_js.detailTabDraftSchema; }
|
|
9452
9489
|
});
|
|
9453
9490
|
Object.defineProperty(exports, "detailTabSchema", {
|
|
9454
9491
|
enumerable: true,
|
|
9455
|
-
get: function () { return
|
|
9492
|
+
get: function () { return chunkD4A6FL67_js.detailTabSchema; }
|
|
9456
9493
|
});
|
|
9457
9494
|
Object.defineProperty(exports, "detailViewConfigSchema", {
|
|
9458
9495
|
enumerable: true,
|
|
9459
|
-
get: function () { return
|
|
9496
|
+
get: function () { return chunkD4A6FL67_js.detailViewConfigSchema; }
|
|
9460
9497
|
});
|
|
9461
9498
|
Object.defineProperty(exports, "extractCurrencyFilterValue", {
|
|
9462
9499
|
enumerable: true,
|
|
9463
|
-
get: function () { return
|
|
9500
|
+
get: function () { return chunkD4A6FL67_js.extractCurrencyFilterValue; }
|
|
9464
9501
|
});
|
|
9465
9502
|
Object.defineProperty(exports, "extractFilterValue", {
|
|
9466
9503
|
enumerable: true,
|
|
9467
|
-
get: function () { return
|
|
9504
|
+
get: function () { return chunkD4A6FL67_js.extractFilterValue; }
|
|
9468
9505
|
});
|
|
9469
9506
|
Object.defineProperty(exports, "fieldSchema", {
|
|
9470
9507
|
enumerable: true,
|
|
9471
|
-
get: function () { return
|
|
9508
|
+
get: function () { return chunkD4A6FL67_js.fieldSchema; }
|
|
9472
9509
|
});
|
|
9473
9510
|
Object.defineProperty(exports, "fieldShape", {
|
|
9474
9511
|
enumerable: true,
|
|
9475
|
-
get: function () { return
|
|
9512
|
+
get: function () { return chunkD4A6FL67_js.fieldShape; }
|
|
9476
9513
|
});
|
|
9477
9514
|
Object.defineProperty(exports, "fieldSlotSchema", {
|
|
9478
9515
|
enumerable: true,
|
|
9479
|
-
get: function () { return
|
|
9516
|
+
get: function () { return chunkD4A6FL67_js.fieldSlotSchema; }
|
|
9480
9517
|
});
|
|
9481
9518
|
Object.defineProperty(exports, "filterGroupSchema", {
|
|
9482
9519
|
enumerable: true,
|
|
9483
|
-
get: function () { return
|
|
9520
|
+
get: function () { return chunkD4A6FL67_js.filterGroupSchema; }
|
|
9484
9521
|
});
|
|
9485
9522
|
Object.defineProperty(exports, "filterStateSchema", {
|
|
9486
9523
|
enumerable: true,
|
|
9487
|
-
get: function () { return
|
|
9524
|
+
get: function () { return chunkD4A6FL67_js.filterStateSchema; }
|
|
9488
9525
|
});
|
|
9489
9526
|
Object.defineProperty(exports, "getAttributeCapabilities", {
|
|
9490
9527
|
enumerable: true,
|
|
9491
|
-
get: function () { return
|
|
9528
|
+
get: function () { return chunkD4A6FL67_js.getAttributeCapabilities; }
|
|
9492
9529
|
});
|
|
9493
9530
|
Object.defineProperty(exports, "getAttributeFilterOperators", {
|
|
9494
9531
|
enumerable: true,
|
|
9495
|
-
get: function () { return
|
|
9532
|
+
get: function () { return chunkD4A6FL67_js.getAttributeFilterOperators; }
|
|
9496
9533
|
});
|
|
9497
9534
|
Object.defineProperty(exports, "getOperatorPolarity", {
|
|
9498
9535
|
enumerable: true,
|
|
9499
|
-
get: function () { return
|
|
9536
|
+
get: function () { return chunkD4A6FL67_js.getOperatorPolarity; }
|
|
9500
9537
|
});
|
|
9501
9538
|
Object.defineProperty(exports, "getRollupFilterOperators", {
|
|
9502
9539
|
enumerable: true,
|
|
9503
|
-
get: function () { return
|
|
9540
|
+
get: function () { return chunkD4A6FL67_js.getRollupFilterOperators; }
|
|
9504
9541
|
});
|
|
9505
9542
|
Object.defineProperty(exports, "getSystemAttributeI18nKey", {
|
|
9506
9543
|
enumerable: true,
|
|
9507
|
-
get: function () { return
|
|
9544
|
+
get: function () { return chunkD4A6FL67_js.getSystemAttributeI18nKey; }
|
|
9508
9545
|
});
|
|
9509
9546
|
Object.defineProperty(exports, "getSystemAttributeList", {
|
|
9510
9547
|
enumerable: true,
|
|
9511
|
-
get: function () { return
|
|
9548
|
+
get: function () { return chunkD4A6FL67_js.getSystemAttributeList; }
|
|
9512
9549
|
});
|
|
9513
9550
|
Object.defineProperty(exports, "groupWriteSchema", {
|
|
9514
9551
|
enumerable: true,
|
|
9515
|
-
get: function () { return
|
|
9552
|
+
get: function () { return chunkD4A6FL67_js.groupWriteSchema; }
|
|
9516
9553
|
});
|
|
9517
9554
|
Object.defineProperty(exports, "inverseSourceSchema", {
|
|
9518
9555
|
enumerable: true,
|
|
9519
|
-
get: function () { return
|
|
9556
|
+
get: function () { return chunkD4A6FL67_js.inverseSourceSchema; }
|
|
9520
9557
|
});
|
|
9521
9558
|
Object.defineProperty(exports, "isAttributeFilterable", {
|
|
9522
9559
|
enumerable: true,
|
|
9523
|
-
get: function () { return
|
|
9560
|
+
get: function () { return chunkD4A6FL67_js.isAttributeFilterable; }
|
|
9524
9561
|
});
|
|
9525
9562
|
Object.defineProperty(exports, "isAttributeGroupable", {
|
|
9526
9563
|
enumerable: true,
|
|
9527
|
-
get: function () { return
|
|
9564
|
+
get: function () { return chunkD4A6FL67_js.isAttributeGroupable; }
|
|
9528
9565
|
});
|
|
9529
9566
|
Object.defineProperty(exports, "isAttributeKanbanGroupable", {
|
|
9530
9567
|
enumerable: true,
|
|
9531
|
-
get: function () { return
|
|
9568
|
+
get: function () { return chunkD4A6FL67_js.isAttributeKanbanGroupable; }
|
|
9532
9569
|
});
|
|
9533
9570
|
Object.defineProperty(exports, "isAttributeSearchable", {
|
|
9534
9571
|
enumerable: true,
|
|
9535
|
-
get: function () { return
|
|
9572
|
+
get: function () { return chunkD4A6FL67_js.isAttributeSearchable; }
|
|
9536
9573
|
});
|
|
9537
9574
|
Object.defineProperty(exports, "isDynamicValue", {
|
|
9538
9575
|
enumerable: true,
|
|
9539
|
-
get: function () { return
|
|
9576
|
+
get: function () { return chunkD4A6FL67_js.isDynamicValue; }
|
|
9540
9577
|
});
|
|
9541
9578
|
Object.defineProperty(exports, "isManagedSystemAttribute", {
|
|
9542
9579
|
enumerable: true,
|
|
9543
|
-
get: function () { return
|
|
9580
|
+
get: function () { return chunkD4A6FL67_js.isManagedSystemAttribute; }
|
|
9544
9581
|
});
|
|
9545
9582
|
Object.defineProperty(exports, "isNoValueOperator", {
|
|
9546
9583
|
enumerable: true,
|
|
9547
|
-
get: function () { return
|
|
9584
|
+
get: function () { return chunkD4A6FL67_js.isNoValueOperator; }
|
|
9548
9585
|
});
|
|
9549
9586
|
Object.defineProperty(exports, "isRelativeDateValue", {
|
|
9550
9587
|
enumerable: true,
|
|
9551
|
-
get: function () { return
|
|
9588
|
+
get: function () { return chunkD4A6FL67_js.isRelativeDateValue; }
|
|
9552
9589
|
});
|
|
9553
9590
|
Object.defineProperty(exports, "isSetMembershipOperator", {
|
|
9554
9591
|
enumerable: true,
|
|
9555
|
-
get: function () { return
|
|
9592
|
+
get: function () { return chunkD4A6FL67_js.isSetMembershipOperator; }
|
|
9556
9593
|
});
|
|
9557
9594
|
Object.defineProperty(exports, "listViewConfigSchema", {
|
|
9558
9595
|
enumerable: true,
|
|
9559
|
-
get: function () { return
|
|
9596
|
+
get: function () { return chunkD4A6FL67_js.listViewConfigSchema; }
|
|
9560
9597
|
});
|
|
9561
9598
|
Object.defineProperty(exports, "listViewTabSchema", {
|
|
9562
9599
|
enumerable: true,
|
|
9563
|
-
get: function () { return
|
|
9600
|
+
get: function () { return chunkD4A6FL67_js.listViewTabSchema; }
|
|
9564
9601
|
});
|
|
9565
9602
|
Object.defineProperty(exports, "normalizeFilterRule", {
|
|
9566
9603
|
enumerable: true,
|
|
9567
|
-
get: function () { return
|
|
9604
|
+
get: function () { return chunkD4A6FL67_js.normalizeFilterRule; }
|
|
9568
9605
|
});
|
|
9569
9606
|
Object.defineProperty(exports, "normalizeForEdgeRpc", {
|
|
9570
9607
|
enumerable: true,
|
|
9571
|
-
get: function () { return
|
|
9608
|
+
get: function () { return chunkD4A6FL67_js.normalizeForEdgeRpc; }
|
|
9572
9609
|
});
|
|
9573
9610
|
Object.defineProperty(exports, "normalizeOperator", {
|
|
9574
9611
|
enumerable: true,
|
|
9575
|
-
get: function () { return
|
|
9612
|
+
get: function () { return chunkD4A6FL67_js.normalizeOperator; }
|
|
9576
9613
|
});
|
|
9577
9614
|
Object.defineProperty(exports, "now", {
|
|
9578
9615
|
enumerable: true,
|
|
9579
|
-
get: function () { return
|
|
9616
|
+
get: function () { return chunkD4A6FL67_js.now; }
|
|
9580
9617
|
});
|
|
9581
9618
|
Object.defineProperty(exports, "parseResourceVisibility", {
|
|
9582
9619
|
enumerable: true,
|
|
9583
|
-
get: function () { return
|
|
9620
|
+
get: function () { return chunkD4A6FL67_js.parseResourceVisibility; }
|
|
9584
9621
|
});
|
|
9585
9622
|
Object.defineProperty(exports, "parseViewConfig", {
|
|
9586
9623
|
enumerable: true,
|
|
9587
|
-
get: function () { return
|
|
9624
|
+
get: function () { return chunkD4A6FL67_js.parseViewConfig; }
|
|
9588
9625
|
});
|
|
9589
9626
|
Object.defineProperty(exports, "relationSourceSchema", {
|
|
9590
9627
|
enumerable: true,
|
|
9591
|
-
get: function () { return
|
|
9628
|
+
get: function () { return chunkD4A6FL67_js.relationSourceSchema; }
|
|
9592
9629
|
});
|
|
9593
9630
|
Object.defineProperty(exports, "resolveEffectiveFilterType", {
|
|
9594
9631
|
enumerable: true,
|
|
9595
|
-
get: function () { return
|
|
9632
|
+
get: function () { return chunkD4A6FL67_js.resolveEffectiveFilterType; }
|
|
9596
9633
|
});
|
|
9597
9634
|
Object.defineProperty(exports, "resolveIsWithinBounds", {
|
|
9598
9635
|
enumerable: true,
|
|
9599
|
-
get: function () { return
|
|
9636
|
+
get: function () { return chunkD4A6FL67_js.resolveIsWithinBounds; }
|
|
9600
9637
|
});
|
|
9601
9638
|
Object.defineProperty(exports, "resolveUtcDayBounds", {
|
|
9602
9639
|
enumerable: true,
|
|
9603
|
-
get: function () { return
|
|
9640
|
+
get: function () { return chunkD4A6FL67_js.resolveUtcDayBounds; }
|
|
9604
9641
|
});
|
|
9605
9642
|
Object.defineProperty(exports, "sortsSchema", {
|
|
9606
9643
|
enumerable: true,
|
|
9607
|
-
get: function () { return
|
|
9644
|
+
get: function () { return chunkD4A6FL67_js.sortsSchema; }
|
|
9608
9645
|
});
|
|
9609
9646
|
Object.defineProperty(exports, "tableSourceSchema", {
|
|
9610
9647
|
enumerable: true,
|
|
9611
|
-
get: function () { return
|
|
9648
|
+
get: function () { return chunkD4A6FL67_js.tableSourceSchema; }
|
|
9612
9649
|
});
|
|
9613
9650
|
Object.defineProperty(exports, "toMultiValueOperator", {
|
|
9614
9651
|
enumerable: true,
|
|
9615
|
-
get: function () { return
|
|
9652
|
+
get: function () { return chunkD4A6FL67_js.toMultiValueOperator; }
|
|
9616
9653
|
});
|
|
9617
9654
|
Object.defineProperty(exports, "toUtcDayString", {
|
|
9618
9655
|
enumerable: true,
|
|
9619
|
-
get: function () { return
|
|
9656
|
+
get: function () { return chunkD4A6FL67_js.toUtcDayString; }
|
|
9620
9657
|
});
|
|
9621
9658
|
Object.defineProperty(exports, "today", {
|
|
9622
9659
|
enumerable: true,
|
|
9623
|
-
get: function () { return
|
|
9660
|
+
get: function () { return chunkD4A6FL67_js.today; }
|
|
9624
9661
|
});
|
|
9625
9662
|
Object.defineProperty(exports, "validateQualifiedRule", {
|
|
9626
9663
|
enumerable: true,
|
|
9627
|
-
get: function () { return
|
|
9664
|
+
get: function () { return chunkD4A6FL67_js.validateQualifiedRule; }
|
|
9628
9665
|
});
|
|
9629
9666
|
Object.defineProperty(exports, "viewConfigByTypeSchema", {
|
|
9630
9667
|
enumerable: true,
|
|
9631
|
-
get: function () { return
|
|
9668
|
+
get: function () { return chunkD4A6FL67_js.viewConfigByTypeSchema; }
|
|
9632
9669
|
});
|
|
9633
9670
|
Object.defineProperty(exports, "viewTypeSchema", {
|
|
9634
9671
|
enumerable: true,
|
|
9635
|
-
get: function () { return
|
|
9672
|
+
get: function () { return chunkD4A6FL67_js.viewTypeSchema; }
|
|
9636
9673
|
});
|
|
9637
9674
|
Object.defineProperty(exports, "createFormAttributeValidator", {
|
|
9638
9675
|
enumerable: true,
|
|
@@ -9982,6 +10019,7 @@ exports.RECORD_CREATOR_ROOT_ACTOR_METADATA_KEY = RECORD_CREATOR_ROOT_ACTOR_METAD
|
|
|
9982
10019
|
exports.RELATION_TARGET_ANY = RELATION_TARGET_ANY;
|
|
9983
10020
|
exports.RichtextTabConfig = RichtextTabConfig;
|
|
9984
10021
|
exports.SCHEMA_PLAN_LIMITS = SCHEMA_PLAN_LIMITS;
|
|
10022
|
+
exports.SESSION_STATE_STREAM_ID = SESSION_STATE_STREAM_ID;
|
|
9985
10023
|
exports.SESSION_TERMINAL_STATUSES = SESSION_TERMINAL_STATUSES;
|
|
9986
10024
|
exports.SKILL_LIST_VIEW = SKILL_LIST_VIEW;
|
|
9987
10025
|
exports.SKILL_OBJECT = SKILL_OBJECT;
|
|
@@ -10060,6 +10098,7 @@ exports.form = form;
|
|
|
10060
10098
|
exports.formFieldFlatKey = formFieldFlatKey;
|
|
10061
10099
|
exports.formFieldKey = formFieldKey;
|
|
10062
10100
|
exports.formRegistry = formRegistry;
|
|
10101
|
+
exports.formatAgentStreamFrameId = formatAgentStreamFrameId;
|
|
10063
10102
|
exports.formatAttributeValue = formatAttributeValue;
|
|
10064
10103
|
exports.formatByteSize = formatByteSize;
|
|
10065
10104
|
exports.formatComputedResult = formatComputedResult;
|
|
@@ -10069,9 +10108,11 @@ exports.fromDraftableView = fromDraftableView;
|
|
|
10069
10108
|
exports.generateDefaultDetailView = generateDefaultDetailView;
|
|
10070
10109
|
exports.generateDefaultListView = generateDefaultListView;
|
|
10071
10110
|
exports.getActiveTab = getActiveTab;
|
|
10111
|
+
exports.getEditableLabelAttribute = getEditableLabelAttribute;
|
|
10072
10112
|
exports.getErrorMessage = getErrorMessage;
|
|
10073
10113
|
exports.getLiveProtocolPayloadChannel = getLiveProtocolPayloadChannel;
|
|
10074
10114
|
exports.getRecordCreatorPrincipalId = getRecordCreatorPrincipalId;
|
|
10115
|
+
exports.getSingleAttributeFromExpression = getSingleAttributeFromExpression;
|
|
10075
10116
|
exports.getSlotFieldTargets = getSlotFieldTargets;
|
|
10076
10117
|
exports.getUserDisplayName = getUserDisplayName;
|
|
10077
10118
|
exports.group = group;
|
|
@@ -10131,6 +10172,7 @@ exports.number = number;
|
|
|
10131
10172
|
exports.numberFlag = numberFlag;
|
|
10132
10173
|
exports.object = object;
|
|
10133
10174
|
exports.orderAgentSessionMessages = orderAgentSessionMessages;
|
|
10175
|
+
exports.parseAgentStreamFrameId = parseAgentStreamFrameId;
|
|
10134
10176
|
exports.parseCountMode = parseCountMode;
|
|
10135
10177
|
exports.parseLiveChannelKey = parseLiveChannelKey;
|
|
10136
10178
|
exports.parseNativeAgentUIPartIdsMetadata = parseNativeAgentUIPartIdsMetadata;
|