@nodii/grpc-interceptors 0.0.1

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/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # @nodii/grpc-interceptors
2
+
3
+ Placeholder package at v0.0.1. Implementation lands at v0.1.0 per the locked feature_doc.
4
+
5
+ **Spec**: `https://planning.dev.nucleus-cloud.in/api/v1/feature-docs?serviceId=nodii-libs&docKey=grpc-interceptors`
@@ -0,0 +1,3 @@
1
+ export declare const LIB_NAME = "grpc-interceptors";
2
+ export declare const VERSION = "0.0.1";
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,QAAQ,sBAAsB,CAAC;AAC5C,eAAO,MAAM,OAAO,UAAU,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,7 @@
1
+ // @nodii/grpc-interceptors — placeholder at v0.0.1.
2
+ // Implementation lands at v0.1.0 per the locked feature_doc.
3
+ //
4
+ // Spec: https://planning.dev.nucleus-cloud.in/api/v1/feature-docs?serviceId=nodii-libs&docKey=grpc-interceptors
5
+ export const LIB_NAME = "grpc-interceptors";
6
+ export const VERSION = "0.0.1";
7
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,oDAAoD;AACpD,6DAA6D;AAC7D,EAAE;AACF,gHAAgH;AAEhH,MAAM,CAAC,MAAM,QAAQ,GAAG,mBAAmB,CAAC;AAC5C,MAAM,CAAC,MAAM,OAAO,GAAG,OAAO,CAAC"}
package/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "@nodii/grpc-interceptors",
3
+ "version": "0.0.1",
4
+ "description": "Placeholder for @nodii/grpc-interceptors — implementation lands at v0.1.0",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "main": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "default": "./dist/index.js"
13
+ }
14
+ },
15
+ "files": ["dist"],
16
+ "publishConfig": {
17
+ "access": "public",
18
+ "provenance": true
19
+ },
20
+ "scripts": {
21
+ "build": "tsc",
22
+ "typecheck": "tsc --noEmit",
23
+ "test": "echo 'no tests yet; placeholder package'"
24
+ },
25
+ "devDependencies": {
26
+ "typescript": "^5.9.3"
27
+ },
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "https://github.com/cognion-nucleus/nodii-libs.git",
31
+ "directory": "ts/grpc-interceptors"
32
+ }
33
+ }