@p2pdotme/sdk 1.0.1 → 1.0.2

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