@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.
package/dist/react.d.cts CHANGED
@@ -26,7 +26,6 @@ declare const ZodCurrencySchema: z.ZodEnum<{
26
26
  EUR: "EUR";
27
27
  NGN: "NGN";
28
28
  USD: "USD";
29
- COP: "COP";
30
29
  }>;
31
30
  type CurrencyType = z.infer<typeof ZodCurrencySchema>;
32
31
 
@@ -190,7 +189,6 @@ declare const ZodPlaceOrderParamsSchema: z.ZodObject<{
190
189
  EUR: "EUR";
191
190
  NGN: "NGN";
192
191
  USD: "USD";
193
- COP: "COP";
194
192
  }>;
195
193
  fiatAmount: z.ZodBigInt;
196
194
  user: z.ZodString & z.ZodType<`0x${string}`, string, z.core.$ZodTypeInternals<`0x${string}`, string>>;
@@ -237,7 +235,6 @@ declare const ZodGetBalancesParamsSchema: z.ZodObject<{
237
235
  EUR: "EUR";
238
236
  NGN: "NGN";
239
237
  USD: "USD";
240
- COP: "COP";
241
238
  }>;
242
239
  }, z.core.$strip>;
243
240
  type GetBalancesParams = z.infer<typeof ZodGetBalancesParamsSchema>;
@@ -253,7 +250,6 @@ declare const ZodTxLimitsParamsSchema: z.ZodObject<{
253
250
  EUR: "EUR";
254
251
  NGN: "NGN";
255
252
  USD: "USD";
256
- COP: "COP";
257
253
  }>;
258
254
  }, z.core.$strip>;
259
255
  type TxLimitsParams = z.infer<typeof ZodTxLimitsParamsSchema>;
@@ -268,7 +264,6 @@ declare const ZodPriceConfigParamsSchema: z.ZodObject<{
268
264
  EUR: "EUR";
269
265
  NGN: "NGN";
270
266
  USD: "USD";
271
- COP: "COP";
272
267
  }>;
273
268
  }, z.core.$strip>;
274
269
  type PriceConfigParams = z.infer<typeof ZodPriceConfigParamsSchema>;
package/dist/react.d.ts CHANGED
@@ -26,7 +26,6 @@ declare const ZodCurrencySchema: z.ZodEnum<{
26
26
  EUR: "EUR";
27
27
  NGN: "NGN";
28
28
  USD: "USD";
29
- COP: "COP";
30
29
  }>;
31
30
  type CurrencyType = z.infer<typeof ZodCurrencySchema>;
32
31
 
@@ -190,7 +189,6 @@ declare const ZodPlaceOrderParamsSchema: z.ZodObject<{
190
189
  EUR: "EUR";
191
190
  NGN: "NGN";
192
191
  USD: "USD";
193
- COP: "COP";
194
192
  }>;
195
193
  fiatAmount: z.ZodBigInt;
196
194
  user: z.ZodString & z.ZodType<`0x${string}`, string, z.core.$ZodTypeInternals<`0x${string}`, string>>;
@@ -237,7 +235,6 @@ declare const ZodGetBalancesParamsSchema: z.ZodObject<{
237
235
  EUR: "EUR";
238
236
  NGN: "NGN";
239
237
  USD: "USD";
240
- COP: "COP";
241
238
  }>;
242
239
  }, z.core.$strip>;
243
240
  type GetBalancesParams = z.infer<typeof ZodGetBalancesParamsSchema>;
@@ -253,7 +250,6 @@ declare const ZodTxLimitsParamsSchema: z.ZodObject<{
253
250
  EUR: "EUR";
254
251
  NGN: "NGN";
255
252
  USD: "USD";
256
- COP: "COP";
257
253
  }>;
258
254
  }, z.core.$strip>;
259
255
  type TxLimitsParams = z.infer<typeof ZodTxLimitsParamsSchema>;
@@ -268,7 +264,6 @@ declare const ZodPriceConfigParamsSchema: z.ZodObject<{
268
264
  EUR: "EUR";
269
265
  NGN: "NGN";
270
266
  USD: "USD";
271
- COP: "COP";
272
267
  }>;
273
268
  }, z.core.$strip>;
274
269
  type PriceConfigParams = z.infer<typeof ZodPriceConfigParamsSchema>;
package/dist/react.mjs CHANGED
@@ -106,8 +106,7 @@ var ZodCurrencySchema = z.enum([
106
106
  "VEN",
107
107
  "EUR",
108
108
  "NGN",
109
- "USD",
110
- "COP"
109
+ "USD"
111
110
  ]);
112
111
  function validate(schema, data, toError) {
113
112
  const result = schema.safeParse(data);