@ahoo-wang/fetcher-wow 1.6.1 → 1.6.2
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/command/commandClient.d.ts +8 -6
- package/dist/command/commandClient.d.ts.map +1 -1
- package/dist/index.es.js +334 -315
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/query/event/eventStreamQueryClient.d.ts.map +1 -1
- package/dist/query/queryApi.d.ts +10 -6
- package/dist/query/queryApi.d.ts.map +1 -1
- package/dist/query/snapshot/snapshotQueryClient.d.ts.map +1 -1
- package/package.json +3 -3
package/dist/index.es.js
CHANGED
|
@@ -1,105 +1,13 @@
|
|
|
1
|
-
import { ResultExtractors as
|
|
2
|
-
import { JsonEventStreamResultExtractor as
|
|
3
|
-
|
|
4
|
-
constructor(E) {
|
|
5
|
-
this.options = E;
|
|
6
|
-
}
|
|
7
|
-
/**
|
|
8
|
-
* Sends a command to the specified path and returns the result.
|
|
9
|
-
* This is a protected generic method that handles the common logic for sending commands.
|
|
10
|
-
* @template R The type of the result to be returned
|
|
11
|
-
* @param path - The endpoint path to send the command to
|
|
12
|
-
* @param commandHttpRequest - The command HTTP request containing headers, method, and body
|
|
13
|
-
* @param extractor - Function to extract the result from the response, defaults to JSON extractor
|
|
14
|
-
* @param attributes - Optional shared attributes that can be accessed by interceptors
|
|
15
|
-
* throughout the request lifecycle. These attributes allow passing
|
|
16
|
-
* custom data between different interceptors.
|
|
17
|
-
* @returns A promise that resolves to the extracted result of type R
|
|
18
|
-
*/
|
|
19
|
-
async sendCommand(E, T, s = f.Json, R) {
|
|
20
|
-
const h = V(this.options.basePath, E), C = {
|
|
21
|
-
...T,
|
|
22
|
-
url: h
|
|
23
|
-
};
|
|
24
|
-
return await this.options.fetcher.request(C, s, R);
|
|
25
|
-
}
|
|
26
|
-
/**
|
|
27
|
-
* Send a command to the server and wait for the result.
|
|
28
|
-
*
|
|
29
|
-
* @param path - The endpoint path to send the command to
|
|
30
|
-
* @param commandHttpRequest - The command request to send
|
|
31
|
-
* @param attributes - Optional shared attributes that can be accessed by interceptors
|
|
32
|
-
* throughout the request lifecycle. These attributes allow passing
|
|
33
|
-
* custom data between different interceptors.
|
|
34
|
-
* @returns A promise that resolves to the command execution result
|
|
35
|
-
*
|
|
36
|
-
* @example
|
|
37
|
-
* ```typescript
|
|
38
|
-
* const commandResult = await commandClient.send('add_cart_item', {
|
|
39
|
-
* method: HttpMethod.POST,
|
|
40
|
-
* body: {
|
|
41
|
-
* productId: 'product-1',
|
|
42
|
-
* quantity: 2
|
|
43
|
-
* }
|
|
44
|
-
* });
|
|
45
|
-
* ```
|
|
46
|
-
*/
|
|
47
|
-
send(E, T, s) {
|
|
48
|
-
return this.sendCommand(E, T, f.Json, s);
|
|
49
|
-
}
|
|
50
|
-
/**
|
|
51
|
-
* Send a command to the server and wait for the result as a stream.
|
|
52
|
-
* This is useful for long-running commands that produce multiple events.
|
|
53
|
-
*
|
|
54
|
-
* @param path - The endpoint path to send the command to
|
|
55
|
-
* @param commandHttpRequest - The command request to send
|
|
56
|
-
* @param attributes - Optional shared attributes that can be accessed by interceptors
|
|
57
|
-
* throughout the request lifecycle. These attributes allow passing
|
|
58
|
-
* custom data between different interceptors.
|
|
59
|
-
* @returns A promise that resolves to a stream of command execution results
|
|
60
|
-
*
|
|
61
|
-
* @example
|
|
62
|
-
* ```typescript
|
|
63
|
-
* const commandResultStream = await commandClient.sendAndWaitStream('add_cart_item', {
|
|
64
|
-
* method: HttpMethod.POST,
|
|
65
|
-
* headers: {
|
|
66
|
-
* Accept: ContentTypeValues.TEXT_EVENT_STREAM
|
|
67
|
-
* },
|
|
68
|
-
* body: {
|
|
69
|
-
* productId: 'product-1',
|
|
70
|
-
* quantity: 2
|
|
71
|
-
* }
|
|
72
|
-
* });
|
|
73
|
-
*
|
|
74
|
-
* for await (const commandResultEvent of commandResultStream) {
|
|
75
|
-
* console.log('Received event:', commandResultEvent.data);
|
|
76
|
-
* }
|
|
77
|
-
* ```
|
|
78
|
-
*/
|
|
79
|
-
async sendAndWaitStream(E, T, s) {
|
|
80
|
-
return T.headers = {
|
|
81
|
-
...T.headers,
|
|
82
|
-
Accept: L.TEXT_EVENT_STREAM
|
|
83
|
-
}, this.sendCommand(
|
|
84
|
-
E,
|
|
85
|
-
T,
|
|
86
|
-
_,
|
|
87
|
-
s
|
|
88
|
-
);
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
const i = class i {
|
|
92
|
-
};
|
|
93
|
-
i.COMMAND_HEADERS_PREFIX = "Command-", i.TENANT_ID = `${i.COMMAND_HEADERS_PREFIX}Tenant-Id`, i.OWNER_ID = `${i.COMMAND_HEADERS_PREFIX}Owner-Id`, i.AGGREGATE_ID = `${i.COMMAND_HEADERS_PREFIX}Aggregate-Id`, i.AGGREGATE_VERSION = `${i.COMMAND_HEADERS_PREFIX}Aggregate-Version`, i.WAIT_PREFIX = `${i.COMMAND_HEADERS_PREFIX}Wait-`, i.WAIT_TIME_OUT = `${i.WAIT_PREFIX}Timeout`, i.WAIT_STAGE = `${i.WAIT_PREFIX}Stage`, i.WAIT_CONTEXT = `${i.WAIT_PREFIX}Context`, i.WAIT_PROCESSOR = `${i.WAIT_PREFIX}Processor`, i.WAIT_FUNCTION = `${i.WAIT_PREFIX}Function`, i.WAIT_TAIL_PREFIX = `${i.WAIT_PREFIX}Tail-`, i.WAIT_TAIL_STAGE = `${i.WAIT_TAIL_PREFIX}Stage`, i.WAIT_TAIL_CONTEXT = `${i.WAIT_TAIL_PREFIX}Context`, i.WAIT_TAIL_PROCESSOR = `${i.WAIT_TAIL_PREFIX}Processor`, i.WAIT_TAIL_FUNCTION = `${i.WAIT_TAIL_PREFIX}Function`, i.REQUEST_ID = `${i.COMMAND_HEADERS_PREFIX}Request-Id`, i.LOCAL_FIRST = `${i.COMMAND_HEADERS_PREFIX}Local-First`, i.COMMAND_AGGREGATE_CONTEXT = `${i.COMMAND_HEADERS_PREFIX}Aggregate-Context`, i.COMMAND_AGGREGATE_NAME = `${i.COMMAND_HEADERS_PREFIX}Aggregate-Name`, i.COMMAND_TYPE = `${i.COMMAND_HEADERS_PREFIX}Type`, i.COMMAND_HEADER_X_PREFIX = `${i.COMMAND_HEADERS_PREFIX}Header-`;
|
|
94
|
-
let W = i;
|
|
95
|
-
var B = /* @__PURE__ */ ((t) => (t.SENT = "SENT", t.PROCESSED = "PROCESSED", t.SNAPSHOT = "SNAPSHOT", t.PROJECTED = "PROJECTED", t.EVENT_HANDLED = "EVENT_HANDLED", t.SAGA_HANDLED = "SAGA_HANDLED", t))(B || {}), A = /* @__PURE__ */ ((t) => (t.AND = "AND", t.OR = "OR", t.NOR = "NOR", t.ID = "ID", t.IDS = "IDS", t.AGGREGATE_ID = "AGGREGATE_ID", t.AGGREGATE_IDS = "AGGREGATE_IDS", t.TENANT_ID = "TENANT_ID", t.OWNER_ID = "OWNER_ID", t.DELETED = "DELETED", t.ALL = "ALL", t.EQ = "EQ", t.NE = "NE", t.GT = "GT", t.LT = "LT", t.GTE = "GTE", t.LTE = "LTE", t.CONTAINS = "CONTAINS", t.IN = "IN", t.NOT_IN = "NOT_IN", t.BETWEEN = "BETWEEN", t.ALL_IN = "ALL_IN", t.STARTS_WITH = "STARTS_WITH", t.ENDS_WITH = "ENDS_WITH", t.ELEM_MATCH = "ELEM_MATCH", t.NULL = "NULL", t.NOT_NULL = "NOT_NULL", t.TRUE = "TRUE", t.FALSE = "FALSE", t.EXISTS = "EXISTS", t.TODAY = "TODAY", t.BEFORE_TODAY = "BEFORE_TODAY", t.TOMORROW = "TOMORROW", t.THIS_WEEK = "THIS_WEEK", t.NEXT_WEEK = "NEXT_WEEK", t.LAST_WEEK = "LAST_WEEK", t.THIS_MONTH = "THIS_MONTH", t.LAST_MONTH = "LAST_MONTH", t.RECENT_DAYS = "RECENT_DAYS", t.EARLIER_DAYS = "EARLIER_DAYS", t.RAW = "RAW", t))(A || {});
|
|
1
|
+
import { ResultExtractors as q, ContentTypeValues as L, combineURLs as V, HttpMethod as B, mergeRequestOptions as O } from "@ahoo-wang/fetcher";
|
|
2
|
+
import { JsonEventStreamResultExtractor as h } from "@ahoo-wang/fetcher-eventstream";
|
|
3
|
+
var s = /* @__PURE__ */ ((t) => (t.AND = "AND", t.OR = "OR", t.NOR = "NOR", t.ID = "ID", t.IDS = "IDS", t.AGGREGATE_ID = "AGGREGATE_ID", t.AGGREGATE_IDS = "AGGREGATE_IDS", t.TENANT_ID = "TENANT_ID", t.OWNER_ID = "OWNER_ID", t.DELETED = "DELETED", t.ALL = "ALL", t.EQ = "EQ", t.NE = "NE", t.GT = "GT", t.LT = "LT", t.GTE = "GTE", t.LTE = "LTE", t.CONTAINS = "CONTAINS", t.IN = "IN", t.NOT_IN = "NOT_IN", t.BETWEEN = "BETWEEN", t.ALL_IN = "ALL_IN", t.STARTS_WITH = "STARTS_WITH", t.ENDS_WITH = "ENDS_WITH", t.ELEM_MATCH = "ELEM_MATCH", t.NULL = "NULL", t.NOT_NULL = "NOT_NULL", t.TRUE = "TRUE", t.FALSE = "FALSE", t.EXISTS = "EXISTS", t.TODAY = "TODAY", t.BEFORE_TODAY = "BEFORE_TODAY", t.TOMORROW = "TOMORROW", t.THIS_WEEK = "THIS_WEEK", t.NEXT_WEEK = "NEXT_WEEK", t.LAST_WEEK = "LAST_WEEK", t.THIS_MONTH = "THIS_MONTH", t.LAST_MONTH = "LAST_MONTH", t.RECENT_DAYS = "RECENT_DAYS", t.EARLIER_DAYS = "EARLIER_DAYS", t.RAW = "RAW", t))(s || {});
|
|
96
4
|
function G(t) {
|
|
97
5
|
return !!t;
|
|
98
6
|
}
|
|
99
|
-
const
|
|
7
|
+
const _ = class _ {
|
|
100
8
|
};
|
|
101
|
-
|
|
102
|
-
let
|
|
9
|
+
_.IGNORE_CASE_OPTION_KEY = "ignoreCase", _.ZONE_ID_OPTION_KEY = "zoneId", _.DATE_PATTERN_OPTION_KEY = "datePattern";
|
|
10
|
+
let C = _;
|
|
103
11
|
function M(t) {
|
|
104
12
|
if (!(typeof t > "u"))
|
|
105
13
|
return { ignoreCase: t };
|
|
@@ -110,186 +18,186 @@ function u(t, E) {
|
|
|
110
18
|
const T = {};
|
|
111
19
|
return typeof t < "u" && (T.datePattern = t), typeof E < "u" && (T.zoneId = E), T;
|
|
112
20
|
}
|
|
113
|
-
var
|
|
21
|
+
var y = /* @__PURE__ */ ((t) => (t.ACTIVE = "ACTIVE", t.DELETED = "DELETED", t.ALL = "ALL", t))(y || {});
|
|
114
22
|
function k(...t) {
|
|
115
23
|
if (t.length === 0)
|
|
116
|
-
return
|
|
24
|
+
return S();
|
|
117
25
|
if (t.length === 1)
|
|
118
|
-
return G(t[0]) ? t[0] :
|
|
26
|
+
return G(t[0]) ? t[0] : S();
|
|
119
27
|
const E = [];
|
|
120
28
|
return t.forEach((T) => {
|
|
121
|
-
T?.operator ===
|
|
122
|
-
}), { operator:
|
|
29
|
+
T?.operator === s.ALL || !G(T) || (T.operator === s.AND && T.children ? E.push(...T.children) : E.push(T));
|
|
30
|
+
}), { operator: s.AND, children: E };
|
|
123
31
|
}
|
|
124
32
|
function z(...t) {
|
|
125
33
|
const E = t?.filter(
|
|
126
34
|
(T) => G(T)
|
|
127
35
|
);
|
|
128
|
-
return E.length === 0 ?
|
|
36
|
+
return E.length === 0 ? S() : { operator: s.OR, children: E };
|
|
129
37
|
}
|
|
130
38
|
function H(...t) {
|
|
131
|
-
return t.length === 0 ?
|
|
39
|
+
return t.length === 0 ? S() : { operator: s.NOR, children: t };
|
|
132
40
|
}
|
|
133
41
|
function j(t) {
|
|
134
|
-
return { operator:
|
|
135
|
-
}
|
|
136
|
-
function Q(t) {
|
|
137
|
-
return { operator: A.IDS, value: t };
|
|
42
|
+
return { operator: s.ID, value: t };
|
|
138
43
|
}
|
|
139
44
|
function Z(t) {
|
|
140
|
-
return { operator:
|
|
45
|
+
return { operator: s.IDS, value: t };
|
|
141
46
|
}
|
|
142
|
-
function p(
|
|
143
|
-
return { operator:
|
|
47
|
+
function p(t) {
|
|
48
|
+
return { operator: s.AGGREGATE_ID, value: t };
|
|
144
49
|
}
|
|
145
|
-
function m(t) {
|
|
146
|
-
return { operator:
|
|
50
|
+
function m(...t) {
|
|
51
|
+
return { operator: s.AGGREGATE_IDS, value: t };
|
|
147
52
|
}
|
|
148
53
|
function d(t) {
|
|
149
|
-
return { operator:
|
|
54
|
+
return { operator: s.TENANT_ID, value: t };
|
|
55
|
+
}
|
|
56
|
+
function tt(t) {
|
|
57
|
+
return { operator: s.OWNER_ID, value: t };
|
|
150
58
|
}
|
|
151
|
-
function
|
|
152
|
-
return { operator:
|
|
59
|
+
function a(t) {
|
|
60
|
+
return { operator: s.DELETED, value: t };
|
|
153
61
|
}
|
|
154
|
-
function
|
|
155
|
-
return
|
|
62
|
+
function Et() {
|
|
63
|
+
return a(
|
|
156
64
|
"ACTIVE"
|
|
157
65
|
/* ACTIVE */
|
|
158
66
|
);
|
|
159
67
|
}
|
|
160
|
-
function
|
|
68
|
+
function S() {
|
|
161
69
|
return {
|
|
162
|
-
operator:
|
|
70
|
+
operator: s.ALL
|
|
163
71
|
};
|
|
164
72
|
}
|
|
165
|
-
function Et(t, E) {
|
|
166
|
-
return { field: t, operator: A.EQ, value: E };
|
|
167
|
-
}
|
|
168
73
|
function Tt(t, E) {
|
|
169
|
-
return { field: t, operator:
|
|
74
|
+
return { field: t, operator: s.EQ, value: E };
|
|
170
75
|
}
|
|
171
76
|
function it(t, E) {
|
|
172
|
-
return { field: t, operator:
|
|
77
|
+
return { field: t, operator: s.NE, value: E };
|
|
78
|
+
}
|
|
79
|
+
function st(t, E) {
|
|
80
|
+
return { field: t, operator: s.GT, value: E };
|
|
173
81
|
}
|
|
174
82
|
function At(t, E) {
|
|
175
|
-
return { field: t, operator:
|
|
83
|
+
return { field: t, operator: s.LT, value: E };
|
|
176
84
|
}
|
|
177
|
-
function
|
|
178
|
-
return { field: t, operator:
|
|
85
|
+
function ct(t, E) {
|
|
86
|
+
return { field: t, operator: s.GTE, value: E };
|
|
179
87
|
}
|
|
180
88
|
function nt(t, E) {
|
|
181
|
-
return { field: t, operator:
|
|
89
|
+
return { field: t, operator: s.LTE, value: E };
|
|
182
90
|
}
|
|
183
|
-
function
|
|
184
|
-
const
|
|
185
|
-
return { field: t, operator:
|
|
91
|
+
function rt(t, E, T) {
|
|
92
|
+
const A = M(T);
|
|
93
|
+
return { field: t, operator: s.CONTAINS, value: E, options: A };
|
|
186
94
|
}
|
|
187
95
|
function It(t, ...E) {
|
|
188
|
-
return { field: t, operator:
|
|
96
|
+
return { field: t, operator: s.IN, value: E };
|
|
189
97
|
}
|
|
190
98
|
function Nt(t, ...E) {
|
|
191
|
-
return { field: t, operator:
|
|
99
|
+
return { field: t, operator: s.NOT_IN, value: E };
|
|
192
100
|
}
|
|
193
|
-
function
|
|
194
|
-
return { field: t, operator:
|
|
101
|
+
function ut(t, E, T) {
|
|
102
|
+
return { field: t, operator: s.BETWEEN, value: [E, T] };
|
|
195
103
|
}
|
|
196
|
-
function
|
|
197
|
-
return { field: t, operator:
|
|
198
|
-
}
|
|
199
|
-
function Rt(t, E, T) {
|
|
200
|
-
const s = M(T);
|
|
201
|
-
return { field: t, operator: A.STARTS_WITH, value: E, options: s };
|
|
104
|
+
function Rt(t, ...E) {
|
|
105
|
+
return { field: t, operator: s.ALL_IN, value: E };
|
|
202
106
|
}
|
|
203
107
|
function et(t, E, T) {
|
|
204
|
-
const
|
|
205
|
-
return { field: t, operator:
|
|
108
|
+
const A = M(T);
|
|
109
|
+
return { field: t, operator: s.STARTS_WITH, value: E, options: A };
|
|
206
110
|
}
|
|
207
|
-
function
|
|
208
|
-
|
|
111
|
+
function St(t, E, T) {
|
|
112
|
+
const A = M(T);
|
|
113
|
+
return { field: t, operator: s.ENDS_WITH, value: E, options: A };
|
|
209
114
|
}
|
|
210
|
-
function
|
|
211
|
-
return { field: t, operator:
|
|
115
|
+
function Dt(t, E) {
|
|
116
|
+
return { field: t, operator: s.ELEM_MATCH, children: [E] };
|
|
212
117
|
}
|
|
213
118
|
function Ot(t) {
|
|
214
|
-
return { field: t, operator:
|
|
119
|
+
return { field: t, operator: s.NULL };
|
|
215
120
|
}
|
|
216
121
|
function ot(t) {
|
|
217
|
-
return { field: t, operator:
|
|
122
|
+
return { field: t, operator: s.NOT_NULL };
|
|
218
123
|
}
|
|
219
|
-
function
|
|
220
|
-
return { field: t, operator:
|
|
124
|
+
function _t(t) {
|
|
125
|
+
return { field: t, operator: s.TRUE };
|
|
221
126
|
}
|
|
222
|
-
function
|
|
223
|
-
return { field: t, operator:
|
|
127
|
+
function Lt(t) {
|
|
128
|
+
return { field: t, operator: s.FALSE };
|
|
224
129
|
}
|
|
225
|
-
function ht(t, E
|
|
226
|
-
|
|
227
|
-
return { field: t, operator: A.TODAY, options: s };
|
|
130
|
+
function ht(t, E = !0) {
|
|
131
|
+
return { field: t, operator: s.EXISTS, value: E };
|
|
228
132
|
}
|
|
229
|
-
function ft(t, E, T
|
|
230
|
-
const
|
|
231
|
-
return { field: t, operator:
|
|
133
|
+
function ft(t, E, T) {
|
|
134
|
+
const A = u(E, T);
|
|
135
|
+
return { field: t, operator: s.TODAY, options: A };
|
|
232
136
|
}
|
|
233
|
-
function Gt(t, E, T) {
|
|
234
|
-
const
|
|
235
|
-
return { field: t, operator:
|
|
137
|
+
function Gt(t, E, T, A) {
|
|
138
|
+
const R = u(T, A);
|
|
139
|
+
return { field: t, operator: s.BEFORE_TODAY, value: E, options: R };
|
|
236
140
|
}
|
|
237
141
|
function Mt(t, E, T) {
|
|
238
|
-
const
|
|
239
|
-
return { field: t, operator:
|
|
142
|
+
const A = u(E, T);
|
|
143
|
+
return { field: t, operator: s.TOMORROW, options: A };
|
|
144
|
+
}
|
|
145
|
+
function lt(t, E, T) {
|
|
146
|
+
const A = u(E, T);
|
|
147
|
+
return { field: t, operator: s.THIS_WEEK, options: A };
|
|
240
148
|
}
|
|
241
149
|
function Ct(t, E, T) {
|
|
242
|
-
const
|
|
243
|
-
return { field: t, operator:
|
|
150
|
+
const A = u(E, T);
|
|
151
|
+
return { field: t, operator: s.NEXT_WEEK, options: A };
|
|
244
152
|
}
|
|
245
153
|
function Wt(t, E, T) {
|
|
246
|
-
const
|
|
247
|
-
return { field: t, operator:
|
|
248
|
-
}
|
|
249
|
-
function lt(t, E, T) {
|
|
250
|
-
const s = u(E, T);
|
|
251
|
-
return { field: t, operator: A.THIS_MONTH, options: s };
|
|
154
|
+
const A = u(E, T);
|
|
155
|
+
return { field: t, operator: s.LAST_WEEK, options: A };
|
|
252
156
|
}
|
|
253
157
|
function Pt(t, E, T) {
|
|
254
|
-
const
|
|
255
|
-
return { field: t, operator:
|
|
158
|
+
const A = u(E, T);
|
|
159
|
+
return { field: t, operator: s.THIS_MONTH, options: A };
|
|
256
160
|
}
|
|
257
|
-
function
|
|
258
|
-
const
|
|
259
|
-
return { field: t, operator:
|
|
161
|
+
function Ut(t, E, T) {
|
|
162
|
+
const A = u(E, T);
|
|
163
|
+
return { field: t, operator: s.LAST_MONTH, options: A };
|
|
260
164
|
}
|
|
261
|
-
function
|
|
262
|
-
const R = u(T,
|
|
263
|
-
return { field: t, operator:
|
|
165
|
+
function gt(t, E, T, A) {
|
|
166
|
+
const R = u(T, A);
|
|
167
|
+
return { field: t, operator: s.RECENT_DAYS, value: E, options: R };
|
|
264
168
|
}
|
|
265
|
-
function Vt(t) {
|
|
266
|
-
|
|
169
|
+
function Vt(t, E, T, A) {
|
|
170
|
+
const R = u(T, A);
|
|
171
|
+
return { field: t, operator: s.EARLIER_DAYS, value: E, options: R };
|
|
267
172
|
}
|
|
268
|
-
|
|
173
|
+
function Xt(t) {
|
|
174
|
+
return { operator: s.RAW, value: t };
|
|
175
|
+
}
|
|
176
|
+
const o = {
|
|
269
177
|
index: 1,
|
|
270
178
|
size: 10
|
|
271
179
|
};
|
|
272
|
-
function
|
|
273
|
-
index: t =
|
|
274
|
-
size: E =
|
|
275
|
-
} =
|
|
180
|
+
function $t({
|
|
181
|
+
index: t = o.index,
|
|
182
|
+
size: E = o.size
|
|
183
|
+
} = o) {
|
|
276
184
|
return {
|
|
277
185
|
index: t,
|
|
278
186
|
size: E
|
|
279
187
|
};
|
|
280
188
|
}
|
|
281
|
-
const
|
|
282
|
-
function
|
|
189
|
+
const x = {};
|
|
190
|
+
function Yt({
|
|
283
191
|
include: t,
|
|
284
192
|
exclude: E
|
|
285
|
-
} =
|
|
193
|
+
} = x) {
|
|
286
194
|
return {
|
|
287
195
|
include: t,
|
|
288
196
|
exclude: E
|
|
289
197
|
};
|
|
290
198
|
}
|
|
291
|
-
function
|
|
292
|
-
condition: t =
|
|
199
|
+
function qt({
|
|
200
|
+
condition: t = S(),
|
|
293
201
|
projection: E,
|
|
294
202
|
sort: T
|
|
295
203
|
} = {}) {
|
|
@@ -300,45 +208,50 @@ function Yt({
|
|
|
300
208
|
};
|
|
301
209
|
}
|
|
302
210
|
function Bt({
|
|
303
|
-
condition: t =
|
|
211
|
+
condition: t = S(),
|
|
304
212
|
projection: E,
|
|
305
213
|
sort: T,
|
|
306
|
-
limit:
|
|
214
|
+
limit: A = o.size
|
|
307
215
|
} = {}) {
|
|
308
216
|
return {
|
|
309
217
|
condition: t,
|
|
310
218
|
projection: E,
|
|
311
219
|
sort: T,
|
|
312
|
-
limit:
|
|
220
|
+
limit: A
|
|
313
221
|
};
|
|
314
222
|
}
|
|
315
|
-
function
|
|
316
|
-
condition: t =
|
|
223
|
+
function yt({
|
|
224
|
+
condition: t = S(),
|
|
317
225
|
projection: E,
|
|
318
226
|
sort: T,
|
|
319
|
-
pagination:
|
|
227
|
+
pagination: A = o
|
|
320
228
|
} = {}) {
|
|
321
229
|
return {
|
|
322
230
|
condition: t,
|
|
323
231
|
projection: E,
|
|
324
232
|
sort: T,
|
|
325
|
-
pagination:
|
|
233
|
+
pagination: A
|
|
326
234
|
};
|
|
327
235
|
}
|
|
328
|
-
const
|
|
236
|
+
const F = {
|
|
329
237
|
total: 0,
|
|
330
238
|
list: []
|
|
331
239
|
};
|
|
332
|
-
function
|
|
240
|
+
function at({
|
|
333
241
|
total: t,
|
|
334
242
|
list: E = []
|
|
335
|
-
} =
|
|
243
|
+
} = F) {
|
|
336
244
|
return t === void 0 && (t = E.length), {
|
|
337
245
|
total: t,
|
|
338
246
|
list: E
|
|
339
247
|
};
|
|
340
248
|
}
|
|
341
|
-
|
|
249
|
+
const X = {
|
|
250
|
+
resultExtractor: q.Json
|
|
251
|
+
}, f = {
|
|
252
|
+
resultExtractor: h
|
|
253
|
+
};
|
|
254
|
+
class $ {
|
|
342
255
|
/**
|
|
343
256
|
* Creates a new QueryClient instance.
|
|
344
257
|
* @param options - The client configuration options including fetcher and base path
|
|
@@ -352,48 +265,50 @@ class X {
|
|
|
352
265
|
* @param path - The endpoint path to query
|
|
353
266
|
* @param query - The query parameters to send
|
|
354
267
|
* @param accept - The content type to accept from the server, defaults to application/json
|
|
355
|
-
* @param
|
|
356
|
-
* @param
|
|
357
|
-
*
|
|
358
|
-
*
|
|
268
|
+
* @param options - Request options including result extractor and attributes
|
|
269
|
+
* @param options.resultExtractor - Function to extract the desired result from the exchange.
|
|
270
|
+
* Defaults to JsonResultExtractor which returns the entire exchange object.
|
|
271
|
+
* @param options.attributes - Optional shared attributes that can be accessed by interceptors
|
|
272
|
+
* throughout the request lifecycle. These attributes allow passing
|
|
273
|
+
* custom data between different interceptors.
|
|
359
274
|
* @returns A promise that resolves to the query result
|
|
360
275
|
*/
|
|
361
|
-
async query(E, T,
|
|
362
|
-
const
|
|
276
|
+
async query(E, T, A, R = L.APPLICATION_JSON) {
|
|
277
|
+
const Y = {
|
|
363
278
|
url: V(this.options.basePath, E),
|
|
364
|
-
method:
|
|
279
|
+
method: B.POST,
|
|
365
280
|
headers: {
|
|
366
281
|
Accept: R
|
|
367
282
|
},
|
|
368
283
|
body: T
|
|
369
284
|
};
|
|
370
|
-
return await this.options.fetcher.request(
|
|
285
|
+
return await this.options.fetcher.request(Y, O(X, A));
|
|
371
286
|
}
|
|
372
287
|
}
|
|
373
|
-
var
|
|
374
|
-
function
|
|
288
|
+
var w = /* @__PURE__ */ ((t) => (t.ASC = "ASC", t.DESC = "DESC", t))(w || {});
|
|
289
|
+
function xt(t) {
|
|
375
290
|
return {
|
|
376
291
|
field: t,
|
|
377
292
|
direction: "ASC"
|
|
378
293
|
/* ASC */
|
|
379
294
|
};
|
|
380
295
|
}
|
|
381
|
-
function
|
|
296
|
+
function Ft(t) {
|
|
382
297
|
return {
|
|
383
298
|
field: t,
|
|
384
299
|
direction: "DESC"
|
|
385
300
|
/* DESC */
|
|
386
301
|
};
|
|
387
302
|
}
|
|
388
|
-
const
|
|
303
|
+
const c = class c {
|
|
389
304
|
};
|
|
390
|
-
|
|
391
|
-
let
|
|
305
|
+
c.HEADER = "header", c.COMMAND_OPERATOR = `${c.HEADER}.command_operator`, c.AGGREGATE_ID = "aggregateId", c.TENANT_ID = "tenantId", c.OWNER_ID = "ownerId", c.COMMAND_ID = "commandId", c.REQUEST_ID = "requestId", c.VERSION = "version", c.BODY = "body", c.BODY_ID = `${c.BODY}.id`, c.BODY_NAME = `${c.BODY}.name`, c.BODY_TYPE = `${c.BODY}.bodyType`, c.BODY_REVISION = `${c.BODY}.revision`, c.BODY_BODY = `${c.BODY}.body`, c.CREATE_TIME = "createTime";
|
|
306
|
+
let W = c;
|
|
392
307
|
const e = class e {
|
|
393
308
|
};
|
|
394
309
|
e.EVENT_STREAM_RESOURCE_NAME = "event", e.COUNT = `${e.EVENT_STREAM_RESOURCE_NAME}/count`, e.LIST = `${e.EVENT_STREAM_RESOURCE_NAME}/list`, e.PAGED = `${e.EVENT_STREAM_RESOURCE_NAME}/paged`;
|
|
395
|
-
let
|
|
396
|
-
class
|
|
310
|
+
let D = e;
|
|
311
|
+
class wt extends $ {
|
|
397
312
|
/**
|
|
398
313
|
* Creates a new EventStreamQueryClient instance.
|
|
399
314
|
* @param options - The client configuration options including fetcher and base path
|
|
@@ -417,7 +332,7 @@ class xt extends X {
|
|
|
417
332
|
* ```
|
|
418
333
|
*/
|
|
419
334
|
count(E, T) {
|
|
420
|
-
return this.query(
|
|
335
|
+
return this.query(D.COUNT, E, { attributes: T });
|
|
421
336
|
}
|
|
422
337
|
/**
|
|
423
338
|
* Retrieves a list of domain event streams based on the provided query parameters.
|
|
@@ -440,7 +355,7 @@ class xt extends X {
|
|
|
440
355
|
* ```
|
|
441
356
|
*/
|
|
442
357
|
list(E, T) {
|
|
443
|
-
return this.query(
|
|
358
|
+
return this.query(D.LIST, E, { attributes: T });
|
|
444
359
|
}
|
|
445
360
|
/**
|
|
446
361
|
* Retrieves a stream of domain event streams based on the provided query parameters.
|
|
@@ -466,11 +381,13 @@ class xt extends X {
|
|
|
466
381
|
*/
|
|
467
382
|
listStream(E, T) {
|
|
468
383
|
return this.query(
|
|
469
|
-
|
|
384
|
+
D.LIST,
|
|
470
385
|
E,
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
386
|
+
O(f, {
|
|
387
|
+
resultExtractor: h,
|
|
388
|
+
attributes: T
|
|
389
|
+
}),
|
|
390
|
+
L.TEXT_EVENT_STREAM
|
|
474
391
|
);
|
|
475
392
|
}
|
|
476
393
|
/**
|
|
@@ -497,18 +414,18 @@ class xt extends X {
|
|
|
497
414
|
* ```
|
|
498
415
|
*/
|
|
499
416
|
paged(E, T) {
|
|
500
|
-
return this.query(
|
|
417
|
+
return this.query(D.PAGED, E, { attributes: T });
|
|
501
418
|
}
|
|
502
419
|
}
|
|
503
|
-
const N = class N {
|
|
504
|
-
};
|
|
505
|
-
N.VERSION = "version", N.TENANT_ID = "tenantId", N.OWNER_ID = "ownerId", N.EVENT_ID = "eventId", N.FIRST_EVENT_TIME = "firstEventTime", N.EVENT_TIME = "eventTime", N.FIRST_OPERATOR = "firstOperator", N.OPERATOR = "operator", N.SNAPSHOT_TIME = "snapshotTime", N.DELETED = "deleted", N.STATE = "state";
|
|
506
|
-
let g = N;
|
|
507
420
|
const I = class I {
|
|
508
421
|
};
|
|
509
|
-
I.
|
|
510
|
-
let
|
|
511
|
-
|
|
422
|
+
I.VERSION = "version", I.TENANT_ID = "tenantId", I.OWNER_ID = "ownerId", I.EVENT_ID = "eventId", I.FIRST_EVENT_TIME = "firstEventTime", I.EVENT_TIME = "eventTime", I.FIRST_OPERATOR = "firstOperator", I.OPERATOR = "operator", I.SNAPSHOT_TIME = "snapshotTime", I.DELETED = "deleted", I.STATE = "state";
|
|
423
|
+
let P = I;
|
|
424
|
+
const r = class r {
|
|
425
|
+
};
|
|
426
|
+
r.SNAPSHOT_RESOURCE_NAME = "snapshot", r.COUNT = `${r.SNAPSHOT_RESOURCE_NAME}/count`, r.LIST = `${r.SNAPSHOT_RESOURCE_NAME}/list`, r.LIST_STATE = `${r.LIST}/state`, r.PAGED = `${r.SNAPSHOT_RESOURCE_NAME}/paged`, r.PAGED_STATE = `${r.PAGED}/state`, r.SINGLE = `${r.SNAPSHOT_RESOURCE_NAME}/single`, r.SINGLE_STATE = `${r.SINGLE}/state`;
|
|
427
|
+
let N = r;
|
|
428
|
+
class Jt extends $ {
|
|
512
429
|
/**
|
|
513
430
|
* Creates a new SnapshotQueryClient instance.
|
|
514
431
|
* @param options - The configuration options for the client
|
|
@@ -532,7 +449,7 @@ class wt extends X {
|
|
|
532
449
|
* ```
|
|
533
450
|
*/
|
|
534
451
|
async count(E, T) {
|
|
535
|
-
return this.query(
|
|
452
|
+
return this.query(N.COUNT, E, { attributes: T });
|
|
536
453
|
}
|
|
537
454
|
/**
|
|
538
455
|
* Retrieves a list of materialized snapshots based on the provided query parameters.
|
|
@@ -555,7 +472,7 @@ class wt extends X {
|
|
|
555
472
|
* ```
|
|
556
473
|
*/
|
|
557
474
|
list(E, T) {
|
|
558
|
-
return this.query(
|
|
475
|
+
return this.query(N.LIST, E, { attributes: T });
|
|
559
476
|
}
|
|
560
477
|
/**
|
|
561
478
|
* Retrieves a stream of materialized snapshots based on the provided query parameters.
|
|
@@ -580,11 +497,13 @@ class wt extends X {
|
|
|
580
497
|
*/
|
|
581
498
|
listStream(E, T) {
|
|
582
499
|
return this.query(
|
|
583
|
-
|
|
500
|
+
N.LIST,
|
|
584
501
|
E,
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
502
|
+
O(f, {
|
|
503
|
+
resultExtractor: h,
|
|
504
|
+
attributes: T
|
|
505
|
+
}),
|
|
506
|
+
L.TEXT_EVENT_STREAM
|
|
588
507
|
);
|
|
589
508
|
}
|
|
590
509
|
/**
|
|
@@ -608,7 +527,7 @@ class wt extends X {
|
|
|
608
527
|
* ```
|
|
609
528
|
*/
|
|
610
529
|
listState(E, T) {
|
|
611
|
-
return this.query(
|
|
530
|
+
return this.query(N.LIST_STATE, E, { attributes: T });
|
|
612
531
|
}
|
|
613
532
|
/**
|
|
614
533
|
* Retrieves a stream of snapshot states based on the provided query parameters.
|
|
@@ -633,11 +552,13 @@ class wt extends X {
|
|
|
633
552
|
*/
|
|
634
553
|
listStateStream(E, T) {
|
|
635
554
|
return this.query(
|
|
636
|
-
|
|
555
|
+
N.LIST_STATE,
|
|
637
556
|
E,
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
557
|
+
O(f, {
|
|
558
|
+
resultExtractor: h,
|
|
559
|
+
attributes: T
|
|
560
|
+
}),
|
|
561
|
+
L.TEXT_EVENT_STREAM
|
|
641
562
|
);
|
|
642
563
|
}
|
|
643
564
|
/**
|
|
@@ -664,7 +585,7 @@ class wt extends X {
|
|
|
664
585
|
* ```
|
|
665
586
|
*/
|
|
666
587
|
paged(E, T) {
|
|
667
|
-
return this.query(
|
|
588
|
+
return this.query(N.PAGED, E, { attributes: T });
|
|
668
589
|
}
|
|
669
590
|
/**
|
|
670
591
|
* Retrieves a paged list of snapshot states based on the provided query parameters.
|
|
@@ -689,7 +610,7 @@ class wt extends X {
|
|
|
689
610
|
* ```
|
|
690
611
|
*/
|
|
691
612
|
pagedState(E, T) {
|
|
692
|
-
return this.query(
|
|
613
|
+
return this.query(N.PAGED_STATE, E, { attributes: T });
|
|
693
614
|
}
|
|
694
615
|
/**
|
|
695
616
|
* Retrieves a single materialized snapshot based on the provided query parameters.
|
|
@@ -710,7 +631,7 @@ class wt extends X {
|
|
|
710
631
|
* ```
|
|
711
632
|
*/
|
|
712
633
|
single(E, T) {
|
|
713
|
-
return this.query(
|
|
634
|
+
return this.query(N.SINGLE, E, { attributes: T });
|
|
714
635
|
}
|
|
715
636
|
/**
|
|
716
637
|
* Retrieves a single snapshot state based on the provided query parameters.
|
|
@@ -731,11 +652,107 @@ class wt extends X {
|
|
|
731
652
|
* ```
|
|
732
653
|
*/
|
|
733
654
|
singleState(E, T) {
|
|
734
|
-
return this.query(
|
|
655
|
+
return this.query(N.SINGLE_STATE, E, { attributes: T });
|
|
735
656
|
}
|
|
736
657
|
}
|
|
737
|
-
|
|
738
|
-
|
|
658
|
+
class bt {
|
|
659
|
+
constructor(E) {
|
|
660
|
+
this.options = E;
|
|
661
|
+
}
|
|
662
|
+
/**
|
|
663
|
+
* Sends a command to the specified path and returns the result.
|
|
664
|
+
* This is a protected generic method that handles the common logic for sending commands.
|
|
665
|
+
* @template R The type of the result to be returned
|
|
666
|
+
* @param path - The endpoint path to send the command to
|
|
667
|
+
* @param commandHttpRequest - The command HTTP request containing headers, method, and body
|
|
668
|
+
* @param options - Request options including result extractor and attributes
|
|
669
|
+
* @param options.resultExtractor - Function to extract the desired result from the exchange.
|
|
670
|
+
* Defaults to ExchangeResultExtractor which returns the entire exchange object.
|
|
671
|
+
* @param options.attributes - Optional shared attributes that can be accessed by interceptors
|
|
672
|
+
* throughout the request lifecycle. These attributes allow passing
|
|
673
|
+
* custom data between different interceptors.
|
|
674
|
+
* @returns A promise that resolves to the extracted result of type R
|
|
675
|
+
*/
|
|
676
|
+
async sendCommand(E, T, A) {
|
|
677
|
+
const R = V(this.options.basePath, E), l = {
|
|
678
|
+
...T,
|
|
679
|
+
url: R
|
|
680
|
+
};
|
|
681
|
+
return await this.options.fetcher.request(l, O(X, A));
|
|
682
|
+
}
|
|
683
|
+
/**
|
|
684
|
+
* Send a command to the server and wait for the result.
|
|
685
|
+
*
|
|
686
|
+
* @param path - The endpoint path to send the command to
|
|
687
|
+
* @param commandHttpRequest - The command request to send
|
|
688
|
+
* @param attributes - Optional shared attributes that can be accessed by interceptors
|
|
689
|
+
* throughout the request lifecycle. These attributes allow passing
|
|
690
|
+
* custom data between different interceptors.
|
|
691
|
+
* @returns A promise that resolves to the command execution result
|
|
692
|
+
*
|
|
693
|
+
* @example
|
|
694
|
+
* ```typescript
|
|
695
|
+
* const commandResult = await commandClient.send('add_cart_item', {
|
|
696
|
+
* method: HttpMethod.POST,
|
|
697
|
+
* body: {
|
|
698
|
+
* productId: 'product-1',
|
|
699
|
+
* quantity: 2
|
|
700
|
+
* }
|
|
701
|
+
* });
|
|
702
|
+
* ```
|
|
703
|
+
*/
|
|
704
|
+
send(E, T, A) {
|
|
705
|
+
return this.sendCommand(E, T, { attributes: A });
|
|
706
|
+
}
|
|
707
|
+
/**
|
|
708
|
+
* Send a command to the server and wait for the result as a stream.
|
|
709
|
+
* This is useful for long-running commands that produce multiple events.
|
|
710
|
+
*
|
|
711
|
+
* @param path - The endpoint path to send the command to
|
|
712
|
+
* @param commandHttpRequest - The command request to send
|
|
713
|
+
* @param attributes - Optional shared attributes that can be accessed by interceptors
|
|
714
|
+
* throughout the request lifecycle. These attributes allow passing
|
|
715
|
+
* custom data between different interceptors.
|
|
716
|
+
* @returns A promise that resolves to a stream of command execution results
|
|
717
|
+
*
|
|
718
|
+
* @example
|
|
719
|
+
* ```typescript
|
|
720
|
+
* const commandResultStream = await commandClient.sendAndWaitStream('add_cart_item', {
|
|
721
|
+
* method: HttpMethod.POST,
|
|
722
|
+
* headers: {
|
|
723
|
+
* Accept: ContentTypeValues.TEXT_EVENT_STREAM
|
|
724
|
+
* },
|
|
725
|
+
* body: {
|
|
726
|
+
* productId: 'product-1',
|
|
727
|
+
* quantity: 2
|
|
728
|
+
* }
|
|
729
|
+
* });
|
|
730
|
+
*
|
|
731
|
+
* for await (const commandResultEvent of commandResultStream) {
|
|
732
|
+
* console.log('Received event:', commandResultEvent.data);
|
|
733
|
+
* }
|
|
734
|
+
* ```
|
|
735
|
+
*/
|
|
736
|
+
async sendAndWaitStream(E, T, A) {
|
|
737
|
+
return T.headers = {
|
|
738
|
+
...T.headers,
|
|
739
|
+
Accept: L.TEXT_EVENT_STREAM
|
|
740
|
+
}, this.sendCommand(
|
|
741
|
+
E,
|
|
742
|
+
T,
|
|
743
|
+
O(f, {
|
|
744
|
+
resultExtractor: h,
|
|
745
|
+
attributes: A
|
|
746
|
+
})
|
|
747
|
+
);
|
|
748
|
+
}
|
|
749
|
+
}
|
|
750
|
+
const i = class i {
|
|
751
|
+
};
|
|
752
|
+
i.COMMAND_HEADERS_PREFIX = "Command-", i.TENANT_ID = `${i.COMMAND_HEADERS_PREFIX}Tenant-Id`, i.OWNER_ID = `${i.COMMAND_HEADERS_PREFIX}Owner-Id`, i.AGGREGATE_ID = `${i.COMMAND_HEADERS_PREFIX}Aggregate-Id`, i.AGGREGATE_VERSION = `${i.COMMAND_HEADERS_PREFIX}Aggregate-Version`, i.WAIT_PREFIX = `${i.COMMAND_HEADERS_PREFIX}Wait-`, i.WAIT_TIME_OUT = `${i.WAIT_PREFIX}Timeout`, i.WAIT_STAGE = `${i.WAIT_PREFIX}Stage`, i.WAIT_CONTEXT = `${i.WAIT_PREFIX}Context`, i.WAIT_PROCESSOR = `${i.WAIT_PREFIX}Processor`, i.WAIT_FUNCTION = `${i.WAIT_PREFIX}Function`, i.WAIT_TAIL_PREFIX = `${i.WAIT_PREFIX}Tail-`, i.WAIT_TAIL_STAGE = `${i.WAIT_TAIL_PREFIX}Stage`, i.WAIT_TAIL_CONTEXT = `${i.WAIT_TAIL_PREFIX}Context`, i.WAIT_TAIL_PROCESSOR = `${i.WAIT_TAIL_PREFIX}Processor`, i.WAIT_TAIL_FUNCTION = `${i.WAIT_TAIL_PREFIX}Function`, i.REQUEST_ID = `${i.COMMAND_HEADERS_PREFIX}Request-Id`, i.LOCAL_FIRST = `${i.COMMAND_HEADERS_PREFIX}Local-First`, i.COMMAND_AGGREGATE_CONTEXT = `${i.COMMAND_HEADERS_PREFIX}Aggregate-Context`, i.COMMAND_AGGREGATE_NAME = `${i.COMMAND_HEADERS_PREFIX}Aggregate-Name`, i.COMMAND_TYPE = `${i.COMMAND_HEADERS_PREFIX}Type`, i.COMMAND_HEADER_X_PREFIX = `${i.COMMAND_HEADERS_PREFIX}Header-`;
|
|
753
|
+
let U = i;
|
|
754
|
+
var J = /* @__PURE__ */ ((t) => (t.SENT = "SENT", t.PROCESSED = "PROCESSED", t.SNAPSHOT = "SNAPSHOT", t.PROJECTED = "PROJECTED", t.EVENT_HANDLED = "EVENT_HANDLED", t.SAGA_HANDLED = "SAGA_HANDLED", t))(J || {}), b = /* @__PURE__ */ ((t) => (t.RECOVERABLE = "RECOVERABLE", t.UNKNOWN = "UNKNOWN", t.UNRECOVERABLE = "UNRECOVERABLE", t))(b || {});
|
|
755
|
+
const n = class n {
|
|
739
756
|
/**
|
|
740
757
|
* Checks if the provided error code represents a successful operation.
|
|
741
758
|
*
|
|
@@ -743,7 +760,7 @@ const c = class c {
|
|
|
743
760
|
* @returns true if the error code is 'Ok', false otherwise
|
|
744
761
|
*/
|
|
745
762
|
static isSucceeded(E) {
|
|
746
|
-
return E ===
|
|
763
|
+
return E === n.SUCCEEDED;
|
|
747
764
|
}
|
|
748
765
|
/**
|
|
749
766
|
* Checks if the provided error code represents an error condition.
|
|
@@ -752,87 +769,89 @@ const c = class c {
|
|
|
752
769
|
* @returns true if the error code is not 'Ok', false otherwise
|
|
753
770
|
*/
|
|
754
771
|
static isError(E) {
|
|
755
|
-
return !
|
|
772
|
+
return !n.isSucceeded(E);
|
|
756
773
|
}
|
|
757
774
|
};
|
|
758
|
-
|
|
759
|
-
let
|
|
760
|
-
var
|
|
761
|
-
const
|
|
775
|
+
n.SUCCEEDED = "Ok", n.SUCCEEDED_MESSAGE = "", n.NOT_FOUND = "NotFound", n.NOT_FOUND_MESSAGE = "Not found resource!", n.BAD_REQUEST = "BadRequest", n.ILLEGAL_ARGUMENT = "IllegalArgument", n.ILLEGAL_STATE = "IllegalState", n.REQUEST_TIMEOUT = "RequestTimeout", n.TOO_MANY_REQUESTS = "TooManyRequests", n.DUPLICATE_REQUEST_ID = "DuplicateRequestId", n.COMMAND_VALIDATION = "CommandValidation", n.REWRITE_NO_COMMAND = "RewriteNoCommand", n.EVENT_VERSION_CONFLICT = "EventVersionConflict", n.DUPLICATE_AGGREGATE_ID = "DuplicateAggregateId", n.COMMAND_EXPECT_VERSION_CONFLICT = "CommandExpectVersionConflict", n.SOURCING_VERSION_CONFLICT = "SourcingVersionConflict", n.ILLEGAL_ACCESS_DELETED_AGGREGATE = "IllegalAccessDeletedAggregate", n.ILLEGAL_ACCESS_OWNER_AGGREGATE = "IllegalAccessOwnerAggregate", n.INTERNAL_SERVER_ERROR = "InternalServerError";
|
|
776
|
+
let g = n;
|
|
777
|
+
var K = /* @__PURE__ */ ((t) => (t.COMMAND = "COMMAND", t.ERROR = "ERROR", t.EVENT = "EVENT", t.SOURCING = "SOURCING", t.STATE_EVENT = "STATE_EVENT", t))(K || {});
|
|
778
|
+
const Kt = "";
|
|
762
779
|
export {
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
X as
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
780
|
+
bt as CommandClient,
|
|
781
|
+
U as CommandHttpHeaders,
|
|
782
|
+
J as CommandStage,
|
|
783
|
+
C as ConditionOptionKey,
|
|
784
|
+
Kt as DEFAULT_OWNER_ID,
|
|
785
|
+
o as DEFAULT_PAGINATION,
|
|
786
|
+
x as DEFAULT_PROJECTION,
|
|
787
|
+
y as DeletionState,
|
|
788
|
+
W as DomainEventStreamMetadataFields,
|
|
789
|
+
F as EMPTY_PAGED_LIST,
|
|
790
|
+
g as ErrorCodes,
|
|
791
|
+
wt as EventStreamQueryClient,
|
|
792
|
+
D as EventStreamQueryEndpointPaths,
|
|
793
|
+
K as FunctionKind,
|
|
794
|
+
f as JSON_EVENT_STREAM_QUERY_REQUEST_OPTIONS,
|
|
795
|
+
X as JSON_QUERY_REQUEST_OPTIONS,
|
|
796
|
+
s as Operator,
|
|
797
|
+
$ as QueryClient,
|
|
798
|
+
b as RecoverableType,
|
|
799
|
+
P as SnapshotMetadataFields,
|
|
800
|
+
Jt as SnapshotQueryClient,
|
|
801
|
+
N as SnapshotQueryEndpointPaths,
|
|
802
|
+
w as SortDirection,
|
|
803
|
+
Et as active,
|
|
804
|
+
p as aggregateId,
|
|
805
|
+
m as aggregateIds,
|
|
806
|
+
S as all,
|
|
807
|
+
Rt as allIn,
|
|
789
808
|
k as and,
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
809
|
+
xt as asc,
|
|
810
|
+
Gt as beforeToday,
|
|
811
|
+
ut as between,
|
|
812
|
+
rt as contains,
|
|
794
813
|
u as dateOptions,
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
814
|
+
a as deleted,
|
|
815
|
+
Ft as desc,
|
|
816
|
+
Vt as earlierDays,
|
|
798
817
|
Dt as elemMatch,
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
818
|
+
St as endsWith,
|
|
819
|
+
Tt as eq,
|
|
820
|
+
ht as exists,
|
|
821
|
+
st as gt,
|
|
822
|
+
ct as gte,
|
|
804
823
|
j as id,
|
|
805
|
-
|
|
824
|
+
Z as ids,
|
|
806
825
|
M as ignoreCaseOptions,
|
|
807
826
|
Lt as isFalse,
|
|
808
827
|
It as isIn,
|
|
809
|
-
|
|
810
|
-
|
|
828
|
+
Ot as isNull,
|
|
829
|
+
_t as isTrue,
|
|
811
830
|
G as isValidateCondition,
|
|
812
|
-
|
|
831
|
+
Ut as lastMonth,
|
|
813
832
|
Wt as lastWeek,
|
|
814
833
|
Bt as listQuery,
|
|
815
834
|
At as lt,
|
|
816
835
|
nt as lte,
|
|
817
|
-
|
|
836
|
+
it as ne,
|
|
818
837
|
Ct as nextWeek,
|
|
819
838
|
H as nor,
|
|
820
839
|
Nt as notIn,
|
|
821
|
-
|
|
840
|
+
ot as notNull,
|
|
822
841
|
z as or,
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
842
|
+
tt as ownerId,
|
|
843
|
+
at as pagedList,
|
|
844
|
+
yt as pagedQuery,
|
|
845
|
+
$t as pagination,
|
|
846
|
+
Yt as projection,
|
|
847
|
+
Xt as raw,
|
|
829
848
|
gt as recentDays,
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
849
|
+
qt as singleQuery,
|
|
850
|
+
et as startsWith,
|
|
851
|
+
d as tenantId,
|
|
852
|
+
Pt as thisMonth,
|
|
853
|
+
lt as thisWeek,
|
|
854
|
+
ft as today,
|
|
855
|
+
Mt as tomorrow
|
|
837
856
|
};
|
|
838
857
|
//# sourceMappingURL=index.es.js.map
|