@kronos-ts/axon-server 0.1.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 (106) hide show
  1. package/dist/axon-server-event-store.d.ts +16 -0
  2. package/dist/axon-server-event-store.d.ts.map +1 -0
  3. package/dist/axon-server-event-store.js +282 -0
  4. package/dist/axon-server-event-store.js.map +1 -0
  5. package/dist/axon-server-snapshot-store.d.ts +12 -0
  6. package/dist/axon-server-snapshot-store.d.ts.map +1 -0
  7. package/dist/axon-server-snapshot-store.js +88 -0
  8. package/dist/axon-server-snapshot-store.js.map +1 -0
  9. package/dist/axon-server.d.ts +115 -0
  10. package/dist/axon-server.d.ts.map +1 -0
  11. package/dist/axon-server.js +986 -0
  12. package/dist/axon-server.js.map +1 -0
  13. package/dist/connection-manager.d.ts +49 -0
  14. package/dist/connection-manager.d.ts.map +1 -0
  15. package/dist/connection-manager.js +37 -0
  16. package/dist/connection-manager.js.map +1 -0
  17. package/dist/connection.d.ts +129 -0
  18. package/dist/connection.d.ts.map +1 -0
  19. package/dist/connection.js +130 -0
  20. package/dist/connection.js.map +1 -0
  21. package/dist/errors.d.ts +96 -0
  22. package/dist/errors.d.ts.map +1 -0
  23. package/dist/errors.js +189 -0
  24. package/dist/errors.js.map +1 -0
  25. package/dist/event-processor-info.d.ts +35 -0
  26. package/dist/event-processor-info.d.ts.map +1 -0
  27. package/dist/event-processor-info.js +28 -0
  28. package/dist/event-processor-info.js.map +1 -0
  29. package/dist/flow-controlled-sender.d.ts +30 -0
  30. package/dist/flow-controlled-sender.d.ts.map +1 -0
  31. package/dist/flow-controlled-sender.js +60 -0
  32. package/dist/flow-controlled-sender.js.map +1 -0
  33. package/dist/generated/command.d.ts +158 -0
  34. package/dist/generated/command.d.ts.map +1 -0
  35. package/dist/generated/command.js +970 -0
  36. package/dist/generated/command.js.map +1 -0
  37. package/dist/generated/common.d.ts +130 -0
  38. package/dist/generated/common.d.ts.map +1 -0
  39. package/dist/generated/common.js +908 -0
  40. package/dist/generated/common.js.map +1 -0
  41. package/dist/generated/control.d.ts +293 -0
  42. package/dist/generated/control.d.ts.map +1 -0
  43. package/dist/generated/control.js +1938 -0
  44. package/dist/generated/control.js.map +1 -0
  45. package/dist/generated/dcb.d.ts +650 -0
  46. package/dist/generated/dcb.d.ts.map +1 -0
  47. package/dist/generated/dcb.js +2943 -0
  48. package/dist/generated/dcb.js.map +1 -0
  49. package/dist/generated/event.d.ts +667 -0
  50. package/dist/generated/event.d.ts.map +1 -0
  51. package/dist/generated/event.js +3185 -0
  52. package/dist/generated/event.js.map +1 -0
  53. package/dist/generated/google/protobuf/empty.d.ts +30 -0
  54. package/dist/generated/google/protobuf/empty.d.ts.map +1 -0
  55. package/dist/generated/google/protobuf/empty.js +46 -0
  56. package/dist/generated/google/protobuf/empty.js.map +1 -0
  57. package/dist/generated/query.d.ts +300 -0
  58. package/dist/generated/query.d.ts.map +1 -0
  59. package/dist/generated/query.js +2183 -0
  60. package/dist/generated/query.js.map +1 -0
  61. package/dist/index.d.ts +12 -0
  62. package/dist/index.d.ts.map +1 -0
  63. package/dist/index.js +12 -0
  64. package/dist/index.js.map +1 -0
  65. package/dist/message-size.d.ts +38 -0
  66. package/dist/message-size.d.ts.map +1 -0
  67. package/dist/message-size.js +57 -0
  68. package/dist/message-size.js.map +1 -0
  69. package/dist/metadata-conversion.d.ts +11 -0
  70. package/dist/metadata-conversion.d.ts.map +1 -0
  71. package/dist/metadata-conversion.js +51 -0
  72. package/dist/metadata-conversion.js.map +1 -0
  73. package/dist/outbound-stream.d.ts +15 -0
  74. package/dist/outbound-stream.d.ts.map +1 -0
  75. package/dist/outbound-stream.js +39 -0
  76. package/dist/outbound-stream.js.map +1 -0
  77. package/dist/platform-service.d.ts +119 -0
  78. package/dist/platform-service.d.ts.map +1 -0
  79. package/dist/platform-service.js +250 -0
  80. package/dist/platform-service.js.map +1 -0
  81. package/dist/shutdown-latch.d.ts +38 -0
  82. package/dist/shutdown-latch.d.ts.map +1 -0
  83. package/dist/shutdown-latch.js +51 -0
  84. package/dist/shutdown-latch.js.map +1 -0
  85. package/package.json +69 -0
  86. package/src/axon-server-event-store.ts +358 -0
  87. package/src/axon-server-snapshot-store.ts +118 -0
  88. package/src/axon-server.ts +1202 -0
  89. package/src/connection-manager.ts +88 -0
  90. package/src/connection.ts +272 -0
  91. package/src/errors.ts +223 -0
  92. package/src/event-processor-info.ts +62 -0
  93. package/src/flow-controlled-sender.ts +91 -0
  94. package/src/generated/command.ts +1231 -0
  95. package/src/generated/common.ts +1097 -0
  96. package/src/generated/control.ts +2419 -0
  97. package/src/generated/dcb.ts +3826 -0
  98. package/src/generated/event.ts +4076 -0
  99. package/src/generated/google/protobuf/empty.ts +84 -0
  100. package/src/generated/query.ts +2723 -0
  101. package/src/index.ts +75 -0
  102. package/src/message-size.ts +75 -0
  103. package/src/metadata-conversion.ts +46 -0
  104. package/src/outbound-stream.ts +52 -0
  105. package/src/platform-service.ts +361 -0
  106. package/src/shutdown-latch.ts +97 -0
@@ -0,0 +1,300 @@
1
+ import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire";
2
+ import type { CallContext, CallOptions } from "nice-grpc-common";
3
+ import { ErrorMessage, FlowControl, InstructionAck, MetaDataValue, ProcessingInstruction, SerializedObject } from "./common.js";
4
+ export declare const protobufPackage = "io.axoniq.axonserver.grpc.query";
5
+ /** Message containing Query related instructions for Axon Server */
6
+ export interface QueryProviderOutbound {
7
+ /** Registers a Query Handler with AxonServer */
8
+ subscribe?: QuerySubscription | undefined;
9
+ /** Unregisters a Query Handler with AxonServer */
10
+ unsubscribe?: QuerySubscription | undefined;
11
+ /** Grant permits to AxonServer to send a number of messages to the client */
12
+ flowControl?: FlowControl | undefined;
13
+ /** Sends a Response to a Query received via the inbound stream */
14
+ queryResponse?: QueryResponse | undefined;
15
+ /** Indicator that all responses for Query have been sent */
16
+ queryComplete?: QueryComplete | undefined;
17
+ /** Sends a response for a Subscription Query that has been received via the inbound stream */
18
+ subscriptionQueryResponse?: SubscriptionQueryResponse | undefined;
19
+ /** Acknowledgement of previously sent instruction via inbound stream */
20
+ ack?: InstructionAck | undefined;
21
+ /** Instruction identifier. If this identifier is set, this instruction will be acknowledged via inbound stream */
22
+ instructionId: string;
23
+ }
24
+ /** Queries or Query related instructions from AxonServer for the connected application */
25
+ export interface QueryProviderInbound {
26
+ /** Acknowledgement of previously sent instruction via outbound stream */
27
+ ack?: InstructionAck | undefined;
28
+ /** Represents an incoming Query, for which this component is expected to provide a response */
29
+ query?: QueryRequest | undefined;
30
+ /** Represents an incoming Subscription Query, for which this component is expected to provide a response and updates */
31
+ subscriptionQueryRequest?: SubscriptionQueryRequest | undefined;
32
+ /** Indicator that receiver is no more interested in updates of this query */
33
+ queryCancel?: QueryReference | undefined;
34
+ /** Indicator that receiver should send more updates of this query */
35
+ queryFlowControl?: QueryFlowControl | undefined;
36
+ /** Instruction identifier. If this identifier is set, this instruction will be acknowledged via outbound stream */
37
+ instructionId: string;
38
+ }
39
+ export interface QueryReference {
40
+ /** The identifier of the query request. */
41
+ requestId: string;
42
+ }
43
+ /** Message indicating that query has been completed. */
44
+ export interface QueryComplete {
45
+ /** A unique identifier for this message */
46
+ messageId: string;
47
+ /** The identifier of the incoming query to complete */
48
+ requestId: string;
49
+ }
50
+ /** Message indicating that consumer is requesting more messages from producer. */
51
+ export interface QueryFlowControl {
52
+ /** The identifier of the incoming query to complete */
53
+ queryReference: QueryReference | undefined;
54
+ /** Number of messages requested */
55
+ permits: bigint;
56
+ }
57
+ /** Message representing an incoming Query */
58
+ export interface QueryRequest {
59
+ /** The message ID of the incoming Query */
60
+ messageIdentifier: string;
61
+ /** The name of the Query to execute */
62
+ query: string;
63
+ /** The timestamp of the Query creation */
64
+ timestamp: bigint;
65
+ /** A payload accompanying the Query */
66
+ payload: SerializedObject | undefined;
67
+ /** Meta Data providing contextual information of the Query */
68
+ metaData: {
69
+ [key: string]: MetaDataValue;
70
+ };
71
+ /**
72
+ * An object describing the expectations of the Response Type. Deprecated. no longer used in Axon Framework 5
73
+ *
74
+ * @deprecated
75
+ */
76
+ responseType: SerializedObject | undefined;
77
+ /** Any instructions for components Routing or Handling the Query */
78
+ processingInstructions: ProcessingInstruction[];
79
+ /** The unique identifier of the client instance dispatching the query */
80
+ clientId: string;
81
+ /** The Name of the Component dispatching the query */
82
+ componentName: string;
83
+ }
84
+ export interface QueryRequest_MetaDataEntry {
85
+ key: string;
86
+ value: MetaDataValue | undefined;
87
+ }
88
+ /** Message that represents the Response to a Query */
89
+ export interface QueryResponse {
90
+ /** The unique identifier of the Response Message */
91
+ messageIdentifier: string;
92
+ /** An Error Code identifying the type of error, if any */
93
+ errorCode: string;
94
+ /** A detailed description of the error, if any */
95
+ errorMessage: ErrorMessage | undefined;
96
+ /** The Payload of the Response Message */
97
+ payload: SerializedObject | undefined;
98
+ /** Any Meta Data describing the context of the Response Message */
99
+ metaData: {
100
+ [key: string]: MetaDataValue;
101
+ };
102
+ /** Any instructions for components Routing or Handling the Response Message */
103
+ processingInstructions: ProcessingInstruction[];
104
+ /** The unique identifier of the Query to which this is a response */
105
+ requestIdentifier: string;
106
+ }
107
+ export interface QueryResponse_MetaDataEntry {
108
+ key: string;
109
+ value: MetaDataValue | undefined;
110
+ }
111
+ /** Message that represents a Subscription Query */
112
+ export interface SubscriptionQuery {
113
+ /** A unique identifier for this subscription */
114
+ subscriptionIdentifier: string;
115
+ /** The number of messages the Server may send before needing to await additional permits */
116
+ numberOfPermits: bigint;
117
+ /** The Query describing the desire for information */
118
+ queryRequest: QueryRequest | undefined;
119
+ /**
120
+ * A description of the type of Object expected as Update Responses. Deprecated: queries don't need to provide expected response types
121
+ *
122
+ * @deprecated
123
+ */
124
+ updateResponseType: SerializedObject | undefined;
125
+ }
126
+ /** A message containing an Update of a Query Subscription Response */
127
+ export interface QueryUpdate {
128
+ /** The unique identifier of this Update */
129
+ messageIdentifier: string;
130
+ /** The object representing the Update */
131
+ payload: SerializedObject | undefined;
132
+ /** Meta Data providing contextual information of the Update */
133
+ metaData: {
134
+ [key: string]: MetaDataValue;
135
+ };
136
+ /** The identifier of the Client instance providing the Update */
137
+ clientId: string;
138
+ /** The Component Name of the Client providing the Update */
139
+ componentName: string;
140
+ /** An Error Code identifying the type of error, if any */
141
+ errorCode: string;
142
+ /** A detailed description of the error, if any */
143
+ errorMessage: ErrorMessage | undefined;
144
+ }
145
+ export interface QueryUpdate_MetaDataEntry {
146
+ key: string;
147
+ value: MetaDataValue | undefined;
148
+ }
149
+ /** Message indicating that all relevant Updates have been sent for a Subscription Query, and that no further Updates are available */
150
+ export interface QueryUpdateComplete {
151
+ /** The identifier of the Client instance providing the Update */
152
+ clientId: string;
153
+ /** The Component Name of the Client providing the Update */
154
+ componentName: string;
155
+ }
156
+ /** Message indicating that an Error occurred and that no Updates will be sent for a Subscription Query */
157
+ export interface QueryUpdateCompleteExceptionally {
158
+ /** The identifier of the Client instance providing the Update */
159
+ clientId: string;
160
+ /** The Component Name of the Client providing the Update */
161
+ componentName: string;
162
+ /** The Code describing the type of Error that occurred */
163
+ errorCode: string;
164
+ /** A detailed description of the error, if available */
165
+ errorMessage: ErrorMessage | undefined;
166
+ }
167
+ /** Message describing possible interactions for a Subscription Query */
168
+ export interface SubscriptionQueryRequest {
169
+ /** Start a Subscription Query with the given details. */
170
+ subscribe?: SubscriptionQuery | undefined;
171
+ /** Ends a previously started Subscription Query with the given details */
172
+ unsubscribe?: SubscriptionQuery | undefined;
173
+ /**
174
+ * Requests the initial result of a subscription query to be sent. This should always be done after opening the
175
+ * subscription query itself, to remove concurrency conflicts with Update messages.
176
+ *
177
+ * Note that this request is deprecated. It is recommended to retrieve the initial request using a regular query.
178
+ *
179
+ * @deprecated
180
+ */
181
+ getInitialResult?: SubscriptionQuery | undefined;
182
+ /**
183
+ * Allows the Server to provide additional Updates to be sent. Only the `number_of_permits` field needs to be
184
+ * set on this message.
185
+ */
186
+ flowControl?: SubscriptionQuery | undefined;
187
+ }
188
+ /** Represents a Response Message for a Subscription Query */
189
+ export interface SubscriptionQueryResponse {
190
+ /** The unique identifier for this message */
191
+ messageIdentifier: string;
192
+ /** The identifier of the subscription query this is a response for */
193
+ subscriptionIdentifier: string;
194
+ /** Provides an Initial Response */
195
+ initialResult?: QueryResponse | undefined;
196
+ /** Provides an Update Response */
197
+ update?: QueryUpdate | undefined;
198
+ /** Indicates the Query is complete, and no more Updates will be sent */
199
+ complete?: QueryUpdateComplete | undefined;
200
+ /** Indicates the Query failed exceptionally, and no more Updates will be sent */
201
+ completeExceptionally?: QueryUpdateCompleteExceptionally | undefined;
202
+ }
203
+ /** Message containing details of a Registration of a Query Handler in a component */
204
+ export interface QuerySubscription {
205
+ /** The unique identifier of this Message */
206
+ messageId: string;
207
+ /** The name of the Query the Handler is subscribed to */
208
+ query: string;
209
+ /** The type of Result this Handler produces */
210
+ resultName: string;
211
+ /** The name of the Component containing the Query Handler */
212
+ componentName: string;
213
+ /** The unique identifier of the Client Instance containing the Query Handler */
214
+ clientId: string;
215
+ }
216
+ export declare const QueryProviderOutbound: MessageFns<QueryProviderOutbound>;
217
+ export declare const QueryProviderInbound: MessageFns<QueryProviderInbound>;
218
+ export declare const QueryReference: MessageFns<QueryReference>;
219
+ export declare const QueryComplete: MessageFns<QueryComplete>;
220
+ export declare const QueryFlowControl: MessageFns<QueryFlowControl>;
221
+ export declare const QueryRequest: MessageFns<QueryRequest>;
222
+ export declare const QueryRequest_MetaDataEntry: MessageFns<QueryRequest_MetaDataEntry>;
223
+ export declare const QueryResponse: MessageFns<QueryResponse>;
224
+ export declare const QueryResponse_MetaDataEntry: MessageFns<QueryResponse_MetaDataEntry>;
225
+ export declare const SubscriptionQuery: MessageFns<SubscriptionQuery>;
226
+ export declare const QueryUpdate: MessageFns<QueryUpdate>;
227
+ export declare const QueryUpdate_MetaDataEntry: MessageFns<QueryUpdate_MetaDataEntry>;
228
+ export declare const QueryUpdateComplete: MessageFns<QueryUpdateComplete>;
229
+ export declare const QueryUpdateCompleteExceptionally: MessageFns<QueryUpdateCompleteExceptionally>;
230
+ export declare const SubscriptionQueryRequest: MessageFns<SubscriptionQueryRequest>;
231
+ export declare const SubscriptionQueryResponse: MessageFns<SubscriptionQueryResponse>;
232
+ export declare const QuerySubscription: MessageFns<QuerySubscription>;
233
+ /** Service providing operations for the Query Messaging component of AxonServer */
234
+ export type QueryServiceDefinition = typeof QueryServiceDefinition;
235
+ export declare const QueryServiceDefinition: {
236
+ readonly name: "QueryService";
237
+ readonly fullName: "io.axoniq.axonserver.grpc.query.QueryService";
238
+ readonly methods: {
239
+ /** Opens a Query- and Instruction stream to AxonServer. */
240
+ readonly openStream: {
241
+ readonly name: "OpenStream";
242
+ readonly requestType: typeof QueryProviderOutbound;
243
+ readonly requestStream: true;
244
+ readonly responseType: typeof QueryProviderInbound;
245
+ readonly responseStream: true;
246
+ readonly options: {};
247
+ };
248
+ /** Sends a point-to-point or scatter-gather Query */
249
+ readonly query: {
250
+ readonly name: "Query";
251
+ readonly requestType: typeof QueryRequest;
252
+ readonly requestStream: false;
253
+ readonly responseType: typeof QueryResponse;
254
+ readonly responseStream: true;
255
+ readonly options: {};
256
+ };
257
+ /** Opens a Subscription Query */
258
+ readonly subscription: {
259
+ readonly name: "Subscription";
260
+ readonly requestType: typeof SubscriptionQueryRequest;
261
+ readonly requestStream: true;
262
+ readonly responseType: typeof SubscriptionQueryResponse;
263
+ readonly responseStream: true;
264
+ readonly options: {};
265
+ };
266
+ };
267
+ };
268
+ export interface QueryServiceImplementation<CallContextExt = {}> {
269
+ /** Opens a Query- and Instruction stream to AxonServer. */
270
+ openStream(request: AsyncIterable<QueryProviderOutbound>, context: CallContext & CallContextExt): ServerStreamingMethodResult<DeepPartial<QueryProviderInbound>>;
271
+ /** Sends a point-to-point or scatter-gather Query */
272
+ query(request: QueryRequest, context: CallContext & CallContextExt): ServerStreamingMethodResult<DeepPartial<QueryResponse>>;
273
+ /** Opens a Subscription Query */
274
+ subscription(request: AsyncIterable<SubscriptionQueryRequest>, context: CallContext & CallContextExt): ServerStreamingMethodResult<DeepPartial<SubscriptionQueryResponse>>;
275
+ }
276
+ export interface QueryServiceClient<CallOptionsExt = {}> {
277
+ /** Opens a Query- and Instruction stream to AxonServer. */
278
+ openStream(request: AsyncIterable<DeepPartial<QueryProviderOutbound>>, options?: CallOptions & CallOptionsExt): AsyncIterable<QueryProviderInbound>;
279
+ /** Sends a point-to-point or scatter-gather Query */
280
+ query(request: DeepPartial<QueryRequest>, options?: CallOptions & CallOptionsExt): AsyncIterable<QueryResponse>;
281
+ /** Opens a Subscription Query */
282
+ subscription(request: AsyncIterable<DeepPartial<SubscriptionQueryRequest>>, options?: CallOptions & CallOptionsExt): AsyncIterable<SubscriptionQueryResponse>;
283
+ }
284
+ type Builtin = Date | Function | Uint8Array | string | number | boolean | bigint | undefined;
285
+ export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
286
+ [K in keyof T]?: DeepPartial<T[K]>;
287
+ } : Partial<T>;
288
+ export type ServerStreamingMethodResult<Response> = {
289
+ [Symbol.asyncIterator](): AsyncIterator<Response, void>;
290
+ };
291
+ export interface MessageFns<T> {
292
+ encode(message: T, writer?: BinaryWriter): BinaryWriter;
293
+ decode(input: BinaryReader | Uint8Array, length?: number): T;
294
+ fromJSON(object: any): T;
295
+ toJSON(message: T): unknown;
296
+ create(base?: DeepPartial<T>): T;
297
+ fromPartial(object: DeepPartial<T>): T;
298
+ }
299
+ export {};
300
+ //# sourceMappingURL=query.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"query.d.ts","sourceRoot":"","sources":["../../src/generated/query.ts"],"names":[],"mappings":"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"}