@api-components/api-type-document 4.2.16 → 4.2.17
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,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@api-components/api-type-document",
|
|
3
3
|
"description": "A documentation table for type (resource) properties. Works with AMF data model",
|
|
4
|
-
"version": "4.2.
|
|
4
|
+
"version": "4.2.17",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"module": "index.js",
|
|
@@ -190,10 +190,9 @@ const mxFunction = (base) => {
|
|
|
190
190
|
return 'Boolean';
|
|
191
191
|
case this._getAmfKey(sc.dateTime):
|
|
192
192
|
case sc.dateTime:
|
|
193
|
-
return 'DateTime';
|
|
194
193
|
case this._getAmfKey(rs.dateTimeOnly):
|
|
195
194
|
case rs.dateTimeOnly:
|
|
196
|
-
return '
|
|
195
|
+
return 'DateTime';
|
|
197
196
|
case this._getAmfKey(sc.time):
|
|
198
197
|
case sc.time:
|
|
199
198
|
return 'Time';
|