@highstate/contract 0.4.3 → 0.4.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.
- package/dist/index.d.ts +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
@@ -218,7 +218,7 @@ declare function defineComponent<TArgs extends Record<string, ComponentArgumentO
|
|
218
218
|
declare function isComponent(value: unknown): value is Component;
|
219
219
|
|
220
220
|
type UnitOptions<TArgs extends Record<string, ComponentArgumentOptions>, TInputs extends Record<string, ComponentInputOptions>, TOutputs extends Record<string, ComponentInputOptions>, TSecrets extends Record<string, ComponentArgumentOptions>> = Omit<ComponentOptions<TArgs, TInputs, TOutputs>, "create"> & {
|
221
|
-
source
|
221
|
+
source?: UnitSource;
|
222
222
|
secrets?: TSecrets;
|
223
223
|
};
|
224
224
|
type UnitSource = {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@highstate/contract",
|
3
|
-
"version": "0.4.
|
3
|
+
"version": "0.4.4",
|
4
4
|
"type": "module",
|
5
5
|
"module": "dist/index.mjs",
|
6
6
|
"types": "dist/index.d.ts",
|
@@ -29,5 +29,5 @@
|
|
29
29
|
"pkgroll": "^2.5.1",
|
30
30
|
"vitest": "^2.1.8"
|
31
31
|
},
|
32
|
-
"gitHead": "
|
32
|
+
"gitHead": "58a1b969cca5dad233f885f2e67185a0384ea1aa"
|
33
33
|
}
|