ide-assi 0.178.0 → 0.180.0

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.
@@ -193315,6 +193315,33 @@ class IdeUtils
193315
193315
  constructor() {
193316
193316
  }
193317
193317
 
193318
+ /**
193319
+ controller: "tmpl/controller/DocManagerController.java"
193320
+ javascript: "tmpl/doc-manager.jsx"
193321
+ menu : {url: '/tmpl/doc-manager', name: '문서관리'}
193322
+ mybatis : "tmpl/docManagerMapper.xml"
193323
+ package : "tmpl.docmanager"
193324
+ service : "tmpl/service/DocManagerService.java"
193325
+
193326
+ result : "1"
193327
+ table : (3) ['t_doc', 't_doc_file', 't_doc_file_page'
193328
+ */
193329
+
193330
+ static toCamelCase = str =>
193331
+ str
193332
+ .toLowerCase()
193333
+ .split('-')
193334
+ .map((w, i) => (i === 0 ? w : w[0].toUpperCase() + w.slice(1)))
193335
+ .join('');
193336
+
193337
+ static transformPath = input =>
193338
+ input
193339
+ .split('/')
193340
+ .slice(0, -1)
193341
+ .map(toCamelCase)
193342
+ .join('.');
193343
+
193344
+
193318
193345
  static generatePrompt = async (path, params) => {
193319
193346
 
193320
193347
  const template = await fetch(path).then(res => res.text());
@@ -193766,7 +193793,7 @@ class IdeAssi extends HTMLElement
193766
193793
  };
193767
193794
 
193768
193795
  #config = async () => {
193769
- this.config = await api.post("/config/get");
193796
+ this.config = await api.post("/api/config/get");
193770
193797
  };
193771
193798
 
193772
193799
  #init = (info) => {
@@ -193311,6 +193311,33 @@ class IdeUtils
193311
193311
  constructor() {
193312
193312
  }
193313
193313
 
193314
+ /**
193315
+ controller: "tmpl/controller/DocManagerController.java"
193316
+ javascript: "tmpl/doc-manager.jsx"
193317
+ menu : {url: '/tmpl/doc-manager', name: '문서관리'}
193318
+ mybatis : "tmpl/docManagerMapper.xml"
193319
+ package : "tmpl.docmanager"
193320
+ service : "tmpl/service/DocManagerService.java"
193321
+
193322
+ result : "1"
193323
+ table : (3) ['t_doc', 't_doc_file', 't_doc_file_page'
193324
+ */
193325
+
193326
+ static toCamelCase = str =>
193327
+ str
193328
+ .toLowerCase()
193329
+ .split('-')
193330
+ .map((w, i) => (i === 0 ? w : w[0].toUpperCase() + w.slice(1)))
193331
+ .join('');
193332
+
193333
+ static transformPath = input =>
193334
+ input
193335
+ .split('/')
193336
+ .slice(0, -1)
193337
+ .map(toCamelCase)
193338
+ .join('.');
193339
+
193340
+
193314
193341
  static generatePrompt = async (path, params) => {
193315
193342
 
193316
193343
  const template = await fetch(path).then(res => res.text());
@@ -193762,7 +193789,7 @@ class IdeAssi extends HTMLElement
193762
193789
  };
193763
193790
 
193764
193791
  #config = async () => {
193765
- this.config = await api.post("/config/get");
193792
+ this.config = await api.post("/api/config/get");
193766
193793
  };
193767
193794
 
193768
193795
  #init = (info) => {
@@ -56,7 +56,7 @@ export class IdeAssi extends HTMLElement
56
56
  };
57
57
 
58
58
  #config = async () => {
59
- this.config = await api.post("/config/get");
59
+ this.config = await api.post("/api/config/get");
60
60
  };
61
61
 
62
62
  #init = (info) => {
@@ -5,6 +5,33 @@ export class IdeUtils
5
5
  constructor() {
6
6
  }
7
7
 
8
+ /**
9
+ controller: "tmpl/controller/DocManagerController.java"
10
+ javascript: "tmpl/doc-manager.jsx"
11
+ menu : {url: '/tmpl/doc-manager', name: '문서관리'}
12
+ mybatis : "tmpl/docManagerMapper.xml"
13
+ package : "tmpl.docmanager"
14
+ service : "tmpl/service/DocManagerService.java"
15
+
16
+ result : "1"
17
+ table : (3) ['t_doc', 't_doc_file', 't_doc_file_page'
18
+ */
19
+
20
+ static toCamelCase = str =>
21
+ str
22
+ .toLowerCase()
23
+ .split('-')
24
+ .map((w, i) => (i === 0 ? w : w[0].toUpperCase() + w.slice(1)))
25
+ .join('');
26
+
27
+ static transformPath = input =>
28
+ input
29
+ .split('/')
30
+ .slice(0, -1)
31
+ .map(toCamelCase)
32
+ .join('.');
33
+
34
+
8
35
  static generatePrompt = async (path, params) => {
9
36
 
10
37
  const template = await fetch(path).then(res => res.text());
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.178.0",
4
+ "version": "0.180.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -56,7 +56,7 @@ export class IdeAssi extends HTMLElement
56
56
  };
57
57
 
58
58
  #config = async () => {
59
- this.config = await api.post("/config/get");
59
+ this.config = await api.post("/api/config/get");
60
60
  };
61
61
 
62
62
  #init = (info) => {
@@ -5,6 +5,33 @@ export class IdeUtils
5
5
  constructor() {
6
6
  }
7
7
 
8
+ /**
9
+ controller: "tmpl/controller/DocManagerController.java"
10
+ javascript: "tmpl/doc-manager.jsx"
11
+ menu : {url: '/tmpl/doc-manager', name: '문서관리'}
12
+ mybatis : "tmpl/docManagerMapper.xml"
13
+ package : "tmpl.docmanager"
14
+ service : "tmpl/service/DocManagerService.java"
15
+
16
+ result : "1"
17
+ table : (3) ['t_doc', 't_doc_file', 't_doc_file_page'
18
+ */
19
+
20
+ static toCamelCase = str =>
21
+ str
22
+ .toLowerCase()
23
+ .split('-')
24
+ .map((w, i) => (i === 0 ? w : w[0].toUpperCase() + w.slice(1)))
25
+ .join('');
26
+
27
+ static transformPath = input =>
28
+ input
29
+ .split('/')
30
+ .slice(0, -1)
31
+ .map(toCamelCase)
32
+ .join('.');
33
+
34
+
8
35
  static generatePrompt = async (path, params) => {
9
36
 
10
37
  const template = await fetch(path).then(res => res.text());