@simitgroup/simpleapp-generator 1.6.6-c-alpha → 1.6.6-d-alpha

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/ReleaseNote.md CHANGED
@@ -1,3 +1,12 @@
1
+ [1.6.6d-alpha]
2
+ 1. fix new project cannot run
3
+
4
+
5
+ [1.6.6c-alpha]
6
+ 1. fix plenty of frontend lib generate bugs (after change api name)
7
+ 2. fix search lookup long
8
+
9
+
1
10
  [1.6.6b-alpha]
2
11
  1. add missing customkeycloak guard
3
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simitgroup/simpleapp-generator",
3
- "version": "1.6.6c-alpha",
3
+ "version": "1.6.6d-alpha",
4
4
  "description": "frontend nuxtjs and backend nests code generator using jsonschema",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -79,8 +79,7 @@ export class TextSearchBody{
79
79
  @Field(()=>[[String]])
80
80
  @ApiProperty({ type: ()=>[[String]], })
81
81
  sorts?:string[][]
82
- @Field()
83
- @ApiProperty({ type: Object })
84
-
82
+ @Field(type=>Object)
83
+ @ApiProperty({ type: Object })
85
84
  lookup?: Record<string,string>
86
85
  }
@@ -4,8 +4,7 @@
4
4
  "create",
5
5
  "update",
6
6
  "delete",
7
- "search",
8
- "generateNextNo"
7
+ "search"
9
8
  ],
10
9
  "Branch": [
11
10
  "access",
@@ -6,6 +6,7 @@
6
6
  "uniqueKey": "customerNo",
7
7
  "documentTitle": "customerName",
8
8
  "generateDocumentNumber": true,
9
+ "docNoPattern":"[0000000]",
9
10
  "isolationType": "org",
10
11
  "pageType": "crud"
11
12
  },
@@ -65,6 +65,12 @@
65
65
  "description": {
66
66
  "type": "string"
67
67
  },
68
+ "completedTours":{
69
+ "type":"array",
70
+ "items":{
71
+ "type":"string"
72
+ }
73
+ },
68
74
  "lastActivity": {
69
75
  "type": "string",
70
76
  "description": "capture ISO8601 last api call"