@kronos-ts/axon-server 0.4.0 → 0.6.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.
- package/dist/axon-server-event-store.d.ts +0 -16
- package/dist/axon-server-event-store.d.ts.map +1 -1
- package/dist/axon-server-event-store.js +73 -45
- package/dist/axon-server-event-store.js.map +1 -1
- package/dist/axon-server-snapshotting-event-store.d.ts +30 -0
- package/dist/axon-server-snapshotting-event-store.d.ts.map +1 -0
- package/dist/axon-server-snapshotting-event-store.js +154 -0
- package/dist/axon-server-snapshotting-event-store.js.map +1 -0
- package/dist/axon-server.d.ts +46 -65
- package/dist/axon-server.d.ts.map +1 -1
- package/dist/axon-server.js +490 -317
- package/dist/axon-server.js.map +1 -1
- package/dist/bounded-read.d.ts +19 -0
- package/dist/bounded-read.d.ts.map +1 -0
- package/dist/bounded-read.js +39 -0
- package/dist/bounded-read.js.map +1 -0
- package/dist/connection-manager.d.ts +2 -2
- package/dist/connection-manager.d.ts.map +1 -1
- package/dist/connection.d.ts +36 -21
- package/dist/connection.d.ts.map +1 -1
- package/dist/connection.js +84 -45
- package/dist/connection.js.map +1 -1
- package/dist/context-view.d.ts +2 -2
- package/dist/context-view.d.ts.map +1 -1
- package/dist/control-plane.d.ts +14 -24
- package/dist/control-plane.d.ts.map +1 -1
- package/dist/control-plane.js +6 -37
- package/dist/control-plane.js.map +1 -1
- package/dist/event-processor-info.d.ts +7 -25
- package/dist/event-processor-info.d.ts.map +1 -1
- package/dist/event-processor-info.js +16 -20
- package/dist/event-processor-info.js.map +1 -1
- package/dist/flow-controlled-sender.d.ts +2 -2
- package/dist/flow-controlled-sender.d.ts.map +1 -1
- package/dist/flow-controlled-sender.js +37 -17
- package/dist/flow-controlled-sender.js.map +1 -1
- package/dist/generated/command.d.ts +20 -20
- package/dist/generated/command.d.ts.map +1 -1
- package/dist/generated/common.d.ts +20 -20
- package/dist/generated/common.d.ts.map +1 -1
- package/dist/generated/control.d.ts +36 -40
- package/dist/generated/control.d.ts.map +1 -1
- package/dist/generated/dcb.d.ts +88 -94
- package/dist/generated/dcb.d.ts.map +1 -1
- package/dist/generated/event.d.ts +81 -84
- package/dist/generated/event.d.ts.map +1 -1
- package/dist/generated/google/protobuf/empty.d.ts +3 -4
- package/dist/generated/google/protobuf/empty.d.ts.map +1 -1
- package/dist/generated/query.d.ts +40 -40
- package/dist/generated/query.d.ts.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/message-size.d.ts +2 -2
- package/dist/message-size.d.ts.map +1 -1
- package/dist/outbound-stream.d.ts +7 -11
- package/dist/outbound-stream.d.ts.map +1 -1
- package/dist/outbound-stream.js +65 -16
- package/dist/outbound-stream.js.map +1 -1
- package/dist/platform-service.d.ts +14 -5
- package/dist/platform-service.d.ts.map +1 -1
- package/dist/platform-service.js +70 -10
- package/dist/platform-service.js.map +1 -1
- package/dist/resilience.d.ts +62 -0
- package/dist/resilience.d.ts.map +1 -0
- package/dist/resilience.js +103 -0
- package/dist/resilience.js.map +1 -0
- package/dist/shutdown-latch.d.ts +5 -4
- package/dist/shutdown-latch.d.ts.map +1 -1
- package/dist/shutdown-latch.js +20 -1
- package/dist/shutdown-latch.js.map +1 -1
- package/dist/stream-recovery.d.ts +9 -0
- package/dist/stream-recovery.d.ts.map +1 -0
- package/dist/stream-recovery.js +70 -0
- package/dist/stream-recovery.js.map +1 -0
- package/package.json +3 -3
- package/src/axon-server-event-store.ts +77 -47
- package/src/axon-server-snapshotting-event-store.ts +194 -0
- package/src/axon-server.ts +472 -374
- package/src/bounded-read.ts +43 -0
- package/src/connection-manager.ts +1 -1
- package/src/connection.ts +93 -59
- package/src/context-view.ts +1 -1
- package/src/control-plane.ts +22 -66
- package/src/event-processor-info.ts +23 -44
- package/src/flow-controlled-sender.ts +34 -15
- package/src/generated/command.ts +10 -10
- package/src/generated/common.ts +10 -10
- package/src/generated/control.ts +20 -20
- package/src/generated/dcb.ts +47 -47
- package/src/generated/event.ts +42 -42
- package/src/generated/google/protobuf/empty.ts +2 -2
- package/src/generated/query.ts +20 -20
- package/src/index.ts +1 -2
- package/src/message-size.ts +1 -1
- package/src/outbound-stream.ts +58 -28
- package/src/platform-service.ts +77 -13
- package/src/resilience.ts +149 -0
- package/src/shutdown-latch.ts +16 -3
- package/src/stream-recovery.ts +72 -0
- package/dist/axon-server-snapshot-store.d.ts +0 -12
- package/dist/axon-server-snapshot-store.d.ts.map +0 -1
- package/dist/axon-server-snapshot-store.js +0 -82
- package/dist/axon-server-snapshot-store.js.map +0 -1
- package/src/axon-server-snapshot-store.ts +0 -110
|
@@ -35,16 +35,16 @@ export declare enum TaskStatus {
|
|
|
35
35
|
export declare function taskStatusFromJSON(object: any): TaskStatus;
|
|
36
36
|
export declare function taskStatusToJSON(object: TaskStatus): string;
|
|
37
37
|
/** Describes a serialized object */
|
|
38
|
-
export
|
|
38
|
+
export type SerializedObject = {
|
|
39
39
|
/** The type identifier of the serialized object. */
|
|
40
40
|
type: string;
|
|
41
41
|
/** The revision of the serialized form of the given type. */
|
|
42
42
|
revision: string;
|
|
43
43
|
/** The actual data representing the object in serialized form. */
|
|
44
44
|
data: Uint8Array;
|
|
45
|
-
}
|
|
45
|
+
};
|
|
46
46
|
/** The value of a MetaData entry. */
|
|
47
|
-
export
|
|
47
|
+
export type MetaDataValue = {
|
|
48
48
|
/** The text value of the Meta Data entry. */
|
|
49
49
|
textValue?: string | undefined;
|
|
50
50
|
/** The numeric value of the Meta Data entry. */
|
|
@@ -55,16 +55,16 @@ export interface MetaDataValue {
|
|
|
55
55
|
doubleValue?: number | undefined;
|
|
56
56
|
/** The binary value of the Meta Data entry. */
|
|
57
57
|
bytesValue?: SerializedObject | undefined;
|
|
58
|
-
}
|
|
58
|
+
};
|
|
59
59
|
/** An instruction for routing components when routing or processing a message. */
|
|
60
|
-
export
|
|
60
|
+
export type ProcessingInstruction = {
|
|
61
61
|
/** The type of processing message. */
|
|
62
62
|
key: ProcessingKey;
|
|
63
63
|
/** The value associated with the processing key. */
|
|
64
64
|
value: MetaDataValue | undefined;
|
|
65
|
-
}
|
|
65
|
+
};
|
|
66
66
|
/** Message containing details of an error */
|
|
67
|
-
export
|
|
67
|
+
export type ErrorMessage = {
|
|
68
68
|
/** A human readable message explaining the error */
|
|
69
69
|
message: string;
|
|
70
70
|
/** A description of the location (client component, server) where the error occurred */
|
|
@@ -73,38 +73,38 @@ export interface ErrorMessage {
|
|
|
73
73
|
details: string[];
|
|
74
74
|
/** An Error Code identifying the type of error */
|
|
75
75
|
errorCode: string;
|
|
76
|
-
}
|
|
76
|
+
};
|
|
77
77
|
/** Message used for Flow Control instruction, providing the counterpart with additional permits for sending messages */
|
|
78
|
-
export
|
|
78
|
+
export type FlowControl = {
|
|
79
79
|
/** The ClientID of the component providing additional permits */
|
|
80
80
|
clientId: string;
|
|
81
81
|
/** The number of permits to provide */
|
|
82
82
|
permits: bigint;
|
|
83
|
-
}
|
|
83
|
+
};
|
|
84
84
|
/** Message describing instruction acknowledgement */
|
|
85
|
-
export
|
|
85
|
+
export type InstructionAck = {
|
|
86
86
|
/** The identifier of the instruction */
|
|
87
87
|
instructionId: string;
|
|
88
88
|
/** Indicator whether the instruction was acknowledged successfully */
|
|
89
89
|
success: boolean;
|
|
90
90
|
/** Set if instruction acknowledgement failed. */
|
|
91
91
|
error: ErrorMessage | undefined;
|
|
92
|
-
}
|
|
92
|
+
};
|
|
93
93
|
/** Message describing the result of the execution of an instruction */
|
|
94
|
-
export
|
|
94
|
+
export type InstructionResult = {
|
|
95
95
|
/** The identifier of the instruction */
|
|
96
96
|
instructionId: string;
|
|
97
97
|
/** Indicator whether the instruction was processed successfully */
|
|
98
98
|
success: boolean;
|
|
99
99
|
/** Cause of instruction handling failure. */
|
|
100
100
|
error: ErrorMessage | undefined;
|
|
101
|
-
}
|
|
102
|
-
export
|
|
101
|
+
};
|
|
102
|
+
export type Component = {
|
|
103
103
|
component: string;
|
|
104
|
-
}
|
|
105
|
-
export
|
|
104
|
+
};
|
|
105
|
+
export type Principal = {
|
|
106
106
|
user: string;
|
|
107
|
-
}
|
|
107
|
+
};
|
|
108
108
|
export declare const SerializedObject: MessageFns<SerializedObject>;
|
|
109
109
|
export declare const MetaDataValue: MessageFns<MetaDataValue>;
|
|
110
110
|
export declare const ProcessingInstruction: MessageFns<ProcessingInstruction>;
|
|
@@ -118,13 +118,13 @@ type Builtin = Date | Function | Uint8Array | string | number | boolean | bigint
|
|
|
118
118
|
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 {} ? {
|
|
119
119
|
[K in keyof T]?: DeepPartial<T[K]>;
|
|
120
120
|
} : Partial<T>;
|
|
121
|
-
export
|
|
121
|
+
export type MessageFns<T> = {
|
|
122
122
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
123
123
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
124
124
|
fromJSON(object: any): T;
|
|
125
125
|
toJSON(message: T): unknown;
|
|
126
126
|
create(base?: DeepPartial<T>): T;
|
|
127
127
|
fromPartial(object: DeepPartial<T>): T;
|
|
128
|
-
}
|
|
128
|
+
};
|
|
129
129
|
export {};
|
|
130
130
|
//# sourceMappingURL=common.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../src/generated/common.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AAErE,eAAO,MAAM,eAAe,8BAA8B,CAAC;AAE3D,mEAAmE;AACnE,oBAAY,aAAa;IACvB,kGAAkG;IAClG,WAAW,IAAI;IACf,qGAAqG;IACrG,QAAQ,IAAI;IACZ,2IAA2I;IAC3I,OAAO,IAAI;IACX,6IAA6I;IAC7I,aAAa,IAAI;IACjB,yFAAyF;IACzF,yBAAyB,IAAI;IAC7B,oFAAoF;IACpF,yBAAyB,IAAI;IAC7B,YAAY,KAAK;CAClB;AAED,wBAAgB,qBAAqB,CAAC,MAAM,EAAE,GAAG,GAAG,aAAa,CAyBhE;AAED,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,aAAa,GAAG,MAAM,CAkBjE;AAED,iDAAiD;AACjD,oBAAY,UAAU;IACpB,kDAAkD;IAClD,SAAS,IAAI;IACb,wDAAwD;IACxD,SAAS,IAAI;IACb,kEAAkE;IAClE,MAAM,IAAI;IACV,8CAA8C;IAC9C,OAAO,IAAI;IACX,gDAAgD;IAChD,SAAS,IAAI;IACb,YAAY,KAAK;CAClB;AAED,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,GAAG,GAAG,UAAU,CAsB1D;AAED,wBAAgB,gBAAgB,CAAC,MAAM,EAAE,UAAU,GAAG,MAAM,CAgB3D;AAED,oCAAoC;AACpC,MAAM,
|
|
1
|
+
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../src/generated/common.ts"],"names":[],"mappings":"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"}
|
|
@@ -18,7 +18,7 @@ export declare enum UpdateType {
|
|
|
18
18
|
export declare function updateTypeFromJSON(object: any): UpdateType;
|
|
19
19
|
export declare function updateTypeToJSON(object: UpdateType): string;
|
|
20
20
|
/** An instruction from Application Node to the AxonServer platform */
|
|
21
|
-
export
|
|
21
|
+
export type PlatformInboundInstruction = {
|
|
22
22
|
/**
|
|
23
23
|
* Information about the client being connected.
|
|
24
24
|
* This information is used by AxonServer to monitor the topology of connected applications.
|
|
@@ -44,15 +44,13 @@ export interface PlatformInboundInstruction {
|
|
|
44
44
|
unsubscribeTopologyChanges?: UnsubscribeTopologyChanges | undefined;
|
|
45
45
|
/** Instruction identifier. If this identifier is set, this instruction will be acknowledged via outbound stream */
|
|
46
46
|
instructionId: string;
|
|
47
|
-
}
|
|
47
|
+
};
|
|
48
48
|
/** Message to subscribe to topology changes within the control channel's context */
|
|
49
|
-
export
|
|
50
|
-
}
|
|
49
|
+
export type SubscribeTopologyChanges = {};
|
|
51
50
|
/** Message to unsubscribe from topology changes within the control channel's context */
|
|
52
|
-
export
|
|
53
|
-
}
|
|
51
|
+
export type UnsubscribeTopologyChanges = {};
|
|
54
52
|
/** An instruction or information from the AxonServer Platform to the Application Node */
|
|
55
|
-
export
|
|
53
|
+
export type PlatformOutboundInstruction = {
|
|
56
54
|
/** Information provided by AxonServer which provides information about the AxonServer node the application is connected with */
|
|
57
55
|
nodeNotification?: NodeInfo | undefined;
|
|
58
56
|
/**
|
|
@@ -84,12 +82,11 @@ export interface PlatformOutboundInstruction {
|
|
|
84
82
|
topologyChange?: TopologyChange | undefined;
|
|
85
83
|
/** Instruction identifier. If this identifier is set, this instruction will be acknowledged via inbound stream */
|
|
86
84
|
instructionId: string;
|
|
87
|
-
}
|
|
85
|
+
};
|
|
88
86
|
/** Message send when AxonServer requests the client to re-establish its connection with the Platform */
|
|
89
|
-
export
|
|
90
|
-
}
|
|
87
|
+
export type RequestReconnect = {};
|
|
91
88
|
/** Message containing connection information of the node to Connect with */
|
|
92
|
-
export
|
|
89
|
+
export type PlatformInfo = {
|
|
93
90
|
/** The connection details of the node the client should connect with */
|
|
94
91
|
primary: NodeInfo | undefined;
|
|
95
92
|
/**
|
|
@@ -97,9 +94,9 @@ export interface PlatformInfo {
|
|
|
97
94
|
* established for the GetPlatformServer request for subsequent requests.
|
|
98
95
|
*/
|
|
99
96
|
sameConnection: boolean;
|
|
100
|
-
}
|
|
97
|
+
};
|
|
101
98
|
/** Message containing connection information for an AxonServer Node */
|
|
102
|
-
export
|
|
99
|
+
export type NodeInfo = {
|
|
103
100
|
/** The host name to use when connecting to this node */
|
|
104
101
|
hostName: string;
|
|
105
102
|
/** The port number for gRPC connections */
|
|
@@ -110,9 +107,9 @@ export interface NodeInfo {
|
|
|
110
107
|
version: number;
|
|
111
108
|
/** The unique name of the node to connect with, for purpose of debugging */
|
|
112
109
|
nodeName: string;
|
|
113
|
-
}
|
|
110
|
+
};
|
|
114
111
|
/** Message containing details about the Client Application */
|
|
115
|
-
export
|
|
112
|
+
export type ClientIdentification = {
|
|
116
113
|
/** A unique identifier for this client instance. Is used to distinguish different instances of the same component */
|
|
117
114
|
clientId: string;
|
|
118
115
|
/** The name of the component. Several instances of the same component should share this name */
|
|
@@ -123,13 +120,13 @@ export interface ClientIdentification {
|
|
|
123
120
|
};
|
|
124
121
|
/** Axon framework version used by the client application instance */
|
|
125
122
|
version: string;
|
|
126
|
-
}
|
|
127
|
-
export
|
|
123
|
+
};
|
|
124
|
+
export type ClientIdentification_TagsEntry = {
|
|
128
125
|
key: string;
|
|
129
126
|
value: string;
|
|
130
|
-
}
|
|
127
|
+
};
|
|
131
128
|
/** Message containing information about the status of an Event Processor */
|
|
132
|
-
export
|
|
129
|
+
export type EventProcessorInfo = {
|
|
133
130
|
/** The logical name of this processor. */
|
|
134
131
|
processorName: string;
|
|
135
132
|
/** The mode in which this processor is reading Events, for example: 'Tracking' or 'Subscribing' */
|
|
@@ -159,9 +156,9 @@ export interface EventProcessorInfo {
|
|
|
159
156
|
isStreamingProcessor: boolean;
|
|
160
157
|
/** current load balancing strategy name for the event processor */
|
|
161
158
|
loadBalancingStrategyName: string;
|
|
162
|
-
}
|
|
159
|
+
};
|
|
163
160
|
/** Message containing information about the status of a Segment of a Streaming Event Processor */
|
|
164
|
-
export
|
|
161
|
+
export type EventProcessorInfo_SegmentStatus = {
|
|
165
162
|
/** The ID of the Segment for which the status is reported */
|
|
166
163
|
segmentId: number;
|
|
167
164
|
/** Indicates whether the Segment has "Caught Up" with the Head of the Event Stream */
|
|
@@ -174,22 +171,21 @@ export interface EventProcessorInfo_SegmentStatus {
|
|
|
174
171
|
tokenPosition: bigint;
|
|
175
172
|
/** Information about the error state of the Segment, if applicable. */
|
|
176
173
|
errorState: string;
|
|
177
|
-
}
|
|
174
|
+
};
|
|
178
175
|
/** Message providing reference to an Event Processor */
|
|
179
|
-
export
|
|
176
|
+
export type EventProcessorReference = {
|
|
180
177
|
/** The name of the Event Processor */
|
|
181
178
|
processorName: string;
|
|
182
|
-
}
|
|
179
|
+
};
|
|
183
180
|
/** Message providing reference to a Segment of an Event Processor */
|
|
184
|
-
export
|
|
181
|
+
export type EventProcessorSegmentReference = {
|
|
185
182
|
/** The name of the Event Processor */
|
|
186
183
|
processorName: string;
|
|
187
184
|
/** The identifier of the Segment */
|
|
188
185
|
segmentIdentifier: number;
|
|
189
|
-
}
|
|
190
|
-
export
|
|
191
|
-
|
|
192
|
-
export interface TopologyChange {
|
|
186
|
+
};
|
|
187
|
+
export type Heartbeat = {};
|
|
188
|
+
export type TopologyChange = {
|
|
193
189
|
updateType: UpdateType;
|
|
194
190
|
context: string;
|
|
195
191
|
/** The client ID of the component requesting the update */
|
|
@@ -202,17 +198,17 @@ export interface TopologyChange {
|
|
|
202
198
|
command?: CommandSubscription | undefined;
|
|
203
199
|
/** The processor name to add or remove */
|
|
204
200
|
query?: QuerySubscription | undefined;
|
|
205
|
-
}
|
|
206
|
-
export
|
|
201
|
+
};
|
|
202
|
+
export type CommandSubscription = {
|
|
207
203
|
/** The subscription ID to add or remove */
|
|
208
204
|
name: string;
|
|
209
205
|
/** The load factor for the subscription */
|
|
210
206
|
loadFactor: number;
|
|
211
|
-
}
|
|
212
|
-
export
|
|
207
|
+
};
|
|
208
|
+
export type QuerySubscription = {
|
|
213
209
|
/** The subscription ID to add or remove */
|
|
214
210
|
name: string;
|
|
215
|
-
}
|
|
211
|
+
};
|
|
216
212
|
export declare const PlatformInboundInstruction: MessageFns<PlatformInboundInstruction>;
|
|
217
213
|
export declare const SubscribeTopologyChanges: MessageFns<SubscribeTopologyChanges>;
|
|
218
214
|
export declare const UnsubscribeTopologyChanges: MessageFns<UnsubscribeTopologyChanges>;
|
|
@@ -262,18 +258,18 @@ export declare const PlatformServiceDefinition: {
|
|
|
262
258
|
};
|
|
263
259
|
};
|
|
264
260
|
};
|
|
265
|
-
export
|
|
261
|
+
export type PlatformServiceImplementation<CallContextExt = {}> = {
|
|
266
262
|
/** Obtains connection information for the Server that a Client should use for its connections. */
|
|
267
263
|
getPlatformServer(request: ClientIdentification, context: CallContext & CallContextExt): Promise<DeepPartial<PlatformInfo>>;
|
|
268
264
|
/** Opens an instruction stream to the Platform, allowing AxonServer to provide management instructions to the application */
|
|
269
265
|
openStream(request: AsyncIterable<PlatformInboundInstruction>, context: CallContext & CallContextExt): ServerStreamingMethodResult<DeepPartial<PlatformOutboundInstruction>>;
|
|
270
|
-
}
|
|
271
|
-
export
|
|
266
|
+
};
|
|
267
|
+
export type PlatformServiceClient<CallOptionsExt = {}> = {
|
|
272
268
|
/** Obtains connection information for the Server that a Client should use for its connections. */
|
|
273
269
|
getPlatformServer(request: DeepPartial<ClientIdentification>, options?: CallOptions & CallOptionsExt): Promise<PlatformInfo>;
|
|
274
270
|
/** Opens an instruction stream to the Platform, allowing AxonServer to provide management instructions to the application */
|
|
275
271
|
openStream(request: AsyncIterable<DeepPartial<PlatformInboundInstruction>>, options?: CallOptions & CallOptionsExt): AsyncIterable<PlatformOutboundInstruction>;
|
|
276
|
-
}
|
|
272
|
+
};
|
|
277
273
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | bigint | undefined;
|
|
278
274
|
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 {} ? {
|
|
279
275
|
[K in keyof T]?: DeepPartial<T[K]>;
|
|
@@ -281,13 +277,13 @@ export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<
|
|
|
281
277
|
export type ServerStreamingMethodResult<Response> = {
|
|
282
278
|
[Symbol.asyncIterator](): AsyncIterator<Response, void>;
|
|
283
279
|
};
|
|
284
|
-
export
|
|
280
|
+
export type MessageFns<T> = {
|
|
285
281
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
286
282
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
287
283
|
fromJSON(object: any): T;
|
|
288
284
|
toJSON(message: T): unknown;
|
|
289
285
|
create(base?: DeepPartial<T>): T;
|
|
290
286
|
fromPartial(object: DeepPartial<T>): T;
|
|
291
|
-
}
|
|
287
|
+
};
|
|
292
288
|
export {};
|
|
293
289
|
//# sourceMappingURL=control.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"control.d.ts","sourceRoot":"","sources":["../../src/generated/control.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AACrE,OAAO,KAAK,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AACjE,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAEhE,eAAO,MAAM,eAAe,sCAAsC,CAAC;AAEnE,oBAAY,UAAU;IACpB,iEAAiE;IACjE,mBAAmB,IAAI;IACvB,kEAAkE;IAClE,sBAAsB,IAAI;IAC1B,6DAA6D;IAC7D,iBAAiB,IAAI;IACrB,8DAA8D;IAC9D,oBAAoB,IAAI;IACxB,oFAAoF;IACpF,SAAS,IAAI;IACb,YAAY,KAAK;CAClB;AAED,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,GAAG,GAAG,UAAU,CAsB1D;AAED,wBAAgB,gBAAgB,CAAC,MAAM,EAAE,UAAU,GAAG,MAAM,CAgB3D;AAED,sEAAsE;AACtE,MAAM,
|
|
1
|
+
{"version":3,"file":"control.d.ts","sourceRoot":"","sources":["../../src/generated/control.ts"],"names":[],"mappings":"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"}
|