@@ -2238,7 +2238,7 @@ const AuthClawbackEnabledFlag: number
22382238## AuthFlag
22392239
22402240```ts
2241- type AuthFlag = unknown
2241+ type AuthFlag = { readonly clawbackEnabled: 8; readonly immutable: 4; readonly required: 1; readonly revocable: 2 }
22422242```
22432243
22442244**Source:** [src/base/operations/types.ts:431](https://github.com/stellar/js-stellar-sdk/blob/main/src/base/operations/types.ts#L431)
@@ -26043,7 +26043,7 @@ txFromXDR<T>(xdrBase64: string): AssembledTransaction<T>;
2604326043Options for a smart contract client.
2604426044
2604526045```ts
26046- type ClientOptions = unknown
26046+ type ClientOptions = { allowHttp?: boolean; contractId: string; errorTypes?: Record<number, { message: string }>; headers?: Record<string, string>; networkPassphrase: string; publicKey?: string; rpcUrl: string; server?: Server; signAuthEntry?: SignAuthEntry; signTransaction?: SignTransaction }
2604726047```
2604826048
2604926049**Source:** [src/contract/types.ts:127](https://github.com/stellar/js-stellar-sdk/blob/main/src/contract/types.ts#L127)
@@ -26100,7 +26100,7 @@ message: string;
2610026100Options for a smart contract method invocation.
2610126101
2610226102```ts
26103- type MethodOptions = unknown
26103+ type MethodOptions = { fee?: string; publicKey?: string; restore?: boolean; signAuthEntry?: SignAuthEntry; signTransaction?: SignTransaction; simulate?: boolean; timeoutInSeconds?: number }
2610426104```
2610526105
2610626106**Source:** [src/contract/types.ts:203](https://github.com/stellar/js-stellar-sdk/blob/main/src/contract/types.ts#L203)
@@ -28328,7 +28328,7 @@ A promise that resolves to the federation record
2832828328A parsed and validated challenge transaction, and some of its constituent details.
2832928329
2833028330```ts
28331- type ChallengeTxDetails = unknown
28331+ type ChallengeTxDetails = { clientAccountId: string; matchedHomeDomain: string; memo?: string; tx: Transaction }
2833228332```
2833328333
2833428334**Source:** [src/webauth/utils.ts:104](https://github.com/stellar/js-stellar-sdk/blob/main/src/webauth/utils.ts#L104)
0 commit comments