@otim/utils 0.0.4 → 0.0.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/api/index.js +2 -0
- package/dist/api/index.js.map +2 -2
- package/dist/api/index.mjs +2 -0
- package/dist/api/index.mjs.map +2 -2
- package/dist/api/schemas/payments.d.mts +7 -0
- package/dist/api/schemas/payments.d.ts +7 -0
- package/dist/api/schemas/payments.d.ts.map +1 -1
- package/package.json +3 -3
package/dist/api/index.js
CHANGED
|
@@ -1247,6 +1247,7 @@ var buildInstructionResponseSchema = import_zod16.z.object({
|
|
|
1247
1247
|
salt: hexStringSchema,
|
|
1248
1248
|
maxExecutions: hexStringSchema,
|
|
1249
1249
|
action: hexStringSchema,
|
|
1250
|
+
actionName: import_zod16.z.string().optional(),
|
|
1250
1251
|
arguments: hexStringSchema
|
|
1251
1252
|
});
|
|
1252
1253
|
var paymentRequestBuildResponseSchema = import_zod16.z.object({
|
|
@@ -1259,6 +1260,7 @@ var paymentRequestBuildResponseSchema = import_zod16.z.object({
|
|
|
1259
1260
|
});
|
|
1260
1261
|
var newInstructionRequestSchema = import_zod16.z.object({
|
|
1261
1262
|
nickname: import_zod16.z.string().optional(),
|
|
1263
|
+
actionName: import_zod16.z.string().optional(),
|
|
1262
1264
|
address: hexStringSchema,
|
|
1263
1265
|
chainId: import_zod16.z.number(),
|
|
1264
1266
|
salt: hexStringSchema,
|