@rkat/sdk 0.8.8 → 0.8.9

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.
@@ -1,4 +1,4 @@
1
- export declare const CONTRACT_VERSION = "0.8.8";
1
+ export declare const CONTRACT_VERSION = "0.8.9";
2
2
  export type Value = unknown;
3
3
  export interface WireUsage {
4
4
  input_tokens: number;
@@ -1002,6 +1002,7 @@ export interface MobSpawnManySpawnedResult {
1002
1002
  export interface MobSpawnManyFailedResult {
1003
1003
  cause: MobSpawnManyFailureCause;
1004
1004
  message: string;
1005
+ structured_data?: unknown;
1005
1006
  }
1006
1007
  export interface MobSpawnReceiptWire {
1007
1008
  agent_identity: string;
@@ -2140,7 +2141,10 @@ export interface MemberBuildRejectionBindingUnresolvable {
2140
2141
  binding_unresolvable: MemberBuildRejectionBindingUnresolvablePayload;
2141
2142
  }
2142
2143
  export interface MemberBuildRejectionProviderAuthPayload {
2144
+ binding_id?: string | null;
2143
2145
  kind: AuthErrorKind;
2146
+ provider?: Provider | null;
2147
+ realm_id?: string | null;
2144
2148
  }
2145
2149
  export interface MemberBuildRejectionProviderAuth {
2146
2150
  provider_auth: MemberBuildRejectionProviderAuthPayload;