@ghostspeak/sdk 1.6.1 → 1.6.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/.tsbuildinfo +1 -1
- package/dist/index.d.ts +257 -97
- package/dist/index.js +154 -38
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ import * as _solana_addresses from '@solana/addresses';
|
|
|
2
2
|
import { Address as Address$1 } from '@solana/addresses';
|
|
3
3
|
import * as _solana_kit from '@solana/kit';
|
|
4
4
|
import { ReadonlyUint8Array, Address, Encoder, Decoder, Codec, EncodedAccount, Account, MaybeEncodedAccount, MaybeAccount, fetchEncodedAccount, FetchAccountConfig, fetchEncodedAccounts, FetchAccountsConfig, Option, OptionOrNullable, GetDiscriminatedUnionVariant, GetDiscriminatedUnionVariantContent, SolanaError, SOLANA_ERROR__INSTRUCTION_ERROR__CUSTOM, IAccountMeta, IInstruction, IInstructionWithData, IInstructionWithAccounts, WritableAccount, WritableSignerAccount, IAccountSignerMeta, ReadonlyAccount, TransactionSigner, ReadonlySignerAccount, Rpc, GetLatestBlockhashApi, SendTransactionApi, GetAccountInfoApi, SimulateTransactionApi, GetFeeForMessageApi, GetProgramAccountsApi, GetEpochInfoApi, GetSignatureStatusesApi, GetMultipleAccountsApi, RpcSubscriptions, SignatureNotificationsApi, SlotNotificationsApi, Signature, Slot, Lamports, Epoch, TransactionMessage } from '@solana/kit';
|
|
5
|
-
import * as _solana_transactions from '@solana/transactions';
|
|
6
5
|
|
|
7
6
|
/**
|
|
8
7
|
* This code was AUTOGENERATED using the codama library.
|
|
@@ -14,7 +13,7 @@ import * as _solana_transactions from '@solana/transactions';
|
|
|
14
13
|
|
|
15
14
|
declare const A2_A_MESSAGE_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
16
15
|
declare function getA2AMessageDiscriminatorBytes(): ReadonlyUint8Array;
|
|
17
|
-
interface A2AMessage {
|
|
16
|
+
interface A2AMessage$1 {
|
|
18
17
|
discriminator: ReadonlyUint8Array;
|
|
19
18
|
messageId: bigint;
|
|
20
19
|
session: Address;
|
|
@@ -34,14 +33,14 @@ interface A2AMessageArgs {
|
|
|
34
33
|
bump: number;
|
|
35
34
|
}
|
|
36
35
|
declare function getA2AMessageEncoder(): Encoder<A2AMessageArgs>;
|
|
37
|
-
declare function getA2AMessageDecoder(): Decoder<A2AMessage>;
|
|
38
|
-
declare function getA2AMessageCodec(): Codec<A2AMessageArgs, A2AMessage>;
|
|
39
|
-
declare function decodeA2AMessage<TAddress extends string = string>(encodedAccount: EncodedAccount<TAddress>): Account<A2AMessage, TAddress>;
|
|
40
|
-
declare function decodeA2AMessage<TAddress extends string = string>(encodedAccount: MaybeEncodedAccount<TAddress>): MaybeAccount<A2AMessage, TAddress>;
|
|
41
|
-
declare function fetchA2AMessage<TAddress extends string = string>(rpc: Parameters<typeof fetchEncodedAccount>[0], address: Address<TAddress>, config?: FetchAccountConfig): Promise<Account<A2AMessage, TAddress>>;
|
|
42
|
-
declare function fetchMaybeA2AMessage<TAddress extends string = string>(rpc: Parameters<typeof fetchEncodedAccount>[0], address: Address<TAddress>, config?: FetchAccountConfig): Promise<MaybeAccount<A2AMessage, TAddress>>;
|
|
43
|
-
declare function fetchAllA2AMessage(rpc: Parameters<typeof fetchEncodedAccounts>[0], addresses: Address[], config?: FetchAccountsConfig): Promise<Account<A2AMessage>[]>;
|
|
44
|
-
declare function fetchAllMaybeA2AMessage(rpc: Parameters<typeof fetchEncodedAccounts>[0], addresses: Address[], config?: FetchAccountsConfig): Promise<MaybeAccount<A2AMessage>[]>;
|
|
36
|
+
declare function getA2AMessageDecoder(): Decoder<A2AMessage$1>;
|
|
37
|
+
declare function getA2AMessageCodec(): Codec<A2AMessageArgs, A2AMessage$1>;
|
|
38
|
+
declare function decodeA2AMessage<TAddress extends string = string>(encodedAccount: EncodedAccount<TAddress>): Account<A2AMessage$1, TAddress>;
|
|
39
|
+
declare function decodeA2AMessage<TAddress extends string = string>(encodedAccount: MaybeEncodedAccount<TAddress>): MaybeAccount<A2AMessage$1, TAddress>;
|
|
40
|
+
declare function fetchA2AMessage<TAddress extends string = string>(rpc: Parameters<typeof fetchEncodedAccount>[0], address: Address<TAddress>, config?: FetchAccountConfig): Promise<Account<A2AMessage$1, TAddress>>;
|
|
41
|
+
declare function fetchMaybeA2AMessage<TAddress extends string = string>(rpc: Parameters<typeof fetchEncodedAccount>[0], address: Address<TAddress>, config?: FetchAccountConfig): Promise<MaybeAccount<A2AMessage$1, TAddress>>;
|
|
42
|
+
declare function fetchAllA2AMessage(rpc: Parameters<typeof fetchEncodedAccounts>[0], addresses: Address[], config?: FetchAccountsConfig): Promise<Account<A2AMessage$1>[]>;
|
|
43
|
+
declare function fetchAllMaybeA2AMessage(rpc: Parameters<typeof fetchEncodedAccounts>[0], addresses: Address[], config?: FetchAccountsConfig): Promise<MaybeAccount<A2AMessage$1>[]>;
|
|
45
44
|
|
|
46
45
|
/**
|
|
47
46
|
* This code was AUTOGENERATED using the codama library.
|
|
@@ -53,7 +52,7 @@ declare function fetchAllMaybeA2AMessage(rpc: Parameters<typeof fetchEncodedAcco
|
|
|
53
52
|
|
|
54
53
|
declare const A2_A_SESSION_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
55
54
|
declare function getA2ASessionDiscriminatorBytes(): ReadonlyUint8Array;
|
|
56
|
-
interface A2ASession {
|
|
55
|
+
interface A2ASession$1 {
|
|
57
56
|
discriminator: ReadonlyUint8Array;
|
|
58
57
|
sessionId: bigint;
|
|
59
58
|
initiator: Address;
|
|
@@ -77,14 +76,14 @@ interface A2ASessionArgs {
|
|
|
77
76
|
bump: number;
|
|
78
77
|
}
|
|
79
78
|
declare function getA2ASessionEncoder(): Encoder<A2ASessionArgs>;
|
|
80
|
-
declare function getA2ASessionDecoder(): Decoder<A2ASession>;
|
|
81
|
-
declare function getA2ASessionCodec(): Codec<A2ASessionArgs, A2ASession>;
|
|
82
|
-
declare function decodeA2ASession<TAddress extends string = string>(encodedAccount: EncodedAccount<TAddress>): Account<A2ASession, TAddress>;
|
|
83
|
-
declare function decodeA2ASession<TAddress extends string = string>(encodedAccount: MaybeEncodedAccount<TAddress>): MaybeAccount<A2ASession, TAddress>;
|
|
84
|
-
declare function fetchA2ASession<TAddress extends string = string>(rpc: Parameters<typeof fetchEncodedAccount>[0], address: Address<TAddress>, config?: FetchAccountConfig): Promise<Account<A2ASession, TAddress>>;
|
|
85
|
-
declare function fetchMaybeA2ASession<TAddress extends string = string>(rpc: Parameters<typeof fetchEncodedAccount>[0], address: Address<TAddress>, config?: FetchAccountConfig): Promise<MaybeAccount<A2ASession, TAddress>>;
|
|
86
|
-
declare function fetchAllA2ASession(rpc: Parameters<typeof fetchEncodedAccounts>[0], addresses: Address[], config?: FetchAccountsConfig): Promise<Account<A2ASession>[]>;
|
|
87
|
-
declare function fetchAllMaybeA2ASession(rpc: Parameters<typeof fetchEncodedAccounts>[0], addresses: Address[], config?: FetchAccountsConfig): Promise<MaybeAccount<A2ASession>[]>;
|
|
79
|
+
declare function getA2ASessionDecoder(): Decoder<A2ASession$1>;
|
|
80
|
+
declare function getA2ASessionCodec(): Codec<A2ASessionArgs, A2ASession$1>;
|
|
81
|
+
declare function decodeA2ASession<TAddress extends string = string>(encodedAccount: EncodedAccount<TAddress>): Account<A2ASession$1, TAddress>;
|
|
82
|
+
declare function decodeA2ASession<TAddress extends string = string>(encodedAccount: MaybeEncodedAccount<TAddress>): MaybeAccount<A2ASession$1, TAddress>;
|
|
83
|
+
declare function fetchA2ASession<TAddress extends string = string>(rpc: Parameters<typeof fetchEncodedAccount>[0], address: Address<TAddress>, config?: FetchAccountConfig): Promise<Account<A2ASession$1, TAddress>>;
|
|
84
|
+
declare function fetchMaybeA2ASession<TAddress extends string = string>(rpc: Parameters<typeof fetchEncodedAccount>[0], address: Address<TAddress>, config?: FetchAccountConfig): Promise<MaybeAccount<A2ASession$1, TAddress>>;
|
|
85
|
+
declare function fetchAllA2ASession(rpc: Parameters<typeof fetchEncodedAccounts>[0], addresses: Address[], config?: FetchAccountsConfig): Promise<Account<A2ASession$1>[]>;
|
|
86
|
+
declare function fetchAllMaybeA2ASession(rpc: Parameters<typeof fetchEncodedAccounts>[0], addresses: Address[], config?: FetchAccountsConfig): Promise<MaybeAccount<A2ASession$1>[]>;
|
|
88
87
|
|
|
89
88
|
/**
|
|
90
89
|
* This code was AUTOGENERATED using the codama library.
|
|
@@ -1898,7 +1897,7 @@ declare function getDeliverableCodec(): Codec<DeliverableArgs, Deliverable>;
|
|
|
1898
1897
|
* @see https://github.com/codama-idl/codama
|
|
1899
1898
|
*/
|
|
1900
1899
|
|
|
1901
|
-
interface DisputeEvidence {
|
|
1900
|
+
interface DisputeEvidence$1 {
|
|
1902
1901
|
submitter: Address;
|
|
1903
1902
|
evidenceType: string;
|
|
1904
1903
|
evidenceData: string;
|
|
@@ -1913,8 +1912,8 @@ interface DisputeEvidenceArgs {
|
|
|
1913
1912
|
isVerified: boolean;
|
|
1914
1913
|
}
|
|
1915
1914
|
declare function getDisputeEvidenceEncoder(): Encoder<DisputeEvidenceArgs>;
|
|
1916
|
-
declare function getDisputeEvidenceDecoder(): Decoder<DisputeEvidence>;
|
|
1917
|
-
declare function getDisputeEvidenceCodec(): Codec<DisputeEvidenceArgs, DisputeEvidence>;
|
|
1915
|
+
declare function getDisputeEvidenceDecoder(): Decoder<DisputeEvidence$1>;
|
|
1916
|
+
declare function getDisputeEvidenceCodec(): Codec<DisputeEvidenceArgs, DisputeEvidence$1>;
|
|
1918
1917
|
|
|
1919
1918
|
/**
|
|
1920
1919
|
* This code was AUTOGENERATED using the codama library.
|
|
@@ -3544,7 +3543,7 @@ declare function getPricingAlgorithmCodec(): Codec<PricingAlgorithmArgs, Pricing
|
|
|
3544
3543
|
* @see https://github.com/codama-idl/codama
|
|
3545
3544
|
*/
|
|
3546
3545
|
|
|
3547
|
-
declare enum PricingModel {
|
|
3546
|
+
declare enum PricingModel$1 {
|
|
3548
3547
|
Fixed = 0,
|
|
3549
3548
|
Hourly = 1,
|
|
3550
3549
|
PerTask = 2,
|
|
@@ -3554,10 +3553,10 @@ declare enum PricingModel {
|
|
|
3554
3553
|
RevenueShare = 6,
|
|
3555
3554
|
Tiered = 7
|
|
3556
3555
|
}
|
|
3557
|
-
type PricingModelArgs = PricingModel;
|
|
3556
|
+
type PricingModelArgs = PricingModel$1;
|
|
3558
3557
|
declare function getPricingModelEncoder(): Encoder<PricingModelArgs>;
|
|
3559
|
-
declare function getPricingModelDecoder(): Decoder<PricingModel>;
|
|
3560
|
-
declare function getPricingModelCodec(): Codec<PricingModelArgs, PricingModel>;
|
|
3558
|
+
declare function getPricingModelDecoder(): Decoder<PricingModel$1>;
|
|
3559
|
+
declare function getPricingModelCodec(): Codec<PricingModelArgs, PricingModel$1>;
|
|
3561
3560
|
|
|
3562
3561
|
/**
|
|
3563
3562
|
* This code was AUTOGENERATED using the codama library.
|
|
@@ -5784,7 +5783,7 @@ interface Agent {
|
|
|
5784
5783
|
name: string;
|
|
5785
5784
|
description: string;
|
|
5786
5785
|
capabilities: string[];
|
|
5787
|
-
pricingModel: PricingModel;
|
|
5786
|
+
pricingModel: PricingModel$1;
|
|
5788
5787
|
reputationScore: number;
|
|
5789
5788
|
totalJobsCompleted: number;
|
|
5790
5789
|
totalEarnings: bigint;
|
|
@@ -6351,7 +6350,7 @@ interface DisputeCase {
|
|
|
6351
6350
|
moderator: Option<Address>;
|
|
6352
6351
|
reason: string;
|
|
6353
6352
|
status: DisputeStatus;
|
|
6354
|
-
evidence: DisputeEvidence[];
|
|
6353
|
+
evidence: DisputeEvidence$1[];
|
|
6355
6354
|
resolution: Option<string>;
|
|
6356
6355
|
aiScore: number;
|
|
6357
6356
|
humanReview: boolean;
|
|
@@ -6702,7 +6701,7 @@ declare function getJobContractSize(): number;
|
|
|
6702
6701
|
|
|
6703
6702
|
declare const JOB_POSTING_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
6704
6703
|
declare function getJobPostingDiscriminatorBytes(): ReadonlyUint8Array;
|
|
6705
|
-
interface JobPosting {
|
|
6704
|
+
interface JobPosting$1 {
|
|
6706
6705
|
discriminator: ReadonlyUint8Array;
|
|
6707
6706
|
employer: Address;
|
|
6708
6707
|
title: string;
|
|
@@ -6742,14 +6741,14 @@ interface JobPostingArgs {
|
|
|
6742
6741
|
bump: number;
|
|
6743
6742
|
}
|
|
6744
6743
|
declare function getJobPostingEncoder(): Encoder<JobPostingArgs>;
|
|
6745
|
-
declare function getJobPostingDecoder(): Decoder<JobPosting>;
|
|
6746
|
-
declare function getJobPostingCodec(): Codec<JobPostingArgs, JobPosting>;
|
|
6747
|
-
declare function decodeJobPosting<TAddress extends string = string>(encodedAccount: EncodedAccount<TAddress>): Account<JobPosting, TAddress>;
|
|
6748
|
-
declare function decodeJobPosting<TAddress extends string = string>(encodedAccount: MaybeEncodedAccount<TAddress>): MaybeAccount<JobPosting, TAddress>;
|
|
6749
|
-
declare function fetchJobPosting<TAddress extends string = string>(rpc: Parameters<typeof fetchEncodedAccount>[0], address: Address<TAddress>, config?: FetchAccountConfig): Promise<Account<JobPosting, TAddress>>;
|
|
6750
|
-
declare function fetchMaybeJobPosting<TAddress extends string = string>(rpc: Parameters<typeof fetchEncodedAccount>[0], address: Address<TAddress>, config?: FetchAccountConfig): Promise<MaybeAccount<JobPosting, TAddress>>;
|
|
6751
|
-
declare function fetchAllJobPosting(rpc: Parameters<typeof fetchEncodedAccounts>[0], addresses: Address[], config?: FetchAccountsConfig): Promise<Account<JobPosting>[]>;
|
|
6752
|
-
declare function fetchAllMaybeJobPosting(rpc: Parameters<typeof fetchEncodedAccounts>[0], addresses: Address[], config?: FetchAccountsConfig): Promise<MaybeAccount<JobPosting>[]>;
|
|
6744
|
+
declare function getJobPostingDecoder(): Decoder<JobPosting$1>;
|
|
6745
|
+
declare function getJobPostingCodec(): Codec<JobPostingArgs, JobPosting$1>;
|
|
6746
|
+
declare function decodeJobPosting<TAddress extends string = string>(encodedAccount: EncodedAccount<TAddress>): Account<JobPosting$1, TAddress>;
|
|
6747
|
+
declare function decodeJobPosting<TAddress extends string = string>(encodedAccount: MaybeEncodedAccount<TAddress>): MaybeAccount<JobPosting$1, TAddress>;
|
|
6748
|
+
declare function fetchJobPosting<TAddress extends string = string>(rpc: Parameters<typeof fetchEncodedAccount>[0], address: Address<TAddress>, config?: FetchAccountConfig): Promise<Account<JobPosting$1, TAddress>>;
|
|
6749
|
+
declare function fetchMaybeJobPosting<TAddress extends string = string>(rpc: Parameters<typeof fetchEncodedAccount>[0], address: Address<TAddress>, config?: FetchAccountConfig): Promise<MaybeAccount<JobPosting$1, TAddress>>;
|
|
6750
|
+
declare function fetchAllJobPosting(rpc: Parameters<typeof fetchEncodedAccounts>[0], addresses: Address[], config?: FetchAccountsConfig): Promise<Account<JobPosting$1>[]>;
|
|
6751
|
+
declare function fetchAllMaybeJobPosting(rpc: Parameters<typeof fetchEncodedAccounts>[0], addresses: Address[], config?: FetchAccountsConfig): Promise<MaybeAccount<JobPosting$1>[]>;
|
|
6753
6752
|
|
|
6754
6753
|
/**
|
|
6755
6754
|
* This code was AUTOGENERATED using the codama library.
|
|
@@ -11268,7 +11267,7 @@ interface ReplicateAgentInstructionData {
|
|
|
11268
11267
|
name: string;
|
|
11269
11268
|
description: Option<string>;
|
|
11270
11269
|
additionalCapabilities: string[];
|
|
11271
|
-
pricingModel: PricingModel;
|
|
11270
|
+
pricingModel: PricingModel$1;
|
|
11272
11271
|
isReplicable: boolean;
|
|
11273
11272
|
replicationFee: Option<bigint>;
|
|
11274
11273
|
}
|
|
@@ -12288,6 +12287,188 @@ interface ServiceListingWithAddress {
|
|
|
12288
12287
|
address: Address$1;
|
|
12289
12288
|
data: ServiceListing;
|
|
12290
12289
|
}
|
|
12290
|
+
interface AgentRegistrationData {
|
|
12291
|
+
name: string;
|
|
12292
|
+
description: string;
|
|
12293
|
+
capabilities: string[];
|
|
12294
|
+
metadataUri: string;
|
|
12295
|
+
serviceEndpoint: string;
|
|
12296
|
+
}
|
|
12297
|
+
interface AgentAccount {
|
|
12298
|
+
owner: Address$1;
|
|
12299
|
+
name: string;
|
|
12300
|
+
description: string;
|
|
12301
|
+
capabilities: string[];
|
|
12302
|
+
metadataUri: string;
|
|
12303
|
+
serviceEndpoint: string;
|
|
12304
|
+
isActive: boolean;
|
|
12305
|
+
registeredAt: bigint;
|
|
12306
|
+
reputation: number;
|
|
12307
|
+
totalEarnings: bigint;
|
|
12308
|
+
totalJobs: number;
|
|
12309
|
+
successRate: number;
|
|
12310
|
+
bump: number;
|
|
12311
|
+
}
|
|
12312
|
+
interface ServiceListingData {
|
|
12313
|
+
id: string;
|
|
12314
|
+
agent: Address$1;
|
|
12315
|
+
title: string;
|
|
12316
|
+
description: string;
|
|
12317
|
+
price: bigint;
|
|
12318
|
+
currency: Address$1;
|
|
12319
|
+
category: string;
|
|
12320
|
+
isActive: boolean;
|
|
12321
|
+
createdAt: bigint;
|
|
12322
|
+
}
|
|
12323
|
+
interface JobPosting {
|
|
12324
|
+
id: string;
|
|
12325
|
+
poster: Address$1;
|
|
12326
|
+
title: string;
|
|
12327
|
+
description: string;
|
|
12328
|
+
budget: bigint;
|
|
12329
|
+
currency: Address$1;
|
|
12330
|
+
deadline: bigint;
|
|
12331
|
+
requirements: string[];
|
|
12332
|
+
isActive: boolean;
|
|
12333
|
+
createdAt: bigint;
|
|
12334
|
+
}
|
|
12335
|
+
interface EscrowAccount {
|
|
12336
|
+
buyer: Address$1;
|
|
12337
|
+
seller: Address$1;
|
|
12338
|
+
agent: Address$1;
|
|
12339
|
+
amount: bigint;
|
|
12340
|
+
currency: Address$1;
|
|
12341
|
+
status: EscrowStatus;
|
|
12342
|
+
createdAt: bigint;
|
|
12343
|
+
completedAt?: bigint;
|
|
12344
|
+
}
|
|
12345
|
+
declare enum EscrowStatus {
|
|
12346
|
+
Active = "Active",
|
|
12347
|
+
Completed = "Completed",
|
|
12348
|
+
Disputed = "Disputed",
|
|
12349
|
+
Cancelled = "Cancelled"
|
|
12350
|
+
}
|
|
12351
|
+
interface A2ASession {
|
|
12352
|
+
sessionId: bigint;
|
|
12353
|
+
initiator: Address$1;
|
|
12354
|
+
responder: Address$1;
|
|
12355
|
+
sessionType: string;
|
|
12356
|
+
metadata: string;
|
|
12357
|
+
isActive: boolean;
|
|
12358
|
+
createdAt: bigint;
|
|
12359
|
+
expiresAt: bigint;
|
|
12360
|
+
}
|
|
12361
|
+
interface A2AMessage {
|
|
12362
|
+
messageId: bigint;
|
|
12363
|
+
session: Address$1;
|
|
12364
|
+
sender: Address$1;
|
|
12365
|
+
content: string;
|
|
12366
|
+
messageType: string;
|
|
12367
|
+
sentAt: bigint;
|
|
12368
|
+
}
|
|
12369
|
+
declare enum PricingModel {
|
|
12370
|
+
Fixed = "Fixed",
|
|
12371
|
+
Hourly = "Hourly",
|
|
12372
|
+
PerTask = "PerTask",
|
|
12373
|
+
Subscription = "Subscription",
|
|
12374
|
+
Auction = "Auction"
|
|
12375
|
+
}
|
|
12376
|
+
declare class GhostSpeakError extends Error {
|
|
12377
|
+
code?: string | undefined;
|
|
12378
|
+
constructor(message: string, code?: string | undefined);
|
|
12379
|
+
}
|
|
12380
|
+
interface RegisterAgentParams {
|
|
12381
|
+
agentData: AgentRegistrationData;
|
|
12382
|
+
}
|
|
12383
|
+
interface CreateServiceListingParams$1 {
|
|
12384
|
+
title: string;
|
|
12385
|
+
description: string;
|
|
12386
|
+
price: bigint;
|
|
12387
|
+
currency: Address$1;
|
|
12388
|
+
category: string;
|
|
12389
|
+
}
|
|
12390
|
+
interface CreateJobPostingParams$1 {
|
|
12391
|
+
title: string;
|
|
12392
|
+
description: string;
|
|
12393
|
+
budget: bigint;
|
|
12394
|
+
currency: Address$1;
|
|
12395
|
+
deadline: bigint;
|
|
12396
|
+
requirements: string[];
|
|
12397
|
+
}
|
|
12398
|
+
interface CreateEscrowParams$1 {
|
|
12399
|
+
seller: Address$1;
|
|
12400
|
+
agent: Address$1;
|
|
12401
|
+
amount: bigint;
|
|
12402
|
+
currency: Address$1;
|
|
12403
|
+
}
|
|
12404
|
+
interface CreateA2ASessionParams$1 {
|
|
12405
|
+
responder: Address$1;
|
|
12406
|
+
sessionType: string;
|
|
12407
|
+
metadata: string;
|
|
12408
|
+
expiresAt: bigint;
|
|
12409
|
+
}
|
|
12410
|
+
interface SendA2AMessageParams$1 {
|
|
12411
|
+
session: Address$1;
|
|
12412
|
+
content: string;
|
|
12413
|
+
messageType: string;
|
|
12414
|
+
}
|
|
12415
|
+
interface RpcResponse<T> {
|
|
12416
|
+
value: T | null;
|
|
12417
|
+
}
|
|
12418
|
+
interface RpcAccountInfo {
|
|
12419
|
+
executable: boolean;
|
|
12420
|
+
lamports: bigint;
|
|
12421
|
+
owner: Address$1;
|
|
12422
|
+
rentEpoch: bigint;
|
|
12423
|
+
space: bigint;
|
|
12424
|
+
data: string | Uint8Array;
|
|
12425
|
+
}
|
|
12426
|
+
interface RpcProgramAccount {
|
|
12427
|
+
pubkey: Address$1;
|
|
12428
|
+
account: RpcAccountInfo;
|
|
12429
|
+
}
|
|
12430
|
+
interface RpcProgramAccountsResponse {
|
|
12431
|
+
value: RpcProgramAccount[] | null;
|
|
12432
|
+
}
|
|
12433
|
+
interface RpcAccountInfoResponse {
|
|
12434
|
+
value: RpcAccountInfo | null;
|
|
12435
|
+
}
|
|
12436
|
+
interface RpcMultipleAccountsResponse {
|
|
12437
|
+
value: (RpcAccountInfo | null)[];
|
|
12438
|
+
}
|
|
12439
|
+
interface TransactionResponse {
|
|
12440
|
+
signature: string;
|
|
12441
|
+
confirmationStatus?: Commitment$1;
|
|
12442
|
+
err?: unknown | null;
|
|
12443
|
+
}
|
|
12444
|
+
interface SimulatedTransactionResponse {
|
|
12445
|
+
value: {
|
|
12446
|
+
err?: unknown | null;
|
|
12447
|
+
logs?: string[];
|
|
12448
|
+
unitsConsumed?: number;
|
|
12449
|
+
};
|
|
12450
|
+
}
|
|
12451
|
+
interface SolanaRpcClient {
|
|
12452
|
+
getAccountInfo(address: Address$1, options?: {
|
|
12453
|
+
commitment?: Commitment$1;
|
|
12454
|
+
encoding?: string;
|
|
12455
|
+
}): Promise<RpcAccountInfoResponse>;
|
|
12456
|
+
getMultipleAccounts(addresses: Address$1[], options?: {
|
|
12457
|
+
commitment?: Commitment$1;
|
|
12458
|
+
encoding?: string;
|
|
12459
|
+
}): Promise<RpcMultipleAccountsResponse>;
|
|
12460
|
+
getProgramAccounts(programId: Address$1, options?: {
|
|
12461
|
+
commitment?: Commitment$1;
|
|
12462
|
+
encoding?: string;
|
|
12463
|
+
filters?: unknown[];
|
|
12464
|
+
}): Promise<RpcProgramAccountsResponse>;
|
|
12465
|
+
sendTransaction(transaction: unknown, options?: {
|
|
12466
|
+
commitment?: Commitment$1;
|
|
12467
|
+
}): Promise<TransactionResponse>;
|
|
12468
|
+
simulateTransaction(transaction: unknown, options?: {
|
|
12469
|
+
commitment?: Commitment$1;
|
|
12470
|
+
}): Promise<SimulatedTransactionResponse>;
|
|
12471
|
+
}
|
|
12291
12472
|
interface EmergencyConfig {
|
|
12292
12473
|
emergencyDelay?: bigint;
|
|
12293
12474
|
emergencyThreshold?: number;
|
|
@@ -12375,6 +12556,7 @@ declare class SimpleRpcClient {
|
|
|
12375
12556
|
private rpc;
|
|
12376
12557
|
private rpcSubscriptions?;
|
|
12377
12558
|
private commitment;
|
|
12559
|
+
private endpoint;
|
|
12378
12560
|
constructor(config: SimpleRpcClientConfig);
|
|
12379
12561
|
/**
|
|
12380
12562
|
* Get account information
|
|
@@ -12401,7 +12583,7 @@ declare class SimpleRpcClient {
|
|
|
12401
12583
|
/**
|
|
12402
12584
|
* Get signature statuses
|
|
12403
12585
|
*/
|
|
12404
|
-
getSignatureStatuses(signatures:
|
|
12586
|
+
getSignatureStatuses(signatures: Signature[]): Promise<readonly (Readonly<{
|
|
12405
12587
|
confirmationStatus: _solana_kit.Commitment | null;
|
|
12406
12588
|
confirmations: bigint | null;
|
|
12407
12589
|
err: _solana_kit.TransactionError | null;
|
|
@@ -12423,6 +12605,8 @@ declare class SimpleRpcClient {
|
|
|
12423
12605
|
slot: _solana_kit.Slot;
|
|
12424
12606
|
}>;
|
|
12425
12607
|
value: Readonly<{
|
|
12608
|
+
readonly accounts: null;
|
|
12609
|
+
}> & Readonly<{
|
|
12426
12610
|
err: _solana_kit.TransactionError | null;
|
|
12427
12611
|
logs: string[] | null;
|
|
12428
12612
|
returnData: Readonly<{
|
|
@@ -12430,59 +12614,14 @@ declare class SimpleRpcClient {
|
|
|
12430
12614
|
programId: Address$1;
|
|
12431
12615
|
}> | null;
|
|
12432
12616
|
unitsConsumed?: bigint;
|
|
12433
|
-
}
|
|
12434
|
-
accounts: ((Readonly<{
|
|
12435
|
-
executable: boolean;
|
|
12436
|
-
lamports: _solana_kit.Lamports;
|
|
12437
|
-
owner: Address$1;
|
|
12438
|
-
rentEpoch: bigint;
|
|
12439
|
-
space: bigint;
|
|
12440
|
-
}> & Readonly<{
|
|
12441
|
-
data: _solana_kit.Base64EncodedDataResponse;
|
|
12442
|
-
}>) | null)[];
|
|
12443
|
-
}> & ((Readonly<Readonly<{
|
|
12444
|
-
innerInstructions: readonly Readonly<{
|
|
12445
|
-
index: number;
|
|
12446
|
-
instructions: readonly ((Partial<Readonly<{
|
|
12447
|
-
stackHeight: number;
|
|
12448
|
-
}>> & Readonly<{
|
|
12449
|
-
parsed: {
|
|
12450
|
-
info?: object;
|
|
12451
|
-
type: string;
|
|
12452
|
-
};
|
|
12453
|
-
program: string;
|
|
12454
|
-
programId: Address$1;
|
|
12455
|
-
}>) | (Readonly<{
|
|
12456
|
-
data: _solana_kit.Base58EncodedBytes;
|
|
12457
|
-
}> & Partial<Readonly<{
|
|
12458
|
-
stackHeight: number;
|
|
12459
|
-
}>> & Readonly<{
|
|
12460
|
-
accounts: readonly Address$1[];
|
|
12461
|
-
programId: Address$1;
|
|
12462
|
-
}>))[];
|
|
12463
|
-
}>[];
|
|
12464
|
-
}>> | Readonly<Readonly<{
|
|
12465
|
-
innerInstructions: readonly Readonly<{
|
|
12466
|
-
index: number;
|
|
12467
|
-
instructions: readonly (Readonly<{
|
|
12468
|
-
data: _solana_kit.Base58EncodedBytes;
|
|
12469
|
-
}> & Partial<Readonly<{
|
|
12470
|
-
stackHeight: number;
|
|
12471
|
-
}>> & Readonly<{
|
|
12472
|
-
accounts: readonly number[];
|
|
12473
|
-
programIdIndex: number;
|
|
12474
|
-
}>)[];
|
|
12475
|
-
}>[];
|
|
12476
|
-
}>>) & Readonly<{
|
|
12477
|
-
replacementBlockhash: _solana_transactions.TransactionBlockhashLifetime;
|
|
12478
|
-
}>));
|
|
12617
|
+
}>;
|
|
12479
12618
|
}>>;
|
|
12480
12619
|
/**
|
|
12481
12620
|
* Get fee for message
|
|
12482
12621
|
*/
|
|
12483
12622
|
getFeeForMessage(message: string): Promise<number>;
|
|
12484
12623
|
/**
|
|
12485
|
-
* Get program accounts
|
|
12624
|
+
* Get program accounts
|
|
12486
12625
|
*/
|
|
12487
12626
|
getProgramAccounts(programId: Address$1, options?: {
|
|
12488
12627
|
filters?: unknown[];
|
|
@@ -12570,7 +12709,7 @@ declare abstract class BaseInstructions {
|
|
|
12570
12709
|
* Centralizes program account scanning pattern
|
|
12571
12710
|
* NOTE: Temporarily simplified due to RPC client complexity
|
|
12572
12711
|
*/
|
|
12573
|
-
protected getDecodedProgramAccounts<T>(decoderImportName: string,
|
|
12712
|
+
protected getDecodedProgramAccounts<T>(decoderImportName: string, filters?: unknown[], commitment?: Commitment$1): Promise<{
|
|
12574
12713
|
address: Address$1;
|
|
12575
12714
|
data: T;
|
|
12576
12715
|
}[]>;
|
|
@@ -12783,7 +12922,7 @@ declare class MarketplaceInstructions extends BaseInstructions {
|
|
|
12783
12922
|
/**
|
|
12784
12923
|
* Get all active job postings
|
|
12785
12924
|
*/
|
|
12786
|
-
getJobPostings(): Promise<JobPosting[]>;
|
|
12925
|
+
getJobPostings(): Promise<JobPosting$1[]>;
|
|
12787
12926
|
/**
|
|
12788
12927
|
* Search service listings by category
|
|
12789
12928
|
*/
|
|
@@ -12791,7 +12930,7 @@ declare class MarketplaceInstructions extends BaseInstructions {
|
|
|
12791
12930
|
/**
|
|
12792
12931
|
* Search job postings by budget range
|
|
12793
12932
|
*/
|
|
12794
|
-
searchJobsByBudget(minBudget: bigint, maxBudget: bigint): Promise<JobPosting[]>;
|
|
12933
|
+
searchJobsByBudget(minBudget: bigint, maxBudget: bigint): Promise<JobPosting$1[]>;
|
|
12795
12934
|
}
|
|
12796
12935
|
|
|
12797
12936
|
interface CreateEscrowParams extends BaseCreationParams, BaseTokenParams, BaseTimeParams {
|
|
@@ -12918,19 +13057,19 @@ declare class A2AInstructions extends BaseInstructions {
|
|
|
12918
13057
|
/**
|
|
12919
13058
|
* Get A2A session information
|
|
12920
13059
|
*/
|
|
12921
|
-
getSession(sessionAddress: Address$1): Promise<A2ASession | null>;
|
|
13060
|
+
getSession(sessionAddress: Address$1): Promise<A2ASession$1 | null>;
|
|
12922
13061
|
/**
|
|
12923
13062
|
* Get all messages in an A2A session
|
|
12924
13063
|
*/
|
|
12925
|
-
getMessages(sessionAddress: Address$1): Promise<A2AMessage[]>;
|
|
13064
|
+
getMessages(sessionAddress: Address$1): Promise<A2AMessage$1[]>;
|
|
12926
13065
|
/**
|
|
12927
13066
|
* Get all active sessions for an agent
|
|
12928
13067
|
*/
|
|
12929
|
-
getActiveSessions(agentAddress: Address$1): Promise<A2ASession[]>;
|
|
13068
|
+
getActiveSessions(agentAddress: Address$1): Promise<A2ASession$1[]>;
|
|
12930
13069
|
/**
|
|
12931
13070
|
* Subscribe to new messages in a session (real-time)
|
|
12932
13071
|
*/
|
|
12933
|
-
subscribeToMessages(sessionAddress: Address$1, callback: (message: A2AMessage) => void): Promise<() => void>;
|
|
13072
|
+
subscribeToMessages(sessionAddress: Address$1, callback: (message: A2AMessage$1) => void): Promise<() => void>;
|
|
12934
13073
|
}
|
|
12935
13074
|
|
|
12936
13075
|
/**
|
|
@@ -13175,6 +13314,10 @@ declare class AuctionInstructions extends BaseInstructions {
|
|
|
13175
13314
|
* including filing disputes, evidence submission, and resolution with real Web3.js v2 execution.
|
|
13176
13315
|
*/
|
|
13177
13316
|
|
|
13317
|
+
interface DisputeEvidence extends DisputeEvidence$1 {
|
|
13318
|
+
description?: string;
|
|
13319
|
+
}
|
|
13320
|
+
|
|
13178
13321
|
interface FileDisputeParams {
|
|
13179
13322
|
transaction: Address;
|
|
13180
13323
|
respondent: Address;
|
|
@@ -13219,6 +13362,12 @@ interface DisputeSummary {
|
|
|
13219
13362
|
resolvedAt?: bigint;
|
|
13220
13363
|
daysSinceCreated: number;
|
|
13221
13364
|
evidenceCount: number;
|
|
13365
|
+
id?: Address;
|
|
13366
|
+
claimant?: Address;
|
|
13367
|
+
severity?: string;
|
|
13368
|
+
workOrder?: Address;
|
|
13369
|
+
description?: string;
|
|
13370
|
+
preferredResolution?: string;
|
|
13222
13371
|
}
|
|
13223
13372
|
interface DisputeAnalytics {
|
|
13224
13373
|
totalDisputes: number;
|
|
@@ -13440,6 +13589,7 @@ interface ProposalFilter {
|
|
|
13440
13589
|
createdBefore?: bigint;
|
|
13441
13590
|
votingActive?: boolean;
|
|
13442
13591
|
executable?: boolean;
|
|
13592
|
+
category?: string;
|
|
13443
13593
|
}
|
|
13444
13594
|
interface MultisigSummary {
|
|
13445
13595
|
multisig: Address;
|
|
@@ -13453,6 +13603,10 @@ interface MultisigSummary {
|
|
|
13453
13603
|
emergencyConfig?: EmergencyConfig;
|
|
13454
13604
|
pendingTransactions: number;
|
|
13455
13605
|
isActive: boolean;
|
|
13606
|
+
balance?: bigint;
|
|
13607
|
+
name?: string;
|
|
13608
|
+
multisigType?: string;
|
|
13609
|
+
timelockDuration?: bigint;
|
|
13456
13610
|
}
|
|
13457
13611
|
interface ProposalSummary {
|
|
13458
13612
|
proposal: Address;
|
|
@@ -13472,6 +13626,11 @@ interface ProposalSummary {
|
|
|
13472
13626
|
quorumReached: boolean;
|
|
13473
13627
|
canExecute: boolean;
|
|
13474
13628
|
timeRemaining?: bigint;
|
|
13629
|
+
yesVotes?: bigint;
|
|
13630
|
+
noVotes?: bigint;
|
|
13631
|
+
eligibleVoters?: number;
|
|
13632
|
+
quorumThreshold?: number;
|
|
13633
|
+
approvalThreshold?: number;
|
|
13475
13634
|
}
|
|
13476
13635
|
interface GovernanceAnalytics {
|
|
13477
13636
|
totalMultisigs: number;
|
|
@@ -14194,6 +14353,7 @@ declare class ComplianceInstructions extends BaseInstructions {
|
|
|
14194
14353
|
private validateInitializeAuditParams;
|
|
14195
14354
|
private validateKycParams;
|
|
14196
14355
|
private validateAmlParams;
|
|
14356
|
+
private calculateKycRiskScore;
|
|
14197
14357
|
private deriveAuditTrailPda;
|
|
14198
14358
|
}
|
|
14199
14359
|
|
|
@@ -14246,7 +14406,7 @@ declare class GhostSpeakClient {
|
|
|
14246
14406
|
/**
|
|
14247
14407
|
* Get all active job postings
|
|
14248
14408
|
*/
|
|
14249
|
-
getJobPostings(): Promise<JobPosting[]>;
|
|
14409
|
+
getJobPostings(): Promise<JobPosting$1[]>;
|
|
14250
14410
|
/**
|
|
14251
14411
|
* Create an escrow account
|
|
14252
14412
|
*/
|
|
@@ -14266,11 +14426,11 @@ declare class GhostSpeakClient {
|
|
|
14266
14426
|
/**
|
|
14267
14427
|
* Get A2A session information
|
|
14268
14428
|
*/
|
|
14269
|
-
getA2ASession(sessionAddress: Address$1): Promise<A2ASession | null>;
|
|
14429
|
+
getA2ASession(sessionAddress: Address$1): Promise<A2ASession$1 | null>;
|
|
14270
14430
|
/**
|
|
14271
14431
|
* Get all messages in an A2A session
|
|
14272
14432
|
*/
|
|
14273
|
-
getA2AMessages(sessionAddress: Address$1): Promise<A2AMessage[]>;
|
|
14433
|
+
getA2AMessages(sessionAddress: Address$1): Promise<A2AMessage$1[]>;
|
|
14274
14434
|
}
|
|
14275
14435
|
|
|
14276
14436
|
/**
|
|
@@ -14295,4 +14455,4 @@ declare function deriveA2AMessagePda(programId: Address$1, session: Address$1, s
|
|
|
14295
14455
|
*/
|
|
14296
14456
|
declare const GHOSTSPEAK_PROGRAM_ID: _solana_addresses.Address<"AJVoWJ4JC1xJR9ufGBGuMgFpHMLouB29sFRTJRvEK1ZR">;
|
|
14297
14457
|
|
|
14298
|
-
export { A2AInstructions, type A2AMessage, type A2AMessageArgs, type A2AMessageSentEvent, type A2AMessageSentEventArgs, type A2ASession, type A2ASessionArgs, type A2ASessionCreatedEvent, type A2ASessionCreatedEventArgs, type A2AStatus, type A2AStatusArgs, type A2AStatusUpdatedEvent, type A2AStatusUpdatedEventArgs, A2_A_MESSAGE_DISCRIMINATOR, A2_A_SESSION_DISCRIMINATOR, A2_A_STATUS_DISCRIMINATOR, ACCEPT_JOB_APPLICATION_DISCRIMINATOR, ACTIVATE_AGENT_DISCRIMINATOR, ADD_TOP_AGENT_DISCRIMINATOR, AGENT_DISCRIMINATOR, AGENT_INCENTIVES_DISCRIMINATOR, AGENT_TREE_CONFIG_DISCRIMINATOR, AGENT_VERIFICATION_DISCRIMINATOR, ANALYTICS_DASHBOARD_DISCRIMINATOR, APPLY_TO_JOB_DISCRIMINATOR, APPROVE_EXTENSION_DISCRIMINATOR, ARBITRATOR_REGISTRY_DISCRIMINATOR, AUCTION_MARKETPLACE_DISCRIMINATOR, AUDIT_TRAIL_DISCRIMINATOR, type AcceptJobApplicationAsyncInput, type AcceptJobApplicationInput, type AcceptJobApplicationInstruction, type AcceptJobApplicationInstructionData, type AcceptJobApplicationInstructionDataArgs, type AccessAuditConfig, type AccessAuditConfigArgs, type AccessPolicy, type AccessPolicyArgs, type AccountLockoutPolicies, type AccountLockoutPoliciesArgs, type Action, type ActionArgs, type ActionExport, type ActionExportArgs, type ActivateAgentAsyncInput, type ActivateAgentInput, type ActivateAgentInstruction, type ActivateAgentInstructionData, type ActivateAgentInstructionDataArgs, type ActivationRequirement, type ActivationRequirementArgs, ActivationRequirementType, type ActivationRequirementTypeArgs, type AddTopAgentInput, type AddTopAgentInstruction, type AddTopAgentInstructionData, type AddTopAgentInstructionDataArgs, type Agent, type AgentArgs, type AgentIncentives, type AgentIncentivesArgs, AgentInstructions, type AgentListedForResaleEvent, type AgentListedForResaleEventArgs, type AgentRegisteredEvent, type AgentRegisteredEventArgs, type AgentReplicatedEvent, type AgentReplicatedEventArgs, type AgentServiceUpdatedEvent, type AgentServiceUpdatedEventArgs, type AgentStatusChangedEvent, type AgentStatusChangedEventArgs, type AgentTreeConfig, type AgentTreeConfigArgs, type AgentUpdatedEvent, type AgentUpdatedEventArgs, type AgentVerification, type AgentVerificationArgs, type AgentVerificationData, type AgentVerificationDataArgs, type AgingPolicy, type AgingPolicyArgs, type AnalyticsDashboard, type AnalyticsDashboardArgs, type AnalyticsDashboardCreatedEvent, type AnalyticsDashboardCreatedEventArgs, type AnalyticsDashboardUpdatedEvent, type AnalyticsDashboardUpdatedEventArgs, AnalyticsInstructions, ApplicationStatus, type ApplicationStatusArgs, type ApplyToJobAsyncInput, type ApplyToJobInput, type ApplyToJobInstruction, type ApplyToJobInstructionData, type ApplyToJobInstructionDataArgs, type ApprovalLevel, type ApprovalLevelArgs, type ApproveExtensionInput, type ApproveExtensionInstruction, type ApproveExtensionInstructionData, type ApproveExtensionInstructionDataArgs, type ArbitratorRegistry, type ArbitratorRegistryArgs, type AuctionBid, type AuctionBidArgs, type AuctionBidPlacedEvent, type AuctionBidPlacedEventArgs, type AuctionFailedEvent, type AuctionFailedEventArgs, type AuctionFinalizedEvent, type AuctionFinalizedEventArgs, AuctionInstructions, type AuctionMarketplace, type AuctionMarketplaceArgs, AuctionStatus, type AuctionStatusArgs, AuctionType, type AuctionTypeArgs, AuditAction, type AuditActionArgs, type AuditConfig, type AuditConfigArgs, type AuditContext, type AuditContextArgs, type AuditContextExport, type AuditContextExportArgs, type AuditEntry, type AuditEntryArgs, type AuditTrail, type AuditTrailArgs, type AuditTrailInitializedEvent, type AuditTrailInitializedEventArgs, AuthenticationLevel, type AuthenticationLevelArgs, AuthenticationMethod, type AuthenticationMethodArgs, type AuthenticationPolicies, type AuthenticationPoliciesArgs, type AuthenticationStrength, type AuthenticationStrengthArgs, type AuthorizationPolicies, type AuthorizationPoliciesArgs, BULK_DEAL_DISCRIMINATOR, BackupFrequency, type BackupFrequencyArgs, type BiometricPolicies, type BiometricPoliciesArgs, type BiometricProtection, type BiometricProtectionArgs, type BiometricQuality, type BiometricQualityArgs, type BiometricQualityExport, type BiometricQualityExportArgs, BiometricStorageMethod, type BiometricStorageMethodArgs, BiometricType, type BiometricTypeArgs, type BulkDeal, type BulkDealArgs, type BulkDealBatchExecutedEvent, type BulkDealBatchExecutedEventArgs, type BulkDealCreatedEvent, type BulkDealCreatedEventArgs, BulkDealsInstructions, CHANNEL_DISCRIMINATOR, COMPLIANCE_REPORT_DISCRIMINATOR, CREATE_A2A_SESSION_DISCRIMINATOR, CREATE_ANALYTICS_DASHBOARD_DISCRIMINATOR, CREATE_BULK_DEAL_DISCRIMINATOR, CREATE_CHANNEL_DISCRIMINATOR, CREATE_DYNAMIC_PRICING_ENGINE_DISCRIMINATOR, CREATE_INCENTIVE_PROGRAM_DISCRIMINATOR, CREATE_JOB_POSTING_DISCRIMINATOR, CREATE_MARKET_ANALYTICS_DISCRIMINATOR, CREATE_MULTISIG_DISCRIMINATOR, CREATE_REPLICATION_TEMPLATE_DISCRIMINATOR, CREATE_ROYALTY_STREAM_DISCRIMINATOR, CREATE_SERVICE_AUCTION_DISCRIMINATOR, CREATE_SERVICE_LISTING_DISCRIMINATOR, CREATE_WORK_ORDER_DISCRIMINATOR, type Channel, type ChannelArgs, type ChannelCreatedEvent, type ChannelCreatedEventArgs, ChannelType, type ChannelTypeArgs, type ComplianceFlags, type ComplianceFlagsArgs, ComplianceInstructions, type ComplianceMetrics$1 as ComplianceMetrics, type ComplianceMetricsArgs, type CompliancePolicies, type CompliancePoliciesArgs, type ComplianceReport, type ComplianceReportArgs, type ComplianceReportGeneratedEvent, type ComplianceReportGeneratedEventArgs, type ComplianceStatus, type ComplianceStatusArgs, type ComplianceStatusExport, type ComplianceStatusExportArgs, type CompressedAgentCreatedEvent, type CompressedAgentCreatedEventArgs, ConditionType, type ConditionTypeArgs, type ConstraintCondition, type ConstraintConditionArgs, ConstraintOperator, type ConstraintOperatorArgs, ContractStatus, type ContractStatusArgs, type CounterOfferMadeEvent, type CounterOfferMadeEventArgs, type CreateA2aSessionAsyncInput, type CreateA2aSessionInput, type CreateA2aSessionInstruction, type CreateA2aSessionInstructionData, type CreateA2aSessionInstructionDataArgs, type CreateAnalyticsDashboardAsyncInput, type CreateAnalyticsDashboardInput, type CreateAnalyticsDashboardInstruction, type CreateAnalyticsDashboardInstructionData, type CreateAnalyticsDashboardInstructionDataArgs, type CreateBulkDealAsyncInput, type CreateBulkDealInput, type CreateBulkDealInstruction, type CreateBulkDealInstructionData, type CreateBulkDealInstructionDataArgs, type CreateChannelInput, type CreateChannelInstruction, type CreateChannelInstructionData, type CreateChannelInstructionDataArgs, type CreateDynamicPricingEngineAsyncInput, type CreateDynamicPricingEngineInput, type CreateDynamicPricingEngineInstruction, type CreateDynamicPricingEngineInstructionData, type CreateDynamicPricingEngineInstructionDataArgs, type CreateIncentiveProgramAsyncInput, type CreateIncentiveProgramInput, type CreateIncentiveProgramInstruction, type CreateIncentiveProgramInstructionData, type CreateIncentiveProgramInstructionDataArgs, type CreateJobPostingAsyncInput, type CreateJobPostingInput, type CreateJobPostingInstruction, type CreateJobPostingInstructionData, type CreateJobPostingInstructionDataArgs, type CreateMarketAnalyticsAsyncInput, type CreateMarketAnalyticsInput, type CreateMarketAnalyticsInstruction, type CreateMarketAnalyticsInstructionData, type CreateMarketAnalyticsInstructionDataArgs, type CreateMultisigAsyncInput, type CreateMultisigInput, type CreateMultisigInstruction, type CreateMultisigInstructionData, type CreateMultisigInstructionDataArgs, type CreateReplicationTemplateAsyncInput, type CreateReplicationTemplateInput, type CreateReplicationTemplateInstruction, type CreateReplicationTemplateInstructionData, type CreateReplicationTemplateInstructionDataArgs, type CreateRoyaltyStreamAsyncInput, type CreateRoyaltyStreamInput, type CreateRoyaltyStreamInstruction, type CreateRoyaltyStreamInstructionData, type CreateRoyaltyStreamInstructionDataArgs, type CreateServiceAuctionAsyncInput, type CreateServiceAuctionInput, type CreateServiceAuctionInstruction, type CreateServiceAuctionInstructionData, type CreateServiceAuctionInstructionDataArgs, type CreateServiceListingAsyncInput, type CreateServiceListingInput, type CreateServiceListingInstruction, type CreateServiceListingInstructionData, type CreateServiceListingInstructionDataArgs, type CreateWorkOrderInput, type CreateWorkOrderInstruction, type CreateWorkOrderInstructionData, type CreateWorkOrderInstructionDataArgs, DEACTIVATE_AGENT_DISCRIMINATOR, DISPUTE_CASE_DISCRIMINATOR, DISTRIBUTE_INCENTIVES_DISCRIMINATOR, DYNAMIC_PRICING_ENGINE_DISCRIMINATOR, DataAccessLevel, type DataAccessLevelArgs, type DataProtectionPolicies, type DataProtectionPoliciesArgs, type DeactivateAgentAsyncInput, type DeactivateAgentInput, type DeactivateAgentInstruction, type DeactivateAgentInstructionData, type DeactivateAgentInstructionDataArgs, DealType, type DealTypeArgs, DegradationHandling, type DegradationHandlingArgs, type DelegationInfo, type DelegationInfoArgs, type DelegationScope, type DelegationScopeArgs, Deliverable, type DeliverableArgs, type DisputeCase, type DisputeCaseArgs, type DisputeEvidence, type DisputeEvidenceArgs, type DisputeEvidenceSubmittedEvent, type DisputeEvidenceSubmittedEventArgs, type DisputeFiledEvent, type DisputeFiledEventArgs, DisputeInstructions, type DisputeResolvedEvent, type DisputeResolvedEventArgs, DisputeStatus, type DisputeStatusArgs, type DistributeIncentivesInput, type DistributeIncentivesInstruction, type DistributeIncentivesInstructionData, type DistributeIncentivesInstructionDataArgs, type DynamicPricingConfig, type DynamicPricingConfigArgs, type DynamicPricingConfigExport, type DynamicPricingConfigExportArgs, type DynamicPricingEngine, type DynamicPricingEngineArgs, type DynamicPricingEngineCreatedEvent, type DynamicPricingEngineCreatedEventArgs, type DynamicPricingUpdatedEvent, type DynamicPricingUpdatedEventArgs, EXECUTE_BULK_DEAL_BATCH_DISCRIMINATOR, EXPORT_ACTION_DISCRIMINATOR, EXPORT_AUDIT_CONTEXT_DISCRIMINATOR, EXPORT_BIOMETRIC_QUALITY_DISCRIMINATOR, EXPORT_COMPLIANCE_STATUS_DISCRIMINATOR, EXPORT_DYNAMIC_PRICING_CONFIG_DISCRIMINATOR, EXPORT_MULTISIG_CONFIG_DISCRIMINATOR, EXPORT_REPORT_ENTRY_DISCRIMINATOR, EXPORT_RESOURCE_CONSTRAINTS_DISCRIMINATOR, EXPORT_RULE_CONDITION_DISCRIMINATOR, EXTENSION_DISCRIMINATOR, type EmergencyAccessConfig, type EmergencyAccessConfigArgs, type EmergencyConfig$1 as EmergencyConfig, type EmergencyConfigArgs, EnforcementLevel, type EnforcementLevelArgs, EscrowInstructions, type ExecuteBulkDealBatchAsyncInput, type ExecuteBulkDealBatchInput, type ExecuteBulkDealBatchInstruction, type ExecuteBulkDealBatchInstructionData, type ExecuteBulkDealBatchInstructionDataArgs, type ExecutionCondition, type ExecutionConditionArgs, type ExecutionParams, type ExecutionParamsArgs, type ExportActionInput, type ExportActionInstruction, type ExportActionInstructionData, type ExportActionInstructionDataArgs, type ExportAuditContextInput, type ExportAuditContextInstruction, type ExportAuditContextInstructionData, type ExportAuditContextInstructionDataArgs, type ExportBiometricQualityInput, type ExportBiometricQualityInstruction, type ExportBiometricQualityInstructionData, type ExportBiometricQualityInstructionDataArgs, type ExportComplianceStatusInput, type ExportComplianceStatusInstruction, type ExportComplianceStatusInstructionData, type ExportComplianceStatusInstructionDataArgs, type ExportDynamicPricingConfigInput, type ExportDynamicPricingConfigInstruction, type ExportDynamicPricingConfigInstructionData, type ExportDynamicPricingConfigInstructionDataArgs, type ExportMultisigConfigInput, type ExportMultisigConfigInstruction, type ExportMultisigConfigInstructionData, type ExportMultisigConfigInstructionDataArgs, type ExportReportEntryInput, type ExportReportEntryInstruction, type ExportReportEntryInstructionData, type ExportReportEntryInstructionDataArgs, type ExportResourceConstraintsInput, type ExportResourceConstraintsInstruction, type ExportResourceConstraintsInstructionData, type ExportResourceConstraintsInstructionDataArgs, type ExportRuleConditionInput, type ExportRuleConditionInstruction, type ExportRuleConditionInstructionData, type ExportRuleConditionInstructionDataArgs, type Extension, type ExtensionApprovedEvent, type ExtensionApprovedEventArgs, type ExtensionArgs, type ExtensionMetadata, type ExtensionMetadataArgs, type ExtensionRegisteredEvent, type ExtensionRegisteredEventArgs, ExtensionStatus, type ExtensionStatusArgs, ExtensionType, type ExtensionTypeArgs, FILE_DISPUTE_DISCRIMINATOR, FINALIZE_AUCTION_DISCRIMINATOR, type FileDisputeAsyncInput, type FileDisputeInput, type FileDisputeInstruction, type FileDisputeInstructionData, type FileDisputeInstructionDataArgs, type FinalizeAuctionInput, type FinalizeAuctionInstruction, type FinalizeAuctionInstructionData, type FinalizeAuctionInstructionDataArgs, GENERATE_COMPLIANCE_REPORT_DISCRIMINATOR, GHOSTSPEAK_MARKETPLACE_ERROR__ACCESS_DENIED, GHOSTSPEAK_MARKETPLACE_ERROR__ACCOUNT_ALREADY_INITIALIZED, GHOSTSPEAK_MARKETPLACE_ERROR__ACCOUNT_NOT_INITIALIZED, GHOSTSPEAK_MARKETPLACE_ERROR__AGENT_ALREADY_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__AGENT_ALREADY_REGISTERED, GHOSTSPEAK_MARKETPLACE_ERROR__AGENT_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__AGENT_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__ALREADY_VOTED, GHOSTSPEAK_MARKETPLACE_ERROR__ANALYTICS_NOT_ENABLED, GHOSTSPEAK_MARKETPLACE_ERROR__APPLICATION_ALREADY_PROCESSED, GHOSTSPEAK_MARKETPLACE_ERROR__APPLICATION_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__ARITHMETIC_OVERFLOW, GHOSTSPEAK_MARKETPLACE_ERROR__ARITHMETIC_UNDERFLOW, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_ALREADY_ENDED, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_DURATION_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_DURATION_TOO_SHORT, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_ENDED, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_NOT_ENDED, GHOSTSPEAK_MARKETPLACE_ERROR__BID_INCREMENT_TOO_LOW, GHOSTSPEAK_MARKETPLACE_ERROR__BID_TOO_LOW, GHOSTSPEAK_MARKETPLACE_ERROR__BULK_DEAL_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__CANNOT_CANCEL_AUCTION_WITH_BIDS, GHOSTSPEAK_MARKETPLACE_ERROR__CAPABILITY_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__CHANNEL_ALREADY_EXISTS, GHOSTSPEAK_MARKETPLACE_ERROR__CHANNEL_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__COMPLETION_PROOF_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__COMPLIANCE_CHECK_FAILED, GHOSTSPEAK_MARKETPLACE_ERROR__COMPUTE_BUDGET_EXCEEDED, GHOSTSPEAK_MARKETPLACE_ERROR__DATA_CORRUPTION_DETECTED, GHOSTSPEAK_MARKETPLACE_ERROR__DEADLINE_PASSED, GHOSTSPEAK_MARKETPLACE_ERROR__DEAL_ALREADY_FINALIZED, GHOSTSPEAK_MARKETPLACE_ERROR__DEAL_EXPIRED, GHOSTSPEAK_MARKETPLACE_ERROR__DEAL_FULL, GHOSTSPEAK_MARKETPLACE_ERROR__DEAL_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__DESCRIPTION_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__DISPUTE_ALREADY_RESOLVED, GHOSTSPEAK_MARKETPLACE_ERROR__DISPUTE_CASE_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__DISPUTE_DETAILS_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__DISPUTE_REASON_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__DISPUTE_WINDOW_EXPIRED, GHOSTSPEAK_MARKETPLACE_ERROR__DIVISION_BY_ZERO, GHOSTSPEAK_MARKETPLACE_ERROR__ESCROW_ALREADY_RELEASED, GHOSTSPEAK_MARKETPLACE_ERROR__ESCROW_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__EVIDENCE_WINDOW_EXPIRED, GHOSTSPEAK_MARKETPLACE_ERROR__EXTENSION_ALREADY_ENABLED, GHOSTSPEAK_MARKETPLACE_ERROR__EXTENSION_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__FEATURE_NOT_ENABLED, GHOSTSPEAK_MARKETPLACE_ERROR__GOVERNANCE_PROPOSAL_INVALID, GHOSTSPEAK_MARKETPLACE_ERROR__INCENTIVE_POOL_EXHAUSTED, GHOSTSPEAK_MARKETPLACE_ERROR__INPUT_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__INSUFFICIENT_BALANCE, GHOSTSPEAK_MARKETPLACE_ERROR__INSUFFICIENT_FUNDS, GHOSTSPEAK_MARKETPLACE_ERROR__INSUFFICIENT_PARTICIPANTS, GHOSTSPEAK_MARKETPLACE_ERROR__INSUFFICIENT_VOTING_POWER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_A2_A_PROTOCOL_MESSAGE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_ACCOUNT_OWNER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_AGENT_OWNER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_AGENT_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_AMOUNT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_APPLICATION_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_BID, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_CHANNEL_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_CONTRACT_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DEADLINE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DEAL_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DELIVERY_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DISCOUNT_PERCENTAGE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DISPUTE_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_ESCROW_AMOUNT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_ESCROW_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_EXPIRATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_EXTENSION_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_EXTENSION_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_GENOME_HASH, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_INCENTIVE_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_INPUT_FORMAT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_INPUT_LENGTH, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_JOB_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_MAX_PARTICIPANTS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_MESSAGE_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_METADATA_URI, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_METRICS_DATA, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_MIN_PARTICIPANTS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_NEGOTIATION_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_OFFER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_OFFER_AMOUNT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PARAMETER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PARTICIPANT_COUNT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PAYMENT_AMOUNT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PERCENTAGE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PERIOD, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PRICE_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PRICE_RANGE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_RATING, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_REPLICATION_CONFIG, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_REPORT_DATA, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_REPORT_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_REPUTATION_SCORE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_ROYALTY_PERCENTAGE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_SERVICE_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_SERVICE_ENDPOINT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_SERVICE_TYPE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_STARTING_PRICE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_STATE_TRANSITION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_STATUS_TRANSITION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_TASK_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_TASK_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_TRANSACTION_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_VALUE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_VOLUME, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_VOLUME_TIER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_WORK_ORDER_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__IPFS_HASH_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__JOB_ALREADY_FILLED, GHOSTSPEAK_MARKETPLACE_ERROR__JOB_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__LISTING_ALREADY_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__LISTING_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__MAINTENANCE_MODE_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__MAXIMUM_RETRIES_EXCEEDED, GHOSTSPEAK_MARKETPLACE_ERROR__MESSAGE_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__MESSAGE_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__METADATA_URI_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__METRICS_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__NAME_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__NEGOTIATION_EXPIRED, GHOSTSPEAK_MARKETPLACE_ERROR__NEGOTIATION_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__NO_DELIVERABLES, GHOSTSPEAK_MARKETPLACE_ERROR__NO_PARTICIPANTS, GHOSTSPEAK_MARKETPLACE_ERROR__OPERATION_NOT_SUPPORTED, GHOSTSPEAK_MARKETPLACE_ERROR__OPERATION_TIMED_OUT, GHOSTSPEAK_MARKETPLACE_ERROR__OVERLAPPING_VOLUME_TIERS, GHOSTSPEAK_MARKETPLACE_ERROR__PAYMENT_ALREADY_PROCESSED, GHOSTSPEAK_MARKETPLACE_ERROR__PRICE_MODEL_NOT_SUPPORTED, GHOSTSPEAK_MARKETPLACE_ERROR__PROTOCOL_VERSION_MISMATCH, GHOSTSPEAK_MARKETPLACE_ERROR__RATE_LIMIT_EXCEEDED, GHOSTSPEAK_MARKETPLACE_ERROR__REPLICATION_NOT_ALLOWED, GHOSTSPEAK_MARKETPLACE_ERROR__REPORT_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__REQUIREMENT_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__RESOLUTION_NOTES_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__RESOURCE_LOCKED, GHOSTSPEAK_MARKETPLACE_ERROR__ROYALTY_CONFIGURATION_INVALID, GHOSTSPEAK_MARKETPLACE_ERROR__SERVICE_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__SERVICE_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__SIGNATURE_VERIFICATION_FAILED, GHOSTSPEAK_MARKETPLACE_ERROR__STRING_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__TASK_ALREADY_COMPLETED, GHOSTSPEAK_MARKETPLACE_ERROR__TASK_DEADLINE_EXCEEDED, GHOSTSPEAK_MARKETPLACE_ERROR__TASK_ID_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__TASK_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__TERM_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__TITLE_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__TOKEN_TRANSFER_FAILED, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_AUDIT_ENTRIES, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_BIDS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_CAPABILITIES, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_COUNTER_OFFERS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_DELIVERABLES, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_EVIDENCE_ITEMS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_EVIDENCE_SUBMISSIONS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_REQUIREMENTS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_TERMS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_TOP_AGENTS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_VOLUME_TIERS, GHOSTSPEAK_MARKETPLACE_ERROR__UNAUTHORIZED_ACCESS, GHOSTSPEAK_MARKETPLACE_ERROR__UNAUTHORIZED_ARBITRATOR, GHOSTSPEAK_MARKETPLACE_ERROR__UPDATE_FREQUENCY_TOO_HIGH, GHOSTSPEAK_MARKETPLACE_ERROR__VALUE_BELOW_MINIMUM, GHOSTSPEAK_MARKETPLACE_ERROR__VALUE_EXCEEDS_MAXIMUM, GHOSTSPEAK_MARKETPLACE_ERROR__VOTING_PERIOD_ENDED, GHOSTSPEAK_MARKETPLACE_ERROR__WORK_ORDER_ALREADY_EXISTS, GHOSTSPEAK_MARKETPLACE_ERROR__WORK_ORDER_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS, GHOSTSPEAK_PROGRAM_ID, GOVERNANCE_PROPOSAL_DISCRIMINATOR, type GenerateComplianceReportAsyncInput, type GenerateComplianceReportInput, type GenerateComplianceReportInstruction, type GenerateComplianceReportInstructionData, type GenerateComplianceReportInstructionDataArgs, type GeographicRegion, type GeographicRegionArgs, GhostSpeakClient, type GhostSpeakConfig, GhostspeakMarketplaceAccount, type GhostspeakMarketplaceError, GhostspeakMarketplaceInstruction, GovernanceInstructions, type GovernanceProposal, type GovernanceProposalArgs, type GovernanceProposalCreatedEvent, type GovernanceProposalCreatedEventArgs, type HierarchicalBoundary, type HierarchicalBoundaryArgs, INCENTIVE_PROGRAM_DISCRIMINATOR, INITIALIZE_AUDIT_TRAIL_DISCRIMINATOR, INITIALIZE_GOVERNANCE_PROPOSAL_DISCRIMINATOR, INITIALIZE_RBAC_CONFIG_DISCRIMINATOR, INITIATE_NEGOTIATION_DISCRIMINATOR, type IncentiveConfig, type IncentiveConfigArgs, type IncentiveDistributedEvent, type IncentiveDistributedEventArgs, type IncentiveProgram, type IncentiveProgramArgs, type IncentiveProgramCreatedEvent, type IncentiveProgramCreatedEventArgs, type IncidentResponsePolicies, type IncidentResponsePoliciesArgs, type InitializeAuditTrailAsyncInput, type InitializeAuditTrailInput, type InitializeAuditTrailInstruction, type InitializeAuditTrailInstructionData, type InitializeAuditTrailInstructionDataArgs, type InitializeGovernanceProposalAsyncInput, type InitializeGovernanceProposalInput, type InitializeGovernanceProposalInstruction, type InitializeGovernanceProposalInstructionData, type InitializeGovernanceProposalInstructionDataArgs, type InitializeRbacConfigAsyncInput, type InitializeRbacConfigInput, type InitializeRbacConfigInstruction, type InitializeRbacConfigInstructionData, type InitializeRbacConfigInstructionDataArgs, type InitiateNegotiationAsyncInput, type InitiateNegotiationInput, type InitiateNegotiationInstruction, type InitiateNegotiationInstructionData, type InitiateNegotiationInstructionDataArgs, JOB_APPLICATION_DISCRIMINATOR, JOB_CONTRACT_DISCRIMINATOR, JOB_POSTING_DISCRIMINATOR, type JobApplication, type JobApplicationAcceptedEvent, type JobApplicationAcceptedEventArgs, type JobApplicationArgs, type JobApplicationSubmittedEvent, type JobApplicationSubmittedEventArgs, type JobContract, type JobContractArgs, type JobPosting, type JobPostingArgs, type JobPostingCreatedEvent, type JobPostingCreatedEventArgs, LIST_AGENT_FOR_RESALE_DISCRIMINATOR, type LatitudeRange, type LatitudeRangeArgs, type ListAgentForResaleAsyncInput, type ListAgentForResaleInput, type ListAgentForResaleInstruction, type ListAgentForResaleInstructionData, type ListAgentForResaleInstructionDataArgs, type LocationConstraints, type LocationConstraintsArgs, type LongitudeRange, type LongitudeRangeArgs, MAKE_COUNTER_OFFER_DISCRIMINATOR, MANAGE_AGENT_STATUS_DISCRIMINATOR, MARKET_ANALYTICS_DISCRIMINATOR, MESSAGE_DISCRIMINATOR, MULTISIG_DISCRIMINATOR, type MakeCounterOfferInput, type MakeCounterOfferInstruction, type MakeCounterOfferInstructionData, type MakeCounterOfferInstructionDataArgs, type ManageAgentStatusAsyncInput, type ManageAgentStatusInput, type ManageAgentStatusInstruction, type ManageAgentStatusInstructionData, type ManageAgentStatusInstructionDataArgs, type MarketAnalytics, type MarketAnalyticsArgs, type MarketAnalyticsCreatedEvent, type MarketAnalyticsCreatedEventArgs, type MarketAnalyticsUpdatedEvent, type MarketAnalyticsUpdatedEventArgs, MarketplaceInstructions, type Message, type MessageArgs, type MessageSentEvent, type MessageSentEventArgs, MessageType, type MessageTypeArgs, type Multisig, type MultisigArgs, type MultisigConfig, type MultisigConfigArgs, type MultisigConfigExport, type MultisigConfigExportArgs, type MultisigCreatedEvent, type MultisigCreatedEventArgs, type MultisigSignature, type MultisigSignatureArgs, NEGOTIATION_CHATBOT_DISCRIMINATOR, type NegotiationChatbot, type NegotiationChatbotArgs, type NegotiationInitiatedEvent, type NegotiationInitiatedEventArgs, NegotiationStatus, type NegotiationStatusArgs, type NetworkSecurityPolicies, type NetworkSecurityPoliciesArgs, NotificationMethod, type NotificationMethodArgs, NotificationPriority, type NotificationPriorityArgs, type NotificationRequirement, type NotificationRequirementArgs, type NotificationTarget, type NotificationTargetArgs, NotificationTargetType, type NotificationTargetTypeArgs, NotificationTiming, type NotificationTimingArgs, PAYMENT_DISCRIMINATOR, PLACE_AUCTION_BID_DISCRIMINATOR, PROCESS_PAYMENT_DISCRIMINATOR, PURCHASE_SERVICE_DISCRIMINATOR, type ParsedAcceptJobApplicationInstruction, type ParsedActivateAgentInstruction, type ParsedAddTopAgentInstruction, type ParsedApplyToJobInstruction, type ParsedApproveExtensionInstruction, type ParsedCreateA2aSessionInstruction, type ParsedCreateAnalyticsDashboardInstruction, type ParsedCreateBulkDealInstruction, type ParsedCreateChannelInstruction, type ParsedCreateDynamicPricingEngineInstruction, type ParsedCreateIncentiveProgramInstruction, type ParsedCreateJobPostingInstruction, type ParsedCreateMarketAnalyticsInstruction, type ParsedCreateMultisigInstruction, type ParsedCreateReplicationTemplateInstruction, type ParsedCreateRoyaltyStreamInstruction, type ParsedCreateServiceAuctionInstruction, type ParsedCreateServiceListingInstruction, type ParsedCreateWorkOrderInstruction, type ParsedDeactivateAgentInstruction, type ParsedDistributeIncentivesInstruction, type ParsedExecuteBulkDealBatchInstruction, type ParsedExportActionInstruction, type ParsedExportAuditContextInstruction, type ParsedExportBiometricQualityInstruction, type ParsedExportComplianceStatusInstruction, type ParsedExportDynamicPricingConfigInstruction, type ParsedExportMultisigConfigInstruction, type ParsedExportReportEntryInstruction, type ParsedExportResourceConstraintsInstruction, type ParsedExportRuleConditionInstruction, type ParsedFileDisputeInstruction, type ParsedFinalizeAuctionInstruction, type ParsedGenerateComplianceReportInstruction, type ParsedGhostspeakMarketplaceInstruction, type ParsedInitializeAuditTrailInstruction, type ParsedInitializeGovernanceProposalInstruction, type ParsedInitializeRbacConfigInstruction, type ParsedInitiateNegotiationInstruction, type ParsedListAgentForResaleInstruction, type ParsedMakeCounterOfferInstruction, type ParsedManageAgentStatusInstruction, type ParsedPlaceAuctionBidInstruction, type ParsedProcessPaymentInstruction, type ParsedPurchaseServiceInstruction, type ParsedRegisterAgentCompressedInstruction, type ParsedRegisterAgentInstruction, type ParsedRegisterExtensionInstruction, type ParsedReplicateAgentInstruction, type ParsedResolveDisputeInstruction, type ParsedSendA2aMessageInstruction, type ParsedSendMessageInstruction, type ParsedSubmitDisputeEvidenceInstruction, type ParsedSubmitWorkDeliveryInstruction, type ParsedUpdateA2aStatusInstruction, type ParsedUpdateAgentInstruction, type ParsedUpdateAgentReputationInstruction, type ParsedUpdateAgentServiceInstruction, type ParsedUpdateAnalyticsDashboardInstruction, type ParsedUpdateDynamicPricingInstruction, type ParsedUpdateMarketAnalyticsInstruction, type ParsedVerifyAgentInstruction, type PasswordPolicies, type PasswordPoliciesArgs, type Payment, type PaymentArgs, type PaymentProcessedEvent, type PaymentProcessedEventArgs, type PendingTransaction, type PendingTransactionArgs, type Permission, type PermissionArgs, type PermissionConstraint, type PermissionConstraintArgs, PermissionConstraintType, type PermissionConstraintTypeArgs, type PermissionMetadata, type PermissionMetadataArgs, type PermissionScope, type PermissionScopeArgs, type PlaceAuctionBidInput, type PlaceAuctionBidInstruction, type PlaceAuctionBidInstructionData, type PlaceAuctionBidInstructionDataArgs, type PolicyMetadata, type PolicyMetadataArgs, type PolicyRule, type PolicyRuleArgs, type PolicyScope, type PolicyScopeArgs, PolicyStatus, type PolicyStatusArgs, PolicyType, type PolicyTypeArgs, PricingAlgorithm, type PricingAlgorithmArgs, PricingModel, type PricingModelArgs, type ProcessPaymentAsyncInput, type ProcessPaymentInput, type ProcessPaymentInstruction, type ProcessPaymentInstructionData, type ProcessPaymentInstructionDataArgs, type ProposalAccount, type ProposalAccountArgs, type ProposalInstruction, type ProposalInstructionArgs, type ProposalMetadata, type ProposalMetadataArgs, ProposalStatus, type ProposalStatusArgs, ProposalType, type ProposalTypeArgs, type PurchaseServiceAsyncInput, type PurchaseServiceInput, type PurchaseServiceInstruction, type PurchaseServiceInstructionData, type PurchaseServiceInstructionDataArgs, PurchaseStatus, type PurchaseStatusArgs, QuorumMethod, type QuorumMethodArgs, type QuorumRequirements, type QuorumRequirementsArgs, RBAC_CONFIG_DISCRIMINATOR, REGISTER_AGENT_COMPRESSED_DISCRIMINATOR, REGISTER_AGENT_DISCRIMINATOR, REGISTER_EXTENSION_DISCRIMINATOR, REPLICATE_AGENT_DISCRIMINATOR, REPLICATION_RECORD_DISCRIMINATOR, REPLICATION_TEMPLATE_DISCRIMINATOR, RESALE_MARKET_DISCRIMINATOR, RESOLVE_DISPUTE_DISCRIMINATOR, ROYALTY_STREAM_DISCRIMINATOR, type RbacConfig, type RbacConfigArgs, type RbacConfigInitializedEvent, type RbacConfigInitializedEventArgs, type RegisterAgentAsyncInput, type RegisterAgentCompressedAsyncInput, type RegisterAgentCompressedInput, type RegisterAgentCompressedInstruction, type RegisterAgentCompressedInstructionData, type RegisterAgentCompressedInstructionDataArgs, type RegisterAgentInput, type RegisterAgentInstruction, type RegisterAgentInstructionData, type RegisterAgentInstructionDataArgs, type RegisterExtensionAsyncInput, type RegisterExtensionInput, type RegisterExtensionInstruction, type RegisterExtensionInstructionData, type RegisterExtensionInstructionDataArgs, type ReplicateAgentAsyncInput, type ReplicateAgentInput, type ReplicateAgentInstruction, type ReplicateAgentInstructionData, type ReplicateAgentInstructionDataArgs, type ReplicationRecord, type ReplicationRecordArgs, type ReplicationTemplate, type ReplicationTemplateArgs, type ReplicationTemplateCreatedEvent, type ReplicationTemplateCreatedEventArgs, type ReportData, type ReportDataArgs, type ReportEntry, type ReportEntryArgs, type ReportEntryExport, type ReportEntryExportArgs, ReportStatus, type ReportStatusArgs, type ReportSummary, type ReportSummaryArgs, ReportType, type ReportTypeArgs, ReportingFrequency, type ReportingFrequencyArgs, type ResaleMarket, type ResaleMarketArgs, type ResolveDisputeAsyncInput, type ResolveDisputeInput, type ResolveDisputeInstruction, type ResolveDisputeInstructionData, type ResolveDisputeInstructionDataArgs, type ResourceConstraints, type ResourceConstraintsArgs, type ResourceConstraintsExport, type ResourceConstraintsExportArgs, type ReviewSchedule, type ReviewScheduleArgs, type RiskAcceptance, type RiskAcceptanceArgs, type RiskAssessment, type RiskAssessmentArgs, RiskCategory, type RiskCategoryArgs, type RiskFactor, type RiskFactorArgs, type RiskIndicator, type RiskIndicatorArgs, RiskLevel, type RiskLevelArgs, type Role, type RoleArgs, type RoleConstraints, type RoleConstraintsArgs, type RoleMetadata, type RoleMetadataArgs, RoleStatus, type RoleStatusArgs, RoleType, type RoleTypeArgs, type RoyaltyConfig, type RoyaltyConfigArgs, type RoyaltyStream, type RoyaltyStreamArgs, type RoyaltyStreamCreatedEvent, type RoyaltyStreamCreatedEventArgs, type RuleCondition, type RuleConditionArgs, type RuleConditionExport, type RuleConditionExportArgs, RuleEffect, type RuleEffectArgs, SEND_A2A_MESSAGE_DISCRIMINATOR, SEND_MESSAGE_DISCRIMINATOR, SERVICE_LISTING_DISCRIMINATOR, SERVICE_PURCHASE_DISCRIMINATOR, SUBMIT_DISPUTE_EVIDENCE_DISCRIMINATOR, SUBMIT_WORK_DELIVERY_DISCRIMINATOR, type ScopeBoundaries, type ScopeBoundariesArgs, ScopeInheritance, type ScopeInheritanceArgs, ScopeType, type ScopeTypeArgs, SecurityEventType, type SecurityEventTypeArgs, type SecurityPolicies, type SecurityPoliciesArgs, type SendA2aMessageInput, type SendA2aMessageInstruction, type SendA2aMessageInstructionData, type SendA2aMessageInstructionDataArgs, type SendMessageInput, type SendMessageInstruction, type SendMessageInstructionData, type SendMessageInstructionDataArgs, type ServiceAuctionCreatedEvent, type ServiceAuctionCreatedEventArgs, type ServiceListing, type ServiceListingArgs, type ServiceListingCreatedEvent, type ServiceListingCreatedEventArgs, type ServicePurchase, type ServicePurchaseArgs, type ServicePurchasedEvent, type ServicePurchasedEventArgs, type SessionConstraints, type SessionConstraintsArgs, type SessionPolicies, type SessionPoliciesArgs, type SodConstraint, type SodConstraintArgs, SodConstraintType, type SodConstraintTypeArgs, StepUpTrigger, type StepUpTriggerArgs, type SubmissionDetails, type SubmissionDetailsArgs, type SubmitDisputeEvidenceAsyncInput, type SubmitDisputeEvidenceInput, type SubmitDisputeEvidenceInstruction, type SubmitDisputeEvidenceInstructionData, type SubmitDisputeEvidenceInstructionDataArgs, type SubmitWorkDeliveryAsyncInput, type SubmitWorkDeliveryInput, type SubmitWorkDeliveryInstruction, type SubmitWorkDeliveryInstructionData, type SubmitWorkDeliveryInstructionDataArgs, type TimeConstraints, type TimeConstraintsArgs, type TimeLock, type TimeLockArgs, TimeLockType, type TimeLockTypeArgs, type TopAgentAddedEvent, type TopAgentAddedEventArgs, TransactionPriority, type TransactionPriorityArgs, TransactionStatus, type TransactionStatusArgs, TransactionType, type TransactionTypeArgs, TrendDirection, type TrendDirectionArgs, UPDATE_A2A_STATUS_DISCRIMINATOR, UPDATE_AGENT_DISCRIMINATOR, UPDATE_AGENT_REPUTATION_DISCRIMINATOR, UPDATE_AGENT_SERVICE_DISCRIMINATOR, UPDATE_ANALYTICS_DASHBOARD_DISCRIMINATOR, UPDATE_DYNAMIC_PRICING_DISCRIMINATOR, UPDATE_MARKET_ANALYTICS_DISCRIMINATOR, USER_REGISTRY_DISCRIMINATOR, UnlockMethod, type UnlockMethodArgs, type UpdateA2aStatusAsyncInput, type UpdateA2aStatusInput, type UpdateA2aStatusInstruction, type UpdateA2aStatusInstructionData, type UpdateA2aStatusInstructionDataArgs, type UpdateAgentAsyncInput, type UpdateAgentInput, type UpdateAgentInstruction, type UpdateAgentInstructionData, type UpdateAgentInstructionDataArgs, type UpdateAgentReputationAsyncInput, type UpdateAgentReputationInput, type UpdateAgentReputationInstruction, type UpdateAgentReputationInstructionData, type UpdateAgentReputationInstructionDataArgs, type UpdateAgentServiceAsyncInput, type UpdateAgentServiceInput, type UpdateAgentServiceInstruction, type UpdateAgentServiceInstructionData, type UpdateAgentServiceInstructionDataArgs, type UpdateAnalyticsDashboardAsyncInput, type UpdateAnalyticsDashboardInput, type UpdateAnalyticsDashboardInstruction, type UpdateAnalyticsDashboardInstructionData, type UpdateAnalyticsDashboardInstructionDataArgs, type UpdateDynamicPricingInput, type UpdateDynamicPricingInstruction, type UpdateDynamicPricingInstructionData, type UpdateDynamicPricingInstructionDataArgs, type UpdateMarketAnalyticsInput, type UpdateMarketAnalyticsInstruction, type UpdateMarketAnalyticsInstructionData, type UpdateMarketAnalyticsInstructionDataArgs, type UserRegistry, type UserRegistryArgs, VERIFY_AGENT_DISCRIMINATOR, ValueType, type ValueTypeArgs, type VerifyAgentAsyncInput, type VerifyAgentInput, type VerifyAgentInstruction, type VerifyAgentInstructionData, type VerifyAgentInstructionDataArgs, ViolationSeverity, type ViolationSeverityArgs, type VolumeTier, type VolumeTierArgs, type Vote, type VoteArgs, VoteChoice, type VoteChoiceArgs, type VotingResults, type VotingResultsArgs, WORK_DELIVERY_DISCRIMINATOR, WORK_ORDER_DISCRIMINATOR, type WorkDelivery, type WorkDeliveryArgs, type WorkDeliverySubmittedEvent, type WorkDeliverySubmittedEventArgs, type WorkOrder, type WorkOrderArgs, type WorkOrderCreatedEvent, type WorkOrderCreatedEventArgs, WorkOrderStatus, type WorkOrderStatusArgs, decodeA2AMessage, decodeA2ASession, decodeA2AStatus, decodeAgent, decodeAgentIncentives, decodeAgentTreeConfig, decodeAgentVerification, decodeAnalyticsDashboard, decodeArbitratorRegistry, decodeAuctionMarketplace, decodeAuditTrail, decodeBulkDeal, decodeChannel, decodeComplianceReport, decodeDisputeCase, decodeDynamicPricingEngine, decodeExtension, decodeGovernanceProposal, decodeIncentiveProgram, decodeJobApplication, decodeJobContract, decodeJobPosting, decodeMarketAnalytics, decodeMessage, decodeMultisig, decodeNegotiationChatbot, decodePayment, decodeRbacConfig, decodeReplicationRecord, decodeReplicationTemplate, decodeResaleMarket, decodeRoyaltyStream, decodeServiceListing, decodeServicePurchase, decodeUserRegistry, decodeWorkDelivery, decodeWorkOrder, delegationScope, deriveA2AMessagePda, deriveA2ASessionPda, fetchA2AMessage, fetchA2ASession, fetchA2AStatus, fetchAgent, fetchAgentIncentives, fetchAgentTreeConfig, fetchAgentVerification, fetchAllA2AMessage, fetchAllA2ASession, fetchAllA2AStatus, fetchAllAgent, fetchAllAgentIncentives, fetchAllAgentTreeConfig, fetchAllAgentVerification, fetchAllAnalyticsDashboard, fetchAllArbitratorRegistry, fetchAllAuctionMarketplace, fetchAllAuditTrail, fetchAllBulkDeal, fetchAllChannel, fetchAllComplianceReport, fetchAllDisputeCase, fetchAllDynamicPricingEngine, fetchAllExtension, fetchAllGovernanceProposal, fetchAllIncentiveProgram, fetchAllJobApplication, fetchAllJobContract, fetchAllJobPosting, fetchAllMarketAnalytics, fetchAllMaybeA2AMessage, fetchAllMaybeA2ASession, fetchAllMaybeA2AStatus, fetchAllMaybeAgent, fetchAllMaybeAgentIncentives, fetchAllMaybeAgentTreeConfig, fetchAllMaybeAgentVerification, fetchAllMaybeAnalyticsDashboard, fetchAllMaybeArbitratorRegistry, fetchAllMaybeAuctionMarketplace, fetchAllMaybeAuditTrail, fetchAllMaybeBulkDeal, fetchAllMaybeChannel, fetchAllMaybeComplianceReport, fetchAllMaybeDisputeCase, fetchAllMaybeDynamicPricingEngine, fetchAllMaybeExtension, fetchAllMaybeGovernanceProposal, fetchAllMaybeIncentiveProgram, fetchAllMaybeJobApplication, fetchAllMaybeJobContract, fetchAllMaybeJobPosting, fetchAllMaybeMarketAnalytics, fetchAllMaybeMessage, fetchAllMaybeMultisig, fetchAllMaybeNegotiationChatbot, fetchAllMaybePayment, fetchAllMaybeRbacConfig, fetchAllMaybeReplicationRecord, fetchAllMaybeReplicationTemplate, fetchAllMaybeResaleMarket, fetchAllMaybeRoyaltyStream, fetchAllMaybeServiceListing, fetchAllMaybeServicePurchase, fetchAllMaybeUserRegistry, fetchAllMaybeWorkDelivery, fetchAllMaybeWorkOrder, fetchAllMessage, fetchAllMultisig, fetchAllNegotiationChatbot, fetchAllPayment, fetchAllRbacConfig, fetchAllReplicationRecord, fetchAllReplicationTemplate, fetchAllResaleMarket, fetchAllRoyaltyStream, fetchAllServiceListing, fetchAllServicePurchase, fetchAllUserRegistry, fetchAllWorkDelivery, fetchAllWorkOrder, fetchAnalyticsDashboard, fetchArbitratorRegistry, fetchAuctionMarketplace, fetchAuditTrail, fetchBulkDeal, fetchChannel, fetchComplianceReport, fetchDisputeCase, fetchDynamicPricingEngine, fetchExtension, fetchGovernanceProposal, fetchIncentiveProgram, fetchJobApplication, fetchJobContract, fetchJobPosting, fetchMarketAnalytics, fetchMaybeA2AMessage, fetchMaybeA2ASession, fetchMaybeA2AStatus, fetchMaybeAgent, fetchMaybeAgentIncentives, fetchMaybeAgentTreeConfig, fetchMaybeAgentVerification, fetchMaybeAnalyticsDashboard, fetchMaybeArbitratorRegistry, fetchMaybeAuctionMarketplace, fetchMaybeAuditTrail, fetchMaybeBulkDeal, fetchMaybeChannel, fetchMaybeComplianceReport, fetchMaybeDisputeCase, fetchMaybeDynamicPricingEngine, fetchMaybeExtension, fetchMaybeGovernanceProposal, fetchMaybeIncentiveProgram, fetchMaybeJobApplication, fetchMaybeJobContract, fetchMaybeJobPosting, fetchMaybeMarketAnalytics, fetchMaybeMessage, fetchMaybeMultisig, fetchMaybeNegotiationChatbot, fetchMaybePayment, fetchMaybeRbacConfig, fetchMaybeReplicationRecord, fetchMaybeReplicationTemplate, fetchMaybeResaleMarket, fetchMaybeRoyaltyStream, fetchMaybeServiceListing, fetchMaybeServicePurchase, fetchMaybeUserRegistry, fetchMaybeWorkDelivery, fetchMaybeWorkOrder, fetchMessage, fetchMultisig, fetchNegotiationChatbot, fetchPayment, fetchRbacConfig, fetchReplicationRecord, fetchReplicationTemplate, fetchResaleMarket, fetchRoyaltyStream, fetchServiceListing, fetchServicePurchase, fetchUserRegistry, fetchWorkDelivery, fetchWorkOrder, getA2AMessageCodec, getA2AMessageDecoder, getA2AMessageDiscriminatorBytes, getA2AMessageEncoder, getA2AMessageSentEventCodec, getA2AMessageSentEventDecoder, getA2AMessageSentEventEncoder, getA2ASessionCodec, getA2ASessionCreatedEventCodec, getA2ASessionCreatedEventDecoder, getA2ASessionCreatedEventEncoder, getA2ASessionDecoder, getA2ASessionDiscriminatorBytes, getA2ASessionEncoder, getA2AStatusCodec, getA2AStatusDecoder, getA2AStatusDiscriminatorBytes, getA2AStatusEncoder, getA2AStatusUpdatedEventCodec, getA2AStatusUpdatedEventDecoder, getA2AStatusUpdatedEventEncoder, getAcceptJobApplicationDiscriminatorBytes, getAcceptJobApplicationInstruction, getAcceptJobApplicationInstructionAsync, getAcceptJobApplicationInstructionDataCodec, getAcceptJobApplicationInstructionDataDecoder, getAcceptJobApplicationInstructionDataEncoder, getAccessAuditConfigCodec, getAccessAuditConfigDecoder, getAccessAuditConfigEncoder, getAccessPolicyCodec, getAccessPolicyDecoder, getAccessPolicyEncoder, getAccountLockoutPoliciesCodec, getAccountLockoutPoliciesDecoder, getAccountLockoutPoliciesEncoder, getActionCodec, getActionDecoder, getActionEncoder, getActionExportCodec, getActionExportDecoder, getActionExportEncoder, getActivateAgentDiscriminatorBytes, getActivateAgentInstruction, getActivateAgentInstructionAsync, getActivateAgentInstructionDataCodec, getActivateAgentInstructionDataDecoder, getActivateAgentInstructionDataEncoder, getActivationRequirementCodec, getActivationRequirementDecoder, getActivationRequirementEncoder, getActivationRequirementTypeCodec, getActivationRequirementTypeDecoder, getActivationRequirementTypeEncoder, getAddTopAgentDiscriminatorBytes, getAddTopAgentInstruction, getAddTopAgentInstructionDataCodec, getAddTopAgentInstructionDataDecoder, getAddTopAgentInstructionDataEncoder, getAgentCodec, getAgentDecoder, getAgentDiscriminatorBytes, getAgentEncoder, getAgentIncentivesCodec, getAgentIncentivesDecoder, getAgentIncentivesDiscriminatorBytes, getAgentIncentivesEncoder, getAgentIncentivesSize, getAgentListedForResaleEventCodec, getAgentListedForResaleEventDecoder, getAgentListedForResaleEventEncoder, getAgentRegisteredEventCodec, getAgentRegisteredEventDecoder, getAgentRegisteredEventEncoder, getAgentReplicatedEventCodec, getAgentReplicatedEventDecoder, getAgentReplicatedEventEncoder, getAgentServiceUpdatedEventCodec, getAgentServiceUpdatedEventDecoder, getAgentServiceUpdatedEventEncoder, getAgentStatusChangedEventCodec, getAgentStatusChangedEventDecoder, getAgentStatusChangedEventEncoder, getAgentTreeConfigCodec, getAgentTreeConfigDecoder, getAgentTreeConfigDiscriminatorBytes, getAgentTreeConfigEncoder, getAgentTreeConfigSize, getAgentUpdatedEventCodec, getAgentUpdatedEventDecoder, getAgentUpdatedEventEncoder, getAgentVerificationCodec, getAgentVerificationDataCodec, getAgentVerificationDataDecoder, getAgentVerificationDataEncoder, getAgentVerificationDecoder, getAgentVerificationDiscriminatorBytes, getAgentVerificationEncoder, getAgingPolicyCodec, getAgingPolicyDecoder, getAgingPolicyEncoder, getAnalyticsDashboardCodec, getAnalyticsDashboardCreatedEventCodec, getAnalyticsDashboardCreatedEventDecoder, getAnalyticsDashboardCreatedEventEncoder, getAnalyticsDashboardDecoder, getAnalyticsDashboardDiscriminatorBytes, getAnalyticsDashboardEncoder, getAnalyticsDashboardUpdatedEventCodec, getAnalyticsDashboardUpdatedEventDecoder, getAnalyticsDashboardUpdatedEventEncoder, getApplicationStatusCodec, getApplicationStatusDecoder, getApplicationStatusEncoder, getApplyToJobDiscriminatorBytes, getApplyToJobInstruction, getApplyToJobInstructionAsync, getApplyToJobInstructionDataCodec, getApplyToJobInstructionDataDecoder, getApplyToJobInstructionDataEncoder, getApprovalLevelCodec, getApprovalLevelDecoder, getApprovalLevelEncoder, getApproveExtensionDiscriminatorBytes, getApproveExtensionInstruction, getApproveExtensionInstructionDataCodec, getApproveExtensionInstructionDataDecoder, getApproveExtensionInstructionDataEncoder, getArbitratorRegistryCodec, getArbitratorRegistryDecoder, getArbitratorRegistryDiscriminatorBytes, getArbitratorRegistryEncoder, getAuctionBidCodec, getAuctionBidDecoder, getAuctionBidEncoder, getAuctionBidPlacedEventCodec, getAuctionBidPlacedEventDecoder, getAuctionBidPlacedEventEncoder, getAuctionFailedEventCodec, getAuctionFailedEventDecoder, getAuctionFailedEventEncoder, getAuctionFinalizedEventCodec, getAuctionFinalizedEventDecoder, getAuctionFinalizedEventEncoder, getAuctionMarketplaceCodec, getAuctionMarketplaceDecoder, getAuctionMarketplaceDiscriminatorBytes, getAuctionMarketplaceEncoder, getAuctionStatusCodec, getAuctionStatusDecoder, getAuctionStatusEncoder, getAuctionTypeCodec, getAuctionTypeDecoder, getAuctionTypeEncoder, getAuditActionCodec, getAuditActionDecoder, getAuditActionEncoder, getAuditConfigCodec, getAuditConfigDecoder, getAuditConfigEncoder, getAuditContextCodec, getAuditContextDecoder, getAuditContextEncoder, getAuditContextExportCodec, getAuditContextExportDecoder, getAuditContextExportEncoder, getAuditEntryCodec, getAuditEntryDecoder, getAuditEntryEncoder, getAuditTrailCodec, getAuditTrailDecoder, getAuditTrailDiscriminatorBytes, getAuditTrailEncoder, getAuditTrailInitializedEventCodec, getAuditTrailInitializedEventDecoder, getAuditTrailInitializedEventEncoder, getAuthenticationLevelCodec, getAuthenticationLevelDecoder, getAuthenticationLevelEncoder, getAuthenticationMethodCodec, getAuthenticationMethodDecoder, getAuthenticationMethodEncoder, getAuthenticationPoliciesCodec, getAuthenticationPoliciesDecoder, getAuthenticationPoliciesEncoder, getAuthenticationStrengthCodec, getAuthenticationStrengthDecoder, getAuthenticationStrengthEncoder, getAuthorizationPoliciesCodec, getAuthorizationPoliciesDecoder, getAuthorizationPoliciesEncoder, getBackupFrequencyCodec, getBackupFrequencyDecoder, getBackupFrequencyEncoder, getBiometricPoliciesCodec, getBiometricPoliciesDecoder, getBiometricPoliciesEncoder, getBiometricProtectionCodec, getBiometricProtectionDecoder, getBiometricProtectionEncoder, getBiometricQualityCodec, getBiometricQualityDecoder, getBiometricQualityEncoder, getBiometricQualityExportCodec, getBiometricQualityExportDecoder, getBiometricQualityExportEncoder, getBiometricStorageMethodCodec, getBiometricStorageMethodDecoder, getBiometricStorageMethodEncoder, getBiometricTypeCodec, getBiometricTypeDecoder, getBiometricTypeEncoder, getBulkDealBatchExecutedEventCodec, getBulkDealBatchExecutedEventDecoder, getBulkDealBatchExecutedEventEncoder, getBulkDealCodec, getBulkDealCreatedEventCodec, getBulkDealCreatedEventDecoder, getBulkDealCreatedEventEncoder, getBulkDealDecoder, getBulkDealDiscriminatorBytes, getBulkDealEncoder, getChannelCodec, getChannelCreatedEventCodec, getChannelCreatedEventDecoder, getChannelCreatedEventEncoder, getChannelDecoder, getChannelDiscriminatorBytes, getChannelEncoder, getChannelTypeCodec, getChannelTypeDecoder, getChannelTypeEncoder, getComplianceFlagsCodec, getComplianceFlagsDecoder, getComplianceFlagsEncoder, getComplianceMetricsCodec, getComplianceMetricsDecoder, getComplianceMetricsEncoder, getCompliancePoliciesCodec, getCompliancePoliciesDecoder, getCompliancePoliciesEncoder, getComplianceReportCodec, getComplianceReportDecoder, getComplianceReportDiscriminatorBytes, getComplianceReportEncoder, getComplianceReportGeneratedEventCodec, getComplianceReportGeneratedEventDecoder, getComplianceReportGeneratedEventEncoder, getComplianceStatusCodec, getComplianceStatusDecoder, getComplianceStatusEncoder, getComplianceStatusExportCodec, getComplianceStatusExportDecoder, getComplianceStatusExportEncoder, getCompressedAgentCreatedEventCodec, getCompressedAgentCreatedEventDecoder, getCompressedAgentCreatedEventEncoder, getConditionTypeCodec, getConditionTypeDecoder, getConditionTypeEncoder, getConstraintConditionCodec, getConstraintConditionDecoder, getConstraintConditionEncoder, getConstraintOperatorCodec, getConstraintOperatorDecoder, getConstraintOperatorEncoder, getContractStatusCodec, getContractStatusDecoder, getContractStatusEncoder, getCounterOfferMadeEventCodec, getCounterOfferMadeEventDecoder, getCounterOfferMadeEventEncoder, getCreateA2aSessionDiscriminatorBytes, getCreateA2aSessionInstruction, getCreateA2aSessionInstructionAsync, getCreateA2aSessionInstructionDataCodec, getCreateA2aSessionInstructionDataDecoder, getCreateA2aSessionInstructionDataEncoder, getCreateAnalyticsDashboardDiscriminatorBytes, getCreateAnalyticsDashboardInstruction, getCreateAnalyticsDashboardInstructionAsync, getCreateAnalyticsDashboardInstructionDataCodec, getCreateAnalyticsDashboardInstructionDataDecoder, getCreateAnalyticsDashboardInstructionDataEncoder, getCreateBulkDealDiscriminatorBytes, getCreateBulkDealInstruction, getCreateBulkDealInstructionAsync, getCreateBulkDealInstructionDataCodec, getCreateBulkDealInstructionDataDecoder, getCreateBulkDealInstructionDataEncoder, getCreateChannelDiscriminatorBytes, getCreateChannelInstruction, getCreateChannelInstructionDataCodec, getCreateChannelInstructionDataDecoder, getCreateChannelInstructionDataEncoder, getCreateDynamicPricingEngineDiscriminatorBytes, getCreateDynamicPricingEngineInstruction, getCreateDynamicPricingEngineInstructionAsync, getCreateDynamicPricingEngineInstructionDataCodec, getCreateDynamicPricingEngineInstructionDataDecoder, getCreateDynamicPricingEngineInstructionDataEncoder, getCreateIncentiveProgramDiscriminatorBytes, getCreateIncentiveProgramInstruction, getCreateIncentiveProgramInstructionAsync, getCreateIncentiveProgramInstructionDataCodec, getCreateIncentiveProgramInstructionDataDecoder, getCreateIncentiveProgramInstructionDataEncoder, getCreateJobPostingDiscriminatorBytes, getCreateJobPostingInstruction, getCreateJobPostingInstructionAsync, getCreateJobPostingInstructionDataCodec, getCreateJobPostingInstructionDataDecoder, getCreateJobPostingInstructionDataEncoder, getCreateMarketAnalyticsDiscriminatorBytes, getCreateMarketAnalyticsInstruction, getCreateMarketAnalyticsInstructionAsync, getCreateMarketAnalyticsInstructionDataCodec, getCreateMarketAnalyticsInstructionDataDecoder, getCreateMarketAnalyticsInstructionDataEncoder, getCreateMultisigDiscriminatorBytes, getCreateMultisigInstruction, getCreateMultisigInstructionAsync, getCreateMultisigInstructionDataCodec, getCreateMultisigInstructionDataDecoder, getCreateMultisigInstructionDataEncoder, getCreateReplicationTemplateDiscriminatorBytes, getCreateReplicationTemplateInstruction, getCreateReplicationTemplateInstructionAsync, getCreateReplicationTemplateInstructionDataCodec, getCreateReplicationTemplateInstructionDataDecoder, getCreateReplicationTemplateInstructionDataEncoder, getCreateRoyaltyStreamDiscriminatorBytes, getCreateRoyaltyStreamInstruction, getCreateRoyaltyStreamInstructionAsync, getCreateRoyaltyStreamInstructionDataCodec, getCreateRoyaltyStreamInstructionDataDecoder, getCreateRoyaltyStreamInstructionDataEncoder, getCreateServiceAuctionDiscriminatorBytes, getCreateServiceAuctionInstruction, getCreateServiceAuctionInstructionAsync, getCreateServiceAuctionInstructionDataCodec, getCreateServiceAuctionInstructionDataDecoder, getCreateServiceAuctionInstructionDataEncoder, getCreateServiceListingDiscriminatorBytes, getCreateServiceListingInstruction, getCreateServiceListingInstructionAsync, getCreateServiceListingInstructionDataCodec, getCreateServiceListingInstructionDataDecoder, getCreateServiceListingInstructionDataEncoder, getCreateWorkOrderDiscriminatorBytes, getCreateWorkOrderInstruction, getCreateWorkOrderInstructionDataCodec, getCreateWorkOrderInstructionDataDecoder, getCreateWorkOrderInstructionDataEncoder, getDataAccessLevelCodec, getDataAccessLevelDecoder, getDataAccessLevelEncoder, getDataProtectionPoliciesCodec, getDataProtectionPoliciesDecoder, getDataProtectionPoliciesEncoder, getDeactivateAgentDiscriminatorBytes, getDeactivateAgentInstruction, getDeactivateAgentInstructionAsync, getDeactivateAgentInstructionDataCodec, getDeactivateAgentInstructionDataDecoder, getDeactivateAgentInstructionDataEncoder, getDealTypeCodec, getDealTypeDecoder, getDealTypeEncoder, getDegradationHandlingCodec, getDegradationHandlingDecoder, getDegradationHandlingEncoder, getDelegationInfoCodec, getDelegationInfoDecoder, getDelegationInfoEncoder, getDelegationScopeCodec, getDelegationScopeDecoder, getDelegationScopeEncoder, getDeliverableCodec, getDeliverableDecoder, getDeliverableEncoder, getDisputeCaseCodec, getDisputeCaseDecoder, getDisputeCaseDiscriminatorBytes, getDisputeCaseEncoder, getDisputeEvidenceCodec, getDisputeEvidenceDecoder, getDisputeEvidenceEncoder, getDisputeEvidenceSubmittedEventCodec, getDisputeEvidenceSubmittedEventDecoder, getDisputeEvidenceSubmittedEventEncoder, getDisputeFiledEventCodec, getDisputeFiledEventDecoder, getDisputeFiledEventEncoder, getDisputeResolvedEventCodec, getDisputeResolvedEventDecoder, getDisputeResolvedEventEncoder, getDisputeStatusCodec, getDisputeStatusDecoder, getDisputeStatusEncoder, getDistributeIncentivesDiscriminatorBytes, getDistributeIncentivesInstruction, getDistributeIncentivesInstructionDataCodec, getDistributeIncentivesInstructionDataDecoder, getDistributeIncentivesInstructionDataEncoder, getDynamicPricingConfigCodec, getDynamicPricingConfigDecoder, getDynamicPricingConfigEncoder, getDynamicPricingConfigExportCodec, getDynamicPricingConfigExportDecoder, getDynamicPricingConfigExportEncoder, getDynamicPricingEngineCodec, getDynamicPricingEngineCreatedEventCodec, getDynamicPricingEngineCreatedEventDecoder, getDynamicPricingEngineCreatedEventEncoder, getDynamicPricingEngineDecoder, getDynamicPricingEngineDiscriminatorBytes, getDynamicPricingEngineEncoder, getDynamicPricingUpdatedEventCodec, getDynamicPricingUpdatedEventDecoder, getDynamicPricingUpdatedEventEncoder, getEmergencyAccessConfigCodec, getEmergencyAccessConfigDecoder, getEmergencyAccessConfigEncoder, getEmergencyConfigCodec, getEmergencyConfigDecoder, getEmergencyConfigEncoder, getEnforcementLevelCodec, getEnforcementLevelDecoder, getEnforcementLevelEncoder, getExecuteBulkDealBatchDiscriminatorBytes, getExecuteBulkDealBatchInstruction, getExecuteBulkDealBatchInstructionAsync, getExecuteBulkDealBatchInstructionDataCodec, getExecuteBulkDealBatchInstructionDataDecoder, getExecuteBulkDealBatchInstructionDataEncoder, getExecutionConditionCodec, getExecutionConditionDecoder, getExecutionConditionEncoder, getExecutionParamsCodec, getExecutionParamsDecoder, getExecutionParamsEncoder, getExportActionDiscriminatorBytes, getExportActionInstruction, getExportActionInstructionDataCodec, getExportActionInstructionDataDecoder, getExportActionInstructionDataEncoder, getExportAuditContextDiscriminatorBytes, getExportAuditContextInstruction, getExportAuditContextInstructionDataCodec, getExportAuditContextInstructionDataDecoder, getExportAuditContextInstructionDataEncoder, getExportBiometricQualityDiscriminatorBytes, getExportBiometricQualityInstruction, getExportBiometricQualityInstructionDataCodec, getExportBiometricQualityInstructionDataDecoder, getExportBiometricQualityInstructionDataEncoder, getExportComplianceStatusDiscriminatorBytes, getExportComplianceStatusInstruction, getExportComplianceStatusInstructionDataCodec, getExportComplianceStatusInstructionDataDecoder, getExportComplianceStatusInstructionDataEncoder, getExportDynamicPricingConfigDiscriminatorBytes, getExportDynamicPricingConfigInstruction, getExportDynamicPricingConfigInstructionDataCodec, getExportDynamicPricingConfigInstructionDataDecoder, getExportDynamicPricingConfigInstructionDataEncoder, getExportMultisigConfigDiscriminatorBytes, getExportMultisigConfigInstruction, getExportMultisigConfigInstructionDataCodec, getExportMultisigConfigInstructionDataDecoder, getExportMultisigConfigInstructionDataEncoder, getExportReportEntryDiscriminatorBytes, getExportReportEntryInstruction, getExportReportEntryInstructionDataCodec, getExportReportEntryInstructionDataDecoder, getExportReportEntryInstructionDataEncoder, getExportResourceConstraintsDiscriminatorBytes, getExportResourceConstraintsInstruction, getExportResourceConstraintsInstructionDataCodec, getExportResourceConstraintsInstructionDataDecoder, getExportResourceConstraintsInstructionDataEncoder, getExportRuleConditionDiscriminatorBytes, getExportRuleConditionInstruction, getExportRuleConditionInstructionDataCodec, getExportRuleConditionInstructionDataDecoder, getExportRuleConditionInstructionDataEncoder, getExtensionApprovedEventCodec, getExtensionApprovedEventDecoder, getExtensionApprovedEventEncoder, getExtensionCodec, getExtensionDecoder, getExtensionDiscriminatorBytes, getExtensionEncoder, getExtensionMetadataCodec, getExtensionMetadataDecoder, getExtensionMetadataEncoder, getExtensionRegisteredEventCodec, getExtensionRegisteredEventDecoder, getExtensionRegisteredEventEncoder, getExtensionStatusCodec, getExtensionStatusDecoder, getExtensionStatusEncoder, getExtensionTypeCodec, getExtensionTypeDecoder, getExtensionTypeEncoder, getFileDisputeDiscriminatorBytes, getFileDisputeInstruction, getFileDisputeInstructionAsync, getFileDisputeInstructionDataCodec, getFileDisputeInstructionDataDecoder, getFileDisputeInstructionDataEncoder, getFinalizeAuctionDiscriminatorBytes, getFinalizeAuctionInstruction, getFinalizeAuctionInstructionDataCodec, getFinalizeAuctionInstructionDataDecoder, getFinalizeAuctionInstructionDataEncoder, getGenerateComplianceReportDiscriminatorBytes, getGenerateComplianceReportInstruction, getGenerateComplianceReportInstructionAsync, getGenerateComplianceReportInstructionDataCodec, getGenerateComplianceReportInstructionDataDecoder, getGenerateComplianceReportInstructionDataEncoder, getGeographicRegionCodec, getGeographicRegionDecoder, getGeographicRegionEncoder, getGhostspeakMarketplaceErrorMessage, getGovernanceProposalCodec, getGovernanceProposalCreatedEventCodec, getGovernanceProposalCreatedEventDecoder, getGovernanceProposalCreatedEventEncoder, getGovernanceProposalDecoder, getGovernanceProposalDiscriminatorBytes, getGovernanceProposalEncoder, getHierarchicalBoundaryCodec, getHierarchicalBoundaryDecoder, getHierarchicalBoundaryEncoder, getIncentiveConfigCodec, getIncentiveConfigDecoder, getIncentiveConfigEncoder, getIncentiveDistributedEventCodec, getIncentiveDistributedEventDecoder, getIncentiveDistributedEventEncoder, getIncentiveProgramCodec, getIncentiveProgramCreatedEventCodec, getIncentiveProgramCreatedEventDecoder, getIncentiveProgramCreatedEventEncoder, getIncentiveProgramDecoder, getIncentiveProgramDiscriminatorBytes, getIncentiveProgramEncoder, getIncentiveProgramSize, getIncidentResponsePoliciesCodec, getIncidentResponsePoliciesDecoder, getIncidentResponsePoliciesEncoder, getInitializeAuditTrailDiscriminatorBytes, getInitializeAuditTrailInstruction, getInitializeAuditTrailInstructionAsync, getInitializeAuditTrailInstructionDataCodec, getInitializeAuditTrailInstructionDataDecoder, getInitializeAuditTrailInstructionDataEncoder, getInitializeGovernanceProposalDiscriminatorBytes, getInitializeGovernanceProposalInstruction, getInitializeGovernanceProposalInstructionAsync, getInitializeGovernanceProposalInstructionDataCodec, getInitializeGovernanceProposalInstructionDataDecoder, getInitializeGovernanceProposalInstructionDataEncoder, getInitializeRbacConfigDiscriminatorBytes, getInitializeRbacConfigInstruction, getInitializeRbacConfigInstructionAsync, getInitializeRbacConfigInstructionDataCodec, getInitializeRbacConfigInstructionDataDecoder, getInitializeRbacConfigInstructionDataEncoder, getInitiateNegotiationDiscriminatorBytes, getInitiateNegotiationInstruction, getInitiateNegotiationInstructionAsync, getInitiateNegotiationInstructionDataCodec, getInitiateNegotiationInstructionDataDecoder, getInitiateNegotiationInstructionDataEncoder, getJobApplicationAcceptedEventCodec, getJobApplicationAcceptedEventDecoder, getJobApplicationAcceptedEventEncoder, getJobApplicationCodec, getJobApplicationDecoder, getJobApplicationDiscriminatorBytes, getJobApplicationEncoder, getJobApplicationSubmittedEventCodec, getJobApplicationSubmittedEventDecoder, getJobApplicationSubmittedEventEncoder, getJobContractCodec, getJobContractDecoder, getJobContractDiscriminatorBytes, getJobContractEncoder, getJobContractSize, getJobPostingCodec, getJobPostingCreatedEventCodec, getJobPostingCreatedEventDecoder, getJobPostingCreatedEventEncoder, getJobPostingDecoder, getJobPostingDiscriminatorBytes, getJobPostingEncoder, getLatitudeRangeCodec, getLatitudeRangeDecoder, getLatitudeRangeEncoder, getListAgentForResaleDiscriminatorBytes, getListAgentForResaleInstruction, getListAgentForResaleInstructionAsync, getListAgentForResaleInstructionDataCodec, getListAgentForResaleInstructionDataDecoder, getListAgentForResaleInstructionDataEncoder, getLocationConstraintsCodec, getLocationConstraintsDecoder, getLocationConstraintsEncoder, getLongitudeRangeCodec, getLongitudeRangeDecoder, getLongitudeRangeEncoder, getMakeCounterOfferDiscriminatorBytes, getMakeCounterOfferInstruction, getMakeCounterOfferInstructionDataCodec, getMakeCounterOfferInstructionDataDecoder, getMakeCounterOfferInstructionDataEncoder, getManageAgentStatusDiscriminatorBytes, getManageAgentStatusInstruction, getManageAgentStatusInstructionAsync, getManageAgentStatusInstructionDataCodec, getManageAgentStatusInstructionDataDecoder, getManageAgentStatusInstructionDataEncoder, getMarketAnalyticsCodec, getMarketAnalyticsCreatedEventCodec, getMarketAnalyticsCreatedEventDecoder, getMarketAnalyticsCreatedEventEncoder, getMarketAnalyticsDecoder, getMarketAnalyticsDiscriminatorBytes, getMarketAnalyticsEncoder, getMarketAnalyticsUpdatedEventCodec, getMarketAnalyticsUpdatedEventDecoder, getMarketAnalyticsUpdatedEventEncoder, getMessageCodec, getMessageDecoder, getMessageDiscriminatorBytes, getMessageEncoder, getMessageSentEventCodec, getMessageSentEventDecoder, getMessageSentEventEncoder, getMessageTypeCodec, getMessageTypeDecoder, getMessageTypeEncoder, getMultisigCodec, getMultisigConfigCodec, getMultisigConfigDecoder, getMultisigConfigEncoder, getMultisigConfigExportCodec, getMultisigConfigExportDecoder, getMultisigConfigExportEncoder, getMultisigCreatedEventCodec, getMultisigCreatedEventDecoder, getMultisigCreatedEventEncoder, getMultisigDecoder, getMultisigDiscriminatorBytes, getMultisigEncoder, getMultisigSignatureCodec, getMultisigSignatureDecoder, getMultisigSignatureEncoder, getNegotiationChatbotCodec, getNegotiationChatbotDecoder, getNegotiationChatbotDiscriminatorBytes, getNegotiationChatbotEncoder, getNegotiationInitiatedEventCodec, getNegotiationInitiatedEventDecoder, getNegotiationInitiatedEventEncoder, getNegotiationStatusCodec, getNegotiationStatusDecoder, getNegotiationStatusEncoder, getNetworkSecurityPoliciesCodec, getNetworkSecurityPoliciesDecoder, getNetworkSecurityPoliciesEncoder, getNotificationMethodCodec, getNotificationMethodDecoder, getNotificationMethodEncoder, getNotificationPriorityCodec, getNotificationPriorityDecoder, getNotificationPriorityEncoder, getNotificationRequirementCodec, getNotificationRequirementDecoder, getNotificationRequirementEncoder, getNotificationTargetCodec, getNotificationTargetDecoder, getNotificationTargetEncoder, getNotificationTargetTypeCodec, getNotificationTargetTypeDecoder, getNotificationTargetTypeEncoder, getNotificationTimingCodec, getNotificationTimingDecoder, getNotificationTimingEncoder, getPasswordPoliciesCodec, getPasswordPoliciesDecoder, getPasswordPoliciesEncoder, getPaymentCodec, getPaymentDecoder, getPaymentDiscriminatorBytes, getPaymentEncoder, getPaymentProcessedEventCodec, getPaymentProcessedEventDecoder, getPaymentProcessedEventEncoder, getPendingTransactionCodec, getPendingTransactionDecoder, getPendingTransactionEncoder, getPermissionCodec, getPermissionConstraintCodec, getPermissionConstraintDecoder, getPermissionConstraintEncoder, getPermissionConstraintTypeCodec, getPermissionConstraintTypeDecoder, getPermissionConstraintTypeEncoder, getPermissionDecoder, getPermissionEncoder, getPermissionMetadataCodec, getPermissionMetadataDecoder, getPermissionMetadataEncoder, getPermissionScopeCodec, getPermissionScopeDecoder, getPermissionScopeEncoder, getPlaceAuctionBidDiscriminatorBytes, getPlaceAuctionBidInstruction, getPlaceAuctionBidInstructionDataCodec, getPlaceAuctionBidInstructionDataDecoder, getPlaceAuctionBidInstructionDataEncoder, getPolicyMetadataCodec, getPolicyMetadataDecoder, getPolicyMetadataEncoder, getPolicyRuleCodec, getPolicyRuleDecoder, getPolicyRuleEncoder, getPolicyScopeCodec, getPolicyScopeDecoder, getPolicyScopeEncoder, getPolicyStatusCodec, getPolicyStatusDecoder, getPolicyStatusEncoder, getPolicyTypeCodec, getPolicyTypeDecoder, getPolicyTypeEncoder, getPricingAlgorithmCodec, getPricingAlgorithmDecoder, getPricingAlgorithmEncoder, getPricingModelCodec, getPricingModelDecoder, getPricingModelEncoder, getProcessPaymentDiscriminatorBytes, getProcessPaymentInstruction, getProcessPaymentInstructionAsync, getProcessPaymentInstructionDataCodec, getProcessPaymentInstructionDataDecoder, getProcessPaymentInstructionDataEncoder, getProposalAccountCodec, getProposalAccountDecoder, getProposalAccountEncoder, getProposalInstructionCodec, getProposalInstructionDecoder, getProposalInstructionEncoder, getProposalMetadataCodec, getProposalMetadataDecoder, getProposalMetadataEncoder, getProposalStatusCodec, getProposalStatusDecoder, getProposalStatusEncoder, getProposalTypeCodec, getProposalTypeDecoder, getProposalTypeEncoder, getPurchaseServiceDiscriminatorBytes, getPurchaseServiceInstruction, getPurchaseServiceInstructionAsync, getPurchaseServiceInstructionDataCodec, getPurchaseServiceInstructionDataDecoder, getPurchaseServiceInstructionDataEncoder, getPurchaseStatusCodec, getPurchaseStatusDecoder, getPurchaseStatusEncoder, getQuorumMethodCodec, getQuorumMethodDecoder, getQuorumMethodEncoder, getQuorumRequirementsCodec, getQuorumRequirementsDecoder, getQuorumRequirementsEncoder, getRbacConfigCodec, getRbacConfigDecoder, getRbacConfigDiscriminatorBytes, getRbacConfigEncoder, getRbacConfigInitializedEventCodec, getRbacConfigInitializedEventDecoder, getRbacConfigInitializedEventEncoder, getRegisterAgentCompressedDiscriminatorBytes, getRegisterAgentCompressedInstruction, getRegisterAgentCompressedInstructionAsync, getRegisterAgentCompressedInstructionDataCodec, getRegisterAgentCompressedInstructionDataDecoder, getRegisterAgentCompressedInstructionDataEncoder, getRegisterAgentDiscriminatorBytes, getRegisterAgentInstruction, getRegisterAgentInstructionAsync, getRegisterAgentInstructionDataCodec, getRegisterAgentInstructionDataDecoder, getRegisterAgentInstructionDataEncoder, getRegisterExtensionDiscriminatorBytes, getRegisterExtensionInstruction, getRegisterExtensionInstructionAsync, getRegisterExtensionInstructionDataCodec, getRegisterExtensionInstructionDataDecoder, getRegisterExtensionInstructionDataEncoder, getReplicateAgentDiscriminatorBytes, getReplicateAgentInstruction, getReplicateAgentInstructionAsync, getReplicateAgentInstructionDataCodec, getReplicateAgentInstructionDataDecoder, getReplicateAgentInstructionDataEncoder, getReplicationRecordCodec, getReplicationRecordDecoder, getReplicationRecordDiscriminatorBytes, getReplicationRecordEncoder, getReplicationTemplateCodec, getReplicationTemplateCreatedEventCodec, getReplicationTemplateCreatedEventDecoder, getReplicationTemplateCreatedEventEncoder, getReplicationTemplateDecoder, getReplicationTemplateDiscriminatorBytes, getReplicationTemplateEncoder, getReportDataCodec, getReportDataDecoder, getReportDataEncoder, getReportEntryCodec, getReportEntryDecoder, getReportEntryEncoder, getReportEntryExportCodec, getReportEntryExportDecoder, getReportEntryExportEncoder, getReportStatusCodec, getReportStatusDecoder, getReportStatusEncoder, getReportSummaryCodec, getReportSummaryDecoder, getReportSummaryEncoder, getReportTypeCodec, getReportTypeDecoder, getReportTypeEncoder, getReportingFrequencyCodec, getReportingFrequencyDecoder, getReportingFrequencyEncoder, getResaleMarketCodec, getResaleMarketDecoder, getResaleMarketDiscriminatorBytes, getResaleMarketEncoder, getResolveDisputeDiscriminatorBytes, getResolveDisputeInstruction, getResolveDisputeInstructionAsync, getResolveDisputeInstructionDataCodec, getResolveDisputeInstructionDataDecoder, getResolveDisputeInstructionDataEncoder, getResourceConstraintsCodec, getResourceConstraintsDecoder, getResourceConstraintsEncoder, getResourceConstraintsExportCodec, getResourceConstraintsExportDecoder, getResourceConstraintsExportEncoder, getReviewScheduleCodec, getReviewScheduleDecoder, getReviewScheduleEncoder, getRiskAcceptanceCodec, getRiskAcceptanceDecoder, getRiskAcceptanceEncoder, getRiskAssessmentCodec, getRiskAssessmentDecoder, getRiskAssessmentEncoder, getRiskCategoryCodec, getRiskCategoryDecoder, getRiskCategoryEncoder, getRiskFactorCodec, getRiskFactorDecoder, getRiskFactorEncoder, getRiskIndicatorCodec, getRiskIndicatorDecoder, getRiskIndicatorEncoder, getRiskLevelCodec, getRiskLevelDecoder, getRiskLevelEncoder, getRoleCodec, getRoleConstraintsCodec, getRoleConstraintsDecoder, getRoleConstraintsEncoder, getRoleDecoder, getRoleEncoder, getRoleMetadataCodec, getRoleMetadataDecoder, getRoleMetadataEncoder, getRoleStatusCodec, getRoleStatusDecoder, getRoleStatusEncoder, getRoleTypeCodec, getRoleTypeDecoder, getRoleTypeEncoder, getRoyaltyConfigCodec, getRoyaltyConfigDecoder, getRoyaltyConfigEncoder, getRoyaltyStreamCodec, getRoyaltyStreamCreatedEventCodec, getRoyaltyStreamCreatedEventDecoder, getRoyaltyStreamCreatedEventEncoder, getRoyaltyStreamDecoder, getRoyaltyStreamDiscriminatorBytes, getRoyaltyStreamEncoder, getRoyaltyStreamSize, getRuleConditionCodec, getRuleConditionDecoder, getRuleConditionEncoder, getRuleConditionExportCodec, getRuleConditionExportDecoder, getRuleConditionExportEncoder, getRuleEffectCodec, getRuleEffectDecoder, getRuleEffectEncoder, getScopeBoundariesCodec, getScopeBoundariesDecoder, getScopeBoundariesEncoder, getScopeInheritanceCodec, getScopeInheritanceDecoder, getScopeInheritanceEncoder, getScopeTypeCodec, getScopeTypeDecoder, getScopeTypeEncoder, getSecurityEventTypeCodec, getSecurityEventTypeDecoder, getSecurityEventTypeEncoder, getSecurityPoliciesCodec, getSecurityPoliciesDecoder, getSecurityPoliciesEncoder, getSendA2aMessageDiscriminatorBytes, getSendA2aMessageInstruction, getSendA2aMessageInstructionDataCodec, getSendA2aMessageInstructionDataDecoder, getSendA2aMessageInstructionDataEncoder, getSendMessageDiscriminatorBytes, getSendMessageInstruction, getSendMessageInstructionDataCodec, getSendMessageInstructionDataDecoder, getSendMessageInstructionDataEncoder, getServiceAuctionCreatedEventCodec, getServiceAuctionCreatedEventDecoder, getServiceAuctionCreatedEventEncoder, getServiceListingCodec, getServiceListingCreatedEventCodec, getServiceListingCreatedEventDecoder, getServiceListingCreatedEventEncoder, getServiceListingDecoder, getServiceListingDiscriminatorBytes, getServiceListingEncoder, getServicePurchaseCodec, getServicePurchaseDecoder, getServicePurchaseDiscriminatorBytes, getServicePurchaseEncoder, getServicePurchasedEventCodec, getServicePurchasedEventDecoder, getServicePurchasedEventEncoder, getSessionConstraintsCodec, getSessionConstraintsDecoder, getSessionConstraintsEncoder, getSessionPoliciesCodec, getSessionPoliciesDecoder, getSessionPoliciesEncoder, getSodConstraintCodec, getSodConstraintDecoder, getSodConstraintEncoder, getSodConstraintTypeCodec, getSodConstraintTypeDecoder, getSodConstraintTypeEncoder, getStepUpTriggerCodec, getStepUpTriggerDecoder, getStepUpTriggerEncoder, getSubmissionDetailsCodec, getSubmissionDetailsDecoder, getSubmissionDetailsEncoder, getSubmitDisputeEvidenceDiscriminatorBytes, getSubmitDisputeEvidenceInstruction, getSubmitDisputeEvidenceInstructionAsync, getSubmitDisputeEvidenceInstructionDataCodec, getSubmitDisputeEvidenceInstructionDataDecoder, getSubmitDisputeEvidenceInstructionDataEncoder, getSubmitWorkDeliveryDiscriminatorBytes, getSubmitWorkDeliveryInstruction, getSubmitWorkDeliveryInstructionAsync, getSubmitWorkDeliveryInstructionDataCodec, getSubmitWorkDeliveryInstructionDataDecoder, getSubmitWorkDeliveryInstructionDataEncoder, getTimeConstraintsCodec, getTimeConstraintsDecoder, getTimeConstraintsEncoder, getTimeLockCodec, getTimeLockDecoder, getTimeLockEncoder, getTimeLockTypeCodec, getTimeLockTypeDecoder, getTimeLockTypeEncoder, getTopAgentAddedEventCodec, getTopAgentAddedEventDecoder, getTopAgentAddedEventEncoder, getTransactionPriorityCodec, getTransactionPriorityDecoder, getTransactionPriorityEncoder, getTransactionStatusCodec, getTransactionStatusDecoder, getTransactionStatusEncoder, getTransactionTypeCodec, getTransactionTypeDecoder, getTransactionTypeEncoder, getTrendDirectionCodec, getTrendDirectionDecoder, getTrendDirectionEncoder, getUnlockMethodCodec, getUnlockMethodDecoder, getUnlockMethodEncoder, getUpdateA2aStatusDiscriminatorBytes, getUpdateA2aStatusInstruction, getUpdateA2aStatusInstructionAsync, getUpdateA2aStatusInstructionDataCodec, getUpdateA2aStatusInstructionDataDecoder, getUpdateA2aStatusInstructionDataEncoder, getUpdateAgentDiscriminatorBytes, getUpdateAgentInstruction, getUpdateAgentInstructionAsync, getUpdateAgentInstructionDataCodec, getUpdateAgentInstructionDataDecoder, getUpdateAgentInstructionDataEncoder, getUpdateAgentReputationDiscriminatorBytes, getUpdateAgentReputationInstruction, getUpdateAgentReputationInstructionAsync, getUpdateAgentReputationInstructionDataCodec, getUpdateAgentReputationInstructionDataDecoder, getUpdateAgentReputationInstructionDataEncoder, getUpdateAgentServiceDiscriminatorBytes, getUpdateAgentServiceInstruction, getUpdateAgentServiceInstructionAsync, getUpdateAgentServiceInstructionDataCodec, getUpdateAgentServiceInstructionDataDecoder, getUpdateAgentServiceInstructionDataEncoder, getUpdateAnalyticsDashboardDiscriminatorBytes, getUpdateAnalyticsDashboardInstruction, getUpdateAnalyticsDashboardInstructionAsync, getUpdateAnalyticsDashboardInstructionDataCodec, getUpdateAnalyticsDashboardInstructionDataDecoder, getUpdateAnalyticsDashboardInstructionDataEncoder, getUpdateDynamicPricingDiscriminatorBytes, getUpdateDynamicPricingInstruction, getUpdateDynamicPricingInstructionDataCodec, getUpdateDynamicPricingInstructionDataDecoder, getUpdateDynamicPricingInstructionDataEncoder, getUpdateMarketAnalyticsDiscriminatorBytes, getUpdateMarketAnalyticsInstruction, getUpdateMarketAnalyticsInstructionDataCodec, getUpdateMarketAnalyticsInstructionDataDecoder, getUpdateMarketAnalyticsInstructionDataEncoder, getUserRegistryCodec, getUserRegistryDecoder, getUserRegistryDiscriminatorBytes, getUserRegistryEncoder, getUserRegistrySize, getValueTypeCodec, getValueTypeDecoder, getValueTypeEncoder, getVerifyAgentDiscriminatorBytes, getVerifyAgentInstruction, getVerifyAgentInstructionAsync, getVerifyAgentInstructionDataCodec, getVerifyAgentInstructionDataDecoder, getVerifyAgentInstructionDataEncoder, getViolationSeverityCodec, getViolationSeverityDecoder, getViolationSeverityEncoder, getVolumeTierCodec, getVolumeTierDecoder, getVolumeTierEncoder, getVoteChoiceCodec, getVoteChoiceDecoder, getVoteChoiceEncoder, getVoteCodec, getVoteDecoder, getVoteEncoder, getVotingResultsCodec, getVotingResultsDecoder, getVotingResultsEncoder, getWorkDeliveryCodec, getWorkDeliveryDecoder, getWorkDeliveryDiscriminatorBytes, getWorkDeliveryEncoder, getWorkDeliverySubmittedEventCodec, getWorkDeliverySubmittedEventDecoder, getWorkDeliverySubmittedEventEncoder, getWorkOrderCodec, getWorkOrderCreatedEventCodec, getWorkOrderCreatedEventDecoder, getWorkOrderCreatedEventEncoder, getWorkOrderDecoder, getWorkOrderDiscriminatorBytes, getWorkOrderEncoder, getWorkOrderStatusCodec, getWorkOrderStatusDecoder, getWorkOrderStatusEncoder, identifyGhostspeakMarketplaceAccount, identifyGhostspeakMarketplaceInstruction, isDelegationScope, isGhostspeakMarketplaceError, parseAcceptJobApplicationInstruction, parseActivateAgentInstruction, parseAddTopAgentInstruction, parseApplyToJobInstruction, parseApproveExtensionInstruction, parseCreateA2aSessionInstruction, parseCreateAnalyticsDashboardInstruction, parseCreateBulkDealInstruction, parseCreateChannelInstruction, parseCreateDynamicPricingEngineInstruction, parseCreateIncentiveProgramInstruction, parseCreateJobPostingInstruction, parseCreateMarketAnalyticsInstruction, parseCreateMultisigInstruction, parseCreateReplicationTemplateInstruction, parseCreateRoyaltyStreamInstruction, parseCreateServiceAuctionInstruction, parseCreateServiceListingInstruction, parseCreateWorkOrderInstruction, parseDeactivateAgentInstruction, parseDistributeIncentivesInstruction, parseExecuteBulkDealBatchInstruction, parseExportActionInstruction, parseExportAuditContextInstruction, parseExportBiometricQualityInstruction, parseExportComplianceStatusInstruction, parseExportDynamicPricingConfigInstruction, parseExportMultisigConfigInstruction, parseExportReportEntryInstruction, parseExportResourceConstraintsInstruction, parseExportRuleConditionInstruction, parseFileDisputeInstruction, parseFinalizeAuctionInstruction, parseGenerateComplianceReportInstruction, parseInitializeAuditTrailInstruction, parseInitializeGovernanceProposalInstruction, parseInitializeRbacConfigInstruction, parseInitiateNegotiationInstruction, parseListAgentForResaleInstruction, parseMakeCounterOfferInstruction, parseManageAgentStatusInstruction, parsePlaceAuctionBidInstruction, parseProcessPaymentInstruction, parsePurchaseServiceInstruction, parseRegisterAgentCompressedInstruction, parseRegisterAgentInstruction, parseRegisterExtensionInstruction, parseReplicateAgentInstruction, parseResolveDisputeInstruction, parseSendA2aMessageInstruction, parseSendMessageInstruction, parseSubmitDisputeEvidenceInstruction, parseSubmitWorkDeliveryInstruction, parseUpdateA2aStatusInstruction, parseUpdateAgentInstruction, parseUpdateAgentReputationInstruction, parseUpdateAgentServiceInstruction, parseUpdateAnalyticsDashboardInstruction, parseUpdateDynamicPricingInstruction, parseUpdateMarketAnalyticsInstruction, parseVerifyAgentInstruction };
|
|
14458
|
+
export { A2AInstructions, type A2AMessage, type A2AMessageArgs, type A2AMessageSentEvent, type A2AMessageSentEventArgs, type A2ASession, type A2ASessionArgs, type A2ASessionCreatedEvent, type A2ASessionCreatedEventArgs, type A2AStatus, type A2AStatusArgs, type A2AStatusUpdatedEvent, type A2AStatusUpdatedEventArgs, A2_A_MESSAGE_DISCRIMINATOR, A2_A_SESSION_DISCRIMINATOR, A2_A_STATUS_DISCRIMINATOR, ACCEPT_JOB_APPLICATION_DISCRIMINATOR, ACTIVATE_AGENT_DISCRIMINATOR, ADD_TOP_AGENT_DISCRIMINATOR, AGENT_DISCRIMINATOR, AGENT_INCENTIVES_DISCRIMINATOR, AGENT_TREE_CONFIG_DISCRIMINATOR, AGENT_VERIFICATION_DISCRIMINATOR, ANALYTICS_DASHBOARD_DISCRIMINATOR, APPLY_TO_JOB_DISCRIMINATOR, APPROVE_EXTENSION_DISCRIMINATOR, ARBITRATOR_REGISTRY_DISCRIMINATOR, AUCTION_MARKETPLACE_DISCRIMINATOR, AUDIT_TRAIL_DISCRIMINATOR, type AcceptJobApplicationAsyncInput, type AcceptJobApplicationInput, type AcceptJobApplicationInstruction, type AcceptJobApplicationInstructionData, type AcceptJobApplicationInstructionDataArgs, type AccessAuditConfig, type AccessAuditConfigArgs, type AccessPolicy, type AccessPolicyArgs, type AccountLockoutPolicies, type AccountLockoutPoliciesArgs, type Action, type ActionArgs, type ActionExport, type ActionExportArgs, type ActivateAgentAsyncInput, type ActivateAgentInput, type ActivateAgentInstruction, type ActivateAgentInstructionData, type ActivateAgentInstructionDataArgs, type ActivationRequirement, type ActivationRequirementArgs, ActivationRequirementType, type ActivationRequirementTypeArgs, type AddTopAgentInput, type AddTopAgentInstruction, type AddTopAgentInstructionData, type AddTopAgentInstructionDataArgs, type Agent, type AgentAccount, type AgentArgs, type AgentIncentives, type AgentIncentivesArgs, AgentInstructions, type AgentListedForResaleEvent, type AgentListedForResaleEventArgs, type AgentRegisteredEvent, type AgentRegisteredEventArgs, type AgentRegistrationData, type AgentReplicatedEvent, type AgentReplicatedEventArgs, type AgentServiceUpdatedEvent, type AgentServiceUpdatedEventArgs, type AgentStatusChangedEvent, type AgentStatusChangedEventArgs, type AgentTreeConfig, type AgentTreeConfigArgs, type AgentUpdatedEvent, type AgentUpdatedEventArgs, type AgentVerification, type AgentVerificationArgs, type AgentVerificationData, type AgentVerificationDataArgs, type AgentWithAddress, type AgingPolicy, type AgingPolicyArgs, type AnalyticsDashboard, type AnalyticsDashboardArgs, type AnalyticsDashboardCreatedEvent, type AnalyticsDashboardCreatedEventArgs, type AnalyticsDashboardUpdatedEvent, type AnalyticsDashboardUpdatedEventArgs, AnalyticsInstructions, ApplicationStatus, type ApplicationStatusArgs, type ApplyToJobAsyncInput, type ApplyToJobInput, type ApplyToJobInstruction, type ApplyToJobInstructionData, type ApplyToJobInstructionDataArgs, type ApprovalLevel, type ApprovalLevelArgs, type ApproveExtensionInput, type ApproveExtensionInstruction, type ApproveExtensionInstructionData, type ApproveExtensionInstructionDataArgs, type ArbitratorRegistry, type ArbitratorRegistryArgs, type AuctionBid, type AuctionBidArgs, type AuctionBidPlacedEvent, type AuctionBidPlacedEventArgs, type AuctionFailedEvent, type AuctionFailedEventArgs, type AuctionFinalizedEvent, type AuctionFinalizedEventArgs, AuctionInstructions, type AuctionMarketplace, type AuctionMarketplaceArgs, AuctionStatus, type AuctionStatusArgs, AuctionType, type AuctionTypeArgs, AuditAction, type AuditActionArgs, type AuditConfig, type AuditConfigArgs, type AuditContext, type AuditContextArgs, type AuditContextExport, type AuditContextExportArgs, type AuditEntry, type AuditEntryArgs, type AuditTrail, type AuditTrailArgs, type AuditTrailInitializedEvent, type AuditTrailInitializedEventArgs, AuthenticationLevel, type AuthenticationLevelArgs, AuthenticationMethod, type AuthenticationMethodArgs, type AuthenticationPolicies, type AuthenticationPoliciesArgs, type AuthenticationStrength, type AuthenticationStrengthArgs, type AuthorizationPolicies, type AuthorizationPoliciesArgs, BULK_DEAL_DISCRIMINATOR, BackupFrequency, type BackupFrequencyArgs, type BiometricPolicies, type BiometricPoliciesArgs, type BiometricProtection, type BiometricProtectionArgs, type BiometricQuality, type BiometricQualityArgs, type BiometricQualityExport, type BiometricQualityExportArgs, BiometricStorageMethod, type BiometricStorageMethodArgs, BiometricType, type BiometricTypeArgs, type BulkDeal, type BulkDealArgs, type BulkDealBatchExecutedEvent, type BulkDealBatchExecutedEventArgs, type BulkDealCreatedEvent, type BulkDealCreatedEventArgs, BulkDealsInstructions, CHANNEL_DISCRIMINATOR, COMPLIANCE_REPORT_DISCRIMINATOR, CREATE_A2A_SESSION_DISCRIMINATOR, CREATE_ANALYTICS_DASHBOARD_DISCRIMINATOR, CREATE_BULK_DEAL_DISCRIMINATOR, CREATE_CHANNEL_DISCRIMINATOR, CREATE_DYNAMIC_PRICING_ENGINE_DISCRIMINATOR, CREATE_INCENTIVE_PROGRAM_DISCRIMINATOR, CREATE_JOB_POSTING_DISCRIMINATOR, CREATE_MARKET_ANALYTICS_DISCRIMINATOR, CREATE_MULTISIG_DISCRIMINATOR, CREATE_REPLICATION_TEMPLATE_DISCRIMINATOR, CREATE_ROYALTY_STREAM_DISCRIMINATOR, CREATE_SERVICE_AUCTION_DISCRIMINATOR, CREATE_SERVICE_LISTING_DISCRIMINATOR, CREATE_WORK_ORDER_DISCRIMINATOR, type Channel, type ChannelArgs, type ChannelCreatedEvent, type ChannelCreatedEventArgs, ChannelType, type ChannelTypeArgs, type Commitment$1 as Commitment, type ComplianceFlags, type ComplianceFlagsArgs, ComplianceInstructions, type ComplianceMetrics$1 as ComplianceMetrics, type ComplianceMetricsArgs, type CompliancePolicies, type CompliancePoliciesArgs, type ComplianceReport, type ComplianceReportArgs, type ComplianceReportGeneratedEvent, type ComplianceReportGeneratedEventArgs, type ComplianceStatus, type ComplianceStatusArgs, type ComplianceStatusExport, type ComplianceStatusExportArgs, type CompressedAgentCreatedEvent, type CompressedAgentCreatedEventArgs, ConditionType, type ConditionTypeArgs, type ConstraintCondition, type ConstraintConditionArgs, ConstraintOperator, type ConstraintOperatorArgs, ContractStatus, type ContractStatusArgs, type CounterOfferMadeEvent, type CounterOfferMadeEventArgs, type CreateA2ASessionParams$1 as CreateA2ASessionParams, type CreateA2aSessionAsyncInput, type CreateA2aSessionInput, type CreateA2aSessionInstruction, type CreateA2aSessionInstructionData, type CreateA2aSessionInstructionDataArgs, type CreateAnalyticsDashboardAsyncInput, type CreateAnalyticsDashboardInput, type CreateAnalyticsDashboardInstruction, type CreateAnalyticsDashboardInstructionData, type CreateAnalyticsDashboardInstructionDataArgs, type CreateBulkDealAsyncInput, type CreateBulkDealInput, type CreateBulkDealInstruction, type CreateBulkDealInstructionData, type CreateBulkDealInstructionDataArgs, type CreateChannelInput, type CreateChannelInstruction, type CreateChannelInstructionData, type CreateChannelInstructionDataArgs, type CreateDynamicPricingEngineAsyncInput, type CreateDynamicPricingEngineInput, type CreateDynamicPricingEngineInstruction, type CreateDynamicPricingEngineInstructionData, type CreateDynamicPricingEngineInstructionDataArgs, type CreateEscrowParams$1 as CreateEscrowParams, type CreateIncentiveProgramAsyncInput, type CreateIncentiveProgramInput, type CreateIncentiveProgramInstruction, type CreateIncentiveProgramInstructionData, type CreateIncentiveProgramInstructionDataArgs, type CreateJobPostingAsyncInput, type CreateJobPostingInput, type CreateJobPostingInstruction, type CreateJobPostingInstructionData, type CreateJobPostingInstructionDataArgs, type CreateJobPostingParams$1 as CreateJobPostingParams, type CreateMarketAnalyticsAsyncInput, type CreateMarketAnalyticsInput, type CreateMarketAnalyticsInstruction, type CreateMarketAnalyticsInstructionData, type CreateMarketAnalyticsInstructionDataArgs, type CreateMultisigAsyncInput, type CreateMultisigInput, type CreateMultisigInstruction, type CreateMultisigInstructionData, type CreateMultisigInstructionDataArgs, type CreateReplicationTemplateAsyncInput, type CreateReplicationTemplateInput, type CreateReplicationTemplateInstruction, type CreateReplicationTemplateInstructionData, type CreateReplicationTemplateInstructionDataArgs, type CreateRoyaltyStreamAsyncInput, type CreateRoyaltyStreamInput, type CreateRoyaltyStreamInstruction, type CreateRoyaltyStreamInstructionData, type CreateRoyaltyStreamInstructionDataArgs, type CreateServiceAuctionAsyncInput, type CreateServiceAuctionInput, type CreateServiceAuctionInstruction, type CreateServiceAuctionInstructionData, type CreateServiceAuctionInstructionDataArgs, type CreateServiceListingAsyncInput, type CreateServiceListingInput, type CreateServiceListingInstruction, type CreateServiceListingInstructionData, type CreateServiceListingInstructionDataArgs, type CreateServiceListingParams$1 as CreateServiceListingParams, type CreateWorkOrderInput, type CreateWorkOrderInstruction, type CreateWorkOrderInstructionData, type CreateWorkOrderInstructionDataArgs, DEACTIVATE_AGENT_DISCRIMINATOR, DISPUTE_CASE_DISCRIMINATOR, DISTRIBUTE_INCENTIVES_DISCRIMINATOR, DYNAMIC_PRICING_ENGINE_DISCRIMINATOR, DataAccessLevel, type DataAccessLevelArgs, type DataProtectionPolicies, type DataProtectionPoliciesArgs, type DeactivateAgentAsyncInput, type DeactivateAgentInput, type DeactivateAgentInstruction, type DeactivateAgentInstructionData, type DeactivateAgentInstructionDataArgs, DealType, type DealTypeArgs, DegradationHandling, type DegradationHandlingArgs, type DelegationInfo, type DelegationInfoArgs, type DelegationScope, type DelegationScopeArgs, Deliverable, type DeliverableArgs, type DisputeCase, type DisputeCaseArgs, type DisputeEvidence$1 as DisputeEvidence, type DisputeEvidenceArgs, type DisputeEvidenceSubmittedEvent, type DisputeEvidenceSubmittedEventArgs, type DisputeFiledEvent, type DisputeFiledEventArgs, type DisputeFilter, DisputeInstructions, type DisputeResolvedEvent, type DisputeResolvedEventArgs, DisputeStatus, type DisputeStatusArgs, type DisputeSummary, type DistributeIncentivesInput, type DistributeIncentivesInstruction, type DistributeIncentivesInstructionData, type DistributeIncentivesInstructionDataArgs, type DynamicPricingConfig, type DynamicPricingConfigArgs, type DynamicPricingConfigExport, type DynamicPricingConfigExportArgs, type DynamicPricingEngine, type DynamicPricingEngineArgs, type DynamicPricingEngineCreatedEvent, type DynamicPricingEngineCreatedEventArgs, type DynamicPricingUpdatedEvent, type DynamicPricingUpdatedEventArgs, EXECUTE_BULK_DEAL_BATCH_DISCRIMINATOR, EXPORT_ACTION_DISCRIMINATOR, EXPORT_AUDIT_CONTEXT_DISCRIMINATOR, EXPORT_BIOMETRIC_QUALITY_DISCRIMINATOR, EXPORT_COMPLIANCE_STATUS_DISCRIMINATOR, EXPORT_DYNAMIC_PRICING_CONFIG_DISCRIMINATOR, EXPORT_MULTISIG_CONFIG_DISCRIMINATOR, EXPORT_REPORT_ENTRY_DISCRIMINATOR, EXPORT_RESOURCE_CONSTRAINTS_DISCRIMINATOR, EXPORT_RULE_CONDITION_DISCRIMINATOR, EXTENSION_DISCRIMINATOR, type EmergencyAccessConfig, type EmergencyAccessConfigArgs, type EmergencyConfig, type EmergencyConfigArgs, EnforcementLevel, type EnforcementLevelArgs, type EscrowAccount, EscrowInstructions, EscrowStatus, type ExecuteBulkDealBatchAsyncInput, type ExecuteBulkDealBatchInput, type ExecuteBulkDealBatchInstruction, type ExecuteBulkDealBatchInstructionData, type ExecuteBulkDealBatchInstructionDataArgs, type ExecutionCondition, type ExecutionConditionArgs, type ExecutionParams, type ExecutionParamsArgs, type ExportActionInput, type ExportActionInstruction, type ExportActionInstructionData, type ExportActionInstructionDataArgs, type ExportAuditContextInput, type ExportAuditContextInstruction, type ExportAuditContextInstructionData, type ExportAuditContextInstructionDataArgs, type ExportBiometricQualityInput, type ExportBiometricQualityInstruction, type ExportBiometricQualityInstructionData, type ExportBiometricQualityInstructionDataArgs, type ExportComplianceStatusInput, type ExportComplianceStatusInstruction, type ExportComplianceStatusInstructionData, type ExportComplianceStatusInstructionDataArgs, type ExportDynamicPricingConfigInput, type ExportDynamicPricingConfigInstruction, type ExportDynamicPricingConfigInstructionData, type ExportDynamicPricingConfigInstructionDataArgs, type ExportMultisigConfigInput, type ExportMultisigConfigInstruction, type ExportMultisigConfigInstructionData, type ExportMultisigConfigInstructionDataArgs, type ExportReportEntryInput, type ExportReportEntryInstruction, type ExportReportEntryInstructionData, type ExportReportEntryInstructionDataArgs, type ExportResourceConstraintsInput, type ExportResourceConstraintsInstruction, type ExportResourceConstraintsInstructionData, type ExportResourceConstraintsInstructionDataArgs, type ExportRuleConditionInput, type ExportRuleConditionInstruction, type ExportRuleConditionInstructionData, type ExportRuleConditionInstructionDataArgs, type ExtendedRpcApi, type Extension, type ExtensionApprovedEvent, type ExtensionApprovedEventArgs, type ExtensionArgs, type ExtensionMetadata, type ExtensionMetadataArgs, type ExtensionRegisteredEvent, type ExtensionRegisteredEventArgs, ExtensionStatus, type ExtensionStatusArgs, ExtensionType, type ExtensionTypeArgs, FILE_DISPUTE_DISCRIMINATOR, FINALIZE_AUCTION_DISCRIMINATOR, type FileDisputeAsyncInput, type FileDisputeInput, type FileDisputeInstruction, type FileDisputeInstructionData, type FileDisputeInstructionDataArgs, type FinalizeAuctionInput, type FinalizeAuctionInstruction, type FinalizeAuctionInstructionData, type FinalizeAuctionInstructionDataArgs, GENERATE_COMPLIANCE_REPORT_DISCRIMINATOR, GHOSTSPEAK_MARKETPLACE_ERROR__ACCESS_DENIED, GHOSTSPEAK_MARKETPLACE_ERROR__ACCOUNT_ALREADY_INITIALIZED, GHOSTSPEAK_MARKETPLACE_ERROR__ACCOUNT_NOT_INITIALIZED, GHOSTSPEAK_MARKETPLACE_ERROR__AGENT_ALREADY_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__AGENT_ALREADY_REGISTERED, GHOSTSPEAK_MARKETPLACE_ERROR__AGENT_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__AGENT_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__ALREADY_VOTED, GHOSTSPEAK_MARKETPLACE_ERROR__ANALYTICS_NOT_ENABLED, GHOSTSPEAK_MARKETPLACE_ERROR__APPLICATION_ALREADY_PROCESSED, GHOSTSPEAK_MARKETPLACE_ERROR__APPLICATION_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__ARITHMETIC_OVERFLOW, GHOSTSPEAK_MARKETPLACE_ERROR__ARITHMETIC_UNDERFLOW, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_ALREADY_ENDED, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_DURATION_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_DURATION_TOO_SHORT, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_ENDED, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_NOT_ENDED, GHOSTSPEAK_MARKETPLACE_ERROR__BID_INCREMENT_TOO_LOW, GHOSTSPEAK_MARKETPLACE_ERROR__BID_TOO_LOW, GHOSTSPEAK_MARKETPLACE_ERROR__BULK_DEAL_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__CANNOT_CANCEL_AUCTION_WITH_BIDS, GHOSTSPEAK_MARKETPLACE_ERROR__CAPABILITY_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__CHANNEL_ALREADY_EXISTS, GHOSTSPEAK_MARKETPLACE_ERROR__CHANNEL_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__COMPLETION_PROOF_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__COMPLIANCE_CHECK_FAILED, GHOSTSPEAK_MARKETPLACE_ERROR__COMPUTE_BUDGET_EXCEEDED, GHOSTSPEAK_MARKETPLACE_ERROR__DATA_CORRUPTION_DETECTED, GHOSTSPEAK_MARKETPLACE_ERROR__DEADLINE_PASSED, GHOSTSPEAK_MARKETPLACE_ERROR__DEAL_ALREADY_FINALIZED, GHOSTSPEAK_MARKETPLACE_ERROR__DEAL_EXPIRED, GHOSTSPEAK_MARKETPLACE_ERROR__DEAL_FULL, GHOSTSPEAK_MARKETPLACE_ERROR__DEAL_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__DESCRIPTION_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__DISPUTE_ALREADY_RESOLVED, GHOSTSPEAK_MARKETPLACE_ERROR__DISPUTE_CASE_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__DISPUTE_DETAILS_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__DISPUTE_REASON_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__DISPUTE_WINDOW_EXPIRED, GHOSTSPEAK_MARKETPLACE_ERROR__DIVISION_BY_ZERO, GHOSTSPEAK_MARKETPLACE_ERROR__ESCROW_ALREADY_RELEASED, GHOSTSPEAK_MARKETPLACE_ERROR__ESCROW_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__EVIDENCE_WINDOW_EXPIRED, GHOSTSPEAK_MARKETPLACE_ERROR__EXTENSION_ALREADY_ENABLED, GHOSTSPEAK_MARKETPLACE_ERROR__EXTENSION_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__FEATURE_NOT_ENABLED, GHOSTSPEAK_MARKETPLACE_ERROR__GOVERNANCE_PROPOSAL_INVALID, GHOSTSPEAK_MARKETPLACE_ERROR__INCENTIVE_POOL_EXHAUSTED, GHOSTSPEAK_MARKETPLACE_ERROR__INPUT_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__INSUFFICIENT_BALANCE, GHOSTSPEAK_MARKETPLACE_ERROR__INSUFFICIENT_FUNDS, GHOSTSPEAK_MARKETPLACE_ERROR__INSUFFICIENT_PARTICIPANTS, GHOSTSPEAK_MARKETPLACE_ERROR__INSUFFICIENT_VOTING_POWER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_A2_A_PROTOCOL_MESSAGE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_ACCOUNT_OWNER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_AGENT_OWNER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_AGENT_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_AMOUNT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_APPLICATION_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_BID, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_CHANNEL_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_CONTRACT_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DEADLINE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DEAL_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DELIVERY_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DISCOUNT_PERCENTAGE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DISPUTE_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_ESCROW_AMOUNT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_ESCROW_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_EXPIRATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_EXTENSION_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_EXTENSION_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_GENOME_HASH, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_INCENTIVE_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_INPUT_FORMAT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_INPUT_LENGTH, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_JOB_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_MAX_PARTICIPANTS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_MESSAGE_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_METADATA_URI, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_METRICS_DATA, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_MIN_PARTICIPANTS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_NEGOTIATION_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_OFFER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_OFFER_AMOUNT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PARAMETER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PARTICIPANT_COUNT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PAYMENT_AMOUNT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PERCENTAGE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PERIOD, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PRICE_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PRICE_RANGE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_RATING, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_REPLICATION_CONFIG, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_REPORT_DATA, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_REPORT_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_REPUTATION_SCORE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_ROYALTY_PERCENTAGE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_SERVICE_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_SERVICE_ENDPOINT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_SERVICE_TYPE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_STARTING_PRICE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_STATE_TRANSITION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_STATUS_TRANSITION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_TASK_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_TASK_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_TRANSACTION_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_VALUE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_VOLUME, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_VOLUME_TIER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_WORK_ORDER_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__IPFS_HASH_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__JOB_ALREADY_FILLED, GHOSTSPEAK_MARKETPLACE_ERROR__JOB_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__LISTING_ALREADY_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__LISTING_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__MAINTENANCE_MODE_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__MAXIMUM_RETRIES_EXCEEDED, GHOSTSPEAK_MARKETPLACE_ERROR__MESSAGE_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__MESSAGE_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__METADATA_URI_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__METRICS_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__NAME_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__NEGOTIATION_EXPIRED, GHOSTSPEAK_MARKETPLACE_ERROR__NEGOTIATION_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__NO_DELIVERABLES, GHOSTSPEAK_MARKETPLACE_ERROR__NO_PARTICIPANTS, GHOSTSPEAK_MARKETPLACE_ERROR__OPERATION_NOT_SUPPORTED, GHOSTSPEAK_MARKETPLACE_ERROR__OPERATION_TIMED_OUT, GHOSTSPEAK_MARKETPLACE_ERROR__OVERLAPPING_VOLUME_TIERS, GHOSTSPEAK_MARKETPLACE_ERROR__PAYMENT_ALREADY_PROCESSED, GHOSTSPEAK_MARKETPLACE_ERROR__PRICE_MODEL_NOT_SUPPORTED, GHOSTSPEAK_MARKETPLACE_ERROR__PROTOCOL_VERSION_MISMATCH, GHOSTSPEAK_MARKETPLACE_ERROR__RATE_LIMIT_EXCEEDED, GHOSTSPEAK_MARKETPLACE_ERROR__REPLICATION_NOT_ALLOWED, GHOSTSPEAK_MARKETPLACE_ERROR__REPORT_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__REQUIREMENT_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__RESOLUTION_NOTES_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__RESOURCE_LOCKED, GHOSTSPEAK_MARKETPLACE_ERROR__ROYALTY_CONFIGURATION_INVALID, GHOSTSPEAK_MARKETPLACE_ERROR__SERVICE_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__SERVICE_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__SIGNATURE_VERIFICATION_FAILED, GHOSTSPEAK_MARKETPLACE_ERROR__STRING_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__TASK_ALREADY_COMPLETED, GHOSTSPEAK_MARKETPLACE_ERROR__TASK_DEADLINE_EXCEEDED, GHOSTSPEAK_MARKETPLACE_ERROR__TASK_ID_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__TASK_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__TERM_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__TITLE_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__TOKEN_TRANSFER_FAILED, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_AUDIT_ENTRIES, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_BIDS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_CAPABILITIES, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_COUNTER_OFFERS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_DELIVERABLES, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_EVIDENCE_ITEMS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_EVIDENCE_SUBMISSIONS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_REQUIREMENTS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_TERMS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_TOP_AGENTS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_VOLUME_TIERS, GHOSTSPEAK_MARKETPLACE_ERROR__UNAUTHORIZED_ACCESS, GHOSTSPEAK_MARKETPLACE_ERROR__UNAUTHORIZED_ARBITRATOR, GHOSTSPEAK_MARKETPLACE_ERROR__UPDATE_FREQUENCY_TOO_HIGH, GHOSTSPEAK_MARKETPLACE_ERROR__VALUE_BELOW_MINIMUM, GHOSTSPEAK_MARKETPLACE_ERROR__VALUE_EXCEEDS_MAXIMUM, GHOSTSPEAK_MARKETPLACE_ERROR__VOTING_PERIOD_ENDED, GHOSTSPEAK_MARKETPLACE_ERROR__WORK_ORDER_ALREADY_EXISTS, GHOSTSPEAK_MARKETPLACE_ERROR__WORK_ORDER_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS, GHOSTSPEAK_PROGRAM_ID, GOVERNANCE_PROPOSAL_DISCRIMINATOR, type GenerateComplianceReportAsyncInput, type GenerateComplianceReportInput, type GenerateComplianceReportInstruction, type GenerateComplianceReportInstructionData, type GenerateComplianceReportInstructionDataArgs, type GeographicRegion, type GeographicRegionArgs, GhostSpeakClient, type GhostSpeakConfig, GhostSpeakError, GhostspeakMarketplaceAccount, type GhostspeakMarketplaceError, GhostspeakMarketplaceInstruction, GovernanceInstructions, type GovernanceProposal, type GovernanceProposalArgs, type GovernanceProposalCreatedEvent, type GovernanceProposalCreatedEventArgs, type HierarchicalBoundary, type HierarchicalBoundaryArgs, INCENTIVE_PROGRAM_DISCRIMINATOR, INITIALIZE_AUDIT_TRAIL_DISCRIMINATOR, INITIALIZE_GOVERNANCE_PROPOSAL_DISCRIMINATOR, INITIALIZE_RBAC_CONFIG_DISCRIMINATOR, INITIATE_NEGOTIATION_DISCRIMINATOR, type IncentiveConfig, type IncentiveConfigArgs, type IncentiveDistributedEvent, type IncentiveDistributedEventArgs, type IncentiveProgram, type IncentiveProgramArgs, type IncentiveProgramCreatedEvent, type IncentiveProgramCreatedEventArgs, type IncidentResponsePolicies, type IncidentResponsePoliciesArgs, type InitializeAuditTrailAsyncInput, type InitializeAuditTrailInput, type InitializeAuditTrailInstruction, type InitializeAuditTrailInstructionData, type InitializeAuditTrailInstructionDataArgs, type InitializeGovernanceProposalAsyncInput, type InitializeGovernanceProposalInput, type InitializeGovernanceProposalInstruction, type InitializeGovernanceProposalInstructionData, type InitializeGovernanceProposalInstructionDataArgs, type InitializeRbacConfigAsyncInput, type InitializeRbacConfigInput, type InitializeRbacConfigInstruction, type InitializeRbacConfigInstructionData, type InitializeRbacConfigInstructionDataArgs, type InitiateNegotiationAsyncInput, type InitiateNegotiationInput, type InitiateNegotiationInstruction, type InitiateNegotiationInstructionData, type InitiateNegotiationInstructionDataArgs, JOB_APPLICATION_DISCRIMINATOR, JOB_CONTRACT_DISCRIMINATOR, JOB_POSTING_DISCRIMINATOR, type JobApplication, type JobApplicationAcceptedEvent, type JobApplicationAcceptedEventArgs, type JobApplicationArgs, type JobApplicationSubmittedEvent, type JobApplicationSubmittedEventArgs, type JobContract, type JobContractArgs, type JobPosting, type JobPostingArgs, type JobPostingCreatedEvent, type JobPostingCreatedEventArgs, type KeyPairSigner, LIST_AGENT_FOR_RESALE_DISCRIMINATOR, type LatitudeRange, type LatitudeRangeArgs, type ListAgentForResaleAsyncInput, type ListAgentForResaleInput, type ListAgentForResaleInstruction, type ListAgentForResaleInstructionData, type ListAgentForResaleInstructionDataArgs, type LocationConstraints, type LocationConstraintsArgs, type LongitudeRange, type LongitudeRangeArgs, MAKE_COUNTER_OFFER_DISCRIMINATOR, MANAGE_AGENT_STATUS_DISCRIMINATOR, MARKET_ANALYTICS_DISCRIMINATOR, MESSAGE_DISCRIMINATOR, MULTISIG_DISCRIMINATOR, type MakeCounterOfferInput, type MakeCounterOfferInstruction, type MakeCounterOfferInstructionData, type MakeCounterOfferInstructionDataArgs, type ManageAgentStatusAsyncInput, type ManageAgentStatusInput, type ManageAgentStatusInstruction, type ManageAgentStatusInstructionData, type ManageAgentStatusInstructionDataArgs, type MarketAnalytics, type MarketAnalyticsArgs, type MarketAnalyticsCreatedEvent, type MarketAnalyticsCreatedEventArgs, type MarketAnalyticsUpdatedEvent, type MarketAnalyticsUpdatedEventArgs, MarketplaceInstructions, type Message, type MessageArgs, type MessageSentEvent, type MessageSentEventArgs, MessageType, type MessageTypeArgs, type Multisig, type MultisigArgs, type MultisigConfig, type MultisigConfigArgs, type MultisigConfigExport, type MultisigConfigExportArgs, type MultisigCreatedEvent, type MultisigCreatedEventArgs, type MultisigSignature, type MultisigSignatureArgs, type MultisigSummary, NEGOTIATION_CHATBOT_DISCRIMINATOR, type NegotiationChatbot, type NegotiationChatbotArgs, type NegotiationInitiatedEvent, type NegotiationInitiatedEventArgs, NegotiationStatus, type NegotiationStatusArgs, type NetworkSecurityPolicies, type NetworkSecurityPoliciesArgs, NotificationMethod, type NotificationMethodArgs, NotificationPriority, type NotificationPriorityArgs, type NotificationRequirement, type NotificationRequirementArgs, type NotificationTarget, type NotificationTargetArgs, NotificationTargetType, type NotificationTargetTypeArgs, NotificationTiming, type NotificationTimingArgs, PAYMENT_DISCRIMINATOR, PLACE_AUCTION_BID_DISCRIMINATOR, PROCESS_PAYMENT_DISCRIMINATOR, PURCHASE_SERVICE_DISCRIMINATOR, type ParsedAcceptJobApplicationInstruction, type ParsedActivateAgentInstruction, type ParsedAddTopAgentInstruction, type ParsedApplyToJobInstruction, type ParsedApproveExtensionInstruction, type ParsedCreateA2aSessionInstruction, type ParsedCreateAnalyticsDashboardInstruction, type ParsedCreateBulkDealInstruction, type ParsedCreateChannelInstruction, type ParsedCreateDynamicPricingEngineInstruction, type ParsedCreateIncentiveProgramInstruction, type ParsedCreateJobPostingInstruction, type ParsedCreateMarketAnalyticsInstruction, type ParsedCreateMultisigInstruction, type ParsedCreateReplicationTemplateInstruction, type ParsedCreateRoyaltyStreamInstruction, type ParsedCreateServiceAuctionInstruction, type ParsedCreateServiceListingInstruction, type ParsedCreateWorkOrderInstruction, type ParsedDeactivateAgentInstruction, type ParsedDistributeIncentivesInstruction, type ParsedExecuteBulkDealBatchInstruction, type ParsedExportActionInstruction, type ParsedExportAuditContextInstruction, type ParsedExportBiometricQualityInstruction, type ParsedExportComplianceStatusInstruction, type ParsedExportDynamicPricingConfigInstruction, type ParsedExportMultisigConfigInstruction, type ParsedExportReportEntryInstruction, type ParsedExportResourceConstraintsInstruction, type ParsedExportRuleConditionInstruction, type ParsedFileDisputeInstruction, type ParsedFinalizeAuctionInstruction, type ParsedGenerateComplianceReportInstruction, type ParsedGhostspeakMarketplaceInstruction, type ParsedInitializeAuditTrailInstruction, type ParsedInitializeGovernanceProposalInstruction, type ParsedInitializeRbacConfigInstruction, type ParsedInitiateNegotiationInstruction, type ParsedListAgentForResaleInstruction, type ParsedMakeCounterOfferInstruction, type ParsedManageAgentStatusInstruction, type ParsedPlaceAuctionBidInstruction, type ParsedProcessPaymentInstruction, type ParsedPurchaseServiceInstruction, type ParsedRegisterAgentCompressedInstruction, type ParsedRegisterAgentInstruction, type ParsedRegisterExtensionInstruction, type ParsedReplicateAgentInstruction, type ParsedResolveDisputeInstruction, type ParsedSendA2aMessageInstruction, type ParsedSendMessageInstruction, type ParsedSubmitDisputeEvidenceInstruction, type ParsedSubmitWorkDeliveryInstruction, type ParsedUpdateA2aStatusInstruction, type ParsedUpdateAgentInstruction, type ParsedUpdateAgentReputationInstruction, type ParsedUpdateAgentServiceInstruction, type ParsedUpdateAnalyticsDashboardInstruction, type ParsedUpdateDynamicPricingInstruction, type ParsedUpdateMarketAnalyticsInstruction, type ParsedVerifyAgentInstruction, type PasswordPolicies, type PasswordPoliciesArgs, type Payment, type PaymentArgs, type PaymentProcessedEvent, type PaymentProcessedEventArgs, type PendingTransaction, type PendingTransactionArgs, type Permission, type PermissionArgs, type PermissionConstraint, type PermissionConstraintArgs, PermissionConstraintType, type PermissionConstraintTypeArgs, type PermissionMetadata, type PermissionMetadataArgs, type PermissionScope, type PermissionScopeArgs, type PlaceAuctionBidInput, type PlaceAuctionBidInstruction, type PlaceAuctionBidInstructionData, type PlaceAuctionBidInstructionDataArgs, type PolicyMetadata, type PolicyMetadataArgs, type PolicyRule, type PolicyRuleArgs, type PolicyScope, type PolicyScopeArgs, PolicyStatus, type PolicyStatusArgs, PolicyType, type PolicyTypeArgs, PricingAlgorithm, type PricingAlgorithmArgs, PricingModel, type PricingModelArgs, type ProcessPaymentAsyncInput, type ProcessPaymentInput, type ProcessPaymentInstruction, type ProcessPaymentInstructionData, type ProcessPaymentInstructionDataArgs, type ProposalAccount, type ProposalAccountArgs, type ProposalFilter, type ProposalInstruction, type ProposalInstructionArgs, type ProposalMetadata, type ProposalMetadataArgs, ProposalStatus, type ProposalStatusArgs, type ProposalSummary, ProposalType, type ProposalTypeArgs, type PurchaseServiceAsyncInput, type PurchaseServiceInput, type PurchaseServiceInstruction, type PurchaseServiceInstructionData, type PurchaseServiceInstructionDataArgs, PurchaseStatus, type PurchaseStatusArgs, QuorumMethod, type QuorumMethodArgs, type QuorumRequirements, type QuorumRequirementsArgs, RBAC_CONFIG_DISCRIMINATOR, REGISTER_AGENT_COMPRESSED_DISCRIMINATOR, REGISTER_AGENT_DISCRIMINATOR, REGISTER_EXTENSION_DISCRIMINATOR, REPLICATE_AGENT_DISCRIMINATOR, REPLICATION_RECORD_DISCRIMINATOR, REPLICATION_TEMPLATE_DISCRIMINATOR, RESALE_MARKET_DISCRIMINATOR, RESOLVE_DISPUTE_DISCRIMINATOR, ROYALTY_STREAM_DISCRIMINATOR, type RbacConfig, type RbacConfigArgs, type RbacConfigInitializedEvent, type RbacConfigInitializedEventArgs, type RegisterAgentAsyncInput, type RegisterAgentCompressedAsyncInput, type RegisterAgentCompressedInput, type RegisterAgentCompressedInstruction, type RegisterAgentCompressedInstructionData, type RegisterAgentCompressedInstructionDataArgs, type RegisterAgentInput, type RegisterAgentInstruction, type RegisterAgentInstructionData, type RegisterAgentInstructionDataArgs, type RegisterAgentParams, type RegisterExtensionAsyncInput, type RegisterExtensionInput, type RegisterExtensionInstruction, type RegisterExtensionInstructionData, type RegisterExtensionInstructionDataArgs, type ReplicateAgentAsyncInput, type ReplicateAgentInput, type ReplicateAgentInstruction, type ReplicateAgentInstructionData, type ReplicateAgentInstructionDataArgs, type ReplicationRecord, type ReplicationRecordArgs, type ReplicationTemplate, type ReplicationTemplateArgs, type ReplicationTemplateCreatedEvent, type ReplicationTemplateCreatedEventArgs, type ReportData, type ReportDataArgs, type ReportEntry, type ReportEntryArgs, type ReportEntryExport, type ReportEntryExportArgs, ReportStatus, type ReportStatusArgs, type ReportSummary, type ReportSummaryArgs, ReportType, type ReportTypeArgs, ReportingFrequency, type ReportingFrequencyArgs, type ResaleMarket, type ResaleMarketArgs, type ResolveDisputeAsyncInput, type ResolveDisputeInput, type ResolveDisputeInstruction, type ResolveDisputeInstructionData, type ResolveDisputeInstructionDataArgs, type ResourceConstraints, type ResourceConstraintsArgs, type ResourceConstraintsExport, type ResourceConstraintsExportArgs, type RetryConfig, type ReviewSchedule, type ReviewScheduleArgs, type RiskAcceptance, type RiskAcceptanceArgs, type RiskAssessment, type RiskAssessmentArgs, RiskCategory, type RiskCategoryArgs, type RiskFactor, type RiskFactorArgs, type RiskIndicator, type RiskIndicatorArgs, RiskLevel, type RiskLevelArgs, type Role, type RoleArgs, type RoleConstraints, type RoleConstraintsArgs, type RoleMetadata, type RoleMetadataArgs, RoleStatus, type RoleStatusArgs, RoleType, type RoleTypeArgs, type RoyaltyConfig, type RoyaltyConfigArgs, type RoyaltyStream, type RoyaltyStreamArgs, type RoyaltyStreamCreatedEvent, type RoyaltyStreamCreatedEventArgs, type RpcAccountInfo, type RpcAccountInfoResponse, type RpcApi, type RpcMultipleAccountsResponse, type RpcProgramAccount, type RpcProgramAccountsResponse, type RpcResponse, type RpcSubscriptionApi, type RuleCondition, type RuleConditionArgs, type RuleConditionExport, type RuleConditionExportArgs, RuleEffect, type RuleEffectArgs, SEND_A2A_MESSAGE_DISCRIMINATOR, SEND_MESSAGE_DISCRIMINATOR, SERVICE_LISTING_DISCRIMINATOR, SERVICE_PURCHASE_DISCRIMINATOR, SUBMIT_DISPUTE_EVIDENCE_DISCRIMINATOR, SUBMIT_WORK_DELIVERY_DISCRIMINATOR, type ScopeBoundaries, type ScopeBoundariesArgs, ScopeInheritance, type ScopeInheritanceArgs, ScopeType, type ScopeTypeArgs, SecurityEventType, type SecurityEventTypeArgs, type SecurityPolicies, type SecurityPoliciesArgs, type SendA2AMessageParams$1 as SendA2AMessageParams, type SendA2aMessageInput, type SendA2aMessageInstruction, type SendA2aMessageInstructionData, type SendA2aMessageInstructionDataArgs, type SendMessageInput, type SendMessageInstruction, type SendMessageInstructionData, type SendMessageInstructionDataArgs, type ServiceAuctionCreatedEvent, type ServiceAuctionCreatedEventArgs, type ServiceListing, type ServiceListingArgs, type ServiceListingCreatedEvent, type ServiceListingCreatedEventArgs, type ServiceListingData, type ServiceListingWithAddress, type ServicePurchase, type ServicePurchaseArgs, type ServicePurchasedEvent, type ServicePurchasedEventArgs, type SessionConstraints, type SessionConstraintsArgs, type SessionPolicies, type SessionPoliciesArgs, type SimulatedTransactionResponse, type SodConstraint, type SodConstraintArgs, SodConstraintType, type SodConstraintTypeArgs, type SolanaRpcClient, StepUpTrigger, type StepUpTriggerArgs, type SubmissionDetails, type SubmissionDetailsArgs, type SubmitDisputeEvidenceAsyncInput, type SubmitDisputeEvidenceInput, type SubmitDisputeEvidenceInstruction, type SubmitDisputeEvidenceInstructionData, type SubmitDisputeEvidenceInstructionDataArgs, type SubmitWorkDeliveryAsyncInput, type SubmitWorkDeliveryInput, type SubmitWorkDeliveryInstruction, type SubmitWorkDeliveryInstructionData, type SubmitWorkDeliveryInstructionDataArgs, type TimeConstraints, type TimeConstraintsArgs, type TimeLock, type TimeLockArgs, TimeLockType, type TimeLockTypeArgs, type TopAgentAddedEvent, type TopAgentAddedEventArgs, TransactionPriority, type TransactionPriorityArgs, type TransactionResponse, TransactionStatus, type TransactionStatusArgs, TransactionType, type TransactionTypeArgs, TrendDirection, type TrendDirectionArgs, UPDATE_A2A_STATUS_DISCRIMINATOR, UPDATE_AGENT_DISCRIMINATOR, UPDATE_AGENT_REPUTATION_DISCRIMINATOR, UPDATE_AGENT_SERVICE_DISCRIMINATOR, UPDATE_ANALYTICS_DASHBOARD_DISCRIMINATOR, UPDATE_DYNAMIC_PRICING_DISCRIMINATOR, UPDATE_MARKET_ANALYTICS_DISCRIMINATOR, USER_REGISTRY_DISCRIMINATOR, UnlockMethod, type UnlockMethodArgs, type UpdateA2aStatusAsyncInput, type UpdateA2aStatusInput, type UpdateA2aStatusInstruction, type UpdateA2aStatusInstructionData, type UpdateA2aStatusInstructionDataArgs, type UpdateAgentAsyncInput, type UpdateAgentInput, type UpdateAgentInstruction, type UpdateAgentInstructionData, type UpdateAgentInstructionDataArgs, type UpdateAgentReputationAsyncInput, type UpdateAgentReputationInput, type UpdateAgentReputationInstruction, type UpdateAgentReputationInstructionData, type UpdateAgentReputationInstructionDataArgs, type UpdateAgentServiceAsyncInput, type UpdateAgentServiceInput, type UpdateAgentServiceInstruction, type UpdateAgentServiceInstructionData, type UpdateAgentServiceInstructionDataArgs, type UpdateAnalyticsDashboardAsyncInput, type UpdateAnalyticsDashboardInput, type UpdateAnalyticsDashboardInstruction, type UpdateAnalyticsDashboardInstructionData, type UpdateAnalyticsDashboardInstructionDataArgs, type UpdateDynamicPricingInput, type UpdateDynamicPricingInstruction, type UpdateDynamicPricingInstructionData, type UpdateDynamicPricingInstructionDataArgs, type UpdateMarketAnalyticsInput, type UpdateMarketAnalyticsInstruction, type UpdateMarketAnalyticsInstructionData, type UpdateMarketAnalyticsInstructionDataArgs, type UserRegistry, type UserRegistryArgs, VERIFY_AGENT_DISCRIMINATOR, ValueType, type ValueTypeArgs, type VerifyAgentAsyncInput, type VerifyAgentInput, type VerifyAgentInstruction, type VerifyAgentInstructionData, type VerifyAgentInstructionDataArgs, ViolationSeverity, type ViolationSeverityArgs, type VolumeTier, type VolumeTierArgs, type Vote, type VoteArgs, VoteChoice, type VoteChoiceArgs, type VotingResults, type VotingResultsArgs, WORK_DELIVERY_DISCRIMINATOR, WORK_ORDER_DISCRIMINATOR, type WorkDelivery, type WorkDeliveryArgs, type WorkDeliverySubmittedEvent, type WorkDeliverySubmittedEventArgs, type WorkOrder, type WorkOrderArgs, type WorkOrderCreatedEvent, type WorkOrderCreatedEventArgs, WorkOrderStatus, type WorkOrderStatusArgs, decodeA2AMessage, decodeA2ASession, decodeA2AStatus, decodeAgent, decodeAgentIncentives, decodeAgentTreeConfig, decodeAgentVerification, decodeAnalyticsDashboard, decodeArbitratorRegistry, decodeAuctionMarketplace, decodeAuditTrail, decodeBulkDeal, decodeChannel, decodeComplianceReport, decodeDisputeCase, decodeDynamicPricingEngine, decodeExtension, decodeGovernanceProposal, decodeIncentiveProgram, decodeJobApplication, decodeJobContract, decodeJobPosting, decodeMarketAnalytics, decodeMessage, decodeMultisig, decodeNegotiationChatbot, decodePayment, decodeRbacConfig, decodeReplicationRecord, decodeReplicationTemplate, decodeResaleMarket, decodeRoyaltyStream, decodeServiceListing, decodeServicePurchase, decodeUserRegistry, decodeWorkDelivery, decodeWorkOrder, delegationScope, deriveA2AMessagePda, deriveA2ASessionPda, fetchA2AMessage, fetchA2ASession, fetchA2AStatus, fetchAgent, fetchAgentIncentives, fetchAgentTreeConfig, fetchAgentVerification, fetchAllA2AMessage, fetchAllA2ASession, fetchAllA2AStatus, fetchAllAgent, fetchAllAgentIncentives, fetchAllAgentTreeConfig, fetchAllAgentVerification, fetchAllAnalyticsDashboard, fetchAllArbitratorRegistry, fetchAllAuctionMarketplace, fetchAllAuditTrail, fetchAllBulkDeal, fetchAllChannel, fetchAllComplianceReport, fetchAllDisputeCase, fetchAllDynamicPricingEngine, fetchAllExtension, fetchAllGovernanceProposal, fetchAllIncentiveProgram, fetchAllJobApplication, fetchAllJobContract, fetchAllJobPosting, fetchAllMarketAnalytics, fetchAllMaybeA2AMessage, fetchAllMaybeA2ASession, fetchAllMaybeA2AStatus, fetchAllMaybeAgent, fetchAllMaybeAgentIncentives, fetchAllMaybeAgentTreeConfig, fetchAllMaybeAgentVerification, fetchAllMaybeAnalyticsDashboard, fetchAllMaybeArbitratorRegistry, fetchAllMaybeAuctionMarketplace, fetchAllMaybeAuditTrail, fetchAllMaybeBulkDeal, fetchAllMaybeChannel, fetchAllMaybeComplianceReport, fetchAllMaybeDisputeCase, fetchAllMaybeDynamicPricingEngine, fetchAllMaybeExtension, fetchAllMaybeGovernanceProposal, fetchAllMaybeIncentiveProgram, fetchAllMaybeJobApplication, fetchAllMaybeJobContract, fetchAllMaybeJobPosting, fetchAllMaybeMarketAnalytics, fetchAllMaybeMessage, fetchAllMaybeMultisig, fetchAllMaybeNegotiationChatbot, fetchAllMaybePayment, fetchAllMaybeRbacConfig, fetchAllMaybeReplicationRecord, fetchAllMaybeReplicationTemplate, fetchAllMaybeResaleMarket, fetchAllMaybeRoyaltyStream, fetchAllMaybeServiceListing, fetchAllMaybeServicePurchase, fetchAllMaybeUserRegistry, fetchAllMaybeWorkDelivery, fetchAllMaybeWorkOrder, fetchAllMessage, fetchAllMultisig, fetchAllNegotiationChatbot, fetchAllPayment, fetchAllRbacConfig, fetchAllReplicationRecord, fetchAllReplicationTemplate, fetchAllResaleMarket, fetchAllRoyaltyStream, fetchAllServiceListing, fetchAllServicePurchase, fetchAllUserRegistry, fetchAllWorkDelivery, fetchAllWorkOrder, fetchAnalyticsDashboard, fetchArbitratorRegistry, fetchAuctionMarketplace, fetchAuditTrail, fetchBulkDeal, fetchChannel, fetchComplianceReport, fetchDisputeCase, fetchDynamicPricingEngine, fetchExtension, fetchGovernanceProposal, fetchIncentiveProgram, fetchJobApplication, fetchJobContract, fetchJobPosting, fetchMarketAnalytics, fetchMaybeA2AMessage, fetchMaybeA2ASession, fetchMaybeA2AStatus, fetchMaybeAgent, fetchMaybeAgentIncentives, fetchMaybeAgentTreeConfig, fetchMaybeAgentVerification, fetchMaybeAnalyticsDashboard, fetchMaybeArbitratorRegistry, fetchMaybeAuctionMarketplace, fetchMaybeAuditTrail, fetchMaybeBulkDeal, fetchMaybeChannel, fetchMaybeComplianceReport, fetchMaybeDisputeCase, fetchMaybeDynamicPricingEngine, fetchMaybeExtension, fetchMaybeGovernanceProposal, fetchMaybeIncentiveProgram, fetchMaybeJobApplication, fetchMaybeJobContract, fetchMaybeJobPosting, fetchMaybeMarketAnalytics, fetchMaybeMessage, fetchMaybeMultisig, fetchMaybeNegotiationChatbot, fetchMaybePayment, fetchMaybeRbacConfig, fetchMaybeReplicationRecord, fetchMaybeReplicationTemplate, fetchMaybeResaleMarket, fetchMaybeRoyaltyStream, fetchMaybeServiceListing, fetchMaybeServicePurchase, fetchMaybeUserRegistry, fetchMaybeWorkDelivery, fetchMaybeWorkOrder, fetchMessage, fetchMultisig, fetchNegotiationChatbot, fetchPayment, fetchRbacConfig, fetchReplicationRecord, fetchReplicationTemplate, fetchResaleMarket, fetchRoyaltyStream, fetchServiceListing, fetchServicePurchase, fetchUserRegistry, fetchWorkDelivery, fetchWorkOrder, getA2AMessageCodec, getA2AMessageDecoder, getA2AMessageDiscriminatorBytes, getA2AMessageEncoder, getA2AMessageSentEventCodec, getA2AMessageSentEventDecoder, getA2AMessageSentEventEncoder, getA2ASessionCodec, getA2ASessionCreatedEventCodec, getA2ASessionCreatedEventDecoder, getA2ASessionCreatedEventEncoder, getA2ASessionDecoder, getA2ASessionDiscriminatorBytes, getA2ASessionEncoder, getA2AStatusCodec, getA2AStatusDecoder, getA2AStatusDiscriminatorBytes, getA2AStatusEncoder, getA2AStatusUpdatedEventCodec, getA2AStatusUpdatedEventDecoder, getA2AStatusUpdatedEventEncoder, getAcceptJobApplicationDiscriminatorBytes, getAcceptJobApplicationInstruction, getAcceptJobApplicationInstructionAsync, getAcceptJobApplicationInstructionDataCodec, getAcceptJobApplicationInstructionDataDecoder, getAcceptJobApplicationInstructionDataEncoder, getAccessAuditConfigCodec, getAccessAuditConfigDecoder, getAccessAuditConfigEncoder, getAccessPolicyCodec, getAccessPolicyDecoder, getAccessPolicyEncoder, getAccountLockoutPoliciesCodec, getAccountLockoutPoliciesDecoder, getAccountLockoutPoliciesEncoder, getActionCodec, getActionDecoder, getActionEncoder, getActionExportCodec, getActionExportDecoder, getActionExportEncoder, getActivateAgentDiscriminatorBytes, getActivateAgentInstruction, getActivateAgentInstructionAsync, getActivateAgentInstructionDataCodec, getActivateAgentInstructionDataDecoder, getActivateAgentInstructionDataEncoder, getActivationRequirementCodec, getActivationRequirementDecoder, getActivationRequirementEncoder, getActivationRequirementTypeCodec, getActivationRequirementTypeDecoder, getActivationRequirementTypeEncoder, getAddTopAgentDiscriminatorBytes, getAddTopAgentInstruction, getAddTopAgentInstructionDataCodec, getAddTopAgentInstructionDataDecoder, getAddTopAgentInstructionDataEncoder, getAgentCodec, getAgentDecoder, getAgentDiscriminatorBytes, getAgentEncoder, getAgentIncentivesCodec, getAgentIncentivesDecoder, getAgentIncentivesDiscriminatorBytes, getAgentIncentivesEncoder, getAgentIncentivesSize, getAgentListedForResaleEventCodec, getAgentListedForResaleEventDecoder, getAgentListedForResaleEventEncoder, getAgentRegisteredEventCodec, getAgentRegisteredEventDecoder, getAgentRegisteredEventEncoder, getAgentReplicatedEventCodec, getAgentReplicatedEventDecoder, getAgentReplicatedEventEncoder, getAgentServiceUpdatedEventCodec, getAgentServiceUpdatedEventDecoder, getAgentServiceUpdatedEventEncoder, getAgentStatusChangedEventCodec, getAgentStatusChangedEventDecoder, getAgentStatusChangedEventEncoder, getAgentTreeConfigCodec, getAgentTreeConfigDecoder, getAgentTreeConfigDiscriminatorBytes, getAgentTreeConfigEncoder, getAgentTreeConfigSize, getAgentUpdatedEventCodec, getAgentUpdatedEventDecoder, getAgentUpdatedEventEncoder, getAgentVerificationCodec, getAgentVerificationDataCodec, getAgentVerificationDataDecoder, getAgentVerificationDataEncoder, getAgentVerificationDecoder, getAgentVerificationDiscriminatorBytes, getAgentVerificationEncoder, getAgingPolicyCodec, getAgingPolicyDecoder, getAgingPolicyEncoder, getAnalyticsDashboardCodec, getAnalyticsDashboardCreatedEventCodec, getAnalyticsDashboardCreatedEventDecoder, getAnalyticsDashboardCreatedEventEncoder, getAnalyticsDashboardDecoder, getAnalyticsDashboardDiscriminatorBytes, getAnalyticsDashboardEncoder, getAnalyticsDashboardUpdatedEventCodec, getAnalyticsDashboardUpdatedEventDecoder, getAnalyticsDashboardUpdatedEventEncoder, getApplicationStatusCodec, getApplicationStatusDecoder, getApplicationStatusEncoder, getApplyToJobDiscriminatorBytes, getApplyToJobInstruction, getApplyToJobInstructionAsync, getApplyToJobInstructionDataCodec, getApplyToJobInstructionDataDecoder, getApplyToJobInstructionDataEncoder, getApprovalLevelCodec, getApprovalLevelDecoder, getApprovalLevelEncoder, getApproveExtensionDiscriminatorBytes, getApproveExtensionInstruction, getApproveExtensionInstructionDataCodec, getApproveExtensionInstructionDataDecoder, getApproveExtensionInstructionDataEncoder, getArbitratorRegistryCodec, getArbitratorRegistryDecoder, getArbitratorRegistryDiscriminatorBytes, getArbitratorRegistryEncoder, getAuctionBidCodec, getAuctionBidDecoder, getAuctionBidEncoder, getAuctionBidPlacedEventCodec, getAuctionBidPlacedEventDecoder, getAuctionBidPlacedEventEncoder, getAuctionFailedEventCodec, getAuctionFailedEventDecoder, getAuctionFailedEventEncoder, getAuctionFinalizedEventCodec, getAuctionFinalizedEventDecoder, getAuctionFinalizedEventEncoder, getAuctionMarketplaceCodec, getAuctionMarketplaceDecoder, getAuctionMarketplaceDiscriminatorBytes, getAuctionMarketplaceEncoder, getAuctionStatusCodec, getAuctionStatusDecoder, getAuctionStatusEncoder, getAuctionTypeCodec, getAuctionTypeDecoder, getAuctionTypeEncoder, getAuditActionCodec, getAuditActionDecoder, getAuditActionEncoder, getAuditConfigCodec, getAuditConfigDecoder, getAuditConfigEncoder, getAuditContextCodec, getAuditContextDecoder, getAuditContextEncoder, getAuditContextExportCodec, getAuditContextExportDecoder, getAuditContextExportEncoder, getAuditEntryCodec, getAuditEntryDecoder, getAuditEntryEncoder, getAuditTrailCodec, getAuditTrailDecoder, getAuditTrailDiscriminatorBytes, getAuditTrailEncoder, getAuditTrailInitializedEventCodec, getAuditTrailInitializedEventDecoder, getAuditTrailInitializedEventEncoder, getAuthenticationLevelCodec, getAuthenticationLevelDecoder, getAuthenticationLevelEncoder, getAuthenticationMethodCodec, getAuthenticationMethodDecoder, getAuthenticationMethodEncoder, getAuthenticationPoliciesCodec, getAuthenticationPoliciesDecoder, getAuthenticationPoliciesEncoder, getAuthenticationStrengthCodec, getAuthenticationStrengthDecoder, getAuthenticationStrengthEncoder, getAuthorizationPoliciesCodec, getAuthorizationPoliciesDecoder, getAuthorizationPoliciesEncoder, getBackupFrequencyCodec, getBackupFrequencyDecoder, getBackupFrequencyEncoder, getBiometricPoliciesCodec, getBiometricPoliciesDecoder, getBiometricPoliciesEncoder, getBiometricProtectionCodec, getBiometricProtectionDecoder, getBiometricProtectionEncoder, getBiometricQualityCodec, getBiometricQualityDecoder, getBiometricQualityEncoder, getBiometricQualityExportCodec, getBiometricQualityExportDecoder, getBiometricQualityExportEncoder, getBiometricStorageMethodCodec, getBiometricStorageMethodDecoder, getBiometricStorageMethodEncoder, getBiometricTypeCodec, getBiometricTypeDecoder, getBiometricTypeEncoder, getBulkDealBatchExecutedEventCodec, getBulkDealBatchExecutedEventDecoder, getBulkDealBatchExecutedEventEncoder, getBulkDealCodec, getBulkDealCreatedEventCodec, getBulkDealCreatedEventDecoder, getBulkDealCreatedEventEncoder, getBulkDealDecoder, getBulkDealDiscriminatorBytes, getBulkDealEncoder, getChannelCodec, getChannelCreatedEventCodec, getChannelCreatedEventDecoder, getChannelCreatedEventEncoder, getChannelDecoder, getChannelDiscriminatorBytes, getChannelEncoder, getChannelTypeCodec, getChannelTypeDecoder, getChannelTypeEncoder, getComplianceFlagsCodec, getComplianceFlagsDecoder, getComplianceFlagsEncoder, getComplianceMetricsCodec, getComplianceMetricsDecoder, getComplianceMetricsEncoder, getCompliancePoliciesCodec, getCompliancePoliciesDecoder, getCompliancePoliciesEncoder, getComplianceReportCodec, getComplianceReportDecoder, getComplianceReportDiscriminatorBytes, getComplianceReportEncoder, getComplianceReportGeneratedEventCodec, getComplianceReportGeneratedEventDecoder, getComplianceReportGeneratedEventEncoder, getComplianceStatusCodec, getComplianceStatusDecoder, getComplianceStatusEncoder, getComplianceStatusExportCodec, getComplianceStatusExportDecoder, getComplianceStatusExportEncoder, getCompressedAgentCreatedEventCodec, getCompressedAgentCreatedEventDecoder, getCompressedAgentCreatedEventEncoder, getConditionTypeCodec, getConditionTypeDecoder, getConditionTypeEncoder, getConstraintConditionCodec, getConstraintConditionDecoder, getConstraintConditionEncoder, getConstraintOperatorCodec, getConstraintOperatorDecoder, getConstraintOperatorEncoder, getContractStatusCodec, getContractStatusDecoder, getContractStatusEncoder, getCounterOfferMadeEventCodec, getCounterOfferMadeEventDecoder, getCounterOfferMadeEventEncoder, getCreateA2aSessionDiscriminatorBytes, getCreateA2aSessionInstruction, getCreateA2aSessionInstructionAsync, getCreateA2aSessionInstructionDataCodec, getCreateA2aSessionInstructionDataDecoder, getCreateA2aSessionInstructionDataEncoder, getCreateAnalyticsDashboardDiscriminatorBytes, getCreateAnalyticsDashboardInstruction, getCreateAnalyticsDashboardInstructionAsync, getCreateAnalyticsDashboardInstructionDataCodec, getCreateAnalyticsDashboardInstructionDataDecoder, getCreateAnalyticsDashboardInstructionDataEncoder, getCreateBulkDealDiscriminatorBytes, getCreateBulkDealInstruction, getCreateBulkDealInstructionAsync, getCreateBulkDealInstructionDataCodec, getCreateBulkDealInstructionDataDecoder, getCreateBulkDealInstructionDataEncoder, getCreateChannelDiscriminatorBytes, getCreateChannelInstruction, getCreateChannelInstructionDataCodec, getCreateChannelInstructionDataDecoder, getCreateChannelInstructionDataEncoder, getCreateDynamicPricingEngineDiscriminatorBytes, getCreateDynamicPricingEngineInstruction, getCreateDynamicPricingEngineInstructionAsync, getCreateDynamicPricingEngineInstructionDataCodec, getCreateDynamicPricingEngineInstructionDataDecoder, getCreateDynamicPricingEngineInstructionDataEncoder, getCreateIncentiveProgramDiscriminatorBytes, getCreateIncentiveProgramInstruction, getCreateIncentiveProgramInstructionAsync, getCreateIncentiveProgramInstructionDataCodec, getCreateIncentiveProgramInstructionDataDecoder, getCreateIncentiveProgramInstructionDataEncoder, getCreateJobPostingDiscriminatorBytes, getCreateJobPostingInstruction, getCreateJobPostingInstructionAsync, getCreateJobPostingInstructionDataCodec, getCreateJobPostingInstructionDataDecoder, getCreateJobPostingInstructionDataEncoder, getCreateMarketAnalyticsDiscriminatorBytes, getCreateMarketAnalyticsInstruction, getCreateMarketAnalyticsInstructionAsync, getCreateMarketAnalyticsInstructionDataCodec, getCreateMarketAnalyticsInstructionDataDecoder, getCreateMarketAnalyticsInstructionDataEncoder, getCreateMultisigDiscriminatorBytes, getCreateMultisigInstruction, getCreateMultisigInstructionAsync, getCreateMultisigInstructionDataCodec, getCreateMultisigInstructionDataDecoder, getCreateMultisigInstructionDataEncoder, getCreateReplicationTemplateDiscriminatorBytes, getCreateReplicationTemplateInstruction, getCreateReplicationTemplateInstructionAsync, getCreateReplicationTemplateInstructionDataCodec, getCreateReplicationTemplateInstructionDataDecoder, getCreateReplicationTemplateInstructionDataEncoder, getCreateRoyaltyStreamDiscriminatorBytes, getCreateRoyaltyStreamInstruction, getCreateRoyaltyStreamInstructionAsync, getCreateRoyaltyStreamInstructionDataCodec, getCreateRoyaltyStreamInstructionDataDecoder, getCreateRoyaltyStreamInstructionDataEncoder, getCreateServiceAuctionDiscriminatorBytes, getCreateServiceAuctionInstruction, getCreateServiceAuctionInstructionAsync, getCreateServiceAuctionInstructionDataCodec, getCreateServiceAuctionInstructionDataDecoder, getCreateServiceAuctionInstructionDataEncoder, getCreateServiceListingDiscriminatorBytes, getCreateServiceListingInstruction, getCreateServiceListingInstructionAsync, getCreateServiceListingInstructionDataCodec, getCreateServiceListingInstructionDataDecoder, getCreateServiceListingInstructionDataEncoder, getCreateWorkOrderDiscriminatorBytes, getCreateWorkOrderInstruction, getCreateWorkOrderInstructionDataCodec, getCreateWorkOrderInstructionDataDecoder, getCreateWorkOrderInstructionDataEncoder, getDataAccessLevelCodec, getDataAccessLevelDecoder, getDataAccessLevelEncoder, getDataProtectionPoliciesCodec, getDataProtectionPoliciesDecoder, getDataProtectionPoliciesEncoder, getDeactivateAgentDiscriminatorBytes, getDeactivateAgentInstruction, getDeactivateAgentInstructionAsync, getDeactivateAgentInstructionDataCodec, getDeactivateAgentInstructionDataDecoder, getDeactivateAgentInstructionDataEncoder, getDealTypeCodec, getDealTypeDecoder, getDealTypeEncoder, getDegradationHandlingCodec, getDegradationHandlingDecoder, getDegradationHandlingEncoder, getDelegationInfoCodec, getDelegationInfoDecoder, getDelegationInfoEncoder, getDelegationScopeCodec, getDelegationScopeDecoder, getDelegationScopeEncoder, getDeliverableCodec, getDeliverableDecoder, getDeliverableEncoder, getDisputeCaseCodec, getDisputeCaseDecoder, getDisputeCaseDiscriminatorBytes, getDisputeCaseEncoder, getDisputeEvidenceCodec, getDisputeEvidenceDecoder, getDisputeEvidenceEncoder, getDisputeEvidenceSubmittedEventCodec, getDisputeEvidenceSubmittedEventDecoder, getDisputeEvidenceSubmittedEventEncoder, getDisputeFiledEventCodec, getDisputeFiledEventDecoder, getDisputeFiledEventEncoder, getDisputeResolvedEventCodec, getDisputeResolvedEventDecoder, getDisputeResolvedEventEncoder, getDisputeStatusCodec, getDisputeStatusDecoder, getDisputeStatusEncoder, getDistributeIncentivesDiscriminatorBytes, getDistributeIncentivesInstruction, getDistributeIncentivesInstructionDataCodec, getDistributeIncentivesInstructionDataDecoder, getDistributeIncentivesInstructionDataEncoder, getDynamicPricingConfigCodec, getDynamicPricingConfigDecoder, getDynamicPricingConfigEncoder, getDynamicPricingConfigExportCodec, getDynamicPricingConfigExportDecoder, getDynamicPricingConfigExportEncoder, getDynamicPricingEngineCodec, getDynamicPricingEngineCreatedEventCodec, getDynamicPricingEngineCreatedEventDecoder, getDynamicPricingEngineCreatedEventEncoder, getDynamicPricingEngineDecoder, getDynamicPricingEngineDiscriminatorBytes, getDynamicPricingEngineEncoder, getDynamicPricingUpdatedEventCodec, getDynamicPricingUpdatedEventDecoder, getDynamicPricingUpdatedEventEncoder, getEmergencyAccessConfigCodec, getEmergencyAccessConfigDecoder, getEmergencyAccessConfigEncoder, getEmergencyConfigCodec, getEmergencyConfigDecoder, getEmergencyConfigEncoder, getEnforcementLevelCodec, getEnforcementLevelDecoder, getEnforcementLevelEncoder, getExecuteBulkDealBatchDiscriminatorBytes, getExecuteBulkDealBatchInstruction, getExecuteBulkDealBatchInstructionAsync, getExecuteBulkDealBatchInstructionDataCodec, getExecuteBulkDealBatchInstructionDataDecoder, getExecuteBulkDealBatchInstructionDataEncoder, getExecutionConditionCodec, getExecutionConditionDecoder, getExecutionConditionEncoder, getExecutionParamsCodec, getExecutionParamsDecoder, getExecutionParamsEncoder, getExportActionDiscriminatorBytes, getExportActionInstruction, getExportActionInstructionDataCodec, getExportActionInstructionDataDecoder, getExportActionInstructionDataEncoder, getExportAuditContextDiscriminatorBytes, getExportAuditContextInstruction, getExportAuditContextInstructionDataCodec, getExportAuditContextInstructionDataDecoder, getExportAuditContextInstructionDataEncoder, getExportBiometricQualityDiscriminatorBytes, getExportBiometricQualityInstruction, getExportBiometricQualityInstructionDataCodec, getExportBiometricQualityInstructionDataDecoder, getExportBiometricQualityInstructionDataEncoder, getExportComplianceStatusDiscriminatorBytes, getExportComplianceStatusInstruction, getExportComplianceStatusInstructionDataCodec, getExportComplianceStatusInstructionDataDecoder, getExportComplianceStatusInstructionDataEncoder, getExportDynamicPricingConfigDiscriminatorBytes, getExportDynamicPricingConfigInstruction, getExportDynamicPricingConfigInstructionDataCodec, getExportDynamicPricingConfigInstructionDataDecoder, getExportDynamicPricingConfigInstructionDataEncoder, getExportMultisigConfigDiscriminatorBytes, getExportMultisigConfigInstruction, getExportMultisigConfigInstructionDataCodec, getExportMultisigConfigInstructionDataDecoder, getExportMultisigConfigInstructionDataEncoder, getExportReportEntryDiscriminatorBytes, getExportReportEntryInstruction, getExportReportEntryInstructionDataCodec, getExportReportEntryInstructionDataDecoder, getExportReportEntryInstructionDataEncoder, getExportResourceConstraintsDiscriminatorBytes, getExportResourceConstraintsInstruction, getExportResourceConstraintsInstructionDataCodec, getExportResourceConstraintsInstructionDataDecoder, getExportResourceConstraintsInstructionDataEncoder, getExportRuleConditionDiscriminatorBytes, getExportRuleConditionInstruction, getExportRuleConditionInstructionDataCodec, getExportRuleConditionInstructionDataDecoder, getExportRuleConditionInstructionDataEncoder, getExtensionApprovedEventCodec, getExtensionApprovedEventDecoder, getExtensionApprovedEventEncoder, getExtensionCodec, getExtensionDecoder, getExtensionDiscriminatorBytes, getExtensionEncoder, getExtensionMetadataCodec, getExtensionMetadataDecoder, getExtensionMetadataEncoder, getExtensionRegisteredEventCodec, getExtensionRegisteredEventDecoder, getExtensionRegisteredEventEncoder, getExtensionStatusCodec, getExtensionStatusDecoder, getExtensionStatusEncoder, getExtensionTypeCodec, getExtensionTypeDecoder, getExtensionTypeEncoder, getFileDisputeDiscriminatorBytes, getFileDisputeInstruction, getFileDisputeInstructionAsync, getFileDisputeInstructionDataCodec, getFileDisputeInstructionDataDecoder, getFileDisputeInstructionDataEncoder, getFinalizeAuctionDiscriminatorBytes, getFinalizeAuctionInstruction, getFinalizeAuctionInstructionDataCodec, getFinalizeAuctionInstructionDataDecoder, getFinalizeAuctionInstructionDataEncoder, getGenerateComplianceReportDiscriminatorBytes, getGenerateComplianceReportInstruction, getGenerateComplianceReportInstructionAsync, getGenerateComplianceReportInstructionDataCodec, getGenerateComplianceReportInstructionDataDecoder, getGenerateComplianceReportInstructionDataEncoder, getGeographicRegionCodec, getGeographicRegionDecoder, getGeographicRegionEncoder, getGhostspeakMarketplaceErrorMessage, getGovernanceProposalCodec, getGovernanceProposalCreatedEventCodec, getGovernanceProposalCreatedEventDecoder, getGovernanceProposalCreatedEventEncoder, getGovernanceProposalDecoder, getGovernanceProposalDiscriminatorBytes, getGovernanceProposalEncoder, getHierarchicalBoundaryCodec, getHierarchicalBoundaryDecoder, getHierarchicalBoundaryEncoder, getIncentiveConfigCodec, getIncentiveConfigDecoder, getIncentiveConfigEncoder, getIncentiveDistributedEventCodec, getIncentiveDistributedEventDecoder, getIncentiveDistributedEventEncoder, getIncentiveProgramCodec, getIncentiveProgramCreatedEventCodec, getIncentiveProgramCreatedEventDecoder, getIncentiveProgramCreatedEventEncoder, getIncentiveProgramDecoder, getIncentiveProgramDiscriminatorBytes, getIncentiveProgramEncoder, getIncentiveProgramSize, getIncidentResponsePoliciesCodec, getIncidentResponsePoliciesDecoder, getIncidentResponsePoliciesEncoder, getInitializeAuditTrailDiscriminatorBytes, getInitializeAuditTrailInstruction, getInitializeAuditTrailInstructionAsync, getInitializeAuditTrailInstructionDataCodec, getInitializeAuditTrailInstructionDataDecoder, getInitializeAuditTrailInstructionDataEncoder, getInitializeGovernanceProposalDiscriminatorBytes, getInitializeGovernanceProposalInstruction, getInitializeGovernanceProposalInstructionAsync, getInitializeGovernanceProposalInstructionDataCodec, getInitializeGovernanceProposalInstructionDataDecoder, getInitializeGovernanceProposalInstructionDataEncoder, getInitializeRbacConfigDiscriminatorBytes, getInitializeRbacConfigInstruction, getInitializeRbacConfigInstructionAsync, getInitializeRbacConfigInstructionDataCodec, getInitializeRbacConfigInstructionDataDecoder, getInitializeRbacConfigInstructionDataEncoder, getInitiateNegotiationDiscriminatorBytes, getInitiateNegotiationInstruction, getInitiateNegotiationInstructionAsync, getInitiateNegotiationInstructionDataCodec, getInitiateNegotiationInstructionDataDecoder, getInitiateNegotiationInstructionDataEncoder, getJobApplicationAcceptedEventCodec, getJobApplicationAcceptedEventDecoder, getJobApplicationAcceptedEventEncoder, getJobApplicationCodec, getJobApplicationDecoder, getJobApplicationDiscriminatorBytes, getJobApplicationEncoder, getJobApplicationSubmittedEventCodec, getJobApplicationSubmittedEventDecoder, getJobApplicationSubmittedEventEncoder, getJobContractCodec, getJobContractDecoder, getJobContractDiscriminatorBytes, getJobContractEncoder, getJobContractSize, getJobPostingCodec, getJobPostingCreatedEventCodec, getJobPostingCreatedEventDecoder, getJobPostingCreatedEventEncoder, getJobPostingDecoder, getJobPostingDiscriminatorBytes, getJobPostingEncoder, getLatitudeRangeCodec, getLatitudeRangeDecoder, getLatitudeRangeEncoder, getListAgentForResaleDiscriminatorBytes, getListAgentForResaleInstruction, getListAgentForResaleInstructionAsync, getListAgentForResaleInstructionDataCodec, getListAgentForResaleInstructionDataDecoder, getListAgentForResaleInstructionDataEncoder, getLocationConstraintsCodec, getLocationConstraintsDecoder, getLocationConstraintsEncoder, getLongitudeRangeCodec, getLongitudeRangeDecoder, getLongitudeRangeEncoder, getMakeCounterOfferDiscriminatorBytes, getMakeCounterOfferInstruction, getMakeCounterOfferInstructionDataCodec, getMakeCounterOfferInstructionDataDecoder, getMakeCounterOfferInstructionDataEncoder, getManageAgentStatusDiscriminatorBytes, getManageAgentStatusInstruction, getManageAgentStatusInstructionAsync, getManageAgentStatusInstructionDataCodec, getManageAgentStatusInstructionDataDecoder, getManageAgentStatusInstructionDataEncoder, getMarketAnalyticsCodec, getMarketAnalyticsCreatedEventCodec, getMarketAnalyticsCreatedEventDecoder, getMarketAnalyticsCreatedEventEncoder, getMarketAnalyticsDecoder, getMarketAnalyticsDiscriminatorBytes, getMarketAnalyticsEncoder, getMarketAnalyticsUpdatedEventCodec, getMarketAnalyticsUpdatedEventDecoder, getMarketAnalyticsUpdatedEventEncoder, getMessageCodec, getMessageDecoder, getMessageDiscriminatorBytes, getMessageEncoder, getMessageSentEventCodec, getMessageSentEventDecoder, getMessageSentEventEncoder, getMessageTypeCodec, getMessageTypeDecoder, getMessageTypeEncoder, getMultisigCodec, getMultisigConfigCodec, getMultisigConfigDecoder, getMultisigConfigEncoder, getMultisigConfigExportCodec, getMultisigConfigExportDecoder, getMultisigConfigExportEncoder, getMultisigCreatedEventCodec, getMultisigCreatedEventDecoder, getMultisigCreatedEventEncoder, getMultisigDecoder, getMultisigDiscriminatorBytes, getMultisigEncoder, getMultisigSignatureCodec, getMultisigSignatureDecoder, getMultisigSignatureEncoder, getNegotiationChatbotCodec, getNegotiationChatbotDecoder, getNegotiationChatbotDiscriminatorBytes, getNegotiationChatbotEncoder, getNegotiationInitiatedEventCodec, getNegotiationInitiatedEventDecoder, getNegotiationInitiatedEventEncoder, getNegotiationStatusCodec, getNegotiationStatusDecoder, getNegotiationStatusEncoder, getNetworkSecurityPoliciesCodec, getNetworkSecurityPoliciesDecoder, getNetworkSecurityPoliciesEncoder, getNotificationMethodCodec, getNotificationMethodDecoder, getNotificationMethodEncoder, getNotificationPriorityCodec, getNotificationPriorityDecoder, getNotificationPriorityEncoder, getNotificationRequirementCodec, getNotificationRequirementDecoder, getNotificationRequirementEncoder, getNotificationTargetCodec, getNotificationTargetDecoder, getNotificationTargetEncoder, getNotificationTargetTypeCodec, getNotificationTargetTypeDecoder, getNotificationTargetTypeEncoder, getNotificationTimingCodec, getNotificationTimingDecoder, getNotificationTimingEncoder, getPasswordPoliciesCodec, getPasswordPoliciesDecoder, getPasswordPoliciesEncoder, getPaymentCodec, getPaymentDecoder, getPaymentDiscriminatorBytes, getPaymentEncoder, getPaymentProcessedEventCodec, getPaymentProcessedEventDecoder, getPaymentProcessedEventEncoder, getPendingTransactionCodec, getPendingTransactionDecoder, getPendingTransactionEncoder, getPermissionCodec, getPermissionConstraintCodec, getPermissionConstraintDecoder, getPermissionConstraintEncoder, getPermissionConstraintTypeCodec, getPermissionConstraintTypeDecoder, getPermissionConstraintTypeEncoder, getPermissionDecoder, getPermissionEncoder, getPermissionMetadataCodec, getPermissionMetadataDecoder, getPermissionMetadataEncoder, getPermissionScopeCodec, getPermissionScopeDecoder, getPermissionScopeEncoder, getPlaceAuctionBidDiscriminatorBytes, getPlaceAuctionBidInstruction, getPlaceAuctionBidInstructionDataCodec, getPlaceAuctionBidInstructionDataDecoder, getPlaceAuctionBidInstructionDataEncoder, getPolicyMetadataCodec, getPolicyMetadataDecoder, getPolicyMetadataEncoder, getPolicyRuleCodec, getPolicyRuleDecoder, getPolicyRuleEncoder, getPolicyScopeCodec, getPolicyScopeDecoder, getPolicyScopeEncoder, getPolicyStatusCodec, getPolicyStatusDecoder, getPolicyStatusEncoder, getPolicyTypeCodec, getPolicyTypeDecoder, getPolicyTypeEncoder, getPricingAlgorithmCodec, getPricingAlgorithmDecoder, getPricingAlgorithmEncoder, getPricingModelCodec, getPricingModelDecoder, getPricingModelEncoder, getProcessPaymentDiscriminatorBytes, getProcessPaymentInstruction, getProcessPaymentInstructionAsync, getProcessPaymentInstructionDataCodec, getProcessPaymentInstructionDataDecoder, getProcessPaymentInstructionDataEncoder, getProposalAccountCodec, getProposalAccountDecoder, getProposalAccountEncoder, getProposalInstructionCodec, getProposalInstructionDecoder, getProposalInstructionEncoder, getProposalMetadataCodec, getProposalMetadataDecoder, getProposalMetadataEncoder, getProposalStatusCodec, getProposalStatusDecoder, getProposalStatusEncoder, getProposalTypeCodec, getProposalTypeDecoder, getProposalTypeEncoder, getPurchaseServiceDiscriminatorBytes, getPurchaseServiceInstruction, getPurchaseServiceInstructionAsync, getPurchaseServiceInstructionDataCodec, getPurchaseServiceInstructionDataDecoder, getPurchaseServiceInstructionDataEncoder, getPurchaseStatusCodec, getPurchaseStatusDecoder, getPurchaseStatusEncoder, getQuorumMethodCodec, getQuorumMethodDecoder, getQuorumMethodEncoder, getQuorumRequirementsCodec, getQuorumRequirementsDecoder, getQuorumRequirementsEncoder, getRbacConfigCodec, getRbacConfigDecoder, getRbacConfigDiscriminatorBytes, getRbacConfigEncoder, getRbacConfigInitializedEventCodec, getRbacConfigInitializedEventDecoder, getRbacConfigInitializedEventEncoder, getRegisterAgentCompressedDiscriminatorBytes, getRegisterAgentCompressedInstruction, getRegisterAgentCompressedInstructionAsync, getRegisterAgentCompressedInstructionDataCodec, getRegisterAgentCompressedInstructionDataDecoder, getRegisterAgentCompressedInstructionDataEncoder, getRegisterAgentDiscriminatorBytes, getRegisterAgentInstruction, getRegisterAgentInstructionAsync, getRegisterAgentInstructionDataCodec, getRegisterAgentInstructionDataDecoder, getRegisterAgentInstructionDataEncoder, getRegisterExtensionDiscriminatorBytes, getRegisterExtensionInstruction, getRegisterExtensionInstructionAsync, getRegisterExtensionInstructionDataCodec, getRegisterExtensionInstructionDataDecoder, getRegisterExtensionInstructionDataEncoder, getReplicateAgentDiscriminatorBytes, getReplicateAgentInstruction, getReplicateAgentInstructionAsync, getReplicateAgentInstructionDataCodec, getReplicateAgentInstructionDataDecoder, getReplicateAgentInstructionDataEncoder, getReplicationRecordCodec, getReplicationRecordDecoder, getReplicationRecordDiscriminatorBytes, getReplicationRecordEncoder, getReplicationTemplateCodec, getReplicationTemplateCreatedEventCodec, getReplicationTemplateCreatedEventDecoder, getReplicationTemplateCreatedEventEncoder, getReplicationTemplateDecoder, getReplicationTemplateDiscriminatorBytes, getReplicationTemplateEncoder, getReportDataCodec, getReportDataDecoder, getReportDataEncoder, getReportEntryCodec, getReportEntryDecoder, getReportEntryEncoder, getReportEntryExportCodec, getReportEntryExportDecoder, getReportEntryExportEncoder, getReportStatusCodec, getReportStatusDecoder, getReportStatusEncoder, getReportSummaryCodec, getReportSummaryDecoder, getReportSummaryEncoder, getReportTypeCodec, getReportTypeDecoder, getReportTypeEncoder, getReportingFrequencyCodec, getReportingFrequencyDecoder, getReportingFrequencyEncoder, getResaleMarketCodec, getResaleMarketDecoder, getResaleMarketDiscriminatorBytes, getResaleMarketEncoder, getResolveDisputeDiscriminatorBytes, getResolveDisputeInstruction, getResolveDisputeInstructionAsync, getResolveDisputeInstructionDataCodec, getResolveDisputeInstructionDataDecoder, getResolveDisputeInstructionDataEncoder, getResourceConstraintsCodec, getResourceConstraintsDecoder, getResourceConstraintsEncoder, getResourceConstraintsExportCodec, getResourceConstraintsExportDecoder, getResourceConstraintsExportEncoder, getReviewScheduleCodec, getReviewScheduleDecoder, getReviewScheduleEncoder, getRiskAcceptanceCodec, getRiskAcceptanceDecoder, getRiskAcceptanceEncoder, getRiskAssessmentCodec, getRiskAssessmentDecoder, getRiskAssessmentEncoder, getRiskCategoryCodec, getRiskCategoryDecoder, getRiskCategoryEncoder, getRiskFactorCodec, getRiskFactorDecoder, getRiskFactorEncoder, getRiskIndicatorCodec, getRiskIndicatorDecoder, getRiskIndicatorEncoder, getRiskLevelCodec, getRiskLevelDecoder, getRiskLevelEncoder, getRoleCodec, getRoleConstraintsCodec, getRoleConstraintsDecoder, getRoleConstraintsEncoder, getRoleDecoder, getRoleEncoder, getRoleMetadataCodec, getRoleMetadataDecoder, getRoleMetadataEncoder, getRoleStatusCodec, getRoleStatusDecoder, getRoleStatusEncoder, getRoleTypeCodec, getRoleTypeDecoder, getRoleTypeEncoder, getRoyaltyConfigCodec, getRoyaltyConfigDecoder, getRoyaltyConfigEncoder, getRoyaltyStreamCodec, getRoyaltyStreamCreatedEventCodec, getRoyaltyStreamCreatedEventDecoder, getRoyaltyStreamCreatedEventEncoder, getRoyaltyStreamDecoder, getRoyaltyStreamDiscriminatorBytes, getRoyaltyStreamEncoder, getRoyaltyStreamSize, getRuleConditionCodec, getRuleConditionDecoder, getRuleConditionEncoder, getRuleConditionExportCodec, getRuleConditionExportDecoder, getRuleConditionExportEncoder, getRuleEffectCodec, getRuleEffectDecoder, getRuleEffectEncoder, getScopeBoundariesCodec, getScopeBoundariesDecoder, getScopeBoundariesEncoder, getScopeInheritanceCodec, getScopeInheritanceDecoder, getScopeInheritanceEncoder, getScopeTypeCodec, getScopeTypeDecoder, getScopeTypeEncoder, getSecurityEventTypeCodec, getSecurityEventTypeDecoder, getSecurityEventTypeEncoder, getSecurityPoliciesCodec, getSecurityPoliciesDecoder, getSecurityPoliciesEncoder, getSendA2aMessageDiscriminatorBytes, getSendA2aMessageInstruction, getSendA2aMessageInstructionDataCodec, getSendA2aMessageInstructionDataDecoder, getSendA2aMessageInstructionDataEncoder, getSendMessageDiscriminatorBytes, getSendMessageInstruction, getSendMessageInstructionDataCodec, getSendMessageInstructionDataDecoder, getSendMessageInstructionDataEncoder, getServiceAuctionCreatedEventCodec, getServiceAuctionCreatedEventDecoder, getServiceAuctionCreatedEventEncoder, getServiceListingCodec, getServiceListingCreatedEventCodec, getServiceListingCreatedEventDecoder, getServiceListingCreatedEventEncoder, getServiceListingDecoder, getServiceListingDiscriminatorBytes, getServiceListingEncoder, getServicePurchaseCodec, getServicePurchaseDecoder, getServicePurchaseDiscriminatorBytes, getServicePurchaseEncoder, getServicePurchasedEventCodec, getServicePurchasedEventDecoder, getServicePurchasedEventEncoder, getSessionConstraintsCodec, getSessionConstraintsDecoder, getSessionConstraintsEncoder, getSessionPoliciesCodec, getSessionPoliciesDecoder, getSessionPoliciesEncoder, getSodConstraintCodec, getSodConstraintDecoder, getSodConstraintEncoder, getSodConstraintTypeCodec, getSodConstraintTypeDecoder, getSodConstraintTypeEncoder, getStepUpTriggerCodec, getStepUpTriggerDecoder, getStepUpTriggerEncoder, getSubmissionDetailsCodec, getSubmissionDetailsDecoder, getSubmissionDetailsEncoder, getSubmitDisputeEvidenceDiscriminatorBytes, getSubmitDisputeEvidenceInstruction, getSubmitDisputeEvidenceInstructionAsync, getSubmitDisputeEvidenceInstructionDataCodec, getSubmitDisputeEvidenceInstructionDataDecoder, getSubmitDisputeEvidenceInstructionDataEncoder, getSubmitWorkDeliveryDiscriminatorBytes, getSubmitWorkDeliveryInstruction, getSubmitWorkDeliveryInstructionAsync, getSubmitWorkDeliveryInstructionDataCodec, getSubmitWorkDeliveryInstructionDataDecoder, getSubmitWorkDeliveryInstructionDataEncoder, getTimeConstraintsCodec, getTimeConstraintsDecoder, getTimeConstraintsEncoder, getTimeLockCodec, getTimeLockDecoder, getTimeLockEncoder, getTimeLockTypeCodec, getTimeLockTypeDecoder, getTimeLockTypeEncoder, getTopAgentAddedEventCodec, getTopAgentAddedEventDecoder, getTopAgentAddedEventEncoder, getTransactionPriorityCodec, getTransactionPriorityDecoder, getTransactionPriorityEncoder, getTransactionStatusCodec, getTransactionStatusDecoder, getTransactionStatusEncoder, getTransactionTypeCodec, getTransactionTypeDecoder, getTransactionTypeEncoder, getTrendDirectionCodec, getTrendDirectionDecoder, getTrendDirectionEncoder, getUnlockMethodCodec, getUnlockMethodDecoder, getUnlockMethodEncoder, getUpdateA2aStatusDiscriminatorBytes, getUpdateA2aStatusInstruction, getUpdateA2aStatusInstructionAsync, getUpdateA2aStatusInstructionDataCodec, getUpdateA2aStatusInstructionDataDecoder, getUpdateA2aStatusInstructionDataEncoder, getUpdateAgentDiscriminatorBytes, getUpdateAgentInstruction, getUpdateAgentInstructionAsync, getUpdateAgentInstructionDataCodec, getUpdateAgentInstructionDataDecoder, getUpdateAgentInstructionDataEncoder, getUpdateAgentReputationDiscriminatorBytes, getUpdateAgentReputationInstruction, getUpdateAgentReputationInstructionAsync, getUpdateAgentReputationInstructionDataCodec, getUpdateAgentReputationInstructionDataDecoder, getUpdateAgentReputationInstructionDataEncoder, getUpdateAgentServiceDiscriminatorBytes, getUpdateAgentServiceInstruction, getUpdateAgentServiceInstructionAsync, getUpdateAgentServiceInstructionDataCodec, getUpdateAgentServiceInstructionDataDecoder, getUpdateAgentServiceInstructionDataEncoder, getUpdateAnalyticsDashboardDiscriminatorBytes, getUpdateAnalyticsDashboardInstruction, getUpdateAnalyticsDashboardInstructionAsync, getUpdateAnalyticsDashboardInstructionDataCodec, getUpdateAnalyticsDashboardInstructionDataDecoder, getUpdateAnalyticsDashboardInstructionDataEncoder, getUpdateDynamicPricingDiscriminatorBytes, getUpdateDynamicPricingInstruction, getUpdateDynamicPricingInstructionDataCodec, getUpdateDynamicPricingInstructionDataDecoder, getUpdateDynamicPricingInstructionDataEncoder, getUpdateMarketAnalyticsDiscriminatorBytes, getUpdateMarketAnalyticsInstruction, getUpdateMarketAnalyticsInstructionDataCodec, getUpdateMarketAnalyticsInstructionDataDecoder, getUpdateMarketAnalyticsInstructionDataEncoder, getUserRegistryCodec, getUserRegistryDecoder, getUserRegistryDiscriminatorBytes, getUserRegistryEncoder, getUserRegistrySize, getValueTypeCodec, getValueTypeDecoder, getValueTypeEncoder, getVerifyAgentDiscriminatorBytes, getVerifyAgentInstruction, getVerifyAgentInstructionAsync, getVerifyAgentInstructionDataCodec, getVerifyAgentInstructionDataDecoder, getVerifyAgentInstructionDataEncoder, getViolationSeverityCodec, getViolationSeverityDecoder, getViolationSeverityEncoder, getVolumeTierCodec, getVolumeTierDecoder, getVolumeTierEncoder, getVoteChoiceCodec, getVoteChoiceDecoder, getVoteChoiceEncoder, getVoteCodec, getVoteDecoder, getVoteEncoder, getVotingResultsCodec, getVotingResultsDecoder, getVotingResultsEncoder, getWorkDeliveryCodec, getWorkDeliveryDecoder, getWorkDeliveryDiscriminatorBytes, getWorkDeliveryEncoder, getWorkDeliverySubmittedEventCodec, getWorkDeliverySubmittedEventDecoder, getWorkDeliverySubmittedEventEncoder, getWorkOrderCodec, getWorkOrderCreatedEventCodec, getWorkOrderCreatedEventDecoder, getWorkOrderCreatedEventEncoder, getWorkOrderDecoder, getWorkOrderDiscriminatorBytes, getWorkOrderEncoder, getWorkOrderStatusCodec, getWorkOrderStatusDecoder, getWorkOrderStatusEncoder, identifyGhostspeakMarketplaceAccount, identifyGhostspeakMarketplaceInstruction, isDelegationScope, isGhostspeakMarketplaceError, parseAcceptJobApplicationInstruction, parseActivateAgentInstruction, parseAddTopAgentInstruction, parseApplyToJobInstruction, parseApproveExtensionInstruction, parseCreateA2aSessionInstruction, parseCreateAnalyticsDashboardInstruction, parseCreateBulkDealInstruction, parseCreateChannelInstruction, parseCreateDynamicPricingEngineInstruction, parseCreateIncentiveProgramInstruction, parseCreateJobPostingInstruction, parseCreateMarketAnalyticsInstruction, parseCreateMultisigInstruction, parseCreateReplicationTemplateInstruction, parseCreateRoyaltyStreamInstruction, parseCreateServiceAuctionInstruction, parseCreateServiceListingInstruction, parseCreateWorkOrderInstruction, parseDeactivateAgentInstruction, parseDistributeIncentivesInstruction, parseExecuteBulkDealBatchInstruction, parseExportActionInstruction, parseExportAuditContextInstruction, parseExportBiometricQualityInstruction, parseExportComplianceStatusInstruction, parseExportDynamicPricingConfigInstruction, parseExportMultisigConfigInstruction, parseExportReportEntryInstruction, parseExportResourceConstraintsInstruction, parseExportRuleConditionInstruction, parseFileDisputeInstruction, parseFinalizeAuctionInstruction, parseGenerateComplianceReportInstruction, parseInitializeAuditTrailInstruction, parseInitializeGovernanceProposalInstruction, parseInitializeRbacConfigInstruction, parseInitiateNegotiationInstruction, parseListAgentForResaleInstruction, parseMakeCounterOfferInstruction, parseManageAgentStatusInstruction, parsePlaceAuctionBidInstruction, parseProcessPaymentInstruction, parsePurchaseServiceInstruction, parseRegisterAgentCompressedInstruction, parseRegisterAgentInstruction, parseRegisterExtensionInstruction, parseReplicateAgentInstruction, parseResolveDisputeInstruction, parseSendA2aMessageInstruction, parseSendMessageInstruction, parseSubmitDisputeEvidenceInstruction, parseSubmitWorkDeliveryInstruction, parseUpdateA2aStatusInstruction, parseUpdateAgentInstruction, parseUpdateAgentReputationInstruction, parseUpdateAgentServiceInstruction, parseUpdateAnalyticsDashboardInstruction, parseUpdateDynamicPricingInstruction, parseUpdateMarketAnalyticsInstruction, parseVerifyAgentInstruction };
|