@openfeature/flagd-provider 0.2.1 → 0.3.0
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 +2 -2
- package/index.cjs +285 -171
- package/index.js +285 -171
- package/lib/flagd-provider.d.ts +2 -2
- package/lib/service/http/service.d.ts +2 -2
- package/package.json +1 -1
- package/proto/ts/schema/v1/schema.client.d.ts +16 -6
- package/proto/ts/schema/v1/schema.d.ts +67 -17
package/README.md
CHANGED
|
@@ -28,11 +28,11 @@ The `FlagdProvider` client constructor takes a single optional argument with 3 f
|
|
|
28
28
|
OpenFeature.setProvider(new FlagdProvider({
|
|
29
29
|
service: 'grpc',
|
|
30
30
|
host: 'localhost',
|
|
31
|
-
port:
|
|
31
|
+
port: 8013,
|
|
32
32
|
}))
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
**service**: "http" | "grpc" _(defaults to http)_
|
|
36
36
|
**host**: string _(defaults to "localhost")_
|
|
37
|
-
**port**: number _(defaults to
|
|
37
|
+
**port**: number _(defaults to 8013)_
|
|
38
38
|
**protocol**: "http" | "https" _(defaults to http - only active for http service)_
|