@solidstarters/create-solid-app 1.2.17 → 1.2.18
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/Issues.txt +5 -0
- package/helpers.js +6 -3
- package/index.js +2 -0
- package/package.json +1 -1
- package/templates/nest-template/dot-templates/dot.gitignore.template +3 -0
- package/templates/nest-template/package-lock.json +626 -10
- package/templates/nest-template/package.json +4 -3
- package/templates/nest-template/rebuild.sh +1 -1
- package/templates/nest-template/src/app.module.ts +9 -0
- package/templates/next-template/app/layout.tsx +6 -3
- package/templates/next-template/next.config.js +9 -0
- package/templates/next-template/package-lock.json +15 -4
- package/templates/next-template/package.json +1 -1
- package/templates/next-template/redux/store.ts +11 -0
- package/templates/upgrade.sh +9 -0
package/Issues.txt
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
1. Keeping semver versioned packages, seems to not force the latest package version.
|
|
2
|
+
2. Add launch.json, upgrade.sh as well to the newly generated repos. Find a js compatible version for upgrade.sh
|
|
3
|
+
3. Fix the rebuild.sh to run the latest version of node i.e one that is running on the server
|
|
4
|
+
4. Need to check how tell the server to download and run a particular version of node on the system.
|
|
5
|
+
5. Also find appropriate js versions of rebuild.sh & upgrade.sh
|
package/helpers.js
CHANGED
|
@@ -35,7 +35,7 @@ export async function copyTemplate(source, target) {
|
|
|
35
35
|
await fs.copy(source, target);
|
|
36
36
|
// console.log(chalk.green(`Files copied from ${source} to ${target}`));
|
|
37
37
|
// Check if there is a dot-templates folder in the target
|
|
38
|
-
handleHiddenTemplateFiles(target);
|
|
38
|
+
// handleHiddenTemplateFiles(target);
|
|
39
39
|
}
|
|
40
40
|
catch (error) {
|
|
41
41
|
console.error(chalk.red('Error in copyTemplate:', error));
|
|
@@ -43,6 +43,7 @@ export async function copyTemplate(source, target) {
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
+
/*
|
|
46
47
|
function handleHiddenTemplateFiles(target) {
|
|
47
48
|
const dotTemplatesPath = path.join(target, 'dot-templates');
|
|
48
49
|
// move all the files from dot-templates to the target after remove .template in the file name
|
|
@@ -54,7 +55,7 @@ function handleHiddenTemplateFiles(target) {
|
|
|
54
55
|
});
|
|
55
56
|
fs.removeSync(dotTemplatesPath);
|
|
56
57
|
}
|
|
57
|
-
}
|
|
58
|
+
}*/
|
|
58
59
|
|
|
59
60
|
export function getSourceFolderPath(folder) {
|
|
60
61
|
const folderPath = path.join(__dirname, folder);
|
|
@@ -117,6 +118,7 @@ export function getBackendEnvConfig(answers) {
|
|
|
117
118
|
ENV: 'prod', //FIXME: preferred dev, Need to asses impact of keeping it as dev
|
|
118
119
|
PORT: answers.solidApiPort,
|
|
119
120
|
SOLID_APP_NAME: answers.projectName,
|
|
121
|
+
BASE_URL: `http://localhost:${answers.solidApiPort}`,
|
|
120
122
|
},
|
|
121
123
|
"Default DB Configuration": {
|
|
122
124
|
DEFAULT_DATABASE_USER: answers.solidApiDatabaseUsername,
|
|
@@ -155,7 +157,8 @@ export function getFrontendEnvJson(answers) {
|
|
|
155
157
|
NEXT_PUBLIC_ENABLE_CUSTOM_HEADER_FOOTER: false,
|
|
156
158
|
NEXT_PUBLIC_DEFAULT_MENU_KEY: `${answers.projectName}-tracker`,
|
|
157
159
|
NEXT_PUBLIC_SHOW_SETTINGS:false,
|
|
158
|
-
NEXT_PUBLIC_LOGIN_REDIRECT_URL:`/admin/core/solid-core/user/list
|
|
160
|
+
NEXT_PUBLIC_LOGIN_REDIRECT_URL:`/admin/core/solid-core/user/list`,
|
|
161
|
+
NEXT_PUBLIC_REMOTE_PATTERNS:'[{"protocol":"http","hostname":"localhost","pathname":"/media-files-storage/**"}]'
|
|
159
162
|
}
|
|
160
163
|
};
|
|
161
164
|
return envConfig;
|
package/index.js
CHANGED
|
@@ -46,6 +46,8 @@ async function main() {
|
|
|
46
46
|
updatePackageName(targetPath, 'solid-ui', `@${projectName}/solid-ui`);
|
|
47
47
|
updatePackageName(targetPath, 'solid-api', `@${projectName}/solid-api`);
|
|
48
48
|
updatePortInPackageJson(targetPath, 'solid-ui', answers.solidUiPort);
|
|
49
|
+
// Copy the upgrade shell script to the target path
|
|
50
|
+
await copyTemplate(path.join(templatesPath, 'upgrade.sh'), path.join(targetPath, 'upgrade.sh'));
|
|
49
51
|
|
|
50
52
|
// Step 4: Generate the .env files for backend and frontend
|
|
51
53
|
const backendPath = path.join(targetPath, 'solid-api');
|
package/package.json
CHANGED
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"@nestjs/serve-static": "^4.0.2",
|
|
28
28
|
"@nestjs/swagger": "^7.2.0",
|
|
29
29
|
"@nestjs/typeorm": "^10.0.1",
|
|
30
|
-
"@solidstarters/solid-core": "^1.2.
|
|
30
|
+
"@solidstarters/solid-core": "^1.2.93",
|
|
31
31
|
"@types/luxon": "^3.4.2",
|
|
32
32
|
"amqplib": "^0.10.4",
|
|
33
33
|
"axios": "^1.7.0",
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
"mongoose": "^8.7.0",
|
|
45
45
|
"nest-commander": "^3.12.5",
|
|
46
46
|
"nest-winston": "^1.9.7",
|
|
47
|
+
"nestjs-cls": "^5.4.3",
|
|
47
48
|
"nodemailer": "^6.9.13",
|
|
48
49
|
"passport": "^0.7.0",
|
|
49
50
|
"passport-google-oauth2": "^0.2.0",
|
|
@@ -67,7 +68,7 @@
|
|
|
67
68
|
"devDependencies": {
|
|
68
69
|
"@nestjs/cli": "^10.0.0",
|
|
69
70
|
"@nestjs/testing": "^10.0.0",
|
|
70
|
-
"@solidstarters/solid-code-builder": "^1.0.
|
|
71
|
+
"@solidstarters/solid-code-builder": "^1.0.27",
|
|
71
72
|
"@types/express": "^4.17.17",
|
|
72
73
|
"@types/hapi__joi": "^17.1.12",
|
|
73
74
|
"@types/jest": "^29.5.2",
|
|
@@ -1977,6 +1978,33 @@
|
|
|
1977
1978
|
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
1978
1979
|
}
|
|
1979
1980
|
},
|
|
1981
|
+
"node_modules/@fast-csv/format": {
|
|
1982
|
+
"version": "5.0.2",
|
|
1983
|
+
"resolved": "https://registry.npmjs.org/@fast-csv/format/-/format-5.0.2.tgz",
|
|
1984
|
+
"integrity": "sha512-fRYcWvI8vs0Zxa/8fXd/QlmQYWWkJqKZPAXM+vksnplb3owQFKTPPh9JqOtD0L3flQw/AZjjXdPkD7Kp/uHm8g==",
|
|
1985
|
+
"license": "MIT",
|
|
1986
|
+
"dependencies": {
|
|
1987
|
+
"lodash.escaperegexp": "^4.1.2",
|
|
1988
|
+
"lodash.isboolean": "^3.0.3",
|
|
1989
|
+
"lodash.isequal": "^4.5.0",
|
|
1990
|
+
"lodash.isfunction": "^3.0.9",
|
|
1991
|
+
"lodash.isnil": "^4.0.0"
|
|
1992
|
+
}
|
|
1993
|
+
},
|
|
1994
|
+
"node_modules/@fast-csv/parse": {
|
|
1995
|
+
"version": "5.0.2",
|
|
1996
|
+
"resolved": "https://registry.npmjs.org/@fast-csv/parse/-/parse-5.0.2.tgz",
|
|
1997
|
+
"integrity": "sha512-gMu1Btmm99TP+wc0tZnlH30E/F1Gw1Tah3oMDBHNPe9W8S68ixVHjt89Wg5lh7d9RuQMtwN+sGl5kxR891+fzw==",
|
|
1998
|
+
"license": "MIT",
|
|
1999
|
+
"dependencies": {
|
|
2000
|
+
"lodash.escaperegexp": "^4.1.2",
|
|
2001
|
+
"lodash.groupby": "^4.6.0",
|
|
2002
|
+
"lodash.isfunction": "^3.0.9",
|
|
2003
|
+
"lodash.isnil": "^4.0.0",
|
|
2004
|
+
"lodash.isundefined": "^3.0.1",
|
|
2005
|
+
"lodash.uniq": "^4.5.0"
|
|
2006
|
+
}
|
|
2007
|
+
},
|
|
1980
2008
|
"node_modules/@golevelup/nestjs-discovery": {
|
|
1981
2009
|
"version": "4.0.3",
|
|
1982
2010
|
"resolved": "https://registry.npmjs.org/@golevelup/nestjs-discovery/-/nestjs-discovery-4.0.3.tgz",
|
|
@@ -4424,9 +4452,9 @@
|
|
|
4424
4452
|
}
|
|
4425
4453
|
},
|
|
4426
4454
|
"node_modules/@solidstarters/solid-code-builder": {
|
|
4427
|
-
"version": "1.0.
|
|
4428
|
-
"resolved": "https://registry.npmjs.org/@solidstarters/solid-code-builder/-/solid-code-builder-1.0.
|
|
4429
|
-
"integrity": "sha512-
|
|
4455
|
+
"version": "1.0.27",
|
|
4456
|
+
"resolved": "https://registry.npmjs.org/@solidstarters/solid-code-builder/-/solid-code-builder-1.0.27.tgz",
|
|
4457
|
+
"integrity": "sha512-JTxJVXT9T+82YwzHAAqMuBnNJHs+bHBBzciQqGR1QR08wpWYuq/Fg111XyZnyyXihpR2I1gdHU0wc41qxtX14g==",
|
|
4430
4458
|
"dev": true,
|
|
4431
4459
|
"license": "MIT",
|
|
4432
4460
|
"dependencies": {
|
|
@@ -4469,9 +4497,9 @@
|
|
|
4469
4497
|
}
|
|
4470
4498
|
},
|
|
4471
4499
|
"node_modules/@solidstarters/solid-core": {
|
|
4472
|
-
"version": "1.2.
|
|
4473
|
-
"resolved": "https://registry.npmjs.org/@solidstarters/solid-core/-/solid-core-1.2.
|
|
4474
|
-
"integrity": "sha512-
|
|
4500
|
+
"version": "1.2.93",
|
|
4501
|
+
"resolved": "https://registry.npmjs.org/@solidstarters/solid-core/-/solid-core-1.2.93.tgz",
|
|
4502
|
+
"integrity": "sha512-8hTFl2VbeM07ac6ZR8f5efU2ih40J8kJy/TWSpVnUAtBkdWyRwgiYEv2XwFD4al+uy6va0M/GGntNPiPiPttww==",
|
|
4475
4503
|
"license": "ISC",
|
|
4476
4504
|
"dependencies": {
|
|
4477
4505
|
"@angular-devkit/core": "^18.0.3",
|
|
@@ -4486,6 +4514,8 @@
|
|
|
4486
4514
|
"cache-manager-redis-store": "^3.0.1",
|
|
4487
4515
|
"class-transformer": "^0.5.1",
|
|
4488
4516
|
"class-validator": "^0.14.1",
|
|
4517
|
+
"exceljs": "^4.4.0",
|
|
4518
|
+
"fast-csv": "^5.0.2",
|
|
4489
4519
|
"handlebars": "^4.7.8",
|
|
4490
4520
|
"ioredis": "^5.4.1",
|
|
4491
4521
|
"lodash": "^4.17.21",
|
|
@@ -4493,6 +4523,7 @@
|
|
|
4493
4523
|
"mailgen": "^2.0.28",
|
|
4494
4524
|
"mongoose": "^8.7.0",
|
|
4495
4525
|
"mysql2": "^3.13.0",
|
|
4526
|
+
"nestjs-cls": "^5.4.3",
|
|
4496
4527
|
"nodemailer": "^6.9.13",
|
|
4497
4528
|
"passport": "^0.7.0",
|
|
4498
4529
|
"passport-google-oauth2": "^0.2.0",
|
|
@@ -5736,6 +5767,75 @@
|
|
|
5736
5767
|
"integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==",
|
|
5737
5768
|
"license": "ISC"
|
|
5738
5769
|
},
|
|
5770
|
+
"node_modules/archiver": {
|
|
5771
|
+
"version": "5.3.2",
|
|
5772
|
+
"resolved": "https://registry.npmjs.org/archiver/-/archiver-5.3.2.tgz",
|
|
5773
|
+
"integrity": "sha512-+25nxyyznAXF7Nef3y0EbBeqmGZgeN/BxHX29Rs39djAfaFalmQ89SE6CWyDCHzGL0yt/ycBtNOmGTW0FyGWNw==",
|
|
5774
|
+
"license": "MIT",
|
|
5775
|
+
"dependencies": {
|
|
5776
|
+
"archiver-utils": "^2.1.0",
|
|
5777
|
+
"async": "^3.2.4",
|
|
5778
|
+
"buffer-crc32": "^0.2.1",
|
|
5779
|
+
"readable-stream": "^3.6.0",
|
|
5780
|
+
"readdir-glob": "^1.1.2",
|
|
5781
|
+
"tar-stream": "^2.2.0",
|
|
5782
|
+
"zip-stream": "^4.1.0"
|
|
5783
|
+
},
|
|
5784
|
+
"engines": {
|
|
5785
|
+
"node": ">= 10"
|
|
5786
|
+
}
|
|
5787
|
+
},
|
|
5788
|
+
"node_modules/archiver-utils": {
|
|
5789
|
+
"version": "2.1.0",
|
|
5790
|
+
"resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-2.1.0.tgz",
|
|
5791
|
+
"integrity": "sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==",
|
|
5792
|
+
"license": "MIT",
|
|
5793
|
+
"dependencies": {
|
|
5794
|
+
"glob": "^7.1.4",
|
|
5795
|
+
"graceful-fs": "^4.2.0",
|
|
5796
|
+
"lazystream": "^1.0.0",
|
|
5797
|
+
"lodash.defaults": "^4.2.0",
|
|
5798
|
+
"lodash.difference": "^4.5.0",
|
|
5799
|
+
"lodash.flatten": "^4.4.0",
|
|
5800
|
+
"lodash.isplainobject": "^4.0.6",
|
|
5801
|
+
"lodash.union": "^4.6.0",
|
|
5802
|
+
"normalize-path": "^3.0.0",
|
|
5803
|
+
"readable-stream": "^2.0.0"
|
|
5804
|
+
},
|
|
5805
|
+
"engines": {
|
|
5806
|
+
"node": ">= 6"
|
|
5807
|
+
}
|
|
5808
|
+
},
|
|
5809
|
+
"node_modules/archiver/node_modules/readable-stream": {
|
|
5810
|
+
"version": "3.6.2",
|
|
5811
|
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
|
|
5812
|
+
"integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
|
|
5813
|
+
"license": "MIT",
|
|
5814
|
+
"dependencies": {
|
|
5815
|
+
"inherits": "^2.0.3",
|
|
5816
|
+
"string_decoder": "^1.1.1",
|
|
5817
|
+
"util-deprecate": "^1.0.1"
|
|
5818
|
+
},
|
|
5819
|
+
"engines": {
|
|
5820
|
+
"node": ">= 6"
|
|
5821
|
+
}
|
|
5822
|
+
},
|
|
5823
|
+
"node_modules/archiver/node_modules/tar-stream": {
|
|
5824
|
+
"version": "2.2.0",
|
|
5825
|
+
"resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz",
|
|
5826
|
+
"integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==",
|
|
5827
|
+
"license": "MIT",
|
|
5828
|
+
"dependencies": {
|
|
5829
|
+
"bl": "^4.0.3",
|
|
5830
|
+
"end-of-stream": "^1.4.1",
|
|
5831
|
+
"fs-constants": "^1.0.0",
|
|
5832
|
+
"inherits": "^2.0.3",
|
|
5833
|
+
"readable-stream": "^3.1.1"
|
|
5834
|
+
},
|
|
5835
|
+
"engines": {
|
|
5836
|
+
"node": ">=6"
|
|
5837
|
+
}
|
|
5838
|
+
},
|
|
5739
5839
|
"node_modules/are-we-there-yet": {
|
|
5740
5840
|
"version": "2.0.0",
|
|
5741
5841
|
"resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz",
|
|
@@ -6105,6 +6205,28 @@
|
|
|
6105
6205
|
"node": ">= 10.0.0"
|
|
6106
6206
|
}
|
|
6107
6207
|
},
|
|
6208
|
+
"node_modules/big-integer": {
|
|
6209
|
+
"version": "1.6.52",
|
|
6210
|
+
"resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz",
|
|
6211
|
+
"integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==",
|
|
6212
|
+
"license": "Unlicense",
|
|
6213
|
+
"engines": {
|
|
6214
|
+
"node": ">=0.6"
|
|
6215
|
+
}
|
|
6216
|
+
},
|
|
6217
|
+
"node_modules/binary": {
|
|
6218
|
+
"version": "0.3.0",
|
|
6219
|
+
"resolved": "https://registry.npmjs.org/binary/-/binary-0.3.0.tgz",
|
|
6220
|
+
"integrity": "sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==",
|
|
6221
|
+
"license": "MIT",
|
|
6222
|
+
"dependencies": {
|
|
6223
|
+
"buffers": "~0.1.1",
|
|
6224
|
+
"chainsaw": "~0.1.0"
|
|
6225
|
+
},
|
|
6226
|
+
"engines": {
|
|
6227
|
+
"node": "*"
|
|
6228
|
+
}
|
|
6229
|
+
},
|
|
6108
6230
|
"node_modules/binary-extensions": {
|
|
6109
6231
|
"version": "2.3.0",
|
|
6110
6232
|
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
|
|
@@ -6143,6 +6265,12 @@
|
|
|
6143
6265
|
"node": ">= 6"
|
|
6144
6266
|
}
|
|
6145
6267
|
},
|
|
6268
|
+
"node_modules/bluebird": {
|
|
6269
|
+
"version": "3.4.7",
|
|
6270
|
+
"resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.4.7.tgz",
|
|
6271
|
+
"integrity": "sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==",
|
|
6272
|
+
"license": "MIT"
|
|
6273
|
+
},
|
|
6146
6274
|
"node_modules/body-parser": {
|
|
6147
6275
|
"version": "1.20.3",
|
|
6148
6276
|
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz",
|
|
@@ -6325,12 +6453,29 @@
|
|
|
6325
6453
|
"integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
|
|
6326
6454
|
"license": "MIT"
|
|
6327
6455
|
},
|
|
6456
|
+
"node_modules/buffer-indexof-polyfill": {
|
|
6457
|
+
"version": "1.0.2",
|
|
6458
|
+
"resolved": "https://registry.npmjs.org/buffer-indexof-polyfill/-/buffer-indexof-polyfill-1.0.2.tgz",
|
|
6459
|
+
"integrity": "sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==",
|
|
6460
|
+
"license": "MIT",
|
|
6461
|
+
"engines": {
|
|
6462
|
+
"node": ">=0.10"
|
|
6463
|
+
}
|
|
6464
|
+
},
|
|
6328
6465
|
"node_modules/buffer-more-ints": {
|
|
6329
6466
|
"version": "1.0.0",
|
|
6330
6467
|
"resolved": "https://registry.npmjs.org/buffer-more-ints/-/buffer-more-ints-1.0.0.tgz",
|
|
6331
6468
|
"integrity": "sha512-EMetuGFz5SLsT0QTnXzINh4Ksr+oo4i+UGTXEshiGCQWnsgSs7ZhJ8fzlwQ+OzEMs0MpDAMr1hxnblp5a4vcHg==",
|
|
6332
6469
|
"license": "MIT"
|
|
6333
6470
|
},
|
|
6471
|
+
"node_modules/buffers": {
|
|
6472
|
+
"version": "0.1.1",
|
|
6473
|
+
"resolved": "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz",
|
|
6474
|
+
"integrity": "sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==",
|
|
6475
|
+
"engines": {
|
|
6476
|
+
"node": ">=0.2.0"
|
|
6477
|
+
}
|
|
6478
|
+
},
|
|
6334
6479
|
"node_modules/busboy": {
|
|
6335
6480
|
"version": "1.6.0",
|
|
6336
6481
|
"resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz",
|
|
@@ -6498,6 +6643,18 @@
|
|
|
6498
6643
|
"node": ">=0.8"
|
|
6499
6644
|
}
|
|
6500
6645
|
},
|
|
6646
|
+
"node_modules/chainsaw": {
|
|
6647
|
+
"version": "0.1.0",
|
|
6648
|
+
"resolved": "https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz",
|
|
6649
|
+
"integrity": "sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==",
|
|
6650
|
+
"license": "MIT/X11",
|
|
6651
|
+
"dependencies": {
|
|
6652
|
+
"traverse": ">=0.3.0 <0.4"
|
|
6653
|
+
},
|
|
6654
|
+
"engines": {
|
|
6655
|
+
"node": "*"
|
|
6656
|
+
}
|
|
6657
|
+
},
|
|
6501
6658
|
"node_modules/chalk": {
|
|
6502
6659
|
"version": "4.1.2",
|
|
6503
6660
|
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
@@ -7022,6 +7179,35 @@
|
|
|
7022
7179
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
7023
7180
|
}
|
|
7024
7181
|
},
|
|
7182
|
+
"node_modules/compress-commons": {
|
|
7183
|
+
"version": "4.1.2",
|
|
7184
|
+
"resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-4.1.2.tgz",
|
|
7185
|
+
"integrity": "sha512-D3uMHtGc/fcO1Gt1/L7i1e33VOvD4A9hfQLP+6ewd+BvG/gQ84Yh4oftEhAdjSMgBgwGL+jsppT7JYNpo6MHHg==",
|
|
7186
|
+
"license": "MIT",
|
|
7187
|
+
"dependencies": {
|
|
7188
|
+
"buffer-crc32": "^0.2.13",
|
|
7189
|
+
"crc32-stream": "^4.0.2",
|
|
7190
|
+
"normalize-path": "^3.0.0",
|
|
7191
|
+
"readable-stream": "^3.6.0"
|
|
7192
|
+
},
|
|
7193
|
+
"engines": {
|
|
7194
|
+
"node": ">= 10"
|
|
7195
|
+
}
|
|
7196
|
+
},
|
|
7197
|
+
"node_modules/compress-commons/node_modules/readable-stream": {
|
|
7198
|
+
"version": "3.6.2",
|
|
7199
|
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
|
|
7200
|
+
"integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
|
|
7201
|
+
"license": "MIT",
|
|
7202
|
+
"dependencies": {
|
|
7203
|
+
"inherits": "^2.0.3",
|
|
7204
|
+
"string_decoder": "^1.1.1",
|
|
7205
|
+
"util-deprecate": "^1.0.1"
|
|
7206
|
+
},
|
|
7207
|
+
"engines": {
|
|
7208
|
+
"node": ">= 6"
|
|
7209
|
+
}
|
|
7210
|
+
},
|
|
7025
7211
|
"node_modules/concat-map": {
|
|
7026
7212
|
"version": "0.0.1",
|
|
7027
7213
|
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
|
@@ -7180,6 +7366,33 @@
|
|
|
7180
7366
|
"node": ">=0.8"
|
|
7181
7367
|
}
|
|
7182
7368
|
},
|
|
7369
|
+
"node_modules/crc32-stream": {
|
|
7370
|
+
"version": "4.0.3",
|
|
7371
|
+
"resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-4.0.3.tgz",
|
|
7372
|
+
"integrity": "sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==",
|
|
7373
|
+
"license": "MIT",
|
|
7374
|
+
"dependencies": {
|
|
7375
|
+
"crc-32": "^1.2.0",
|
|
7376
|
+
"readable-stream": "^3.4.0"
|
|
7377
|
+
},
|
|
7378
|
+
"engines": {
|
|
7379
|
+
"node": ">= 10"
|
|
7380
|
+
}
|
|
7381
|
+
},
|
|
7382
|
+
"node_modules/crc32-stream/node_modules/readable-stream": {
|
|
7383
|
+
"version": "3.6.2",
|
|
7384
|
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
|
|
7385
|
+
"integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
|
|
7386
|
+
"license": "MIT",
|
|
7387
|
+
"dependencies": {
|
|
7388
|
+
"inherits": "^2.0.3",
|
|
7389
|
+
"string_decoder": "^1.1.1",
|
|
7390
|
+
"util-deprecate": "^1.0.1"
|
|
7391
|
+
},
|
|
7392
|
+
"engines": {
|
|
7393
|
+
"node": ">= 6"
|
|
7394
|
+
}
|
|
7395
|
+
},
|
|
7183
7396
|
"node_modules/create-jest": {
|
|
7184
7397
|
"version": "29.7.0",
|
|
7185
7398
|
"resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz",
|
|
@@ -7608,6 +7821,15 @@
|
|
|
7608
7821
|
"node": ">= 0.4"
|
|
7609
7822
|
}
|
|
7610
7823
|
},
|
|
7824
|
+
"node_modules/duplexer2": {
|
|
7825
|
+
"version": "0.1.4",
|
|
7826
|
+
"resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz",
|
|
7827
|
+
"integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==",
|
|
7828
|
+
"license": "BSD-3-Clause",
|
|
7829
|
+
"dependencies": {
|
|
7830
|
+
"readable-stream": "^2.0.2"
|
|
7831
|
+
}
|
|
7832
|
+
},
|
|
7611
7833
|
"node_modules/eastasianwidth": {
|
|
7612
7834
|
"version": "0.2.0",
|
|
7613
7835
|
"resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
|
|
@@ -8192,6 +8414,106 @@
|
|
|
8192
8414
|
"node": ">=0.8.x"
|
|
8193
8415
|
}
|
|
8194
8416
|
},
|
|
8417
|
+
"node_modules/exceljs": {
|
|
8418
|
+
"version": "4.4.0",
|
|
8419
|
+
"resolved": "https://registry.npmjs.org/exceljs/-/exceljs-4.4.0.tgz",
|
|
8420
|
+
"integrity": "sha512-XctvKaEMaj1Ii9oDOqbW/6e1gXknSY4g/aLCDicOXqBE4M0nRWkUu0PTp++UPNzoFY12BNHMfs/VadKIS6llvg==",
|
|
8421
|
+
"license": "MIT",
|
|
8422
|
+
"dependencies": {
|
|
8423
|
+
"archiver": "^5.0.0",
|
|
8424
|
+
"dayjs": "^1.8.34",
|
|
8425
|
+
"fast-csv": "^4.3.1",
|
|
8426
|
+
"jszip": "^3.10.1",
|
|
8427
|
+
"readable-stream": "^3.6.0",
|
|
8428
|
+
"saxes": "^5.0.1",
|
|
8429
|
+
"tmp": "^0.2.0",
|
|
8430
|
+
"unzipper": "^0.10.11",
|
|
8431
|
+
"uuid": "^8.3.0"
|
|
8432
|
+
},
|
|
8433
|
+
"engines": {
|
|
8434
|
+
"node": ">=8.3.0"
|
|
8435
|
+
}
|
|
8436
|
+
},
|
|
8437
|
+
"node_modules/exceljs/node_modules/@fast-csv/format": {
|
|
8438
|
+
"version": "4.3.5",
|
|
8439
|
+
"resolved": "https://registry.npmjs.org/@fast-csv/format/-/format-4.3.5.tgz",
|
|
8440
|
+
"integrity": "sha512-8iRn6QF3I8Ak78lNAa+Gdl5MJJBM5vRHivFtMRUWINdevNo00K7OXxS2PshawLKTejVwieIlPmK5YlLu6w4u8A==",
|
|
8441
|
+
"license": "MIT",
|
|
8442
|
+
"dependencies": {
|
|
8443
|
+
"@types/node": "^14.0.1",
|
|
8444
|
+
"lodash.escaperegexp": "^4.1.2",
|
|
8445
|
+
"lodash.isboolean": "^3.0.3",
|
|
8446
|
+
"lodash.isequal": "^4.5.0",
|
|
8447
|
+
"lodash.isfunction": "^3.0.9",
|
|
8448
|
+
"lodash.isnil": "^4.0.0"
|
|
8449
|
+
}
|
|
8450
|
+
},
|
|
8451
|
+
"node_modules/exceljs/node_modules/@fast-csv/parse": {
|
|
8452
|
+
"version": "4.3.6",
|
|
8453
|
+
"resolved": "https://registry.npmjs.org/@fast-csv/parse/-/parse-4.3.6.tgz",
|
|
8454
|
+
"integrity": "sha512-uRsLYksqpbDmWaSmzvJcuApSEe38+6NQZBUsuAyMZKqHxH0g1wcJgsKUvN3WC8tewaqFjBMMGrkHmC+T7k8LvA==",
|
|
8455
|
+
"license": "MIT",
|
|
8456
|
+
"dependencies": {
|
|
8457
|
+
"@types/node": "^14.0.1",
|
|
8458
|
+
"lodash.escaperegexp": "^4.1.2",
|
|
8459
|
+
"lodash.groupby": "^4.6.0",
|
|
8460
|
+
"lodash.isfunction": "^3.0.9",
|
|
8461
|
+
"lodash.isnil": "^4.0.0",
|
|
8462
|
+
"lodash.isundefined": "^3.0.1",
|
|
8463
|
+
"lodash.uniq": "^4.5.0"
|
|
8464
|
+
}
|
|
8465
|
+
},
|
|
8466
|
+
"node_modules/exceljs/node_modules/@types/node": {
|
|
8467
|
+
"version": "14.18.63",
|
|
8468
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.63.tgz",
|
|
8469
|
+
"integrity": "sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==",
|
|
8470
|
+
"license": "MIT"
|
|
8471
|
+
},
|
|
8472
|
+
"node_modules/exceljs/node_modules/fast-csv": {
|
|
8473
|
+
"version": "4.3.6",
|
|
8474
|
+
"resolved": "https://registry.npmjs.org/fast-csv/-/fast-csv-4.3.6.tgz",
|
|
8475
|
+
"integrity": "sha512-2RNSpuwwsJGP0frGsOmTb9oUF+VkFSM4SyLTDgwf2ciHWTarN0lQTC+F2f/t5J9QjW+c65VFIAAu85GsvMIusw==",
|
|
8476
|
+
"license": "MIT",
|
|
8477
|
+
"dependencies": {
|
|
8478
|
+
"@fast-csv/format": "4.3.5",
|
|
8479
|
+
"@fast-csv/parse": "4.3.6"
|
|
8480
|
+
},
|
|
8481
|
+
"engines": {
|
|
8482
|
+
"node": ">=10.0.0"
|
|
8483
|
+
}
|
|
8484
|
+
},
|
|
8485
|
+
"node_modules/exceljs/node_modules/readable-stream": {
|
|
8486
|
+
"version": "3.6.2",
|
|
8487
|
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
|
|
8488
|
+
"integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
|
|
8489
|
+
"license": "MIT",
|
|
8490
|
+
"dependencies": {
|
|
8491
|
+
"inherits": "^2.0.3",
|
|
8492
|
+
"string_decoder": "^1.1.1",
|
|
8493
|
+
"util-deprecate": "^1.0.1"
|
|
8494
|
+
},
|
|
8495
|
+
"engines": {
|
|
8496
|
+
"node": ">= 6"
|
|
8497
|
+
}
|
|
8498
|
+
},
|
|
8499
|
+
"node_modules/exceljs/node_modules/tmp": {
|
|
8500
|
+
"version": "0.2.3",
|
|
8501
|
+
"resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz",
|
|
8502
|
+
"integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==",
|
|
8503
|
+
"license": "MIT",
|
|
8504
|
+
"engines": {
|
|
8505
|
+
"node": ">=14.14"
|
|
8506
|
+
}
|
|
8507
|
+
},
|
|
8508
|
+
"node_modules/exceljs/node_modules/uuid": {
|
|
8509
|
+
"version": "8.3.2",
|
|
8510
|
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
|
|
8511
|
+
"integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==",
|
|
8512
|
+
"license": "MIT",
|
|
8513
|
+
"bin": {
|
|
8514
|
+
"uuid": "dist/bin/uuid"
|
|
8515
|
+
}
|
|
8516
|
+
},
|
|
8195
8517
|
"node_modules/execa": {
|
|
8196
8518
|
"version": "5.1.1",
|
|
8197
8519
|
"resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
|
|
@@ -8470,6 +8792,19 @@
|
|
|
8470
8792
|
"node": "> 0.1.90"
|
|
8471
8793
|
}
|
|
8472
8794
|
},
|
|
8795
|
+
"node_modules/fast-csv": {
|
|
8796
|
+
"version": "5.0.2",
|
|
8797
|
+
"resolved": "https://registry.npmjs.org/fast-csv/-/fast-csv-5.0.2.tgz",
|
|
8798
|
+
"integrity": "sha512-CnB2zYAzzeh5Ta0UhSf32NexLy2SsEsSMY+fMWPV40k1OgaLEbm9Hf5dms3z/9fASZHBjB6i834079gVeksEqQ==",
|
|
8799
|
+
"license": "MIT",
|
|
8800
|
+
"dependencies": {
|
|
8801
|
+
"@fast-csv/format": "5.0.2",
|
|
8802
|
+
"@fast-csv/parse": "5.0.2"
|
|
8803
|
+
},
|
|
8804
|
+
"engines": {
|
|
8805
|
+
"node": ">=10.0.0"
|
|
8806
|
+
}
|
|
8807
|
+
},
|
|
8473
8808
|
"node_modules/fast-deep-equal": {
|
|
8474
8809
|
"version": "3.1.3",
|
|
8475
8810
|
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
|
|
@@ -8913,6 +9248,12 @@
|
|
|
8913
9248
|
"node": ">= 0.6"
|
|
8914
9249
|
}
|
|
8915
9250
|
},
|
|
9251
|
+
"node_modules/fs-constants": {
|
|
9252
|
+
"version": "1.0.0",
|
|
9253
|
+
"resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
|
|
9254
|
+
"integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==",
|
|
9255
|
+
"license": "MIT"
|
|
9256
|
+
},
|
|
8916
9257
|
"node_modules/fs-extra": {
|
|
8917
9258
|
"version": "10.1.0",
|
|
8918
9259
|
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
|
|
@@ -8991,6 +9332,35 @@
|
|
|
8991
9332
|
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
8992
9333
|
}
|
|
8993
9334
|
},
|
|
9335
|
+
"node_modules/fstream": {
|
|
9336
|
+
"version": "1.0.12",
|
|
9337
|
+
"resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz",
|
|
9338
|
+
"integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==",
|
|
9339
|
+
"deprecated": "This package is no longer supported.",
|
|
9340
|
+
"license": "ISC",
|
|
9341
|
+
"dependencies": {
|
|
9342
|
+
"graceful-fs": "^4.1.2",
|
|
9343
|
+
"inherits": "~2.0.0",
|
|
9344
|
+
"mkdirp": ">=0.5 0",
|
|
9345
|
+
"rimraf": "2"
|
|
9346
|
+
},
|
|
9347
|
+
"engines": {
|
|
9348
|
+
"node": ">=0.6"
|
|
9349
|
+
}
|
|
9350
|
+
},
|
|
9351
|
+
"node_modules/fstream/node_modules/rimraf": {
|
|
9352
|
+
"version": "2.7.1",
|
|
9353
|
+
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
|
|
9354
|
+
"integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
|
|
9355
|
+
"deprecated": "Rimraf versions prior to v4 are no longer supported",
|
|
9356
|
+
"license": "ISC",
|
|
9357
|
+
"dependencies": {
|
|
9358
|
+
"glob": "^7.1.3"
|
|
9359
|
+
},
|
|
9360
|
+
"bin": {
|
|
9361
|
+
"rimraf": "bin.js"
|
|
9362
|
+
}
|
|
9363
|
+
},
|
|
8994
9364
|
"node_modules/function-bind": {
|
|
8995
9365
|
"version": "1.1.2",
|
|
8996
9366
|
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
|
@@ -9250,7 +9620,6 @@
|
|
|
9250
9620
|
"version": "4.2.11",
|
|
9251
9621
|
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
|
|
9252
9622
|
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
|
|
9253
|
-
"dev": true,
|
|
9254
9623
|
"license": "ISC"
|
|
9255
9624
|
},
|
|
9256
9625
|
"node_modules/graphemer": {
|
|
@@ -9509,6 +9878,12 @@
|
|
|
9509
9878
|
"node": ">= 4"
|
|
9510
9879
|
}
|
|
9511
9880
|
},
|
|
9881
|
+
"node_modules/immediate": {
|
|
9882
|
+
"version": "3.0.6",
|
|
9883
|
+
"resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz",
|
|
9884
|
+
"integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==",
|
|
9885
|
+
"license": "MIT"
|
|
9886
|
+
},
|
|
9512
9887
|
"node_modules/import-fresh": {
|
|
9513
9888
|
"version": "3.3.1",
|
|
9514
9889
|
"resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
|
|
@@ -10807,6 +11182,18 @@
|
|
|
10807
11182
|
"node": ">=10"
|
|
10808
11183
|
}
|
|
10809
11184
|
},
|
|
11185
|
+
"node_modules/jszip": {
|
|
11186
|
+
"version": "3.10.1",
|
|
11187
|
+
"resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz",
|
|
11188
|
+
"integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==",
|
|
11189
|
+
"license": "(MIT OR GPL-3.0-or-later)",
|
|
11190
|
+
"dependencies": {
|
|
11191
|
+
"lie": "~3.3.0",
|
|
11192
|
+
"pako": "~1.0.2",
|
|
11193
|
+
"readable-stream": "~2.3.6",
|
|
11194
|
+
"setimmediate": "^1.0.5"
|
|
11195
|
+
}
|
|
11196
|
+
},
|
|
10810
11197
|
"node_modules/juice": {
|
|
10811
11198
|
"version": "8.1.0",
|
|
10812
11199
|
"resolved": "https://registry.npmjs.org/juice/-/juice-8.1.0.tgz",
|
|
@@ -10905,6 +11292,18 @@
|
|
|
10905
11292
|
"node": ">=0.10.0"
|
|
10906
11293
|
}
|
|
10907
11294
|
},
|
|
11295
|
+
"node_modules/lazystream": {
|
|
11296
|
+
"version": "1.0.1",
|
|
11297
|
+
"resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz",
|
|
11298
|
+
"integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==",
|
|
11299
|
+
"license": "MIT",
|
|
11300
|
+
"dependencies": {
|
|
11301
|
+
"readable-stream": "^2.0.5"
|
|
11302
|
+
},
|
|
11303
|
+
"engines": {
|
|
11304
|
+
"node": ">= 0.6.3"
|
|
11305
|
+
}
|
|
11306
|
+
},
|
|
10908
11307
|
"node_modules/leven": {
|
|
10909
11308
|
"version": "3.1.0",
|
|
10910
11309
|
"resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz",
|
|
@@ -10935,12 +11334,27 @@
|
|
|
10935
11334
|
"integrity": "sha512-bW/Yp/9dod6fmyR+XqSUL1N5JE7QRxQ3KrBIbYS1FTv32e5i3SEtQVX+71CYNv8maWNSOgnlCoNp9X78f/cKiA==",
|
|
10936
11335
|
"license": "MIT"
|
|
10937
11336
|
},
|
|
11337
|
+
"node_modules/lie": {
|
|
11338
|
+
"version": "3.3.0",
|
|
11339
|
+
"resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz",
|
|
11340
|
+
"integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==",
|
|
11341
|
+
"license": "MIT",
|
|
11342
|
+
"dependencies": {
|
|
11343
|
+
"immediate": "~3.0.5"
|
|
11344
|
+
}
|
|
11345
|
+
},
|
|
10938
11346
|
"node_modules/lines-and-columns": {
|
|
10939
11347
|
"version": "1.2.4",
|
|
10940
11348
|
"resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
|
|
10941
11349
|
"integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
|
|
10942
11350
|
"license": "MIT"
|
|
10943
11351
|
},
|
|
11352
|
+
"node_modules/listenercount": {
|
|
11353
|
+
"version": "1.0.1",
|
|
11354
|
+
"resolved": "https://registry.npmjs.org/listenercount/-/listenercount-1.0.1.tgz",
|
|
11355
|
+
"integrity": "sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==",
|
|
11356
|
+
"license": "ISC"
|
|
11357
|
+
},
|
|
10944
11358
|
"node_modules/loader-runner": {
|
|
10945
11359
|
"version": "4.3.0",
|
|
10946
11360
|
"resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz",
|
|
@@ -10985,6 +11399,30 @@
|
|
|
10985
11399
|
"integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==",
|
|
10986
11400
|
"license": "MIT"
|
|
10987
11401
|
},
|
|
11402
|
+
"node_modules/lodash.difference": {
|
|
11403
|
+
"version": "4.5.0",
|
|
11404
|
+
"resolved": "https://registry.npmjs.org/lodash.difference/-/lodash.difference-4.5.0.tgz",
|
|
11405
|
+
"integrity": "sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA==",
|
|
11406
|
+
"license": "MIT"
|
|
11407
|
+
},
|
|
11408
|
+
"node_modules/lodash.escaperegexp": {
|
|
11409
|
+
"version": "4.1.2",
|
|
11410
|
+
"resolved": "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz",
|
|
11411
|
+
"integrity": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==",
|
|
11412
|
+
"license": "MIT"
|
|
11413
|
+
},
|
|
11414
|
+
"node_modules/lodash.flatten": {
|
|
11415
|
+
"version": "4.4.0",
|
|
11416
|
+
"resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz",
|
|
11417
|
+
"integrity": "sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==",
|
|
11418
|
+
"license": "MIT"
|
|
11419
|
+
},
|
|
11420
|
+
"node_modules/lodash.groupby": {
|
|
11421
|
+
"version": "4.6.0",
|
|
11422
|
+
"resolved": "https://registry.npmjs.org/lodash.groupby/-/lodash.groupby-4.6.0.tgz",
|
|
11423
|
+
"integrity": "sha512-5dcWxm23+VAoz+awKmBaiBvzox8+RqMgFhi7UvX9DHZr2HdxHXM/Wrf8cfKpsW37RNrvtPn6hSwNqurSILbmJw==",
|
|
11424
|
+
"license": "MIT"
|
|
11425
|
+
},
|
|
10988
11426
|
"node_modules/lodash.includes": {
|
|
10989
11427
|
"version": "4.3.0",
|
|
10990
11428
|
"resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz",
|
|
@@ -11003,12 +11441,31 @@
|
|
|
11003
11441
|
"integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==",
|
|
11004
11442
|
"license": "MIT"
|
|
11005
11443
|
},
|
|
11444
|
+
"node_modules/lodash.isequal": {
|
|
11445
|
+
"version": "4.5.0",
|
|
11446
|
+
"resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz",
|
|
11447
|
+
"integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==",
|
|
11448
|
+
"deprecated": "This package is deprecated. Use require('node:util').isDeepStrictEqual instead.",
|
|
11449
|
+
"license": "MIT"
|
|
11450
|
+
},
|
|
11451
|
+
"node_modules/lodash.isfunction": {
|
|
11452
|
+
"version": "3.0.9",
|
|
11453
|
+
"resolved": "https://registry.npmjs.org/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz",
|
|
11454
|
+
"integrity": "sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==",
|
|
11455
|
+
"license": "MIT"
|
|
11456
|
+
},
|
|
11006
11457
|
"node_modules/lodash.isinteger": {
|
|
11007
11458
|
"version": "4.0.4",
|
|
11008
11459
|
"resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz",
|
|
11009
11460
|
"integrity": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==",
|
|
11010
11461
|
"license": "MIT"
|
|
11011
11462
|
},
|
|
11463
|
+
"node_modules/lodash.isnil": {
|
|
11464
|
+
"version": "4.0.0",
|
|
11465
|
+
"resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz",
|
|
11466
|
+
"integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==",
|
|
11467
|
+
"license": "MIT"
|
|
11468
|
+
},
|
|
11012
11469
|
"node_modules/lodash.isnumber": {
|
|
11013
11470
|
"version": "3.0.3",
|
|
11014
11471
|
"resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz",
|
|
@@ -11027,6 +11484,12 @@
|
|
|
11027
11484
|
"integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==",
|
|
11028
11485
|
"license": "MIT"
|
|
11029
11486
|
},
|
|
11487
|
+
"node_modules/lodash.isundefined": {
|
|
11488
|
+
"version": "3.0.1",
|
|
11489
|
+
"resolved": "https://registry.npmjs.org/lodash.isundefined/-/lodash.isundefined-3.0.1.tgz",
|
|
11490
|
+
"integrity": "sha512-MXB1is3s899/cD8jheYYE2V9qTHwKvt+npCwpD+1Sxm3Q3cECXCiYHjeHWXNwr6Q0SOBPrYUDxendrO6goVTEA==",
|
|
11491
|
+
"license": "MIT"
|
|
11492
|
+
},
|
|
11030
11493
|
"node_modules/lodash.memoize": {
|
|
11031
11494
|
"version": "4.1.2",
|
|
11032
11495
|
"resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz",
|
|
@@ -11047,6 +11510,18 @@
|
|
|
11047
11510
|
"integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==",
|
|
11048
11511
|
"license": "MIT"
|
|
11049
11512
|
},
|
|
11513
|
+
"node_modules/lodash.union": {
|
|
11514
|
+
"version": "4.6.0",
|
|
11515
|
+
"resolved": "https://registry.npmjs.org/lodash.union/-/lodash.union-4.6.0.tgz",
|
|
11516
|
+
"integrity": "sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==",
|
|
11517
|
+
"license": "MIT"
|
|
11518
|
+
},
|
|
11519
|
+
"node_modules/lodash.uniq": {
|
|
11520
|
+
"version": "4.5.0",
|
|
11521
|
+
"resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
|
|
11522
|
+
"integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==",
|
|
11523
|
+
"license": "MIT"
|
|
11524
|
+
},
|
|
11050
11525
|
"node_modules/log-symbols": {
|
|
11051
11526
|
"version": "4.1.0",
|
|
11052
11527
|
"resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz",
|
|
@@ -11981,6 +12456,21 @@
|
|
|
11981
12456
|
"winston": "^3.0.0"
|
|
11982
12457
|
}
|
|
11983
12458
|
},
|
|
12459
|
+
"node_modules/nestjs-cls": {
|
|
12460
|
+
"version": "5.4.3",
|
|
12461
|
+
"resolved": "https://registry.npmjs.org/nestjs-cls/-/nestjs-cls-5.4.3.tgz",
|
|
12462
|
+
"integrity": "sha512-yHEHyVoe6rsvj3XRPFonBKPXPjDREyHfKZ9PTStSLJTZAV3wey1Q89TquSj6QciqXB5387GiHv9DG+ja6iAUHw==",
|
|
12463
|
+
"license": "MIT",
|
|
12464
|
+
"engines": {
|
|
12465
|
+
"node": ">=18"
|
|
12466
|
+
},
|
|
12467
|
+
"peerDependencies": {
|
|
12468
|
+
"@nestjs/common": ">= 10 < 12",
|
|
12469
|
+
"@nestjs/core": ">= 10 < 12",
|
|
12470
|
+
"reflect-metadata": "*",
|
|
12471
|
+
"rxjs": ">= 7"
|
|
12472
|
+
}
|
|
12473
|
+
},
|
|
11984
12474
|
"node_modules/netmask": {
|
|
11985
12475
|
"version": "2.0.2",
|
|
11986
12476
|
"resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz",
|
|
@@ -12096,7 +12586,6 @@
|
|
|
12096
12586
|
"version": "3.0.0",
|
|
12097
12587
|
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
|
|
12098
12588
|
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
|
|
12099
|
-
"devOptional": true,
|
|
12100
12589
|
"license": "MIT",
|
|
12101
12590
|
"engines": {
|
|
12102
12591
|
"node": ">=0.10.0"
|
|
@@ -12407,6 +12896,12 @@
|
|
|
12407
12896
|
"integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
|
|
12408
12897
|
"license": "BlueOak-1.0.0"
|
|
12409
12898
|
},
|
|
12899
|
+
"node_modules/pako": {
|
|
12900
|
+
"version": "1.0.11",
|
|
12901
|
+
"resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz",
|
|
12902
|
+
"integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==",
|
|
12903
|
+
"license": "(MIT AND Zlib)"
|
|
12904
|
+
},
|
|
12410
12905
|
"node_modules/parent-module": {
|
|
12411
12906
|
"version": "1.0.1",
|
|
12412
12907
|
"resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
|
|
@@ -13328,6 +13823,27 @@
|
|
|
13328
13823
|
"util-deprecate": "~1.0.1"
|
|
13329
13824
|
}
|
|
13330
13825
|
},
|
|
13826
|
+
"node_modules/readdir-glob": {
|
|
13827
|
+
"version": "1.1.3",
|
|
13828
|
+
"resolved": "https://registry.npmjs.org/readdir-glob/-/readdir-glob-1.1.3.tgz",
|
|
13829
|
+
"integrity": "sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==",
|
|
13830
|
+
"license": "Apache-2.0",
|
|
13831
|
+
"dependencies": {
|
|
13832
|
+
"minimatch": "^5.1.0"
|
|
13833
|
+
}
|
|
13834
|
+
},
|
|
13835
|
+
"node_modules/readdir-glob/node_modules/minimatch": {
|
|
13836
|
+
"version": "5.1.6",
|
|
13837
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
|
|
13838
|
+
"integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
|
|
13839
|
+
"license": "ISC",
|
|
13840
|
+
"dependencies": {
|
|
13841
|
+
"brace-expansion": "^2.0.1"
|
|
13842
|
+
},
|
|
13843
|
+
"engines": {
|
|
13844
|
+
"node": ">=10"
|
|
13845
|
+
}
|
|
13846
|
+
},
|
|
13331
13847
|
"node_modules/readdirp": {
|
|
13332
13848
|
"version": "3.6.0",
|
|
13333
13849
|
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
|
|
@@ -13611,6 +14127,18 @@
|
|
|
13611
14127
|
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
|
|
13612
14128
|
"license": "MIT"
|
|
13613
14129
|
},
|
|
14130
|
+
"node_modules/saxes": {
|
|
14131
|
+
"version": "5.0.1",
|
|
14132
|
+
"resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz",
|
|
14133
|
+
"integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==",
|
|
14134
|
+
"license": "ISC",
|
|
14135
|
+
"dependencies": {
|
|
14136
|
+
"xmlchars": "^2.2.0"
|
|
14137
|
+
},
|
|
14138
|
+
"engines": {
|
|
14139
|
+
"node": ">=10"
|
|
14140
|
+
}
|
|
14141
|
+
},
|
|
13614
14142
|
"node_modules/schema-utils": {
|
|
13615
14143
|
"version": "3.3.0",
|
|
13616
14144
|
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
|
|
@@ -13775,6 +14303,12 @@
|
|
|
13775
14303
|
"node": ">= 0.4"
|
|
13776
14304
|
}
|
|
13777
14305
|
},
|
|
14306
|
+
"node_modules/setimmediate": {
|
|
14307
|
+
"version": "1.0.5",
|
|
14308
|
+
"resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
|
|
14309
|
+
"integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==",
|
|
14310
|
+
"license": "MIT"
|
|
14311
|
+
},
|
|
13778
14312
|
"node_modules/setprototypeof": {
|
|
13779
14313
|
"version": "1.2.0",
|
|
13780
14314
|
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
|
|
@@ -14815,6 +15349,15 @@
|
|
|
14815
15349
|
"node": ">=12"
|
|
14816
15350
|
}
|
|
14817
15351
|
},
|
|
15352
|
+
"node_modules/traverse": {
|
|
15353
|
+
"version": "0.3.9",
|
|
15354
|
+
"resolved": "https://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz",
|
|
15355
|
+
"integrity": "sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==",
|
|
15356
|
+
"license": "MIT/X11",
|
|
15357
|
+
"engines": {
|
|
15358
|
+
"node": "*"
|
|
15359
|
+
}
|
|
15360
|
+
},
|
|
14818
15361
|
"node_modules/tree-kill": {
|
|
14819
15362
|
"version": "1.2.2",
|
|
14820
15363
|
"resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz",
|
|
@@ -15391,6 +15934,24 @@
|
|
|
15391
15934
|
"node": ">= 0.8"
|
|
15392
15935
|
}
|
|
15393
15936
|
},
|
|
15937
|
+
"node_modules/unzipper": {
|
|
15938
|
+
"version": "0.10.14",
|
|
15939
|
+
"resolved": "https://registry.npmjs.org/unzipper/-/unzipper-0.10.14.tgz",
|
|
15940
|
+
"integrity": "sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==",
|
|
15941
|
+
"license": "MIT",
|
|
15942
|
+
"dependencies": {
|
|
15943
|
+
"big-integer": "^1.6.17",
|
|
15944
|
+
"binary": "~0.3.0",
|
|
15945
|
+
"bluebird": "~3.4.1",
|
|
15946
|
+
"buffer-indexof-polyfill": "~1.0.0",
|
|
15947
|
+
"duplexer2": "~0.1.4",
|
|
15948
|
+
"fstream": "^1.0.12",
|
|
15949
|
+
"graceful-fs": "^4.2.2",
|
|
15950
|
+
"listenercount": "~1.0.1",
|
|
15951
|
+
"readable-stream": "~2.3.6",
|
|
15952
|
+
"setimmediate": "~1.0.4"
|
|
15953
|
+
}
|
|
15954
|
+
},
|
|
15394
15955
|
"node_modules/update-browserslist-db": {
|
|
15395
15956
|
"version": "1.1.2",
|
|
15396
15957
|
"resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.2.tgz",
|
|
@@ -15963,6 +16524,12 @@
|
|
|
15963
16524
|
"node": ">=0.8"
|
|
15964
16525
|
}
|
|
15965
16526
|
},
|
|
16527
|
+
"node_modules/xmlchars": {
|
|
16528
|
+
"version": "2.2.0",
|
|
16529
|
+
"resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
|
|
16530
|
+
"integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==",
|
|
16531
|
+
"license": "MIT"
|
|
16532
|
+
},
|
|
15966
16533
|
"node_modules/xtend": {
|
|
15967
16534
|
"version": "4.0.2",
|
|
15968
16535
|
"resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
|
|
@@ -16047,6 +16614,55 @@
|
|
|
16047
16614
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
16048
16615
|
}
|
|
16049
16616
|
},
|
|
16617
|
+
"node_modules/zip-stream": {
|
|
16618
|
+
"version": "4.1.1",
|
|
16619
|
+
"resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-4.1.1.tgz",
|
|
16620
|
+
"integrity": "sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ==",
|
|
16621
|
+
"license": "MIT",
|
|
16622
|
+
"dependencies": {
|
|
16623
|
+
"archiver-utils": "^3.0.4",
|
|
16624
|
+
"compress-commons": "^4.1.2",
|
|
16625
|
+
"readable-stream": "^3.6.0"
|
|
16626
|
+
},
|
|
16627
|
+
"engines": {
|
|
16628
|
+
"node": ">= 10"
|
|
16629
|
+
}
|
|
16630
|
+
},
|
|
16631
|
+
"node_modules/zip-stream/node_modules/archiver-utils": {
|
|
16632
|
+
"version": "3.0.4",
|
|
16633
|
+
"resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-3.0.4.tgz",
|
|
16634
|
+
"integrity": "sha512-KVgf4XQVrTjhyWmx6cte4RxonPLR9onExufI1jhvw/MQ4BB6IsZD5gT8Lq+u/+pRkWna/6JoHpiQioaqFP5Rzw==",
|
|
16635
|
+
"license": "MIT",
|
|
16636
|
+
"dependencies": {
|
|
16637
|
+
"glob": "^7.2.3",
|
|
16638
|
+
"graceful-fs": "^4.2.0",
|
|
16639
|
+
"lazystream": "^1.0.0",
|
|
16640
|
+
"lodash.defaults": "^4.2.0",
|
|
16641
|
+
"lodash.difference": "^4.5.0",
|
|
16642
|
+
"lodash.flatten": "^4.4.0",
|
|
16643
|
+
"lodash.isplainobject": "^4.0.6",
|
|
16644
|
+
"lodash.union": "^4.6.0",
|
|
16645
|
+
"normalize-path": "^3.0.0",
|
|
16646
|
+
"readable-stream": "^3.6.0"
|
|
16647
|
+
},
|
|
16648
|
+
"engines": {
|
|
16649
|
+
"node": ">= 10"
|
|
16650
|
+
}
|
|
16651
|
+
},
|
|
16652
|
+
"node_modules/zip-stream/node_modules/readable-stream": {
|
|
16653
|
+
"version": "3.6.2",
|
|
16654
|
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
|
|
16655
|
+
"integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
|
|
16656
|
+
"license": "MIT",
|
|
16657
|
+
"dependencies": {
|
|
16658
|
+
"inherits": "^2.0.3",
|
|
16659
|
+
"string_decoder": "^1.1.1",
|
|
16660
|
+
"util-deprecate": "^1.0.1"
|
|
16661
|
+
},
|
|
16662
|
+
"engines": {
|
|
16663
|
+
"node": ">= 6"
|
|
16664
|
+
}
|
|
16665
|
+
},
|
|
16050
16666
|
"node_modules/zod": {
|
|
16051
16667
|
"version": "3.23.8",
|
|
16052
16668
|
"resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@nestjs/serve-static": "^4.0.2",
|
|
43
43
|
"@nestjs/swagger": "^7.2.0",
|
|
44
44
|
"@nestjs/typeorm": "^10.0.1",
|
|
45
|
-
"@solidstarters/solid-core": "^1.2.
|
|
45
|
+
"@solidstarters/solid-core": "^1.2.93",
|
|
46
46
|
"@types/luxon": "^3.4.2",
|
|
47
47
|
"amqplib": "^0.10.4",
|
|
48
48
|
"axios": "^1.7.0",
|
|
@@ -74,12 +74,13 @@
|
|
|
74
74
|
"typeorm-naming-strategies": "^4.1.0",
|
|
75
75
|
"uuid": "^9.0.1",
|
|
76
76
|
"winston": "^3.17.0",
|
|
77
|
-
"xlsx": "^0.18.5"
|
|
77
|
+
"xlsx": "^0.18.5",
|
|
78
|
+
"nestjs-cls": "^5.4.3"
|
|
78
79
|
},
|
|
79
80
|
"devDependencies": {
|
|
80
81
|
"@nestjs/cli": "^10.0.0",
|
|
81
82
|
"@nestjs/testing": "^10.0.0",
|
|
82
|
-
"@solidstarters/solid-code-builder": "^1.0.
|
|
83
|
+
"@solidstarters/solid-code-builder": "^1.0.27",
|
|
83
84
|
"@types/express": "^4.17.17",
|
|
84
85
|
"@types/hapi__joi": "^17.1.12",
|
|
85
86
|
"@types/jest": "^29.5.2",
|
|
@@ -10,6 +10,8 @@ import { EventEmitterModule } from '@nestjs/event-emitter';
|
|
|
10
10
|
import { DefaultDBModule } from './app-default-database.module';
|
|
11
11
|
import { WinstonModule } from 'nest-winston';
|
|
12
12
|
import { WinstonLoggerConfig } from '@solidstarters/solid-core';
|
|
13
|
+
import { ClsModule } from 'nestjs-cls';
|
|
14
|
+
|
|
13
15
|
|
|
14
16
|
@Module({
|
|
15
17
|
imports: [
|
|
@@ -43,6 +45,13 @@ import { WinstonLoggerConfig } from '@solidstarters/solid-core';
|
|
|
43
45
|
|
|
44
46
|
EventEmitterModule.forRoot(),
|
|
45
47
|
|
|
48
|
+
ClsModule.forRoot({
|
|
49
|
+
global: true,
|
|
50
|
+
middleware: {
|
|
51
|
+
mount: true,
|
|
52
|
+
}
|
|
53
|
+
}),
|
|
54
|
+
|
|
46
55
|
],
|
|
47
56
|
controllers: [],
|
|
48
57
|
providers: [
|
|
@@ -7,7 +7,7 @@ import { Inter } from "next/font/google";
|
|
|
7
7
|
import { GlobalProvider } from "./GlobalProvider";
|
|
8
8
|
import { PrimeReactProvider } from "primereact/api";
|
|
9
9
|
import { LayoutProvider } from "@solidstarters/solid-core-ui";
|
|
10
|
-
import {
|
|
10
|
+
import { SolidThemeProvider } from "@solidstarters/solid-core-ui";
|
|
11
11
|
|
|
12
12
|
const inter = Inter({
|
|
13
13
|
subsets: ["latin"],
|
|
@@ -36,13 +36,16 @@ export default async function RootLayout({ children }: { children: React.ReactNo
|
|
|
36
36
|
<meta content="width=device-width, initial-scale=1" name="viewport" />
|
|
37
37
|
<meta name="description" content="Generated by create next app" />
|
|
38
38
|
<link rel="icon" href="/favicon.ico" />
|
|
39
|
-
|
|
40
|
-
<
|
|
39
|
+
<link id="theme-css" href={`/themes/solid-light-purple/theme.css`} rel="stylesheet"></link>
|
|
40
|
+
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" rel="stylesheet" />
|
|
41
|
+
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded" rel="stylesheet" />
|
|
42
|
+
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp" rel="stylesheet" />
|
|
41
43
|
</head>
|
|
42
44
|
<body>
|
|
43
45
|
<GlobalProvider entities={solidEntities}>
|
|
44
46
|
<PrimeReactProvider>
|
|
45
47
|
<LayoutProvider>
|
|
48
|
+
<SolidThemeProvider />
|
|
46
49
|
{/* <div className="layoutPage">{children}</div> */}
|
|
47
50
|
{/* {process.env.NEXT_PUBLIC_ENABLE_CUSTOM_HEADER_FOOTER == "true" && <CustomHeader />} */}
|
|
48
51
|
{children}
|
|
@@ -46,9 +46,18 @@ const nextConfig = {
|
|
|
46
46
|
},
|
|
47
47
|
images: {
|
|
48
48
|
domains: ["res.cloudinary.com"],
|
|
49
|
+
remotePatterns: getRemotePatterns(),
|
|
49
50
|
},
|
|
50
51
|
};
|
|
51
52
|
|
|
53
|
+
function getRemotePatterns(){
|
|
54
|
+
try {
|
|
55
|
+
return JSON.parse(process.env.NEXT_PUBLIC_REMOTE_PATTERNS || '[]');
|
|
56
|
+
} catch (error) {
|
|
57
|
+
return [];
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
52
61
|
|
|
53
62
|
|
|
54
63
|
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"@codemirror/theme-one-dark": "^6.1.2",
|
|
14
14
|
"@hello-pangea/dnd": "^17.0.0",
|
|
15
15
|
"@reduxjs/toolkit": "^1.9.5",
|
|
16
|
-
"@solidstarters/solid-core-ui": "^1.1.
|
|
16
|
+
"@solidstarters/solid-core-ui": "^1.1.112",
|
|
17
17
|
"@types/node": "20.5.9",
|
|
18
18
|
"@types/react": "18.2.21",
|
|
19
19
|
"@types/react-dom": "18.2.7",
|
|
@@ -962,9 +962,9 @@
|
|
|
962
962
|
}
|
|
963
963
|
},
|
|
964
964
|
"node_modules/@solidstarters/solid-core-ui": {
|
|
965
|
-
"version": "1.1.
|
|
966
|
-
"resolved": "https://registry.npmjs.org/@solidstarters/solid-core-ui/-/solid-core-ui-1.1.
|
|
967
|
-
"integrity": "sha512-
|
|
965
|
+
"version": "1.1.112",
|
|
966
|
+
"resolved": "https://registry.npmjs.org/@solidstarters/solid-core-ui/-/solid-core-ui-1.1.112.tgz",
|
|
967
|
+
"integrity": "sha512-ew1qSWlx4NYSJHdOBkFWS1DUJIrWz+Pp3oCvsWpyiF7lhU+nuGepK3MX4UCz3fIbNPTLuYgGUuUXyYYcYNUDeA==",
|
|
968
968
|
"license": "ISC",
|
|
969
969
|
"dependencies": {
|
|
970
970
|
"@hello-pangea/dnd": "^17.0.0",
|
|
@@ -994,6 +994,7 @@
|
|
|
994
994
|
"qs": "^6.13.0",
|
|
995
995
|
"quill": "^2.0.3",
|
|
996
996
|
"react-pdf": "^9.2.1",
|
|
997
|
+
"react-range": "^1.10.0",
|
|
997
998
|
"stripe": "^13.5.0",
|
|
998
999
|
"uuid": "^10.0.0",
|
|
999
1000
|
"xlsx": "^0.18.5",
|
|
@@ -6681,6 +6682,16 @@
|
|
|
6681
6682
|
"react": ">=0.11.0"
|
|
6682
6683
|
}
|
|
6683
6684
|
},
|
|
6685
|
+
"node_modules/react-range": {
|
|
6686
|
+
"version": "1.10.0",
|
|
6687
|
+
"resolved": "https://registry.npmjs.org/react-range/-/react-range-1.10.0.tgz",
|
|
6688
|
+
"integrity": "sha512-kDo0LiBUHIQIP8menx0UoxTnHr7UXBYpIYl/DR9jCaO1o29VwvCLpkP/qOTNQz5hkJadPg1uEM07XJcJ1XGoKw==",
|
|
6689
|
+
"license": "MIT",
|
|
6690
|
+
"peerDependencies": {
|
|
6691
|
+
"react": "*",
|
|
6692
|
+
"react-dom": "*"
|
|
6693
|
+
}
|
|
6694
|
+
},
|
|
6684
6695
|
"node_modules/react-redux": {
|
|
6685
6696
|
"version": "8.1.3",
|
|
6686
6697
|
"resolved": "https://registry.npmjs.org/react-redux/-/react-redux-8.1.3.tgz",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"@codemirror/theme-one-dark": "^6.1.2",
|
|
16
16
|
"@hello-pangea/dnd": "^17.0.0",
|
|
17
17
|
"@reduxjs/toolkit": "^1.9.5",
|
|
18
|
-
"@solidstarters/solid-core-ui": "^1.1.
|
|
18
|
+
"@solidstarters/solid-core-ui": "^1.1.112",
|
|
19
19
|
"@types/node": "20.5.9",
|
|
20
20
|
"@types/react": "18.2.21",
|
|
21
21
|
"@types/react-dom": "18.2.7",
|
|
@@ -20,6 +20,10 @@ import { themeReducer } from '@solidstarters/solid-core-ui';
|
|
|
20
20
|
import { userReducer } from "@solidstarters/solid-core-ui";
|
|
21
21
|
import { solidSettingsApi } from "@solidstarters/solid-core-ui";
|
|
22
22
|
import { roleApi } from "@solidstarters/solid-core-ui";
|
|
23
|
+
import { exportTemplateApi } from "@solidstarters/solid-core-ui";
|
|
24
|
+
import { solidChatterMessageApi } from "@solidstarters/solid-core-ui";
|
|
25
|
+
import { solidServiceApi } from "@solidstarters/solid-core-ui";
|
|
26
|
+
|
|
23
27
|
export function initializeStore(entities: string[] = []) {
|
|
24
28
|
|
|
25
29
|
const reducers = {
|
|
@@ -37,6 +41,10 @@ export function initializeStore(entities: string[] = []) {
|
|
|
37
41
|
[solidMenusApi.reducerPath]: solidMenusApi.reducer,
|
|
38
42
|
[solidSettingsApi.reducerPath]: solidSettingsApi.reducer,
|
|
39
43
|
[roleApi.reducerPath]: roleApi.reducer,
|
|
44
|
+
[solidChatterMessageApi.reducerPath]: solidChatterMessageApi.reducer,
|
|
45
|
+
[exportTemplateApi.reducerPath]:exportTemplateApi.reducer,
|
|
46
|
+
[solidServiceApi.reducerPath]: solidServiceApi.reducer,
|
|
47
|
+
|
|
40
48
|
// This has now become dynamica and is added using the for loop below
|
|
41
49
|
// [solidCountryApi.reducerPath]: solidCountryApi.reducer,
|
|
42
50
|
|
|
@@ -59,6 +67,9 @@ export function initializeStore(entities: string[] = []) {
|
|
|
59
67
|
solidMenusApi.middleware,
|
|
60
68
|
solidSettingsApi.middleware,
|
|
61
69
|
roleApi.middleware,
|
|
70
|
+
solidChatterMessageApi.middleware,
|
|
71
|
+
exportTemplateApi.middleware,
|
|
72
|
+
solidServiceApi.middleware,
|
|
62
73
|
// This has now become dynamica and is added using the for loop below
|
|
63
74
|
// solidCountryApi.middleware
|
|
64
75
|
];
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Upgrade solid api dependencies
|
|
2
|
+
npm upgrade --prefix solid-api @solidstarters/solid-core
|
|
3
|
+
npm upgrade --prefix solid-api @solidstarters/solid-code-builder
|
|
4
|
+
# Upgrade solid ui dependencies
|
|
5
|
+
npm upgrade --prefix solid-ui @solidstarters/solid-core-ui
|
|
6
|
+
## copy the theme files from node modules to the public/themes folder within solid-ui
|
|
7
|
+
npm run --prefix solid-ui postinstall
|
|
8
|
+
# cd into solid-api directory and run the rebuild.sh & solid seed command
|
|
9
|
+
cd solid-api && ./rebuild.sh && solid seed && cd ..
|