@hashgraphonline/standards-sdk 0.0.15 → 0.0.16
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/es/hcs-10/browser.d.ts +1 -1
- package/dist/es/hcs-10/registration-utils.d.ts +1 -1
- package/dist/es/hcs-10/registrations.d.ts +3 -2
- package/dist/es/hcs-10/sdk.d.ts +1 -1
- package/dist/es/standards-sdk.es.js.map +1 -1
- package/dist/umd/hcs-10/browser.d.ts +1 -1
- package/dist/umd/hcs-10/registration-utils.d.ts +1 -1
- package/dist/umd/hcs-10/registrations.d.ts +3 -2
- package/dist/umd/hcs-10/sdk.d.ts +1 -1
- package/dist/umd/standards-sdk.umd.js +1 -1
- package/dist/umd/standards-sdk.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ import { HashinalsWalletConnectSDK } from '@hashgraphonline/hashinal-wc';
|
|
|
3
3
|
import { Logger, LogLevel } from '../utils/logger';
|
|
4
4
|
import { RetrievedInscriptionResult } from '@kiloscribe/inscription-sdk';
|
|
5
5
|
import { Outbound, HCSMessage } from './outbound';
|
|
6
|
-
import { AgentConfig, NetworkType } from './types';
|
|
6
|
+
import { AgentConfig, NetworkType } from './types.d';
|
|
7
7
|
export type BrowserHCSClientConfig = {
|
|
8
8
|
network: 'mainnet' | 'testnet';
|
|
9
9
|
hwc: HashinalsWalletConnectSDK;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AgentMetadata } from './
|
|
1
|
+
import { AgentMetadata } from './sdk';
|
|
2
2
|
export interface RegistrationSearchOptions {
|
|
3
3
|
tags?: string[];
|
|
4
4
|
accountId?: string;
|
|
@@ -11,7 +11,8 @@ export interface RegistrationSearchResult {
|
|
|
11
11
|
status: 'pending' | 'success' | 'failed';
|
|
12
12
|
network: string;
|
|
13
13
|
account_id: string;
|
|
14
|
-
|
|
14
|
+
inbound_topic_id: string;
|
|
15
|
+
outbound_topic_id: string;
|
|
15
16
|
operator_id: string;
|
|
16
17
|
metadata: AgentMetadata;
|
|
17
18
|
registry_topic_id: string;
|
package/dist/es/hcs-10/sdk.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { Client, PrivateKey, TransactionReceipt, PublicKey } from '@hashgraph/sd
|
|
|
2
2
|
import { RetrievedInscriptionResult } from '@kiloscribe/inscription-sdk';
|
|
3
3
|
import { Logger } from '../utils/logger';
|
|
4
4
|
import { Outbound, HCSMessage } from './outbound';
|
|
5
|
-
import { HCSClientConfig, NetworkType, AgentConfig, CreateAccountResponse, CreateAgentResponse, InscribePfpResponse, StoreHCS11ProfileResponse, AgentRegistrationResult, HandleConnectionRequestResponse, WaitForConnectionConfirmationResponse, GetAccountAndSignerResponse } from './types';
|
|
5
|
+
import { HCSClientConfig, NetworkType, AgentConfig, CreateAccountResponse, CreateAgentResponse, InscribePfpResponse, StoreHCS11ProfileResponse, AgentRegistrationResult, HandleConnectionRequestResponse, WaitForConnectionConfirmationResponse, GetAccountAndSignerResponse } from './types.d';
|
|
6
6
|
export interface AgentMetadata {
|
|
7
7
|
type: 'autonomous' | 'manual';
|
|
8
8
|
model?: string;
|