convex-ents 0.7.2 → 0.7.3

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/functions.js CHANGED
@@ -801,7 +801,7 @@ var PromiseEdgeOrNullImpl = class extends PromiseEntsOrNullImpl {
801
801
  return (docs?.length ?? 0) > 0;
802
802
  }
803
803
  };
804
- var PromiseEntOrNullImpl = class _PromiseEntOrNullImpl extends Promise {
804
+ var PromiseEntOrNullImpl = class extends Promise {
805
805
  constructor(ctx, entDefinitions, table, retrieve, throwIfNull) {
806
806
  super(() => {
807
807
  });
@@ -894,7 +894,7 @@ var PromiseEntOrNullImpl = class _PromiseEntOrNullImpl extends Promise {
894
894
  }
895
895
  );
896
896
  }
897
- return new _PromiseEntOrNullImpl(
897
+ return new PromiseEntWriterImpl(
898
898
  this.ctx,
899
899
  this.entDefinitions,
900
900
  edgeDefinition.to,
@@ -1238,7 +1238,7 @@ var PromiseEntIdImpl = class extends Promise {
1238
1238
  this.retrieve = retrieve;
1239
1239
  }
1240
1240
  get() {
1241
- return new PromiseEntOrNullImpl(
1241
+ return new PromiseEntWriterImpl(
1242
1242
  this.ctx,
1243
1243
  this.entDefinitions,
1244
1244
  this.table,