Skip to content

Commit

Permalink
extract-api
Browse files Browse the repository at this point in the history
  • Loading branch information
khanaffan committed Jan 23, 2025
1 parent 0cff296 commit 98d9e55
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
13 changes: 13 additions & 0 deletions common/api/core-common.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -614,6 +614,8 @@ export interface BaseReaderOptions {
priority?: number;
quota?: QueryQuota;
restartToken?: string;
// @internal (undocumented)
testingArgs?: TestingArgs;
usePrimaryConn?: boolean;
}

Expand Down Expand Up @@ -1988,6 +1990,7 @@ export interface DbBlobResponse extends DbResponse {

// @internal (undocumented)
export interface DbQueryConfig {
allowTestingArgs?: boolean;
autoShutdowWhenIdlelForSeconds?: number;
// (undocumented)
doNotUsePrimaryConnToPrepare?: boolean;
Expand Down Expand Up @@ -2038,6 +2041,8 @@ export interface DbQueryResponse extends DbResponse {
export interface DbRequest extends BaseReaderOptions {
// (undocumented)
kind?: DbRequestKind;
// (undocumented)
testingArgs?: TestingArgs;
}

// @internal (undocumented)
Expand Down Expand Up @@ -7420,6 +7425,8 @@ export class QueryOptionsBuilder {
setRestartToken(val: string): this;
setRowFormat(val: QueryRowFormat): this;
setSuppressLogErrors(val: boolean): this;
// @internal
setTestingArgs(val: TestingArgs): this;
setUsePrimaryConnection(val: boolean): this;
}

Expand Down Expand Up @@ -9669,6 +9676,12 @@ export class TerrainSettings {
toJSON(): TerrainProps;
}

// @internal (undocumented)
export interface TestingArgs {
// (undocumented)
interrupt?: boolean;
}

// @internal
export class TestRpcManager {
// (undocumented)
Expand Down
1 change: 1 addition & 0 deletions common/api/summary/core-common.exports.csv
Original file line number Diff line number Diff line change
Expand Up @@ -832,6 +832,7 @@ public;interface;TerrainProps
public;type;TerrainProviderName
deprecated;type;TerrainProviderName
public;class;TerrainSettings
internal;interface;TestingArgs
internal;class;TestRpcManager
beta;class;TextAnnotation
public;interface;TextAnnotation2dProps
Expand Down

0 comments on commit 98d9e55

Please sign in to comment.