@hsuite/smart-engines-sdk 4.0.0 → 4.2.0
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/CHANGELOG.md +15 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js.map +1 -1
- package/dist/nestjs/index.d.ts +5 -0
- package/package.json +1 -1
package/dist/nestjs/index.d.ts
CHANGED
|
@@ -3340,6 +3340,7 @@ export type AgentRegisterRequest = {
|
|
|
3340
3340
|
description?: string;
|
|
3341
3341
|
capabilities: string[];
|
|
3342
3342
|
rules: AgentRules;
|
|
3343
|
+
primaryChain?: string;
|
|
3343
3344
|
fundingConfig?: {
|
|
3344
3345
|
chain: string;
|
|
3345
3346
|
maxAmount: string;
|
|
@@ -12383,6 +12384,8 @@ export type CreateAgentRequest = {
|
|
|
12383
12384
|
agentType?: string;
|
|
12384
12385
|
securityMode?: EntitySecurityMode;
|
|
12385
12386
|
payerAccountId?: string;
|
|
12387
|
+
rulesConfig?: Record<string, unknown>;
|
|
12388
|
+
capabilities?: string[];
|
|
12386
12389
|
fundWith?: FundWith;
|
|
12387
12390
|
};
|
|
12388
12391
|
export type EntityCreationResult = {
|
|
@@ -12390,6 +12393,8 @@ export type EntityCreationResult = {
|
|
|
12390
12393
|
ruleRef: RuleRef;
|
|
12391
12394
|
chainAccounts: Record<string, string>;
|
|
12392
12395
|
transactionId?: string;
|
|
12396
|
+
agentId?: string;
|
|
12397
|
+
status?: string;
|
|
12393
12398
|
};
|
|
12394
12399
|
export type EntityInfo = {
|
|
12395
12400
|
entityId: string;
|