@digi-frontend/dgate-api-documentation 1.1.1 → 1.1.2
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/_virtual/index4.js +1 -1
- package/dist/_virtual/index7.js +1 -1
- package/dist/node_modules/yup/index.esm.js +1 -1
- package/dist/src/helpers/layout.helper.js +1 -1
- package/dist/src/helpers/layout.helper.js.map +1 -1
- package/dist/styles.css +533 -533
- package/package.json +1 -1
- package/src/helpers/layout.helper.ts +6 -0
- package/variables.txt +1 -1
package/package.json
CHANGED
|
@@ -92,6 +92,12 @@ export const transformPathsToArray = (openApiJson: OpenAPIFile): TransformedPath
|
|
|
92
92
|
items: resolvedItemSchema,
|
|
93
93
|
}
|
|
94
94
|
}
|
|
95
|
+
// if the response content is not an array remove the (items) property
|
|
96
|
+
if (schema?.type !== 'array') {
|
|
97
|
+
const { items, ...schemaRest } = schema
|
|
98
|
+
|
|
99
|
+
schema = schemaRest
|
|
100
|
+
}
|
|
95
101
|
|
|
96
102
|
return {
|
|
97
103
|
code,
|
package/variables.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export APP_VERSION=1.1.
|
|
1
|
+
export APP_VERSION=1.1.1
|