@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
|
@@ -4550,7 +4550,7 @@ var BoostPermissionsQueryValidator = z.object({
|
|
|
4550
4550
|
canManageChildrenProfiles: z.boolean(),
|
|
4551
4551
|
canViewAnalytics: z.boolean()
|
|
4552
4552
|
}).partial();
|
|
4553
|
-
var ClaimHookTypeValidator = z.enum(["GRANT_PERMISSIONS", "ADD_ADMIN"]);
|
|
4553
|
+
var ClaimHookTypeValidator = z.enum(["GRANT_PERMISSIONS", "ADD_ADMIN", "AUTO_CONNECT"]);
|
|
4554
4554
|
var ClaimHookValidator = z.discriminatedUnion("type", [
|
|
4555
4555
|
z.object({
|
|
4556
4556
|
type: z.literal(ClaimHookTypeValidator.Values.GRANT_PERMISSIONS),
|
|
@@ -4563,6 +4563,10 @@ var ClaimHookValidator = z.discriminatedUnion("type", [
|
|
|
4563
4563
|
z.object({
|
|
4564
4564
|
type: z.literal(ClaimHookTypeValidator.Values.ADD_ADMIN),
|
|
4565
4565
|
data: z.object({ claimUri: z.string(), targetUri: z.string() })
|
|
4566
|
+
}),
|
|
4567
|
+
z.object({
|
|
4568
|
+
type: z.literal(ClaimHookTypeValidator.Values.AUTO_CONNECT),
|
|
4569
|
+
data: z.object({ claimUri: z.string(), targetUri: z.string() })
|
|
4566
4570
|
})
|
|
4567
4571
|
]);
|
|
4568
4572
|
var ClaimHookQueryValidator = z.object({
|