@virtuals-protocol/acp-node 0.3.0-beta.13 → 0.3.0-beta.14
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.mts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +1544 -1391
- package/dist/index.mjs +1548 -1394
- package/package.json +13 -3
package/dist/index.d.mts
CHANGED
|
@@ -288,7 +288,7 @@ declare class AcpJob {
|
|
|
288
288
|
userOpHash: Address;
|
|
289
289
|
txnHash: Address;
|
|
290
290
|
}>;
|
|
291
|
-
deliverPayable(deliverable: DeliverablePayload, amount: FareAmountBase, expiredAt?: Date): Promise<{
|
|
291
|
+
deliverPayable(deliverable: DeliverablePayload, amount: FareAmountBase, skipFee?: boolean, expiredAt?: Date): Promise<{
|
|
292
292
|
userOpHash: Address;
|
|
293
293
|
txnHash: Address;
|
|
294
294
|
}>;
|
|
@@ -297,7 +297,7 @@ declare class AcpJob {
|
|
|
297
297
|
userOpHash: Address;
|
|
298
298
|
txnHash: Address;
|
|
299
299
|
}>;
|
|
300
|
-
createPayableNotification(content: string, amount: FareAmountBase, expiredAt?: Date): Promise<{
|
|
300
|
+
createPayableNotification(content: string, amount: FareAmountBase, skipFee?: boolean, expiredAt?: Date): Promise<{
|
|
301
301
|
userOpHash: Address;
|
|
302
302
|
txnHash: Address;
|
|
303
303
|
}>;
|
|
@@ -581,6 +581,7 @@ declare abstract class BaseAcpContractClient {
|
|
|
581
581
|
jobCreatedSignature: string;
|
|
582
582
|
publicClient: ReturnType<typeof createPublicClient>;
|
|
583
583
|
constructor(agentWalletAddress: Address, config?: AcpContractConfig);
|
|
584
|
+
protected validateSessionKeyOnChain(sessionSignerAddress: Address, sessionEntityKeyId: number): Promise<void>;
|
|
584
585
|
abstract handleOperation(operations: OperationPayload[]): Promise<{
|
|
585
586
|
userOpHash: Address;
|
|
586
587
|
txnHash: Address;
|
package/dist/index.d.ts
CHANGED
|
@@ -288,7 +288,7 @@ declare class AcpJob {
|
|
|
288
288
|
userOpHash: Address;
|
|
289
289
|
txnHash: Address;
|
|
290
290
|
}>;
|
|
291
|
-
deliverPayable(deliverable: DeliverablePayload, amount: FareAmountBase, expiredAt?: Date): Promise<{
|
|
291
|
+
deliverPayable(deliverable: DeliverablePayload, amount: FareAmountBase, skipFee?: boolean, expiredAt?: Date): Promise<{
|
|
292
292
|
userOpHash: Address;
|
|
293
293
|
txnHash: Address;
|
|
294
294
|
}>;
|
|
@@ -297,7 +297,7 @@ declare class AcpJob {
|
|
|
297
297
|
userOpHash: Address;
|
|
298
298
|
txnHash: Address;
|
|
299
299
|
}>;
|
|
300
|
-
createPayableNotification(content: string, amount: FareAmountBase, expiredAt?: Date): Promise<{
|
|
300
|
+
createPayableNotification(content: string, amount: FareAmountBase, skipFee?: boolean, expiredAt?: Date): Promise<{
|
|
301
301
|
userOpHash: Address;
|
|
302
302
|
txnHash: Address;
|
|
303
303
|
}>;
|
|
@@ -581,6 +581,7 @@ declare abstract class BaseAcpContractClient {
|
|
|
581
581
|
jobCreatedSignature: string;
|
|
582
582
|
publicClient: ReturnType<typeof createPublicClient>;
|
|
583
583
|
constructor(agentWalletAddress: Address, config?: AcpContractConfig);
|
|
584
|
+
protected validateSessionKeyOnChain(sessionSignerAddress: Address, sessionEntityKeyId: number): Promise<void>;
|
|
584
585
|
abstract handleOperation(operations: OperationPayload[]): Promise<{
|
|
585
586
|
userOpHash: Address;
|
|
586
587
|
txnHash: Address;
|