@milaboratories/pl-client 2.10.0 → 2.10.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/core/ll_transaction.d.ts +1 -0
- package/dist/core/ll_transaction.d.ts.map +1 -1
- package/dist/core/transaction.d.ts +1 -0
- package/dist/core/transaction.d.ts.map +1 -1
- package/dist/helpers/poll.d.ts +1 -0
- package/dist/helpers/poll.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/core/ll_transaction.ts +1 -0
- package/src/core/transaction.ts +3 -1
- package/src/helpers/poll.ts +3 -1
package/dist/index.mjs
CHANGED
|
@@ -12476,6 +12476,10 @@ function xn(l, e) {
|
|
|
12476
12476
|
return { resourceId: l, fieldName: e };
|
|
12477
12477
|
}
|
|
12478
12478
|
class Si extends Error {
|
|
12479
|
+
constructor() {
|
|
12480
|
+
super(...arguments);
|
|
12481
|
+
y(this, "name", "TxCommitConflict");
|
|
12482
|
+
}
|
|
12479
12483
|
}
|
|
12480
12484
|
async function ee(l) {
|
|
12481
12485
|
try {
|
|
@@ -13302,8 +13306,10 @@ function Tu(l) {
|
|
|
13302
13306
|
return l.code === Un;
|
|
13303
13307
|
}
|
|
13304
13308
|
class J extends Error {
|
|
13305
|
-
constructor(
|
|
13306
|
-
super("Rethrow error, you should never see this one.")
|
|
13309
|
+
constructor(t) {
|
|
13310
|
+
super("Rethrow error, you should never see this one.");
|
|
13311
|
+
y(this, "name", "RethrowError");
|
|
13312
|
+
this.rethrowLambda = t;
|
|
13307
13313
|
}
|
|
13308
13314
|
}
|
|
13309
13315
|
class Ru {
|
|
@@ -13996,6 +14002,10 @@ async function gf(l, e) {
|
|
|
13996
14002
|
return t;
|
|
13997
14003
|
}
|
|
13998
14004
|
class z extends Error {
|
|
14005
|
+
constructor() {
|
|
14006
|
+
super(...arguments);
|
|
14007
|
+
y(this, "name", "ContinuePolling");
|
|
14008
|
+
}
|
|
13999
14009
|
}
|
|
14000
14010
|
const xu = {
|
|
14001
14011
|
failOnError: !0,
|