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.
@@ -2,7 +2,7 @@ import {
2
2
  evaluate,
3
3
  generateDecisionProof,
4
4
  resolveRule
5
- } from "./chunk-UBYKCXWR.js";
5
+ } from "./chunk-LHLJP2TB.js";
6
6
  import {
7
7
  __export
8
8
  } from "./chunk-R5U7XKVJ.js";
@@ -8,7 +8,7 @@ import {
8
8
  evaluate,
9
9
  generateDecisionProof,
10
10
  resolveRule
11
- } from "./chunk-UBYKCXWR.js";
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,4 +1,4 @@
1
- export { c as createPayID } from '../../index-BUTI_SDh.js';
1
+ export { c as createPayID } from '../../index-BzE_au5k.js';
2
2
  import 'payid-types';
3
3
  import 'ethers';
4
4
  import '../../types-B8pJQdMQ.js';
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  createPayID
3
- } from "../../chunk-YGCGT2JP.js";
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-UBYKCXWR.js";
7
+ import "../../chunk-LHLJP2TB.js";
8
8
  import "../../chunk-5ZEKI5Y2.js";
9
9
  import "../../chunk-R5U7XKVJ.js";
10
10
  export {
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  createPayID
3
- } from "../../chunk-4RDYA3QD.js";
4
- import "../../chunk-UBYKCXWR.js";
3
+ } from "../../chunk-5WO2F5HT.js";
4
+ import "../../chunk-LHLJP2TB.js";
5
5
  import "../../chunk-5ZEKI5Y2.js";
6
6
  import "../../chunk-R5U7XKVJ.js";
7
7
  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-BUTI_SDh.js';
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-YGCGT2JP.js";
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-4RDYA3QD.js";
25
+ } from "./chunk-5WO2F5HT.js";
26
26
  import {
27
27
  evaluate,
28
28
  generateDecisionProof,
29
29
  resolveRule
30
- } from "./chunk-UBYKCXWR.js";
30
+ } from "./chunk-LHLJP2TB.js";
31
31
  import "./chunk-5ZEKI5Y2.js";
32
32
  import {
33
33
  __export
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "payid",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",