@datadog/openfeature-node-server 0.1.0-preview.3 → 0.1.0-preview.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/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # Datadog OpenFeature Node.js Server Client
2
+
3
+ This package provides OpenFeature integration for Node.js server environments and is designed exclusively for internal Datadog use. Support is not provided for external organizations or third-party usage.
package/cjs/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const SDK_VERSION: string;
1
+ export * from './provider';
2
2
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,QAAA,MAAM,WAAW,QAA6B,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAA"}
package/cjs/index.js CHANGED
@@ -1,4 +1,20 @@
1
1
  "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./provider"), exports);
2
18
  // Build environment placeholder for testing
3
19
  const SDK_VERSION = "dev";
4
20
  //# sourceMappingURL=index.js.map
package/cjs/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA,4CAA4C;AAC5C,MAAM,WAAW,GAAG,0BAA0B,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA0B;AAE1B,4CAA4C;AAC5C,MAAM,WAAW,GAAG,0BAA0B,CAAA"}
package/esm/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const SDK_VERSION: string;
1
+ export * from './provider';
2
2
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,QAAA,MAAM,WAAW,QAA6B,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAA"}
package/esm/index.js CHANGED
@@ -1,4 +1,4 @@
1
- "use strict";
1
+ export * from './provider';
2
2
  // Build environment placeholder for testing
3
3
  const SDK_VERSION = "dev";
4
4
  //# sourceMappingURL=index.js.map
package/esm/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA,4CAA4C;AAC5C,MAAM,WAAW,GAAG,0BAA0B,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAA;AAE1B,4CAA4C;AAC5C,MAAM,WAAW,GAAG,0BAA0B,CAAA"}
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@datadog/openfeature-node-server",
3
- "version": "0.1.0-preview.3",
3
+ "version": "0.1.0-preview.5",
4
4
  "description": "React Native bindings for OpenFeature (wraps @datadog/flagging-core)",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/DataDog/openfeature-js-client#readme",
7
7
  "repository": {
8
8
  "type": "git",
9
- "url": "git+https://github.com/DataDog/openfeature-js-client.git",
9
+ "url": "https://github.com/DataDog/openfeature-js-client.git",
10
10
  "directory": "packages/node-server"
11
11
  },
12
12
  "main": "cjs/index.js",
@@ -33,11 +33,11 @@
33
33
  "typecheck": "tsc --noEmit"
34
34
  },
35
35
  "dependencies": {
36
- "@datadog/flagging-core": "0.1.0-preview.3",
36
+ "@datadog/flagging-core": "0.1.0-preview.5",
37
37
  "@openfeature/server-sdk": "^1.19.0"
38
38
  },
39
39
  "peerDependencies": {
40
- "@openfeature/core": "^1.8.0"
40
+ "@openfeature/server-sdk": "^1.19.0"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@openfeature/core": "^1.9.0",