@p2pdotme/sdk 1.0.0 → 1.0.1

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.
@@ -23,6 +23,7 @@ declare const ZodCurrencySchema: z.ZodEnum<{
23
23
  EUR: "EUR";
24
24
  NGN: "NGN";
25
25
  USD: "USD";
26
+ COP: "COP";
26
27
  }>;
27
28
  type CurrencyType = z.infer<typeof ZodCurrencySchema>;
28
29
 
@@ -96,6 +97,7 @@ declare const ZodPlaceOrderParamsSchema: z.ZodObject<{
96
97
  EUR: "EUR";
97
98
  NGN: "NGN";
98
99
  USD: "USD";
100
+ COP: "COP";
99
101
  }>;
100
102
  fiatAmount: z.ZodBigInt;
101
103
  user: z.ZodString & z.ZodType<`0x${string}`, string, z.core.$ZodTypeInternals<`0x${string}`, string>>;
package/dist/payload.d.ts CHANGED
@@ -23,6 +23,7 @@ declare const ZodCurrencySchema: z.ZodEnum<{
23
23
  EUR: "EUR";
24
24
  NGN: "NGN";
25
25
  USD: "USD";
26
+ COP: "COP";
26
27
  }>;
27
28
  type CurrencyType = z.infer<typeof ZodCurrencySchema>;
28
29
 
@@ -96,6 +97,7 @@ declare const ZodPlaceOrderParamsSchema: z.ZodObject<{
96
97
  EUR: "EUR";
97
98
  NGN: "NGN";
98
99
  USD: "USD";
100
+ COP: "COP";
99
101
  }>;
100
102
  fiatAmount: z.ZodBigInt;
101
103
  user: z.ZodString & z.ZodType<`0x${string}`, string, z.core.$ZodTypeInternals<`0x${string}`, string>>;
package/dist/payload.mjs CHANGED
@@ -36,7 +36,8 @@ var ZodCurrencySchema = z.enum([
36
36
  "VEN",
37
37
  "EUR",
38
38
  "NGN",
39
- "USD"
39
+ "USD",
40
+ "COP"
40
41
  ]);
41
42
  function validate(schema, data, toError) {
42
43
  const result = schema.safeParse(data);