@vuetify/one 1.5.5 → 1.6.0
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.d.ts +28 -4
- package/dist/index.js +1715 -1526
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -107,7 +107,7 @@ declare const useAuthStore: pinia.StoreDefinition<"auth", pinia._UnwrapAll<Pick<
|
|
|
107
107
|
(force?: boolean): Promise<void>;
|
|
108
108
|
promise: Promise<void> | null;
|
|
109
109
|
};
|
|
110
|
-
login: (provider?: 'github' | 'discord') => Promise<void>;
|
|
110
|
+
login: (provider?: 'github' | 'discord' | 'shopify') => Promise<void>;
|
|
111
111
|
logout: (identity?: string) => Promise<void>;
|
|
112
112
|
isSubscriber: globalThis.ComputedRef<boolean>;
|
|
113
113
|
lastLoginProvider: () => string | null;
|
|
@@ -216,7 +216,7 @@ declare const useAuthStore: pinia.StoreDefinition<"auth", pinia._UnwrapAll<Pick<
|
|
|
216
216
|
(force?: boolean): Promise<void>;
|
|
217
217
|
promise: Promise<void> | null;
|
|
218
218
|
};
|
|
219
|
-
login: (provider?: 'github' | 'discord') => Promise<void>;
|
|
219
|
+
login: (provider?: 'github' | 'discord' | 'shopify') => Promise<void>;
|
|
220
220
|
logout: (identity?: string) => Promise<void>;
|
|
221
221
|
isSubscriber: globalThis.ComputedRef<boolean>;
|
|
222
222
|
lastLoginProvider: () => string | null;
|
|
@@ -325,7 +325,7 @@ declare const useAuthStore: pinia.StoreDefinition<"auth", pinia._UnwrapAll<Pick<
|
|
|
325
325
|
(force?: boolean): Promise<void>;
|
|
326
326
|
promise: Promise<void> | null;
|
|
327
327
|
};
|
|
328
|
-
login: (provider?: 'github' | 'discord') => Promise<void>;
|
|
328
|
+
login: (provider?: 'github' | 'discord' | 'shopify') => Promise<void>;
|
|
329
329
|
logout: (identity?: string) => Promise<void>;
|
|
330
330
|
isSubscriber: globalThis.ComputedRef<boolean>;
|
|
331
331
|
lastLoginProvider: () => string | null;
|
|
@@ -868,6 +868,14 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
|
|
|
868
868
|
};
|
|
869
869
|
};
|
|
870
870
|
} | undefined>;
|
|
871
|
+
shopify: globalThis.ComputedRef<{
|
|
872
|
+
id: string;
|
|
873
|
+
emails: string[];
|
|
874
|
+
provider: string;
|
|
875
|
+
userId: string;
|
|
876
|
+
userHandle: string;
|
|
877
|
+
primary: boolean;
|
|
878
|
+
} | undefined>;
|
|
871
879
|
one: globalThis.ComputedRef<{
|
|
872
880
|
id: string;
|
|
873
881
|
platform: string;
|
|
@@ -1251,6 +1259,14 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
|
|
|
1251
1259
|
};
|
|
1252
1260
|
};
|
|
1253
1261
|
} | undefined>;
|
|
1262
|
+
shopify: globalThis.ComputedRef<{
|
|
1263
|
+
id: string;
|
|
1264
|
+
emails: string[];
|
|
1265
|
+
provider: string;
|
|
1266
|
+
userId: string;
|
|
1267
|
+
userHandle: string;
|
|
1268
|
+
primary: boolean;
|
|
1269
|
+
} | undefined>;
|
|
1254
1270
|
one: globalThis.ComputedRef<{
|
|
1255
1271
|
id: string;
|
|
1256
1272
|
platform: string;
|
|
@@ -1331,7 +1347,7 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
|
|
|
1331
1347
|
subscribe: (interval: string) => Promise<void>;
|
|
1332
1348
|
subscriptionInfo: () => Promise<any>;
|
|
1333
1349
|
verify: () => Promise<void>;
|
|
1334
|
-
}, "interval" | "isSubscriber" | "one" | "github" | "discord" | "patreon" | "sessionId" | "subscription" | "monthlyTotal" | "hasBilling">, Pick<{
|
|
1350
|
+
}, "interval" | "isSubscriber" | "one" | "github" | "discord" | "shopify" | "patreon" | "sessionId" | "subscription" | "monthlyTotal" | "hasBilling">, Pick<{
|
|
1335
1351
|
info: globalThis.Ref<Info | undefined>;
|
|
1336
1352
|
interval: globalThis.ComputedRef<"month" | "year" | undefined>;
|
|
1337
1353
|
invoices: globalThis.Ref<{
|
|
@@ -1634,6 +1650,14 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
|
|
|
1634
1650
|
};
|
|
1635
1651
|
};
|
|
1636
1652
|
} | undefined>;
|
|
1653
|
+
shopify: globalThis.ComputedRef<{
|
|
1654
|
+
id: string;
|
|
1655
|
+
emails: string[];
|
|
1656
|
+
provider: string;
|
|
1657
|
+
userId: string;
|
|
1658
|
+
userHandle: string;
|
|
1659
|
+
primary: boolean;
|
|
1660
|
+
} | undefined>;
|
|
1637
1661
|
one: globalThis.ComputedRef<{
|
|
1638
1662
|
id: string;
|
|
1639
1663
|
platform: string;
|