@openfeature/flagd-web-provider
Advanced tools
Comparing version
{ | ||
"name": "@openfeature/flagd-web-provider", | ||
"version": "0.5.0", | ||
"version": "0.5.1", | ||
"scripts": { | ||
@@ -5,0 +5,0 @@ "publish-if-not-exists": "cp $NPM_CONFIG_USERCONFIG .npmrc && if [ \"$(npm show $npm_package_name@$npm_package_version version)\" = \"$(npm run current-version -s)\" ]; then echo 'already published, skipping'; else npm publish --access public; fi", |
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; | ||
import { Message, proto3 } from "@bufbuild/protobuf"; | ||
import { Message, proto3, Struct } from "@bufbuild/protobuf"; | ||
/** | ||
@@ -136,5 +136,5 @@ * SyncFlagsRequest is the request initiating the server-streaming rpc. | ||
/** | ||
* @generated from field: repeated flagd.sync.v1.KeyValue metadata = 1; | ||
* @generated from field: google.protobuf.Struct metadata = 2; | ||
*/ | ||
metadata: KeyValue[]; | ||
metadata?: Struct; | ||
constructor(data?: PartialMessage<GetMetadataResponse>); | ||
@@ -149,24 +149,1 @@ static readonly runtime: typeof proto3; | ||
} | ||
/** | ||
* KeyValue represents a key/value pair | ||
* | ||
* @generated from message flagd.sync.v1.KeyValue | ||
*/ | ||
export declare class KeyValue extends Message<KeyValue> { | ||
/** | ||
* @generated from field: string key = 1; | ||
*/ | ||
key: string; | ||
/** | ||
* @generated from field: string value = 2; | ||
*/ | ||
value: string; | ||
constructor(data?: PartialMessage<KeyValue>); | ||
static readonly runtime: typeof proto3; | ||
static readonly typeName = "flagd.sync.v1.KeyValue"; | ||
static readonly fields: FieldList; | ||
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): KeyValue; | ||
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): KeyValue; | ||
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): KeyValue; | ||
static equals(a: KeyValue | PlainMessage<KeyValue> | undefined, b: KeyValue | PlainMessage<KeyValue> | undefined): boolean; | ||
} |
152664
-0.6%3280
-0.7%