@vuetify/one 1.0.16 → 1.1.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 +12 -6
- package/dist/index.js +1611 -1220
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -92,6 +92,7 @@ declare const useAuthStore: pinia.StoreDefinition<"auth", pinia._UnwrapAll<Pick<
|
|
|
92
92
|
}[];
|
|
93
93
|
} | null>;
|
|
94
94
|
url: string;
|
|
95
|
+
dialog: vue.Ref<boolean>;
|
|
95
96
|
isLoading: vue.ShallowRef<boolean>;
|
|
96
97
|
findIdentity: (provider: string) => {
|
|
97
98
|
id: string;
|
|
@@ -110,7 +111,7 @@ declare const useAuthStore: pinia.StoreDefinition<"auth", pinia._UnwrapAll<Pick<
|
|
|
110
111
|
isSubscriber: vue.ComputedRef<boolean>;
|
|
111
112
|
lastLoginProvider: () => string | null;
|
|
112
113
|
sync: () => Promise<void>;
|
|
113
|
-
}, "url" | "user" | "isLoading">>, Pick<{
|
|
114
|
+
}, "dialog" | "url" | "user" | "isLoading">>, Pick<{
|
|
114
115
|
user: vue.Ref<{
|
|
115
116
|
id: string;
|
|
116
117
|
isAdmin: boolean;
|
|
@@ -199,6 +200,7 @@ declare const useAuthStore: pinia.StoreDefinition<"auth", pinia._UnwrapAll<Pick<
|
|
|
199
200
|
}[];
|
|
200
201
|
} | null>;
|
|
201
202
|
url: string;
|
|
203
|
+
dialog: vue.Ref<boolean>;
|
|
202
204
|
isLoading: vue.ShallowRef<boolean>;
|
|
203
205
|
findIdentity: (provider: string) => {
|
|
204
206
|
id: string;
|
|
@@ -306,6 +308,7 @@ declare const useAuthStore: pinia.StoreDefinition<"auth", pinia._UnwrapAll<Pick<
|
|
|
306
308
|
}[];
|
|
307
309
|
} | null>;
|
|
308
310
|
url: string;
|
|
311
|
+
dialog: vue.Ref<boolean>;
|
|
309
312
|
isLoading: vue.ShallowRef<boolean>;
|
|
310
313
|
findIdentity: (provider: string) => {
|
|
311
314
|
id: string;
|
|
@@ -519,7 +522,7 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
|
|
|
519
522
|
status: string;
|
|
520
523
|
pdf: string;
|
|
521
524
|
}[]>;
|
|
522
|
-
sessionId: string |
|
|
525
|
+
sessionId: string | string[];
|
|
523
526
|
subscription: vue.ComputedRef<{
|
|
524
527
|
id: string;
|
|
525
528
|
platform: string;
|
|
@@ -817,6 +820,7 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
|
|
|
817
820
|
cancel: () => Promise<void>;
|
|
818
821
|
manage: () => Promise<void>;
|
|
819
822
|
modify: (interval: SubscriptionItemPlan['interval']) => Promise<void>;
|
|
823
|
+
resetQuery: () => void;
|
|
820
824
|
subscribe: (interval: string) => Promise<void>;
|
|
821
825
|
subscriptionInfo: () => Promise<any>;
|
|
822
826
|
verify: () => Promise<void>;
|
|
@@ -829,7 +833,7 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
|
|
|
829
833
|
status: string;
|
|
830
834
|
pdf: string;
|
|
831
835
|
}[]>;
|
|
832
|
-
sessionId: string |
|
|
836
|
+
sessionId: string | string[];
|
|
833
837
|
subscription: vue.ComputedRef<{
|
|
834
838
|
id: string;
|
|
835
839
|
platform: string;
|
|
@@ -1127,6 +1131,7 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
|
|
|
1127
1131
|
cancel: () => Promise<void>;
|
|
1128
1132
|
manage: () => Promise<void>;
|
|
1129
1133
|
modify: (interval: SubscriptionItemPlan['interval']) => Promise<void>;
|
|
1134
|
+
resetQuery: () => void;
|
|
1130
1135
|
subscribe: (interval: string) => Promise<void>;
|
|
1131
1136
|
subscriptionInfo: () => Promise<any>;
|
|
1132
1137
|
verify: () => Promise<void>;
|
|
@@ -1139,7 +1144,7 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
|
|
|
1139
1144
|
status: string;
|
|
1140
1145
|
pdf: string;
|
|
1141
1146
|
}[]>;
|
|
1142
|
-
sessionId: string |
|
|
1147
|
+
sessionId: string | string[];
|
|
1143
1148
|
subscription: vue.ComputedRef<{
|
|
1144
1149
|
id: string;
|
|
1145
1150
|
platform: string;
|
|
@@ -1437,10 +1442,11 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
|
|
|
1437
1442
|
cancel: () => Promise<void>;
|
|
1438
1443
|
manage: () => Promise<void>;
|
|
1439
1444
|
modify: (interval: SubscriptionItemPlan['interval']) => Promise<void>;
|
|
1445
|
+
resetQuery: () => void;
|
|
1440
1446
|
subscribe: (interval: string) => Promise<void>;
|
|
1441
1447
|
subscriptionInfo: () => Promise<any>;
|
|
1442
1448
|
verify: () => Promise<void>;
|
|
1443
|
-
}, "cancel" | "verify" | "activate" | "manage" | "modify" | "subscribe" | "subscriptionInfo">>;
|
|
1449
|
+
}, "cancel" | "verify" | "activate" | "manage" | "modify" | "resetQuery" | "subscribe" | "subscriptionInfo">>;
|
|
1444
1450
|
|
|
1445
1451
|
interface Suit {
|
|
1446
1452
|
'app-bar': string;
|
|
@@ -1586,6 +1592,6 @@ declare const useUserStore: pinia.StoreDefinition<"user", pinia._UnwrapAll<Pick<
|
|
|
1586
1592
|
declare function createOne(): {
|
|
1587
1593
|
install: (app: App) => void;
|
|
1588
1594
|
};
|
|
1589
|
-
declare function one(
|
|
1595
|
+
declare function one(id: string[], url: string): (context: PiniaPluginContext) => void;
|
|
1590
1596
|
|
|
1591
1597
|
export { createOne, one, useAuthStore, useBinsStore, useHttpStore, useOneStore, useSettingsStore, useUserStore };
|