@stndrds/schema 0.1.0-alpha.38 → 0.1.0-alpha.40
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-6NQPARLS.mjs → chunk-2C24E4Q2.mjs} +10137 -7158
- package/dist/{chunk-5NXIMZNY.js → chunk-UDJDDKGY.js} +8820 -5841
- package/dist/index.d.mts +1172 -230
- package/dist/index.d.ts +1172 -230
- package/dist/index.js +202 -10
- package/dist/index.mjs +209 -17
- package/dist/{runtime-Hwgvv9Bn.d.mts → runtime-Dl-kGqgX.d.mts} +2659 -522
- package/dist/{runtime-Hwgvv9Bn.d.ts → runtime-Dl-kGqgX.d.ts} +2659 -522
- package/dist/runtime.d.mts +1 -1
- package/dist/runtime.d.ts +1 -1
- package/dist/runtime.js +54 -2
- package/dist/runtime.mjs +55 -3
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -206,7 +206,101 @@
|
|
|
206
206
|
|
|
207
207
|
|
|
208
208
|
|
|
209
|
-
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
var _chunkUDJDDKGYjs = require('./chunk-UDJDDKGY.js');
|
|
210
304
|
|
|
211
305
|
|
|
212
306
|
|
|
@@ -325,11 +419,11 @@ function isNoValueOperator(operator) {
|
|
|
325
419
|
function isFlowDefinition(obj) {
|
|
326
420
|
return typeof obj === "object" && obj !== null && "slots" in obj && "pages" in obj && "relations" in obj && "status" in obj;
|
|
327
421
|
}
|
|
328
|
-
function isFlowPublished(
|
|
329
|
-
return
|
|
422
|
+
function isFlowPublished(flow) {
|
|
423
|
+
return flow.status === "published";
|
|
330
424
|
}
|
|
331
|
-
function isSystemFlow(
|
|
332
|
-
return
|
|
425
|
+
function isSystemFlow(flow) {
|
|
426
|
+
return flow.system === true;
|
|
333
427
|
}
|
|
334
428
|
|
|
335
429
|
// src/types/views.ts
|
|
@@ -354,15 +448,18 @@ function isActivityTab(tab) {
|
|
|
354
448
|
function isNotesTab(tab) {
|
|
355
449
|
return tab.type === "notes";
|
|
356
450
|
}
|
|
451
|
+
function isFlowsTab(tab) {
|
|
452
|
+
return tab.type === "flows";
|
|
453
|
+
}
|
|
357
454
|
|
|
358
455
|
// src/native/notes.ts
|
|
359
|
-
var NOTES =
|
|
360
|
-
|
|
456
|
+
var NOTES = _chunkUDJDDKGYjs.object.call(void 0, { name: "notes", label: "Note" }).pluralLabel("Notes").icon("file-text").description("Notes that can be linked to any record or used globally").system().labelExpression("{{ title }}").attribute(_chunkUDJDDKGYjs.text.call(void 0, { name: "title", label: "Title" }).placeholder("Untitled").required()).attribute(_chunkUDJDDKGYjs.richtext.call(void 0, { name: "content", label: "Content" }).required()).attribute(
|
|
457
|
+
_chunkUDJDDKGYjs.select.call(void 0, { name: "visibility", label: "Visibility" }).options([
|
|
361
458
|
{ id: "private", label: "Private", value: "private", icon: "lock" },
|
|
362
459
|
{ id: "shared", label: "Shared", value: "shared", icon: "users" }
|
|
363
460
|
]).defaultValue("private").required()
|
|
364
|
-
).attribute(
|
|
365
|
-
|
|
461
|
+
).attribute(_chunkUDJDDKGYjs.relation.call(void 0, { name: "linkedTo", label: "Linked To" }).toAny().hidden());
|
|
462
|
+
_chunkUDJDDKGYjs.registry.register(NOTES);
|
|
366
463
|
|
|
367
464
|
// src/views/registry.ts
|
|
368
465
|
var ViewRegistry = class {
|
|
@@ -735,4 +832,99 @@ var viewRegistry = new ViewRegistry();
|
|
|
735
832
|
|
|
736
833
|
|
|
737
834
|
|
|
738
|
-
exports.ALL_SYSTEM_RESOURCES = _chunk36UBIXJNjs.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunk5NXIMZNYjs.ActivityTabConfig; exports.AttributeInUseError = _chunk5NXIMZNYjs.AttributeInUseError; exports.AttributeNotFoundError = _chunk5NXIMZNYjs.AttributeNotFoundError; exports.AuditService = _chunk5NXIMZNYjs.AuditService; exports.CustomTabConfig = _chunk5NXIMZNYjs.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunk5NXIMZNYjs.DEFAULT_LABEL_FALLBACK; exports.DEFAULT_ROLES = _chunk36UBIXJNjs.DEFAULT_ROLES; exports.DEFAULT_ROLE_DESCRIPTIONS = _chunk36UBIXJNjs.DEFAULT_ROLE_DESCRIPTIONS; exports.DEFAULT_ROLE_LABELS = _chunk36UBIXJNjs.DEFAULT_ROLE_LABELS; exports.DEFAULT_ROLE_PERMISSIONS = _chunk36UBIXJNjs.DEFAULT_ROLE_PERMISSIONS; exports.DEFAULT_VALIDATION_MESSAGES = _chunk5NXIMZNYjs.DEFAULT_VALIDATION_MESSAGES; exports.DirectTableTabConfig = _chunk5NXIMZNYjs.DirectTableTabConfig; exports.DuplicateError = _chunk5NXIMZNYjs.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunk5NXIMZNYjs.EMPTY_VALUE_PLACEHOLDER; exports.FileNotFoundError = _chunk5NXIMZNYjs.FileNotFoundError; exports.FileService = _chunk5NXIMZNYjs.FileService; exports.FlowBuilder = _chunk5NXIMZNYjs.FlowBuilder; exports.FlowPageBuilder = _chunk5NXIMZNYjs.FlowPageBuilder; exports.FlowRowBuilder = _chunk5NXIMZNYjs.FlowRowBuilder; exports.FlowService = _chunk5NXIMZNYjs.FlowService; exports.ForbiddenError = _chunk5NXIMZNYjs.ForbiddenError; exports.GeocodingService = _chunk5NXIMZNYjs.GeocodingService; exports.GlobalSearchService = _chunk5NXIMZNYjs.GlobalSearchService; exports.GroupBuilder = _chunk5NXIMZNYjs.GroupBuilder; exports.InvalidPathError = _chunk5NXIMZNYjs.InvalidPathError; exports.InverseTableTabConfig = _chunk5NXIMZNYjs.InverseTableTabConfig; exports.MaxDepthExceededError = _chunk5NXIMZNYjs.MaxDepthExceededError; exports.NOTES = NOTES; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NoopCacheAdapter = _chunk5NXIMZNYjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunk5NXIMZNYjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunk5NXIMZNYjs.NoopHookRegistry; exports.NotFoundError = _chunk5NXIMZNYjs.NotFoundError; exports.NotSystemObjectError = _chunk5NXIMZNYjs.NotSystemObjectError; exports.NotesTabConfig = _chunk5NXIMZNYjs.NotesTabConfig; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunk5NXIMZNYjs.ObjectBuilder; exports.ObjectNotFoundError = _chunk5NXIMZNYjs.ObjectNotFoundError; exports.ObjectReferencedError = _chunk5NXIMZNYjs.ObjectReferencedError; exports.ObjectSchemaService = _chunk5NXIMZNYjs.ObjectSchemaService; exports.PermissionService = _chunk5NXIMZNYjs.PermissionService; exports.PolicyRegistry = _chunk5NXIMZNYjs.PolicyRegistry; exports.PolicyViolationError = _chunk5NXIMZNYjs.PolicyViolationError; exports.ProtectedResourceError = _chunk5NXIMZNYjs.ProtectedResourceError; exports.ProtectedRoleError = _chunk5NXIMZNYjs.ProtectedRoleError; exports.QueryBuilder = _chunk5NXIMZNYjs.QueryBuilder; exports.QueryMultipleResultsError = _chunk5NXIMZNYjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunk5NXIMZNYjs.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunk5NXIMZNYjs.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunk5NXIMZNYjs.RESERVED_ATTRIBUTE_NAMES; exports.RecordNotFoundError = _chunk5NXIMZNYjs.RecordNotFoundError; exports.RecordReferencedError = _chunk5NXIMZNYjs.RecordReferencedError; exports.RecordService = _chunk5NXIMZNYjs.RecordService; exports.RelationResolverService = _chunk5NXIMZNYjs.RelationResolverService; exports.RelationService = _chunk5NXIMZNYjs.RelationService; exports.RoleNotFoundError = _chunk5NXIMZNYjs.RoleNotFoundError; exports.RollupScheduler = _chunk5NXIMZNYjs.RollupScheduler; exports.RollupService = _chunk5NXIMZNYjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunk5NXIMZNYjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SYSTEM_ATTRIBUTES = _chunk5NXIMZNYjs.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunk5NXIMZNYjs.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunk36UBIXJNjs.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunk36UBIXJNjs.SYSTEM_RESOURCE_LABELS; exports.SchemaError = _chunk5NXIMZNYjs.SchemaError; exports.SchemaErrorCode = _chunk5NXIMZNYjs.SchemaErrorCode; exports.SyncError = _chunk5NXIMZNYjs.SyncError; exports.TabBuilder = _chunk5NXIMZNYjs.TabBuilder; exports.TenantAwareRepository = _chunk5NXIMZNYjs.TenantAwareRepository; exports.TenantAwareService = _chunk5NXIMZNYjs.TenantAwareService; exports.TenantContextError = _chunk5NXIMZNYjs.TenantContextError; exports.UserProfileNotFoundError = _chunk5NXIMZNYjs.UserProfileNotFoundError; exports.UserProfileService = _chunk5NXIMZNYjs.UserProfileService; exports.UserService = _chunk5NXIMZNYjs.UserService; exports.ValidationError = _chunk5NXIMZNYjs.ValidationError; exports.ViewBuilder = _chunk5NXIMZNYjs.ViewBuilder; exports.ViewService = _chunk5NXIMZNYjs.ViewService; exports.asTenantId = _chunk5NXIMZNYjs.asTenantId; exports.asUserId = _chunk5NXIMZNYjs.asUserId; exports.attributeConfigSchemas = _chunk5NXIMZNYjs.attributeConfigSchemas; exports.buildAuditChanges = _chunk5NXIMZNYjs.buildAuditChanges; exports.cacheKeys = _chunk5NXIMZNYjs.cacheKeys; exports.cacheTtl = _chunk5NXIMZNYjs.cacheTtl; exports.checkbox = _chunk5NXIMZNYjs.checkbox; exports.checkboxConfigSchema = _chunk5NXIMZNYjs.checkboxConfigSchema; exports.computeRecordStatus = _chunk5NXIMZNYjs.computeRecordStatus; exports.createAttributeValidator = _chunk5NXIMZNYjs.createAttributeValidator; exports.createCheckboxValidator = _chunk5NXIMZNYjs.createCheckboxValidator; exports.createCurrencyValidator = _chunk5NXIMZNYjs.createCurrencyValidator; exports.createDateValidator = _chunk5NXIMZNYjs.createDateValidator; exports.createDefaultState = _chunk5NXIMZNYjs.createDefaultState; exports.createDraftValidator = _chunk5NXIMZNYjs.createDraftValidator; exports.createFileValidator = _chunk5NXIMZNYjs.createFileValidator; exports.createFormAttributeValidator = _chunk5NXIMZNYjs.createFormAttributeValidator; exports.createFormulaValidator = _chunk5NXIMZNYjs.createFormulaValidator; exports.createLocationValidator = _chunk5NXIMZNYjs.createLocationValidator; exports.createMockAdapter = _chunk5NXIMZNYjs.createMockAdapter; exports.createMultiRelationValidator = _chunk5NXIMZNYjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunk5NXIMZNYjs.createMultiselectValidator; exports.createNumberValidator = _chunk5NXIMZNYjs.createNumberValidator; exports.createObjectValidator = _chunk5NXIMZNYjs.createObjectValidator; exports.createPhoneValidator = _chunk5NXIMZNYjs.createPhoneValidator; exports.createQueryBuilder = _chunk5NXIMZNYjs.createQueryBuilder; exports.createRatingValidator = _chunk5NXIMZNYjs.createRatingValidator; exports.createRelationValidator = _chunk5NXIMZNYjs.createRelationValidator; exports.createRichtextValidator = _chunk5NXIMZNYjs.createRichtextValidator; exports.createRollupValidator = _chunk5NXIMZNYjs.createRollupValidator; exports.createSelectValidator = _chunk5NXIMZNYjs.createSelectValidator; exports.createSingleRelationValidator = _chunk5NXIMZNYjs.createSingleRelationValidator; exports.createStatusValidator = _chunk5NXIMZNYjs.createStatusValidator; exports.createTextAreaValidator = _chunk5NXIMZNYjs.createTextAreaValidator; exports.createTextValidator = _chunk5NXIMZNYjs.createTextValidator; exports.createUserValidator = _chunk5NXIMZNYjs.createUserValidator; exports.currency = _chunk5NXIMZNYjs.currency; exports.currencyConfigSchema = _chunk5NXIMZNYjs.currencyConfigSchema; exports.date = _chunk5NXIMZNYjs.date; exports.dateConfigSchema = _chunk5NXIMZNYjs.dateConfigSchema; exports.defaultPolicyRegistry = _chunk5NXIMZNYjs.defaultPolicyRegistry; exports.enrichValuesWithSelectLabels = _chunk5NXIMZNYjs.enrichValuesWithSelectLabels; exports.evaluateFormula = _chunk5NXIMZNYjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunk5NXIMZNYjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunk5NXIMZNYjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunk5NXIMZNYjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunk5NXIMZNYjs.evaluateFormulaWithResult; exports.extractAttributeNames = _chunk5NXIMZNYjs.extractAttributeNames; exports.extractFormulaVariables = _chunk5NXIMZNYjs.extractFormulaVariables; exports.extractRelationNames = _chunk5NXIMZNYjs.extractRelationNames; exports.extractRelationReferences = _chunk5NXIMZNYjs.extractRelationReferences; exports.file = _chunk5NXIMZNYjs.file; exports.fileConfigSchema = _chunk5NXIMZNYjs.fileConfigSchema; exports.flattenRelationsForEval = _chunk5NXIMZNYjs.flattenRelationsForEval; exports.flow = _chunk5NXIMZNYjs.flow; exports.formatAttributeValue = _chunk5NXIMZNYjs.formatAttributeValue; exports.formatFormulaResult = _chunk5NXIMZNYjs.formatFormulaResult; exports.formatRecord = _chunk5NXIMZNYjs.formatRecord; exports.formatRecords = _chunk5NXIMZNYjs.formatRecords; exports.formula = _chunk5NXIMZNYjs.formula; exports.formulaConfigSchema = _chunk5NXIMZNYjs.formulaConfigSchema; exports.generateId = _chunk5NXIMZNYjs.generateId; exports.generatePrefixedId = _chunk5NXIMZNYjs.generatePrefixedId; exports.getAttributeConfigSchema = _chunk5NXIMZNYjs.getAttributeConfigSchema; exports.getContext = _chunk5NXIMZNYjs.getContext; exports.getMissingRequiredAttributes = _chunk5NXIMZNYjs.getMissingRequiredAttributes; exports.getPathDepth = _chunk5NXIMZNYjs.getPathDepth; exports.getRelationPath = _chunk5NXIMZNYjs.getRelationPath; exports.getSyncPreview = _chunk5NXIMZNYjs.getSyncPreview; exports.getSystemAttributeList = _chunk5NXIMZNYjs.getSystemAttributeList; exports.getTargetAttributeName = _chunk5NXIMZNYjs.getTargetAttributeName; exports.getTenantId = _chunk5NXIMZNYjs.getTenantId; exports.getUserId = _chunk5NXIMZNYjs.getUserId; exports.getViewSyncPreview = _chunk5NXIMZNYjs.getViewSyncPreview; exports.group = _chunk5NXIMZNYjs.group; exports.hasContext = _chunk5NXIMZNYjs.hasContext; exports.hasRelationReferences = _chunk5NXIMZNYjs.hasRelationReferences; exports.isActivityTab = isActivityTab; exports.isAdvancedFilterState = isAdvancedFilterState; exports.isCustomTab = isCustomTab; exports.isDefaultRole = _chunk36UBIXJNjs.isDefaultRole; exports.isDirectTableTab = isDirectTableTab; exports.isFlowDefinition = isFlowDefinition; exports.isFlowPublished = isFlowPublished; exports.isForbiddenError = _chunk5NXIMZNYjs.isForbiddenError; exports.isFormTab = isFormTab; exports.isInverseTableTab = isInverseTableTab; exports.isLabelExpression = _chunk5NXIMZNYjs.isLabelExpression; exports.isNoValueOperator = isNoValueOperator; exports.isNotFoundError = _chunk5NXIMZNYjs.isNotFoundError; exports.isNotesTab = isNotesTab; exports.isProtectedResourceError = _chunk5NXIMZNYjs.isProtectedResourceError; exports.isRecordComplete = _chunk5NXIMZNYjs.isRecordComplete; exports.isSchemaError = _chunk5NXIMZNYjs.isSchemaError; exports.isSystemAttribute = _chunk5NXIMZNYjs.isSystemAttribute; exports.isSystemAttributeObject = _chunk5NXIMZNYjs.isSystemAttributeObject; exports.isSystemFlow = isSystemFlow; exports.isTableTab = isTableTab; exports.isUniversalRelation = _chunk5NXIMZNYjs.isUniversalRelation; exports.isValidationError = _chunk5NXIMZNYjs.isValidationError; exports.location = _chunk5NXIMZNYjs.location; exports.locationConfigSchema = _chunk5NXIMZNYjs.locationConfigSchema; exports.multiselect = _chunk5NXIMZNYjs.multiselect; exports.multiselectConfigSchema = _chunk5NXIMZNYjs.multiselectConfigSchema; exports.notesPolicy = _chunk5NXIMZNYjs.notesPolicy; exports.number = _chunk5NXIMZNYjs.number; exports.numberConfigSchema = _chunk5NXIMZNYjs.numberConfigSchema; exports.object = _chunk5NXIMZNYjs.object; exports.parseAttributeConfig = _chunk5NXIMZNYjs.parseAttributeConfig; exports.parsePath = _chunk5NXIMZNYjs.parsePath; exports.pathHasManyCardinality = _chunk5NXIMZNYjs.pathHasManyCardinality; exports.phone = _chunk5NXIMZNYjs.phone; exports.phoneConfigSchema = _chunk5NXIMZNYjs.phoneConfigSchema; exports.rating = _chunk5NXIMZNYjs.rating; exports.ratingConfigSchema = _chunk5NXIMZNYjs.ratingConfigSchema; exports.registry = _chunk5NXIMZNYjs.registry; exports.relation = _chunk5NXIMZNYjs.relation; exports.relationConfigSchema = _chunk5NXIMZNYjs.relationConfigSchema; exports.renderLabelExpression = _chunk5NXIMZNYjs.renderLabelExpression; exports.resolveMultiplePaths = _chunk5NXIMZNYjs.resolveMultiplePaths; exports.resolveSingleValue = _chunk5NXIMZNYjs.resolveSingleValue; exports.richtext = _chunk5NXIMZNYjs.richtext; exports.richtextConfigSchema = _chunk5NXIMZNYjs.richtextConfigSchema; exports.rollup = _chunk5NXIMZNYjs.rollup; exports.rollupConfigSchema = _chunk5NXIMZNYjs.rollupConfigSchema; exports.runWithContext = _chunk5NXIMZNYjs.runWithContext; exports.safeParseAttributeConfig = _chunk5NXIMZNYjs.safeParseAttributeConfig; exports.select = _chunk5NXIMZNYjs.select; exports.selectConfigSchema = _chunk5NXIMZNYjs.selectConfigSchema; exports.status = _chunk5NXIMZNYjs.status; exports.statusConfigSchema = _chunk5NXIMZNYjs.statusConfigSchema; exports.syncAll = _chunk5NXIMZNYjs.syncAll; exports.syncNativeObjects = _chunk5NXIMZNYjs.syncNativeObjects; exports.syncNativeViews = _chunk5NXIMZNYjs.syncNativeViews; exports.text = _chunk5NXIMZNYjs.text; exports.textConfigSchema = _chunk5NXIMZNYjs.textConfigSchema; exports.textarea = _chunk5NXIMZNYjs.textarea; exports.textareaConfigSchema = _chunk5NXIMZNYjs.textareaConfigSchema; exports.toAdvancedFilterState = toAdvancedFilterState; exports.toSimpleFilterState = toSimpleFilterState; exports.traversePath = _chunk5NXIMZNYjs.traversePath; exports.user = _chunk5NXIMZNYjs.user; exports.userConfigSchema = _chunk5NXIMZNYjs.userConfigSchema; exports.validateAttribute = _chunk5NXIMZNYjs.validateAttribute; exports.validateAttributeConfig = _chunk5NXIMZNYjs.validateAttributeConfig; exports.validateDraft = _chunk5NXIMZNYjs.validateDraft; exports.validateDraftOrThrow = _chunk5NXIMZNYjs.validateDraftOrThrow; exports.validateFormulaExpression = _chunk5NXIMZNYjs.validateFormulaExpression; exports.validateObject = _chunk5NXIMZNYjs.validateObject; exports.validateObjectOrThrow = _chunk5NXIMZNYjs.validateObjectOrThrow; exports.validatePath = _chunk5NXIMZNYjs.validatePath; exports.verifyNativeObjectsSync = _chunk5NXIMZNYjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunk5NXIMZNYjs.verifyNativeViewsSync; exports.view = _chunk5NXIMZNYjs.view; exports.viewRegistry = viewRegistry; exports.withTenantContext = _chunk5NXIMZNYjs.withTenantContext;
|
|
835
|
+
|
|
836
|
+
|
|
837
|
+
|
|
838
|
+
|
|
839
|
+
|
|
840
|
+
|
|
841
|
+
|
|
842
|
+
|
|
843
|
+
|
|
844
|
+
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
|
|
848
|
+
|
|
849
|
+
|
|
850
|
+
|
|
851
|
+
|
|
852
|
+
|
|
853
|
+
|
|
854
|
+
|
|
855
|
+
|
|
856
|
+
|
|
857
|
+
|
|
858
|
+
|
|
859
|
+
|
|
860
|
+
|
|
861
|
+
|
|
862
|
+
|
|
863
|
+
|
|
864
|
+
|
|
865
|
+
|
|
866
|
+
|
|
867
|
+
|
|
868
|
+
|
|
869
|
+
|
|
870
|
+
|
|
871
|
+
|
|
872
|
+
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
|
|
876
|
+
|
|
877
|
+
|
|
878
|
+
|
|
879
|
+
|
|
880
|
+
|
|
881
|
+
|
|
882
|
+
|
|
883
|
+
|
|
884
|
+
|
|
885
|
+
|
|
886
|
+
|
|
887
|
+
|
|
888
|
+
|
|
889
|
+
|
|
890
|
+
|
|
891
|
+
|
|
892
|
+
|
|
893
|
+
|
|
894
|
+
|
|
895
|
+
|
|
896
|
+
|
|
897
|
+
|
|
898
|
+
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
|
|
902
|
+
|
|
903
|
+
|
|
904
|
+
|
|
905
|
+
|
|
906
|
+
|
|
907
|
+
|
|
908
|
+
|
|
909
|
+
|
|
910
|
+
|
|
911
|
+
|
|
912
|
+
|
|
913
|
+
|
|
914
|
+
|
|
915
|
+
|
|
916
|
+
|
|
917
|
+
|
|
918
|
+
|
|
919
|
+
|
|
920
|
+
|
|
921
|
+
|
|
922
|
+
|
|
923
|
+
|
|
924
|
+
|
|
925
|
+
|
|
926
|
+
|
|
927
|
+
|
|
928
|
+
|
|
929
|
+
|
|
930
|
+
exports.ALL_SYSTEM_RESOURCES = _chunk36UBIXJNjs.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunkUDJDDKGYjs.ActivityTabConfig; exports.AttributeInUseError = _chunkUDJDDKGYjs.AttributeInUseError; exports.AttributeNotFoundError = _chunkUDJDDKGYjs.AttributeNotFoundError; exports.AuditService = _chunkUDJDDKGYjs.AuditService; exports.ConditionExecutor = _chunkUDJDDKGYjs.ConditionExecutor; exports.ConditionGroupSchema = _chunkUDJDDKGYjs.ConditionGroupSchema; exports.ConditionNodeSchema = _chunkUDJDDKGYjs.ConditionNodeSchema; exports.ConditionOperatorSchema = _chunkUDJDDKGYjs.ConditionOperatorSchema; exports.ConditionRuleSchema = _chunkUDJDDKGYjs.ConditionRuleSchema; exports.CustomTabConfig = _chunkUDJDDKGYjs.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunkUDJDDKGYjs.DEFAULT_LABEL_FALLBACK; exports.DEFAULT_ROLES = _chunk36UBIXJNjs.DEFAULT_ROLES; exports.DEFAULT_ROLE_DESCRIPTIONS = _chunk36UBIXJNjs.DEFAULT_ROLE_DESCRIPTIONS; exports.DEFAULT_ROLE_LABELS = _chunk36UBIXJNjs.DEFAULT_ROLE_LABELS; exports.DEFAULT_ROLE_PERMISSIONS = _chunk36UBIXJNjs.DEFAULT_ROLE_PERMISSIONS; exports.DEFAULT_THEME = _chunkUDJDDKGYjs.DEFAULT_THEME; exports.DEFAULT_VALIDATION_MESSAGES = _chunkUDJDDKGYjs.DEFAULT_VALIDATION_MESSAGES; exports.DirectTableTabConfig = _chunkUDJDDKGYjs.DirectTableTabConfig; exports.DuplicateError = _chunkUDJDDKGYjs.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunkUDJDDKGYjs.EMPTY_VALUE_PLACEHOLDER; exports.EndExecutor = _chunkUDJDDKGYjs.EndExecutor; exports.EndNodeSchema = _chunkUDJDDKGYjs.EndNodeSchema; exports.ExecutorRegistry = _chunkUDJDDKGYjs.ExecutorRegistry; exports.FileNotFoundError = _chunkUDJDDKGYjs.FileNotFoundError; exports.FileService = _chunkUDJDDKGYjs.FileService; exports.FlowRowFieldSchema = _chunkUDJDDKGYjs.FlowRowFieldSchema; exports.FlowRowSchema = _chunkUDJDDKGYjs.FlowRowSchema; exports.FlowsTabConfig = _chunkUDJDDKGYjs.FlowsTabConfig; exports.ForbiddenError = _chunkUDJDDKGYjs.ForbiddenError; exports.FormExecutor = _chunkUDJDDKGYjs.FormExecutor; exports.FormFieldRefSchema = _chunkUDJDDKGYjs.FormFieldRefSchema; exports.FormNodeSchema = _chunkUDJDDKGYjs.FormNodeSchema; exports.GeocodingService = _chunkUDJDDKGYjs.GeocodingService; exports.GlobalSearchService = _chunkUDJDDKGYjs.GlobalSearchService; exports.GroupBuilder = _chunkUDJDDKGYjs.GroupBuilder; exports.InvalidPathError = _chunkUDJDDKGYjs.InvalidPathError; exports.InverseTableTabConfig = _chunkUDJDDKGYjs.InverseTableTabConfig; exports.MaxDepthExceededError = _chunkUDJDDKGYjs.MaxDepthExceededError; exports.NOTES = NOTES; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NodePositionSchema = _chunkUDJDDKGYjs.NodePositionSchema; exports.NoopCacheAdapter = _chunkUDJDDKGYjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkUDJDDKGYjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkUDJDDKGYjs.NoopHookRegistry; exports.NotFoundError = _chunkUDJDDKGYjs.NotFoundError; exports.NotSystemObjectError = _chunkUDJDDKGYjs.NotSystemObjectError; exports.NotesTabConfig = _chunkUDJDDKGYjs.NotesTabConfig; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunkUDJDDKGYjs.ObjectBuilder; exports.ObjectNotFoundError = _chunkUDJDDKGYjs.ObjectNotFoundError; exports.ObjectReferencedError = _chunkUDJDDKGYjs.ObjectReferencedError; exports.ObjectSchemaService = _chunkUDJDDKGYjs.ObjectSchemaService; exports.ParticipantAuthConfigSchema = _chunkUDJDDKGYjs.ParticipantAuthConfigSchema; exports.ParticipantTemplateSchema = _chunkUDJDDKGYjs.ParticipantTemplateSchema; exports.ParticipationTokenService = _chunkUDJDDKGYjs.ParticipationTokenService; exports.PermissionService = _chunkUDJDDKGYjs.PermissionService; exports.PinCodeService = _chunkUDJDDKGYjs.PinCodeService; exports.PolicyRegistry = _chunkUDJDDKGYjs.PolicyRegistry; exports.PolicyViolationError = _chunkUDJDDKGYjs.PolicyViolationError; exports.ProtectedResourceError = _chunkUDJDDKGYjs.ProtectedResourceError; exports.ProtectedRoleError = _chunkUDJDDKGYjs.ProtectedRoleError; exports.QueryBuilder = _chunkUDJDDKGYjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkUDJDDKGYjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkUDJDDKGYjs.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunkUDJDDKGYjs.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunkUDJDDKGYjs.RESERVED_ATTRIBUTE_NAMES; exports.RecordNotFoundError = _chunkUDJDDKGYjs.RecordNotFoundError; exports.RecordReferencedError = _chunkUDJDDKGYjs.RecordReferencedError; exports.RecordService = _chunkUDJDDKGYjs.RecordService; exports.RelationResolverService = _chunkUDJDDKGYjs.RelationResolverService; exports.RelationService = _chunkUDJDDKGYjs.RelationService; exports.RoleNotFoundError = _chunkUDJDDKGYjs.RoleNotFoundError; exports.RollupScheduler = _chunkUDJDDKGYjs.RollupScheduler; exports.RollupService = _chunkUDJDDKGYjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkUDJDDKGYjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SYSTEM_ATTRIBUTES = _chunkUDJDDKGYjs.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunkUDJDDKGYjs.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunk36UBIXJNjs.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunk36UBIXJNjs.SYSTEM_RESOURCE_LABELS; exports.SchemaError = _chunkUDJDDKGYjs.SchemaError; exports.SchemaErrorCode = _chunkUDJDDKGYjs.SchemaErrorCode; exports.SlotModeSchema = _chunkUDJDDKGYjs.SlotModeSchema; exports.StartExecutor = _chunkUDJDDKGYjs.StartExecutor; exports.StartNodeSchema = _chunkUDJDDKGYjs.StartNodeSchema; exports.SyncError = _chunkUDJDDKGYjs.SyncError; exports.TabBuilder = _chunkUDJDDKGYjs.TabBuilder; exports.TenantAwareRepository = _chunkUDJDDKGYjs.TenantAwareRepository; exports.TenantAwareService = _chunkUDJDDKGYjs.TenantAwareService; exports.TenantContextError = _chunkUDJDDKGYjs.TenantContextError; exports.ThemeColorsSchema = _chunkUDJDDKGYjs.ThemeColorsSchema; exports.ThemeLogoSchema = _chunkUDJDDKGYjs.ThemeLogoSchema; exports.UserProfileNotFoundError = _chunkUDJDDKGYjs.UserProfileNotFoundError; exports.UserProfileService = _chunkUDJDDKGYjs.UserProfileService; exports.UserService = _chunkUDJDDKGYjs.UserService; exports.ValidationError = _chunkUDJDDKGYjs.ValidationError; exports.ViewBuilder = _chunkUDJDDKGYjs.ViewBuilder; exports.ViewService = _chunkUDJDDKGYjs.ViewService; exports.ViewportSchema = _chunkUDJDDKGYjs.ViewportSchema; exports.WorkflowBuilder = _chunkUDJDDKGYjs.WorkflowBuilder; exports.WorkflowConditionBuilder = _chunkUDJDDKGYjs.WorkflowConditionBuilder; exports.WorkflowConfigSchema = _chunkUDJDDKGYjs.WorkflowConfigSchema; exports.WorkflowDefinitionSchema = _chunkUDJDDKGYjs.WorkflowDefinitionSchema; exports.WorkflowEndBuilder = _chunkUDJDDKGYjs.WorkflowEndBuilder; exports.WorkflowFormBuilder = _chunkUDJDDKGYjs.WorkflowFormBuilder; exports.WorkflowFormRowBuilder = _chunkUDJDDKGYjs.WorkflowFormRowBuilder; exports.WorkflowInstanceService = _chunkUDJDDKGYjs.WorkflowInstanceService; exports.WorkflowLayoutSchema = _chunkUDJDDKGYjs.WorkflowLayoutSchema; exports.WorkflowNodeSchema = _chunkUDJDDKGYjs.WorkflowNodeSchema; exports.WorkflowParticipantBuilder = _chunkUDJDDKGYjs.WorkflowParticipantBuilder; exports.WorkflowParticipationService = _chunkUDJDDKGYjs.WorkflowParticipationService; exports.WorkflowRelationService = _chunkUDJDDKGYjs.WorkflowRelationService; exports.WorkflowService = _chunkUDJDDKGYjs.WorkflowService; exports.WorkflowSimpleFormBuilder = _chunkUDJDDKGYjs.WorkflowSimpleFormBuilder; exports.WorkflowSlotSchema = _chunkUDJDDKGYjs.WorkflowSlotSchema; exports.WorkflowStartBuilder = _chunkUDJDDKGYjs.WorkflowStartBuilder; exports.WorkflowStatusSchema = _chunkUDJDDKGYjs.WorkflowStatusSchema; exports.WorkflowThemeSchema = _chunkUDJDDKGYjs.WorkflowThemeSchema; exports.and = _chunkUDJDDKGYjs.and; exports.asTenantId = _chunkUDJDDKGYjs.asTenantId; exports.asUserId = _chunkUDJDDKGYjs.asUserId; exports.attributeConfigSchemas = _chunkUDJDDKGYjs.attributeConfigSchemas; exports.buildAuditChanges = _chunkUDJDDKGYjs.buildAuditChanges; exports.cacheKeys = _chunkUDJDDKGYjs.cacheKeys; exports.cacheTtl = _chunkUDJDDKGYjs.cacheTtl; exports.canAuthenticate = _chunkUDJDDKGYjs.canAuthenticate; exports.canExecuteNode = _chunkUDJDDKGYjs.canExecuteNode; exports.canParticipate = _chunkUDJDDKGYjs.canParticipate; exports.canResumeInstance = _chunkUDJDDKGYjs.canResumeInstance; exports.checkbox = _chunkUDJDDKGYjs.checkbox; exports.checkboxConfigSchema = _chunkUDJDDKGYjs.checkboxConfigSchema; exports.complete = _chunkUDJDDKGYjs.complete; exports.computeLabelWithRelations = _chunkUDJDDKGYjs.computeLabelWithRelations; exports.computeRecordStatus = _chunkUDJDDKGYjs.computeRecordStatus; exports.createAttributeValidator = _chunkUDJDDKGYjs.createAttributeValidator; exports.createCheckboxValidator = _chunkUDJDDKGYjs.createCheckboxValidator; exports.createCurrencyValidator = _chunkUDJDDKGYjs.createCurrencyValidator; exports.createDateValidator = _chunkUDJDDKGYjs.createDateValidator; exports.createDefaultExecutorRegistry = _chunkUDJDDKGYjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkUDJDDKGYjs.createDefaultState; exports.createDraftValidator = _chunkUDJDDKGYjs.createDraftValidator; exports.createEmptyContext = _chunkUDJDDKGYjs.createEmptyContext; exports.createFileValidator = _chunkUDJDDKGYjs.createFileValidator; exports.createFormAttributeValidator = _chunkUDJDDKGYjs.createFormAttributeValidator; exports.createFormulaValidator = _chunkUDJDDKGYjs.createFormulaValidator; exports.createLocationValidator = _chunkUDJDDKGYjs.createLocationValidator; exports.createMockAdapter = _chunkUDJDDKGYjs.createMockAdapter; exports.createMultiRelationValidator = _chunkUDJDDKGYjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunkUDJDDKGYjs.createMultiselectValidator; exports.createNumberValidator = _chunkUDJDDKGYjs.createNumberValidator; exports.createObjectValidator = _chunkUDJDDKGYjs.createObjectValidator; exports.createPhoneValidator = _chunkUDJDDKGYjs.createPhoneValidator; exports.createQueryBuilder = _chunkUDJDDKGYjs.createQueryBuilder; exports.createRatingValidator = _chunkUDJDDKGYjs.createRatingValidator; exports.createRelationValidator = _chunkUDJDDKGYjs.createRelationValidator; exports.createRichtextValidator = _chunkUDJDDKGYjs.createRichtextValidator; exports.createRollupValidator = _chunkUDJDDKGYjs.createRollupValidator; exports.createSelectValidator = _chunkUDJDDKGYjs.createSelectValidator; exports.createSingleRelationValidator = _chunkUDJDDKGYjs.createSingleRelationValidator; exports.createStartTransition = _chunkUDJDDKGYjs.createStartTransition; exports.createStatusValidator = _chunkUDJDDKGYjs.createStatusValidator; exports.createTextAreaValidator = _chunkUDJDDKGYjs.createTextAreaValidator; exports.createTextValidator = _chunkUDJDDKGYjs.createTextValidator; exports.createUserValidator = _chunkUDJDDKGYjs.createUserValidator; exports.currency = _chunkUDJDDKGYjs.currency; exports.currencyConfigSchema = _chunkUDJDDKGYjs.currencyConfigSchema; exports.date = _chunkUDJDDKGYjs.date; exports.dateConfigSchema = _chunkUDJDDKGYjs.dateConfigSchema; exports.defaultPolicyRegistry = _chunkUDJDDKGYjs.defaultPolicyRegistry; exports.enrichValuesForDisplay = _chunkUDJDDKGYjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkUDJDDKGYjs.enrichValuesWithSelectLabels; exports.eq = _chunkUDJDDKGYjs.eq; exports.error = _chunkUDJDDKGYjs.error; exports.evaluate = _chunkUDJDDKGYjs.evaluate; exports.evaluateCondition = _chunkUDJDDKGYjs.evaluateCondition; exports.evaluateFormula = _chunkUDJDDKGYjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkUDJDDKGYjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkUDJDDKGYjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkUDJDDKGYjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkUDJDDKGYjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkUDJDDKGYjs.evaluateWithTrace; exports.extractAttributeNames = _chunkUDJDDKGYjs.extractAttributeNames; exports.extractFormulaVariables = _chunkUDJDDKGYjs.extractFormulaVariables; exports.extractRelationIds = _chunkUDJDDKGYjs.extractRelationIds; exports.extractRelationNames = _chunkUDJDDKGYjs.extractRelationNames; exports.extractRelationReferences = _chunkUDJDDKGYjs.extractRelationReferences; exports.file = _chunkUDJDDKGYjs.file; exports.fileConfigSchema = _chunkUDJDDKGYjs.fileConfigSchema; exports.flattenRelationsForEval = _chunkUDJDDKGYjs.flattenRelationsForEval; exports.formatAttributeValue = _chunkUDJDDKGYjs.formatAttributeValue; exports.formatFormulaResult = _chunkUDJDDKGYjs.formatFormulaResult; exports.formatRecord = _chunkUDJDDKGYjs.formatRecord; exports.formatRecords = _chunkUDJDDKGYjs.formatRecords; exports.formula = _chunkUDJDDKGYjs.formula; exports.formulaConfigSchema = _chunkUDJDDKGYjs.formulaConfigSchema; exports.generateCssVariables = _chunkUDJDDKGYjs.generateCssVariables; exports.generateId = _chunkUDJDDKGYjs.generateId; exports.generatePrefixedId = _chunkUDJDDKGYjs.generatePrefixedId; exports.getAttributeConfigSchema = _chunkUDJDDKGYjs.getAttributeConfigSchema; exports.getContext = _chunkUDJDDKGYjs.getContext; exports.getContextValue = _chunkUDJDDKGYjs.getContextValue; exports.getDefaultExecutorRegistry = _chunkUDJDDKGYjs.getDefaultExecutorRegistry; exports.getDefaultPinCodeService = _chunkUDJDDKGYjs.getDefaultPinCodeService; exports.getDefaultTokenService = _chunkUDJDDKGYjs.getDefaultTokenService; exports.getMissingRequiredAttributes = _chunkUDJDDKGYjs.getMissingRequiredAttributes; exports.getNodeOutputs = _chunkUDJDDKGYjs.getNodeOutputs; exports.getPathDepth = _chunkUDJDDKGYjs.getPathDepth; exports.getRelationPath = _chunkUDJDDKGYjs.getRelationPath; exports.getSyncPreview = _chunkUDJDDKGYjs.getSyncPreview; exports.getSystemAttributeList = _chunkUDJDDKGYjs.getSystemAttributeList; exports.getTargetAttributeName = _chunkUDJDDKGYjs.getTargetAttributeName; exports.getTenantId = _chunkUDJDDKGYjs.getTenantId; exports.getUserId = _chunkUDJDDKGYjs.getUserId; exports.getViewSyncPreview = _chunkUDJDDKGYjs.getViewSyncPreview; exports.group = _chunkUDJDDKGYjs.group; exports.hasContext = _chunkUDJDDKGYjs.hasContext; exports.hasRelationReferences = _chunkUDJDDKGYjs.hasRelationReferences; exports.inValues = _chunkUDJDDKGYjs.inValues; exports.initializePinCodeService = _chunkUDJDDKGYjs.initializePinCodeService; exports.initializeTokenService = _chunkUDJDDKGYjs.initializeTokenService; exports.isActivityTab = isActivityTab; exports.isAdvancedFilterState = isAdvancedFilterState; exports.isAdvancedFormNode = _chunkUDJDDKGYjs.isAdvancedFormNode; exports.isConditionGroup = _chunkUDJDDKGYjs.isConditionGroup; exports.isConditionNode = _chunkUDJDDKGYjs.isConditionNode; exports.isConditionRule = _chunkUDJDDKGYjs.isConditionRule; exports.isCustomTab = isCustomTab; exports.isDefaultRole = _chunk36UBIXJNjs.isDefaultRole; exports.isDirectTableTab = isDirectTableTab; exports.isEmpty = _chunkUDJDDKGYjs.isEmpty; exports.isEndNode = _chunkUDJDDKGYjs.isEndNode; exports.isFlowDefinition = isFlowDefinition; exports.isFlowPublished = isFlowPublished; exports.isFlowsTab = isFlowsTab; exports.isForbiddenError = _chunkUDJDDKGYjs.isForbiddenError; exports.isFormNode = _chunkUDJDDKGYjs.isFormNode; exports.isFormTab = isFormTab; exports.isInstanceEvent = _chunkUDJDDKGYjs.isInstanceEvent; exports.isInstanceTerminal = _chunkUDJDDKGYjs.isInstanceTerminal; exports.isInstanceWaiting = _chunkUDJDDKGYjs.isInstanceWaiting; exports.isInverseTableTab = isInverseTableTab; exports.isLabelExpression = _chunkUDJDDKGYjs.isLabelExpression; exports.isNoValueOperator = isNoValueOperator; exports.isNodeEvent = _chunkUDJDDKGYjs.isNodeEvent; exports.isNotEmpty = _chunkUDJDDKGYjs.isNotEmpty; exports.isNotFoundError = _chunkUDJDDKGYjs.isNotFoundError; exports.isNotesTab = isNotesTab; exports.isParticipationEvent = _chunkUDJDDKGYjs.isParticipationEvent; exports.isPinCodeAuth = _chunkUDJDDKGYjs.isPinCodeAuth; exports.isProtectedResourceError = _chunkUDJDDKGYjs.isProtectedResourceError; exports.isRecordComplete = _chunkUDJDDKGYjs.isRecordComplete; exports.isSchemaError = _chunkUDJDDKGYjs.isSchemaError; exports.isSignedLinkAuth = _chunkUDJDDKGYjs.isSignedLinkAuth; exports.isSimpleFormNode = _chunkUDJDDKGYjs.isSimpleFormNode; exports.isStartNode = _chunkUDJDDKGYjs.isStartNode; exports.isSystemAttribute = _chunkUDJDDKGYjs.isSystemAttribute; exports.isSystemAttributeObject = _chunkUDJDDKGYjs.isSystemAttributeObject; exports.isSystemFlow = isSystemFlow; exports.isSystemWorkflow = _chunkUDJDDKGYjs.isSystemWorkflow; exports.isTableTab = isTableTab; exports.isUniversalRelation = _chunkUDJDDKGYjs.isUniversalRelation; exports.isValidationError = _chunkUDJDDKGYjs.isValidationError; exports.isWorkflowDefinition = _chunkUDJDDKGYjs.isWorkflowDefinition; exports.isWorkflowPublished = _chunkUDJDDKGYjs.isWorkflowPublished; exports.location = _chunkUDJDDKGYjs.location; exports.locationConfigSchema = _chunkUDJDDKGYjs.locationConfigSchema; exports.mergeFormToSlot = _chunkUDJDDKGYjs.mergeFormToSlot; exports.mergeWithDefaults = _chunkUDJDDKGYjs.mergeWithDefaults; exports.multiselect = _chunkUDJDDKGYjs.multiselect; exports.multiselectConfigSchema = _chunkUDJDDKGYjs.multiselectConfigSchema; exports.neq = _chunkUDJDDKGYjs.neq; exports.notesPolicy = _chunkUDJDDKGYjs.notesPolicy; exports.number = _chunkUDJDDKGYjs.number; exports.numberConfigSchema = _chunkUDJDDKGYjs.numberConfigSchema; exports.object = _chunkUDJDDKGYjs.object; exports.or = _chunkUDJDDKGYjs.or; exports.parseAttributeConfig = _chunkUDJDDKGYjs.parseAttributeConfig; exports.parsePath = _chunkUDJDDKGYjs.parsePath; exports.pathHasManyCardinality = _chunkUDJDDKGYjs.pathHasManyCardinality; exports.phone = _chunkUDJDDKGYjs.phone; exports.phoneConfigSchema = _chunkUDJDDKGYjs.phoneConfigSchema; exports.rating = _chunkUDJDDKGYjs.rating; exports.ratingConfigSchema = _chunkUDJDDKGYjs.ratingConfigSchema; exports.registry = _chunkUDJDDKGYjs.registry; exports.relation = _chunkUDJDDKGYjs.relation; exports.relationConfigSchema = _chunkUDJDDKGYjs.relationConfigSchema; exports.renderLabelExpression = _chunkUDJDDKGYjs.renderLabelExpression; exports.resolveMultiplePaths = _chunkUDJDDKGYjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkUDJDDKGYjs.resolveSingleValue; exports.richtext = _chunkUDJDDKGYjs.richtext; exports.richtextConfigSchema = _chunkUDJDDKGYjs.richtextConfigSchema; exports.rollup = _chunkUDJDDKGYjs.rollup; exports.rollupConfigSchema = _chunkUDJDDKGYjs.rollupConfigSchema; exports.runWithContext = _chunkUDJDDKGYjs.runWithContext; exports.safeParseAttributeConfig = _chunkUDJDDKGYjs.safeParseAttributeConfig; exports.select = _chunkUDJDDKGYjs.select; exports.selectConfigSchema = _chunkUDJDDKGYjs.selectConfigSchema; exports.setContextValue = _chunkUDJDDKGYjs.setContextValue; exports.status = _chunkUDJDDKGYjs.status; exports.statusConfigSchema = _chunkUDJDDKGYjs.statusConfigSchema; exports.success = _chunkUDJDDKGYjs.success; exports.syncAll = _chunkUDJDDKGYjs.syncAll; exports.syncNativeObjects = _chunkUDJDDKGYjs.syncNativeObjects; exports.syncNativeViews = _chunkUDJDDKGYjs.syncNativeViews; exports.text = _chunkUDJDDKGYjs.text; exports.textConfigSchema = _chunkUDJDDKGYjs.textConfigSchema; exports.textarea = _chunkUDJDDKGYjs.textarea; exports.textareaConfigSchema = _chunkUDJDDKGYjs.textareaConfigSchema; exports.toAdvancedFilterState = toAdvancedFilterState; exports.toSimpleFilterState = toSimpleFilterState; exports.traversePath = _chunkUDJDDKGYjs.traversePath; exports.user = _chunkUDJDDKGYjs.user; exports.userConfigSchema = _chunkUDJDDKGYjs.userConfigSchema; exports.validateAttribute = _chunkUDJDDKGYjs.validateAttribute; exports.validateAttributeConfig = _chunkUDJDDKGYjs.validateAttributeConfig; exports.validateDraft = _chunkUDJDDKGYjs.validateDraft; exports.validateDraftOrThrow = _chunkUDJDDKGYjs.validateDraftOrThrow; exports.validateFormulaExpression = _chunkUDJDDKGYjs.validateFormulaExpression; exports.validateObject = _chunkUDJDDKGYjs.validateObject; exports.validateObjectOrThrow = _chunkUDJDDKGYjs.validateObjectOrThrow; exports.validatePath = _chunkUDJDDKGYjs.validatePath; exports.verifyNativeObjectsSync = _chunkUDJDDKGYjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkUDJDDKGYjs.verifyNativeViewsSync; exports.view = _chunkUDJDDKGYjs.view; exports.viewRegistry = viewRegistry; exports.wait = _chunkUDJDDKGYjs.wait; exports.withTenantContext = _chunkUDJDDKGYjs.withTenantContext; exports.workflow = _chunkUDJDDKGYjs.workflow;
|