@learncard/learn-card-plugin 1.1.56 → 1.1.57
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/learn-card-plugin.cjs.development.js +5 -1
- package/dist/learn-card-plugin.cjs.development.js.map +2 -2
- package/dist/learn-card-plugin.cjs.production.min.js +1 -1
- package/dist/learn-card-plugin.cjs.production.min.js.map +2 -2
- package/dist/learn-card-plugin.esm.js +5 -1
- package/dist/learn-card-plugin.esm.js.map +2 -2
- package/package.json +4 -4
|
@@ -4574,7 +4574,7 @@ var BoostPermissionsQueryValidator = z.object({
|
|
|
4574
4574
|
canManageChildrenProfiles: z.boolean(),
|
|
4575
4575
|
canViewAnalytics: z.boolean()
|
|
4576
4576
|
}).partial();
|
|
4577
|
-
var ClaimHookTypeValidator = z.enum(["GRANT_PERMISSIONS", "ADD_ADMIN"]);
|
|
4577
|
+
var ClaimHookTypeValidator = z.enum(["GRANT_PERMISSIONS", "ADD_ADMIN", "AUTO_CONNECT"]);
|
|
4578
4578
|
var ClaimHookValidator = z.discriminatedUnion("type", [
|
|
4579
4579
|
z.object({
|
|
4580
4580
|
type: z.literal(ClaimHookTypeValidator.Values.GRANT_PERMISSIONS),
|
|
@@ -4587,6 +4587,10 @@ var ClaimHookValidator = z.discriminatedUnion("type", [
|
|
|
4587
4587
|
z.object({
|
|
4588
4588
|
type: z.literal(ClaimHookTypeValidator.Values.ADD_ADMIN),
|
|
4589
4589
|
data: z.object({ claimUri: z.string(), targetUri: z.string() })
|
|
4590
|
+
}),
|
|
4591
|
+
z.object({
|
|
4592
|
+
type: z.literal(ClaimHookTypeValidator.Values.AUTO_CONNECT),
|
|
4593
|
+
data: z.object({ claimUri: z.string(), targetUri: z.string() })
|
|
4590
4594
|
})
|
|
4591
4595
|
]);
|
|
4592
4596
|
var ClaimHookQueryValidator = z.object({
|