@zthun/webigail-nest 4.0.4 → 4.0.5
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/index.cjs.map +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +8 -8
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","sources":["../src/http/http-service-token.mts","../src/http/http-module.mts"],"sourcesContent":["/**\n * The token symbol to inject the http service.\n */\nexport const ZHttpServiceToken = Symbol();\n","import { Module } from \"@nestjs/common\";\nimport { ZHttpService } from \"@zthun/webigail-http\";\nimport { ZHttpServiceToken } from \"./http-service-token.mjs\";\n\nconst ZHttpServiceProvider = {\n provide: ZHttpServiceToken,\n useValue: new ZHttpService(),\n};\n\n/**\n * A module that provides http services.\n */\n@Module({\n providers: [ZHttpServiceProvider, ZHttpService],\n exports: [ZHttpServiceProvider, ZHttpService],\n})\nexport class ZHttpModule {}\n"],"names":["ZHttpServiceToken","Symbol","ZHttpServiceProvider","provide","useValue","ZHttpService","ZHttpModule","providers","exports"],"mappings":";;;;;;;AAAA;;
|
|
1
|
+
{"version":3,"file":"index.cjs","sources":["../src/http/http-service-token.mts","../src/http/http-module.mts"],"sourcesContent":["/**\n * The token symbol to inject the http service.\n */\nexport const ZHttpServiceToken = Symbol();\n","import { Module } from \"@nestjs/common\";\nimport { ZHttpService } from \"@zthun/webigail-http\";\nimport { ZHttpServiceToken } from \"./http-service-token.mjs\";\n\nconst ZHttpServiceProvider = {\n provide: ZHttpServiceToken,\n useValue: new ZHttpService(),\n};\n\n/**\n * A module that provides http services.\n */\n@Module({\n providers: [ZHttpServiceProvider, ZHttpService],\n exports: [ZHttpServiceProvider, ZHttpService],\n})\nexport class ZHttpModule {}\n"],"names":["ZHttpServiceToken","Symbol","ZHttpServiceProvider","provide","useValue","ZHttpService","ZHttpModule","providers","exports"],"mappings":";;;;;;;AAAA;;IAGO,IAAMA,iBAAAA,GAAoBC,MAAAA;;;;;;;;;;;;;ACCjC,IAAMC,oBAAAA,GAAuB;IAC3BC,OAAAA,EAASH,iBAAAA;AACTI,IAAAA,QAAAA,EAAU,IAAIC,yBAAAA;AAChB,CAAA;AASOC,mBAAMA,GAAN,SAAMA,WAAAA,GAAAA;AAAAA,IAAAA,iBAAAA,CAAAA,IAAAA,EAAAA,WAAAA,CAAAA;AAAc;;;QAHzBC,SAAAA,EAAW;AAACL,YAAAA,oBAAAA;AAAsBG,YAAAA;AAAa,SAAA;QAC/CG,OAAAA,EAAS;AAACN,YAAAA,oBAAAA;AAAsBG,YAAAA;AAAa;;;;;;"}
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../src/http/http-service-token.mts","../src/http/http-module.mts"],"sourcesContent":["/**\n * The token symbol to inject the http service.\n */\nexport const ZHttpServiceToken = Symbol();\n","import { Module } from \"@nestjs/common\";\nimport { ZHttpService } from \"@zthun/webigail-http\";\nimport { ZHttpServiceToken } from \"./http-service-token.mjs\";\n\nconst ZHttpServiceProvider = {\n provide: ZHttpServiceToken,\n useValue: new ZHttpService(),\n};\n\n/**\n * A module that provides http services.\n */\n@Module({\n providers: [ZHttpServiceProvider, ZHttpService],\n exports: [ZHttpServiceProvider, ZHttpService],\n})\nexport class ZHttpModule {}\n"],"names":["ZHttpServiceToken","Symbol","ZHttpServiceProvider","provide","useValue","ZHttpService","ZHttpModule","providers","exports"],"mappings":";;;AAAA;;
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../src/http/http-service-token.mts","../src/http/http-module.mts"],"sourcesContent":["/**\n * The token symbol to inject the http service.\n */\nexport const ZHttpServiceToken = Symbol();\n","import { Module } from \"@nestjs/common\";\nimport { ZHttpService } from \"@zthun/webigail-http\";\nimport { ZHttpServiceToken } from \"./http-service-token.mjs\";\n\nconst ZHttpServiceProvider = {\n provide: ZHttpServiceToken,\n useValue: new ZHttpService(),\n};\n\n/**\n * A module that provides http services.\n */\n@Module({\n providers: [ZHttpServiceProvider, ZHttpService],\n exports: [ZHttpServiceProvider, ZHttpService],\n})\nexport class ZHttpModule {}\n"],"names":["ZHttpServiceToken","Symbol","ZHttpServiceProvider","provide","useValue","ZHttpService","ZHttpModule","providers","exports"],"mappings":";;;AAAA;;IAGO,IAAMA,iBAAAA,GAAoBC,MAAAA;;;;;;;;;;;;;ACCjC,IAAMC,oBAAAA,GAAuB;IAC3BC,OAAAA,EAASH,iBAAAA;AACTI,IAAAA,QAAAA,EAAU,IAAIC,YAAAA;AAChB,CAAA;AASO,IAAA,WAAMC,GAAN,SAAMA,WAAAA,GAAAA;AAAAA,IAAAA,iBAAAA,CAAAA,IAAAA,EAAAA,WAAAA,CAAAA;AAAc;;;QAHzBC,SAAAA,EAAW;AAACL,YAAAA,oBAAAA;AAAsBG,YAAAA;AAAa,SAAA;QAC/CG,OAAAA,EAAS;AAACN,YAAAA,oBAAAA;AAAsBG,YAAAA;AAAa;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zthun/webigail-nest",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.5",
|
|
4
4
|
"description": "A nest-js module that add the tokens and implementations for the http service in webigail-http.",
|
|
5
5
|
"author": "Anthony Bonta",
|
|
6
6
|
"license": "MIT",
|
|
@@ -25,16 +25,16 @@
|
|
|
25
25
|
"access": "public"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@zthun/webigail-http": "^4.0.
|
|
28
|
+
"@zthun/webigail-http": "^4.0.5"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@nestjs/common": "^11.1.
|
|
32
|
-
"@nestjs/core": "^11.1.
|
|
33
|
-
"@nestjs/testing": "^11.1.
|
|
34
|
-
"@zthun/janitor-build-config": "^19.
|
|
31
|
+
"@nestjs/common": "^11.1.4",
|
|
32
|
+
"@nestjs/core": "^11.1.4",
|
|
33
|
+
"@nestjs/testing": "^11.1.4",
|
|
34
|
+
"@zthun/janitor-build-config": "^19.3.1",
|
|
35
35
|
"reflect-metadata": "^0.2.2",
|
|
36
36
|
"rxjs": "^7.8.2",
|
|
37
|
-
"vite": "^
|
|
37
|
+
"vite": "^7.0.5",
|
|
38
38
|
"vitest": "^3.2.4"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"dist"
|
|
48
48
|
],
|
|
49
49
|
"sideEffects": false,
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "d1b7a745fdbcc52f14d859027bf94ce876800d2e"
|
|
51
51
|
}
|