@vue-skuilder/db 0.2.9 → 0.2.10

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.
@@ -5930,9 +5930,10 @@ ${above.rows.map((r) => ` ${r.id}-${r.key}
5930
5930
  return tagsByCard;
5931
5931
  }
5932
5932
  async getAllCardIds() {
5933
+ const prefix = `${DocTypePrefixes["CARD" /* CARD */]}-`;
5933
5934
  const result = await this.db.allDocs({
5934
- startkey: "CARD-",
5935
- endkey: "CARD-\uFFF0",
5935
+ startkey: prefix,
5936
+ endkey: `${prefix}\uFFF0`,
5936
5937
  include_docs: false
5937
5938
  });
5938
5939
  return result.rows.map((row) => row.id);