@toolproof-core/genesis 1.0.48 → 1.0.49
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/src/index.d.ts +5 -5
- package/package.json +1 -1
- package/src/index.ts +88 -5
package/dist/src/index.d.ts
CHANGED
|
@@ -12,8 +12,8 @@ export * as ZodSchemas from '../generated-src/schemas/zod/index.js';
|
|
|
12
12
|
export { default as ResourceTypes } from '../generated-src/resources/resourceTypes.js';
|
|
13
13
|
export { default as CONSTANTS } from '../generated-src/derived/constants.js';
|
|
14
14
|
export { default as MAPPINGS } from '../generated-src/derived/mappings.js';
|
|
15
|
-
export type
|
|
16
|
-
export type
|
|
17
|
-
export type
|
|
18
|
-
export type
|
|
19
|
-
export type
|
|
15
|
+
export type { ResourceTypeResource, } from '../generated-src/types/standalone/ResourceTypeResource.js';
|
|
16
|
+
export type { ToolResource, } from '../generated-src/types/standalone/ToolResource.js';
|
|
17
|
+
export type { StrategyResource, } from '../generated-src/types/standalone/StrategyResource.js';
|
|
18
|
+
export type { StrategyTraceResource, } from '../generated-src/types/standalone/StrategyTraceResource.js';
|
|
19
|
+
export type { BaseResource, BaseStrategy, BaseToolStepPathSpec, BranchStep, Case, ContainerKind, DeferredStrategyProvenance, Description, DescriptionFacet, DocumentationSpec, ExternalInputPotential, GenesisProvenance, Goal, InputPotential, InputResource, InternalInputPotential, JsonSchemaObject, JsonSchemaObject1, JsonSchemaObject2, Name, NameFacet, Natural, OutputAddress, Provenance, ProvenanceFacet, ProvenanceKind, Resource, ResourceId, ResourcePointer, ResourceType, ResourceTypeHandle, RoleBindingSpec, RoleBindingSpecFacet, RoleBindingSpecFacet1, RoleName, RoleNameArray, RoleSpec, RoleSpecFacet, RoleValue, RoleValueByName, Step, StepArray, StepArrayArray, StepKind, StepKindFacet, Strategy, StrategyHandle, StrategyKind, StrategyProvenance, StrategyStateInputEntry, StrategyStateInputEntryByRoleName, StrategyStateInputKind, StrategyTrace, StrategyTraceHandle, ThreadedStrategy, ThreadedStrategyState, ThreadedStrategyStateFacet, ThreadedToolStepPath, ThreadedToolStepPathSpec, Tool, ToolHandle, ToolKind, ToolStep, ToolStepPath, ToolStepPathSlot, ToolStepPathSlotFacet, TypeRef, UnthreadedStrategy, UnthreadedStrategyState, UnthreadedStrategyStateFacet, UnthreadedToolStepPath, UnthreadedToolStepPathSpec, WhileStep, ForStep, } from '../generated-src/types/types.js';
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -19,9 +19,92 @@ export { default as ResourceTypes } from '../generated-src/resources/resourceTyp
|
|
|
19
19
|
export { default as CONSTANTS } from '../generated-src/derived/constants.js';
|
|
20
20
|
export { default as MAPPINGS } from '../generated-src/derived/mappings.js';
|
|
21
21
|
|
|
22
|
-
export type
|
|
22
|
+
export type {
|
|
23
|
+
ResourceTypeResource,
|
|
24
|
+
} from '../generated-src/types/standalone/ResourceTypeResource.js';
|
|
25
|
+
export type {
|
|
26
|
+
ToolResource,
|
|
27
|
+
} from '../generated-src/types/standalone/ToolResource.js';
|
|
28
|
+
export type {
|
|
29
|
+
StrategyResource,
|
|
30
|
+
} from '../generated-src/types/standalone/StrategyResource.js';
|
|
31
|
+
export type {
|
|
32
|
+
StrategyTraceResource,
|
|
33
|
+
} from '../generated-src/types/standalone/StrategyTraceResource.js';
|
|
23
34
|
|
|
24
|
-
export type
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
35
|
+
export type {
|
|
36
|
+
BaseResource,
|
|
37
|
+
BaseStrategy,
|
|
38
|
+
BaseToolStepPathSpec,
|
|
39
|
+
BranchStep,
|
|
40
|
+
Case,
|
|
41
|
+
ContainerKind,
|
|
42
|
+
DeferredStrategyProvenance,
|
|
43
|
+
Description,
|
|
44
|
+
DescriptionFacet,
|
|
45
|
+
DocumentationSpec,
|
|
46
|
+
ExternalInputPotential,
|
|
47
|
+
GenesisProvenance,
|
|
48
|
+
Goal,
|
|
49
|
+
InputPotential,
|
|
50
|
+
InputResource,
|
|
51
|
+
InternalInputPotential,
|
|
52
|
+
JsonSchemaObject,
|
|
53
|
+
JsonSchemaObject1,
|
|
54
|
+
JsonSchemaObject2,
|
|
55
|
+
Name,
|
|
56
|
+
NameFacet,
|
|
57
|
+
Natural,
|
|
58
|
+
OutputAddress,
|
|
59
|
+
Provenance,
|
|
60
|
+
ProvenanceFacet,
|
|
61
|
+
ProvenanceKind,
|
|
62
|
+
Resource,
|
|
63
|
+
ResourceId,
|
|
64
|
+
ResourcePointer,
|
|
65
|
+
ResourceType,
|
|
66
|
+
ResourceTypeHandle,
|
|
67
|
+
RoleBindingSpec,
|
|
68
|
+
RoleBindingSpecFacet,
|
|
69
|
+
RoleBindingSpecFacet1,
|
|
70
|
+
RoleName,
|
|
71
|
+
RoleNameArray,
|
|
72
|
+
RoleSpec,
|
|
73
|
+
RoleSpecFacet,
|
|
74
|
+
RoleValue,
|
|
75
|
+
RoleValueByName,
|
|
76
|
+
Step,
|
|
77
|
+
StepArray,
|
|
78
|
+
StepArrayArray,
|
|
79
|
+
StepKind,
|
|
80
|
+
StepKindFacet,
|
|
81
|
+
Strategy,
|
|
82
|
+
StrategyHandle,
|
|
83
|
+
StrategyKind,
|
|
84
|
+
StrategyProvenance,
|
|
85
|
+
StrategyStateInputEntry,
|
|
86
|
+
StrategyStateInputEntryByRoleName,
|
|
87
|
+
StrategyStateInputKind,
|
|
88
|
+
StrategyTrace,
|
|
89
|
+
StrategyTraceHandle,
|
|
90
|
+
ThreadedStrategy,
|
|
91
|
+
ThreadedStrategyState,
|
|
92
|
+
ThreadedStrategyStateFacet,
|
|
93
|
+
ThreadedToolStepPath,
|
|
94
|
+
ThreadedToolStepPathSpec,
|
|
95
|
+
Tool,
|
|
96
|
+
ToolHandle,
|
|
97
|
+
ToolKind,
|
|
98
|
+
ToolStep,
|
|
99
|
+
ToolStepPath,
|
|
100
|
+
ToolStepPathSlot,
|
|
101
|
+
ToolStepPathSlotFacet,
|
|
102
|
+
TypeRef,
|
|
103
|
+
UnthreadedStrategy,
|
|
104
|
+
UnthreadedStrategyState,
|
|
105
|
+
UnthreadedStrategyStateFacet,
|
|
106
|
+
UnthreadedToolStepPath,
|
|
107
|
+
UnthreadedToolStepPathSpec,
|
|
108
|
+
WhileStep,
|
|
109
|
+
ForStep,
|
|
110
|
+
} from '../generated-src/types/types.js';
|