@wundergraph/cosmo-connect 0.151.0 → 0.154.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.
Files changed (35) hide show
  1. package/dist/common/common_pb.d.ts +17 -0
  2. package/dist/common/common_pb.js +18 -38
  3. package/dist/common/common_pb.js.map +1 -1
  4. package/dist/graphqlmetrics/v1/graphqlmetrics-GraphQLMetricsService_connectquery.d.ts +8 -20
  5. package/dist/graphqlmetrics/v1/graphqlmetrics-GraphQLMetricsService_connectquery.js +4 -24
  6. package/dist/graphqlmetrics/v1/graphqlmetrics-GraphQLMetricsService_connectquery.js.map +1 -1
  7. package/dist/graphqlmetrics/v1/graphqlmetrics_pb.d.ts +141 -151
  8. package/dist/graphqlmetrics/v1/graphqlmetrics_pb.js +67 -590
  9. package/dist/graphqlmetrics/v1/graphqlmetrics_pb.js.map +1 -1
  10. package/dist/node/v1/node-NodeService_connectquery.d.ts +4 -11
  11. package/dist/node/v1/node-NodeService_connectquery.js +3 -14
  12. package/dist/node/v1/node-NodeService_connectquery.js.map +1 -1
  13. package/dist/node/v1/node_pb.d.ts +863 -881
  14. package/dist/node/v1/node_pb.js +396 -2917
  15. package/dist/node/v1/node_pb.js.map +1 -1
  16. package/dist/notifications/events_pb.d.ts +74 -71
  17. package/dist/notifications/events_pb.js +27 -112
  18. package/dist/notifications/events_pb.js.map +1 -1
  19. package/dist/platform/v1/platform-PlatformService_connectquery.d.ts +776 -1755
  20. package/dist/platform/v1/platform-PlatformService_connectquery.js +196 -1951
  21. package/dist/platform/v1/platform-PlatformService_connectquery.js.map +1 -1
  22. package/dist/platform/v1/platform_pb.d.ts +10470 -10034
  23. package/dist/platform/v1/platform_pb.js +2826 -21931
  24. package/dist/platform/v1/platform_pb.js.map +1 -1
  25. package/dist/tsconfig.tsbuildinfo +1 -1
  26. package/package.json +5 -5
  27. package/dist/graphqlmetrics/v1/graphqlmetrics_connect.d.ts +0 -30
  28. package/dist/graphqlmetrics/v1/graphqlmetrics_connect.js +0 -36
  29. package/dist/graphqlmetrics/v1/graphqlmetrics_connect.js.map +0 -1
  30. package/dist/node/v1/node_connect.d.ts +0 -19
  31. package/dist/node/v1/node_connect.js +0 -24
  32. package/dist/node/v1/node_connect.js.map +0 -1
  33. package/dist/platform/v1/platform_connect.d.ts +0 -2105
  34. package/dist/platform/v1/platform_connect.js +0 -2111
  35. package/dist/platform/v1/platform_connect.js.map +0 -1
@@ -1,170 +1,14 @@
1
- import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
2
- import { Message, proto3 } from "@bufbuild/protobuf";
3
- import { EnumStatusCode, GraphQLSubscriptionProtocol, GraphQLWebsocketSubprotocol } from "../../common/common_pb.js";
1
+ import type { GenEnum, GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
2
+ import type { EnumStatusCode, GraphQLSubscriptionProtocol, GraphQLWebsocketSubprotocol } from "../../common/common_pb.js";
3
+ import type { Message } from "@bufbuild/protobuf";
4
4
  /**
5
- * @generated from enum wg.cosmo.node.v1.ArgumentRenderConfiguration
6
- */
7
- export declare enum ArgumentRenderConfiguration {
8
- /**
9
- * @generated from enum value: RENDER_ARGUMENT_DEFAULT = 0;
10
- */
11
- RENDER_ARGUMENT_DEFAULT = 0,
12
- /**
13
- * @generated from enum value: RENDER_ARGUMENT_AS_GRAPHQL_VALUE = 1;
14
- */
15
- RENDER_ARGUMENT_AS_GRAPHQL_VALUE = 1,
16
- /**
17
- * @generated from enum value: RENDER_ARGUMENT_AS_ARRAY_CSV = 2;
18
- */
19
- RENDER_ARGUMENT_AS_ARRAY_CSV = 2
20
- }
21
- /**
22
- * @generated from enum wg.cosmo.node.v1.ArgumentSource
23
- */
24
- export declare enum ArgumentSource {
25
- /**
26
- * @generated from enum value: OBJECT_FIELD = 0;
27
- */
28
- OBJECT_FIELD = 0,
29
- /**
30
- * @generated from enum value: FIELD_ARGUMENT = 1;
31
- */
32
- FIELD_ARGUMENT = 1
33
- }
34
- /**
35
- * @generated from enum wg.cosmo.node.v1.DataSourceKind
36
- */
37
- export declare enum DataSourceKind {
38
- /**
39
- * @generated from enum value: STATIC = 0;
40
- */
41
- STATIC = 0,
42
- /**
43
- * @generated from enum value: GRAPHQL = 1;
44
- */
45
- GRAPHQL = 1,
46
- /**
47
- * @generated from enum value: PUBSUB = 2;
48
- */
49
- PUBSUB = 2
50
- }
51
- /**
52
- * Defines the type of lookup operation
53
- *
54
- * @generated from enum wg.cosmo.node.v1.LookupType
55
- */
56
- export declare enum LookupType {
57
- /**
58
- * Unspecified lookup type
59
- *
60
- * @generated from enum value: LOOKUP_TYPE_UNSPECIFIED = 0;
61
- */
62
- UNSPECIFIED = 0,
63
- /**
64
- * Lookup type for field resolution
65
- *
66
- * @generated from enum value: LOOKUP_TYPE_RESOLVE = 1;
67
- */
68
- RESOLVE = 1,
69
- /**
70
- * Lookup type for the @requires directive
71
- *
72
- * @generated from enum value: LOOKUP_TYPE_REQUIRES = 2;
73
- */
74
- REQUIRES = 2
75
- }
76
- /**
77
- * Defines the type of GraphQL operation
78
- *
79
- * @generated from enum wg.cosmo.node.v1.OperationType
80
- */
81
- export declare enum OperationType {
82
- /**
83
- * @generated from enum value: OPERATION_TYPE_UNSPECIFIED = 0;
84
- */
85
- UNSPECIFIED = 0,
86
- /**
87
- * Query operation
88
- *
89
- * @generated from enum value: OPERATION_TYPE_QUERY = 1;
90
- */
91
- QUERY = 1,
92
- /**
93
- * Mutation operation
94
- *
95
- * @generated from enum value: OPERATION_TYPE_MUTATION = 2;
96
- */
97
- MUTATION = 2,
98
- /**
99
- * Subscription operation
100
- *
101
- * @generated from enum value: OPERATION_TYPE_SUBSCRIPTION = 3;
102
- */
103
- SUBSCRIPTION = 3
104
- }
105
- /**
106
- * @generated from enum wg.cosmo.node.v1.EventType
5
+ * Describes the file wg/cosmo/node/v1/node.proto.
107
6
  */
108
- export declare enum EventType {
109
- /**
110
- * @generated from enum value: PUBLISH = 0;
111
- */
112
- PUBLISH = 0,
113
- /**
114
- * @generated from enum value: REQUEST = 1;
115
- */
116
- REQUEST = 1,
117
- /**
118
- * @generated from enum value: SUBSCRIBE = 2;
119
- */
120
- SUBSCRIBE = 2
121
- }
122
- /**
123
- * @generated from enum wg.cosmo.node.v1.ConfigurationVariableKind
124
- */
125
- export declare enum ConfigurationVariableKind {
126
- /**
127
- * @generated from enum value: STATIC_CONFIGURATION_VARIABLE = 0;
128
- */
129
- STATIC_CONFIGURATION_VARIABLE = 0,
130
- /**
131
- * @generated from enum value: ENV_CONFIGURATION_VARIABLE = 1;
132
- */
133
- ENV_CONFIGURATION_VARIABLE = 1,
134
- /**
135
- * @generated from enum value: PLACEHOLDER_CONFIGURATION_VARIABLE = 2;
136
- */
137
- PLACEHOLDER_CONFIGURATION_VARIABLE = 2
138
- }
139
- /**
140
- * @generated from enum wg.cosmo.node.v1.HTTPMethod
141
- */
142
- export declare enum HTTPMethod {
143
- /**
144
- * @generated from enum value: GET = 0;
145
- */
146
- GET = 0,
147
- /**
148
- * @generated from enum value: POST = 1;
149
- */
150
- POST = 1,
151
- /**
152
- * @generated from enum value: PUT = 2;
153
- */
154
- PUT = 2,
155
- /**
156
- * @generated from enum value: DELETE = 3;
157
- */
158
- DELETE = 3,
159
- /**
160
- * @generated from enum value: OPTIONS = 4;
161
- */
162
- OPTIONS = 4
163
- }
7
+ export declare const file_wg_cosmo_node_v1_node: GenFile;
164
8
  /**
165
9
  * @generated from message wg.cosmo.node.v1.Subgraph
166
10
  */
167
- export declare class Subgraph extends Message<Subgraph> {
11
+ export type Subgraph = Message<"wg.cosmo.node.v1.Subgraph"> & {
168
12
  /**
169
13
  * @generated from field: string id = 1;
170
14
  */
@@ -177,42 +21,36 @@ export declare class Subgraph extends Message<Subgraph> {
177
21
  * @generated from field: string routing_url = 3;
178
22
  */
179
23
  routingUrl: string;
180
- constructor(data?: PartialMessage<Subgraph>);
181
- static readonly runtime: typeof proto3;
182
- static readonly typeName = "wg.cosmo.node.v1.Subgraph";
183
- static readonly fields: FieldList;
184
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Subgraph;
185
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Subgraph;
186
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Subgraph;
187
- static equals(a: Subgraph | PlainMessage<Subgraph> | undefined, b: Subgraph | PlainMessage<Subgraph> | undefined): boolean;
188
- }
24
+ };
25
+ /**
26
+ * Describes the message wg.cosmo.node.v1.Subgraph.
27
+ * Use `create(SubgraphSchema)` to create a new message.
28
+ */
29
+ export declare const SubgraphSchema: GenMessage<Subgraph>;
189
30
  /**
190
31
  * @generated from message wg.cosmo.node.v1.FeatureFlagRouterExecutionConfigs
191
32
  */
192
- export declare class FeatureFlagRouterExecutionConfigs extends Message<FeatureFlagRouterExecutionConfigs> {
33
+ export type FeatureFlagRouterExecutionConfigs = Message<"wg.cosmo.node.v1.FeatureFlagRouterExecutionConfigs"> & {
193
34
  /**
194
35
  * @generated from field: map<string, wg.cosmo.node.v1.FeatureFlagRouterExecutionConfig> config_by_feature_flag_name = 1;
195
36
  */
196
37
  configByFeatureFlagName: {
197
38
  [key: string]: FeatureFlagRouterExecutionConfig;
198
39
  };
199
- constructor(data?: PartialMessage<FeatureFlagRouterExecutionConfigs>);
200
- static readonly runtime: typeof proto3;
201
- static readonly typeName = "wg.cosmo.node.v1.FeatureFlagRouterExecutionConfigs";
202
- static readonly fields: FieldList;
203
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FeatureFlagRouterExecutionConfigs;
204
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FeatureFlagRouterExecutionConfigs;
205
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FeatureFlagRouterExecutionConfigs;
206
- static equals(a: FeatureFlagRouterExecutionConfigs | PlainMessage<FeatureFlagRouterExecutionConfigs> | undefined, b: FeatureFlagRouterExecutionConfigs | PlainMessage<FeatureFlagRouterExecutionConfigs> | undefined): boolean;
207
- }
40
+ };
41
+ /**
42
+ * Describes the message wg.cosmo.node.v1.FeatureFlagRouterExecutionConfigs.
43
+ * Use `create(FeatureFlagRouterExecutionConfigsSchema)` to create a new message.
44
+ */
45
+ export declare const FeatureFlagRouterExecutionConfigsSchema: GenMessage<FeatureFlagRouterExecutionConfigs>;
208
46
  /**
209
47
  * @generated from message wg.cosmo.node.v1.FeatureFlagRouterExecutionConfig
210
48
  */
211
- export declare class FeatureFlagRouterExecutionConfig extends Message<FeatureFlagRouterExecutionConfig> {
49
+ export type FeatureFlagRouterExecutionConfig = Message<"wg.cosmo.node.v1.FeatureFlagRouterExecutionConfig"> & {
212
50
  /**
213
51
  * @generated from field: wg.cosmo.node.v1.EngineConfiguration engine_config = 1;
214
52
  */
215
- engineConfig?: EngineConfiguration;
53
+ engineConfig?: EngineConfiguration | undefined;
216
54
  /**
217
55
  * @generated from field: string version = 2;
218
56
  */
@@ -221,23 +59,20 @@ export declare class FeatureFlagRouterExecutionConfig extends Message<FeatureFla
221
59
  * @generated from field: repeated wg.cosmo.node.v1.Subgraph subgraphs = 3;
222
60
  */
223
61
  subgraphs: Subgraph[];
224
- constructor(data?: PartialMessage<FeatureFlagRouterExecutionConfig>);
225
- static readonly runtime: typeof proto3;
226
- static readonly typeName = "wg.cosmo.node.v1.FeatureFlagRouterExecutionConfig";
227
- static readonly fields: FieldList;
228
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FeatureFlagRouterExecutionConfig;
229
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FeatureFlagRouterExecutionConfig;
230
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FeatureFlagRouterExecutionConfig;
231
- static equals(a: FeatureFlagRouterExecutionConfig | PlainMessage<FeatureFlagRouterExecutionConfig> | undefined, b: FeatureFlagRouterExecutionConfig | PlainMessage<FeatureFlagRouterExecutionConfig> | undefined): boolean;
232
- }
62
+ };
63
+ /**
64
+ * Describes the message wg.cosmo.node.v1.FeatureFlagRouterExecutionConfig.
65
+ * Use `create(FeatureFlagRouterExecutionConfigSchema)` to create a new message.
66
+ */
67
+ export declare const FeatureFlagRouterExecutionConfigSchema: GenMessage<FeatureFlagRouterExecutionConfig>;
233
68
  /**
234
69
  * @generated from message wg.cosmo.node.v1.RouterConfig
235
70
  */
236
- export declare class RouterConfig extends Message<RouterConfig> {
71
+ export type RouterConfig = Message<"wg.cosmo.node.v1.RouterConfig"> & {
237
72
  /**
238
73
  * @generated from field: wg.cosmo.node.v1.EngineConfiguration engine_config = 1;
239
74
  */
240
- engineConfig?: EngineConfiguration;
75
+ engineConfig?: EngineConfiguration | undefined;
241
76
  /**
242
77
  * @generated from field: string version = 2;
243
78
  */
@@ -251,24 +86,21 @@ export declare class RouterConfig extends Message<RouterConfig> {
251
86
  *
252
87
  * @generated from field: optional wg.cosmo.node.v1.FeatureFlagRouterExecutionConfigs feature_flag_configs = 4;
253
88
  */
254
- featureFlagConfigs?: FeatureFlagRouterExecutionConfigs;
89
+ featureFlagConfigs?: FeatureFlagRouterExecutionConfigs | undefined;
255
90
  /**
256
91
  * @generated from field: string compatibility_version = 5;
257
92
  */
258
93
  compatibilityVersion: string;
259
- constructor(data?: PartialMessage<RouterConfig>);
260
- static readonly runtime: typeof proto3;
261
- static readonly typeName = "wg.cosmo.node.v1.RouterConfig";
262
- static readonly fields: FieldList;
263
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RouterConfig;
264
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RouterConfig;
265
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RouterConfig;
266
- static equals(a: RouterConfig | PlainMessage<RouterConfig> | undefined, b: RouterConfig | PlainMessage<RouterConfig> | undefined): boolean;
267
- }
94
+ };
95
+ /**
96
+ * Describes the message wg.cosmo.node.v1.RouterConfig.
97
+ * Use `create(RouterConfigSchema)` to create a new message.
98
+ */
99
+ export declare const RouterConfigSchema: GenMessage<RouterConfig>;
268
100
  /**
269
101
  * @generated from message wg.cosmo.node.v1.Response
270
102
  */
271
- export declare class Response extends Message<Response> {
103
+ export type Response = Message<"wg.cosmo.node.v1.Response"> & {
272
104
  /**
273
105
  * @generated from field: wg.cosmo.common.EnumStatusCode code = 1;
274
106
  */
@@ -278,20 +110,17 @@ export declare class Response extends Message<Response> {
278
110
  *
279
111
  * @generated from field: optional string details = 2;
280
112
  */
281
- details?: string;
282
- constructor(data?: PartialMessage<Response>);
283
- static readonly runtime: typeof proto3;
284
- static readonly typeName = "wg.cosmo.node.v1.Response";
285
- static readonly fields: FieldList;
286
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Response;
287
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Response;
288
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Response;
289
- static equals(a: Response | PlainMessage<Response> | undefined, b: Response | PlainMessage<Response> | undefined): boolean;
290
- }
113
+ details?: string | undefined;
114
+ };
115
+ /**
116
+ * Describes the message wg.cosmo.node.v1.Response.
117
+ * Use `create(ResponseSchema)` to create a new message.
118
+ */
119
+ export declare const ResponseSchema: GenMessage<Response>;
291
120
  /**
292
121
  * @generated from message wg.cosmo.node.v1.ResponseStatus
293
122
  */
294
- export declare class ResponseStatus extends Message<ResponseStatus> {
123
+ export type ResponseStatus = Message<"wg.cosmo.node.v1.ResponseStatus"> & {
295
124
  /**
296
125
  * @generated from field: int32 code = 1;
297
126
  */
@@ -300,40 +129,34 @@ export declare class ResponseStatus extends Message<ResponseStatus> {
300
129
  * @generated from field: string message = 2;
301
130
  */
302
131
  message: string;
303
- constructor(data?: PartialMessage<ResponseStatus>);
304
- static readonly runtime: typeof proto3;
305
- static readonly typeName = "wg.cosmo.node.v1.ResponseStatus";
306
- static readonly fields: FieldList;
307
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ResponseStatus;
308
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ResponseStatus;
309
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ResponseStatus;
310
- static equals(a: ResponseStatus | PlainMessage<ResponseStatus> | undefined, b: ResponseStatus | PlainMessage<ResponseStatus> | undefined): boolean;
311
- }
132
+ };
133
+ /**
134
+ * Describes the message wg.cosmo.node.v1.ResponseStatus.
135
+ * Use `create(ResponseStatusSchema)` to create a new message.
136
+ */
137
+ export declare const ResponseStatusSchema: GenMessage<ResponseStatus>;
312
138
  /**
313
139
  * @generated from message wg.cosmo.node.v1.RegistrationInfo
314
140
  */
315
- export declare class RegistrationInfo extends Message<RegistrationInfo> {
141
+ export type RegistrationInfo = Message<"wg.cosmo.node.v1.RegistrationInfo"> & {
316
142
  /**
317
143
  * @generated from field: wg.cosmo.node.v1.AccountLimits account_limits = 1;
318
144
  */
319
- accountLimits?: AccountLimits;
145
+ accountLimits?: AccountLimits | undefined;
320
146
  /**
321
147
  * @generated from field: string graph_public_key = 2;
322
148
  */
323
149
  graphPublicKey: string;
324
- constructor(data?: PartialMessage<RegistrationInfo>);
325
- static readonly runtime: typeof proto3;
326
- static readonly typeName = "wg.cosmo.node.v1.RegistrationInfo";
327
- static readonly fields: FieldList;
328
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RegistrationInfo;
329
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RegistrationInfo;
330
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RegistrationInfo;
331
- static equals(a: RegistrationInfo | PlainMessage<RegistrationInfo> | undefined, b: RegistrationInfo | PlainMessage<RegistrationInfo> | undefined): boolean;
332
- }
150
+ };
151
+ /**
152
+ * Describes the message wg.cosmo.node.v1.RegistrationInfo.
153
+ * Use `create(RegistrationInfoSchema)` to create a new message.
154
+ */
155
+ export declare const RegistrationInfoSchema: GenMessage<RegistrationInfo>;
333
156
  /**
334
157
  * @generated from message wg.cosmo.node.v1.AccountLimits
335
158
  */
336
- export declare class AccountLimits extends Message<AccountLimits> {
159
+ export type AccountLimits = Message<"wg.cosmo.node.v1.AccountLimits"> & {
337
160
  /**
338
161
  * The maximum sampling rate for traces. Must be between 0 and 1.
339
162
  * 0 means no traces will be sampled and 1 means all traces will be sampled.
@@ -341,53 +164,43 @@ export declare class AccountLimits extends Message<AccountLimits> {
341
164
  * @generated from field: float trace_sampling_rate = 1;
342
165
  */
343
166
  traceSamplingRate: number;
344
- constructor(data?: PartialMessage<AccountLimits>);
345
- static readonly runtime: typeof proto3;
346
- static readonly typeName = "wg.cosmo.node.v1.AccountLimits";
347
- static readonly fields: FieldList;
348
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AccountLimits;
349
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AccountLimits;
350
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AccountLimits;
351
- static equals(a: AccountLimits | PlainMessage<AccountLimits> | undefined, b: AccountLimits | PlainMessage<AccountLimits> | undefined): boolean;
352
- }
167
+ };
168
+ /**
169
+ * Describes the message wg.cosmo.node.v1.AccountLimits.
170
+ * Use `create(AccountLimitsSchema)` to create a new message.
171
+ */
172
+ export declare const AccountLimitsSchema: GenMessage<AccountLimits>;
353
173
  /**
354
174
  * @generated from message wg.cosmo.node.v1.SelfRegisterRequest
355
175
  */
356
- export declare class SelfRegisterRequest extends Message<SelfRegisterRequest> {
357
- constructor(data?: PartialMessage<SelfRegisterRequest>);
358
- static readonly runtime: typeof proto3;
359
- static readonly typeName = "wg.cosmo.node.v1.SelfRegisterRequest";
360
- static readonly fields: FieldList;
361
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SelfRegisterRequest;
362
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SelfRegisterRequest;
363
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SelfRegisterRequest;
364
- static equals(a: SelfRegisterRequest | PlainMessage<SelfRegisterRequest> | undefined, b: SelfRegisterRequest | PlainMessage<SelfRegisterRequest> | undefined): boolean;
365
- }
176
+ export type SelfRegisterRequest = Message<"wg.cosmo.node.v1.SelfRegisterRequest"> & {};
177
+ /**
178
+ * Describes the message wg.cosmo.node.v1.SelfRegisterRequest.
179
+ * Use `create(SelfRegisterRequestSchema)` to create a new message.
180
+ */
181
+ export declare const SelfRegisterRequestSchema: GenMessage<SelfRegisterRequest>;
366
182
  /**
367
183
  * @generated from message wg.cosmo.node.v1.SelfRegisterResponse
368
184
  */
369
- export declare class SelfRegisterResponse extends Message<SelfRegisterResponse> {
185
+ export type SelfRegisterResponse = Message<"wg.cosmo.node.v1.SelfRegisterResponse"> & {
370
186
  /**
371
187
  * @generated from field: wg.cosmo.node.v1.Response response = 1;
372
188
  */
373
- response?: Response;
189
+ response?: Response | undefined;
374
190
  /**
375
191
  * @generated from field: optional wg.cosmo.node.v1.RegistrationInfo registrationInfo = 2;
376
192
  */
377
- registrationInfo?: RegistrationInfo;
378
- constructor(data?: PartialMessage<SelfRegisterResponse>);
379
- static readonly runtime: typeof proto3;
380
- static readonly typeName = "wg.cosmo.node.v1.SelfRegisterResponse";
381
- static readonly fields: FieldList;
382
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SelfRegisterResponse;
383
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SelfRegisterResponse;
384
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SelfRegisterResponse;
385
- static equals(a: SelfRegisterResponse | PlainMessage<SelfRegisterResponse> | undefined, b: SelfRegisterResponse | PlainMessage<SelfRegisterResponse> | undefined): boolean;
386
- }
193
+ registrationInfo?: RegistrationInfo | undefined;
194
+ };
195
+ /**
196
+ * Describes the message wg.cosmo.node.v1.SelfRegisterResponse.
197
+ * Use `create(SelfRegisterResponseSchema)` to create a new message.
198
+ */
199
+ export declare const SelfRegisterResponseSchema: GenMessage<SelfRegisterResponse>;
387
200
  /**
388
201
  * @generated from message wg.cosmo.node.v1.EngineConfiguration
389
202
  */
390
- export declare class EngineConfiguration extends Message<EngineConfiguration> {
203
+ export type EngineConfiguration = Message<"wg.cosmo.node.v1.EngineConfiguration"> & {
391
204
  /**
392
205
  * @generated from field: int64 defaultFlushInterval = 1;
393
206
  */
@@ -417,20 +230,17 @@ export declare class EngineConfiguration extends Message<EngineConfiguration> {
417
230
  /**
418
231
  * @generated from field: optional string graphql_client_schema = 7;
419
232
  */
420
- graphqlClientSchema?: string;
421
- constructor(data?: PartialMessage<EngineConfiguration>);
422
- static readonly runtime: typeof proto3;
423
- static readonly typeName = "wg.cosmo.node.v1.EngineConfiguration";
424
- static readonly fields: FieldList;
425
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EngineConfiguration;
426
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EngineConfiguration;
427
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EngineConfiguration;
428
- static equals(a: EngineConfiguration | PlainMessage<EngineConfiguration> | undefined, b: EngineConfiguration | PlainMessage<EngineConfiguration> | undefined): boolean;
429
- }
233
+ graphqlClientSchema?: string | undefined;
234
+ };
235
+ /**
236
+ * Describes the message wg.cosmo.node.v1.EngineConfiguration.
237
+ * Use `create(EngineConfigurationSchema)` to create a new message.
238
+ */
239
+ export declare const EngineConfigurationSchema: GenMessage<EngineConfiguration>;
430
240
  /**
431
241
  * @generated from message wg.cosmo.node.v1.DataSourceConfiguration
432
242
  */
433
- export declare class DataSourceConfiguration extends Message<DataSourceConfiguration> {
243
+ export type DataSourceConfiguration = Message<"wg.cosmo.node.v1.DataSourceConfiguration"> & {
434
244
  /**
435
245
  * @generated from field: wg.cosmo.node.v1.DataSourceKind kind = 1;
436
246
  */
@@ -450,11 +260,11 @@ export declare class DataSourceConfiguration extends Message<DataSourceConfigura
450
260
  /**
451
261
  * @generated from field: wg.cosmo.node.v1.DataSourceCustom_GraphQL custom_graphql = 5;
452
262
  */
453
- customGraphql?: DataSourceCustom_GraphQL;
263
+ customGraphql?: DataSourceCustom_GraphQL | undefined;
454
264
  /**
455
265
  * @generated from field: wg.cosmo.node.v1.DataSourceCustom_Static custom_static = 6;
456
266
  */
457
- customStatic?: DataSourceCustom_Static;
267
+ customStatic?: DataSourceCustom_Static | undefined;
458
268
  /**
459
269
  * @generated from field: repeated wg.cosmo.node.v1.DirectiveConfiguration directives = 7;
460
270
  */
@@ -482,7 +292,7 @@ export declare class DataSourceConfiguration extends Message<DataSourceConfigura
482
292
  /**
483
293
  * @generated from field: wg.cosmo.node.v1.DataSourceCustomEvents custom_events = 13;
484
294
  */
485
- customEvents?: DataSourceCustomEvents;
295
+ customEvents?: DataSourceCustomEvents | undefined;
486
296
  /**
487
297
  * @generated from field: repeated wg.cosmo.node.v1.EntityInterfaceConfiguration entity_interfaces = 14;
488
298
  */
@@ -494,20 +304,152 @@ export declare class DataSourceConfiguration extends Message<DataSourceConfigura
494
304
  /**
495
305
  * @generated from field: wg.cosmo.node.v1.CostConfiguration cost_configuration = 16;
496
306
  */
497
- costConfiguration?: CostConfiguration;
498
- constructor(data?: PartialMessage<DataSourceConfiguration>);
499
- static readonly runtime: typeof proto3;
500
- static readonly typeName = "wg.cosmo.node.v1.DataSourceConfiguration";
501
- static readonly fields: FieldList;
502
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DataSourceConfiguration;
503
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DataSourceConfiguration;
504
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DataSourceConfiguration;
505
- static equals(a: DataSourceConfiguration | PlainMessage<DataSourceConfiguration> | undefined, b: DataSourceConfiguration | PlainMessage<DataSourceConfiguration> | undefined): boolean;
506
- }
307
+ costConfiguration?: CostConfiguration | undefined;
308
+ /**
309
+ * Entity caching configuration (e.g. request-scoped fields from @openfed__requestScoped).
310
+ *
311
+ * @generated from field: wg.cosmo.node.v1.EntityCachingConfiguration entity_caching_configuration = 17;
312
+ */
313
+ entityCachingConfiguration?: EntityCachingConfiguration | undefined;
314
+ };
315
+ /**
316
+ * Describes the message wg.cosmo.node.v1.DataSourceConfiguration.
317
+ * Use `create(DataSourceConfigurationSchema)` to create a new message.
318
+ */
319
+ export declare const DataSourceConfigurationSchema: GenMessage<DataSourceConfiguration>;
320
+ /**
321
+ * Entity caching configuration for a subgraph data source.
322
+ *
323
+ * @generated from message wg.cosmo.node.v1.EntityCachingConfiguration
324
+ */
325
+ export type EntityCachingConfiguration = Message<"wg.cosmo.node.v1.EntityCachingConfiguration"> & {
326
+ /**
327
+ * Per-entity cache configurations (from @openfed__entityCache directive)
328
+ *
329
+ * @generated from field: repeated wg.cosmo.node.v1.EntityCacheConfiguration entity_cache_configurations = 1;
330
+ */
331
+ entityCacheConfigurations: EntityCacheConfiguration[];
332
+ /**
333
+ * Per-Mutation/Subscription-field cache eviction configs (from @openfed__cacheInvalidate)
334
+ *
335
+ * @generated from field: repeated wg.cosmo.node.v1.CacheInvalidateConfiguration cache_invalidate_configurations = 2;
336
+ */
337
+ cacheInvalidateConfigurations: CacheInvalidateConfiguration[];
338
+ /**
339
+ * Per-Mutation/Subscription-field cache population configs (from @openfed__cachePopulate)
340
+ *
341
+ * @generated from field: repeated wg.cosmo.node.v1.CachePopulateConfiguration cache_populate_configurations = 3;
342
+ */
343
+ cachePopulateConfigurations: CachePopulateConfiguration[];
344
+ };
345
+ /**
346
+ * Describes the message wg.cosmo.node.v1.EntityCachingConfiguration.
347
+ * Use `create(EntityCachingConfigurationSchema)` to create a new message.
348
+ */
349
+ export declare const EntityCachingConfigurationSchema: GenMessage<EntityCachingConfiguration>;
350
+ /**
351
+ * Per-entity declaration for @openfed__entityCache. Marks a @key entity type as cacheable so the
352
+ * router can store/serve resolved entities from an external store (e.g. Redis).
353
+ *
354
+ * @generated from message wg.cosmo.node.v1.EntityCacheConfiguration
355
+ */
356
+ export type EntityCacheConfiguration = Message<"wg.cosmo.node.v1.EntityCacheConfiguration"> & {
357
+ /**
358
+ * @generated from field: string type_name = 1;
359
+ */
360
+ typeName: string;
361
+ /**
362
+ * TTL for cached entity values. Required: composition rejects values <= 0,
363
+ * so omit (zero) does not occur in practice. Interpreted in seconds.
364
+ *
365
+ * @generated from field: int64 max_age_seconds = 2;
366
+ */
367
+ maxAgeSeconds: bigint;
368
+ /**
369
+ * @generated from field: bool include_headers = 3;
370
+ */
371
+ includeHeaders: boolean;
372
+ /**
373
+ * @generated from field: bool partial_cache_load = 4;
374
+ */
375
+ partialCacheLoad: boolean;
376
+ /**
377
+ * @generated from field: bool shadow_mode = 5;
378
+ */
379
+ shadowMode: boolean;
380
+ /**
381
+ * TTL for caching "not found" entity responses (entity returned null from
382
+ * _entities without errors). Omit or 0 disables negative caching and null
383
+ * responses are not cached. Positive values are seconds. Composition rejects
384
+ * negative values at schema validation time.
385
+ *
386
+ * @generated from field: int64 not_found_cache_ttl_seconds = 6;
387
+ */
388
+ notFoundCacheTtlSeconds: bigint;
389
+ };
390
+ /**
391
+ * Describes the message wg.cosmo.node.v1.EntityCacheConfiguration.
392
+ * Use `create(EntityCacheConfigurationSchema)` to create a new message.
393
+ */
394
+ export declare const EntityCacheConfigurationSchema: GenMessage<EntityCacheConfiguration>;
395
+ /**
396
+ * Per-field declaration for @openfed__cacheInvalidate. Tells the router to evict the returned
397
+ * entity from the cache after the (Mutation/Subscription) operation completes.
398
+ *
399
+ * @generated from message wg.cosmo.node.v1.CacheInvalidateConfiguration
400
+ */
401
+ export type CacheInvalidateConfiguration = Message<"wg.cosmo.node.v1.CacheInvalidateConfiguration"> & {
402
+ /**
403
+ * @generated from field: string field_name = 1;
404
+ */
405
+ fieldName: string;
406
+ /**
407
+ * @generated from field: string operation_type = 2;
408
+ */
409
+ operationType: string;
410
+ /**
411
+ * @generated from field: string entity_type_name = 3;
412
+ */
413
+ entityTypeName: string;
414
+ };
415
+ /**
416
+ * Describes the message wg.cosmo.node.v1.CacheInvalidateConfiguration.
417
+ * Use `create(CacheInvalidateConfigurationSchema)` to create a new message.
418
+ */
419
+ export declare const CacheInvalidateConfigurationSchema: GenMessage<CacheInvalidateConfiguration>;
420
+ /**
421
+ * Per-field declaration for @openfed__cachePopulate. Tells the router to populate the entity cache
422
+ * with the (Mutation/Subscription) operation's return value.
423
+ *
424
+ * @generated from message wg.cosmo.node.v1.CachePopulateConfiguration
425
+ */
426
+ export type CachePopulateConfiguration = Message<"wg.cosmo.node.v1.CachePopulateConfiguration"> & {
427
+ /**
428
+ * @generated from field: string field_name = 1;
429
+ */
430
+ fieldName: string;
431
+ /**
432
+ * @generated from field: string operation_type = 2;
433
+ */
434
+ operationType: string;
435
+ /**
436
+ * @generated from field: int64 max_age_seconds = 3;
437
+ */
438
+ maxAgeSeconds: bigint;
439
+ /**
440
+ * @generated from field: string entity_type_name = 4;
441
+ */
442
+ entityTypeName: string;
443
+ };
444
+ /**
445
+ * Describes the message wg.cosmo.node.v1.CachePopulateConfiguration.
446
+ * Use `create(CachePopulateConfigurationSchema)` to create a new message.
447
+ */
448
+ export declare const CachePopulateConfigurationSchema: GenMessage<CachePopulateConfiguration>;
507
449
  /**
508
450
  * @generated from message wg.cosmo.node.v1.CostConfiguration
509
451
  */
510
- export declare class CostConfiguration extends Message<CostConfiguration> {
452
+ export type CostConfiguration = Message<"wg.cosmo.node.v1.CostConfiguration"> & {
511
453
  /**
512
454
  * @generated from field: repeated wg.cosmo.node.v1.FieldWeightConfiguration field_weights = 1;
513
455
  */
@@ -528,19 +470,16 @@ export declare class CostConfiguration extends Message<CostConfiguration> {
528
470
  directiveArgumentWeights: {
529
471
  [key: string]: number;
530
472
  };
531
- constructor(data?: PartialMessage<CostConfiguration>);
532
- static readonly runtime: typeof proto3;
533
- static readonly typeName = "wg.cosmo.node.v1.CostConfiguration";
534
- static readonly fields: FieldList;
535
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CostConfiguration;
536
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CostConfiguration;
537
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CostConfiguration;
538
- static equals(a: CostConfiguration | PlainMessage<CostConfiguration> | undefined, b: CostConfiguration | PlainMessage<CostConfiguration> | undefined): boolean;
539
- }
473
+ };
474
+ /**
475
+ * Describes the message wg.cosmo.node.v1.CostConfiguration.
476
+ * Use `create(CostConfigurationSchema)` to create a new message.
477
+ */
478
+ export declare const CostConfigurationSchema: GenMessage<CostConfiguration>;
540
479
  /**
541
480
  * @generated from message wg.cosmo.node.v1.FieldWeightConfiguration
542
481
  */
543
- export declare class FieldWeightConfiguration extends Message<FieldWeightConfiguration> {
482
+ export type FieldWeightConfiguration = Message<"wg.cosmo.node.v1.FieldWeightConfiguration"> & {
544
483
  /**
545
484
  * @generated from field: string type_name = 1;
546
485
  */
@@ -552,7 +491,7 @@ export declare class FieldWeightConfiguration extends Message<FieldWeightConfigu
552
491
  /**
553
492
  * @generated from field: optional int32 weight = 3;
554
493
  */
555
- weight?: number;
494
+ weight?: number | undefined;
556
495
  /**
557
496
  * @generated from field: map<string, int32> argument_weights = 4;
558
497
  */
@@ -565,19 +504,16 @@ export declare class FieldWeightConfiguration extends Message<FieldWeightConfigu
565
504
  directiveArgumentWeights: {
566
505
  [key: string]: number;
567
506
  };
568
- constructor(data?: PartialMessage<FieldWeightConfiguration>);
569
- static readonly runtime: typeof proto3;
570
- static readonly typeName = "wg.cosmo.node.v1.FieldWeightConfiguration";
571
- static readonly fields: FieldList;
572
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FieldWeightConfiguration;
573
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FieldWeightConfiguration;
574
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FieldWeightConfiguration;
575
- static equals(a: FieldWeightConfiguration | PlainMessage<FieldWeightConfiguration> | undefined, b: FieldWeightConfiguration | PlainMessage<FieldWeightConfiguration> | undefined): boolean;
576
- }
507
+ };
508
+ /**
509
+ * Describes the message wg.cosmo.node.v1.FieldWeightConfiguration.
510
+ * Use `create(FieldWeightConfigurationSchema)` to create a new message.
511
+ */
512
+ export declare const FieldWeightConfigurationSchema: GenMessage<FieldWeightConfiguration>;
577
513
  /**
578
514
  * @generated from message wg.cosmo.node.v1.FieldListSizeConfiguration
579
515
  */
580
- export declare class FieldListSizeConfiguration extends Message<FieldListSizeConfiguration> {
516
+ export type FieldListSizeConfiguration = Message<"wg.cosmo.node.v1.FieldListSizeConfiguration"> & {
581
517
  /**
582
518
  * @generated from field: string type_name = 1;
583
519
  */
@@ -589,7 +525,7 @@ export declare class FieldListSizeConfiguration extends Message<FieldListSizeCon
589
525
  /**
590
526
  * @generated from field: optional int32 assumed_size = 3;
591
527
  */
592
- assumedSize?: number;
528
+ assumedSize?: number | undefined;
593
529
  /**
594
530
  * @generated from field: repeated string slicing_arguments = 4;
595
531
  */
@@ -601,20 +537,17 @@ export declare class FieldListSizeConfiguration extends Message<FieldListSizeCon
601
537
  /**
602
538
  * @generated from field: optional bool require_one_slicing_argument = 6;
603
539
  */
604
- requireOneSlicingArgument?: boolean;
605
- constructor(data?: PartialMessage<FieldListSizeConfiguration>);
606
- static readonly runtime: typeof proto3;
607
- static readonly typeName = "wg.cosmo.node.v1.FieldListSizeConfiguration";
608
- static readonly fields: FieldList;
609
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FieldListSizeConfiguration;
610
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FieldListSizeConfiguration;
611
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FieldListSizeConfiguration;
612
- static equals(a: FieldListSizeConfiguration | PlainMessage<FieldListSizeConfiguration> | undefined, b: FieldListSizeConfiguration | PlainMessage<FieldListSizeConfiguration> | undefined): boolean;
613
- }
540
+ requireOneSlicingArgument?: boolean | undefined;
541
+ };
542
+ /**
543
+ * Describes the message wg.cosmo.node.v1.FieldListSizeConfiguration.
544
+ * Use `create(FieldListSizeConfigurationSchema)` to create a new message.
545
+ */
546
+ export declare const FieldListSizeConfigurationSchema: GenMessage<FieldListSizeConfiguration>;
614
547
  /**
615
548
  * @generated from message wg.cosmo.node.v1.ArgumentConfiguration
616
549
  */
617
- export declare class ArgumentConfiguration extends Message<ArgumentConfiguration> {
550
+ export type ArgumentConfiguration = Message<"wg.cosmo.node.v1.ArgumentConfiguration"> & {
618
551
  /**
619
552
  * @generated from field: string name = 1;
620
553
  */
@@ -623,36 +556,30 @@ export declare class ArgumentConfiguration extends Message<ArgumentConfiguration
623
556
  * @generated from field: wg.cosmo.node.v1.ArgumentSource source_type = 2;
624
557
  */
625
558
  sourceType: ArgumentSource;
626
- constructor(data?: PartialMessage<ArgumentConfiguration>);
627
- static readonly runtime: typeof proto3;
628
- static readonly typeName = "wg.cosmo.node.v1.ArgumentConfiguration";
629
- static readonly fields: FieldList;
630
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ArgumentConfiguration;
631
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ArgumentConfiguration;
632
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ArgumentConfiguration;
633
- static equals(a: ArgumentConfiguration | PlainMessage<ArgumentConfiguration> | undefined, b: ArgumentConfiguration | PlainMessage<ArgumentConfiguration> | undefined): boolean;
634
- }
559
+ };
560
+ /**
561
+ * Describes the message wg.cosmo.node.v1.ArgumentConfiguration.
562
+ * Use `create(ArgumentConfigurationSchema)` to create a new message.
563
+ */
564
+ export declare const ArgumentConfigurationSchema: GenMessage<ArgumentConfiguration>;
635
565
  /**
636
566
  * @generated from message wg.cosmo.node.v1.Scopes
637
567
  */
638
- export declare class Scopes extends Message<Scopes> {
568
+ export type Scopes = Message<"wg.cosmo.node.v1.Scopes"> & {
639
569
  /**
640
570
  * @generated from field: repeated string required_and_scopes = 1;
641
571
  */
642
572
  requiredAndScopes: string[];
643
- constructor(data?: PartialMessage<Scopes>);
644
- static readonly runtime: typeof proto3;
645
- static readonly typeName = "wg.cosmo.node.v1.Scopes";
646
- static readonly fields: FieldList;
647
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scopes;
648
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scopes;
649
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scopes;
650
- static equals(a: Scopes | PlainMessage<Scopes> | undefined, b: Scopes | PlainMessage<Scopes> | undefined): boolean;
651
- }
573
+ };
574
+ /**
575
+ * Describes the message wg.cosmo.node.v1.Scopes.
576
+ * Use `create(ScopesSchema)` to create a new message.
577
+ */
578
+ export declare const ScopesSchema: GenMessage<Scopes>;
652
579
  /**
653
580
  * @generated from message wg.cosmo.node.v1.AuthorizationConfiguration
654
581
  */
655
- export declare class AuthorizationConfiguration extends Message<AuthorizationConfiguration> {
582
+ export type AuthorizationConfiguration = Message<"wg.cosmo.node.v1.AuthorizationConfiguration"> & {
656
583
  /**
657
584
  * @generated from field: bool requires_authentication = 1;
658
585
  */
@@ -665,19 +592,16 @@ export declare class AuthorizationConfiguration extends Message<AuthorizationCon
665
592
  * @generated from field: repeated wg.cosmo.node.v1.Scopes required_or_scopes_by_or = 3;
666
593
  */
667
594
  requiredOrScopesByOr: Scopes[];
668
- constructor(data?: PartialMessage<AuthorizationConfiguration>);
669
- static readonly runtime: typeof proto3;
670
- static readonly typeName = "wg.cosmo.node.v1.AuthorizationConfiguration";
671
- static readonly fields: FieldList;
672
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AuthorizationConfiguration;
673
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AuthorizationConfiguration;
674
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AuthorizationConfiguration;
675
- static equals(a: AuthorizationConfiguration | PlainMessage<AuthorizationConfiguration> | undefined, b: AuthorizationConfiguration | PlainMessage<AuthorizationConfiguration> | undefined): boolean;
676
- }
595
+ };
596
+ /**
597
+ * Describes the message wg.cosmo.node.v1.AuthorizationConfiguration.
598
+ * Use `create(AuthorizationConfigurationSchema)` to create a new message.
599
+ */
600
+ export declare const AuthorizationConfigurationSchema: GenMessage<AuthorizationConfiguration>;
677
601
  /**
678
602
  * @generated from message wg.cosmo.node.v1.FieldConfiguration
679
603
  */
680
- export declare class FieldConfiguration extends Message<FieldConfiguration> {
604
+ export type FieldConfiguration = Message<"wg.cosmo.node.v1.FieldConfiguration"> & {
681
605
  /**
682
606
  * @generated from field: string type_name = 1;
683
607
  */
@@ -693,24 +617,21 @@ export declare class FieldConfiguration extends Message<FieldConfiguration> {
693
617
  /**
694
618
  * @generated from field: wg.cosmo.node.v1.AuthorizationConfiguration authorization_configuration = 4;
695
619
  */
696
- authorizationConfiguration?: AuthorizationConfiguration;
620
+ authorizationConfiguration?: AuthorizationConfiguration | undefined;
697
621
  /**
698
622
  * @generated from field: optional wg.cosmo.node.v1.SubscriptionFilterCondition subscription_filter_condition = 5;
699
623
  */
700
- subscriptionFilterCondition?: SubscriptionFilterCondition;
701
- constructor(data?: PartialMessage<FieldConfiguration>);
702
- static readonly runtime: typeof proto3;
703
- static readonly typeName = "wg.cosmo.node.v1.FieldConfiguration";
704
- static readonly fields: FieldList;
705
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FieldConfiguration;
706
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FieldConfiguration;
707
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FieldConfiguration;
708
- static equals(a: FieldConfiguration | PlainMessage<FieldConfiguration> | undefined, b: FieldConfiguration | PlainMessage<FieldConfiguration> | undefined): boolean;
709
- }
624
+ subscriptionFilterCondition?: SubscriptionFilterCondition | undefined;
625
+ };
626
+ /**
627
+ * Describes the message wg.cosmo.node.v1.FieldConfiguration.
628
+ * Use `create(FieldConfigurationSchema)` to create a new message.
629
+ */
630
+ export declare const FieldConfigurationSchema: GenMessage<FieldConfiguration>;
710
631
  /**
711
632
  * @generated from message wg.cosmo.node.v1.TypeConfiguration
712
633
  */
713
- export declare class TypeConfiguration extends Message<TypeConfiguration> {
634
+ export type TypeConfiguration = Message<"wg.cosmo.node.v1.TypeConfiguration"> & {
714
635
  /**
715
636
  * @generated from field: string type_name = 1;
716
637
  */
@@ -719,19 +640,16 @@ export declare class TypeConfiguration extends Message<TypeConfiguration> {
719
640
  * @generated from field: string rename_to = 2;
720
641
  */
721
642
  renameTo: string;
722
- constructor(data?: PartialMessage<TypeConfiguration>);
723
- static readonly runtime: typeof proto3;
724
- static readonly typeName = "wg.cosmo.node.v1.TypeConfiguration";
725
- static readonly fields: FieldList;
726
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TypeConfiguration;
727
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TypeConfiguration;
728
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TypeConfiguration;
729
- static equals(a: TypeConfiguration | PlainMessage<TypeConfiguration> | undefined, b: TypeConfiguration | PlainMessage<TypeConfiguration> | undefined): boolean;
730
- }
643
+ };
644
+ /**
645
+ * Describes the message wg.cosmo.node.v1.TypeConfiguration.
646
+ * Use `create(TypeConfigurationSchema)` to create a new message.
647
+ */
648
+ export declare const TypeConfigurationSchema: GenMessage<TypeConfiguration>;
731
649
  /**
732
650
  * @generated from message wg.cosmo.node.v1.TypeField
733
651
  */
734
- export declare class TypeField extends Message<TypeField> {
652
+ export type TypeField = Message<"wg.cosmo.node.v1.TypeField"> & {
735
653
  /**
736
654
  * @generated from field: string type_name = 1;
737
655
  */
@@ -748,19 +666,16 @@ export declare class TypeField extends Message<TypeField> {
748
666
  * @generated from field: repeated string require_fetch_reasons_field_names = 4;
749
667
  */
750
668
  requireFetchReasonsFieldNames: string[];
751
- constructor(data?: PartialMessage<TypeField>);
752
- static readonly runtime: typeof proto3;
753
- static readonly typeName = "wg.cosmo.node.v1.TypeField";
754
- static readonly fields: FieldList;
755
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TypeField;
756
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TypeField;
757
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TypeField;
758
- static equals(a: TypeField | PlainMessage<TypeField> | undefined, b: TypeField | PlainMessage<TypeField> | undefined): boolean;
759
- }
669
+ };
670
+ /**
671
+ * Describes the message wg.cosmo.node.v1.TypeField.
672
+ * Use `create(TypeFieldSchema)` to create a new message.
673
+ */
674
+ export declare const TypeFieldSchema: GenMessage<TypeField>;
760
675
  /**
761
676
  * @generated from message wg.cosmo.node.v1.FieldCoordinates
762
677
  */
763
- export declare class FieldCoordinates extends Message<FieldCoordinates> {
678
+ export type FieldCoordinates = Message<"wg.cosmo.node.v1.FieldCoordinates"> & {
764
679
  /**
765
680
  * @generated from field: string field_name = 1;
766
681
  */
@@ -769,19 +684,16 @@ export declare class FieldCoordinates extends Message<FieldCoordinates> {
769
684
  * @generated from field: string type_name = 2;
770
685
  */
771
686
  typeName: string;
772
- constructor(data?: PartialMessage<FieldCoordinates>);
773
- static readonly runtime: typeof proto3;
774
- static readonly typeName = "wg.cosmo.node.v1.FieldCoordinates";
775
- static readonly fields: FieldList;
776
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FieldCoordinates;
777
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FieldCoordinates;
778
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FieldCoordinates;
779
- static equals(a: FieldCoordinates | PlainMessage<FieldCoordinates> | undefined, b: FieldCoordinates | PlainMessage<FieldCoordinates> | undefined): boolean;
780
- }
687
+ };
688
+ /**
689
+ * Describes the message wg.cosmo.node.v1.FieldCoordinates.
690
+ * Use `create(FieldCoordinatesSchema)` to create a new message.
691
+ */
692
+ export declare const FieldCoordinatesSchema: GenMessage<FieldCoordinates>;
781
693
  /**
782
694
  * @generated from message wg.cosmo.node.v1.FieldSetCondition
783
695
  */
784
- export declare class FieldSetCondition extends Message<FieldSetCondition> {
696
+ export type FieldSetCondition = Message<"wg.cosmo.node.v1.FieldSetCondition"> & {
785
697
  /**
786
698
  * @generated from field: repeated wg.cosmo.node.v1.FieldCoordinates field_coordinates_path = 1;
787
699
  */
@@ -790,19 +702,16 @@ export declare class FieldSetCondition extends Message<FieldSetCondition> {
790
702
  * @generated from field: repeated string field_path = 2;
791
703
  */
792
704
  fieldPath: string[];
793
- constructor(data?: PartialMessage<FieldSetCondition>);
794
- static readonly runtime: typeof proto3;
795
- static readonly typeName = "wg.cosmo.node.v1.FieldSetCondition";
796
- static readonly fields: FieldList;
797
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FieldSetCondition;
798
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FieldSetCondition;
799
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FieldSetCondition;
800
- static equals(a: FieldSetCondition | PlainMessage<FieldSetCondition> | undefined, b: FieldSetCondition | PlainMessage<FieldSetCondition> | undefined): boolean;
801
- }
705
+ };
706
+ /**
707
+ * Describes the message wg.cosmo.node.v1.FieldSetCondition.
708
+ * Use `create(FieldSetConditionSchema)` to create a new message.
709
+ */
710
+ export declare const FieldSetConditionSchema: GenMessage<FieldSetCondition>;
802
711
  /**
803
712
  * @generated from message wg.cosmo.node.v1.RequiredField
804
713
  */
805
- export declare class RequiredField extends Message<RequiredField> {
714
+ export type RequiredField = Message<"wg.cosmo.node.v1.RequiredField"> & {
806
715
  /**
807
716
  * @generated from field: string type_name = 1;
808
717
  */
@@ -823,19 +732,16 @@ export declare class RequiredField extends Message<RequiredField> {
823
732
  * @generated from field: repeated wg.cosmo.node.v1.FieldSetCondition conditions = 5;
824
733
  */
825
734
  conditions: FieldSetCondition[];
826
- constructor(data?: PartialMessage<RequiredField>);
827
- static readonly runtime: typeof proto3;
828
- static readonly typeName = "wg.cosmo.node.v1.RequiredField";
829
- static readonly fields: FieldList;
830
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RequiredField;
831
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RequiredField;
832
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RequiredField;
833
- static equals(a: RequiredField | PlainMessage<RequiredField> | undefined, b: RequiredField | PlainMessage<RequiredField> | undefined): boolean;
834
- }
735
+ };
736
+ /**
737
+ * Describes the message wg.cosmo.node.v1.RequiredField.
738
+ * Use `create(RequiredFieldSchema)` to create a new message.
739
+ */
740
+ export declare const RequiredFieldSchema: GenMessage<RequiredField>;
835
741
  /**
836
742
  * @generated from message wg.cosmo.node.v1.EntityInterfaceConfiguration
837
743
  */
838
- export declare class EntityInterfaceConfiguration extends Message<EntityInterfaceConfiguration> {
744
+ export type EntityInterfaceConfiguration = Message<"wg.cosmo.node.v1.EntityInterfaceConfiguration"> & {
839
745
  /**
840
746
  * @generated from field: string interface_type_name = 1;
841
747
  */
@@ -844,19 +750,16 @@ export declare class EntityInterfaceConfiguration extends Message<EntityInterfac
844
750
  * @generated from field: repeated string concrete_type_names = 2;
845
751
  */
846
752
  concreteTypeNames: string[];
847
- constructor(data?: PartialMessage<EntityInterfaceConfiguration>);
848
- static readonly runtime: typeof proto3;
849
- static readonly typeName = "wg.cosmo.node.v1.EntityInterfaceConfiguration";
850
- static readonly fields: FieldList;
851
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EntityInterfaceConfiguration;
852
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EntityInterfaceConfiguration;
853
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EntityInterfaceConfiguration;
854
- static equals(a: EntityInterfaceConfiguration | PlainMessage<EntityInterfaceConfiguration> | undefined, b: EntityInterfaceConfiguration | PlainMessage<EntityInterfaceConfiguration> | undefined): boolean;
855
- }
753
+ };
754
+ /**
755
+ * Describes the message wg.cosmo.node.v1.EntityInterfaceConfiguration.
756
+ * Use `create(EntityInterfaceConfigurationSchema)` to create a new message.
757
+ */
758
+ export declare const EntityInterfaceConfigurationSchema: GenMessage<EntityInterfaceConfiguration>;
856
759
  /**
857
760
  * @generated from message wg.cosmo.node.v1.FetchConfiguration
858
761
  */
859
- export declare class FetchConfiguration extends Message<FetchConfiguration> {
762
+ export type FetchConfiguration = Message<"wg.cosmo.node.v1.FetchConfiguration"> & {
860
763
  /**
861
764
  * You should either configure url OR a combination of baseURL and path
862
765
  * If url resolves to a non empty string, it takes precedence over baseURL and path
@@ -864,7 +767,7 @@ export declare class FetchConfiguration extends Message<FetchConfiguration> {
864
767
  *
865
768
  * @generated from field: wg.cosmo.node.v1.ConfigurationVariable url = 1;
866
769
  */
867
- url?: ConfigurationVariable;
770
+ url?: ConfigurationVariable | undefined;
868
771
  /**
869
772
  * @generated from field: wg.cosmo.node.v1.HTTPMethod method = 2;
870
773
  */
@@ -878,7 +781,7 @@ export declare class FetchConfiguration extends Message<FetchConfiguration> {
878
781
  /**
879
782
  * @generated from field: wg.cosmo.node.v1.ConfigurationVariable body = 4;
880
783
  */
881
- body?: ConfigurationVariable;
784
+ body?: ConfigurationVariable | undefined;
882
785
  /**
883
786
  * @generated from field: repeated wg.cosmo.node.v1.URLQueryConfiguration query = 5;
884
787
  */
@@ -896,32 +799,29 @@ export declare class FetchConfiguration extends Message<FetchConfiguration> {
896
799
  /**
897
800
  * @generated from field: wg.cosmo.node.v1.MTLSConfiguration mtls = 8;
898
801
  */
899
- mtls?: MTLSConfiguration;
802
+ mtls?: MTLSConfiguration | undefined;
900
803
  /**
901
804
  * @generated from field: wg.cosmo.node.v1.ConfigurationVariable base_url = 9;
902
805
  */
903
- baseUrl?: ConfigurationVariable;
806
+ baseUrl?: ConfigurationVariable | undefined;
904
807
  /**
905
808
  * @generated from field: wg.cosmo.node.v1.ConfigurationVariable path = 10;
906
809
  */
907
- path?: ConfigurationVariable;
810
+ path?: ConfigurationVariable | undefined;
908
811
  /**
909
812
  * @generated from field: optional wg.cosmo.node.v1.ConfigurationVariable http_proxy_url = 11;
910
813
  */
911
- httpProxyUrl?: ConfigurationVariable;
912
- constructor(data?: PartialMessage<FetchConfiguration>);
913
- static readonly runtime: typeof proto3;
914
- static readonly typeName = "wg.cosmo.node.v1.FetchConfiguration";
915
- static readonly fields: FieldList;
916
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FetchConfiguration;
917
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FetchConfiguration;
918
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FetchConfiguration;
919
- static equals(a: FetchConfiguration | PlainMessage<FetchConfiguration> | undefined, b: FetchConfiguration | PlainMessage<FetchConfiguration> | undefined): boolean;
920
- }
814
+ httpProxyUrl?: ConfigurationVariable | undefined;
815
+ };
816
+ /**
817
+ * Describes the message wg.cosmo.node.v1.FetchConfiguration.
818
+ * Use `create(FetchConfigurationSchema)` to create a new message.
819
+ */
820
+ export declare const FetchConfigurationSchema: GenMessage<FetchConfiguration>;
921
821
  /**
922
822
  * @generated from message wg.cosmo.node.v1.StatusCodeTypeMapping
923
823
  */
924
- export declare class StatusCodeTypeMapping extends Message<StatusCodeTypeMapping> {
824
+ export type StatusCodeTypeMapping = Message<"wg.cosmo.node.v1.StatusCodeTypeMapping"> & {
925
825
  /**
926
826
  * @generated from field: int64 status_code = 1;
927
827
  */
@@ -934,35 +834,32 @@ export declare class StatusCodeTypeMapping extends Message<StatusCodeTypeMapping
934
834
  * @generated from field: bool inject_status_code_into_body = 3;
935
835
  */
936
836
  injectStatusCodeIntoBody: boolean;
937
- constructor(data?: PartialMessage<StatusCodeTypeMapping>);
938
- static readonly runtime: typeof proto3;
939
- static readonly typeName = "wg.cosmo.node.v1.StatusCodeTypeMapping";
940
- static readonly fields: FieldList;
941
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StatusCodeTypeMapping;
942
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StatusCodeTypeMapping;
943
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StatusCodeTypeMapping;
944
- static equals(a: StatusCodeTypeMapping | PlainMessage<StatusCodeTypeMapping> | undefined, b: StatusCodeTypeMapping | PlainMessage<StatusCodeTypeMapping> | undefined): boolean;
945
- }
837
+ };
838
+ /**
839
+ * Describes the message wg.cosmo.node.v1.StatusCodeTypeMapping.
840
+ * Use `create(StatusCodeTypeMappingSchema)` to create a new message.
841
+ */
842
+ export declare const StatusCodeTypeMappingSchema: GenMessage<StatusCodeTypeMapping>;
946
843
  /**
947
844
  * @generated from message wg.cosmo.node.v1.DataSourceCustom_GraphQL
948
845
  */
949
- export declare class DataSourceCustom_GraphQL extends Message<DataSourceCustom_GraphQL> {
846
+ export type DataSourceCustom_GraphQL = Message<"wg.cosmo.node.v1.DataSourceCustom_GraphQL"> & {
950
847
  /**
951
848
  * @generated from field: wg.cosmo.node.v1.FetchConfiguration fetch = 1;
952
849
  */
953
- fetch?: FetchConfiguration;
850
+ fetch?: FetchConfiguration | undefined;
954
851
  /**
955
852
  * @generated from field: wg.cosmo.node.v1.GraphQLSubscriptionConfiguration subscription = 2;
956
853
  */
957
- subscription?: GraphQLSubscriptionConfiguration;
854
+ subscription?: GraphQLSubscriptionConfiguration | undefined;
958
855
  /**
959
856
  * @generated from field: wg.cosmo.node.v1.GraphQLFederationConfiguration federation = 3;
960
857
  */
961
- federation?: GraphQLFederationConfiguration;
858
+ federation?: GraphQLFederationConfiguration | undefined;
962
859
  /**
963
860
  * @generated from field: wg.cosmo.node.v1.InternedString upstream_schema = 4;
964
861
  */
965
- upstreamSchema?: InternedString;
862
+ upstreamSchema?: InternedString | undefined;
966
863
  /**
967
864
  * @generated from field: repeated wg.cosmo.node.v1.SingleTypeField custom_scalar_type_fields = 6;
968
865
  */
@@ -970,24 +867,21 @@ export declare class DataSourceCustom_GraphQL extends Message<DataSourceCustom_G
970
867
  /**
971
868
  * @generated from field: wg.cosmo.node.v1.GRPCConfiguration grpc = 7;
972
869
  */
973
- grpc?: GRPCConfiguration;
974
- constructor(data?: PartialMessage<DataSourceCustom_GraphQL>);
975
- static readonly runtime: typeof proto3;
976
- static readonly typeName = "wg.cosmo.node.v1.DataSourceCustom_GraphQL";
977
- static readonly fields: FieldList;
978
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DataSourceCustom_GraphQL;
979
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DataSourceCustom_GraphQL;
980
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DataSourceCustom_GraphQL;
981
- static equals(a: DataSourceCustom_GraphQL | PlainMessage<DataSourceCustom_GraphQL> | undefined, b: DataSourceCustom_GraphQL | PlainMessage<DataSourceCustom_GraphQL> | undefined): boolean;
982
- }
870
+ grpc?: GRPCConfiguration | undefined;
871
+ };
872
+ /**
873
+ * Describes the message wg.cosmo.node.v1.DataSourceCustom_GraphQL.
874
+ * Use `create(DataSourceCustom_GraphQLSchema)` to create a new message.
875
+ */
876
+ export declare const DataSourceCustom_GraphQLSchema: GenMessage<DataSourceCustom_GraphQL>;
983
877
  /**
984
878
  * @generated from message wg.cosmo.node.v1.GRPCConfiguration
985
879
  */
986
- export declare class GRPCConfiguration extends Message<GRPCConfiguration> {
880
+ export type GRPCConfiguration = Message<"wg.cosmo.node.v1.GRPCConfiguration"> & {
987
881
  /**
988
882
  * @generated from field: wg.cosmo.node.v1.GRPCMapping mapping = 1;
989
883
  */
990
- mapping?: GRPCMapping;
884
+ mapping?: GRPCMapping | undefined;
991
885
  /**
992
886
  * @generated from field: string proto_schema = 2;
993
887
  */
@@ -995,20 +889,17 @@ export declare class GRPCConfiguration extends Message<GRPCConfiguration> {
995
889
  /**
996
890
  * @generated from field: wg.cosmo.node.v1.PluginConfiguration plugin = 3;
997
891
  */
998
- plugin?: PluginConfiguration;
999
- constructor(data?: PartialMessage<GRPCConfiguration>);
1000
- static readonly runtime: typeof proto3;
1001
- static readonly typeName = "wg.cosmo.node.v1.GRPCConfiguration";
1002
- static readonly fields: FieldList;
1003
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GRPCConfiguration;
1004
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GRPCConfiguration;
1005
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GRPCConfiguration;
1006
- static equals(a: GRPCConfiguration | PlainMessage<GRPCConfiguration> | undefined, b: GRPCConfiguration | PlainMessage<GRPCConfiguration> | undefined): boolean;
1007
- }
892
+ plugin?: PluginConfiguration | undefined;
893
+ };
894
+ /**
895
+ * Describes the message wg.cosmo.node.v1.GRPCConfiguration.
896
+ * Use `create(GRPCConfigurationSchema)` to create a new message.
897
+ */
898
+ export declare const GRPCConfigurationSchema: GenMessage<GRPCConfiguration>;
1008
899
  /**
1009
900
  * @generated from message wg.cosmo.node.v1.ImageReference
1010
901
  */
1011
- export declare class ImageReference extends Message<ImageReference> {
902
+ export type ImageReference = Message<"wg.cosmo.node.v1.ImageReference"> & {
1012
903
  /**
1013
904
  * {organization_id}/{subgraph_id}
1014
905
  *
@@ -1021,19 +912,16 @@ export declare class ImageReference extends Message<ImageReference> {
1021
912
  * @generated from field: string reference = 2;
1022
913
  */
1023
914
  reference: string;
1024
- constructor(data?: PartialMessage<ImageReference>);
1025
- static readonly runtime: typeof proto3;
1026
- static readonly typeName = "wg.cosmo.node.v1.ImageReference";
1027
- static readonly fields: FieldList;
1028
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ImageReference;
1029
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ImageReference;
1030
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ImageReference;
1031
- static equals(a: ImageReference | PlainMessage<ImageReference> | undefined, b: ImageReference | PlainMessage<ImageReference> | undefined): boolean;
1032
- }
915
+ };
916
+ /**
917
+ * Describes the message wg.cosmo.node.v1.ImageReference.
918
+ * Use `create(ImageReferenceSchema)` to create a new message.
919
+ */
920
+ export declare const ImageReferenceSchema: GenMessage<ImageReference>;
1033
921
  /**
1034
922
  * @generated from message wg.cosmo.node.v1.PluginConfiguration
1035
923
  */
1036
- export declare class PluginConfiguration extends Message<PluginConfiguration> {
924
+ export type PluginConfiguration = Message<"wg.cosmo.node.v1.PluginConfiguration"> & {
1037
925
  /**
1038
926
  * Plugin name
1039
927
  *
@@ -1049,41 +937,35 @@ export declare class PluginConfiguration extends Message<PluginConfiguration> {
1049
937
  /**
1050
938
  * @generated from field: optional wg.cosmo.node.v1.ImageReference image_reference = 3;
1051
939
  */
1052
- imageReference?: ImageReference;
1053
- constructor(data?: PartialMessage<PluginConfiguration>);
1054
- static readonly runtime: typeof proto3;
1055
- static readonly typeName = "wg.cosmo.node.v1.PluginConfiguration";
1056
- static readonly fields: FieldList;
1057
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PluginConfiguration;
1058
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PluginConfiguration;
1059
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PluginConfiguration;
1060
- static equals(a: PluginConfiguration | PlainMessage<PluginConfiguration> | undefined, b: PluginConfiguration | PlainMessage<PluginConfiguration> | undefined): boolean;
1061
- }
940
+ imageReference?: ImageReference | undefined;
941
+ };
942
+ /**
943
+ * Describes the message wg.cosmo.node.v1.PluginConfiguration.
944
+ * Use `create(PluginConfigurationSchema)` to create a new message.
945
+ */
946
+ export declare const PluginConfigurationSchema: GenMessage<PluginConfiguration>;
1062
947
  /**
1063
948
  * @generated from message wg.cosmo.node.v1.SSLConfiguration
1064
949
  */
1065
- export declare class SSLConfiguration extends Message<SSLConfiguration> {
950
+ export type SSLConfiguration = Message<"wg.cosmo.node.v1.SSLConfiguration"> & {
1066
951
  /**
1067
952
  * Whether SSL is enabled
1068
953
  *
1069
954
  * @generated from field: bool enabled = 1;
1070
955
  */
1071
956
  enabled: boolean;
1072
- constructor(data?: PartialMessage<SSLConfiguration>);
1073
- static readonly runtime: typeof proto3;
1074
- static readonly typeName = "wg.cosmo.node.v1.SSLConfiguration";
1075
- static readonly fields: FieldList;
1076
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SSLConfiguration;
1077
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SSLConfiguration;
1078
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SSLConfiguration;
1079
- static equals(a: SSLConfiguration | PlainMessage<SSLConfiguration> | undefined, b: SSLConfiguration | PlainMessage<SSLConfiguration> | undefined): boolean;
1080
- }
957
+ };
958
+ /**
959
+ * Describes the message wg.cosmo.node.v1.SSLConfiguration.
960
+ * Use `create(SSLConfigurationSchema)` to create a new message.
961
+ */
962
+ export declare const SSLConfigurationSchema: GenMessage<SSLConfiguration>;
1081
963
  /**
1082
964
  * Defines mapping for a gRPC service
1083
965
  *
1084
966
  * @generated from message wg.cosmo.node.v1.GRPCMapping
1085
967
  */
1086
- export declare class GRPCMapping extends Message<GRPCMapping> {
968
+ export type GRPCMapping = Message<"wg.cosmo.node.v1.GRPCMapping"> & {
1087
969
  /**
1088
970
  * Version of the mapping format
1089
971
  *
@@ -1126,21 +1008,18 @@ export declare class GRPCMapping extends Message<GRPCMapping> {
1126
1008
  * @generated from field: repeated wg.cosmo.node.v1.LookupMapping resolve_mappings = 7;
1127
1009
  */
1128
1010
  resolveMappings: LookupMapping[];
1129
- constructor(data?: PartialMessage<GRPCMapping>);
1130
- static readonly runtime: typeof proto3;
1131
- static readonly typeName = "wg.cosmo.node.v1.GRPCMapping";
1132
- static readonly fields: FieldList;
1133
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GRPCMapping;
1134
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GRPCMapping;
1135
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GRPCMapping;
1136
- static equals(a: GRPCMapping | PlainMessage<GRPCMapping> | undefined, b: GRPCMapping | PlainMessage<GRPCMapping> | undefined): boolean;
1137
- }
1011
+ };
1012
+ /**
1013
+ * Describes the message wg.cosmo.node.v1.GRPCMapping.
1014
+ * Use `create(GRPCMappingSchema)` to create a new message.
1015
+ */
1016
+ export declare const GRPCMappingSchema: GenMessage<GRPCMapping>;
1138
1017
  /**
1139
1018
  * Defines mapping for a lookup operation
1140
1019
  *
1141
1020
  * @generated from message wg.cosmo.node.v1.LookupMapping
1142
1021
  */
1143
- export declare class LookupMapping extends Message<LookupMapping> {
1022
+ export type LookupMapping = Message<"wg.cosmo.node.v1.LookupMapping"> & {
1144
1023
  /**
1145
1024
  * Type of lookup operation
1146
1025
  *
@@ -1152,7 +1031,7 @@ export declare class LookupMapping extends Message<LookupMapping> {
1152
1031
  *
1153
1032
  * @generated from field: wg.cosmo.node.v1.LookupFieldMapping lookup_mapping = 2;
1154
1033
  */
1155
- lookupMapping?: LookupFieldMapping;
1034
+ lookupMapping?: LookupFieldMapping | undefined;
1156
1035
  /**
1157
1036
  * Mapped gRPC method name
1158
1037
  *
@@ -1171,21 +1050,18 @@ export declare class LookupMapping extends Message<LookupMapping> {
1171
1050
  * @generated from field: string response = 5;
1172
1051
  */
1173
1052
  response: string;
1174
- constructor(data?: PartialMessage<LookupMapping>);
1175
- static readonly runtime: typeof proto3;
1176
- static readonly typeName = "wg.cosmo.node.v1.LookupMapping";
1177
- static readonly fields: FieldList;
1178
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): LookupMapping;
1179
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): LookupMapping;
1180
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): LookupMapping;
1181
- static equals(a: LookupMapping | PlainMessage<LookupMapping> | undefined, b: LookupMapping | PlainMessage<LookupMapping> | undefined): boolean;
1182
- }
1053
+ };
1054
+ /**
1055
+ * Describes the message wg.cosmo.node.v1.LookupMapping.
1056
+ * Use `create(LookupMappingSchema)` to create a new message.
1057
+ */
1058
+ export declare const LookupMappingSchema: GenMessage<LookupMapping>;
1183
1059
  /**
1184
1060
  * Defines mapping for a lookup field
1185
1061
  *
1186
1062
  * @generated from message wg.cosmo.node.v1.LookupFieldMapping
1187
1063
  */
1188
- export declare class LookupFieldMapping extends Message<LookupFieldMapping> {
1064
+ export type LookupFieldMapping = Message<"wg.cosmo.node.v1.LookupFieldMapping"> & {
1189
1065
  /**
1190
1066
  * GraphQL type name
1191
1067
  *
@@ -1197,22 +1073,19 @@ export declare class LookupFieldMapping extends Message<LookupFieldMapping> {
1197
1073
  *
1198
1074
  * @generated from field: wg.cosmo.node.v1.FieldMapping field_mapping = 2;
1199
1075
  */
1200
- fieldMapping?: FieldMapping;
1201
- constructor(data?: PartialMessage<LookupFieldMapping>);
1202
- static readonly runtime: typeof proto3;
1203
- static readonly typeName = "wg.cosmo.node.v1.LookupFieldMapping";
1204
- static readonly fields: FieldList;
1205
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): LookupFieldMapping;
1206
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): LookupFieldMapping;
1207
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): LookupFieldMapping;
1208
- static equals(a: LookupFieldMapping | PlainMessage<LookupFieldMapping> | undefined, b: LookupFieldMapping | PlainMessage<LookupFieldMapping> | undefined): boolean;
1209
- }
1076
+ fieldMapping?: FieldMapping | undefined;
1077
+ };
1078
+ /**
1079
+ * Describes the message wg.cosmo.node.v1.LookupFieldMapping.
1080
+ * Use `create(LookupFieldMappingSchema)` to create a new message.
1081
+ */
1082
+ export declare const LookupFieldMappingSchema: GenMessage<LookupFieldMapping>;
1210
1083
  /**
1211
1084
  * Defines mapping between a GraphQL operation and a gRPC method
1212
1085
  *
1213
1086
  * @generated from message wg.cosmo.node.v1.OperationMapping
1214
1087
  */
1215
- export declare class OperationMapping extends Message<OperationMapping> {
1088
+ export type OperationMapping = Message<"wg.cosmo.node.v1.OperationMapping"> & {
1216
1089
  /**
1217
1090
  * GraphQL operation type: Query, Mutation, or Subscription
1218
1091
  *
@@ -1243,21 +1116,18 @@ export declare class OperationMapping extends Message<OperationMapping> {
1243
1116
  * @generated from field: string response = 5;
1244
1117
  */
1245
1118
  response: string;
1246
- constructor(data?: PartialMessage<OperationMapping>);
1247
- static readonly runtime: typeof proto3;
1248
- static readonly typeName = "wg.cosmo.node.v1.OperationMapping";
1249
- static readonly fields: FieldList;
1250
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OperationMapping;
1251
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OperationMapping;
1252
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OperationMapping;
1253
- static equals(a: OperationMapping | PlainMessage<OperationMapping> | undefined, b: OperationMapping | PlainMessage<OperationMapping> | undefined): boolean;
1254
- }
1119
+ };
1120
+ /**
1121
+ * Describes the message wg.cosmo.node.v1.OperationMapping.
1122
+ * Use `create(OperationMappingSchema)` to create a new message.
1123
+ */
1124
+ export declare const OperationMappingSchema: GenMessage<OperationMapping>;
1255
1125
  /**
1256
1126
  * Defines mapping for entity resolution
1257
1127
  *
1258
1128
  * @generated from message wg.cosmo.node.v1.EntityMapping
1259
1129
  */
1260
- export declare class EntityMapping extends Message<EntityMapping> {
1130
+ export type EntityMapping = Message<"wg.cosmo.node.v1.EntityMapping"> & {
1261
1131
  /**
1262
1132
  * GraphQL type name
1263
1133
  *
@@ -1300,25 +1170,22 @@ export declare class EntityMapping extends Message<EntityMapping> {
1300
1170
  * @generated from field: repeated wg.cosmo.node.v1.RequiredFieldMapping required_field_mappings = 7;
1301
1171
  */
1302
1172
  requiredFieldMappings: RequiredFieldMapping[];
1303
- constructor(data?: PartialMessage<EntityMapping>);
1304
- static readonly runtime: typeof proto3;
1305
- static readonly typeName = "wg.cosmo.node.v1.EntityMapping";
1306
- static readonly fields: FieldList;
1307
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EntityMapping;
1308
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EntityMapping;
1309
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EntityMapping;
1310
- static equals(a: EntityMapping | PlainMessage<EntityMapping> | undefined, b: EntityMapping | PlainMessage<EntityMapping> | undefined): boolean;
1311
- }
1173
+ };
1174
+ /**
1175
+ * Describes the message wg.cosmo.node.v1.EntityMapping.
1176
+ * Use `create(EntityMappingSchema)` to create a new message.
1177
+ */
1178
+ export declare const EntityMappingSchema: GenMessage<EntityMapping>;
1312
1179
  /**
1313
1180
  * Defines mapping for required fields
1314
1181
  *
1315
1182
  * @generated from message wg.cosmo.node.v1.RequiredFieldMapping
1316
1183
  */
1317
- export declare class RequiredFieldMapping extends Message<RequiredFieldMapping> {
1184
+ export type RequiredFieldMapping = Message<"wg.cosmo.node.v1.RequiredFieldMapping"> & {
1318
1185
  /**
1319
1186
  * @generated from field: wg.cosmo.node.v1.FieldMapping field_mapping = 1;
1320
1187
  */
1321
- fieldMapping?: FieldMapping;
1188
+ fieldMapping?: FieldMapping | undefined;
1322
1189
  /**
1323
1190
  * Mapped gRPC method name
1324
1191
  *
@@ -1337,21 +1204,18 @@ export declare class RequiredFieldMapping extends Message<RequiredFieldMapping>
1337
1204
  * @generated from field: string response = 4;
1338
1205
  */
1339
1206
  response: string;
1340
- constructor(data?: PartialMessage<RequiredFieldMapping>);
1341
- static readonly runtime: typeof proto3;
1342
- static readonly typeName = "wg.cosmo.node.v1.RequiredFieldMapping";
1343
- static readonly fields: FieldList;
1344
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RequiredFieldMapping;
1345
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RequiredFieldMapping;
1346
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RequiredFieldMapping;
1347
- static equals(a: RequiredFieldMapping | PlainMessage<RequiredFieldMapping> | undefined, b: RequiredFieldMapping | PlainMessage<RequiredFieldMapping> | undefined): boolean;
1348
- }
1207
+ };
1208
+ /**
1209
+ * Describes the message wg.cosmo.node.v1.RequiredFieldMapping.
1210
+ * Use `create(RequiredFieldMappingSchema)` to create a new message.
1211
+ */
1212
+ export declare const RequiredFieldMappingSchema: GenMessage<RequiredFieldMapping>;
1349
1213
  /**
1350
1214
  * Defines mapping between GraphQL type fields and gRPC message fields
1351
1215
  *
1352
1216
  * @generated from message wg.cosmo.node.v1.TypeFieldMapping
1353
1217
  */
1354
- export declare class TypeFieldMapping extends Message<TypeFieldMapping> {
1218
+ export type TypeFieldMapping = Message<"wg.cosmo.node.v1.TypeFieldMapping"> & {
1355
1219
  /**
1356
1220
  * GraphQL type name
1357
1221
  *
@@ -1364,21 +1228,18 @@ export declare class TypeFieldMapping extends Message<TypeFieldMapping> {
1364
1228
  * @generated from field: repeated wg.cosmo.node.v1.FieldMapping field_mappings = 2;
1365
1229
  */
1366
1230
  fieldMappings: FieldMapping[];
1367
- constructor(data?: PartialMessage<TypeFieldMapping>);
1368
- static readonly runtime: typeof proto3;
1369
- static readonly typeName = "wg.cosmo.node.v1.TypeFieldMapping";
1370
- static readonly fields: FieldList;
1371
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TypeFieldMapping;
1372
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TypeFieldMapping;
1373
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TypeFieldMapping;
1374
- static equals(a: TypeFieldMapping | PlainMessage<TypeFieldMapping> | undefined, b: TypeFieldMapping | PlainMessage<TypeFieldMapping> | undefined): boolean;
1375
- }
1231
+ };
1232
+ /**
1233
+ * Describes the message wg.cosmo.node.v1.TypeFieldMapping.
1234
+ * Use `create(TypeFieldMappingSchema)` to create a new message.
1235
+ */
1236
+ export declare const TypeFieldMappingSchema: GenMessage<TypeFieldMapping>;
1376
1237
  /**
1377
1238
  * Defines mapping for a single field
1378
1239
  *
1379
1240
  * @generated from message wg.cosmo.node.v1.FieldMapping
1380
1241
  */
1381
- export declare class FieldMapping extends Message<FieldMapping> {
1242
+ export type FieldMapping = Message<"wg.cosmo.node.v1.FieldMapping"> & {
1382
1243
  /**
1383
1244
  * Original GraphQL field name
1384
1245
  *
@@ -1397,21 +1258,18 @@ export declare class FieldMapping extends Message<FieldMapping> {
1397
1258
  * @generated from field: repeated wg.cosmo.node.v1.ArgumentMapping argument_mappings = 3;
1398
1259
  */
1399
1260
  argumentMappings: ArgumentMapping[];
1400
- constructor(data?: PartialMessage<FieldMapping>);
1401
- static readonly runtime: typeof proto3;
1402
- static readonly typeName = "wg.cosmo.node.v1.FieldMapping";
1403
- static readonly fields: FieldList;
1404
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FieldMapping;
1405
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FieldMapping;
1406
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FieldMapping;
1407
- static equals(a: FieldMapping | PlainMessage<FieldMapping> | undefined, b: FieldMapping | PlainMessage<FieldMapping> | undefined): boolean;
1408
- }
1261
+ };
1262
+ /**
1263
+ * Describes the message wg.cosmo.node.v1.FieldMapping.
1264
+ * Use `create(FieldMappingSchema)` to create a new message.
1265
+ */
1266
+ export declare const FieldMappingSchema: GenMessage<FieldMapping>;
1409
1267
  /**
1410
1268
  * Defines mapping for a field argument
1411
1269
  *
1412
1270
  * @generated from message wg.cosmo.node.v1.ArgumentMapping
1413
1271
  */
1414
- export declare class ArgumentMapping extends Message<ArgumentMapping> {
1272
+ export type ArgumentMapping = Message<"wg.cosmo.node.v1.ArgumentMapping"> & {
1415
1273
  /**
1416
1274
  * Original GraphQL argument name
1417
1275
  *
@@ -1424,19 +1282,16 @@ export declare class ArgumentMapping extends Message<ArgumentMapping> {
1424
1282
  * @generated from field: string mapped = 2;
1425
1283
  */
1426
1284
  mapped: string;
1427
- constructor(data?: PartialMessage<ArgumentMapping>);
1428
- static readonly runtime: typeof proto3;
1429
- static readonly typeName = "wg.cosmo.node.v1.ArgumentMapping";
1430
- static readonly fields: FieldList;
1431
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ArgumentMapping;
1432
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ArgumentMapping;
1433
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ArgumentMapping;
1434
- static equals(a: ArgumentMapping | PlainMessage<ArgumentMapping> | undefined, b: ArgumentMapping | PlainMessage<ArgumentMapping> | undefined): boolean;
1435
- }
1285
+ };
1286
+ /**
1287
+ * Describes the message wg.cosmo.node.v1.ArgumentMapping.
1288
+ * Use `create(ArgumentMappingSchema)` to create a new message.
1289
+ */
1290
+ export declare const ArgumentMappingSchema: GenMessage<ArgumentMapping>;
1436
1291
  /**
1437
1292
  * @generated from message wg.cosmo.node.v1.EnumMapping
1438
1293
  */
1439
- export declare class EnumMapping extends Message<EnumMapping> {
1294
+ export type EnumMapping = Message<"wg.cosmo.node.v1.EnumMapping"> & {
1440
1295
  /**
1441
1296
  * @generated from field: string type = 1;
1442
1297
  */
@@ -1445,19 +1300,16 @@ export declare class EnumMapping extends Message<EnumMapping> {
1445
1300
  * @generated from field: repeated wg.cosmo.node.v1.EnumValueMapping values = 2;
1446
1301
  */
1447
1302
  values: EnumValueMapping[];
1448
- constructor(data?: PartialMessage<EnumMapping>);
1449
- static readonly runtime: typeof proto3;
1450
- static readonly typeName = "wg.cosmo.node.v1.EnumMapping";
1451
- static readonly fields: FieldList;
1452
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EnumMapping;
1453
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EnumMapping;
1454
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EnumMapping;
1455
- static equals(a: EnumMapping | PlainMessage<EnumMapping> | undefined, b: EnumMapping | PlainMessage<EnumMapping> | undefined): boolean;
1456
- }
1303
+ };
1304
+ /**
1305
+ * Describes the message wg.cosmo.node.v1.EnumMapping.
1306
+ * Use `create(EnumMappingSchema)` to create a new message.
1307
+ */
1308
+ export declare const EnumMappingSchema: GenMessage<EnumMapping>;
1457
1309
  /**
1458
1310
  * @generated from message wg.cosmo.node.v1.EnumValueMapping
1459
1311
  */
1460
- export declare class EnumValueMapping extends Message<EnumValueMapping> {
1312
+ export type EnumValueMapping = Message<"wg.cosmo.node.v1.EnumValueMapping"> & {
1461
1313
  /**
1462
1314
  * @generated from field: string original = 1;
1463
1315
  */
@@ -1466,19 +1318,16 @@ export declare class EnumValueMapping extends Message<EnumValueMapping> {
1466
1318
  * @generated from field: string mapped = 2;
1467
1319
  */
1468
1320
  mapped: string;
1469
- constructor(data?: PartialMessage<EnumValueMapping>);
1470
- static readonly runtime: typeof proto3;
1471
- static readonly typeName = "wg.cosmo.node.v1.EnumValueMapping";
1472
- static readonly fields: FieldList;
1473
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EnumValueMapping;
1474
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EnumValueMapping;
1475
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EnumValueMapping;
1476
- static equals(a: EnumValueMapping | PlainMessage<EnumValueMapping> | undefined, b: EnumValueMapping | PlainMessage<EnumValueMapping> | undefined): boolean;
1477
- }
1321
+ };
1322
+ /**
1323
+ * Describes the message wg.cosmo.node.v1.EnumValueMapping.
1324
+ * Use `create(EnumValueMappingSchema)` to create a new message.
1325
+ */
1326
+ export declare const EnumValueMappingSchema: GenMessage<EnumValueMapping>;
1478
1327
  /**
1479
1328
  * @generated from message wg.cosmo.node.v1.NatsStreamConfiguration
1480
1329
  */
1481
- export declare class NatsStreamConfiguration extends Message<NatsStreamConfiguration> {
1330
+ export type NatsStreamConfiguration = Message<"wg.cosmo.node.v1.NatsStreamConfiguration"> & {
1482
1331
  /**
1483
1332
  * @generated from field: string consumer_name = 1;
1484
1333
  */
@@ -1491,23 +1340,20 @@ export declare class NatsStreamConfiguration extends Message<NatsStreamConfigura
1491
1340
  * @generated from field: int32 consumer_inactive_threshold = 3;
1492
1341
  */
1493
1342
  consumerInactiveThreshold: number;
1494
- constructor(data?: PartialMessage<NatsStreamConfiguration>);
1495
- static readonly runtime: typeof proto3;
1496
- static readonly typeName = "wg.cosmo.node.v1.NatsStreamConfiguration";
1497
- static readonly fields: FieldList;
1498
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): NatsStreamConfiguration;
1499
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): NatsStreamConfiguration;
1500
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): NatsStreamConfiguration;
1501
- static equals(a: NatsStreamConfiguration | PlainMessage<NatsStreamConfiguration> | undefined, b: NatsStreamConfiguration | PlainMessage<NatsStreamConfiguration> | undefined): boolean;
1502
- }
1343
+ };
1344
+ /**
1345
+ * Describes the message wg.cosmo.node.v1.NatsStreamConfiguration.
1346
+ * Use `create(NatsStreamConfigurationSchema)` to create a new message.
1347
+ */
1348
+ export declare const NatsStreamConfigurationSchema: GenMessage<NatsStreamConfiguration>;
1503
1349
  /**
1504
1350
  * @generated from message wg.cosmo.node.v1.NatsEventConfiguration
1505
1351
  */
1506
- export declare class NatsEventConfiguration extends Message<NatsEventConfiguration> {
1352
+ export type NatsEventConfiguration = Message<"wg.cosmo.node.v1.NatsEventConfiguration"> & {
1507
1353
  /**
1508
1354
  * @generated from field: wg.cosmo.node.v1.EngineEventConfiguration engine_event_configuration = 1;
1509
1355
  */
1510
- engineEventConfiguration?: EngineEventConfiguration;
1356
+ engineEventConfiguration?: EngineEventConfiguration | undefined;
1511
1357
  /**
1512
1358
  * @generated from field: repeated string subjects = 2;
1513
1359
  */
@@ -1515,62 +1361,53 @@ export declare class NatsEventConfiguration extends Message<NatsEventConfigurati
1515
1361
  /**
1516
1362
  * @generated from field: wg.cosmo.node.v1.NatsStreamConfiguration stream_configuration = 3;
1517
1363
  */
1518
- streamConfiguration?: NatsStreamConfiguration;
1519
- constructor(data?: PartialMessage<NatsEventConfiguration>);
1520
- static readonly runtime: typeof proto3;
1521
- static readonly typeName = "wg.cosmo.node.v1.NatsEventConfiguration";
1522
- static readonly fields: FieldList;
1523
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): NatsEventConfiguration;
1524
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): NatsEventConfiguration;
1525
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): NatsEventConfiguration;
1526
- static equals(a: NatsEventConfiguration | PlainMessage<NatsEventConfiguration> | undefined, b: NatsEventConfiguration | PlainMessage<NatsEventConfiguration> | undefined): boolean;
1527
- }
1364
+ streamConfiguration?: NatsStreamConfiguration | undefined;
1365
+ };
1366
+ /**
1367
+ * Describes the message wg.cosmo.node.v1.NatsEventConfiguration.
1368
+ * Use `create(NatsEventConfigurationSchema)` to create a new message.
1369
+ */
1370
+ export declare const NatsEventConfigurationSchema: GenMessage<NatsEventConfiguration>;
1528
1371
  /**
1529
1372
  * @generated from message wg.cosmo.node.v1.KafkaEventConfiguration
1530
1373
  */
1531
- export declare class KafkaEventConfiguration extends Message<KafkaEventConfiguration> {
1374
+ export type KafkaEventConfiguration = Message<"wg.cosmo.node.v1.KafkaEventConfiguration"> & {
1532
1375
  /**
1533
1376
  * @generated from field: wg.cosmo.node.v1.EngineEventConfiguration engine_event_configuration = 1;
1534
1377
  */
1535
- engineEventConfiguration?: EngineEventConfiguration;
1378
+ engineEventConfiguration?: EngineEventConfiguration | undefined;
1536
1379
  /**
1537
1380
  * @generated from field: repeated string topics = 2;
1538
1381
  */
1539
1382
  topics: string[];
1540
- constructor(data?: PartialMessage<KafkaEventConfiguration>);
1541
- static readonly runtime: typeof proto3;
1542
- static readonly typeName = "wg.cosmo.node.v1.KafkaEventConfiguration";
1543
- static readonly fields: FieldList;
1544
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): KafkaEventConfiguration;
1545
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): KafkaEventConfiguration;
1546
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): KafkaEventConfiguration;
1547
- static equals(a: KafkaEventConfiguration | PlainMessage<KafkaEventConfiguration> | undefined, b: KafkaEventConfiguration | PlainMessage<KafkaEventConfiguration> | undefined): boolean;
1548
- }
1383
+ };
1384
+ /**
1385
+ * Describes the message wg.cosmo.node.v1.KafkaEventConfiguration.
1386
+ * Use `create(KafkaEventConfigurationSchema)` to create a new message.
1387
+ */
1388
+ export declare const KafkaEventConfigurationSchema: GenMessage<KafkaEventConfiguration>;
1549
1389
  /**
1550
1390
  * @generated from message wg.cosmo.node.v1.RedisEventConfiguration
1551
1391
  */
1552
- export declare class RedisEventConfiguration extends Message<RedisEventConfiguration> {
1392
+ export type RedisEventConfiguration = Message<"wg.cosmo.node.v1.RedisEventConfiguration"> & {
1553
1393
  /**
1554
1394
  * @generated from field: wg.cosmo.node.v1.EngineEventConfiguration engine_event_configuration = 1;
1555
1395
  */
1556
- engineEventConfiguration?: EngineEventConfiguration;
1396
+ engineEventConfiguration?: EngineEventConfiguration | undefined;
1557
1397
  /**
1558
1398
  * @generated from field: repeated string channels = 2;
1559
1399
  */
1560
1400
  channels: string[];
1561
- constructor(data?: PartialMessage<RedisEventConfiguration>);
1562
- static readonly runtime: typeof proto3;
1563
- static readonly typeName = "wg.cosmo.node.v1.RedisEventConfiguration";
1564
- static readonly fields: FieldList;
1565
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RedisEventConfiguration;
1566
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RedisEventConfiguration;
1567
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RedisEventConfiguration;
1568
- static equals(a: RedisEventConfiguration | PlainMessage<RedisEventConfiguration> | undefined, b: RedisEventConfiguration | PlainMessage<RedisEventConfiguration> | undefined): boolean;
1569
- }
1401
+ };
1402
+ /**
1403
+ * Describes the message wg.cosmo.node.v1.RedisEventConfiguration.
1404
+ * Use `create(RedisEventConfigurationSchema)` to create a new message.
1405
+ */
1406
+ export declare const RedisEventConfigurationSchema: GenMessage<RedisEventConfiguration>;
1570
1407
  /**
1571
1408
  * @generated from message wg.cosmo.node.v1.EngineEventConfiguration
1572
1409
  */
1573
- export declare class EngineEventConfiguration extends Message<EngineEventConfiguration> {
1410
+ export type EngineEventConfiguration = Message<"wg.cosmo.node.v1.EngineEventConfiguration"> & {
1574
1411
  /**
1575
1412
  * @generated from field: string provider_id = 1;
1576
1413
  */
@@ -1587,19 +1424,16 @@ export declare class EngineEventConfiguration extends Message<EngineEventConfigu
1587
1424
  * @generated from field: string field_name = 4;
1588
1425
  */
1589
1426
  fieldName: string;
1590
- constructor(data?: PartialMessage<EngineEventConfiguration>);
1591
- static readonly runtime: typeof proto3;
1592
- static readonly typeName = "wg.cosmo.node.v1.EngineEventConfiguration";
1593
- static readonly fields: FieldList;
1594
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EngineEventConfiguration;
1595
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EngineEventConfiguration;
1596
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EngineEventConfiguration;
1597
- static equals(a: EngineEventConfiguration | PlainMessage<EngineEventConfiguration> | undefined, b: EngineEventConfiguration | PlainMessage<EngineEventConfiguration> | undefined): boolean;
1598
- }
1427
+ };
1428
+ /**
1429
+ * Describes the message wg.cosmo.node.v1.EngineEventConfiguration.
1430
+ * Use `create(EngineEventConfigurationSchema)` to create a new message.
1431
+ */
1432
+ export declare const EngineEventConfigurationSchema: GenMessage<EngineEventConfiguration>;
1599
1433
  /**
1600
1434
  * @generated from message wg.cosmo.node.v1.DataSourceCustomEvents
1601
1435
  */
1602
- export declare class DataSourceCustomEvents extends Message<DataSourceCustomEvents> {
1436
+ export type DataSourceCustomEvents = Message<"wg.cosmo.node.v1.DataSourceCustomEvents"> & {
1603
1437
  /**
1604
1438
  * @generated from field: repeated wg.cosmo.node.v1.NatsEventConfiguration nats = 1;
1605
1439
  */
@@ -1612,36 +1446,30 @@ export declare class DataSourceCustomEvents extends Message<DataSourceCustomEven
1612
1446
  * @generated from field: repeated wg.cosmo.node.v1.RedisEventConfiguration redis = 3;
1613
1447
  */
1614
1448
  redis: RedisEventConfiguration[];
1615
- constructor(data?: PartialMessage<DataSourceCustomEvents>);
1616
- static readonly runtime: typeof proto3;
1617
- static readonly typeName = "wg.cosmo.node.v1.DataSourceCustomEvents";
1618
- static readonly fields: FieldList;
1619
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DataSourceCustomEvents;
1620
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DataSourceCustomEvents;
1621
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DataSourceCustomEvents;
1622
- static equals(a: DataSourceCustomEvents | PlainMessage<DataSourceCustomEvents> | undefined, b: DataSourceCustomEvents | PlainMessage<DataSourceCustomEvents> | undefined): boolean;
1623
- }
1449
+ };
1450
+ /**
1451
+ * Describes the message wg.cosmo.node.v1.DataSourceCustomEvents.
1452
+ * Use `create(DataSourceCustomEventsSchema)` to create a new message.
1453
+ */
1454
+ export declare const DataSourceCustomEventsSchema: GenMessage<DataSourceCustomEvents>;
1624
1455
  /**
1625
1456
  * @generated from message wg.cosmo.node.v1.DataSourceCustom_Static
1626
1457
  */
1627
- export declare class DataSourceCustom_Static extends Message<DataSourceCustom_Static> {
1458
+ export type DataSourceCustom_Static = Message<"wg.cosmo.node.v1.DataSourceCustom_Static"> & {
1628
1459
  /**
1629
1460
  * @generated from field: wg.cosmo.node.v1.ConfigurationVariable data = 1;
1630
1461
  */
1631
- data?: ConfigurationVariable;
1632
- constructor(data?: PartialMessage<DataSourceCustom_Static>);
1633
- static readonly runtime: typeof proto3;
1634
- static readonly typeName = "wg.cosmo.node.v1.DataSourceCustom_Static";
1635
- static readonly fields: FieldList;
1636
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DataSourceCustom_Static;
1637
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DataSourceCustom_Static;
1638
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DataSourceCustom_Static;
1639
- static equals(a: DataSourceCustom_Static | PlainMessage<DataSourceCustom_Static> | undefined, b: DataSourceCustom_Static | PlainMessage<DataSourceCustom_Static> | undefined): boolean;
1640
- }
1462
+ data?: ConfigurationVariable | undefined;
1463
+ };
1464
+ /**
1465
+ * Describes the message wg.cosmo.node.v1.DataSourceCustom_Static.
1466
+ * Use `create(DataSourceCustom_StaticSchema)` to create a new message.
1467
+ */
1468
+ export declare const DataSourceCustom_StaticSchema: GenMessage<DataSourceCustom_Static>;
1641
1469
  /**
1642
1470
  * @generated from message wg.cosmo.node.v1.ConfigurationVariable
1643
1471
  */
1644
- export declare class ConfigurationVariable extends Message<ConfigurationVariable> {
1472
+ export type ConfigurationVariable = Message<"wg.cosmo.node.v1.ConfigurationVariable"> & {
1645
1473
  /**
1646
1474
  * @generated from field: wg.cosmo.node.v1.ConfigurationVariableKind kind = 1;
1647
1475
  */
@@ -1662,19 +1490,16 @@ export declare class ConfigurationVariable extends Message<ConfigurationVariable
1662
1490
  * @generated from field: string placeholder_variable_name = 5;
1663
1491
  */
1664
1492
  placeholderVariableName: string;
1665
- constructor(data?: PartialMessage<ConfigurationVariable>);
1666
- static readonly runtime: typeof proto3;
1667
- static readonly typeName = "wg.cosmo.node.v1.ConfigurationVariable";
1668
- static readonly fields: FieldList;
1669
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ConfigurationVariable;
1670
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ConfigurationVariable;
1671
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ConfigurationVariable;
1672
- static equals(a: ConfigurationVariable | PlainMessage<ConfigurationVariable> | undefined, b: ConfigurationVariable | PlainMessage<ConfigurationVariable> | undefined): boolean;
1673
- }
1493
+ };
1494
+ /**
1495
+ * Describes the message wg.cosmo.node.v1.ConfigurationVariable.
1496
+ * Use `create(ConfigurationVariableSchema)` to create a new message.
1497
+ */
1498
+ export declare const ConfigurationVariableSchema: GenMessage<ConfigurationVariable>;
1674
1499
  /**
1675
1500
  * @generated from message wg.cosmo.node.v1.DirectiveConfiguration
1676
1501
  */
1677
- export declare class DirectiveConfiguration extends Message<DirectiveConfiguration> {
1502
+ export type DirectiveConfiguration = Message<"wg.cosmo.node.v1.DirectiveConfiguration"> & {
1678
1503
  /**
1679
1504
  * @generated from field: string directive_name = 1;
1680
1505
  */
@@ -1683,19 +1508,16 @@ export declare class DirectiveConfiguration extends Message<DirectiveConfigurati
1683
1508
  * @generated from field: string rename_to = 2;
1684
1509
  */
1685
1510
  renameTo: string;
1686
- constructor(data?: PartialMessage<DirectiveConfiguration>);
1687
- static readonly runtime: typeof proto3;
1688
- static readonly typeName = "wg.cosmo.node.v1.DirectiveConfiguration";
1689
- static readonly fields: FieldList;
1690
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DirectiveConfiguration;
1691
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DirectiveConfiguration;
1692
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DirectiveConfiguration;
1693
- static equals(a: DirectiveConfiguration | PlainMessage<DirectiveConfiguration> | undefined, b: DirectiveConfiguration | PlainMessage<DirectiveConfiguration> | undefined): boolean;
1694
- }
1511
+ };
1512
+ /**
1513
+ * Describes the message wg.cosmo.node.v1.DirectiveConfiguration.
1514
+ * Use `create(DirectiveConfigurationSchema)` to create a new message.
1515
+ */
1516
+ export declare const DirectiveConfigurationSchema: GenMessage<DirectiveConfiguration>;
1695
1517
  /**
1696
1518
  * @generated from message wg.cosmo.node.v1.URLQueryConfiguration
1697
1519
  */
1698
- export declare class URLQueryConfiguration extends Message<URLQueryConfiguration> {
1520
+ export type URLQueryConfiguration = Message<"wg.cosmo.node.v1.URLQueryConfiguration"> & {
1699
1521
  /**
1700
1522
  * @generated from field: string name = 1;
1701
1523
  */
@@ -1704,61 +1526,52 @@ export declare class URLQueryConfiguration extends Message<URLQueryConfiguration
1704
1526
  * @generated from field: string value = 2;
1705
1527
  */
1706
1528
  value: string;
1707
- constructor(data?: PartialMessage<URLQueryConfiguration>);
1708
- static readonly runtime: typeof proto3;
1709
- static readonly typeName = "wg.cosmo.node.v1.URLQueryConfiguration";
1710
- static readonly fields: FieldList;
1711
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): URLQueryConfiguration;
1712
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): URLQueryConfiguration;
1713
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): URLQueryConfiguration;
1714
- static equals(a: URLQueryConfiguration | PlainMessage<URLQueryConfiguration> | undefined, b: URLQueryConfiguration | PlainMessage<URLQueryConfiguration> | undefined): boolean;
1715
- }
1529
+ };
1530
+ /**
1531
+ * Describes the message wg.cosmo.node.v1.URLQueryConfiguration.
1532
+ * Use `create(URLQueryConfigurationSchema)` to create a new message.
1533
+ */
1534
+ export declare const URLQueryConfigurationSchema: GenMessage<URLQueryConfiguration>;
1716
1535
  /**
1717
1536
  * @generated from message wg.cosmo.node.v1.HTTPHeader
1718
1537
  */
1719
- export declare class HTTPHeader extends Message<HTTPHeader> {
1538
+ export type HTTPHeader = Message<"wg.cosmo.node.v1.HTTPHeader"> & {
1720
1539
  /**
1721
1540
  * @generated from field: repeated wg.cosmo.node.v1.ConfigurationVariable values = 1;
1722
1541
  */
1723
1542
  values: ConfigurationVariable[];
1724
- constructor(data?: PartialMessage<HTTPHeader>);
1725
- static readonly runtime: typeof proto3;
1726
- static readonly typeName = "wg.cosmo.node.v1.HTTPHeader";
1727
- static readonly fields: FieldList;
1728
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): HTTPHeader;
1729
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): HTTPHeader;
1730
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): HTTPHeader;
1731
- static equals(a: HTTPHeader | PlainMessage<HTTPHeader> | undefined, b: HTTPHeader | PlainMessage<HTTPHeader> | undefined): boolean;
1732
- }
1543
+ };
1544
+ /**
1545
+ * Describes the message wg.cosmo.node.v1.HTTPHeader.
1546
+ * Use `create(HTTPHeaderSchema)` to create a new message.
1547
+ */
1548
+ export declare const HTTPHeaderSchema: GenMessage<HTTPHeader>;
1733
1549
  /**
1734
1550
  * @generated from message wg.cosmo.node.v1.MTLSConfiguration
1735
1551
  */
1736
- export declare class MTLSConfiguration extends Message<MTLSConfiguration> {
1552
+ export type MTLSConfiguration = Message<"wg.cosmo.node.v1.MTLSConfiguration"> & {
1737
1553
  /**
1738
1554
  * @generated from field: wg.cosmo.node.v1.ConfigurationVariable key = 1;
1739
1555
  */
1740
- key?: ConfigurationVariable;
1556
+ key?: ConfigurationVariable | undefined;
1741
1557
  /**
1742
1558
  * @generated from field: wg.cosmo.node.v1.ConfigurationVariable cert = 2;
1743
1559
  */
1744
- cert?: ConfigurationVariable;
1560
+ cert?: ConfigurationVariable | undefined;
1745
1561
  /**
1746
1562
  * @generated from field: bool insecureSkipVerify = 3;
1747
1563
  */
1748
1564
  insecureSkipVerify: boolean;
1749
- constructor(data?: PartialMessage<MTLSConfiguration>);
1750
- static readonly runtime: typeof proto3;
1751
- static readonly typeName = "wg.cosmo.node.v1.MTLSConfiguration";
1752
- static readonly fields: FieldList;
1753
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MTLSConfiguration;
1754
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MTLSConfiguration;
1755
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MTLSConfiguration;
1756
- static equals(a: MTLSConfiguration | PlainMessage<MTLSConfiguration> | undefined, b: MTLSConfiguration | PlainMessage<MTLSConfiguration> | undefined): boolean;
1757
- }
1565
+ };
1566
+ /**
1567
+ * Describes the message wg.cosmo.node.v1.MTLSConfiguration.
1568
+ * Use `create(MTLSConfigurationSchema)` to create a new message.
1569
+ */
1570
+ export declare const MTLSConfigurationSchema: GenMessage<MTLSConfiguration>;
1758
1571
  /**
1759
1572
  * @generated from message wg.cosmo.node.v1.GraphQLSubscriptionConfiguration
1760
1573
  */
1761
- export declare class GraphQLSubscriptionConfiguration extends Message<GraphQLSubscriptionConfiguration> {
1574
+ export type GraphQLSubscriptionConfiguration = Message<"wg.cosmo.node.v1.GraphQLSubscriptionConfiguration"> & {
1762
1575
  /**
1763
1576
  * @generated from field: bool enabled = 1;
1764
1577
  */
@@ -1766,34 +1579,31 @@ export declare class GraphQLSubscriptionConfiguration extends Message<GraphQLSub
1766
1579
  /**
1767
1580
  * @generated from field: wg.cosmo.node.v1.ConfigurationVariable url = 2;
1768
1581
  */
1769
- url?: ConfigurationVariable;
1582
+ url?: ConfigurationVariable | undefined;
1770
1583
  /**
1771
1584
  * @deprecated - Kept for backwards compatibility when decoding. Use protocol instead.
1772
1585
  *
1773
1586
  * @generated from field: optional bool useSSE = 3;
1774
1587
  */
1775
- useSSE?: boolean;
1588
+ useSSE?: boolean | undefined;
1776
1589
  /**
1777
1590
  * @generated from field: optional wg.cosmo.common.GraphQLSubscriptionProtocol protocol = 4;
1778
1591
  */
1779
- protocol?: GraphQLSubscriptionProtocol;
1592
+ protocol?: GraphQLSubscriptionProtocol | undefined;
1780
1593
  /**
1781
1594
  * @generated from field: optional wg.cosmo.common.GraphQLWebsocketSubprotocol websocketSubprotocol = 5;
1782
1595
  */
1783
- websocketSubprotocol?: GraphQLWebsocketSubprotocol;
1784
- constructor(data?: PartialMessage<GraphQLSubscriptionConfiguration>);
1785
- static readonly runtime: typeof proto3;
1786
- static readonly typeName = "wg.cosmo.node.v1.GraphQLSubscriptionConfiguration";
1787
- static readonly fields: FieldList;
1788
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GraphQLSubscriptionConfiguration;
1789
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GraphQLSubscriptionConfiguration;
1790
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GraphQLSubscriptionConfiguration;
1791
- static equals(a: GraphQLSubscriptionConfiguration | PlainMessage<GraphQLSubscriptionConfiguration> | undefined, b: GraphQLSubscriptionConfiguration | PlainMessage<GraphQLSubscriptionConfiguration> | undefined): boolean;
1792
- }
1596
+ websocketSubprotocol?: GraphQLWebsocketSubprotocol | undefined;
1597
+ };
1598
+ /**
1599
+ * Describes the message wg.cosmo.node.v1.GraphQLSubscriptionConfiguration.
1600
+ * Use `create(GraphQLSubscriptionConfigurationSchema)` to create a new message.
1601
+ */
1602
+ export declare const GraphQLSubscriptionConfigurationSchema: GenMessage<GraphQLSubscriptionConfiguration>;
1793
1603
  /**
1794
1604
  * @generated from message wg.cosmo.node.v1.GraphQLFederationConfiguration
1795
1605
  */
1796
- export declare class GraphQLFederationConfiguration extends Message<GraphQLFederationConfiguration> {
1606
+ export type GraphQLFederationConfiguration = Message<"wg.cosmo.node.v1.GraphQLFederationConfiguration"> & {
1797
1607
  /**
1798
1608
  * @generated from field: bool enabled = 1;
1799
1609
  */
@@ -1802,38 +1612,32 @@ export declare class GraphQLFederationConfiguration extends Message<GraphQLFeder
1802
1612
  * @generated from field: string serviceSdl = 2;
1803
1613
  */
1804
1614
  serviceSdl: string;
1805
- constructor(data?: PartialMessage<GraphQLFederationConfiguration>);
1806
- static readonly runtime: typeof proto3;
1807
- static readonly typeName = "wg.cosmo.node.v1.GraphQLFederationConfiguration";
1808
- static readonly fields: FieldList;
1809
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GraphQLFederationConfiguration;
1810
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GraphQLFederationConfiguration;
1811
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GraphQLFederationConfiguration;
1812
- static equals(a: GraphQLFederationConfiguration | PlainMessage<GraphQLFederationConfiguration> | undefined, b: GraphQLFederationConfiguration | PlainMessage<GraphQLFederationConfiguration> | undefined): boolean;
1813
- }
1615
+ };
1616
+ /**
1617
+ * Describes the message wg.cosmo.node.v1.GraphQLFederationConfiguration.
1618
+ * Use `create(GraphQLFederationConfigurationSchema)` to create a new message.
1619
+ */
1620
+ export declare const GraphQLFederationConfigurationSchema: GenMessage<GraphQLFederationConfiguration>;
1814
1621
  /**
1815
1622
  * @generated from message wg.cosmo.node.v1.InternedString
1816
1623
  */
1817
- export declare class InternedString extends Message<InternedString> {
1624
+ export type InternedString = Message<"wg.cosmo.node.v1.InternedString"> & {
1818
1625
  /**
1819
1626
  * key to index into EngineConfiguration.stringStorage
1820
1627
  *
1821
1628
  * @generated from field: string key = 1;
1822
1629
  */
1823
1630
  key: string;
1824
- constructor(data?: PartialMessage<InternedString>);
1825
- static readonly runtime: typeof proto3;
1826
- static readonly typeName = "wg.cosmo.node.v1.InternedString";
1827
- static readonly fields: FieldList;
1828
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): InternedString;
1829
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): InternedString;
1830
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): InternedString;
1831
- static equals(a: InternedString | PlainMessage<InternedString> | undefined, b: InternedString | PlainMessage<InternedString> | undefined): boolean;
1832
- }
1631
+ };
1632
+ /**
1633
+ * Describes the message wg.cosmo.node.v1.InternedString.
1634
+ * Use `create(InternedStringSchema)` to create a new message.
1635
+ */
1636
+ export declare const InternedStringSchema: GenMessage<InternedString>;
1833
1637
  /**
1834
1638
  * @generated from message wg.cosmo.node.v1.SingleTypeField
1835
1639
  */
1836
- export declare class SingleTypeField extends Message<SingleTypeField> {
1640
+ export type SingleTypeField = Message<"wg.cosmo.node.v1.SingleTypeField"> & {
1837
1641
  /**
1838
1642
  * @generated from field: string type_name = 1;
1839
1643
  */
@@ -1842,19 +1646,16 @@ export declare class SingleTypeField extends Message<SingleTypeField> {
1842
1646
  * @generated from field: string field_name = 2;
1843
1647
  */
1844
1648
  fieldName: string;
1845
- constructor(data?: PartialMessage<SingleTypeField>);
1846
- static readonly runtime: typeof proto3;
1847
- static readonly typeName = "wg.cosmo.node.v1.SingleTypeField";
1848
- static readonly fields: FieldList;
1849
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SingleTypeField;
1850
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SingleTypeField;
1851
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SingleTypeField;
1852
- static equals(a: SingleTypeField | PlainMessage<SingleTypeField> | undefined, b: SingleTypeField | PlainMessage<SingleTypeField> | undefined): boolean;
1853
- }
1649
+ };
1650
+ /**
1651
+ * Describes the message wg.cosmo.node.v1.SingleTypeField.
1652
+ * Use `create(SingleTypeFieldSchema)` to create a new message.
1653
+ */
1654
+ export declare const SingleTypeFieldSchema: GenMessage<SingleTypeField>;
1854
1655
  /**
1855
1656
  * @generated from message wg.cosmo.node.v1.SubscriptionFieldCondition
1856
1657
  */
1857
- export declare class SubscriptionFieldCondition extends Message<SubscriptionFieldCondition> {
1658
+ export type SubscriptionFieldCondition = Message<"wg.cosmo.node.v1.SubscriptionFieldCondition"> & {
1858
1659
  /**
1859
1660
  * @generated from field: repeated string field_path = 1;
1860
1661
  */
@@ -1863,19 +1664,16 @@ export declare class SubscriptionFieldCondition extends Message<SubscriptionFiel
1863
1664
  * @generated from field: string json = 2;
1864
1665
  */
1865
1666
  json: string;
1866
- constructor(data?: PartialMessage<SubscriptionFieldCondition>);
1867
- static readonly runtime: typeof proto3;
1868
- static readonly typeName = "wg.cosmo.node.v1.SubscriptionFieldCondition";
1869
- static readonly fields: FieldList;
1870
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SubscriptionFieldCondition;
1871
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SubscriptionFieldCondition;
1872
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SubscriptionFieldCondition;
1873
- static equals(a: SubscriptionFieldCondition | PlainMessage<SubscriptionFieldCondition> | undefined, b: SubscriptionFieldCondition | PlainMessage<SubscriptionFieldCondition> | undefined): boolean;
1874
- }
1667
+ };
1668
+ /**
1669
+ * Describes the message wg.cosmo.node.v1.SubscriptionFieldCondition.
1670
+ * Use `create(SubscriptionFieldConditionSchema)` to create a new message.
1671
+ */
1672
+ export declare const SubscriptionFieldConditionSchema: GenMessage<SubscriptionFieldCondition>;
1875
1673
  /**
1876
1674
  * @generated from message wg.cosmo.node.v1.SubscriptionFilterCondition
1877
1675
  */
1878
- export declare class SubscriptionFilterCondition extends Message<SubscriptionFilterCondition> {
1676
+ export type SubscriptionFilterCondition = Message<"wg.cosmo.node.v1.SubscriptionFilterCondition"> & {
1879
1677
  /**
1880
1678
  * @generated from field: repeated wg.cosmo.node.v1.SubscriptionFilterCondition and = 1;
1881
1679
  */
@@ -1883,66 +1681,57 @@ export declare class SubscriptionFilterCondition extends Message<SubscriptionFil
1883
1681
  /**
1884
1682
  * @generated from field: optional wg.cosmo.node.v1.SubscriptionFieldCondition in = 2;
1885
1683
  */
1886
- in?: SubscriptionFieldCondition;
1684
+ in?: SubscriptionFieldCondition | undefined;
1887
1685
  /**
1888
1686
  * @generated from field: optional wg.cosmo.node.v1.SubscriptionFilterCondition not = 3;
1889
1687
  */
1890
- not?: SubscriptionFilterCondition;
1688
+ not?: SubscriptionFilterCondition | undefined;
1891
1689
  /**
1892
1690
  * @generated from field: repeated wg.cosmo.node.v1.SubscriptionFilterCondition or = 4;
1893
1691
  */
1894
1692
  or: SubscriptionFilterCondition[];
1895
- constructor(data?: PartialMessage<SubscriptionFilterCondition>);
1896
- static readonly runtime: typeof proto3;
1897
- static readonly typeName = "wg.cosmo.node.v1.SubscriptionFilterCondition";
1898
- static readonly fields: FieldList;
1899
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SubscriptionFilterCondition;
1900
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SubscriptionFilterCondition;
1901
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SubscriptionFilterCondition;
1902
- static equals(a: SubscriptionFilterCondition | PlainMessage<SubscriptionFilterCondition> | undefined, b: SubscriptionFilterCondition | PlainMessage<SubscriptionFilterCondition> | undefined): boolean;
1903
- }
1693
+ };
1694
+ /**
1695
+ * Describes the message wg.cosmo.node.v1.SubscriptionFilterCondition.
1696
+ * Use `create(SubscriptionFilterConditionSchema)` to create a new message.
1697
+ */
1698
+ export declare const SubscriptionFilterConditionSchema: GenMessage<SubscriptionFilterCondition>;
1904
1699
  /**
1905
1700
  * @generated from message wg.cosmo.node.v1.CacheWarmerOperations
1906
1701
  */
1907
- export declare class CacheWarmerOperations extends Message<CacheWarmerOperations> {
1702
+ export type CacheWarmerOperations = Message<"wg.cosmo.node.v1.CacheWarmerOperations"> & {
1908
1703
  /**
1909
1704
  * @generated from field: repeated wg.cosmo.node.v1.Operation operations = 1;
1910
1705
  */
1911
1706
  operations: Operation[];
1912
- constructor(data?: PartialMessage<CacheWarmerOperations>);
1913
- static readonly runtime: typeof proto3;
1914
- static readonly typeName = "wg.cosmo.node.v1.CacheWarmerOperations";
1915
- static readonly fields: FieldList;
1916
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CacheWarmerOperations;
1917
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CacheWarmerOperations;
1918
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CacheWarmerOperations;
1919
- static equals(a: CacheWarmerOperations | PlainMessage<CacheWarmerOperations> | undefined, b: CacheWarmerOperations | PlainMessage<CacheWarmerOperations> | undefined): boolean;
1920
- }
1707
+ };
1708
+ /**
1709
+ * Describes the message wg.cosmo.node.v1.CacheWarmerOperations.
1710
+ * Use `create(CacheWarmerOperationsSchema)` to create a new message.
1711
+ */
1712
+ export declare const CacheWarmerOperationsSchema: GenMessage<CacheWarmerOperations>;
1921
1713
  /**
1922
1714
  * @generated from message wg.cosmo.node.v1.Operation
1923
1715
  */
1924
- export declare class Operation extends Message<Operation> {
1716
+ export type Operation = Message<"wg.cosmo.node.v1.Operation"> & {
1925
1717
  /**
1926
1718
  * @generated from field: wg.cosmo.node.v1.OperationRequest request = 1;
1927
1719
  */
1928
- request?: OperationRequest;
1720
+ request?: OperationRequest | undefined;
1929
1721
  /**
1930
1722
  * @generated from field: wg.cosmo.node.v1.ClientInfo client = 2;
1931
1723
  */
1932
- client?: ClientInfo;
1933
- constructor(data?: PartialMessage<Operation>);
1934
- static readonly runtime: typeof proto3;
1935
- static readonly typeName = "wg.cosmo.node.v1.Operation";
1936
- static readonly fields: FieldList;
1937
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Operation;
1938
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Operation;
1939
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Operation;
1940
- static equals(a: Operation | PlainMessage<Operation> | undefined, b: Operation | PlainMessage<Operation> | undefined): boolean;
1941
- }
1724
+ client?: ClientInfo | undefined;
1725
+ };
1726
+ /**
1727
+ * Describes the message wg.cosmo.node.v1.Operation.
1728
+ * Use `create(OperationSchema)` to create a new message.
1729
+ */
1730
+ export declare const OperationSchema: GenMessage<Operation>;
1942
1731
  /**
1943
1732
  * @generated from message wg.cosmo.node.v1.OperationRequest
1944
1733
  */
1945
- export declare class OperationRequest extends Message<OperationRequest> {
1734
+ export type OperationRequest = Message<"wg.cosmo.node.v1.OperationRequest"> & {
1946
1735
  /**
1947
1736
  * @generated from field: string operation_name = 1;
1948
1737
  */
@@ -1954,37 +1743,31 @@ export declare class OperationRequest extends Message<OperationRequest> {
1954
1743
  /**
1955
1744
  * @generated from field: wg.cosmo.node.v1.Extension extensions = 3;
1956
1745
  */
1957
- extensions?: Extension;
1958
- constructor(data?: PartialMessage<OperationRequest>);
1959
- static readonly runtime: typeof proto3;
1960
- static readonly typeName = "wg.cosmo.node.v1.OperationRequest";
1961
- static readonly fields: FieldList;
1962
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OperationRequest;
1963
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OperationRequest;
1964
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OperationRequest;
1965
- static equals(a: OperationRequest | PlainMessage<OperationRequest> | undefined, b: OperationRequest | PlainMessage<OperationRequest> | undefined): boolean;
1966
- }
1746
+ extensions?: Extension | undefined;
1747
+ };
1748
+ /**
1749
+ * Describes the message wg.cosmo.node.v1.OperationRequest.
1750
+ * Use `create(OperationRequestSchema)` to create a new message.
1751
+ */
1752
+ export declare const OperationRequestSchema: GenMessage<OperationRequest>;
1967
1753
  /**
1968
1754
  * @generated from message wg.cosmo.node.v1.Extension
1969
1755
  */
1970
- export declare class Extension extends Message<Extension> {
1756
+ export type Extension = Message<"wg.cosmo.node.v1.Extension"> & {
1971
1757
  /**
1972
1758
  * @generated from field: wg.cosmo.node.v1.PersistedQuery persisted_query = 1;
1973
1759
  */
1974
- persistedQuery?: PersistedQuery;
1975
- constructor(data?: PartialMessage<Extension>);
1976
- static readonly runtime: typeof proto3;
1977
- static readonly typeName = "wg.cosmo.node.v1.Extension";
1978
- static readonly fields: FieldList;
1979
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Extension;
1980
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Extension;
1981
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Extension;
1982
- static equals(a: Extension | PlainMessage<Extension> | undefined, b: Extension | PlainMessage<Extension> | undefined): boolean;
1983
- }
1760
+ persistedQuery?: PersistedQuery | undefined;
1761
+ };
1762
+ /**
1763
+ * Describes the message wg.cosmo.node.v1.Extension.
1764
+ * Use `create(ExtensionSchema)` to create a new message.
1765
+ */
1766
+ export declare const ExtensionSchema: GenMessage<Extension>;
1984
1767
  /**
1985
1768
  * @generated from message wg.cosmo.node.v1.PersistedQuery
1986
1769
  */
1987
- export declare class PersistedQuery extends Message<PersistedQuery> {
1770
+ export type PersistedQuery = Message<"wg.cosmo.node.v1.PersistedQuery"> & {
1988
1771
  /**
1989
1772
  * @generated from field: string sha256_hash = 1;
1990
1773
  */
@@ -1993,19 +1776,16 @@ export declare class PersistedQuery extends Message<PersistedQuery> {
1993
1776
  * @generated from field: int32 version = 2;
1994
1777
  */
1995
1778
  version: number;
1996
- constructor(data?: PartialMessage<PersistedQuery>);
1997
- static readonly runtime: typeof proto3;
1998
- static readonly typeName = "wg.cosmo.node.v1.PersistedQuery";
1999
- static readonly fields: FieldList;
2000
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PersistedQuery;
2001
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PersistedQuery;
2002
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PersistedQuery;
2003
- static equals(a: PersistedQuery | PlainMessage<PersistedQuery> | undefined, b: PersistedQuery | PlainMessage<PersistedQuery> | undefined): boolean;
2004
- }
1779
+ };
1780
+ /**
1781
+ * Describes the message wg.cosmo.node.v1.PersistedQuery.
1782
+ * Use `create(PersistedQuerySchema)` to create a new message.
1783
+ */
1784
+ export declare const PersistedQuerySchema: GenMessage<PersistedQuery>;
2005
1785
  /**
2006
1786
  * @generated from message wg.cosmo.node.v1.ClientInfo
2007
1787
  */
2008
- export declare class ClientInfo extends Message<ClientInfo> {
1788
+ export type ClientInfo = Message<"wg.cosmo.node.v1.ClientInfo"> & {
2009
1789
  /**
2010
1790
  * @generated from field: string name = 1;
2011
1791
  */
@@ -2014,12 +1794,214 @@ export declare class ClientInfo extends Message<ClientInfo> {
2014
1794
  * @generated from field: string version = 2;
2015
1795
  */
2016
1796
  version: string;
2017
- constructor(data?: PartialMessage<ClientInfo>);
2018
- static readonly runtime: typeof proto3;
2019
- static readonly typeName = "wg.cosmo.node.v1.ClientInfo";
2020
- static readonly fields: FieldList;
2021
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ClientInfo;
2022
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ClientInfo;
2023
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ClientInfo;
2024
- static equals(a: ClientInfo | PlainMessage<ClientInfo> | undefined, b: ClientInfo | PlainMessage<ClientInfo> | undefined): boolean;
1797
+ };
1798
+ /**
1799
+ * Describes the message wg.cosmo.node.v1.ClientInfo.
1800
+ * Use `create(ClientInfoSchema)` to create a new message.
1801
+ */
1802
+ export declare const ClientInfoSchema: GenMessage<ClientInfo>;
1803
+ /**
1804
+ * @generated from enum wg.cosmo.node.v1.ArgumentRenderConfiguration
1805
+ */
1806
+ export declare enum ArgumentRenderConfiguration {
1807
+ /**
1808
+ * @generated from enum value: RENDER_ARGUMENT_DEFAULT = 0;
1809
+ */
1810
+ RENDER_ARGUMENT_DEFAULT = 0,
1811
+ /**
1812
+ * @generated from enum value: RENDER_ARGUMENT_AS_GRAPHQL_VALUE = 1;
1813
+ */
1814
+ RENDER_ARGUMENT_AS_GRAPHQL_VALUE = 1,
1815
+ /**
1816
+ * @generated from enum value: RENDER_ARGUMENT_AS_ARRAY_CSV = 2;
1817
+ */
1818
+ RENDER_ARGUMENT_AS_ARRAY_CSV = 2
1819
+ }
1820
+ /**
1821
+ * Describes the enum wg.cosmo.node.v1.ArgumentRenderConfiguration.
1822
+ */
1823
+ export declare const ArgumentRenderConfigurationSchema: GenEnum<ArgumentRenderConfiguration>;
1824
+ /**
1825
+ * @generated from enum wg.cosmo.node.v1.ArgumentSource
1826
+ */
1827
+ export declare enum ArgumentSource {
1828
+ /**
1829
+ * @generated from enum value: OBJECT_FIELD = 0;
1830
+ */
1831
+ OBJECT_FIELD = 0,
1832
+ /**
1833
+ * @generated from enum value: FIELD_ARGUMENT = 1;
1834
+ */
1835
+ FIELD_ARGUMENT = 1
1836
+ }
1837
+ /**
1838
+ * Describes the enum wg.cosmo.node.v1.ArgumentSource.
1839
+ */
1840
+ export declare const ArgumentSourceSchema: GenEnum<ArgumentSource>;
1841
+ /**
1842
+ * @generated from enum wg.cosmo.node.v1.DataSourceKind
1843
+ */
1844
+ export declare enum DataSourceKind {
1845
+ /**
1846
+ * @generated from enum value: STATIC = 0;
1847
+ */
1848
+ STATIC = 0,
1849
+ /**
1850
+ * @generated from enum value: GRAPHQL = 1;
1851
+ */
1852
+ GRAPHQL = 1,
1853
+ /**
1854
+ * @generated from enum value: PUBSUB = 2;
1855
+ */
1856
+ PUBSUB = 2
1857
+ }
1858
+ /**
1859
+ * Describes the enum wg.cosmo.node.v1.DataSourceKind.
1860
+ */
1861
+ export declare const DataSourceKindSchema: GenEnum<DataSourceKind>;
1862
+ /**
1863
+ * Defines the type of lookup operation
1864
+ *
1865
+ * @generated from enum wg.cosmo.node.v1.LookupType
1866
+ */
1867
+ export declare enum LookupType {
1868
+ /**
1869
+ * Unspecified lookup type
1870
+ *
1871
+ * @generated from enum value: LOOKUP_TYPE_UNSPECIFIED = 0;
1872
+ */
1873
+ UNSPECIFIED = 0,
1874
+ /**
1875
+ * Lookup type for field resolution
1876
+ *
1877
+ * @generated from enum value: LOOKUP_TYPE_RESOLVE = 1;
1878
+ */
1879
+ RESOLVE = 1,
1880
+ /**
1881
+ * Lookup type for the @requires directive
1882
+ *
1883
+ * @generated from enum value: LOOKUP_TYPE_REQUIRES = 2;
1884
+ */
1885
+ REQUIRES = 2
1886
+ }
1887
+ /**
1888
+ * Describes the enum wg.cosmo.node.v1.LookupType.
1889
+ */
1890
+ export declare const LookupTypeSchema: GenEnum<LookupType>;
1891
+ /**
1892
+ * Defines the type of GraphQL operation
1893
+ *
1894
+ * @generated from enum wg.cosmo.node.v1.OperationType
1895
+ */
1896
+ export declare enum OperationType {
1897
+ /**
1898
+ * @generated from enum value: OPERATION_TYPE_UNSPECIFIED = 0;
1899
+ */
1900
+ UNSPECIFIED = 0,
1901
+ /**
1902
+ * Query operation
1903
+ *
1904
+ * @generated from enum value: OPERATION_TYPE_QUERY = 1;
1905
+ */
1906
+ QUERY = 1,
1907
+ /**
1908
+ * Mutation operation
1909
+ *
1910
+ * @generated from enum value: OPERATION_TYPE_MUTATION = 2;
1911
+ */
1912
+ MUTATION = 2,
1913
+ /**
1914
+ * Subscription operation
1915
+ *
1916
+ * @generated from enum value: OPERATION_TYPE_SUBSCRIPTION = 3;
1917
+ */
1918
+ SUBSCRIPTION = 3
1919
+ }
1920
+ /**
1921
+ * Describes the enum wg.cosmo.node.v1.OperationType.
1922
+ */
1923
+ export declare const OperationTypeSchema: GenEnum<OperationType>;
1924
+ /**
1925
+ * @generated from enum wg.cosmo.node.v1.EventType
1926
+ */
1927
+ export declare enum EventType {
1928
+ /**
1929
+ * @generated from enum value: PUBLISH = 0;
1930
+ */
1931
+ PUBLISH = 0,
1932
+ /**
1933
+ * @generated from enum value: REQUEST = 1;
1934
+ */
1935
+ REQUEST = 1,
1936
+ /**
1937
+ * @generated from enum value: SUBSCRIBE = 2;
1938
+ */
1939
+ SUBSCRIBE = 2
1940
+ }
1941
+ /**
1942
+ * Describes the enum wg.cosmo.node.v1.EventType.
1943
+ */
1944
+ export declare const EventTypeSchema: GenEnum<EventType>;
1945
+ /**
1946
+ * @generated from enum wg.cosmo.node.v1.ConfigurationVariableKind
1947
+ */
1948
+ export declare enum ConfigurationVariableKind {
1949
+ /**
1950
+ * @generated from enum value: STATIC_CONFIGURATION_VARIABLE = 0;
1951
+ */
1952
+ STATIC_CONFIGURATION_VARIABLE = 0,
1953
+ /**
1954
+ * @generated from enum value: ENV_CONFIGURATION_VARIABLE = 1;
1955
+ */
1956
+ ENV_CONFIGURATION_VARIABLE = 1,
1957
+ /**
1958
+ * @generated from enum value: PLACEHOLDER_CONFIGURATION_VARIABLE = 2;
1959
+ */
1960
+ PLACEHOLDER_CONFIGURATION_VARIABLE = 2
1961
+ }
1962
+ /**
1963
+ * Describes the enum wg.cosmo.node.v1.ConfigurationVariableKind.
1964
+ */
1965
+ export declare const ConfigurationVariableKindSchema: GenEnum<ConfigurationVariableKind>;
1966
+ /**
1967
+ * @generated from enum wg.cosmo.node.v1.HTTPMethod
1968
+ */
1969
+ export declare enum HTTPMethod {
1970
+ /**
1971
+ * @generated from enum value: GET = 0;
1972
+ */
1973
+ GET = 0,
1974
+ /**
1975
+ * @generated from enum value: POST = 1;
1976
+ */
1977
+ POST = 1,
1978
+ /**
1979
+ * @generated from enum value: PUT = 2;
1980
+ */
1981
+ PUT = 2,
1982
+ /**
1983
+ * @generated from enum value: DELETE = 3;
1984
+ */
1985
+ DELETE = 3,
1986
+ /**
1987
+ * @generated from enum value: OPTIONS = 4;
1988
+ */
1989
+ OPTIONS = 4
2025
1990
  }
1991
+ /**
1992
+ * Describes the enum wg.cosmo.node.v1.HTTPMethod.
1993
+ */
1994
+ export declare const HTTPMethodSchema: GenEnum<HTTPMethod>;
1995
+ /**
1996
+ * @generated from service wg.cosmo.node.v1.NodeService
1997
+ */
1998
+ export declare const NodeService: GenService<{
1999
+ /**
2000
+ * @generated from rpc wg.cosmo.node.v1.NodeService.SelfRegister
2001
+ */
2002
+ selfRegister: {
2003
+ methodKind: "unary";
2004
+ input: typeof SelfRegisterRequestSchema;
2005
+ output: typeof SelfRegisterResponseSchema;
2006
+ };
2007
+ }>;