@ai-matrx/records 0.7.2 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +50 -0
- package/dist/core/index.cjs +353 -25
- package/dist/core/index.cjs.map +1 -1
- package/dist/core/index.d.cts +177 -4
- package/dist/core/index.d.ts +177 -4
- package/dist/core/index.js +353 -25
- package/dist/core/index.js.map +1 -1
- package/dist/index.cjs +65 -22
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +451 -22
- package/dist/index.d.ts +451 -22
- package/dist/index.js +65 -22
- package/dist/index.js.map +1 -1
- package/dist/react/index.cjs +428 -25
- package/dist/react/index.cjs.map +1 -1
- package/dist/react/index.d.cts +667 -23
- package/dist/react/index.d.ts +667 -23
- package/dist/react/index.js +428 -25
- package/dist/react/index.js.map +1 -1
- package/package.json +1 -1
package/dist/core/index.js
CHANGED
|
@@ -81,6 +81,11 @@ function highestLevel(left, right) {
|
|
|
81
81
|
return ORDINAL[left] >= ORDINAL[right] ? left : right;
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
+
// src/rule.ts
|
|
85
|
+
function publicFormPath(formId) {
|
|
86
|
+
return `/f/${formId}`;
|
|
87
|
+
}
|
|
88
|
+
|
|
84
89
|
// src/aggregate.ts
|
|
85
90
|
function measureKey(measure) {
|
|
86
91
|
return measure.op === "count" ? "count" : `${measure.op}_${measure.key ?? ""}`;
|
|
@@ -184,6 +189,8 @@ var STORE_DOORS = [
|
|
|
184
189
|
{ name: "assert_client_may_change", args: "p_organization_id uuid, p_subject_id uuid, p_door text, p_required permission_level DEFAULT 'editor'::permission_level, p_subject_word text DEFAULT 'record'::text", returns: "void", security: "invoker" },
|
|
185
190
|
{ name: "assert_client_may_open", args: "p_organization_id uuid, p_subject_id uuid, p_door text, p_required permission_level DEFAULT 'viewer'::permission_level, p_subject_word text DEFAULT 'record'::text", returns: "void", security: "invoker" },
|
|
186
191
|
{ name: "assert_client_may_reach", args: "p_organization_id uuid, p_door text", returns: "void", security: "invoker" },
|
|
192
|
+
{ name: "assert_entity_door", args: "p_organization_id uuid, p_door text", returns: "void", security: "definer" },
|
|
193
|
+
{ name: "assert_entity_is_organization_scoped", args: "p_token text, p_label text, p_scoped boolean", returns: "void", security: "invoker" },
|
|
187
194
|
{ name: "assert_may_know_table", args: "p_organization_id uuid, p_table_id uuid, p_door text", returns: "void", security: "invoker" },
|
|
188
195
|
{ name: "assert_organization_admin", args: "p_organization_id uuid, p_door text, p_what text", returns: "void", security: "invoker" },
|
|
189
196
|
{ name: "assert_organization_wall", args: "p_kind text, p_organization_id uuid, p_row jsonb", returns: "void", security: "invoker" },
|
|
@@ -213,11 +220,14 @@ var STORE_DOORS = [
|
|
|
213
220
|
{ name: "doc_format_value", args: "p_field_data jsonb, p_value jsonb", returns: "text", security: "invoker" },
|
|
214
221
|
{ name: "doc_render_body", args: "p_organization_id uuid, p_template_id uuid, p_record_id uuid", returns: "text", security: "invoker" },
|
|
215
222
|
{ name: "doc_render_document", args: "p_organization_id uuid, p_template_id uuid, p_record_id uuid", returns: "uuid", security: "definer" },
|
|
223
|
+
{ name: "doc_render_read", args: "p_organization_id uuid, p_render_id uuid", returns: "jsonb", security: "definer" },
|
|
216
224
|
{ name: "doc_render_write", args: "p_organization_id uuid, p_template_id uuid, p_record_id uuid, p_table_id uuid, p_template_version integer, p_body text, p_content_hash text", returns: "uuid", security: "definer" },
|
|
217
225
|
{ name: "doc_sign", args: "p_organization_id uuid, p_render_id uuid, p_field_key text, p_signer_name text, p_signer_user_id uuid DEFAULT NULL::uuid", returns: "uuid", security: "definer" },
|
|
218
226
|
{ name: "doc_signature_field_ok", args: "p_field_data jsonb", returns: "boolean", security: "invoker" },
|
|
219
227
|
{ name: "doc_signature_intact", args: "p_organization_id uuid, p_signature_id uuid", returns: "jsonb", security: "invoker" },
|
|
228
|
+
{ name: "doc_signature_read", args: "p_organization_id uuid, p_signature_id uuid", returns: "jsonb", security: "definer" },
|
|
220
229
|
{ name: "doc_signature_write", args: "p_organization_id uuid, p_render_id uuid, p_record_id uuid, p_field_key text, p_signer_name text, p_signer_user_id uuid, p_document_hash text, p_document_version integer", returns: "uuid", security: "definer" },
|
|
230
|
+
{ name: "doc_template_read", args: "p_organization_id uuid, p_template_id uuid", returns: "jsonb", security: "definer" },
|
|
221
231
|
{ name: "doc_template_save", args: "p_organization_id uuid, p_table_id uuid, p_name text, p_body text, p_template_id uuid DEFAULT NULL::uuid", returns: "uuid", security: "definer" },
|
|
222
232
|
{ name: "doc_token_pattern", args: "", returns: "text", security: "invoker" },
|
|
223
233
|
{ name: "doc_tokens", args: "p_body text", returns: "TABLE(ordinal integer, raw text, field_id uuid)", security: "invoker" },
|
|
@@ -226,6 +236,15 @@ var STORE_DOORS = [
|
|
|
226
236
|
{ name: "doors_not_deciding_the_record", args: "", returns: "TABLE(function_name text, identity_args text, why text)", security: "invoker" },
|
|
227
237
|
{ name: "doors_not_on_one_ladder", args: "", returns: "TABLE(function_name text, identity_args text, why text)", security: "invoker" },
|
|
228
238
|
{ name: "effective_level", args: "p_user_id uuid, p_organization_id uuid, p_id uuid, p_type text DEFAULT 'record'::text", returns: "permission_level", security: "definer" },
|
|
239
|
+
{ name: "entity_field_declare", args: "p_organization_id uuid, p_token text, p_spec jsonb", returns: "uuid", security: "definer" },
|
|
240
|
+
{ name: "entity_field_retire", args: "p_organization_id uuid, p_field_id uuid", returns: "uuid", security: "definer" },
|
|
241
|
+
{ name: "entity_field_rights", args: "p_organization_id uuid, p_token text", returns: "jsonb", security: "definer" },
|
|
242
|
+
{ name: "entity_field_update", args: "p_organization_id uuid, p_field_id uuid, p_patch jsonb", returns: "uuid", security: "definer" },
|
|
243
|
+
{ name: "entity_fields", args: "p_organization_id uuid, p_token text", returns: "SETOF custom.record", security: "definer" },
|
|
244
|
+
{ name: "entity_record_read", args: "p_organization_id uuid, p_token text, p_record_id uuid", returns: "jsonb", security: "invoker" },
|
|
245
|
+
{ name: "entity_records_find", args: "p_organization_id uuid, p_token text, p_key text, p_value jsonb DEFAULT NULL::jsonb, p_limit integer DEFAULT 50, p_offset integer DEFAULT 0", returns: "jsonb", security: "invoker" },
|
|
246
|
+
{ name: "entity_table", args: "p_token text", returns: "TABLE(token text, schema_name text, table_name text, type text, title_column text, label text, has_organization boolean, has_deleted_at boolean)", security: "invoker" },
|
|
247
|
+
{ name: "entity_value_write", args: "p_organization_id uuid, p_token text, p_record_id uuid, p_patch jsonb", returns: "jsonb", security: "invoker" },
|
|
229
248
|
{ name: "export_records", args: "p_organization_id uuid, p_table_id uuid, p_limit integer DEFAULT 1000", returns: "TABLE(id uuid, document jsonb)", security: "invoker" },
|
|
230
249
|
{ name: "external_foreign_table_findings", args: "", returns: "SETOF text", security: "definer" },
|
|
231
250
|
{ name: "external_history_event", args: "p_organization_id uuid, p_link_id uuid, p_operation text", returns: "bigint", security: "definer" },
|
|
@@ -245,6 +264,12 @@ var STORE_DOORS = [
|
|
|
245
264
|
{ name: "field_update", args: "p_organization_id uuid, p_field_id uuid, p_patch jsonb", returns: "uuid", security: "definer" },
|
|
246
265
|
{ name: "field_value_convert", args: "p_to jsonb, p_value jsonb", returns: "jsonb", security: "invoker" },
|
|
247
266
|
{ name: "file_kernel_id", args: "", returns: "uuid", security: "invoker" },
|
|
267
|
+
{ name: "form_declare", args: "p_organization_id uuid, p_table_id uuid, p_title text, p_questions jsonb, p_presentation jsonb DEFAULT '{}'::jsonb, p_submission_cap integer DEFAULT NULL::integer, p_quarantine_rule_id uuid DEFAULT NULL::uuid, p_notify_rule_id uuid DEFAULT NULL::uuid, p_form_id uuid DEFAULT NULL::uuid, p_slug text DEFAULT NULL::text", returns: "uuid", security: "definer" },
|
|
268
|
+
{ name: "form_notify", args: "p_organization_id uuid, p_form_id uuid, p_record_id uuid, p_submission_id uuid", returns: "uuid", security: "invoker" },
|
|
269
|
+
{ name: "form_public", args: "p_form_id uuid", returns: "TABLE(form_id uuid, organization_id uuid, table_id uuid, title text, presentation jsonb, fields jsonb, honeypot_key text, state text, message text)", security: "definer" },
|
|
270
|
+
{ name: "form_slug", args: "p_organization_id uuid, p_title text, p_form_id uuid DEFAULT NULL::uuid", returns: "text", security: "invoker" },
|
|
271
|
+
{ name: "form_submit", args: "p_form_id uuid, p_origin text, p_payload jsonb, p_bucket text, p_honeypot text DEFAULT NULL::text, p_client_key text DEFAULT NULL::text", returns: "TABLE(submission_id uuid, record_id uuid, state text, message text)", security: "definer" },
|
|
272
|
+
{ name: "forms", args: "p_organization_id uuid, p_table_id uuid DEFAULT NULL::uuid", returns: "TABLE(form_id uuid, table_id uuid, title text, slug text, published_at timestamp with time zone, closed_at timestamp with time zone, submission_cap integer, responses bigint, in_table bigint, held bigint, rejected bigint, state text, quarantine_rule_id uuid, notify_rule_id uuid, presentation jsonb)", security: "definer" },
|
|
248
273
|
{ name: "formula_value", args: "p_organization_id uuid, p_record_id uuid, p_field_data jsonb, p_values jsonb DEFAULT NULL::jsonb", returns: "jsonb", security: "invoker" },
|
|
249
274
|
{ name: "guard_refusals_are_complete", args: "", returns: "TABLE(guard text, said text)", security: "invoker" },
|
|
250
275
|
{ name: "has_visibility", args: "p_user_id uuid, p_type text, p_id uuid, p_required permission_level DEFAULT 'viewer'::permission_level", returns: "boolean", security: "definer" },
|
|
@@ -297,6 +322,8 @@ var STORE_DOORS = [
|
|
|
297
322
|
{ name: "migrations", args: "p_organization_id uuid, p_target_id uuid DEFAULT NULL::uuid, p_limit integer DEFAULT 100", returns: "TABLE(id uuid, verb text, target_kind text, target_id uuid, note text, applied_at timestamp with time zone, applied_by uuid, undone_at timestamp with time zone)", security: "definer" },
|
|
298
323
|
{ name: "my_level", args: "p_organization_id uuid, p_id uuid, p_type text DEFAULT 'record'::text", returns: "permission_level", security: "definer" },
|
|
299
324
|
{ name: "my_levels", args: "p_organization_id uuid, p_ids jsonb, p_type text DEFAULT 'record'::text", returns: "TABLE(id uuid, level permission_level)", security: "definer" },
|
|
325
|
+
{ name: "organization_clear", args: "p_organization_id uuid, p_confirm text, p_and_destroy boolean DEFAULT false", returns: "jsonb", security: "definer" },
|
|
326
|
+
{ name: "organization_contents", args: "p_organization_id uuid", returns: "jsonb", security: "definer" },
|
|
300
327
|
{ name: "organization_kernel_id", args: "", returns: "uuid", security: "invoker" },
|
|
301
328
|
{ name: "organization_references", args: "p_kind text, p_organization_id uuid, p_row jsonb", returns: "TABLE(site text, what text, ref_id uuid, openable boolean)", security: "invoker" },
|
|
302
329
|
{ name: "owning_table", args: "p_organization_id uuid, p_record_id uuid", returns: "uuid", security: "invoker" },
|
|
@@ -361,6 +388,7 @@ var STORE_DOORS = [
|
|
|
361
388
|
{ name: "record_values_versioned", args: "p_organization_id uuid, p_record_id uuid", returns: "TABLE(field_key text, field_id uuid, value jsonb, value_version integer, source jsonb, absent_reason text, actor text, on_behalf_of text, written_at timestamp with time zone, alternates jsonb)", security: "definer" },
|
|
362
389
|
{ name: "record_write", args: "p_organization_id uuid, p_table_id uuid, p_data jsonb", returns: "uuid", security: "definer" },
|
|
363
390
|
{ name: "relation_carry", args: "p_organization_id uuid, p_container_id uuid, p_item_id uuid", returns: "uuid", security: "definer" },
|
|
391
|
+
{ name: "relation_edges_withdraw", args: "p_organization_id uuid, p_field_ids uuid[], p_why text", returns: "integer", security: "definer" },
|
|
364
392
|
{ name: "relation_own", args: "p_organization_id uuid, p_owner_id uuid, p_target_id uuid", returns: "uuid", security: "definer" },
|
|
365
393
|
{ name: "relation_target_card", args: "p_organization_id uuid, p_record_id uuid, p_via_key text DEFAULT NULL::text", returns: "TABLE(target_id uuid, target_organization_id uuid, is_foreign boolean, masked boolean, reader_level permission_level, card jsonb, why text)", security: "definer" },
|
|
366
394
|
{ name: "relation_target_external", args: "p_connection_token text, p_external_table text, p_external_key text", returns: "jsonb", security: "definer" },
|
|
@@ -375,6 +403,7 @@ var STORE_DOORS = [
|
|
|
375
403
|
{ name: "rollup_value", args: "p_organization_id uuid, p_record_id uuid, p_field_data jsonb", returns: "jsonb", security: "invoker" },
|
|
376
404
|
{ name: "rule_applies", args: "p_organization_id uuid, p_rule_id uuid, p_record_id uuid", returns: "jsonb", security: "invoker" },
|
|
377
405
|
{ name: "rule_context", args: "p_organization_id uuid, p_record_id uuid", returns: "jsonb", security: "invoker" },
|
|
406
|
+
{ name: "rule_declare", args: "p_organization_id uuid, p_spec jsonb, p_rule_id uuid DEFAULT NULL::uuid", returns: "uuid", security: "definer" },
|
|
378
407
|
{ name: "rule_dependency_edges", args: "p_organization_id uuid, p_row custom.record DEFAULT NULL::custom.record", returns: "TABLE(needs text, needed text)", security: "invoker" },
|
|
379
408
|
{ name: "rule_eval", args: "p_organization_id uuid, p_expr jsonb, p_values jsonb, p_context jsonb DEFAULT '{}'::jsonb", returns: "jsonb", security: "invoker" },
|
|
380
409
|
{ name: "rule_field_key", args: "p_organization_id uuid, p_field_id uuid", returns: "text", security: "invoker" },
|
|
@@ -435,24 +464,36 @@ var STORE_DOORS = [
|
|
|
435
464
|
{ name: "visible_record_ids", args: "p_user_id uuid, p_required permission_level DEFAULT 'viewer'::permission_level", returns: "TABLE(id uuid)", security: "definer" },
|
|
436
465
|
{ name: "visible_set", args: "p_user uuid, p_organization_id uuid, p_table_id uuid, p_required permission_level DEFAULT 'viewer'::permission_level, OUT o_all_visible boolean, OUT o_true_visibility platform.visibility[], OUT o_granted_all uuid[], OUT o_granted_visible uuid[], OUT o_carried_visible uuid[], OUT o_ladder_calls integer, OUT o_fallback boolean, OUT o_note text", returns: "record", security: "definer" },
|
|
437
466
|
{ name: "widget_kernel_id", args: "", returns: "uuid", security: "invoker" },
|
|
467
|
+
{ name: "work_approval_approvers", args: "p_organization_id uuid, p_subject_id uuid, p_approver_id uuid DEFAULT NULL::uuid", returns: "TABLE(user_id uuid, name text, why text)", security: "definer" },
|
|
468
|
+
{ name: "work_approval_decide", args: "p_organization_id uuid, p_approval_id uuid, p_approve boolean, p_note text DEFAULT NULL::text", returns: "jsonb", security: "definer" },
|
|
469
|
+
{ name: "work_approval_may_decide", args: "p_organization_id uuid, p_approval_id uuid", returns: "boolean", security: "definer" },
|
|
470
|
+
{ name: "work_approval_read", args: "p_organization_id uuid, p_approval_id uuid", returns: "jsonb", security: "definer" },
|
|
471
|
+
{ name: "work_approval_request", args: "p_organization_id uuid, p_subject_id uuid, p_change jsonb, p_note text DEFAULT NULL::text, p_approver_id uuid DEFAULT NULL::uuid, p_origin text DEFAULT 'person'::text, p_conversation_id uuid DEFAULT NULL::uuid", returns: "jsonb", security: "definer" },
|
|
472
|
+
{ name: "work_assign", args: "p_organization_id uuid, p_record_id uuid, p_assignee_user_id uuid, p_due_date timestamp with time zone DEFAULT NULL::timestamp with time zone, p_clear_due boolean DEFAULT false", returns: "jsonb", security: "definer" },
|
|
438
473
|
{ name: "work_assignment_fields", args: "p_options_table_id uuid DEFAULT NULL::uuid", returns: "TABLE(key text, label text, spec jsonb)", security: "invoker" },
|
|
439
|
-
{ name: "work_has_assignment", args: "p_organization_id uuid, p_table_id uuid", returns: "boolean", security: "
|
|
440
|
-
{ name: "
|
|
474
|
+
{ name: "work_has_assignment", args: "p_organization_id uuid, p_table_id uuid", returns: "boolean", security: "definer" },
|
|
475
|
+
{ name: "work_inbox", args: "p_organization_id uuid, p_limit integer DEFAULT 50, p_offset integer DEFAULT 0, p_include_decided boolean DEFAULT false", returns: "TABLE(item_id uuid, kind text, origin text, title text, subject_id uuid, subject_kind text, summary text, state text, due_on timestamp with time zone, due_state text, actionable boolean, requested_by uuid, requested_by_name text, at timestamp with time zone)", security: "definer" },
|
|
476
|
+
{ name: "work_instantiation_shape", args: "p_organization_id uuid, p_instantiation_id uuid", returns: "jsonb", security: "definer" },
|
|
477
|
+
{ name: "work_list", args: "p_organization_id uuid, p_flavour text DEFAULT 'mine'::text, p_include_finished boolean DEFAULT false, p_limit integer DEFAULT 100, p_offset integer DEFAULT 0", returns: "TABLE(record_id uuid, table_id uuid, table_name text, title text, assignee_id uuid, assignee_name text, assignee_user_id uuid, due_on timestamp with time zone, due_state text, status text, terminal boolean, assigned_by uuid, updated_at timestamp with time zone)", security: "definer" },
|
|
478
|
+
{ name: "work_person", args: "p_organization_id uuid, p_user_id uuid, p_create boolean DEFAULT true", returns: "uuid", security: "definer" },
|
|
479
|
+
{ name: "work_record_states", args: "p_organization_id uuid, p_record_id uuid", returns: "TABLE(state_id uuid, name text, sort integer, terminal boolean, is_current boolean, allowed boolean, refusal text)", security: "definer" },
|
|
441
480
|
{ name: "work_relation_kinds", args: "", returns: "TABLE(kind text, available boolean, why text)", security: "invoker" },
|
|
442
|
-
{ name: "
|
|
443
|
-
{ name: "
|
|
444
|
-
{ name: "
|
|
481
|
+
{ name: "work_set_state", args: "p_organization_id uuid, p_record_id uuid, p_state_id uuid", returns: "jsonb", security: "definer" },
|
|
482
|
+
{ name: "work_slot_expire", args: "p_organization_id uuid, p_table_id uuid", returns: "integer", security: "definer" },
|
|
483
|
+
{ name: "work_slot_hold", args: "p_organization_id uuid, p_table_id uuid, p_slot_key text, p_holder text, p_ttl interval DEFAULT '00:15:00'::interval", returns: "jsonb", security: "definer" },
|
|
484
|
+
{ name: "work_slot_holds", args: "p_organization_id uuid, p_table_id uuid", returns: "TABLE(hold_id uuid, slot_key text, holder text, expires_at timestamp with time zone, expired boolean)", security: "definer" },
|
|
445
485
|
{ name: "work_slot_index_name", args: "p_table_id uuid", returns: "text", security: "invoker" },
|
|
446
|
-
{ name: "work_slot_release", args: "p_organization_id uuid, p_hold_id uuid", returns: "boolean", security: "
|
|
447
|
-
{ name: "work_slots_declare", args: "p_organization_id uuid, p_name text, p_slug text, p_home_id uuid DEFAULT NULL::uuid", returns: "jsonb", security: "
|
|
486
|
+
{ name: "work_slot_release", args: "p_organization_id uuid, p_hold_id uuid", returns: "boolean", security: "definer" },
|
|
487
|
+
{ name: "work_slots_declare", args: "p_organization_id uuid, p_name text, p_slug text, p_home_id uuid DEFAULT NULL::uuid", returns: "jsonb", security: "definer" },
|
|
448
488
|
{ name: "work_states", args: "", returns: "TABLE(sort integer, name text, terminal boolean, next text[])", security: "invoker" },
|
|
449
|
-
{ name: "work_take_assignment", args: "p_organization_id uuid, p_table_id uuid", returns: "jsonb", security: "
|
|
450
|
-
{ name: "work_template_declare", args: "p_organization_id uuid, p_name text, p_graph jsonb", returns: "uuid", security: "
|
|
451
|
-
{ name: "work_template_instantiate", args: "p_organization_id uuid, p_template_id uuid, p_overrides jsonb DEFAULT '{}'::jsonb", returns: "jsonb", security: "
|
|
489
|
+
{ name: "work_take_assignment", args: "p_organization_id uuid, p_table_id uuid", returns: "jsonb", security: "definer" },
|
|
490
|
+
{ name: "work_template_declare", args: "p_organization_id uuid, p_name text, p_graph jsonb", returns: "uuid", security: "definer" },
|
|
491
|
+
{ name: "work_template_instantiate", args: "p_organization_id uuid, p_template_id uuid, p_overrides jsonb DEFAULT '{}'::jsonb", returns: "jsonb", security: "definer" },
|
|
452
492
|
{ name: "work_template_refusal", args: "p_graph jsonb", returns: "text", security: "invoker" },
|
|
453
|
-
{ name: "work_template_shape", args: "p_organization_id uuid, p_template_id uuid", returns: "jsonb", security: "
|
|
454
|
-
{ name: "
|
|
455
|
-
{ name: "
|
|
493
|
+
{ name: "work_template_shape", args: "p_organization_id uuid, p_template_id uuid", returns: "jsonb", security: "definer" },
|
|
494
|
+
{ name: "work_templates", args: "p_organization_id uuid, p_limit integer DEFAULT 100", returns: "TABLE(template_id uuid, name text, nodes integer, relations integer, created_at timestamp with time zone)", security: "definer" },
|
|
495
|
+
{ name: "work_transition_refusal", args: "p_organization_id uuid, p_from_state_id uuid, p_to_state_id uuid", returns: "text", security: "definer" },
|
|
496
|
+
{ name: "work_whose_turn", args: "p_organization_id uuid, p_table_id uuid, p_include_finished boolean DEFAULT false", returns: "TABLE(record_id uuid, title text, assignee_id uuid, turn text, due_on timestamp with time zone, state text, status text, terminal boolean)", security: "definer" }
|
|
456
497
|
];
|
|
457
498
|
var STORE_KNOBS = [
|
|
458
499
|
{ key: "accessible_entity_ids_guard", value: "true", type: "boolean" },
|
|
@@ -492,16 +533,17 @@ var STORE_KNOBS = [
|
|
|
492
533
|
{ key: "world_publish_enabled", value: "false", type: "boolean" }
|
|
493
534
|
];
|
|
494
535
|
var STORE_REFUSAL_CODES = [
|
|
495
|
-
{ code: "02000", raised_by: "doc_render_body,doc_render_document,doc_sign,doc_signature_intact,doc_template_save,external_history_event,external_rows,external_stub_upsert,external_writes_set,migrate_delete,migrate_extract_parent,migrate_merge,migrate_rename,migrate_reparent,migrate_retype,migrate_split,migrate_undo,read_record,record_delete,record_restore,record_update,relation_uncarry,share_access,share_grant,share_lane_set,share_people,share_revoke,visibility_as_of" },
|
|
496
|
-
{ code: "0A000", raised_by: "external_rows,external_source_declare,external_write_through,promote_field,promoted_index_expr,promoted_query_sql,promoted_read,rule_eval,work_slots_declare" },
|
|
497
|
-
{ code: "22004", raised_by: "_value_envelope,actor_word,agg_assert_key,agg_sql,anon_capture,anon_token_issue,anon_write,assert_client_may_reach,doc_render_write,doc_sign,doc_signature_write,doc_template_save,external_history_event,external_rows,external_source_declare,external_stub_upsert,external_write_through,external_writes_set,home_add,io_comment_write,io_import_open,io_outbox_drain,io_restore,migrate_purge,migrate_split,migrate_undo,query_across_homes,query_by_coordinates,query_rollup,record_delete,record_reparent,record_resolve,record_restore,record_update,record_write,relation_carry,relation_own,share_grant,table_declare,work_template_declare" },
|
|
536
|
+
{ code: "02000", raised_by: "doc_render_body,doc_render_document,doc_render_read,doc_sign,doc_signature_intact,doc_signature_read,doc_template_read,doc_template_save,entity_field_retire,entity_field_update,entity_record_read,entity_value_write,external_history_event,external_rows,external_stub_upsert,external_writes_set,migrate_delete,migrate_extract_parent,migrate_merge,migrate_rename,migrate_reparent,migrate_retype,migrate_split,migrate_undo,organization_clear,read_record,record_delete,record_restore,record_update,relation_uncarry,share_access,share_grant,share_lane_set,share_people,share_revoke,visibility_as_of,work_approval_decide,work_approval_read,work_approval_request,work_assign,work_record_states,work_set_state" },
|
|
537
|
+
{ code: "0A000", raised_by: "external_rows,external_source_declare,external_write_through,promote_field,promoted_index_expr,promoted_query_sql,promoted_read,rule_eval,work_assign,work_slots_declare" },
|
|
538
|
+
{ code: "22004", raised_by: "_entity_custom_fields_guard,_value_envelope,actor_word,agg_assert_key,agg_sql,anon_capture,anon_token_issue,anon_write,assert_client_may_reach,doc_render_write,doc_sign,doc_signature_write,doc_template_save,external_history_event,external_rows,external_source_declare,external_stub_upsert,external_write_through,external_writes_set,form_declare,form_submit,home_add,io_comment_write,io_import_open,io_outbox_drain,io_restore,migrate_purge,migrate_split,migrate_undo,organization_clear,organization_contents,query_across_homes,query_by_coordinates,query_rollup,record_delete,record_reparent,record_resolve,record_restore,record_update,record_write,relation_carry,relation_own,rule_declare,share_grant,table_declare,work_approval_decide,work_approval_request,work_template_declare" },
|
|
498
539
|
{ code: "22012", raised_by: "rule_eval" },
|
|
499
|
-
{ code: "22023", raised_by: "_value_envelope,_work_shape_guard,actor_word,agg_assert_key,agg_sql,anon_token_issue,containment_parent,doc_render_body,doc_render_write,doc_signature_write,external_history_event,external_source_declare,external_stub_upsert,external_write_through,io_import_open,io_proposal_accept,migrate_merge,my_levels,query_by_coordinates,query_rollup,record_update,relation_carry,rule_eval,rule_members,share_grant,share_lane_set,table_rules,visibility_as_of,work_slot_hold" },
|
|
500
|
-
{ code: "23503", raised_by: "_containment_guard,_record_rule_uses,anon_publish,anon_rate_take,anon_token_issue,anon_write,assert_organization_wall,delete_rule,doc_sign,doc_template_save,home_add,io_comment_write,io_import_rows,io_proposal_accept,migrate_demote,migrate_promote,promote_field,promote_table,record_applicability,record_reparent,relation_carry,relation_own,resolve_first_match,rule_applies,rule_eval,rule_members,rule_run,work_take_assignment,work_template_instantiate" },
|
|
501
|
-
{ code: "23505", raised_by: "_unique_rule_holds,doc_sign,doc_signature_write,field_declare,home_add,io_proposal_accept,relation_carry,relation_own,share_grant,work_slot_hold" },
|
|
502
|
-
{ code: "23514", raised_by: "_containment_guard,_dated_values_guard,_derived_fields,_field_document_for,_field_shape_guard,_field_type_parity_guard,_merge_field_shape_guard,_merge_field_temporal_guard,_promoted_field_cap_guard,_record_rule_uses,_resolve_choice_words,_rule_shape_guard,_rule_topology_guard,_store_relation_edge_names_its_field,_table_shape_guard,_value_envelope,_work_shape_guard,doc_sign,doc_signature_write,doc_template_save,field_declare,field_retire,field_update,home_add,migrate_merge,relation_carry,relation_own,validate_value_envelope,validate_values,work_slots_declare,work_take_assignment,work_template_instantiate" },
|
|
540
|
+
{ code: "22023", raised_by: "_entity_custom_fields_guard,_value_envelope,_work_shape_guard,actor_word,agg_assert_key,agg_sql,anon_token_issue,containment_parent,doc_render_body,doc_render_write,doc_signature_write,entity_value_write,external_history_event,external_source_declare,external_stub_upsert,external_write_through,io_import_open,io_proposal_accept,migrate_merge,my_levels,organization_clear,query_by_coordinates,query_rollup,record_update,relation_carry,rule_eval,rule_members,share_grant,share_lane_set,table_rules,visibility_as_of,work_approval_request,work_list,work_slot_hold" },
|
|
541
|
+
{ code: "23503", raised_by: "_containment_guard,_field_document_for,_record_rule_uses,anon_publish,anon_rate_take,anon_token_issue,anon_write,assert_organization_wall,delete_rule,doc_sign,doc_template_save,form_declare,form_submit,home_add,io_comment_write,io_import_rows,io_proposal_accept,migrate_demote,migrate_promote,promote_field,promote_table,record_applicability,record_reparent,relation_carry,relation_own,resolve_first_match,rule_applies,rule_declare,rule_eval,rule_members,rule_run,work_set_state,work_take_assignment,work_template_instantiate" },
|
|
542
|
+
{ code: "23505", raised_by: "_unique_rule_holds,doc_sign,doc_signature_write,entity_field_declare,field_declare,home_add,io_proposal_accept,relation_carry,relation_own,share_grant,work_approval_decide,work_slot_hold" },
|
|
543
|
+
{ code: "23514", raised_by: "_containment_guard,_dated_values_guard,_derived_fields,_entity_custom_fields_guard,_field_document_for,_field_shape_guard,_field_type_parity_guard,_merge_field_shape_guard,_merge_field_temporal_guard,_promoted_field_cap_guard,_record_rule_uses,_resolve_choice_words,_rule_shape_guard,_rule_topology_guard,_store_relation_edge_names_its_field,_table_shape_guard,_value_envelope,_work_shape_guard,_workdoors_approval_guard,assert_entity_is_organization_scoped,doc_sign,doc_signature_write,doc_template_save,entity_field_declare,entity_field_retire,entity_field_update,entity_records_find,entity_table,field_declare,field_retire,field_update,home_add,migrate_merge,relation_carry,relation_own,validate_value_envelope,validate_values,work_set_state,work_slots_declare,work_take_assignment,work_template_instantiate" },
|
|
503
544
|
{ code: "40001", raised_by: "has_visibility_at" },
|
|
504
|
-
{ code: "42501", raised_by: "_doc_render_immutable,_doc_signature_immutable,_field_definition_write,_field_write_door,_rule_definition_write,_store_door,anon_capture,anon_inbound_land,anon_publish,anon_token_issue,anon_token_verify,anon_write,assert_client_may_change,assert_client_may_open,assert_client_may_reach,assert_may_know_table,assert_organization_admin,assert_store_door,external_write_through,io_comment_resolve,io_comment_write,io_restore,migrate_purge,my_levels,promote_table,query_visibility_parity,read_record,read_records,share_grant,visibility_as_of" },
|
|
545
|
+
{ code: "42501", raised_by: "_doc_render_immutable,_doc_signature_immutable,_field_definition_write,_field_write_door,_rule_definition_write,_store_door,anon_capture,anon_inbound_land,anon_publish,anon_token_issue,anon_token_verify,anon_write,assert_client_may_change,assert_client_may_open,assert_client_may_reach,assert_may_know_table,assert_organization_admin,assert_store_door,entity_field_declare,entity_field_retire,entity_field_update,entity_value_write,external_write_through,form_declare,form_submit,io_comment_resolve,io_comment_write,io_restore,migrate_purge,my_levels,organization_clear,promote_table,query_visibility_parity,read_record,read_records,share_grant,visibility_as_of,work_approval_decide,work_approval_read,work_approval_request,work_person" },
|
|
546
|
+
{ code: "42703", raised_by: "entity_table" },
|
|
505
547
|
{ code: "53400", raised_by: "anon_rate_take,delete_cascade_closure,promote_field" },
|
|
506
548
|
{ code: "54001", raised_by: "record_delete" },
|
|
507
549
|
{ code: "PT409", raised_by: "record_update" }
|
|
@@ -1611,6 +1653,24 @@ var DOORS = {
|
|
|
1611
1653
|
fieldDeclare: "field_declare",
|
|
1612
1654
|
fieldUpdate: "field_update",
|
|
1613
1655
|
fieldRetire: "field_retire",
|
|
1656
|
+
// CUSTOM FIELDS ON A STANDARD BUSINESS TABLE. Every door above is keyed by a
|
|
1657
|
+
// custom Table's uuid, and a standard table has no Table record - so until
|
|
1658
|
+
// 2026-09-20 `custom.applicable_fields(org, 'party', null)` answered `22P02
|
|
1659
|
+
// invalid input syntax for uuid` and there was no other way in. These are
|
|
1660
|
+
// keyed by the REGISTRY TOKEN instead, and they are one set for all 643
|
|
1661
|
+
// tables the registry types Entity or Detail. The three value doors are
|
|
1662
|
+
// SECURITY INVOKER in the database on purpose: the standard table's own
|
|
1663
|
+
// row-level security is what decides who may read and write its rows, and a
|
|
1664
|
+
// definer wrapper would replace it with a second access system.
|
|
1665
|
+
entityTable: "entity_table",
|
|
1666
|
+
entityFields: "entity_fields",
|
|
1667
|
+
entityFieldDeclare: "entity_field_declare",
|
|
1668
|
+
entityFieldUpdate: "entity_field_update",
|
|
1669
|
+
entityFieldRetire: "entity_field_retire",
|
|
1670
|
+
entityFieldRights: "entity_field_rights",
|
|
1671
|
+
entityRecordRead: "entity_record_read",
|
|
1672
|
+
entityValueWrite: "entity_value_write",
|
|
1673
|
+
entityRecordsFind: "entity_records_find",
|
|
1614
1674
|
tableCapacity: "table_capacity",
|
|
1615
1675
|
tableStorage: "table_storage",
|
|
1616
1676
|
promoteTable: "promote_table",
|
|
@@ -1648,6 +1708,17 @@ var DOORS = {
|
|
|
1648
1708
|
ruleMembership: "rule_membership",
|
|
1649
1709
|
ruleRun: "rule_run",
|
|
1650
1710
|
ruleEval: "rule_eval",
|
|
1711
|
+
// REC-15: the door that makes a Rule a RULE. `custom.record_write` into the
|
|
1712
|
+
// Rule kernel produces a valid Rule document carrying `data_class = 'record'`,
|
|
1713
|
+
// and every reader that goes LOOKING for a Rule looks for the class — so a
|
|
1714
|
+
// subscription written that way was invisible to DOOR-18 and nothing fired.
|
|
1715
|
+
// PRODUCTS row 1 — a form is a view on a real Table. `forms` lists an
|
|
1716
|
+
// organization's own, `formDeclare` writes one, and `anonPublish` is the one
|
|
1717
|
+
// act that opens it to people with no account. The PUBLIC pair
|
|
1718
|
+
// (`custom.form_public`, `custom.form_submit`) is deliberately absent: those
|
|
1719
|
+
// are server-lane doors and a browser never calls them.
|
|
1720
|
+
forms: "forms",
|
|
1721
|
+
formDeclare: "form_declare",
|
|
1651
1722
|
// The eighth verb (AGT-N-8): a grouped, bucketed, filtered count/sum/avg/
|
|
1652
1723
|
// min/max computed INSIDE the read door's own query, so a chart shows exactly
|
|
1653
1724
|
// the rows this person may see and never fetches the ones they may not.
|
|
@@ -1706,6 +1777,23 @@ var DOORS = {
|
|
|
1706
1777
|
workSlotRelease: "work_slot_release",
|
|
1707
1778
|
workSlotHolds: "work_slot_holds",
|
|
1708
1779
|
workSlotExpire: "work_slot_expire",
|
|
1780
|
+
// THE WORK LAYER'S OWN DOORS (lane WORK-DOORS, 2026-09-20). Until this lane
|
|
1781
|
+
// all nineteen `custom.work_*` functions were SECURITY INVOKER with no client
|
|
1782
|
+
// grant: REC-69, REC-70 and REC-71 were live in the store and unreachable
|
|
1783
|
+
// from a browser. These are the verbs a person actually uses.
|
|
1784
|
+
workPerson: "work_person",
|
|
1785
|
+
workAssign: "work_assign",
|
|
1786
|
+
workRecordStates: "work_record_states",
|
|
1787
|
+
workSetState: "work_set_state",
|
|
1788
|
+
workList: "work_list",
|
|
1789
|
+
workTemplates: "work_templates",
|
|
1790
|
+
/** THE ONE QUEUE: assignments, approvals and the agent's proposals together. */
|
|
1791
|
+
workInbox: "work_inbox",
|
|
1792
|
+
workApprovalApprovers: "work_approval_approvers",
|
|
1793
|
+
workApprovalRequest: "work_approval_request",
|
|
1794
|
+
workApprovalMayDecide: "work_approval_may_decide",
|
|
1795
|
+
workApprovalDecide: "work_approval_decide",
|
|
1796
|
+
workApprovalRead: "work_approval_read",
|
|
1709
1797
|
// Declared here BECAUSE they do not exist yet: naming them is what makes the
|
|
1710
1798
|
// absence visible to `pnpm check:store-registry` and to the suite.
|
|
1711
1799
|
metadataSearch: "metadata_search",
|
|
@@ -1737,6 +1825,14 @@ var BY_SQLSTATE = {
|
|
|
1737
1825
|
// is wrong for the shape the store holds, which is what `invalid_argument`
|
|
1738
1826
|
// already means — the store's own sentence names the value and the type.
|
|
1739
1827
|
"22P02": "invalid_argument",
|
|
1828
|
+
// 42703 — a column that is not there. The store raises it from
|
|
1829
|
+
// `custom.entity_table`, which is asked for a column by NAME, so the class is
|
|
1830
|
+
// exactly "the call named something the shape does not have": the same thing
|
|
1831
|
+
// `invalid_argument` already means, and the store's own sentence names the
|
|
1832
|
+
// column. Added 2026-09-20 (lane FORMS) because the package's live-door suite
|
|
1833
|
+
// caught it raised by a door this package did not know about — which is the
|
|
1834
|
+
// suite working, and is why the map is a census rather than a guess.
|
|
1835
|
+
"42703": "invalid_argument",
|
|
1740
1836
|
"02000": "not_found",
|
|
1741
1837
|
"23503": "missing_reference",
|
|
1742
1838
|
"23505": "already_exists",
|
|
@@ -2131,6 +2227,88 @@ function createRecordsClient(config) {
|
|
|
2131
2227
|
"fieldDeclare"
|
|
2132
2228
|
);
|
|
2133
2229
|
},
|
|
2230
|
+
async entityTable({ token }) {
|
|
2231
|
+
const answer = await callDoor(
|
|
2232
|
+
DOORS.entityTable,
|
|
2233
|
+
{ p_token: token },
|
|
2234
|
+
"entityTable"
|
|
2235
|
+
);
|
|
2236
|
+
if (!answer.ok) return err(answer.error);
|
|
2237
|
+
const row = Array.isArray(answer.data) ? answer.data[0] : answer.data;
|
|
2238
|
+
if (!row) {
|
|
2239
|
+
return err({
|
|
2240
|
+
code: "not_found",
|
|
2241
|
+
message: `The registry answered nothing for the table "${token}".`,
|
|
2242
|
+
hint: "REC-33: a standard table is named by its registry token. Nothing was read."
|
|
2243
|
+
});
|
|
2244
|
+
}
|
|
2245
|
+
return ok(row);
|
|
2246
|
+
},
|
|
2247
|
+
async entityFields({ token }) {
|
|
2248
|
+
const rows = await callDoor(
|
|
2249
|
+
DOORS.entityFields,
|
|
2250
|
+
{ p_organization_id: org, p_token: token },
|
|
2251
|
+
"entityFields"
|
|
2252
|
+
);
|
|
2253
|
+
if (!rows.ok) return err(rows.error);
|
|
2254
|
+
return ok((rows.data ?? []).map((row) => ({ id: row.id, ...row.data })));
|
|
2255
|
+
},
|
|
2256
|
+
async entityFieldDeclare({ token, spec }) {
|
|
2257
|
+
return callDoor(
|
|
2258
|
+
DOORS.entityFieldDeclare,
|
|
2259
|
+
{ p_organization_id: org, p_token: token, p_spec: spec },
|
|
2260
|
+
"entityFieldDeclare"
|
|
2261
|
+
);
|
|
2262
|
+
},
|
|
2263
|
+
async entityFieldUpdate({ field_id, patch }) {
|
|
2264
|
+
return callDoor(
|
|
2265
|
+
DOORS.entityFieldUpdate,
|
|
2266
|
+
{ p_organization_id: org, p_field_id: field_id, p_patch: patch },
|
|
2267
|
+
"entityFieldUpdate"
|
|
2268
|
+
);
|
|
2269
|
+
},
|
|
2270
|
+
async entityFieldRetire({ field_id }) {
|
|
2271
|
+
return callDoor(
|
|
2272
|
+
DOORS.entityFieldRetire,
|
|
2273
|
+
{ p_organization_id: org, p_field_id: field_id },
|
|
2274
|
+
"entityFieldRetire"
|
|
2275
|
+
);
|
|
2276
|
+
},
|
|
2277
|
+
async entityFieldRights({ token }) {
|
|
2278
|
+
return callDoor(
|
|
2279
|
+
DOORS.entityFieldRights,
|
|
2280
|
+
{ p_organization_id: org, p_token: token },
|
|
2281
|
+
"entityFieldRights"
|
|
2282
|
+
);
|
|
2283
|
+
},
|
|
2284
|
+
async entityRecordRead({ token, record_id }) {
|
|
2285
|
+
return callDoor(
|
|
2286
|
+
DOORS.entityRecordRead,
|
|
2287
|
+
{ p_organization_id: org, p_token: token, p_record_id: record_id },
|
|
2288
|
+
"entityRecordRead"
|
|
2289
|
+
);
|
|
2290
|
+
},
|
|
2291
|
+
async entityValueWrite({ token, record_id, patch }) {
|
|
2292
|
+
return callDoor(
|
|
2293
|
+
DOORS.entityValueWrite,
|
|
2294
|
+
{ p_organization_id: org, p_token: token, p_record_id: record_id, p_patch: patch },
|
|
2295
|
+
"entityValueWrite"
|
|
2296
|
+
);
|
|
2297
|
+
},
|
|
2298
|
+
async entityRecordsFind({ token, key, value, limit, offset }) {
|
|
2299
|
+
return callDoor(
|
|
2300
|
+
DOORS.entityRecordsFind,
|
|
2301
|
+
{
|
|
2302
|
+
p_organization_id: org,
|
|
2303
|
+
p_token: token,
|
|
2304
|
+
p_key: key,
|
|
2305
|
+
p_value: value === void 0 ? null : value,
|
|
2306
|
+
...limit === void 0 ? {} : { p_limit: limit },
|
|
2307
|
+
...offset === void 0 ? {} : { p_offset: offset }
|
|
2308
|
+
},
|
|
2309
|
+
"entityRecordsFind"
|
|
2310
|
+
);
|
|
2311
|
+
},
|
|
2134
2312
|
async fieldUpdate({ field_id, patch }) {
|
|
2135
2313
|
return callDoor(
|
|
2136
2314
|
DOORS.fieldUpdate,
|
|
@@ -2175,6 +2353,31 @@ function createRecordsClient(config) {
|
|
|
2175
2353
|
"ruleMembership"
|
|
2176
2354
|
);
|
|
2177
2355
|
},
|
|
2356
|
+
async forms(args) {
|
|
2357
|
+
return callDoor(
|
|
2358
|
+
DOORS.forms,
|
|
2359
|
+
{ p_organization_id: org, p_table_id: args?.table_id ?? null },
|
|
2360
|
+
"forms"
|
|
2361
|
+
);
|
|
2362
|
+
},
|
|
2363
|
+
async formDeclare(args) {
|
|
2364
|
+
return callDoor(
|
|
2365
|
+
DOORS.formDeclare,
|
|
2366
|
+
{
|
|
2367
|
+
p_organization_id: org,
|
|
2368
|
+
p_table_id: args.table_id,
|
|
2369
|
+
p_title: args.title,
|
|
2370
|
+
p_questions: args.questions,
|
|
2371
|
+
p_presentation: args.presentation ?? {},
|
|
2372
|
+
p_submission_cap: args.submission_cap ?? null,
|
|
2373
|
+
p_quarantine_rule_id: args.quarantine_rule_id ?? null,
|
|
2374
|
+
p_notify_rule_id: args.notify_rule_id ?? null,
|
|
2375
|
+
p_form_id: args.form_id ?? null,
|
|
2376
|
+
p_slug: args.slug ?? null
|
|
2377
|
+
},
|
|
2378
|
+
"formDeclare"
|
|
2379
|
+
);
|
|
2380
|
+
},
|
|
2178
2381
|
async ruleRun({ rule_id, values, context }) {
|
|
2179
2382
|
return callDoor(
|
|
2180
2383
|
DOORS.ruleRun,
|
|
@@ -2523,6 +2726,128 @@ function createRecordsClient(config) {
|
|
|
2523
2726
|
"workSlotExpire"
|
|
2524
2727
|
);
|
|
2525
2728
|
},
|
|
2729
|
+
// ── the work layer a person actually uses ────────────────────────────
|
|
2730
|
+
async workInbox(args) {
|
|
2731
|
+
return callDoor(
|
|
2732
|
+
DOORS.workInbox,
|
|
2733
|
+
{
|
|
2734
|
+
p_organization_id: org,
|
|
2735
|
+
p_limit: args?.limit ?? 50,
|
|
2736
|
+
p_offset: args?.offset ?? 0,
|
|
2737
|
+
p_include_decided: args?.includeDecided ?? false
|
|
2738
|
+
},
|
|
2739
|
+
"workInbox"
|
|
2740
|
+
);
|
|
2741
|
+
},
|
|
2742
|
+
async workList(args) {
|
|
2743
|
+
return callDoor(
|
|
2744
|
+
DOORS.workList,
|
|
2745
|
+
{
|
|
2746
|
+
p_organization_id: org,
|
|
2747
|
+
p_flavour: args?.flavour ?? "mine",
|
|
2748
|
+
p_include_finished: args?.includeFinished ?? false,
|
|
2749
|
+
p_limit: args?.limit ?? 100,
|
|
2750
|
+
p_offset: args?.offset ?? 0
|
|
2751
|
+
},
|
|
2752
|
+
"workList"
|
|
2753
|
+
);
|
|
2754
|
+
},
|
|
2755
|
+
async workAssign({ record_id, user_id = null, dueDate = null, clearDue = false }) {
|
|
2756
|
+
return callDoor(
|
|
2757
|
+
DOORS.workAssign,
|
|
2758
|
+
{
|
|
2759
|
+
p_organization_id: org,
|
|
2760
|
+
p_record_id: record_id,
|
|
2761
|
+
p_assignee_user_id: user_id,
|
|
2762
|
+
p_due_date: dueDate,
|
|
2763
|
+
p_clear_due: clearDue
|
|
2764
|
+
},
|
|
2765
|
+
"workAssign"
|
|
2766
|
+
);
|
|
2767
|
+
},
|
|
2768
|
+
async workRecordStates({ record_id }) {
|
|
2769
|
+
return callDoor(
|
|
2770
|
+
DOORS.workRecordStates,
|
|
2771
|
+
{ p_organization_id: org, p_record_id: record_id },
|
|
2772
|
+
"workRecordStates"
|
|
2773
|
+
);
|
|
2774
|
+
},
|
|
2775
|
+
async workSetState({ record_id, state_id }) {
|
|
2776
|
+
return callDoor(
|
|
2777
|
+
DOORS.workSetState,
|
|
2778
|
+
{ p_organization_id: org, p_record_id: record_id, p_state_id: state_id },
|
|
2779
|
+
"workSetState"
|
|
2780
|
+
);
|
|
2781
|
+
},
|
|
2782
|
+
async workPerson({ user_id, create = true }) {
|
|
2783
|
+
return callDoor(
|
|
2784
|
+
DOORS.workPerson,
|
|
2785
|
+
{ p_organization_id: org, p_user_id: user_id, p_create: create },
|
|
2786
|
+
"workPerson"
|
|
2787
|
+
);
|
|
2788
|
+
},
|
|
2789
|
+
async workTemplates(args) {
|
|
2790
|
+
return callDoor(
|
|
2791
|
+
DOORS.workTemplates,
|
|
2792
|
+
{ p_organization_id: org, p_limit: args?.limit ?? 100 },
|
|
2793
|
+
"workTemplates"
|
|
2794
|
+
);
|
|
2795
|
+
},
|
|
2796
|
+
async workApprovalApprovers({ subject_id, approver_id = null }) {
|
|
2797
|
+
return callDoor(
|
|
2798
|
+
DOORS.workApprovalApprovers,
|
|
2799
|
+
{ p_organization_id: org, p_subject_id: subject_id, p_approver_id: approver_id },
|
|
2800
|
+
"workApprovalApprovers"
|
|
2801
|
+
);
|
|
2802
|
+
},
|
|
2803
|
+
async workApprovalRequest({
|
|
2804
|
+
subject_id,
|
|
2805
|
+
change,
|
|
2806
|
+
note = null,
|
|
2807
|
+
approver_id = null,
|
|
2808
|
+
origin = "person",
|
|
2809
|
+
conversation_id = null
|
|
2810
|
+
}) {
|
|
2811
|
+
return callDoor(
|
|
2812
|
+
DOORS.workApprovalRequest,
|
|
2813
|
+
{
|
|
2814
|
+
p_organization_id: org,
|
|
2815
|
+
p_subject_id: subject_id,
|
|
2816
|
+
p_change: change,
|
|
2817
|
+
p_note: note,
|
|
2818
|
+
p_approver_id: approver_id,
|
|
2819
|
+
p_origin: origin,
|
|
2820
|
+
p_conversation_id: conversation_id
|
|
2821
|
+
},
|
|
2822
|
+
"workApprovalRequest"
|
|
2823
|
+
);
|
|
2824
|
+
},
|
|
2825
|
+
async workApprovalMayDecide({ approval_id }) {
|
|
2826
|
+
return callDoor(
|
|
2827
|
+
DOORS.workApprovalMayDecide,
|
|
2828
|
+
{ p_organization_id: org, p_approval_id: approval_id },
|
|
2829
|
+
"workApprovalMayDecide"
|
|
2830
|
+
);
|
|
2831
|
+
},
|
|
2832
|
+
async workApprovalDecide({ approval_id, approve, note = null }) {
|
|
2833
|
+
return callDoor(
|
|
2834
|
+
DOORS.workApprovalDecide,
|
|
2835
|
+
{
|
|
2836
|
+
p_organization_id: org,
|
|
2837
|
+
p_approval_id: approval_id,
|
|
2838
|
+
p_approve: approve,
|
|
2839
|
+
p_note: note
|
|
2840
|
+
},
|
|
2841
|
+
"workApprovalDecide"
|
|
2842
|
+
);
|
|
2843
|
+
},
|
|
2844
|
+
async workApprovalRead({ approval_id }) {
|
|
2845
|
+
return callDoor(
|
|
2846
|
+
DOORS.workApprovalRead,
|
|
2847
|
+
{ p_organization_id: org, p_approval_id: approval_id },
|
|
2848
|
+
"workApprovalRead"
|
|
2849
|
+
);
|
|
2850
|
+
},
|
|
2526
2851
|
// ── the trust doors ──────────────────────────────────────────────────
|
|
2527
2852
|
async isExternalPrincipal(args) {
|
|
2528
2853
|
return trustDoor(
|
|
@@ -2583,10 +2908,12 @@ function createRecordsClient(config) {
|
|
|
2583
2908
|
"publishToWorld"
|
|
2584
2909
|
);
|
|
2585
2910
|
},
|
|
2586
|
-
async ruleDeclare() {
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2911
|
+
async ruleDeclare({ spec, rule_id }) {
|
|
2912
|
+
return callDoor(
|
|
2913
|
+
DOORS.ruleDeclare,
|
|
2914
|
+
{ p_organization_id: org, p_spec: spec, p_rule_id: rule_id ?? null },
|
|
2915
|
+
"ruleDeclare"
|
|
2916
|
+
);
|
|
2590
2917
|
},
|
|
2591
2918
|
async metadataSearch() {
|
|
2592
2919
|
const refusal = doorAbsent(DOORS.metadataSearch);
|
|
@@ -3186,6 +3513,7 @@ export {
|
|
|
3186
3513
|
predictSizeRefusal,
|
|
3187
3514
|
predictValueRefusals,
|
|
3188
3515
|
predictWriteRefusals,
|
|
3516
|
+
publicFormPath,
|
|
3189
3517
|
staleWriteDetail,
|
|
3190
3518
|
supabaseDataSource,
|
|
3191
3519
|
toAoa
|