cxtms 1.9.253 → 1.9.254

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cxtms",
3
- "version": "1.9.253",
3
+ "version": "1.9.254",
4
4
  "description": "Schema validation package for CXTMS YAML modules",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,9 +11,30 @@
11
11
  - PackageType
12
12
  - NoteThread
13
13
  - Note
14
+ - OrganizationConnection
14
15
 
15
16
  EntityField, Tag, Attachment, Division, EquipmentType, Equipment, EquipmentStatus, PackageType, Note/NoteThread.
16
17
 
18
+ ## OrganizationConnection
19
+
20
+ Application-defined link between two regular organizations. The owner organization is distinct from the two endpoints and is the tenant in which entity workflows run.
21
+
22
+ | Field | Type | Notes |
23
+ |-------|------|-------|
24
+ | `organizationConnectionId` | `int` | PK |
25
+ | `organizationId` | `int` | Owner/workflow tenant |
26
+ | `sourceOrganizationId` | `int` | First endpoint; must be a regular organization |
27
+ | `targetOrganizationId` | `int` | Second endpoint; must be a different regular organization |
28
+ | `connectionType` | `string` | Required, application-defined, max 50 characters |
29
+ | `isEnabled` | `bool` | Defaults to true |
30
+ | `ediRoutingId` | `string?` | Reserved EDI routing ID, max 15 characters |
31
+
32
+ **GraphQL:** `organizationConnections(organizationId, filter, search, orderBy)` returns connections where the requested organization is either endpoint. System-admin-only mutations are `linkOrganizations(organizationId, sourceOrganizationId, targetOrganizationId, connectionType)` and `unlinkOrganizations(organizationConnectionId)`. A pair/type combination is unique regardless of endpoint order.
33
+
34
+ **Entity workflows:** `OrganizationConnection` supports `Added`, `Modified`, and `Deleted` at `Before` and `After` positions in the owner organization. Use `Before Deleted` to veto unlinking when application rules require it.
35
+
36
+ ---
37
+
17
38
  ## EntityField
18
39
 
19
40
  App-module field metadata used by grids, forms, filters, and entity extensions.
@@ -359,6 +359,8 @@ Polymorphic form field — renders different input types based on `type` prop.
359
359
 
360
360
  Password fields receive a stable input id from the field name unless an explicit `id` is provided. This keeps multiple password fields in the same form isolated for browser autocomplete. Use `autoComplete` when a form needs a specific password-manager hint.
361
361
 
362
+ For `type: select`, the web renderer forwards the parsed `disabled` value to the underlying select control, so both booleans and template expressions prevent opening or changing the selection.
363
+
362
364
  **Field Types:**
363
365
  | Type | Description |
364
366
  |------|-------------|