oro-sdk-apis 3.8.0-dev1.0 → 3.8.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/dist/models/diagnosis.d.ts +1 -0
- package/dist/models/workflow.d.ts +5 -3
- package/dist/oro-sdk-apis.cjs.development.js +5 -3
- package/dist/oro-sdk-apis.cjs.development.js.map +1 -1
- package/dist/oro-sdk-apis.cjs.production.min.js +1 -1
- package/dist/oro-sdk-apis.cjs.production.min.js.map +1 -1
- package/dist/oro-sdk-apis.esm.js +5 -3
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/models/diagnosis.ts +3 -2
- package/src/models/workflow.ts +5 -3
@@ -63,9 +63,11 @@ export interface TileRadioData extends ChoiceInputData {
|
|
63
63
|
description?: string;
|
64
64
|
}
|
65
65
|
export declare enum InputApplyFunctions {
|
66
|
-
|
67
|
-
|
68
|
-
|
66
|
+
AllUpperCase = "AllUpperCase",
|
67
|
+
AllLowerCase = "AllLowerCase",
|
68
|
+
AllAlphabetical = "AllAlphabetical",
|
69
|
+
AllAlphanumeric = "AllAlphanumeric",
|
70
|
+
NoSpaces = "NoSpaces"
|
69
71
|
}
|
70
72
|
export interface EntryData {
|
71
73
|
id?: number;
|
@@ -1629,9 +1629,11 @@ var VaultDataMissing = /*#__PURE__*/function (_Error8) {
|
|
1629
1629
|
})(exports.DocumentType || (exports.DocumentType = {}));
|
1630
1630
|
|
1631
1631
|
(function (InputApplyFunctions) {
|
1632
|
-
InputApplyFunctions["
|
1633
|
-
InputApplyFunctions["
|
1634
|
-
InputApplyFunctions["
|
1632
|
+
InputApplyFunctions["AllUpperCase"] = "AllUpperCase";
|
1633
|
+
InputApplyFunctions["AllLowerCase"] = "AllLowerCase";
|
1634
|
+
InputApplyFunctions["AllAlphabetical"] = "AllAlphabetical";
|
1635
|
+
InputApplyFunctions["AllAlphanumeric"] = "AllAlphanumeric";
|
1636
|
+
InputApplyFunctions["NoSpaces"] = "NoSpaces";
|
1635
1637
|
})(exports.InputApplyFunctions || (exports.InputApplyFunctions = {}));
|
1636
1638
|
|
1637
1639
|
(function (MetadataCategory) {
|