@temboplus/afloat 0.2.0-beta.12 → 0.2.0-beta.14

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.
@@ -646,6 +646,46 @@ export declare const contract: {
646
646
  identity: string;
647
647
  } | null | undefined;
648
648
  }>;
649
+ 400: z.ZodObject<{
650
+ message: z.ZodString;
651
+ statusCode: z.ZodNumber;
652
+ error: z.ZodOptional<z.ZodString>;
653
+ details: z.ZodOptional<z.AnyZodObject>;
654
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
655
+ message: string;
656
+ statusCode: number;
657
+ error?: string | undefined;
658
+ details?: {
659
+ [x: string]: any;
660
+ } | undefined;
661
+ }, {
662
+ message: string;
663
+ statusCode: number;
664
+ error?: string | undefined;
665
+ details?: {
666
+ [x: string]: any;
667
+ } | undefined;
668
+ }>;
669
+ 401: z.ZodObject<{
670
+ message: z.ZodString;
671
+ statusCode: z.ZodNumber;
672
+ error: z.ZodOptional<z.ZodString>;
673
+ details: z.ZodOptional<z.AnyZodObject>;
674
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
675
+ message: string;
676
+ statusCode: number;
677
+ error?: string | undefined;
678
+ details?: {
679
+ [x: string]: any;
680
+ } | undefined;
681
+ }, {
682
+ message: string;
683
+ statusCode: number;
684
+ error?: string | undefined;
685
+ details?: {
686
+ [x: string]: any;
687
+ } | undefined;
688
+ }>;
649
689
  404: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
650
690
  409: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
651
691
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@temboplus/afloat",
3
- "version": "0.2.0-beta.12",
3
+ "version": "0.2.0-beta.14",
4
4
  "description": "A foundational library for Temboplus-Afloat projects.",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "module": "./dist/index.esm.js",