@openfeature/flagd-provider 0.6.0 → 0.7.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 +7 -3
- package/index.cjs +62 -1790
- package/index.js +43 -1771
- package/package.json +5 -12
- package/{index.d.ts → src/index.d.ts} +0 -0
- package/{lib → src/lib}/configuration.d.ts +1 -1
- package/{lib → src/lib}/flagd-provider.d.ts +0 -0
- package/{lib → src/lib}/service/grpc/service.d.ts +0 -0
- package/{lib → src/lib}/service/service.d.ts +0 -0
- package/{proto → src/proto}/ts/google/protobuf/struct.d.ts +0 -0
- package/{proto → src/proto}/ts/schema/v1/schema.client.d.ts +15 -0
- package/{proto → src/proto}/ts/schema/v1/schema.d.ts +116 -20
- package/proto/ts/google/api/http.d.ts +0 -455
- package/proto/ts/google/protobuf/descriptor.d.ts +0 -1637
package/README.md
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
# Server-side
|
|
2
|
-
|
|
3
|
-

|
|
1
|
+
# Server-side flagd Provider
|
|
4
2
|
|
|
5
3
|
Flagd is a simple daemon for evaluating feature flags.
|
|
6
4
|
It is designed to conform to OpenFeature schema for flag definitions.
|
|
@@ -12,6 +10,12 @@ This repository and package provides the client code for interacting with it via
|
|
|
12
10
|
$ npm install @openfeature/flagd-provider
|
|
13
11
|
```
|
|
14
12
|
|
|
13
|
+
Required peer dependencies
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
$ npm install @openfeature/js-sdk
|
|
17
|
+
```
|
|
18
|
+
|
|
15
19
|
## Usage
|
|
16
20
|
|
|
17
21
|
The `FlagdProvider` supports multiple configuration options that determine now the SDK communicates with flagd.
|