payid 0.5.1 → 0.5.2
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/{chunk-4RDYA3QD.js → chunk-5WO2F5HT.js} +1 -1
- package/dist/{chunk-YGCGT2JP.js → chunk-KUWSOJU7.js} +2 -10
- package/dist/{chunk-UBYKCXWR.js → chunk-LHLJP2TB.js} +1 -1
- package/dist/core/client/index.d.ts +1 -1
- package/dist/core/client/index.js +2 -2
- package/dist/core/server/index.js +2 -2
- package/dist/{index-BUTI_SDh.d.ts → index-BzE_au5k.d.ts} +11 -7
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -3
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
evaluate,
|
|
9
9
|
generateDecisionProof,
|
|
10
10
|
resolveRule
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-LHLJP2TB.js";
|
|
12
12
|
import {
|
|
13
13
|
__export
|
|
14
14
|
} from "./chunk-R5U7XKVJ.js";
|
|
@@ -33,16 +33,7 @@ var PayIDClient = class {
|
|
|
33
33
|
}).catch(() => {
|
|
34
34
|
});
|
|
35
35
|
}
|
|
36
|
-
// Preload promise — WASM mulai di-fetch saat createPayID() dipanggil,
|
|
37
|
-
// bukan saat evaluate() pertama. Hasilnya di-cache di wasm.ts.
|
|
38
36
|
_ready;
|
|
39
|
-
/**
|
|
40
|
-
* Tunggu sampai WASM siap. Opsional — evaluate() akan menunggu sendiri,
|
|
41
|
-
* tapi bisa di-await eksplisit untuk warmup:
|
|
42
|
-
*
|
|
43
|
-
* const client = createPayID();
|
|
44
|
-
* await client.ready(); // WASM pasti sudah loaded setelah ini
|
|
45
|
-
*/
|
|
46
37
|
async ready() {
|
|
47
38
|
return this._ready;
|
|
48
39
|
}
|
|
@@ -76,6 +67,7 @@ var PayIDClient = class {
|
|
|
76
67
|
amount: params.amount,
|
|
77
68
|
context: params.context,
|
|
78
69
|
ruleConfig: authorityConfig,
|
|
70
|
+
ruleSetHashOverride: params.ruleSetHashOverride,
|
|
79
71
|
signer: params.signer,
|
|
80
72
|
verifyingContract: params.verifyingContract,
|
|
81
73
|
ruleAuthority: params.ruleAuthority,
|
|
@@ -266,7 +266,7 @@ async function generateDecisionProof(params) {
|
|
|
266
266
|
asset: params.asset,
|
|
267
267
|
amount: params.amount,
|
|
268
268
|
contextHash: hashContext(params.context),
|
|
269
|
-
ruleSetHash: hashRuleSet(params.ruleConfig),
|
|
269
|
+
ruleSetHash: params.ruleSetHashOverride ?? hashRuleSet(params.ruleConfig),
|
|
270
270
|
ruleAuthority: params.ruleAuthority ?? ZeroAddress,
|
|
271
271
|
issuedAt: BigInt(issuedAt),
|
|
272
272
|
expiresAt: BigInt(expiresAt),
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
createPayID
|
|
3
|
-
} from "../../chunk-
|
|
3
|
+
} from "../../chunk-KUWSOJU7.js";
|
|
4
4
|
import "../../chunk-GG34PNTF.js";
|
|
5
5
|
import "../../chunk-MXKZJKXE.js";
|
|
6
6
|
import "../../chunk-6VPSJFO4.js";
|
|
7
|
-
import "../../chunk-
|
|
7
|
+
import "../../chunk-LHLJP2TB.js";
|
|
8
8
|
import "../../chunk-5ZEKI5Y2.js";
|
|
9
9
|
import "../../chunk-R5U7XKVJ.js";
|
|
10
10
|
export {
|
|
@@ -8,13 +8,6 @@ declare class PayIDClient {
|
|
|
8
8
|
private readonly wasm?;
|
|
9
9
|
private readonly _ready;
|
|
10
10
|
constructor(debugTrace?: boolean | undefined, wasm?: Uint8Array | undefined);
|
|
11
|
-
/**
|
|
12
|
-
* Tunggu sampai WASM siap. Opsional — evaluate() akan menunggu sendiri,
|
|
13
|
-
* tapi bisa di-await eksplisit untuk warmup:
|
|
14
|
-
*
|
|
15
|
-
* const client = createPayID();
|
|
16
|
-
* await client.ready(); // WASM pasti sudah loaded setelah ini
|
|
17
|
-
*/
|
|
18
11
|
ready(): Promise<void>;
|
|
19
12
|
evaluate(context: RuleContext, rule: RuleConfig | RuleSource): Promise<RuleResult>;
|
|
20
13
|
evaluateAndProve(params: {
|
|
@@ -30,6 +23,17 @@ declare class PayIDClient {
|
|
|
30
23
|
signer: ethers.Signer;
|
|
31
24
|
verifyingContract: string;
|
|
32
25
|
ruleAuthority: string;
|
|
26
|
+
/**
|
|
27
|
+
* Override ruleSetHash yang dipakai di proof payload.
|
|
28
|
+
*
|
|
29
|
+
* WAJIB diisi kalau on-chain hash di-register dengan format berbeda
|
|
30
|
+
* dari hashRuleSet(authorityRule) — misalnya dari test page CombineTab
|
|
31
|
+
* yang pakai format keccak256("tokenId:ruleHash").
|
|
32
|
+
*
|
|
33
|
+
* Nilai ini harus sama persis dengan activeHash dari
|
|
34
|
+
* CombinedRuleStorage.getActiveRuleOf(receiver).
|
|
35
|
+
*/
|
|
36
|
+
ruleSetHashOverride?: string;
|
|
33
37
|
ttlSeconds?: number;
|
|
34
38
|
chainId: number;
|
|
35
39
|
blockTimestamp: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ export { i as sessionPolicy } from './index-BQQnMG2H.js';
|
|
|
7
7
|
export { i as rule } from './index-Dj9IEios.js';
|
|
8
8
|
export { i as issuer } from './index-2JCvey4-.js';
|
|
9
9
|
export { i as context } from './index-BEvnPzzt.js';
|
|
10
|
-
export { i as client } from './index-
|
|
10
|
+
export { i as client } from './index-BzE_au5k.js';
|
|
11
11
|
import './types-BmMf7udp.js';
|
|
12
12
|
|
|
13
13
|
interface PayIDClient {
|
package/dist/index.js
CHANGED
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
} from "./chunk-Y75PSD7U.js";
|
|
14
14
|
import {
|
|
15
15
|
client_exports
|
|
16
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-KUWSOJU7.js";
|
|
17
17
|
import "./chunk-GG34PNTF.js";
|
|
18
18
|
import "./chunk-MXKZJKXE.js";
|
|
19
19
|
import "./chunk-6VPSJFO4.js";
|
|
@@ -22,12 +22,12 @@ import {
|
|
|
22
22
|
buildPayETHCallData,
|
|
23
23
|
buildUserOperation,
|
|
24
24
|
server_exports
|
|
25
|
-
} from "./chunk-
|
|
25
|
+
} from "./chunk-5WO2F5HT.js";
|
|
26
26
|
import {
|
|
27
27
|
evaluate,
|
|
28
28
|
generateDecisionProof,
|
|
29
29
|
resolveRule
|
|
30
|
-
} from "./chunk-
|
|
30
|
+
} from "./chunk-LHLJP2TB.js";
|
|
31
31
|
import "./chunk-5ZEKI5Y2.js";
|
|
32
32
|
import {
|
|
33
33
|
__export
|