@vtecx/vtecxnext 2.2.22 → 2.3.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.
- package/dist/vtecxnext.d.ts +2 -1
- package/dist/vtecxnext.js +2 -3
- package/package.json +4 -4
package/dist/vtecxnext.d.ts
CHANGED
|
@@ -524,6 +524,7 @@ export declare class VtecxNext {
|
|
|
524
524
|
* @param values values of query arguments
|
|
525
525
|
* @param async execute async
|
|
526
526
|
* @param isbulk execute with autocommit
|
|
527
|
+
* @return message
|
|
527
528
|
*/
|
|
528
529
|
execRDB: (sqls: string[], values?: any[][], async?: boolean, isbulk?: boolean) => Promise<any>;
|
|
529
530
|
/**
|
|
@@ -671,7 +672,7 @@ export declare class VtecxNext {
|
|
|
671
672
|
* add user
|
|
672
673
|
* @param adduserInfo adduser infomation
|
|
673
674
|
* @param reCaptchaToken reCAPTCHA token
|
|
674
|
-
* @return message feed
|
|
675
|
+
* @return message feed (uid)
|
|
675
676
|
*/
|
|
676
677
|
adduser: (adduserInfo: AdduserInfo, reCaptchaToken: string) => Promise<any>;
|
|
677
678
|
/**
|
package/dist/vtecxnext.js
CHANGED
|
@@ -1950,6 +1950,7 @@ class VtecxNext {
|
|
|
1950
1950
|
* @param values values of query arguments
|
|
1951
1951
|
* @param async execute async
|
|
1952
1952
|
* @param isbulk execute with autocommit
|
|
1953
|
+
* @return message
|
|
1953
1954
|
*/
|
|
1954
1955
|
execRDB = async (sqls, values, async, isbulk) => {
|
|
1955
1956
|
//console.log(`[vtecxnext execRDB] start. sql=${sql} values=${values}`)
|
|
@@ -2009,7 +2010,6 @@ class VtecxNext {
|
|
|
2009
2010
|
const resData = await response.blob();
|
|
2010
2011
|
this.setResponseHeaders(response);
|
|
2011
2012
|
this.bufferData = await resData.arrayBuffer();
|
|
2012
|
-
//res.end(new Uint8Array(pdfData))
|
|
2013
2013
|
return true;
|
|
2014
2014
|
};
|
|
2015
2015
|
/**
|
|
@@ -2616,7 +2616,7 @@ class VtecxNext {
|
|
|
2616
2616
|
* add user
|
|
2617
2617
|
* @param adduserInfo adduser infomation
|
|
2618
2618
|
* @param reCaptchaToken reCAPTCHA token
|
|
2619
|
-
* @return message feed
|
|
2619
|
+
* @return message feed (uid)
|
|
2620
2620
|
*/
|
|
2621
2621
|
adduser = async (adduserInfo, reCaptchaToken) => {
|
|
2622
2622
|
//console.log(`[vtecxnext adduser] start. feed=${feed}`)
|
|
@@ -2668,7 +2668,6 @@ class VtecxNext {
|
|
|
2668
2668
|
* @param feed entries (JSON)
|
|
2669
2669
|
* @return message feed
|
|
2670
2670
|
*/
|
|
2671
|
-
//adduserByAdmin = async (feed:any): Promise<any> => {
|
|
2672
2671
|
adduserByAdmin = async (adduserInfos) => {
|
|
2673
2672
|
//console.log(`[vtecxnext adduserByAdmin] start. feed=${feed}`)
|
|
2674
2673
|
// 入力チェック
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vtecx/vtecxnext",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"description": "vte.cx Next.js api",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
},
|
|
19
19
|
"homepage": "https://github.com/reflexworks/vtecxnext#readme",
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@types/node": "^24.
|
|
21
|
+
"@types/node": "^24.9.1",
|
|
22
22
|
"@types/sqlstring": "^2.3.2",
|
|
23
23
|
"ts-node": "^10.9.2",
|
|
24
|
-
"typescript": "^5.
|
|
24
|
+
"typescript": "^5.9.3"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"next": "^
|
|
27
|
+
"next": "^16.0.0",
|
|
28
28
|
"sqlstring": "^2.3.3"
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|