dexie-cloud-addon 4.3.3 → 4.3.4

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.
@@ -8,7 +8,7 @@
8
8
  *
9
9
  * ==========================================================================
10
10
  *
11
- * Version 4.3.3, Thu Jan 22 2026
11
+ * Version 4.3.4, Fri Jan 23 2026
12
12
  *
13
13
  * https://dexie.org
14
14
  *
@@ -13808,7 +13808,7 @@
13808
13808
  *
13809
13809
  * ==========================================================================
13810
13810
  *
13811
- * Version 4.2.2, Tue Jan 20 2026
13811
+ * Version 4.2.2, Fri Jan 23 2026
13812
13812
  *
13813
13813
  * https://dexie.org
13814
13814
  *
@@ -18145,7 +18145,7 @@
18145
18145
  const syncComplete = new rxjs.Subject();
18146
18146
  dexie.cloud = {
18147
18147
  // @ts-ignore
18148
- version: "4.3.3",
18148
+ version: "4.3.4",
18149
18149
  options: Object.assign({}, DEFAULT_OPTIONS),
18150
18150
  schema: null,
18151
18151
  get currentUserId() {
@@ -18213,6 +18213,16 @@
18213
18213
  : yield logout(DexieCloudDB(dexie));
18214
18214
  });
18215
18215
  },
18216
+ getAuthProviders() {
18217
+ return __awaiter(this, void 0, void 0, function* () {
18218
+ const options = dexie.cloud.options;
18219
+ if (!(options === null || options === void 0 ? void 0 : options.databaseUrl)) {
18220
+ throw new Error('Dexie Cloud not configured. Call db.cloud.configure() first.');
18221
+ }
18222
+ const socialAuthEnabled = options.socialAuth !== false;
18223
+ return fetchAuthProviders(options.databaseUrl, socialAuthEnabled);
18224
+ });
18225
+ },
18216
18226
  sync() {
18217
18227
  return __awaiter(this, arguments, void 0, function* ({ wait, purpose } = { wait: true, purpose: 'push' }) {
18218
18228
  var _a;
@@ -18514,7 +18524,7 @@
18514
18524
  }
18515
18525
  }
18516
18526
  // @ts-ignore
18517
- dexieCloud.version = "4.3.3";
18527
+ dexieCloud.version = "4.3.4";
18518
18528
  Dexie.Cloud = dexieCloud;
18519
18529
 
18520
18530
  exports.default = dexieCloud;