@cycomdatasystems/mackinac-sdk 3.1.0 → 3.1.1
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.
|
@@ -9,10 +9,14 @@ export interface FieldDefinitionDto {
|
|
|
9
9
|
/** @nullable */
|
|
10
10
|
fieldName: string | null;
|
|
11
11
|
/** @nullable */
|
|
12
|
+
apiFieldName?: string | null;
|
|
13
|
+
/** @nullable */
|
|
12
14
|
label?: string | null;
|
|
13
15
|
/** @nullable */
|
|
14
16
|
fieldType?: string | null;
|
|
15
17
|
/** @nullable */
|
|
18
|
+
valueType?: string | null;
|
|
19
|
+
/** @nullable */
|
|
16
20
|
isVisible?: boolean | null;
|
|
17
21
|
/** @nullable */
|
|
18
22
|
optionsRef?: string | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cycomdatasystems/mackinac-sdk",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"description": "A shared TypeScript client for the Mackinac API.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"build": "tsc -p tsconfig.json",
|
|
9
9
|
"orval": "orval",
|
|
10
10
|
"orval:watch": "orval --watch",
|
|
11
|
+
"docs": "typedoc",
|
|
11
12
|
"prepare": "npm run orval && npm run build"
|
|
12
13
|
},
|
|
13
14
|
"files": [
|
|
@@ -25,6 +26,7 @@
|
|
|
25
26
|
"devDependencies": {
|
|
26
27
|
"@orval/fetch": "^7.17.0",
|
|
27
28
|
"orval": "^7.17.0",
|
|
29
|
+
"typedoc": "^0.28.19",
|
|
28
30
|
"typescript": "^5.9.3"
|
|
29
31
|
},
|
|
30
32
|
"publishConfig": {
|