@osdk/maker 0.12.0-beta.9 → 0.12.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 +172 -0
- package/README.md +1 -1
- package/build/browser/api/defineAction.js +373 -89
- package/build/browser/api/defineAction.js.map +1 -1
- package/build/browser/api/defineOntology.js +78 -33
- package/build/browser/api/defineOntology.js.map +1 -1
- package/build/browser/api/defineSpt.js.map +1 -1
- package/build/browser/api/ontologyUtils.js +80 -0
- package/build/browser/api/ontologyUtils.js.map +1 -1
- package/build/browser/api/overall.test.js +4289 -2577
- package/build/browser/api/overall.test.js.map +1 -1
- package/build/browser/api/types.js +2 -0
- package/build/browser/api/types.js.map +1 -1
- package/build/browser/cli/main.js +2 -10
- package/build/browser/cli/main.js.map +1 -1
- package/build/browser/index.js +5 -4
- package/build/browser/index.js.map +1 -1
- package/build/cjs/index.cjs +537 -131
- package/build/cjs/index.cjs.map +1 -1
- package/build/cjs/index.d.cts +78 -9
- package/build/esm/api/defineAction.js +373 -89
- package/build/esm/api/defineAction.js.map +1 -1
- package/build/esm/api/defineOntology.js +78 -33
- package/build/esm/api/defineOntology.js.map +1 -1
- package/build/esm/api/defineSpt.js.map +1 -1
- package/build/esm/api/ontologyUtils.js +80 -0
- package/build/esm/api/ontologyUtils.js.map +1 -1
- package/build/esm/api/overall.test.js +4289 -2577
- package/build/esm/api/overall.test.js.map +1 -1
- package/build/esm/api/types.js +2 -0
- package/build/esm/api/types.js.map +1 -1
- package/build/esm/cli/main.js +2 -10
- package/build/esm/cli/main.js.map +1 -1
- package/build/esm/index.js +5 -4
- package/build/esm/index.js.map +1 -1
- package/build/types/api/defineAction.d.ts +1 -0
- package/build/types/api/defineAction.d.ts.map +1 -1
- package/build/types/api/defineOntology.d.ts +3 -2
- package/build/types/api/defineOntology.d.ts.map +1 -1
- package/build/types/api/defineSpt.d.ts +2 -2
- package/build/types/api/defineSpt.d.ts.map +1 -1
- package/build/types/api/ontologyUtils.d.ts +5 -2
- package/build/types/api/ontologyUtils.d.ts.map +1 -1
- package/build/types/api/types.d.ts +69 -7
- package/build/types/api/types.d.ts.map +1 -1
- package/build/types/cli/main.d.ts.map +1 -1
- package/build/types/index.d.ts +6 -5
- package/build/types/index.d.ts.map +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,177 @@
|
|
|
1
1
|
# @osdk/maker
|
|
2
2
|
|
|
3
|
+
## 0.12.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 322c5bc: Simulated release
|
|
8
|
+
- e647175: Skip struct props for object create + modify actions
|
|
9
|
+
- ac0029e: Improve CRUD actions customization
|
|
10
|
+
- 3dcd9b1: Modify object actions cannot modify pk
|
|
11
|
+
- 4dffba1: Support extended string params in actions
|
|
12
|
+
- 75fbd09: Type classes and list validation for object actions
|
|
13
|
+
- f1f587b: Support custom parameters in OAC actions
|
|
14
|
+
- 3ff44da: Existing OTs as action parameters in OAC
|
|
15
|
+
- b0955ef: Action parameter defaults and table forms
|
|
16
|
+
- 8bb08eb: Turn on module cache
|
|
17
|
+
- 367cc04: Add default value and constraint overrides to OAC action parameters
|
|
18
|
+
- 666787f: fix text allowed values name
|
|
19
|
+
- 45ed433: Target objects are configurable and default parameter ordering is better in OAC actions
|
|
20
|
+
- ed41359: Action sections in OAC
|
|
21
|
+
- a1736f3: Actions can have properties that are not mapped to parameters
|
|
22
|
+
- a01b8d4: Revert import block data changes
|
|
23
|
+
- 641bc0c: Fix create-or-modify non parameter mapped property bug
|
|
24
|
+
- c621638: Create or Modify actions in OAC
|
|
25
|
+
- 283905f: Better error message for invalid parameter ordering on actions
|
|
26
|
+
- e62a890: Custom submission options for OAC actions
|
|
27
|
+
- 25bae67: OAC modify object actions set parameter defaults to match the selected object
|
|
28
|
+
- defc2cf: change parameterLevelValidations to parameterConfiguration
|
|
29
|
+
- 94beece: Enable "other" option for oneOf constraints on OAC actions
|
|
30
|
+
- 5994895: Interface struct properties are skipped in crud actions
|
|
31
|
+
- d384b4c: Add custom display names and descriptions for action parameters in OAC
|
|
32
|
+
- 02be685: Remove jiti
|
|
33
|
+
- 764e5f1: Add marking constraints
|
|
34
|
+
- 5c76e33: Trim value type before putting it in SPT IR
|
|
35
|
+
- Updated dependencies [322c5bc]
|
|
36
|
+
- Updated dependencies [4bc848b]
|
|
37
|
+
- Updated dependencies [9f4fe9e]
|
|
38
|
+
- Updated dependencies [29d2ada]
|
|
39
|
+
- Updated dependencies [8dd6229]
|
|
40
|
+
- Updated dependencies [8c95154]
|
|
41
|
+
- Updated dependencies [c32dcf2]
|
|
42
|
+
- Updated dependencies [722c89a]
|
|
43
|
+
- Updated dependencies [9101bad]
|
|
44
|
+
- Updated dependencies [44bbbe0]
|
|
45
|
+
- @osdk/api@2.4.0
|
|
46
|
+
|
|
47
|
+
## 0.12.0-rc.23
|
|
48
|
+
|
|
49
|
+
### Patch Changes
|
|
50
|
+
|
|
51
|
+
- Updated dependencies [8dd6229]
|
|
52
|
+
- @osdk/api@2.4.0-rc.19
|
|
53
|
+
|
|
54
|
+
## 0.12.0-beta.22
|
|
55
|
+
|
|
56
|
+
### Patch Changes
|
|
57
|
+
|
|
58
|
+
- Updated dependencies [722c89a]
|
|
59
|
+
- Updated dependencies [44bbbe0]
|
|
60
|
+
- @osdk/api@2.4.0-beta.18
|
|
61
|
+
|
|
62
|
+
## 0.12.0-beta.21
|
|
63
|
+
|
|
64
|
+
### Minor Changes
|
|
65
|
+
|
|
66
|
+
- 3ff44da: Existing OTs as action parameters in OAC
|
|
67
|
+
- 367cc04: Add default value and constraint overrides to OAC action parameters
|
|
68
|
+
- 283905f: Better error message for invalid parameter ordering on actions
|
|
69
|
+
- e62a890: Custom submission options for OAC actions
|
|
70
|
+
- 94beece: Enable "other" option for oneOf constraints on OAC actions
|
|
71
|
+
|
|
72
|
+
### Patch Changes
|
|
73
|
+
|
|
74
|
+
- @osdk/api@2.4.0-beta.17
|
|
75
|
+
|
|
76
|
+
## 0.12.0-beta.20
|
|
77
|
+
|
|
78
|
+
### Minor Changes
|
|
79
|
+
|
|
80
|
+
- 45ed433: Target objects are configurable and default parameter ordering is better in OAC actions
|
|
81
|
+
|
|
82
|
+
## 0.12.0-beta.19
|
|
83
|
+
|
|
84
|
+
### Patch Changes
|
|
85
|
+
|
|
86
|
+
- @osdk/api@2.4.0-beta.16
|
|
87
|
+
|
|
88
|
+
## 0.12.0-beta.18
|
|
89
|
+
|
|
90
|
+
### Patch Changes
|
|
91
|
+
|
|
92
|
+
- @osdk/api@2.4.0-beta.15
|
|
93
|
+
|
|
94
|
+
## 0.12.0-beta.17
|
|
95
|
+
|
|
96
|
+
### Minor Changes
|
|
97
|
+
|
|
98
|
+
- f1f587b: Support custom parameters in OAC actions
|
|
99
|
+
- 641bc0c: Fix create-or-modify non parameter mapped property bug
|
|
100
|
+
- 25bae67: OAC modify object actions set parameter defaults to match the selected object
|
|
101
|
+
- 5c76e33: Trim value type before putting it in SPT IR
|
|
102
|
+
|
|
103
|
+
### Patch Changes
|
|
104
|
+
|
|
105
|
+
- @osdk/api@2.4.0-beta.14
|
|
106
|
+
|
|
107
|
+
## 0.12.0-beta.16
|
|
108
|
+
|
|
109
|
+
### Patch Changes
|
|
110
|
+
|
|
111
|
+
- Updated dependencies [4bc848b]
|
|
112
|
+
- @osdk/api@2.4.0-beta.13
|
|
113
|
+
|
|
114
|
+
## 0.12.0-beta.15
|
|
115
|
+
|
|
116
|
+
### Minor Changes
|
|
117
|
+
|
|
118
|
+
- a1736f3: Actions can have properties that are not mapped to parameters
|
|
119
|
+
- c621638: Create or Modify actions in OAC
|
|
120
|
+
|
|
121
|
+
### Patch Changes
|
|
122
|
+
|
|
123
|
+
- @osdk/api@2.4.0-beta.12
|
|
124
|
+
|
|
125
|
+
## 0.12.0-beta.14
|
|
126
|
+
|
|
127
|
+
### Minor Changes
|
|
128
|
+
|
|
129
|
+
- d384b4c: Add custom display names and descriptions for action parameters in OAC
|
|
130
|
+
- 02be685: Remove jiti
|
|
131
|
+
|
|
132
|
+
### Patch Changes
|
|
133
|
+
|
|
134
|
+
- @osdk/api@2.4.0-beta.11
|
|
135
|
+
|
|
136
|
+
## 0.12.0-beta.13
|
|
137
|
+
|
|
138
|
+
### Minor Changes
|
|
139
|
+
|
|
140
|
+
- ed41359: Action sections in OAC
|
|
141
|
+
|
|
142
|
+
## 0.12.0-beta.12
|
|
143
|
+
|
|
144
|
+
### Minor Changes
|
|
145
|
+
|
|
146
|
+
- 666787f: fix text allowed values name
|
|
147
|
+
|
|
148
|
+
### Patch Changes
|
|
149
|
+
|
|
150
|
+
- @osdk/api@2.4.0-beta.10
|
|
151
|
+
|
|
152
|
+
## 0.12.0-beta.11
|
|
153
|
+
|
|
154
|
+
### Minor Changes
|
|
155
|
+
|
|
156
|
+
- b0955ef: Action parameter defaults and table forms
|
|
157
|
+
- defc2cf: change parameterLevelValidations to parameterConfiguration
|
|
158
|
+
|
|
159
|
+
### Patch Changes
|
|
160
|
+
|
|
161
|
+
- Updated dependencies [9101bad]
|
|
162
|
+
- @osdk/api@2.4.0-beta.9
|
|
163
|
+
|
|
164
|
+
## 0.12.0-beta.10
|
|
165
|
+
|
|
166
|
+
### Minor Changes
|
|
167
|
+
|
|
168
|
+
- 4dffba1: Support extended string params in actions
|
|
169
|
+
|
|
170
|
+
### Patch Changes
|
|
171
|
+
|
|
172
|
+
- Updated dependencies [9f4fe9e]
|
|
173
|
+
- @osdk/api@2.4.0-beta.8
|
|
174
|
+
|
|
3
175
|
## 0.12.0-beta.9
|
|
4
176
|
|
|
5
177
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -687,7 +687,7 @@ const modifyObjectActionType = defineModifyObjectAction(
|
|
|
687
687
|
actionLevelValidation: {
|
|
688
688
|
condition: mustBeManagerCondition,
|
|
689
689
|
},
|
|
690
|
-
|
|
690
|
+
parameterConfiguration: {
|
|
691
691
|
"numDeals": {
|
|
692
692
|
defaultVisibility: "hidden",
|
|
693
693
|
conditionalOverrides: [
|