@ahoo-wang/fetcher-wow 1.2.9 → 1.3.1
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/index.es.js +2 -3
- 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/condition.d.ts.map +1 -1
- package/dist/types/function.d.ts +2 -3
- package/dist/types/function.d.ts.map +1 -1
- package/dist/types/modeling.d.ts +0 -1
- package/dist/types/modeling.d.ts.map +1 -1
- package/package.json +4 -4
package/dist/index.es.js
CHANGED
|
@@ -106,7 +106,7 @@ function v(...t) {
|
|
|
106
106
|
return t[0];
|
|
107
107
|
const E = [];
|
|
108
108
|
return t.forEach((T) => {
|
|
109
|
-
T.operator === A.AND && T.children ? E.push(...T.children) : E.push(T);
|
|
109
|
+
T.operator !== A.ALL && (T.operator === A.AND && T.children ? E.push(...T.children) : E.push(T));
|
|
110
110
|
}), { operator: A.AND, children: E };
|
|
111
111
|
}
|
|
112
112
|
function K(...t) {
|
|
@@ -685,7 +685,7 @@ const n = class n {
|
|
|
685
685
|
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";
|
|
686
686
|
let g = n;
|
|
687
687
|
var x = /* @__PURE__ */ ((t) => (t.COMMAND = "COMMAND", t.ERROR = "ERROR", t.EVENT = "EVENT", t.SOURCING = "SOURCING", t.STATE_EVENT = "STATE_EVENT", t))(x || {});
|
|
688
|
-
const xt = ""
|
|
688
|
+
const xt = "";
|
|
689
689
|
export {
|
|
690
690
|
b as CommandClient,
|
|
691
691
|
M as CommandHttpHeaders,
|
|
@@ -694,7 +694,6 @@ export {
|
|
|
694
694
|
xt as DEFAULT_OWNER_ID,
|
|
695
695
|
o as DEFAULT_PAGINATION,
|
|
696
696
|
q as DEFAULT_PROJECTION,
|
|
697
|
-
at as DEFAULT_TENANT_ID,
|
|
698
697
|
Y as DeletionState,
|
|
699
698
|
W as DomainEventStreamMetadataFields,
|
|
700
699
|
g as ErrorCodes,
|