New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@openfeature/flagd-web-provider

Package Overview
Dependencies
Maintainers
2
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@openfeature/flagd-web-provider - npm Package Compare versions

Comparing version

to
0.5.1

2

package.json
{
"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;
}