@taqueria/protocol 0.7.0-rc1 → 0.7.3-rc
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/ScaffoldConfig.ts +6 -0
- package/TaqError.ts +2 -1
- package/package.json +1 -1
- package/taqueria-protocol-0.7.3-rc.tgz +0 -0
- package/taqueria-protocol-types.ts +1 -0
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
|
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';
|