@dev-crew-berlin/enter-js-utils 0.60.0 → 0.60.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.
|
@@ -1269,20 +1269,20 @@ export declare type components = {
|
|
|
1269
1269
|
/** Questions */
|
|
1270
1270
|
questions: (components["schemas"]["TextField-Output"] | components["schemas"]["StaticField-Output"] | components["schemas"]["ImageUploadField-Output"] | components["schemas"]["FileUploadField-Output"] | components["schemas"]["LongtextField-Output"] | components["schemas"]["RadioButtonGroupField-Output"] | components["schemas"]["DropdownField-Output"] | components["schemas"]["DateField-Output"] | components["schemas"]["EmailField-Output"] | components["schemas"]["NumberField-Output"] | components["schemas"]["CheckboxField-Output"] | components["schemas"]["CheckboxGroupField-Output"] | components["schemas"]["CodeField-Output"])[];
|
|
1271
1271
|
/** Info */
|
|
1272
|
-
info
|
|
1272
|
+
info: string | {
|
|
1273
1273
|
[key: string]: string;
|
|
1274
1274
|
} | null;
|
|
1275
1275
|
/** Title */
|
|
1276
|
-
title
|
|
1276
|
+
title: string | {
|
|
1277
1277
|
[key: string]: string;
|
|
1278
1278
|
} | null;
|
|
1279
1279
|
/** Class */
|
|
1280
|
-
class
|
|
1280
|
+
class: string | null;
|
|
1281
1281
|
/**
|
|
1282
1282
|
* Ismetagroup
|
|
1283
1283
|
* @default false
|
|
1284
1284
|
*/
|
|
1285
|
-
isMetaGroup
|
|
1285
|
+
isMetaGroup: boolean;
|
|
1286
1286
|
};
|
|
1287
1287
|
/** FileReference */
|
|
1288
1288
|
FileReference: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dev-crew-berlin/enter-js-utils",
|
|
3
|
-
"version": "0.60.
|
|
3
|
+
"version": "0.60.1",
|
|
4
4
|
"description": "utils such as vaildation and other helpers to work with data from the enter app",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
23
23
|
"storybook": "start-storybook -p 6006",
|
|
24
24
|
"build-storybook": "build-storybook",
|
|
25
|
-
"generate-client": "openapi-typescript https://api.enter.events/openapi.json --output src/generated/api-schema.ts --
|
|
25
|
+
"generate-client": "openapi-typescript https://api.enter.events/openapi.json --output src/generated/api-schema.ts --default-non-nullable --export-type"
|
|
26
26
|
},
|
|
27
27
|
"lint-staged": {
|
|
28
28
|
"**/*": "prettier --write --ignore-unknown"
|
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
"@babel/preset-env": "^7.18.2",
|
|
44
44
|
"@babel/preset-react": "^7.17.12",
|
|
45
45
|
"@babel/preset-typescript": "^7.17.12",
|
|
46
|
+
"@liangskyli/openapi-typescript": "^5.4.1",
|
|
46
47
|
"@storybook/addon-actions": "^6.5.15",
|
|
47
48
|
"@storybook/addon-essentials": "^6.5.15",
|
|
48
49
|
"@storybook/addon-interactions": "^6.5.15",
|
|
@@ -62,7 +63,6 @@
|
|
|
62
63
|
"eslint": "^8.16.0",
|
|
63
64
|
"eslint-config-prettier": "^8.5.0",
|
|
64
65
|
"husky": "^7.0.1",
|
|
65
|
-
"openapi-typescript": "^6.7.6",
|
|
66
66
|
"prettier": "^2.6.2",
|
|
67
67
|
"react": "^18.1.0",
|
|
68
68
|
"react-dom": "^18.1.0",
|