@modality-counter/core 0.8.4 → 0.8.5
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.js +16 -16
- package/dist/types/schemas/counter_schemas.d.ts +1 -1
- package/package.json +1 -1
|
@@ -10,7 +10,7 @@ export declare const partyModeSchema: z.ZodObject<{
|
|
|
10
10
|
export type PartyMode = z.infer<typeof partyModeSchema>;
|
|
11
11
|
export declare const heroMethodSchema: z.ZodObject<{
|
|
12
12
|
method: z.ZodString;
|
|
13
|
-
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny
|
|
13
|
+
params: z.ZodOptional<z.ZodPipe<z.ZodTransform<any, unknown>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
14
14
|
}, z.core.$strip>;
|
|
15
15
|
export type HeroMethodType = z.infer<typeof heroMethodSchema>;
|
|
16
16
|
export declare const heroDeploySchema: z.ZodObject<{
|
package/package.json
CHANGED