@taqueria/protocol 0.14.0 → 0.14.4

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.
Files changed (2) hide show
  1. package/Environment.ts +4 -0
  2. package/package.json +1 -1
package/Environment.ts CHANGED
@@ -15,6 +15,10 @@ export const rawSchema = z.object({
15
15
  { description: 'Environment storage' },
16
16
  )
17
17
  .optional(),
18
+ aliases: z.record(
19
+ z.any({ description: 'Environment address alias' }),
20
+ { description: 'Environment alias' },
21
+ ).optional(),
18
22
  }).describe('Environment Config');
19
23
 
20
24
  type RawInput = z.infer<typeof rawSchema>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taqueria/protocol",
3
- "version": "0.14.0",
3
+ "version": "0.14.4",
4
4
  "description": "A TypeScript package which contains types that are to be shared between @taqueria/node-sdk and @taqueria/taqueria.",
5
5
  "main": "index.js",
6
6
  "scripts": {