@openfeature/flagd-provider 0.7.5 → 0.7.7
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/index.cjs +4478 -1544
- package/index.js +4479 -1542
- package/package.json +5 -6
- package/src/index.d.ts +1 -1
- package/src/lib/configuration.d.ts +55 -55
- package/src/lib/constants.d.ts +5 -5
- package/src/lib/flagd-provider.d.ts +25 -25
- package/src/lib/service/grpc/service.d.ts +50 -47
- package/src/lib/service/service.d.ts +8 -8
- package/src/package.json +1 -1
- package/src/proto/ts/google/protobuf/struct.d.ts +184 -184
- package/src/proto/ts/schema/v1/schema.client.d.ts +96 -96
- package/src/proto/ts/schema/v1/schema.d.ts +490 -490
- package/src/proto/ts/sync/v1/sync_service.client.d.ts +46 -46
- package/src/proto/ts/sync/v1/sync_service.d.ts +183 -153
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
|
2
|
-
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
|
|
3
|
-
import type { FetchAllFlagsResponse } from "./sync_service";
|
|
4
|
-
import type { FetchAllFlagsRequest } from "./sync_service";
|
|
5
|
-
import type { UnaryCall } from "@protobuf-ts/runtime-rpc";
|
|
6
|
-
import type { SyncFlagsResponse } from "./sync_service";
|
|
7
|
-
import type { SyncFlagsRequest } from "./sync_service";
|
|
8
|
-
import type { ServerStreamingCall } from "@protobuf-ts/runtime-rpc";
|
|
9
|
-
import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
|
|
10
|
-
/**
|
|
11
|
-
* FlagService implements a server streaming to provide realtime flag configurations
|
|
12
|
-
*
|
|
13
|
-
* @generated from protobuf service sync.v1.FlagSyncService
|
|
14
|
-
*/
|
|
15
|
-
export interface IFlagSyncServiceClient {
|
|
16
|
-
/**
|
|
17
|
-
* @generated from protobuf rpc: SyncFlags(sync.v1.SyncFlagsRequest) returns (stream sync.v1.SyncFlagsResponse);
|
|
18
|
-
*/
|
|
19
|
-
syncFlags(input: SyncFlagsRequest, options?: RpcOptions): ServerStreamingCall<SyncFlagsRequest, SyncFlagsResponse>;
|
|
20
|
-
/**
|
|
21
|
-
* @generated from protobuf rpc: FetchAllFlags(sync.v1.FetchAllFlagsRequest) returns (sync.v1.FetchAllFlagsResponse);
|
|
22
|
-
*/
|
|
23
|
-
fetchAllFlags(input: FetchAllFlagsRequest, options?: RpcOptions): UnaryCall<FetchAllFlagsRequest, FetchAllFlagsResponse>;
|
|
24
|
-
}
|
|
25
|
-
/**
|
|
26
|
-
* FlagService implements a server streaming to provide realtime flag configurations
|
|
27
|
-
*
|
|
28
|
-
* @generated from protobuf service sync.v1.FlagSyncService
|
|
29
|
-
*/
|
|
30
|
-
export declare class FlagSyncServiceClient implements IFlagSyncServiceClient, ServiceInfo {
|
|
31
|
-
private readonly _transport;
|
|
32
|
-
typeName: string;
|
|
33
|
-
methods: import("@protobuf-ts/runtime-rpc").MethodInfo<any, any>[];
|
|
34
|
-
options: {
|
|
35
|
-
[extensionName: string]: import("@protobuf-ts/runtime").JsonValue;
|
|
36
|
-
};
|
|
37
|
-
constructor(_transport: RpcTransport);
|
|
38
|
-
/**
|
|
39
|
-
* @generated from protobuf rpc: SyncFlags(sync.v1.SyncFlagsRequest) returns (stream sync.v1.SyncFlagsResponse);
|
|
40
|
-
*/
|
|
41
|
-
syncFlags(input: SyncFlagsRequest, options?: RpcOptions): ServerStreamingCall<SyncFlagsRequest, SyncFlagsResponse>;
|
|
42
|
-
/**
|
|
43
|
-
* @generated from protobuf rpc: FetchAllFlags(sync.v1.FetchAllFlagsRequest) returns (sync.v1.FetchAllFlagsResponse);
|
|
44
|
-
*/
|
|
45
|
-
fetchAllFlags(input: FetchAllFlagsRequest, options?: RpcOptions): UnaryCall<FetchAllFlagsRequest, FetchAllFlagsResponse>;
|
|
46
|
-
}
|
|
1
|
+
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
|
2
|
+
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
|
|
3
|
+
import type { FetchAllFlagsResponse } from "./sync_service";
|
|
4
|
+
import type { FetchAllFlagsRequest } from "./sync_service";
|
|
5
|
+
import type { UnaryCall } from "@protobuf-ts/runtime-rpc";
|
|
6
|
+
import type { SyncFlagsResponse } from "./sync_service";
|
|
7
|
+
import type { SyncFlagsRequest } from "./sync_service";
|
|
8
|
+
import type { ServerStreamingCall } from "@protobuf-ts/runtime-rpc";
|
|
9
|
+
import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
|
|
10
|
+
/**
|
|
11
|
+
* FlagService implements a server streaming to provide realtime flag configurations
|
|
12
|
+
*
|
|
13
|
+
* @generated from protobuf service sync.v1.FlagSyncService
|
|
14
|
+
*/
|
|
15
|
+
export interface IFlagSyncServiceClient {
|
|
16
|
+
/**
|
|
17
|
+
* @generated from protobuf rpc: SyncFlags(sync.v1.SyncFlagsRequest) returns (stream sync.v1.SyncFlagsResponse);
|
|
18
|
+
*/
|
|
19
|
+
syncFlags(input: SyncFlagsRequest, options?: RpcOptions): ServerStreamingCall<SyncFlagsRequest, SyncFlagsResponse>;
|
|
20
|
+
/**
|
|
21
|
+
* @generated from protobuf rpc: FetchAllFlags(sync.v1.FetchAllFlagsRequest) returns (sync.v1.FetchAllFlagsResponse);
|
|
22
|
+
*/
|
|
23
|
+
fetchAllFlags(input: FetchAllFlagsRequest, options?: RpcOptions): UnaryCall<FetchAllFlagsRequest, FetchAllFlagsResponse>;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* FlagService implements a server streaming to provide realtime flag configurations
|
|
27
|
+
*
|
|
28
|
+
* @generated from protobuf service sync.v1.FlagSyncService
|
|
29
|
+
*/
|
|
30
|
+
export declare class FlagSyncServiceClient implements IFlagSyncServiceClient, ServiceInfo {
|
|
31
|
+
private readonly _transport;
|
|
32
|
+
typeName: string;
|
|
33
|
+
methods: import("@protobuf-ts/runtime-rpc").MethodInfo<any, any>[];
|
|
34
|
+
options: {
|
|
35
|
+
[extensionName: string]: import("@protobuf-ts/runtime").JsonValue;
|
|
36
|
+
};
|
|
37
|
+
constructor(_transport: RpcTransport);
|
|
38
|
+
/**
|
|
39
|
+
* @generated from protobuf rpc: SyncFlags(sync.v1.SyncFlagsRequest) returns (stream sync.v1.SyncFlagsResponse);
|
|
40
|
+
*/
|
|
41
|
+
syncFlags(input: SyncFlagsRequest, options?: RpcOptions): ServerStreamingCall<SyncFlagsRequest, SyncFlagsResponse>;
|
|
42
|
+
/**
|
|
43
|
+
* @generated from protobuf rpc: FetchAllFlags(sync.v1.FetchAllFlagsRequest) returns (sync.v1.FetchAllFlagsResponse);
|
|
44
|
+
*/
|
|
45
|
+
fetchAllFlags(input: FetchAllFlagsRequest, options?: RpcOptions): UnaryCall<FetchAllFlagsRequest, FetchAllFlagsResponse>;
|
|
46
|
+
}
|
|
@@ -1,153 +1,183 @@
|
|
|
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
|
-
/**
|
|
9
|
-
* SyncFlagsRequest is the request initiating the sever-streaming rpc. Flagd sends this request, acting as the client
|
|
10
|
-
*
|
|
11
|
-
* @generated from protobuf message sync.v1.SyncFlagsRequest
|
|
12
|
-
*/
|
|
13
|
-
export interface SyncFlagsRequest {
|
|
14
|
-
/**
|
|
15
|
-
* Optional: A unique identifier for flagd
|
|
16
|
-
*
|
|
17
|
-
* is intended to be optional. However server
|
|
18
|
-
*
|
|
19
|
-
*
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
*
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
/**
|
|
71
|
-
*
|
|
72
|
-
*
|
|
73
|
-
*
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
*
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
declare class
|
|
140
|
-
constructor();
|
|
141
|
-
create(value?: PartialMessage<
|
|
142
|
-
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?:
|
|
143
|
-
internalBinaryWrite(message:
|
|
144
|
-
}
|
|
145
|
-
/**
|
|
146
|
-
* @generated MessageType for protobuf message sync.v1.
|
|
147
|
-
*/
|
|
148
|
-
export declare const
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
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
|
+
/**
|
|
9
|
+
* SyncFlagsRequest is the request initiating the sever-streaming rpc. Flagd sends this request, acting as the client
|
|
10
|
+
*
|
|
11
|
+
* @generated from protobuf message sync.v1.SyncFlagsRequest
|
|
12
|
+
*/
|
|
13
|
+
export interface SyncFlagsRequest {
|
|
14
|
+
/**
|
|
15
|
+
* Optional: A unique identifier for flagd(grpc client) initiating the request. The server implementations may
|
|
16
|
+
* utilize this identifier to uniquely identify, validate(ex:- enforce authentication/authorization) and filter
|
|
17
|
+
* flag configurations that it can expose to this request. This field is intended to be optional. However server
|
|
18
|
+
* implementations may enforce it.
|
|
19
|
+
* ex:- provider_id: flagd-weatherapp-sidecar
|
|
20
|
+
*
|
|
21
|
+
* @generated from protobuf field: string provider_id = 1;
|
|
22
|
+
*/
|
|
23
|
+
providerId: string;
|
|
24
|
+
/**
|
|
25
|
+
* Optional: A selector for the flag configuration request. The server implementation may utilize this to select
|
|
26
|
+
* flag configurations from a collection, select the source of the flag or combine this to any desired underlying
|
|
27
|
+
* filtering mechanism.
|
|
28
|
+
* ex:- selector: 'source=database,app=weatherapp'
|
|
29
|
+
*
|
|
30
|
+
* @generated from protobuf field: string selector = 2;
|
|
31
|
+
*/
|
|
32
|
+
selector: string;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* SyncFlagsResponse is the server response containing feature flag configurations and the state
|
|
36
|
+
*
|
|
37
|
+
* @generated from protobuf message sync.v1.SyncFlagsResponse
|
|
38
|
+
*/
|
|
39
|
+
export interface SyncFlagsResponse {
|
|
40
|
+
/**
|
|
41
|
+
* flagd feature flag configuration. Must be validated to schema - https://raw.githubusercontent.com/open-feature/schemas/main/json/flagd-definitions.json
|
|
42
|
+
*
|
|
43
|
+
* @generated from protobuf field: string flag_configuration = 1;
|
|
44
|
+
*/
|
|
45
|
+
flagConfiguration: string;
|
|
46
|
+
/**
|
|
47
|
+
* State conveying the operation to be performed by flagd. See the descriptions of SyncState for an explanation of
|
|
48
|
+
* supported values
|
|
49
|
+
*
|
|
50
|
+
* @generated from protobuf field: sync.v1.SyncState state = 2;
|
|
51
|
+
*/
|
|
52
|
+
state: SyncState;
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* FetchAllFlagsRequest is the request to fetch all flags. Flagd sends this request as the client in order to resync its internal state
|
|
56
|
+
*
|
|
57
|
+
* @generated from protobuf message sync.v1.FetchAllFlagsRequest
|
|
58
|
+
*/
|
|
59
|
+
export interface FetchAllFlagsRequest {
|
|
60
|
+
/**
|
|
61
|
+
* Optional: A unique identifier for flagd(grpc client) initiating the request. The server implementations may
|
|
62
|
+
* utilize this identifier to uniquely identify, validate(ex:- enforce authentication/authorization) and filter
|
|
63
|
+
* flag configurations that it can expose to this request. This field is intended to be optional. However server
|
|
64
|
+
* implementations may enforce it.
|
|
65
|
+
* ex:- provider_id: flagd-weatherapp-sidecar
|
|
66
|
+
*
|
|
67
|
+
* @generated from protobuf field: string provider_id = 1;
|
|
68
|
+
*/
|
|
69
|
+
providerId: string;
|
|
70
|
+
/**
|
|
71
|
+
* Optional: A selector for the flag configuration request. The server implementation may utilize this to select
|
|
72
|
+
* flag configurations from a collection, select the source of the flag or combine this to any desired underlying
|
|
73
|
+
* filtering mechanism.
|
|
74
|
+
* ex:- selector: 'source=database,app=weatherapp'
|
|
75
|
+
*
|
|
76
|
+
* @generated from protobuf field: string selector = 2;
|
|
77
|
+
*/
|
|
78
|
+
selector: string;
|
|
79
|
+
}
|
|
80
|
+
/**
|
|
81
|
+
* FetchAllFlagsResponse is the server response containing feature flag configurations
|
|
82
|
+
*
|
|
83
|
+
* @generated from protobuf message sync.v1.FetchAllFlagsResponse
|
|
84
|
+
*/
|
|
85
|
+
export interface FetchAllFlagsResponse {
|
|
86
|
+
/**
|
|
87
|
+
* flagd feature flag configuration. Must be validated to schema - https://raw.githubusercontent.com/open-feature/schemas/main/json/flagd-definitions.json
|
|
88
|
+
*
|
|
89
|
+
* @generated from protobuf field: string flag_configuration = 1;
|
|
90
|
+
*/
|
|
91
|
+
flagConfiguration: string;
|
|
92
|
+
}
|
|
93
|
+
/**
|
|
94
|
+
* SyncState conveys the state of the payload. These states are related to flagd isync.go type definitions but
|
|
95
|
+
* contains extras to optimize grpc use case. Refer - https://github.com/open-feature/flagd/blob/main/pkg/sync/isync.go
|
|
96
|
+
*
|
|
97
|
+
* @generated from protobuf enum sync.v1.SyncState
|
|
98
|
+
*/
|
|
99
|
+
export declare enum SyncState {
|
|
100
|
+
/**
|
|
101
|
+
* Value is ignored by the listening flagd
|
|
102
|
+
*
|
|
103
|
+
* @generated from protobuf enum value: SYNC_STATE_UNSPECIFIED = 0;
|
|
104
|
+
*/
|
|
105
|
+
UNSPECIFIED = 0,
|
|
106
|
+
/**
|
|
107
|
+
* All the flags matching the request. This is the default response and other states can be ignored
|
|
108
|
+
* by the implementation. Flagd internally replaces all existing flags for this response state.
|
|
109
|
+
*
|
|
110
|
+
* @generated from protobuf enum value: SYNC_STATE_ALL = 1;
|
|
111
|
+
*/
|
|
112
|
+
ALL = 1,
|
|
113
|
+
/**
|
|
114
|
+
* Convey an addition of a flag. Flagd internally handles this by combining new flags with existing ones
|
|
115
|
+
*
|
|
116
|
+
* @generated from protobuf enum value: SYNC_STATE_ADD = 2;
|
|
117
|
+
*/
|
|
118
|
+
ADD = 2,
|
|
119
|
+
/**
|
|
120
|
+
* Convey an update of a flag. Flagd internally attempts to update if the updated flag already exist OR if it does not,
|
|
121
|
+
* it will get added
|
|
122
|
+
*
|
|
123
|
+
* @generated from protobuf enum value: SYNC_STATE_UPDATE = 3;
|
|
124
|
+
*/
|
|
125
|
+
UPDATE = 3,
|
|
126
|
+
/**
|
|
127
|
+
* Convey a deletion of a flag. Flagd internally removes the flag
|
|
128
|
+
*
|
|
129
|
+
* @generated from protobuf enum value: SYNC_STATE_DELETE = 4;
|
|
130
|
+
*/
|
|
131
|
+
DELETE = 4,
|
|
132
|
+
/**
|
|
133
|
+
* Optional server ping to check client connectivity. Handling is ignored by flagd and is to merely support live check
|
|
134
|
+
*
|
|
135
|
+
* @generated from protobuf enum value: SYNC_STATE_PING = 5;
|
|
136
|
+
*/
|
|
137
|
+
PING = 5
|
|
138
|
+
}
|
|
139
|
+
declare class SyncFlagsRequest$Type extends MessageType<SyncFlagsRequest> {
|
|
140
|
+
constructor();
|
|
141
|
+
create(value?: PartialMessage<SyncFlagsRequest>): SyncFlagsRequest;
|
|
142
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: SyncFlagsRequest): SyncFlagsRequest;
|
|
143
|
+
internalBinaryWrite(message: SyncFlagsRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
144
|
+
}
|
|
145
|
+
/**
|
|
146
|
+
* @generated MessageType for protobuf message sync.v1.SyncFlagsRequest
|
|
147
|
+
*/
|
|
148
|
+
export declare const SyncFlagsRequest: SyncFlagsRequest$Type;
|
|
149
|
+
declare class SyncFlagsResponse$Type extends MessageType<SyncFlagsResponse> {
|
|
150
|
+
constructor();
|
|
151
|
+
create(value?: PartialMessage<SyncFlagsResponse>): SyncFlagsResponse;
|
|
152
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: SyncFlagsResponse): SyncFlagsResponse;
|
|
153
|
+
internalBinaryWrite(message: SyncFlagsResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
154
|
+
}
|
|
155
|
+
/**
|
|
156
|
+
* @generated MessageType for protobuf message sync.v1.SyncFlagsResponse
|
|
157
|
+
*/
|
|
158
|
+
export declare const SyncFlagsResponse: SyncFlagsResponse$Type;
|
|
159
|
+
declare class FetchAllFlagsRequest$Type extends MessageType<FetchAllFlagsRequest> {
|
|
160
|
+
constructor();
|
|
161
|
+
create(value?: PartialMessage<FetchAllFlagsRequest>): FetchAllFlagsRequest;
|
|
162
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FetchAllFlagsRequest): FetchAllFlagsRequest;
|
|
163
|
+
internalBinaryWrite(message: FetchAllFlagsRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
164
|
+
}
|
|
165
|
+
/**
|
|
166
|
+
* @generated MessageType for protobuf message sync.v1.FetchAllFlagsRequest
|
|
167
|
+
*/
|
|
168
|
+
export declare const FetchAllFlagsRequest: FetchAllFlagsRequest$Type;
|
|
169
|
+
declare class FetchAllFlagsResponse$Type extends MessageType<FetchAllFlagsResponse> {
|
|
170
|
+
constructor();
|
|
171
|
+
create(value?: PartialMessage<FetchAllFlagsResponse>): FetchAllFlagsResponse;
|
|
172
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FetchAllFlagsResponse): FetchAllFlagsResponse;
|
|
173
|
+
internalBinaryWrite(message: FetchAllFlagsResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
174
|
+
}
|
|
175
|
+
/**
|
|
176
|
+
* @generated MessageType for protobuf message sync.v1.FetchAllFlagsResponse
|
|
177
|
+
*/
|
|
178
|
+
export declare const FetchAllFlagsResponse: FetchAllFlagsResponse$Type;
|
|
179
|
+
/**
|
|
180
|
+
* @generated ServiceType for protobuf service sync.v1.FlagSyncService
|
|
181
|
+
*/
|
|
182
|
+
export declare const FlagSyncService: ServiceType;
|
|
183
|
+
export {};
|