@openfeature/flagd-provider 0.2.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/LICENSE +202 -0
- package/README.md +38 -0
- package/index.cjs +4699 -0
- package/index.d.ts +1 -0
- package/index.js +4672 -0
- package/lib/flagd-provider.d.ts +18 -0
- package/lib/service/Service.d.ts +7 -0
- package/lib/service/grpc/service.d.ts +16 -0
- package/lib/service/http/service.d.ts +16 -0
- package/package.json +27 -0
- package/proto/ts/google/api/http.d.ts +455 -0
- package/proto/ts/google/protobuf/descriptor.d.ts +1637 -0
- package/proto/ts/google/protobuf/struct.d.ts +184 -0
- package/proto/ts/schema/v1/schema.client.d.ts +61 -0
- package/proto/ts/schema/v1/schema.d.ts +236 -0
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
|
|
2
|
+
import type { IBinaryWriter } from "@protobuf-ts/runtime";
|
|
3
|
+
import type { BinaryReadOptions } from "@protobuf-ts/runtime";
|
|
4
|
+
import type { IBinaryReader } from "@protobuf-ts/runtime";
|
|
5
|
+
import type { PartialMessage } from "@protobuf-ts/runtime";
|
|
6
|
+
import type { JsonValue } from "@protobuf-ts/runtime";
|
|
7
|
+
import type { JsonReadOptions } from "@protobuf-ts/runtime";
|
|
8
|
+
import type { JsonWriteOptions } from "@protobuf-ts/runtime";
|
|
9
|
+
import { MessageType } from "@protobuf-ts/runtime";
|
|
10
|
+
/**
|
|
11
|
+
* `Struct` represents a structured data value, consisting of fields
|
|
12
|
+
* which map to dynamically typed values. In some languages, `Struct`
|
|
13
|
+
* might be supported by a native representation. For example, in
|
|
14
|
+
* scripting languages like JS a struct is represented as an
|
|
15
|
+
* object. The details of that representation are described together
|
|
16
|
+
* with the proto support for the language.
|
|
17
|
+
*
|
|
18
|
+
* The JSON representation for `Struct` is JSON object.
|
|
19
|
+
*
|
|
20
|
+
* @generated from protobuf message google.protobuf.Struct
|
|
21
|
+
*/
|
|
22
|
+
export interface Struct {
|
|
23
|
+
/**
|
|
24
|
+
* Unordered map of dynamically typed values.
|
|
25
|
+
*
|
|
26
|
+
* @generated from protobuf field: map<string, google.protobuf.Value> fields = 1;
|
|
27
|
+
*/
|
|
28
|
+
fields: {
|
|
29
|
+
[key: string]: Value;
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* `Value` represents a dynamically typed value which can be either
|
|
34
|
+
* null, a number, a string, a boolean, a recursive struct value, or a
|
|
35
|
+
* list of values. A producer of value is expected to set one of these
|
|
36
|
+
* variants. Absence of any variant indicates an error.
|
|
37
|
+
*
|
|
38
|
+
* The JSON representation for `Value` is JSON value.
|
|
39
|
+
*
|
|
40
|
+
* @generated from protobuf message google.protobuf.Value
|
|
41
|
+
*/
|
|
42
|
+
export interface Value {
|
|
43
|
+
/**
|
|
44
|
+
* @generated from protobuf oneof: kind
|
|
45
|
+
*/
|
|
46
|
+
kind: {
|
|
47
|
+
oneofKind: "nullValue";
|
|
48
|
+
/**
|
|
49
|
+
* Represents a null value.
|
|
50
|
+
*
|
|
51
|
+
* @generated from protobuf field: google.protobuf.NullValue null_value = 1;
|
|
52
|
+
*/
|
|
53
|
+
nullValue: NullValue;
|
|
54
|
+
} | {
|
|
55
|
+
oneofKind: "numberValue";
|
|
56
|
+
/**
|
|
57
|
+
* Represents a double value.
|
|
58
|
+
*
|
|
59
|
+
* @generated from protobuf field: double number_value = 2;
|
|
60
|
+
*/
|
|
61
|
+
numberValue: number;
|
|
62
|
+
} | {
|
|
63
|
+
oneofKind: "stringValue";
|
|
64
|
+
/**
|
|
65
|
+
* Represents a string value.
|
|
66
|
+
*
|
|
67
|
+
* @generated from protobuf field: string string_value = 3;
|
|
68
|
+
*/
|
|
69
|
+
stringValue: string;
|
|
70
|
+
} | {
|
|
71
|
+
oneofKind: "boolValue";
|
|
72
|
+
/**
|
|
73
|
+
* Represents a boolean value.
|
|
74
|
+
*
|
|
75
|
+
* @generated from protobuf field: bool bool_value = 4;
|
|
76
|
+
*/
|
|
77
|
+
boolValue: boolean;
|
|
78
|
+
} | {
|
|
79
|
+
oneofKind: "structValue";
|
|
80
|
+
/**
|
|
81
|
+
* Represents a structured value.
|
|
82
|
+
*
|
|
83
|
+
* @generated from protobuf field: google.protobuf.Struct struct_value = 5;
|
|
84
|
+
*/
|
|
85
|
+
structValue: Struct;
|
|
86
|
+
} | {
|
|
87
|
+
oneofKind: "listValue";
|
|
88
|
+
/**
|
|
89
|
+
* Represents a repeated `Value`.
|
|
90
|
+
*
|
|
91
|
+
* @generated from protobuf field: google.protobuf.ListValue list_value = 6;
|
|
92
|
+
*/
|
|
93
|
+
listValue: ListValue;
|
|
94
|
+
} | {
|
|
95
|
+
oneofKind: undefined;
|
|
96
|
+
};
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* `ListValue` is a wrapper around a repeated field of values.
|
|
100
|
+
*
|
|
101
|
+
* The JSON representation for `ListValue` is JSON array.
|
|
102
|
+
*
|
|
103
|
+
* @generated from protobuf message google.protobuf.ListValue
|
|
104
|
+
*/
|
|
105
|
+
export interface ListValue {
|
|
106
|
+
/**
|
|
107
|
+
* Repeated field of dynamically typed values.
|
|
108
|
+
*
|
|
109
|
+
* @generated from protobuf field: repeated google.protobuf.Value values = 1;
|
|
110
|
+
*/
|
|
111
|
+
values: Value[];
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* `NullValue` is a singleton enumeration to represent the null value for the
|
|
115
|
+
* `Value` type union.
|
|
116
|
+
*
|
|
117
|
+
* The JSON representation for `NullValue` is JSON `null`.
|
|
118
|
+
*
|
|
119
|
+
* @generated from protobuf enum google.protobuf.NullValue
|
|
120
|
+
*/
|
|
121
|
+
export declare enum NullValue {
|
|
122
|
+
/**
|
|
123
|
+
* Null value.
|
|
124
|
+
*
|
|
125
|
+
* @generated from protobuf enum value: NULL_VALUE = 0;
|
|
126
|
+
*/
|
|
127
|
+
NULL_VALUE = 0
|
|
128
|
+
}
|
|
129
|
+
declare class Struct$Type extends MessageType<Struct> {
|
|
130
|
+
constructor();
|
|
131
|
+
/**
|
|
132
|
+
* Encode `Struct` to JSON object.
|
|
133
|
+
*/
|
|
134
|
+
internalJsonWrite(message: Struct, options: JsonWriteOptions): JsonValue;
|
|
135
|
+
/**
|
|
136
|
+
* Decode `Struct` from JSON object.
|
|
137
|
+
*/
|
|
138
|
+
internalJsonRead(json: JsonValue, options: JsonReadOptions, target?: Struct): Struct;
|
|
139
|
+
create(value?: PartialMessage<Struct>): Struct;
|
|
140
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Struct): Struct;
|
|
141
|
+
private binaryReadMap1;
|
|
142
|
+
internalBinaryWrite(message: Struct, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
143
|
+
}
|
|
144
|
+
/**
|
|
145
|
+
* @generated MessageType for protobuf message google.protobuf.Struct
|
|
146
|
+
*/
|
|
147
|
+
export declare const Struct: Struct$Type;
|
|
148
|
+
declare class Value$Type extends MessageType<Value> {
|
|
149
|
+
constructor();
|
|
150
|
+
/**
|
|
151
|
+
* Encode `Value` to JSON value.
|
|
152
|
+
*/
|
|
153
|
+
internalJsonWrite(message: Value, options: JsonWriteOptions): JsonValue;
|
|
154
|
+
/**
|
|
155
|
+
* Decode `Value` from JSON value.
|
|
156
|
+
*/
|
|
157
|
+
internalJsonRead(json: JsonValue, options: JsonReadOptions, target?: Value): Value;
|
|
158
|
+
create(value?: PartialMessage<Value>): Value;
|
|
159
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Value): Value;
|
|
160
|
+
internalBinaryWrite(message: Value, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
161
|
+
}
|
|
162
|
+
/**
|
|
163
|
+
* @generated MessageType for protobuf message google.protobuf.Value
|
|
164
|
+
*/
|
|
165
|
+
export declare const Value: Value$Type;
|
|
166
|
+
declare class ListValue$Type extends MessageType<ListValue> {
|
|
167
|
+
constructor();
|
|
168
|
+
/**
|
|
169
|
+
* Encode `ListValue` to JSON array.
|
|
170
|
+
*/
|
|
171
|
+
internalJsonWrite(message: ListValue, options: JsonWriteOptions): JsonValue;
|
|
172
|
+
/**
|
|
173
|
+
* Decode `ListValue` from JSON array.
|
|
174
|
+
*/
|
|
175
|
+
internalJsonRead(json: JsonValue, options: JsonReadOptions, target?: ListValue): ListValue;
|
|
176
|
+
create(value?: PartialMessage<ListValue>): ListValue;
|
|
177
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ListValue): ListValue;
|
|
178
|
+
internalBinaryWrite(message: ListValue, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
179
|
+
}
|
|
180
|
+
/**
|
|
181
|
+
* @generated MessageType for protobuf message google.protobuf.ListValue
|
|
182
|
+
*/
|
|
183
|
+
export declare const ListValue: ListValue$Type;
|
|
184
|
+
export {};
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
|
2
|
+
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
|
|
3
|
+
import type { ResolveObjectResponse } from "./schema";
|
|
4
|
+
import type { ResolveObjectRequest } from "./schema";
|
|
5
|
+
import type { ResolveNumberResponse } from "./schema";
|
|
6
|
+
import type { ResolveNumberRequest } from "./schema";
|
|
7
|
+
import type { ResolveStringResponse } from "./schema";
|
|
8
|
+
import type { ResolveStringRequest } from "./schema";
|
|
9
|
+
import type { ResolveBooleanResponse } from "./schema";
|
|
10
|
+
import type { ResolveBooleanRequest } from "./schema";
|
|
11
|
+
import type { UnaryCall } from "@protobuf-ts/runtime-rpc";
|
|
12
|
+
import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
|
|
13
|
+
/**
|
|
14
|
+
* @generated from protobuf service schema.v1.Service
|
|
15
|
+
*/
|
|
16
|
+
export interface IServiceClient {
|
|
17
|
+
/**
|
|
18
|
+
* @generated from protobuf rpc: ResolveBoolean(schema.v1.ResolveBooleanRequest) returns (schema.v1.ResolveBooleanResponse);
|
|
19
|
+
*/
|
|
20
|
+
resolveBoolean(input: ResolveBooleanRequest, options?: RpcOptions): UnaryCall<ResolveBooleanRequest, ResolveBooleanResponse>;
|
|
21
|
+
/**
|
|
22
|
+
* @generated from protobuf rpc: ResolveString(schema.v1.ResolveStringRequest) returns (schema.v1.ResolveStringResponse);
|
|
23
|
+
*/
|
|
24
|
+
resolveString(input: ResolveStringRequest, options?: RpcOptions): UnaryCall<ResolveStringRequest, ResolveStringResponse>;
|
|
25
|
+
/**
|
|
26
|
+
* @generated from protobuf rpc: ResolveNumber(schema.v1.ResolveNumberRequest) returns (schema.v1.ResolveNumberResponse);
|
|
27
|
+
*/
|
|
28
|
+
resolveNumber(input: ResolveNumberRequest, options?: RpcOptions): UnaryCall<ResolveNumberRequest, ResolveNumberResponse>;
|
|
29
|
+
/**
|
|
30
|
+
* @generated from protobuf rpc: ResolveObject(schema.v1.ResolveObjectRequest) returns (schema.v1.ResolveObjectResponse);
|
|
31
|
+
*/
|
|
32
|
+
resolveObject(input: ResolveObjectRequest, options?: RpcOptions): UnaryCall<ResolveObjectRequest, ResolveObjectResponse>;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* @generated from protobuf service schema.v1.Service
|
|
36
|
+
*/
|
|
37
|
+
export declare class ServiceClient implements IServiceClient, ServiceInfo {
|
|
38
|
+
private readonly _transport;
|
|
39
|
+
typeName: string;
|
|
40
|
+
methods: import("@protobuf-ts/runtime-rpc").MethodInfo<any, any>[];
|
|
41
|
+
options: {
|
|
42
|
+
[extensionName: string]: import("@protobuf-ts/runtime").JsonValue;
|
|
43
|
+
};
|
|
44
|
+
constructor(_transport: RpcTransport);
|
|
45
|
+
/**
|
|
46
|
+
* @generated from protobuf rpc: ResolveBoolean(schema.v1.ResolveBooleanRequest) returns (schema.v1.ResolveBooleanResponse);
|
|
47
|
+
*/
|
|
48
|
+
resolveBoolean(input: ResolveBooleanRequest, options?: RpcOptions): UnaryCall<ResolveBooleanRequest, ResolveBooleanResponse>;
|
|
49
|
+
/**
|
|
50
|
+
* @generated from protobuf rpc: ResolveString(schema.v1.ResolveStringRequest) returns (schema.v1.ResolveStringResponse);
|
|
51
|
+
*/
|
|
52
|
+
resolveString(input: ResolveStringRequest, options?: RpcOptions): UnaryCall<ResolveStringRequest, ResolveStringResponse>;
|
|
53
|
+
/**
|
|
54
|
+
* @generated from protobuf rpc: ResolveNumber(schema.v1.ResolveNumberRequest) returns (schema.v1.ResolveNumberResponse);
|
|
55
|
+
*/
|
|
56
|
+
resolveNumber(input: ResolveNumberRequest, options?: RpcOptions): UnaryCall<ResolveNumberRequest, ResolveNumberResponse>;
|
|
57
|
+
/**
|
|
58
|
+
* @generated from protobuf rpc: ResolveObject(schema.v1.ResolveObjectRequest) returns (schema.v1.ResolveObjectResponse);
|
|
59
|
+
*/
|
|
60
|
+
resolveObject(input: ResolveObjectRequest, options?: RpcOptions): UnaryCall<ResolveObjectRequest, ResolveObjectResponse>;
|
|
61
|
+
}
|
|
@@ -0,0 +1,236 @@
|
|
|
1
|
+
import { ServiceType } from "@protobuf-ts/runtime-rpc";
|
|
2
|
+
import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
|
|
3
|
+
import type { IBinaryWriter } from "@protobuf-ts/runtime";
|
|
4
|
+
import type { BinaryReadOptions } from "@protobuf-ts/runtime";
|
|
5
|
+
import type { IBinaryReader } from "@protobuf-ts/runtime";
|
|
6
|
+
import type { PartialMessage } from "@protobuf-ts/runtime";
|
|
7
|
+
import { MessageType } from "@protobuf-ts/runtime";
|
|
8
|
+
import { Struct } from "../../google/protobuf/struct";
|
|
9
|
+
/**
|
|
10
|
+
* @generated from protobuf message schema.v1.ErrorResponse
|
|
11
|
+
*/
|
|
12
|
+
export interface ErrorResponse {
|
|
13
|
+
/**
|
|
14
|
+
* @generated from protobuf field: string error_code = 1;
|
|
15
|
+
*/
|
|
16
|
+
errorCode: string;
|
|
17
|
+
/**
|
|
18
|
+
* @generated from protobuf field: string reason = 2;
|
|
19
|
+
*/
|
|
20
|
+
reason: string;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* @generated from protobuf message schema.v1.ResolveBooleanRequest
|
|
24
|
+
*/
|
|
25
|
+
export interface ResolveBooleanRequest {
|
|
26
|
+
/**
|
|
27
|
+
* @generated from protobuf field: string flag_key = 1;
|
|
28
|
+
*/
|
|
29
|
+
flagKey: string;
|
|
30
|
+
/**
|
|
31
|
+
* @generated from protobuf field: google.protobuf.Struct context = 2;
|
|
32
|
+
*/
|
|
33
|
+
context?: Struct;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* @generated from protobuf message schema.v1.ResolveBooleanResponse
|
|
37
|
+
*/
|
|
38
|
+
export interface ResolveBooleanResponse {
|
|
39
|
+
/**
|
|
40
|
+
* @generated from protobuf field: bool value = 1;
|
|
41
|
+
*/
|
|
42
|
+
value: boolean;
|
|
43
|
+
/**
|
|
44
|
+
* @generated from protobuf field: string reason = 2;
|
|
45
|
+
*/
|
|
46
|
+
reason: string;
|
|
47
|
+
/**
|
|
48
|
+
* @generated from protobuf field: string variant = 3;
|
|
49
|
+
*/
|
|
50
|
+
variant: string;
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* @generated from protobuf message schema.v1.ResolveStringRequest
|
|
54
|
+
*/
|
|
55
|
+
export interface ResolveStringRequest {
|
|
56
|
+
/**
|
|
57
|
+
* @generated from protobuf field: string flag_key = 1;
|
|
58
|
+
*/
|
|
59
|
+
flagKey: string;
|
|
60
|
+
/**
|
|
61
|
+
* @generated from protobuf field: google.protobuf.Struct context = 2;
|
|
62
|
+
*/
|
|
63
|
+
context?: Struct;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* @generated from protobuf message schema.v1.ResolveStringResponse
|
|
67
|
+
*/
|
|
68
|
+
export interface ResolveStringResponse {
|
|
69
|
+
/**
|
|
70
|
+
* @generated from protobuf field: string value = 1;
|
|
71
|
+
*/
|
|
72
|
+
value: string;
|
|
73
|
+
/**
|
|
74
|
+
* @generated from protobuf field: string reason = 2;
|
|
75
|
+
*/
|
|
76
|
+
reason: string;
|
|
77
|
+
/**
|
|
78
|
+
* @generated from protobuf field: string variant = 3;
|
|
79
|
+
*/
|
|
80
|
+
variant: string;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* @generated from protobuf message schema.v1.ResolveNumberRequest
|
|
84
|
+
*/
|
|
85
|
+
export interface ResolveNumberRequest {
|
|
86
|
+
/**
|
|
87
|
+
* @generated from protobuf field: string flag_key = 1;
|
|
88
|
+
*/
|
|
89
|
+
flagKey: string;
|
|
90
|
+
/**
|
|
91
|
+
* @generated from protobuf field: google.protobuf.Struct context = 2;
|
|
92
|
+
*/
|
|
93
|
+
context?: Struct;
|
|
94
|
+
}
|
|
95
|
+
/**
|
|
96
|
+
* @generated from protobuf message schema.v1.ResolveNumberResponse
|
|
97
|
+
*/
|
|
98
|
+
export interface ResolveNumberResponse {
|
|
99
|
+
/**
|
|
100
|
+
* @generated from protobuf field: float value = 1;
|
|
101
|
+
*/
|
|
102
|
+
value: number;
|
|
103
|
+
/**
|
|
104
|
+
* @generated from protobuf field: string reason = 2;
|
|
105
|
+
*/
|
|
106
|
+
reason: string;
|
|
107
|
+
/**
|
|
108
|
+
* @generated from protobuf field: string variant = 3;
|
|
109
|
+
*/
|
|
110
|
+
variant: string;
|
|
111
|
+
}
|
|
112
|
+
/**
|
|
113
|
+
* @generated from protobuf message schema.v1.ResolveObjectRequest
|
|
114
|
+
*/
|
|
115
|
+
export interface ResolveObjectRequest {
|
|
116
|
+
/**
|
|
117
|
+
* @generated from protobuf field: string flag_key = 1;
|
|
118
|
+
*/
|
|
119
|
+
flagKey: string;
|
|
120
|
+
/**
|
|
121
|
+
* @generated from protobuf field: google.protobuf.Struct context = 2;
|
|
122
|
+
*/
|
|
123
|
+
context?: Struct;
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* @generated from protobuf message schema.v1.ResolveObjectResponse
|
|
127
|
+
*/
|
|
128
|
+
export interface ResolveObjectResponse {
|
|
129
|
+
/**
|
|
130
|
+
* @generated from protobuf field: google.protobuf.Struct value = 1;
|
|
131
|
+
*/
|
|
132
|
+
value?: Struct;
|
|
133
|
+
/**
|
|
134
|
+
* @generated from protobuf field: string reason = 2;
|
|
135
|
+
*/
|
|
136
|
+
reason: string;
|
|
137
|
+
/**
|
|
138
|
+
* @generated from protobuf field: string variant = 3;
|
|
139
|
+
*/
|
|
140
|
+
variant: string;
|
|
141
|
+
}
|
|
142
|
+
declare class ErrorResponse$Type extends MessageType<ErrorResponse> {
|
|
143
|
+
constructor();
|
|
144
|
+
create(value?: PartialMessage<ErrorResponse>): ErrorResponse;
|
|
145
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ErrorResponse): ErrorResponse;
|
|
146
|
+
internalBinaryWrite(message: ErrorResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
147
|
+
}
|
|
148
|
+
/**
|
|
149
|
+
* @generated MessageType for protobuf message schema.v1.ErrorResponse
|
|
150
|
+
*/
|
|
151
|
+
export declare const ErrorResponse: ErrorResponse$Type;
|
|
152
|
+
declare class ResolveBooleanRequest$Type extends MessageType<ResolveBooleanRequest> {
|
|
153
|
+
constructor();
|
|
154
|
+
create(value?: PartialMessage<ResolveBooleanRequest>): ResolveBooleanRequest;
|
|
155
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ResolveBooleanRequest): ResolveBooleanRequest;
|
|
156
|
+
internalBinaryWrite(message: ResolveBooleanRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
157
|
+
}
|
|
158
|
+
/**
|
|
159
|
+
* @generated MessageType for protobuf message schema.v1.ResolveBooleanRequest
|
|
160
|
+
*/
|
|
161
|
+
export declare const ResolveBooleanRequest: ResolveBooleanRequest$Type;
|
|
162
|
+
declare class ResolveBooleanResponse$Type extends MessageType<ResolveBooleanResponse> {
|
|
163
|
+
constructor();
|
|
164
|
+
create(value?: PartialMessage<ResolveBooleanResponse>): ResolveBooleanResponse;
|
|
165
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ResolveBooleanResponse): ResolveBooleanResponse;
|
|
166
|
+
internalBinaryWrite(message: ResolveBooleanResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
167
|
+
}
|
|
168
|
+
/**
|
|
169
|
+
* @generated MessageType for protobuf message schema.v1.ResolveBooleanResponse
|
|
170
|
+
*/
|
|
171
|
+
export declare const ResolveBooleanResponse: ResolveBooleanResponse$Type;
|
|
172
|
+
declare class ResolveStringRequest$Type extends MessageType<ResolveStringRequest> {
|
|
173
|
+
constructor();
|
|
174
|
+
create(value?: PartialMessage<ResolveStringRequest>): ResolveStringRequest;
|
|
175
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ResolveStringRequest): ResolveStringRequest;
|
|
176
|
+
internalBinaryWrite(message: ResolveStringRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
177
|
+
}
|
|
178
|
+
/**
|
|
179
|
+
* @generated MessageType for protobuf message schema.v1.ResolveStringRequest
|
|
180
|
+
*/
|
|
181
|
+
export declare const ResolveStringRequest: ResolveStringRequest$Type;
|
|
182
|
+
declare class ResolveStringResponse$Type extends MessageType<ResolveStringResponse> {
|
|
183
|
+
constructor();
|
|
184
|
+
create(value?: PartialMessage<ResolveStringResponse>): ResolveStringResponse;
|
|
185
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ResolveStringResponse): ResolveStringResponse;
|
|
186
|
+
internalBinaryWrite(message: ResolveStringResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
187
|
+
}
|
|
188
|
+
/**
|
|
189
|
+
* @generated MessageType for protobuf message schema.v1.ResolveStringResponse
|
|
190
|
+
*/
|
|
191
|
+
export declare const ResolveStringResponse: ResolveStringResponse$Type;
|
|
192
|
+
declare class ResolveNumberRequest$Type extends MessageType<ResolveNumberRequest> {
|
|
193
|
+
constructor();
|
|
194
|
+
create(value?: PartialMessage<ResolveNumberRequest>): ResolveNumberRequest;
|
|
195
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ResolveNumberRequest): ResolveNumberRequest;
|
|
196
|
+
internalBinaryWrite(message: ResolveNumberRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
197
|
+
}
|
|
198
|
+
/**
|
|
199
|
+
* @generated MessageType for protobuf message schema.v1.ResolveNumberRequest
|
|
200
|
+
*/
|
|
201
|
+
export declare const ResolveNumberRequest: ResolveNumberRequest$Type;
|
|
202
|
+
declare class ResolveNumberResponse$Type extends MessageType<ResolveNumberResponse> {
|
|
203
|
+
constructor();
|
|
204
|
+
create(value?: PartialMessage<ResolveNumberResponse>): ResolveNumberResponse;
|
|
205
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ResolveNumberResponse): ResolveNumberResponse;
|
|
206
|
+
internalBinaryWrite(message: ResolveNumberResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
207
|
+
}
|
|
208
|
+
/**
|
|
209
|
+
* @generated MessageType for protobuf message schema.v1.ResolveNumberResponse
|
|
210
|
+
*/
|
|
211
|
+
export declare const ResolveNumberResponse: ResolveNumberResponse$Type;
|
|
212
|
+
declare class ResolveObjectRequest$Type extends MessageType<ResolveObjectRequest> {
|
|
213
|
+
constructor();
|
|
214
|
+
create(value?: PartialMessage<ResolveObjectRequest>): ResolveObjectRequest;
|
|
215
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ResolveObjectRequest): ResolveObjectRequest;
|
|
216
|
+
internalBinaryWrite(message: ResolveObjectRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
217
|
+
}
|
|
218
|
+
/**
|
|
219
|
+
* @generated MessageType for protobuf message schema.v1.ResolveObjectRequest
|
|
220
|
+
*/
|
|
221
|
+
export declare const ResolveObjectRequest: ResolveObjectRequest$Type;
|
|
222
|
+
declare class ResolveObjectResponse$Type extends MessageType<ResolveObjectResponse> {
|
|
223
|
+
constructor();
|
|
224
|
+
create(value?: PartialMessage<ResolveObjectResponse>): ResolveObjectResponse;
|
|
225
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ResolveObjectResponse): ResolveObjectResponse;
|
|
226
|
+
internalBinaryWrite(message: ResolveObjectResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
227
|
+
}
|
|
228
|
+
/**
|
|
229
|
+
* @generated MessageType for protobuf message schema.v1.ResolveObjectResponse
|
|
230
|
+
*/
|
|
231
|
+
export declare const ResolveObjectResponse: ResolveObjectResponse$Type;
|
|
232
|
+
/**
|
|
233
|
+
* @generated ServiceType for protobuf service schema.v1.Service
|
|
234
|
+
*/
|
|
235
|
+
export declare const Service: ServiceType;
|
|
236
|
+
export {};
|