@cxtms/cx-schema 1.9.34 → 1.9.36

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/cx-schema",
3
- "version": "1.9.34",
3
+ "version": "1.9.36",
4
4
  "description": "Schema validation package for CXTMS YAML modules",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -5420,6 +5420,8 @@ type charge {
5420
5420
  salesTax: salesTax
5421
5421
  tariff: Any
5422
5422
  customValues: MapOfObject
5423
+ createdUser: user!
5424
+ updatedUser: user!
5423
5425
  }
5424
5426
 
5425
5427
  type city {
@@ -101,7 +101,7 @@ Field names as used in workflow expressions: `{{ entity.transactionNumber }}`, `
101
101
  | `rateId` | `int?` | FK to Rate |
102
102
  | `customValues` | `Dictionary` | Own customValues |
103
103
 
104
- **Navigation:** `applyToContact`, `currency`, `accountingItem`, `salesTax`, `rate`, `orders` (many-to-many)
104
+ **Navigation:** `applyToContact`, `currency`, `accountingItem`, `salesTax`, `rate`, `orders` (many-to-many), `createdUser`, `updatedUser`
105
105
 
106
106
  ---
107
107