@taqueria/protocol 0.7.0-rc1 → 0.7.6-rc5

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.
@@ -0,0 +1,6 @@
1
+ // TODO - use zod schema
2
+ export interface ScaffoldType {
3
+ postInit?: string;
4
+ }
5
+
6
+ export type t = ScaffoldType;
package/TaqError.ts CHANGED
@@ -22,7 +22,8 @@ export type ErrorType =
22
22
  | 'E_CONTRACT_REGISTERED'
23
23
  | 'E_CONTRACT_NOT_REGISTERED'
24
24
  | 'E_NO_PROVISIONS'
25
- | 'E_INTERNAL_LOGICAL_VALIDATION_FAILURE';
25
+ | 'E_INTERNAL_LOGICAL_VALIDATION_FAILURE'
26
+ | 'E_EXEC';
26
27
 
27
28
  export interface TaqError {
28
29
  readonly kind: ErrorType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taqueria/protocol",
3
- "version": "0.7.0-rc1",
3
+ "version": "0.7.6-rc5",
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": {
Binary file
Binary file
Binary file
@@ -25,6 +25,7 @@ export * as SandboxConfig from '@taqueria/protocol/SandboxConfig';
25
25
  export * as SanitizedAbsPath from '@taqueria/protocol/SanitizedAbsPath';
26
26
  export * as SanitizedArgs from '@taqueria/protocol/SanitizedArgs';
27
27
  export * as SanitizedPath from '@taqueria/protocol/SanitizedPath';
28
+ export * as ScaffoldConfig from '@taqueria/protocol/ScaffoldConfig';
28
29
  export * as SHA256 from '@taqueria/protocol/SHA256';
29
30
  export * as TaqError from '@taqueria/protocol/TaqError';
30
31
  export * as Task from '@taqueria/protocol/Task';