@filoz/repair-cli 0.0.5 → 0.0.6
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/utils.d.ts +2 -2
- package/package.json +4 -4
package/dist/src/utils.d.ts
CHANGED
|
@@ -8486,7 +8486,7 @@ export declare function getClient(chainId: number): {
|
|
|
8486
8486
|
switchChain: (args: import("viem").SwitchChainParameters) => Promise<void>;
|
|
8487
8487
|
waitForCallsStatus: (parameters: import("viem").WaitForCallsStatusParameters) => Promise<import("viem").WaitForCallsStatusReturnType>;
|
|
8488
8488
|
watchAsset: (args: import("viem").WatchAssetParameters) => Promise<import("viem").WatchAssetReturnType>;
|
|
8489
|
-
writeContract: <const abi extends import("viem").Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi, "
|
|
8489
|
+
writeContract: <const abi extends import("viem").Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi, "nonpayable" | "payable">, args_1 extends import("viem").ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends import("viem").Chain | undefined = undefined>(args: import("viem").WriteContractParameters<abi, functionName, args_1, Chain, {
|
|
8490
8490
|
address: import("viem").Address;
|
|
8491
8491
|
nonceManager?: import("viem").NonceManager | undefined;
|
|
8492
8492
|
sign: (parameters: {
|
|
@@ -8914,7 +8914,7 @@ export declare function getClient(chainId: number): {
|
|
|
8914
8914
|
source: "privateKey";
|
|
8915
8915
|
type: "local";
|
|
8916
8916
|
}, chainOverride>) => Promise<import("viem").WriteContractReturnType>;
|
|
8917
|
-
writeContractSync: <const abi extends import("viem").Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi, "
|
|
8917
|
+
writeContractSync: <const abi extends import("viem").Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi, "nonpayable" | "payable">, args_1 extends import("viem").ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends import("viem").Chain | undefined = undefined>(args: import("viem").WriteContractSyncParameters<abi, functionName, args_1, Chain, {
|
|
8918
8918
|
address: import("viem").Address;
|
|
8919
8919
|
nonceManager?: import("viem").NonceManager | undefined;
|
|
8920
8920
|
sign: (parameters: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@filoz/repair-cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "Early repair for faulty service providers and datasets",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -24,6 +24,9 @@
|
|
|
24
24
|
"main": "dist/src/cli.js",
|
|
25
25
|
"module": "dist/src/cli.js",
|
|
26
26
|
"types": "dist/src/cli.d.ts",
|
|
27
|
+
"bin": {
|
|
28
|
+
"repair-cli": "./dist/src/cli.js"
|
|
29
|
+
},
|
|
27
30
|
"sideEffects": false,
|
|
28
31
|
"exports": {
|
|
29
32
|
".": {
|
|
@@ -127,8 +130,5 @@
|
|
|
127
130
|
"lint": "wireit",
|
|
128
131
|
"lint:fix": "biome check --fix .",
|
|
129
132
|
"update:msw": "pnpx msw init test/mocks/ --save"
|
|
130
|
-
},
|
|
131
|
-
"bin": {
|
|
132
|
-
"repair-cli": "./dist/src/cli.js"
|
|
133
133
|
}
|
|
134
134
|
}
|