@hol-org/rb-client 0.1.177 → 0.1.178

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -105,17 +105,17 @@ declare const adapterManifestSchema: z.ZodObject<{
105
105
  dependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
106
106
  env: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
107
107
  }, "strip", z.ZodTypeAny, {
108
- env?: string[];
109
108
  platforms?: string[];
110
109
  primary?: string;
111
110
  entry?: string;
112
111
  dependencies?: string[];
113
- }, {
114
112
  env?: string[];
113
+ }, {
115
114
  platforms?: string[];
116
115
  primary?: string;
117
116
  entry?: string;
118
117
  dependencies?: string[];
118
+ env?: string[];
119
119
  }>;
120
120
  capabilities: z.ZodObject<{
121
121
  discovery: z.ZodBoolean;
@@ -192,11 +192,11 @@ declare const adapterManifestSchema: z.ZodObject<{
192
192
  license?: string;
193
193
  };
194
194
  runtime?: {
195
- env?: string[];
196
195
  platforms?: string[];
197
196
  primary?: string;
198
197
  entry?: string;
199
198
  dependencies?: string[];
199
+ env?: string[];
200
200
  };
201
201
  consensus?: {
202
202
  state_model?: string;
@@ -239,11 +239,11 @@ declare const adapterManifestSchema: z.ZodObject<{
239
239
  license?: string;
240
240
  };
241
241
  runtime?: {
242
- env?: string[];
243
242
  platforms?: string[];
244
243
  primary?: string;
245
244
  entry?: string;
246
245
  dependencies?: string[];
246
+ env?: string[];
247
247
  };
248
248
  consensus?: {
249
249
  state_model?: string;
@@ -5847,7 +5847,6 @@ declare const uaidConnectionStatusSchema: z.ZodObject<{
5847
5847
  adapter: z.ZodOptional<z.ZodString>;
5848
5848
  agentId: z.ZodOptional<z.ZodString>;
5849
5849
  }, "strip", z.ZodTypeAny, {
5850
- connected?: boolean;
5851
5850
  connection?: {
5852
5851
  metadata?: Record<string, string | number | boolean>;
5853
5852
  status?: "error" | "connected" | "disconnected";
@@ -5859,8 +5858,8 @@ declare const uaidConnectionStatusSchema: z.ZodObject<{
5859
5858
  };
5860
5859
  adapter?: string;
5861
5860
  agentId?: string;
5862
- }, {
5863
5861
  connected?: boolean;
5862
+ }, {
5864
5863
  connection?: {
5865
5864
  metadata?: Record<string, string | number | boolean>;
5866
5865
  status?: "error" | "connected" | "disconnected";
@@ -5872,6 +5871,7 @@ declare const uaidConnectionStatusSchema: z.ZodObject<{
5872
5871
  };
5873
5872
  adapter?: string;
5874
5873
  agentId?: string;
5874
+ connected?: boolean;
5875
5875
  }>;
5876
5876
  declare const dashboardStatsResponseSchema: z.ZodObject<{
5877
5877
  operatorId: z.ZodOptional<z.ZodString>;
@@ -11741,6 +11741,662 @@ declare const creditPurchaseResponseSchema: z.ZodObject<{
11741
11741
  purchaser?: string;
11742
11742
  hbarAmount?: number;
11743
11743
  }>;
11744
+ declare const creditProviderSummarySchema: z.ZodObject<{
11745
+ name: z.ZodString;
11746
+ publishableKey: z.ZodOptional<z.ZodString>;
11747
+ currency: z.ZodOptional<z.ZodString>;
11748
+ centsPerHbar: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
11749
+ }, "strip", z.ZodTypeAny, {
11750
+ name?: string;
11751
+ publishableKey?: string;
11752
+ currency?: string;
11753
+ centsPerHbar?: number;
11754
+ }, {
11755
+ name?: string;
11756
+ publishableKey?: string;
11757
+ currency?: string;
11758
+ centsPerHbar?: number;
11759
+ }>;
11760
+ declare const creditProvidersResponseSchema: z.ZodObject<{
11761
+ providers: z.ZodArray<z.ZodObject<{
11762
+ name: z.ZodString;
11763
+ publishableKey: z.ZodOptional<z.ZodString>;
11764
+ currency: z.ZodOptional<z.ZodString>;
11765
+ centsPerHbar: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
11766
+ }, "strip", z.ZodTypeAny, {
11767
+ name?: string;
11768
+ publishableKey?: string;
11769
+ currency?: string;
11770
+ centsPerHbar?: number;
11771
+ }, {
11772
+ name?: string;
11773
+ publishableKey?: string;
11774
+ currency?: string;
11775
+ centsPerHbar?: number;
11776
+ }>, "many">;
11777
+ }, "strip", z.ZodTypeAny, {
11778
+ providers?: {
11779
+ name?: string;
11780
+ publishableKey?: string;
11781
+ currency?: string;
11782
+ centsPerHbar?: number;
11783
+ }[];
11784
+ }, {
11785
+ providers?: {
11786
+ name?: string;
11787
+ publishableKey?: string;
11788
+ currency?: string;
11789
+ centsPerHbar?: number;
11790
+ }[];
11791
+ }>;
11792
+ declare const creditBalanceResponseSchema: z.ZodObject<{
11793
+ accountId: z.ZodString;
11794
+ balance: z.ZodNumber;
11795
+ balanceRecord: z.ZodOptional<z.ZodType<JsonValue$1, z.ZodTypeDef, JsonValue$1>>;
11796
+ timestamp: z.ZodOptional<z.ZodString>;
11797
+ }, "strip", z.ZodTypeAny, {
11798
+ timestamp?: string;
11799
+ accountId?: string;
11800
+ balance?: number;
11801
+ balanceRecord?: JsonValue$1;
11802
+ }, {
11803
+ timestamp?: string;
11804
+ accountId?: string;
11805
+ balance?: number;
11806
+ balanceRecord?: JsonValue$1;
11807
+ }>;
11808
+ declare const guardPlanIdSchema: z.ZodEnum<["free", "pro", "team", "enterprise"]>;
11809
+ declare const guardBucketBalanceSchema: z.ZodObject<{
11810
+ bucketId: z.ZodEnum<["registry_credits", "chat_credits", "guard_credits", "org_policy_credits"]>;
11811
+ label: z.ZodString;
11812
+ availableCredits: z.ZodNumber;
11813
+ includedMonthlyCredits: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
11814
+ }, "strip", z.ZodTypeAny, {
11815
+ label?: string;
11816
+ availableCredits?: number;
11817
+ bucketId?: "registry_credits" | "chat_credits" | "guard_credits" | "org_policy_credits";
11818
+ includedMonthlyCredits?: number;
11819
+ }, {
11820
+ label?: string;
11821
+ availableCredits?: number;
11822
+ bucketId?: "registry_credits" | "chat_credits" | "guard_credits" | "org_policy_credits";
11823
+ includedMonthlyCredits?: number;
11824
+ }>;
11825
+ declare const guardPrincipalSchema: z.ZodObject<{
11826
+ signedIn: z.ZodBoolean;
11827
+ userId: z.ZodOptional<z.ZodString>;
11828
+ email: z.ZodOptional<z.ZodString>;
11829
+ accountId: z.ZodOptional<z.ZodString>;
11830
+ stripeCustomerId: z.ZodOptional<z.ZodString>;
11831
+ roles: z.ZodArray<z.ZodString, "many">;
11832
+ }, "strip", z.ZodTypeAny, {
11833
+ accountId?: string;
11834
+ userId?: string;
11835
+ email?: string;
11836
+ signedIn?: boolean;
11837
+ stripeCustomerId?: string;
11838
+ roles?: string[];
11839
+ }, {
11840
+ accountId?: string;
11841
+ userId?: string;
11842
+ email?: string;
11843
+ signedIn?: boolean;
11844
+ stripeCustomerId?: string;
11845
+ roles?: string[];
11846
+ }>;
11847
+ declare const guardEntitlementsSchema: z.ZodObject<{
11848
+ planId: z.ZodEnum<["free", "pro", "team", "enterprise"]>;
11849
+ includedMonthlyCredits: z.ZodNumber;
11850
+ deviceLimit: z.ZodNumber;
11851
+ retentionDays: z.ZodNumber;
11852
+ syncEnabled: z.ZodBoolean;
11853
+ premiumFeedsEnabled: z.ZodBoolean;
11854
+ teamPolicyEnabled: z.ZodBoolean;
11855
+ }, "strip", z.ZodTypeAny, {
11856
+ includedMonthlyCredits?: number;
11857
+ planId?: "free" | "pro" | "team" | "enterprise";
11858
+ deviceLimit?: number;
11859
+ retentionDays?: number;
11860
+ syncEnabled?: boolean;
11861
+ premiumFeedsEnabled?: boolean;
11862
+ teamPolicyEnabled?: boolean;
11863
+ }, {
11864
+ includedMonthlyCredits?: number;
11865
+ planId?: "free" | "pro" | "team" | "enterprise";
11866
+ deviceLimit?: number;
11867
+ retentionDays?: number;
11868
+ syncEnabled?: boolean;
11869
+ premiumFeedsEnabled?: boolean;
11870
+ teamPolicyEnabled?: boolean;
11871
+ }>;
11872
+ declare const guardSessionResponseSchema: z.ZodObject<{
11873
+ principal: z.ZodObject<{
11874
+ signedIn: z.ZodBoolean;
11875
+ userId: z.ZodOptional<z.ZodString>;
11876
+ email: z.ZodOptional<z.ZodString>;
11877
+ accountId: z.ZodOptional<z.ZodString>;
11878
+ stripeCustomerId: z.ZodOptional<z.ZodString>;
11879
+ roles: z.ZodArray<z.ZodString, "many">;
11880
+ }, "strip", z.ZodTypeAny, {
11881
+ accountId?: string;
11882
+ userId?: string;
11883
+ email?: string;
11884
+ signedIn?: boolean;
11885
+ stripeCustomerId?: string;
11886
+ roles?: string[];
11887
+ }, {
11888
+ accountId?: string;
11889
+ userId?: string;
11890
+ email?: string;
11891
+ signedIn?: boolean;
11892
+ stripeCustomerId?: string;
11893
+ roles?: string[];
11894
+ }>;
11895
+ entitlements: z.ZodObject<{
11896
+ planId: z.ZodEnum<["free", "pro", "team", "enterprise"]>;
11897
+ includedMonthlyCredits: z.ZodNumber;
11898
+ deviceLimit: z.ZodNumber;
11899
+ retentionDays: z.ZodNumber;
11900
+ syncEnabled: z.ZodBoolean;
11901
+ premiumFeedsEnabled: z.ZodBoolean;
11902
+ teamPolicyEnabled: z.ZodBoolean;
11903
+ }, "strip", z.ZodTypeAny, {
11904
+ includedMonthlyCredits?: number;
11905
+ planId?: "free" | "pro" | "team" | "enterprise";
11906
+ deviceLimit?: number;
11907
+ retentionDays?: number;
11908
+ syncEnabled?: boolean;
11909
+ premiumFeedsEnabled?: boolean;
11910
+ teamPolicyEnabled?: boolean;
11911
+ }, {
11912
+ includedMonthlyCredits?: number;
11913
+ planId?: "free" | "pro" | "team" | "enterprise";
11914
+ deviceLimit?: number;
11915
+ retentionDays?: number;
11916
+ syncEnabled?: boolean;
11917
+ premiumFeedsEnabled?: boolean;
11918
+ teamPolicyEnabled?: boolean;
11919
+ }>;
11920
+ balance: z.ZodNullable<z.ZodObject<{
11921
+ accountId: z.ZodString;
11922
+ availableCredits: z.ZodNumber;
11923
+ }, "strip", z.ZodTypeAny, {
11924
+ accountId?: string;
11925
+ availableCredits?: number;
11926
+ }, {
11927
+ accountId?: string;
11928
+ availableCredits?: number;
11929
+ }>>;
11930
+ bucketingMode: z.ZodEnum<["shared-ledger", "product-bucketed"]>;
11931
+ buckets: z.ZodArray<z.ZodObject<{
11932
+ bucketId: z.ZodEnum<["registry_credits", "chat_credits", "guard_credits", "org_policy_credits"]>;
11933
+ label: z.ZodString;
11934
+ availableCredits: z.ZodNumber;
11935
+ includedMonthlyCredits: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
11936
+ }, "strip", z.ZodTypeAny, {
11937
+ label?: string;
11938
+ availableCredits?: number;
11939
+ bucketId?: "registry_credits" | "chat_credits" | "guard_credits" | "org_policy_credits";
11940
+ includedMonthlyCredits?: number;
11941
+ }, {
11942
+ label?: string;
11943
+ availableCredits?: number;
11944
+ bucketId?: "registry_credits" | "chat_credits" | "guard_credits" | "org_policy_credits";
11945
+ includedMonthlyCredits?: number;
11946
+ }>, "many">;
11947
+ }, "strip", z.ZodTypeAny, {
11948
+ balance?: {
11949
+ accountId?: string;
11950
+ availableCredits?: number;
11951
+ };
11952
+ principal?: {
11953
+ accountId?: string;
11954
+ userId?: string;
11955
+ email?: string;
11956
+ signedIn?: boolean;
11957
+ stripeCustomerId?: string;
11958
+ roles?: string[];
11959
+ };
11960
+ entitlements?: {
11961
+ includedMonthlyCredits?: number;
11962
+ planId?: "free" | "pro" | "team" | "enterprise";
11963
+ deviceLimit?: number;
11964
+ retentionDays?: number;
11965
+ syncEnabled?: boolean;
11966
+ premiumFeedsEnabled?: boolean;
11967
+ teamPolicyEnabled?: boolean;
11968
+ };
11969
+ bucketingMode?: "shared-ledger" | "product-bucketed";
11970
+ buckets?: {
11971
+ label?: string;
11972
+ availableCredits?: number;
11973
+ bucketId?: "registry_credits" | "chat_credits" | "guard_credits" | "org_policy_credits";
11974
+ includedMonthlyCredits?: number;
11975
+ }[];
11976
+ }, {
11977
+ balance?: {
11978
+ accountId?: string;
11979
+ availableCredits?: number;
11980
+ };
11981
+ principal?: {
11982
+ accountId?: string;
11983
+ userId?: string;
11984
+ email?: string;
11985
+ signedIn?: boolean;
11986
+ stripeCustomerId?: string;
11987
+ roles?: string[];
11988
+ };
11989
+ entitlements?: {
11990
+ includedMonthlyCredits?: number;
11991
+ planId?: "free" | "pro" | "team" | "enterprise";
11992
+ deviceLimit?: number;
11993
+ retentionDays?: number;
11994
+ syncEnabled?: boolean;
11995
+ premiumFeedsEnabled?: boolean;
11996
+ teamPolicyEnabled?: boolean;
11997
+ };
11998
+ bucketingMode?: "shared-ledger" | "product-bucketed";
11999
+ buckets?: {
12000
+ label?: string;
12001
+ availableCredits?: number;
12002
+ bucketId?: "registry_credits" | "chat_credits" | "guard_credits" | "org_policy_credits";
12003
+ includedMonthlyCredits?: number;
12004
+ }[];
12005
+ }>;
12006
+ declare const guardBalanceResponseSchema: z.ZodObject<{
12007
+ generatedAt: z.ZodString;
12008
+ bucketingMode: z.ZodEnum<["shared-ledger", "product-bucketed"]>;
12009
+ buckets: z.ZodArray<z.ZodObject<{
12010
+ bucketId: z.ZodEnum<["registry_credits", "chat_credits", "guard_credits", "org_policy_credits"]>;
12011
+ label: z.ZodString;
12012
+ availableCredits: z.ZodNumber;
12013
+ includedMonthlyCredits: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
12014
+ }, "strip", z.ZodTypeAny, {
12015
+ label?: string;
12016
+ availableCredits?: number;
12017
+ bucketId?: "registry_credits" | "chat_credits" | "guard_credits" | "org_policy_credits";
12018
+ includedMonthlyCredits?: number;
12019
+ }, {
12020
+ label?: string;
12021
+ availableCredits?: number;
12022
+ bucketId?: "registry_credits" | "chat_credits" | "guard_credits" | "org_policy_credits";
12023
+ includedMonthlyCredits?: number;
12024
+ }>, "many">;
12025
+ }, "strip", z.ZodTypeAny, {
12026
+ bucketingMode?: "shared-ledger" | "product-bucketed";
12027
+ buckets?: {
12028
+ label?: string;
12029
+ availableCredits?: number;
12030
+ bucketId?: "registry_credits" | "chat_credits" | "guard_credits" | "org_policy_credits";
12031
+ includedMonthlyCredits?: number;
12032
+ }[];
12033
+ generatedAt?: string;
12034
+ }, {
12035
+ bucketingMode?: "shared-ledger" | "product-bucketed";
12036
+ buckets?: {
12037
+ label?: string;
12038
+ availableCredits?: number;
12039
+ bucketId?: "registry_credits" | "chat_credits" | "guard_credits" | "org_policy_credits";
12040
+ includedMonthlyCredits?: number;
12041
+ }[];
12042
+ generatedAt?: string;
12043
+ }>;
12044
+ declare const guardTrustMatchSchema: z.ZodObject<{
12045
+ artifactId: z.ZodString;
12046
+ artifactName: z.ZodString;
12047
+ artifactType: z.ZodEnum<["skill", "plugin"]>;
12048
+ artifactSlug: z.ZodString;
12049
+ recommendation: z.ZodEnum<["monitor", "review", "block"]>;
12050
+ verified: z.ZodBoolean;
12051
+ safetyScore: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
12052
+ trustScore: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
12053
+ href: z.ZodOptional<z.ZodString>;
12054
+ ecosystem: z.ZodOptional<z.ZodString>;
12055
+ }, "strip", z.ZodTypeAny, {
12056
+ recommendation?: "monitor" | "review" | "block";
12057
+ trustScore?: number;
12058
+ artifactId?: string;
12059
+ artifactName?: string;
12060
+ artifactType?: "skill" | "plugin";
12061
+ artifactSlug?: string;
12062
+ verified?: boolean;
12063
+ safetyScore?: number;
12064
+ href?: string;
12065
+ ecosystem?: string;
12066
+ }, {
12067
+ recommendation?: "monitor" | "review" | "block";
12068
+ trustScore?: number;
12069
+ artifactId?: string;
12070
+ artifactName?: string;
12071
+ artifactType?: "skill" | "plugin";
12072
+ artifactSlug?: string;
12073
+ verified?: boolean;
12074
+ safetyScore?: number;
12075
+ href?: string;
12076
+ ecosystem?: string;
12077
+ }>;
12078
+ declare const guardTrustByHashResponseSchema: z.ZodObject<{
12079
+ generatedAt: z.ZodString;
12080
+ query: z.ZodObject<{
12081
+ sha256: z.ZodString;
12082
+ }, "strip", z.ZodTypeAny, {
12083
+ sha256?: string;
12084
+ }, {
12085
+ sha256?: string;
12086
+ }>;
12087
+ match: z.ZodNullable<z.ZodObject<{
12088
+ artifactId: z.ZodString;
12089
+ artifactName: z.ZodString;
12090
+ artifactType: z.ZodEnum<["skill", "plugin"]>;
12091
+ artifactSlug: z.ZodString;
12092
+ recommendation: z.ZodEnum<["monitor", "review", "block"]>;
12093
+ verified: z.ZodBoolean;
12094
+ safetyScore: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
12095
+ trustScore: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
12096
+ href: z.ZodOptional<z.ZodString>;
12097
+ ecosystem: z.ZodOptional<z.ZodString>;
12098
+ }, "strip", z.ZodTypeAny, {
12099
+ recommendation?: "monitor" | "review" | "block";
12100
+ trustScore?: number;
12101
+ artifactId?: string;
12102
+ artifactName?: string;
12103
+ artifactType?: "skill" | "plugin";
12104
+ artifactSlug?: string;
12105
+ verified?: boolean;
12106
+ safetyScore?: number;
12107
+ href?: string;
12108
+ ecosystem?: string;
12109
+ }, {
12110
+ recommendation?: "monitor" | "review" | "block";
12111
+ trustScore?: number;
12112
+ artifactId?: string;
12113
+ artifactName?: string;
12114
+ artifactType?: "skill" | "plugin";
12115
+ artifactSlug?: string;
12116
+ verified?: boolean;
12117
+ safetyScore?: number;
12118
+ href?: string;
12119
+ ecosystem?: string;
12120
+ }>>;
12121
+ evidence: z.ZodArray<z.ZodString, "many">;
12122
+ }, "strip", z.ZodTypeAny, {
12123
+ match?: {
12124
+ recommendation?: "monitor" | "review" | "block";
12125
+ trustScore?: number;
12126
+ artifactId?: string;
12127
+ artifactName?: string;
12128
+ artifactType?: "skill" | "plugin";
12129
+ artifactSlug?: string;
12130
+ verified?: boolean;
12131
+ safetyScore?: number;
12132
+ href?: string;
12133
+ ecosystem?: string;
12134
+ };
12135
+ query?: {
12136
+ sha256?: string;
12137
+ };
12138
+ generatedAt?: string;
12139
+ evidence?: string[];
12140
+ }, {
12141
+ match?: {
12142
+ recommendation?: "monitor" | "review" | "block";
12143
+ trustScore?: number;
12144
+ artifactId?: string;
12145
+ artifactName?: string;
12146
+ artifactType?: "skill" | "plugin";
12147
+ artifactSlug?: string;
12148
+ verified?: boolean;
12149
+ safetyScore?: number;
12150
+ href?: string;
12151
+ ecosystem?: string;
12152
+ };
12153
+ query?: {
12154
+ sha256?: string;
12155
+ };
12156
+ generatedAt?: string;
12157
+ evidence?: string[];
12158
+ }>;
12159
+ declare const guardTrustResolveResponseSchema: z.ZodObject<{
12160
+ generatedAt: z.ZodString;
12161
+ query: z.ZodObject<{
12162
+ ecosystem: z.ZodOptional<z.ZodString>;
12163
+ name: z.ZodOptional<z.ZodString>;
12164
+ version: z.ZodOptional<z.ZodString>;
12165
+ }, "strip", z.ZodTypeAny, {
12166
+ name?: string;
12167
+ version?: string;
12168
+ ecosystem?: string;
12169
+ }, {
12170
+ name?: string;
12171
+ version?: string;
12172
+ ecosystem?: string;
12173
+ }>;
12174
+ items: z.ZodArray<z.ZodObject<{
12175
+ artifactId: z.ZodString;
12176
+ artifactName: z.ZodString;
12177
+ artifactType: z.ZodEnum<["skill", "plugin"]>;
12178
+ artifactSlug: z.ZodString;
12179
+ recommendation: z.ZodEnum<["monitor", "review", "block"]>;
12180
+ verified: z.ZodBoolean;
12181
+ safetyScore: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
12182
+ trustScore: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
12183
+ href: z.ZodOptional<z.ZodString>;
12184
+ ecosystem: z.ZodOptional<z.ZodString>;
12185
+ }, "strip", z.ZodTypeAny, {
12186
+ recommendation?: "monitor" | "review" | "block";
12187
+ trustScore?: number;
12188
+ artifactId?: string;
12189
+ artifactName?: string;
12190
+ artifactType?: "skill" | "plugin";
12191
+ artifactSlug?: string;
12192
+ verified?: boolean;
12193
+ safetyScore?: number;
12194
+ href?: string;
12195
+ ecosystem?: string;
12196
+ }, {
12197
+ recommendation?: "monitor" | "review" | "block";
12198
+ trustScore?: number;
12199
+ artifactId?: string;
12200
+ artifactName?: string;
12201
+ artifactType?: "skill" | "plugin";
12202
+ artifactSlug?: string;
12203
+ verified?: boolean;
12204
+ safetyScore?: number;
12205
+ href?: string;
12206
+ ecosystem?: string;
12207
+ }>, "many">;
12208
+ }, "strip", z.ZodTypeAny, {
12209
+ items?: {
12210
+ recommendation?: "monitor" | "review" | "block";
12211
+ trustScore?: number;
12212
+ artifactId?: string;
12213
+ artifactName?: string;
12214
+ artifactType?: "skill" | "plugin";
12215
+ artifactSlug?: string;
12216
+ verified?: boolean;
12217
+ safetyScore?: number;
12218
+ href?: string;
12219
+ ecosystem?: string;
12220
+ }[];
12221
+ query?: {
12222
+ name?: string;
12223
+ version?: string;
12224
+ ecosystem?: string;
12225
+ };
12226
+ generatedAt?: string;
12227
+ }, {
12228
+ items?: {
12229
+ recommendation?: "monitor" | "review" | "block";
12230
+ trustScore?: number;
12231
+ artifactId?: string;
12232
+ artifactName?: string;
12233
+ artifactType?: "skill" | "plugin";
12234
+ artifactSlug?: string;
12235
+ verified?: boolean;
12236
+ safetyScore?: number;
12237
+ href?: string;
12238
+ ecosystem?: string;
12239
+ }[];
12240
+ query?: {
12241
+ name?: string;
12242
+ version?: string;
12243
+ ecosystem?: string;
12244
+ };
12245
+ generatedAt?: string;
12246
+ }>;
12247
+ declare const guardRevocationResponseSchema: z.ZodObject<{
12248
+ generatedAt: z.ZodString;
12249
+ items: z.ZodArray<z.ZodObject<{
12250
+ id: z.ZodString;
12251
+ artifactId: z.ZodString;
12252
+ artifactName: z.ZodString;
12253
+ reason: z.ZodString;
12254
+ severity: z.ZodEnum<["low", "medium", "high"]>;
12255
+ publishedAt: z.ZodString;
12256
+ }, "strip", z.ZodTypeAny, {
12257
+ reason?: string;
12258
+ id?: string;
12259
+ artifactId?: string;
12260
+ artifactName?: string;
12261
+ severity?: "low" | "medium" | "high";
12262
+ publishedAt?: string;
12263
+ }, {
12264
+ reason?: string;
12265
+ id?: string;
12266
+ artifactId?: string;
12267
+ artifactName?: string;
12268
+ severity?: "low" | "medium" | "high";
12269
+ publishedAt?: string;
12270
+ }>, "many">;
12271
+ }, "strip", z.ZodTypeAny, {
12272
+ items?: {
12273
+ reason?: string;
12274
+ id?: string;
12275
+ artifactId?: string;
12276
+ artifactName?: string;
12277
+ severity?: "low" | "medium" | "high";
12278
+ publishedAt?: string;
12279
+ }[];
12280
+ generatedAt?: string;
12281
+ }, {
12282
+ items?: {
12283
+ reason?: string;
12284
+ id?: string;
12285
+ artifactId?: string;
12286
+ artifactName?: string;
12287
+ severity?: "low" | "medium" | "high";
12288
+ publishedAt?: string;
12289
+ }[];
12290
+ generatedAt?: string;
12291
+ }>;
12292
+ declare const guardReceiptSchema: z.ZodObject<{
12293
+ receiptId: z.ZodString;
12294
+ capturedAt: z.ZodString;
12295
+ harness: z.ZodString;
12296
+ deviceId: z.ZodString;
12297
+ deviceName: z.ZodString;
12298
+ artifactId: z.ZodString;
12299
+ artifactName: z.ZodString;
12300
+ artifactType: z.ZodEnum<["skill", "plugin"]>;
12301
+ artifactSlug: z.ZodString;
12302
+ artifactHash: z.ZodString;
12303
+ policyDecision: z.ZodEnum<["allow", "warn", "block", "review", "require-reapproval", "sandbox-required"]>;
12304
+ recommendation: z.ZodEnum<["monitor", "review", "block"]>;
12305
+ changedSinceLastApproval: z.ZodBoolean;
12306
+ publisher: z.ZodOptional<z.ZodString>;
12307
+ capabilities: z.ZodArray<z.ZodString, "many">;
12308
+ summary: z.ZodString;
12309
+ }, "strip", z.ZodTypeAny, {
12310
+ capabilities?: string[];
12311
+ summary?: string;
12312
+ recommendation?: "monitor" | "review" | "block";
12313
+ artifactId?: string;
12314
+ artifactName?: string;
12315
+ artifactType?: "skill" | "plugin";
12316
+ artifactSlug?: string;
12317
+ receiptId?: string;
12318
+ capturedAt?: string;
12319
+ harness?: string;
12320
+ deviceId?: string;
12321
+ deviceName?: string;
12322
+ artifactHash?: string;
12323
+ policyDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
12324
+ changedSinceLastApproval?: boolean;
12325
+ publisher?: string;
12326
+ }, {
12327
+ capabilities?: string[];
12328
+ summary?: string;
12329
+ recommendation?: "monitor" | "review" | "block";
12330
+ artifactId?: string;
12331
+ artifactName?: string;
12332
+ artifactType?: "skill" | "plugin";
12333
+ artifactSlug?: string;
12334
+ receiptId?: string;
12335
+ capturedAt?: string;
12336
+ harness?: string;
12337
+ deviceId?: string;
12338
+ deviceName?: string;
12339
+ artifactHash?: string;
12340
+ policyDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
12341
+ changedSinceLastApproval?: boolean;
12342
+ publisher?: string;
12343
+ }>;
12344
+ declare const guardReceiptSyncResponseSchema: z.ZodObject<{
12345
+ syncedAt: z.ZodString;
12346
+ receiptsStored: z.ZodNumber;
12347
+ }, "strip", z.ZodTypeAny, {
12348
+ syncedAt?: string;
12349
+ receiptsStored?: number;
12350
+ }, {
12351
+ syncedAt?: string;
12352
+ receiptsStored?: number;
12353
+ }>;
12354
+ declare const hbarPurchaseIntentResponseSchema: z.ZodObject<{
12355
+ transaction: z.ZodString;
12356
+ transactionId: z.ZodString;
12357
+ network: z.ZodEnum<["mainnet", "testnet"]>;
12358
+ accountId: z.ZodString;
12359
+ treasuryAccountId: z.ZodString;
12360
+ hbarAmount: z.ZodNumber;
12361
+ credits: z.ZodNumber;
12362
+ tinybarAmount: z.ZodNumber;
12363
+ memo: z.ZodString;
12364
+ centsPerHbar: z.ZodNumber;
12365
+ validStart: z.ZodString;
12366
+ validDurationSeconds: z.ZodNumber;
12367
+ requiresManualSubmit: z.ZodLiteral<true>;
12368
+ purchaseId: z.ZodString;
12369
+ }, "strip", z.ZodTypeAny, {
12370
+ transaction?: string;
12371
+ memo?: string;
12372
+ accountId?: string;
12373
+ transactionId?: string;
12374
+ network?: "mainnet" | "testnet";
12375
+ validStart?: string;
12376
+ credits?: number;
12377
+ hbarAmount?: number;
12378
+ centsPerHbar?: number;
12379
+ treasuryAccountId?: string;
12380
+ tinybarAmount?: number;
12381
+ validDurationSeconds?: number;
12382
+ requiresManualSubmit?: true;
12383
+ purchaseId?: string;
12384
+ }, {
12385
+ transaction?: string;
12386
+ memo?: string;
12387
+ accountId?: string;
12388
+ transactionId?: string;
12389
+ network?: "mainnet" | "testnet";
12390
+ validStart?: string;
12391
+ credits?: number;
12392
+ hbarAmount?: number;
12393
+ centsPerHbar?: number;
12394
+ treasuryAccountId?: string;
12395
+ tinybarAmount?: number;
12396
+ validDurationSeconds?: number;
12397
+ requiresManualSubmit?: true;
12398
+ purchaseId?: string;
12399
+ }>;
11744
12400
  declare const x402CreditPurchaseResponseSchema: z.ZodObject<{
11745
12401
  success: z.ZodBoolean;
11746
12402
  accountId: z.ZodString;
@@ -11793,9 +12449,9 @@ declare const x402CreditPurchaseResponseSchema: z.ZodObject<{
11793
12449
  }, "strip", z.ZodTypeAny, {
11794
12450
  accountId?: string;
11795
12451
  success?: boolean;
12452
+ balance?: number;
11796
12453
  creditedCredits?: number;
11797
12454
  usdAmount?: number;
11798
- balance?: number;
11799
12455
  payment?: {
11800
12456
  payer?: string;
11801
12457
  requirement?: Record<string, JsonValue$1>;
@@ -11810,9 +12466,9 @@ declare const x402CreditPurchaseResponseSchema: z.ZodObject<{
11810
12466
  }, {
11811
12467
  accountId?: string;
11812
12468
  success?: boolean;
12469
+ balance?: number;
11813
12470
  creditedCredits?: number;
11814
12471
  usdAmount?: number;
11815
- balance?: number;
11816
12472
  payment?: {
11817
12473
  payer?: string;
11818
12474
  requirement?: Record<string, JsonValue$1>;
@@ -12603,16 +13259,6 @@ declare const adapterRegistrySubmitAdapterResponseSchema: z.ZodObject<{
12603
13259
  p?: "hcs-21";
12604
13260
  op?: "delete" | "register" | "update";
12605
13261
  signature?: string;
12606
- config?: {
12607
- threshold?: string;
12608
- type?: string;
12609
- account?: string;
12610
- ctopic?: string;
12611
- ttopic?: string;
12612
- stopic?: string;
12613
- } & {
12614
- [k: string]: unknown;
12615
- };
12616
13262
  adapter_id?: string;
12617
13263
  entity?: string;
12618
13264
  package?: {
@@ -12623,11 +13269,6 @@ declare const adapterRegistrySubmitAdapterResponseSchema: z.ZodObject<{
12623
13269
  };
12624
13270
  manifest?: string;
12625
13271
  manifest_sequence?: number;
12626
- state_model?: string;
12627
- }, {
12628
- p?: "hcs-21";
12629
- op?: "delete" | "register" | "update";
12630
- signature?: string;
12631
13272
  config?: {
12632
13273
  threshold?: string;
12633
13274
  type?: string;
@@ -12638,6 +13279,11 @@ declare const adapterRegistrySubmitAdapterResponseSchema: z.ZodObject<{
12638
13279
  } & {
12639
13280
  [k: string]: unknown;
12640
13281
  };
13282
+ state_model?: string;
13283
+ }, {
13284
+ p?: "hcs-21";
13285
+ op?: "delete" | "register" | "update";
13286
+ signature?: string;
12641
13287
  adapter_id?: string;
12642
13288
  entity?: string;
12643
13289
  package?: {
@@ -12648,6 +13294,16 @@ declare const adapterRegistrySubmitAdapterResponseSchema: z.ZodObject<{
12648
13294
  };
12649
13295
  manifest?: string;
12650
13296
  manifest_sequence?: number;
13297
+ config?: {
13298
+ threshold?: string;
13299
+ type?: string;
13300
+ account?: string;
13301
+ ctopic?: string;
13302
+ ttopic?: string;
13303
+ stopic?: string;
13304
+ } & {
13305
+ [k: string]: unknown;
13306
+ };
12651
13307
  state_model?: string;
12652
13308
  }>;
12653
13309
  transactionId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -12724,16 +13380,6 @@ declare const adapterRegistrySubmitAdapterResponseSchema: z.ZodObject<{
12724
13380
  p?: "hcs-21";
12725
13381
  op?: "delete" | "register" | "update";
12726
13382
  signature?: string;
12727
- config?: {
12728
- threshold?: string;
12729
- type?: string;
12730
- account?: string;
12731
- ctopic?: string;
12732
- ttopic?: string;
12733
- stopic?: string;
12734
- } & {
12735
- [k: string]: unknown;
12736
- };
12737
13383
  adapter_id?: string;
12738
13384
  entity?: string;
12739
13385
  package?: {
@@ -12744,6 +13390,16 @@ declare const adapterRegistrySubmitAdapterResponseSchema: z.ZodObject<{
12744
13390
  };
12745
13391
  manifest?: string;
12746
13392
  manifest_sequence?: number;
13393
+ config?: {
13394
+ threshold?: string;
13395
+ type?: string;
13396
+ account?: string;
13397
+ ctopic?: string;
13398
+ ttopic?: string;
13399
+ stopic?: string;
13400
+ } & {
13401
+ [k: string]: unknown;
13402
+ };
12747
13403
  state_model?: string;
12748
13404
  };
12749
13405
  }, {
@@ -12770,16 +13426,6 @@ declare const adapterRegistrySubmitAdapterResponseSchema: z.ZodObject<{
12770
13426
  p?: "hcs-21";
12771
13427
  op?: "delete" | "register" | "update";
12772
13428
  signature?: string;
12773
- config?: {
12774
- threshold?: string;
12775
- type?: string;
12776
- account?: string;
12777
- ctopic?: string;
12778
- ttopic?: string;
12779
- stopic?: string;
12780
- } & {
12781
- [k: string]: unknown;
12782
- };
12783
13429
  adapter_id?: string;
12784
13430
  entity?: string;
12785
13431
  package?: {
@@ -12790,6 +13436,16 @@ declare const adapterRegistrySubmitAdapterResponseSchema: z.ZodObject<{
12790
13436
  };
12791
13437
  manifest?: string;
12792
13438
  manifest_sequence?: number;
13439
+ config?: {
13440
+ threshold?: string;
13441
+ type?: string;
13442
+ account?: string;
13443
+ ctopic?: string;
13444
+ ttopic?: string;
13445
+ stopic?: string;
13446
+ } & {
13447
+ [k: string]: unknown;
13448
+ };
12793
13449
  state_model?: string;
12794
13450
  };
12795
13451
  }>;
@@ -15171,22 +15827,22 @@ declare const skillDeprecationsResponseSchema: z.ZodObject<{
15171
15827
  declare const skillSecurityBreakdownResponseSchema: z.ZodObject<{
15172
15828
  jobId: z.ZodString;
15173
15829
  score: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
15174
- findings: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
15175
- summary: z.ZodOptional<z.ZodUnknown>;
15830
+ findings: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue$1, z.ZodTypeDef, JsonValue$1>>, "many">>;
15831
+ summary: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue$1, z.ZodTypeDef, JsonValue$1>>>;
15176
15832
  generatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15177
15833
  scannerVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15178
15834
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
15179
15835
  jobId: z.ZodString;
15180
15836
  score: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
15181
- findings: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
15182
- summary: z.ZodOptional<z.ZodUnknown>;
15837
+ findings: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue$1, z.ZodTypeDef, JsonValue$1>>, "many">>;
15838
+ summary: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue$1, z.ZodTypeDef, JsonValue$1>>>;
15183
15839
  generatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15184
15840
  scannerVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15185
15841
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
15186
15842
  jobId: z.ZodString;
15187
15843
  score: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
15188
- findings: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
15189
- summary: z.ZodOptional<z.ZodUnknown>;
15844
+ findings: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue$1, z.ZodTypeDef, JsonValue$1>>, "many">>;
15845
+ summary: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue$1, z.ZodTypeDef, JsonValue$1>>>;
15190
15846
  generatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15191
15847
  scannerVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15192
15848
  }, z.ZodTypeAny, "passthrough">>;
@@ -34542,6 +35198,26 @@ interface AutoTopUpOptions {
34542
35198
  interface HistoryAutoTopUpOptions extends AutoTopUpOptions {
34543
35199
  hbarAmount?: number;
34544
35200
  }
35201
+ type GuardPlanId = z.infer<typeof guardPlanIdSchema>;
35202
+ type GuardPrincipal = z.infer<typeof guardPrincipalSchema>;
35203
+ type GuardEntitlements = z.infer<typeof guardEntitlementsSchema>;
35204
+ type GuardBucketBalance = z.infer<typeof guardBucketBalanceSchema>;
35205
+ type GuardSessionResponse = z.infer<typeof guardSessionResponseSchema>;
35206
+ type GuardBalanceResponse = z.infer<typeof guardBalanceResponseSchema>;
35207
+ type GuardTrustMatch = z.infer<typeof guardTrustMatchSchema>;
35208
+ type GuardTrustByHashResponse = z.infer<typeof guardTrustByHashResponseSchema>;
35209
+ interface GuardTrustResolveQuery {
35210
+ ecosystem?: string;
35211
+ name?: string;
35212
+ version?: string;
35213
+ }
35214
+ type GuardTrustResolveResponse = z.infer<typeof guardTrustResolveResponseSchema>;
35215
+ type GuardRevocationResponse = z.infer<typeof guardRevocationResponseSchema>;
35216
+ type GuardReceipt = z.infer<typeof guardReceiptSchema>;
35217
+ interface GuardReceiptSyncPayload {
35218
+ receipts: GuardReceipt[];
35219
+ }
35220
+ type GuardReceiptSyncResponse = z.infer<typeof guardReceiptSyncResponseSchema>;
34545
35221
  interface RegisterAgentOptions {
34546
35222
  autoTopUp?: AutoTopUpOptions;
34547
35223
  }
@@ -34832,6 +35508,16 @@ type RegistrationProgressAdditionalEntry = z.infer<typeof registrationProgressAd
34832
35508
  type RegistrationProgressRecord = z.infer<typeof registrationProgressRecordSchema>;
34833
35509
  type RegistrationProgressResponse = z.infer<typeof registrationProgressResponseSchema>;
34834
35510
  type RegisterAgentQuoteResponse = z.infer<typeof registrationQuoteResponseSchema>;
35511
+ type CreditProviderSummary = z.infer<typeof creditProviderSummarySchema>;
35512
+ type CreditProvidersResponse = z.infer<typeof creditProvidersResponseSchema>;
35513
+ type CreditBalanceResponse = z.infer<typeof creditBalanceResponseSchema>;
35514
+ interface HbarPurchaseIntentRequest {
35515
+ accountId?: string;
35516
+ credits?: number;
35517
+ hbarAmount?: number;
35518
+ memo?: string;
35519
+ }
35520
+ type HbarPurchaseIntentResponse = z.infer<typeof hbarPurchaseIntentResponseSchema>;
34835
35521
  type CreditPurchaseResponse = z.infer<typeof creditPurchaseResponseSchema>;
34836
35522
  type X402CreditPurchaseResponse = z.infer<typeof x402CreditPurchaseResponseSchema>;
34837
35523
  type X402MinimumsResponse = z.infer<typeof x402MinimumsResponseSchema>;
@@ -35324,6 +36010,18 @@ declare class RegistryBrokerClient {
35324
36010
  getUaidConnectionStatus(uaid: string): Promise<UaidConnectionStatus>;
35325
36011
  closeUaidConnection(uaid: string): Promise<void>;
35326
36012
  dashboardStats(): Promise<DashboardStatsResponse>;
36013
+ getCreditsBalance(params?: {
36014
+ accountId?: string;
36015
+ }): Promise<CreditBalanceResponse>;
36016
+ getCreditProviders(): Promise<CreditProvidersResponse>;
36017
+ getGuardSession(): Promise<GuardSessionResponse>;
36018
+ getGuardEntitlements(): Promise<GuardSessionResponse>;
36019
+ getGuardBillingBalance(): Promise<GuardBalanceResponse>;
36020
+ getGuardTrustByHash(sha256: string): Promise<GuardTrustByHashResponse>;
36021
+ resolveGuardTrust(query: GuardTrustResolveQuery): Promise<GuardTrustResolveResponse>;
36022
+ getGuardRevocations(): Promise<GuardRevocationResponse>;
36023
+ syncGuardReceipts(payload: GuardReceiptSyncPayload): Promise<GuardReceiptSyncResponse>;
36024
+ createHbarPurchaseIntent(payload: HbarPurchaseIntentRequest): Promise<HbarPurchaseIntentResponse>;
35327
36025
  purchaseCreditsWithHbar(params: {
35328
36026
  accountId: string;
35329
36027
  privateKey: string;
@@ -35474,4 +36172,4 @@ declare const buildJobStatusMessage: (input: {
35474
36172
  jobId: number;
35475
36173
  }) => string;
35476
36174
 
35477
- export { type AcceptConversationOptions, type AcceptEncryptedChatSessionOptions, type AdapterDetailsResponse, type AdapterRegistryAdaptersResponse, type AdapterRegistryCategoriesResponse, type AdapterRegistryCategory, type AdapterRegistryCreateCategoryResponse, type AdapterRegistrySubmissionStatusResponse, type AdapterRegistrySubmitAdapterAcceptedResponse, type AdapterRegistrySubmitAdapterResponse, type AdaptersResponse, type AdditionalRegistryCatalogResponse, type AdditionalRegistryDescriptor, type AdditionalRegistryNetworkDescriptor, type AgentAuthConfig, type AgentAuthType, type AgentFeedbackEligibilityRequest, type AgentFeedbackEligibilityResponse, type AgentFeedbackEntriesIndexResponse, type AgentFeedbackIndexResponse, type AgentFeedbackQuery, type AgentFeedbackResponse, type AgentFeedbackSubmissionRequest, type AgentFeedbackSubmissionResponse, type AgentProfile, type AgentRegistrationRequest, type AgentRegistrationRequestMetadata, type AgentSearchHit, type AutoRegisterEncryptionKeyOptions, type AutoTopUpOptions, type CanonicalLedgerNetwork, type ChatConversationHandle, type ChatHistoryCompactionResponse, type ChatHistoryEntry, type ChatHistoryFetchOptions, type ChatHistorySnapshotResponse, type ChatHistorySnapshotWithDecryptedEntries, type CipherEnvelope, type CipherEnvelopeRecipient, type ClientEncryptionOptions, type CompactHistoryRequestPayload, type ConversationEncryptionOptions, type ConversationMode, type CreateAdapterRegistryCategoryRequest, type CreateSessionRequestPayload, type CreateSessionResponse, type CreditPurchaseResponse, type DashboardStatsResponse, type DecryptCipherEnvelopeOptions, type DecryptedHistoryEntry, type DelegationOpportunity, type DelegationPlanCandidate, type DelegationPlanFilter, type DelegationPlanRequest, type DelegationPlanResponse, type DelegationWorkspaceContext, type DeriveSharedSecretOptions, type DetectProtocolResponse, type EncryptCipherEnvelopeOptions, type EncryptedChatSendOptions, type EncryptedChatSessionHandle, type EncryptionHandshakeRecord, type EncryptionHandshakeResponse, type EncryptionHandshakeSubmissionPayload, type EnsureAgentKeyOptions, type EphemeralKeyPair, type GenerateEncryptionKeyPairOptions, HOL_CHAT_PROTOCOL_ID, type HistoryAutoTopUpOptions, type HolChatOp, type HolChatOpBase, type HolChatOpName, type InitializeAgentClientOptions, type InitializedAgentClient, type JsonObject, type JsonPrimitive, type JsonValue, type LedgerAuthenticationLogger, type LedgerAuthenticationOptions, type LedgerAuthenticationSignerResult, type LedgerChallengeRequest, type LedgerChallengeResponse, type LedgerCredentialAuthOptions, type LedgerVerifyRequest, type LedgerVerifyResponse, type MetricsSummaryResponse, type MoltbookOwnerRegistrationUpdateRequest, type MoltbookOwnerRegistrationUpdateResponse, type PopularSearchesResponse, type PrivateKeySignerOptions, type ProtocolDetectionMessage, type ProtocolsResponse, type RecipientIdentity, type RegisterAgentOptions, type RegisterAgentPartialResponse, type RegisterAgentPendingResponse, type RegisterAgentQuoteResponse, type RegisterAgentResponse, type RegisterAgentSuccessResponse, type RegisterEncryptionKeyPayload, type RegisterEncryptionKeyResponse, type RegisterStatusResponse, type RegistrationProgressAdditionalEntry, type RegistrationProgressRecord, type RegistrationProgressResponse, type RegistrationProgressWaitOptions, type RegistriesResponse, RegistryBrokerClient, type RegistryBrokerClientOptions, RegistryBrokerError, RegistryBrokerParseError, type RegistrySearchByNamespaceResponse, type RegistryStatsResponse, type ResolvedAgentResponse, type SearchFacetsResponse, type SearchParams, type SearchResult, type SearchStatusResponse, type SendMessageBasePayload, type SendMessageEncryptionOptions, type SendMessageRequestPayload, type SendMessageResponse, type SessionEncryptionStatusResponse, type SessionEncryptionSummary, type SharedSecretInput, type SkillBadgeMetric, type SkillBadgeQuery, type SkillBadgeResponse, type SkillBadgeStyle, type SkillCatalogChannel, type SkillCatalogItem, type SkillCatalogQueryOptions, type SkillCatalogResponse, type SkillCatalogSortBy, type SkillCatalogVersionSummary, type SkillConversionSignalsResponse, type SkillDeprecationRecord, type SkillDeprecationSetRequest, type SkillDeprecationsResponse, type SkillInstallArtifactDescriptor, type SkillInstallBadgeDescriptor, type SkillInstallCopyTelemetryRequest, type SkillInstallCopyTelemetryResponse, type SkillInstallResolverDescriptor, type SkillInstallResponse, type SkillInstallShareDescriptor, type SkillInstallSnippetSet, type SkillListOptions, type SkillPreviewByRepoRequest, type SkillPreviewLookupRequest, type SkillPreviewLookupResponse, type SkillPreviewRecord, type SkillPreviewReport, type SkillPreviewSuggestedNextStep, type SkillQuotePreviewRange, type SkillQuotePreviewRequest, type SkillQuotePreviewResponse, type SkillRecommendedVersionResponse, type SkillRecommendedVersionSetRequest, type SkillRegistryCategoriesResponse, type SkillRegistryConfigResponse, type SkillRegistryFileDescriptor, type SkillRegistryFileInput, type SkillRegistryFileRole, type SkillRegistryJobStatusResponse, type SkillRegistryListResponse, type SkillRegistryMineResponse, type SkillRegistryMyListResponse, type SkillRegistryOwnershipResponse, type SkillRegistryPublishRequest, type SkillRegistryPublishResponse, type SkillRegistryPublishSummary, type SkillRegistryQuoteRequest, type SkillRegistryQuoteResponse, type SkillRegistryTagsResponse, type SkillRegistryVersionsResponse, type SkillRegistryVoteRequest, type SkillRegistryVoteStatusResponse, type SkillResolverManifestResponse, type SkillSecurityBreakdownRequest, type SkillSecurityBreakdownResponse, type SkillStatusChecks, type SkillStatusNextStep, type SkillStatusPreviewMetadata, type SkillStatusProvenanceSignals, type SkillStatusRequest, type SkillStatusResponse, type SkillStatusVerificationSignals, type SkillTrustTier, type SkillVerificationDomainProofChallengeRequest, type SkillVerificationDomainProofChallengeResponse, type SkillVerificationDomainProofVerifyRequest, type SkillVerificationDomainProofVerifyResponse, type SkillVerificationRequest, type SkillVerificationRequestCreateRequest, type SkillVerificationRequestCreateResponse, type SkillVerificationStatusResponse, type SkillVerificationTier, type StartChatBaseOptions, type StartChatOptions, type StartConversationOptions, type StartEncryptedChatSessionOptions, type SubmitAdapterRegistryAdapterRequest, type UaidConnectionStatus, type UaidValidationResponse, type UploadSkillPreviewFromGithubOidcRequest, type VectorSearchFilter, type VectorSearchRequest, type VectorSearchResponse, type VerificationChallengeDetailsResponse, type VerificationChallengeResponse, type VerificationDnsStatusQuery, type VerificationDnsStatusResponse, type VerificationDnsVerifyRequest, type VerificationOwnershipResponse, type VerificationStatusResponse, type VerificationVerifyResponse, type VerificationVerifySenderResponse, type WebsocketStatsResponse, type X402CreditPurchaseResponse, type X402MinimumsResponse, buildJobStatusMessage, buildPaymentApproveMessage, buildPaymentDeclineMessage, canonicalizeLedgerNetwork, closeUaidConnection, createPrivateKeySigner, createPrivateKeySignerAsync, dashboardStats, getRegistrationProgress, getRegistrationQuote, getUaidConnectionStatus, isHolChatOp, isPartialRegisterAgentResponse, isPendingRegisterAgentResponse, isSuccessRegisterAgentResponse, parseHolChatOps, registerAgent, resolveUaid, updateAgent, validateUaid, waitForRegistrationCompletion };
36175
+ export { type AcceptConversationOptions, type AcceptEncryptedChatSessionOptions, type AdapterDetailsResponse, type AdapterRegistryAdaptersResponse, type AdapterRegistryCategoriesResponse, type AdapterRegistryCategory, type AdapterRegistryCreateCategoryResponse, type AdapterRegistrySubmissionStatusResponse, type AdapterRegistrySubmitAdapterAcceptedResponse, type AdapterRegistrySubmitAdapterResponse, type AdaptersResponse, type AdditionalRegistryCatalogResponse, type AdditionalRegistryDescriptor, type AdditionalRegistryNetworkDescriptor, type AgentAuthConfig, type AgentAuthType, type AgentFeedbackEligibilityRequest, type AgentFeedbackEligibilityResponse, type AgentFeedbackEntriesIndexResponse, type AgentFeedbackIndexResponse, type AgentFeedbackQuery, type AgentFeedbackResponse, type AgentFeedbackSubmissionRequest, type AgentFeedbackSubmissionResponse, type AgentProfile, type AgentRegistrationRequest, type AgentRegistrationRequestMetadata, type AgentSearchHit, type AutoRegisterEncryptionKeyOptions, type AutoTopUpOptions, type CanonicalLedgerNetwork, type ChatConversationHandle, type ChatHistoryCompactionResponse, type ChatHistoryEntry, type ChatHistoryFetchOptions, type ChatHistorySnapshotResponse, type ChatHistorySnapshotWithDecryptedEntries, type CipherEnvelope, type CipherEnvelopeRecipient, type ClientEncryptionOptions, type CompactHistoryRequestPayload, type ConversationEncryptionOptions, type ConversationMode, type CreateAdapterRegistryCategoryRequest, type CreateSessionRequestPayload, type CreateSessionResponse, type CreditBalanceResponse, type CreditProviderSummary, type CreditProvidersResponse, type CreditPurchaseResponse, type DashboardStatsResponse, type DecryptCipherEnvelopeOptions, type DecryptedHistoryEntry, type DelegationOpportunity, type DelegationPlanCandidate, type DelegationPlanFilter, type DelegationPlanRequest, type DelegationPlanResponse, type DelegationWorkspaceContext, type DeriveSharedSecretOptions, type DetectProtocolResponse, type EncryptCipherEnvelopeOptions, type EncryptedChatSendOptions, type EncryptedChatSessionHandle, type EncryptionHandshakeRecord, type EncryptionHandshakeResponse, type EncryptionHandshakeSubmissionPayload, type EnsureAgentKeyOptions, type EphemeralKeyPair, type GenerateEncryptionKeyPairOptions, type GuardBalanceResponse, type GuardBucketBalance, type GuardEntitlements, type GuardPlanId, type GuardPrincipal, type GuardReceipt, type GuardReceiptSyncPayload, type GuardReceiptSyncResponse, type GuardRevocationResponse, type GuardSessionResponse, type GuardTrustByHashResponse, type GuardTrustMatch, type GuardTrustResolveQuery, type GuardTrustResolveResponse, HOL_CHAT_PROTOCOL_ID, type HbarPurchaseIntentRequest, type HbarPurchaseIntentResponse, type HistoryAutoTopUpOptions, type HolChatOp, type HolChatOpBase, type HolChatOpName, type InitializeAgentClientOptions, type InitializedAgentClient, type JsonObject, type JsonPrimitive, type JsonValue, type LedgerAuthenticationLogger, type LedgerAuthenticationOptions, type LedgerAuthenticationSignerResult, type LedgerChallengeRequest, type LedgerChallengeResponse, type LedgerCredentialAuthOptions, type LedgerVerifyRequest, type LedgerVerifyResponse, type MetricsSummaryResponse, type MoltbookOwnerRegistrationUpdateRequest, type MoltbookOwnerRegistrationUpdateResponse, type PopularSearchesResponse, type PrivateKeySignerOptions, type ProtocolDetectionMessage, type ProtocolsResponse, type RecipientIdentity, type RegisterAgentOptions, type RegisterAgentPartialResponse, type RegisterAgentPendingResponse, type RegisterAgentQuoteResponse, type RegisterAgentResponse, type RegisterAgentSuccessResponse, type RegisterEncryptionKeyPayload, type RegisterEncryptionKeyResponse, type RegisterStatusResponse, type RegistrationProgressAdditionalEntry, type RegistrationProgressRecord, type RegistrationProgressResponse, type RegistrationProgressWaitOptions, type RegistriesResponse, RegistryBrokerClient, type RegistryBrokerClientOptions, RegistryBrokerError, RegistryBrokerParseError, type RegistrySearchByNamespaceResponse, type RegistryStatsResponse, type ResolvedAgentResponse, type SearchFacetsResponse, type SearchParams, type SearchResult, type SearchStatusResponse, type SendMessageBasePayload, type SendMessageEncryptionOptions, type SendMessageRequestPayload, type SendMessageResponse, type SessionEncryptionStatusResponse, type SessionEncryptionSummary, type SharedSecretInput, type SkillBadgeMetric, type SkillBadgeQuery, type SkillBadgeResponse, type SkillBadgeStyle, type SkillCatalogChannel, type SkillCatalogItem, type SkillCatalogQueryOptions, type SkillCatalogResponse, type SkillCatalogSortBy, type SkillCatalogVersionSummary, type SkillConversionSignalsResponse, type SkillDeprecationRecord, type SkillDeprecationSetRequest, type SkillDeprecationsResponse, type SkillInstallArtifactDescriptor, type SkillInstallBadgeDescriptor, type SkillInstallCopyTelemetryRequest, type SkillInstallCopyTelemetryResponse, type SkillInstallResolverDescriptor, type SkillInstallResponse, type SkillInstallShareDescriptor, type SkillInstallSnippetSet, type SkillListOptions, type SkillPreviewByRepoRequest, type SkillPreviewLookupRequest, type SkillPreviewLookupResponse, type SkillPreviewRecord, type SkillPreviewReport, type SkillPreviewSuggestedNextStep, type SkillQuotePreviewRange, type SkillQuotePreviewRequest, type SkillQuotePreviewResponse, type SkillRecommendedVersionResponse, type SkillRecommendedVersionSetRequest, type SkillRegistryCategoriesResponse, type SkillRegistryConfigResponse, type SkillRegistryFileDescriptor, type SkillRegistryFileInput, type SkillRegistryFileRole, type SkillRegistryJobStatusResponse, type SkillRegistryListResponse, type SkillRegistryMineResponse, type SkillRegistryMyListResponse, type SkillRegistryOwnershipResponse, type SkillRegistryPublishRequest, type SkillRegistryPublishResponse, type SkillRegistryPublishSummary, type SkillRegistryQuoteRequest, type SkillRegistryQuoteResponse, type SkillRegistryTagsResponse, type SkillRegistryVersionsResponse, type SkillRegistryVoteRequest, type SkillRegistryVoteStatusResponse, type SkillResolverManifestResponse, type SkillSecurityBreakdownRequest, type SkillSecurityBreakdownResponse, type SkillStatusChecks, type SkillStatusNextStep, type SkillStatusPreviewMetadata, type SkillStatusProvenanceSignals, type SkillStatusRequest, type SkillStatusResponse, type SkillStatusVerificationSignals, type SkillTrustTier, type SkillVerificationDomainProofChallengeRequest, type SkillVerificationDomainProofChallengeResponse, type SkillVerificationDomainProofVerifyRequest, type SkillVerificationDomainProofVerifyResponse, type SkillVerificationRequest, type SkillVerificationRequestCreateRequest, type SkillVerificationRequestCreateResponse, type SkillVerificationStatusResponse, type SkillVerificationTier, type StartChatBaseOptions, type StartChatOptions, type StartConversationOptions, type StartEncryptedChatSessionOptions, type SubmitAdapterRegistryAdapterRequest, type UaidConnectionStatus, type UaidValidationResponse, type UploadSkillPreviewFromGithubOidcRequest, type VectorSearchFilter, type VectorSearchRequest, type VectorSearchResponse, type VerificationChallengeDetailsResponse, type VerificationChallengeResponse, type VerificationDnsStatusQuery, type VerificationDnsStatusResponse, type VerificationDnsVerifyRequest, type VerificationOwnershipResponse, type VerificationStatusResponse, type VerificationVerifyResponse, type VerificationVerifySenderResponse, type WebsocketStatsResponse, type X402CreditPurchaseResponse, type X402MinimumsResponse, buildJobStatusMessage, buildPaymentApproveMessage, buildPaymentDeclineMessage, canonicalizeLedgerNetwork, closeUaidConnection, createPrivateKeySigner, createPrivateKeySignerAsync, dashboardStats, getRegistrationProgress, getRegistrationQuote, getUaidConnectionStatus, isHolChatOp, isPartialRegisterAgentResponse, isPendingRegisterAgentResponse, isSuccessRegisterAgentResponse, parseHolChatOps, registerAgent, resolveUaid, updateAgent, validateUaid, waitForRegistrationCompletion };