Skip to content

Commit

Permalink
Imodel02 merge master (#5926)
Browse files Browse the repository at this point in the history
  • Loading branch information
aruniverse authored Aug 30, 2023
2 parents 45d9fb8 + f36c576 commit 77e640f
Show file tree
Hide file tree
Showing 126 changed files with 7,963 additions and 704 deletions.
3 changes: 2 additions & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ rush.json @iTwin/itwinjs-core-admins

/common/**/*-extension/ @aruniverse @calebmshafer

/common/**/ecsql-*/ @iTwin/itwinjs-core-admins @khanaffan @ColinKerr
/common/**/ecschema-*.* @calebmshafer @ColinKerr @wgoehrig
/common/**/ecschema-*/ @calebmshafer @ColinKerr @wgoehrig
/common/**/ecschema2ts.* @calebmshafer @ColinKerr @wgoehrig
Expand Down Expand Up @@ -89,7 +90,7 @@ rush.json @iTwin/itwinjs-core-admins
/common/**/core-webpack-tools/ @aruniverse @calebmshafer @wgoehrig

/common/config/azure-pipelines @aruniverse @calebmshafer @ColinKerr @wgoehrig

/core/ecsql @iTwin/itwinjs-core-admins @khanaffan @ColinKerr
/core/backend @iTwin/itwinjs-core-admins
/core/bentley @iTwin/itwinjs-core-admins
/core/common @iTwin/itwinjs-core-admins @iTwin/itwinjs-core-display
Expand Down
34 changes: 32 additions & 2 deletions common/api/core-backend.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -1008,10 +1008,11 @@ export namespace CloudSqlite {
}
export function downloadDb(container: CloudContainer, props: TransferDbProps): Promise<void>;
// @internal (undocumented)
export interface LockAndOpenArgs {
export interface LockAndOpenArgs extends SQLiteDb.WithOpenDbArgs {
busyHandler?: WriteLockBusyHandler;
container: CloudContainer;
dbName: string;
openMode?: OpenMode;
user: string;
}
export enum LoggingMask {
Expand Down Expand Up @@ -2975,7 +2976,7 @@ export abstract class IModelDb extends IModel {
// (undocumented)
readonly models: IModelDb.Models;
// @internal (undocumented)
get nativeDb(): IModelJsNative.DgnDb;
readonly nativeDb: IModelJsNative.DgnDb;
// @internal (undocumented)
notifyChangesetApplied(): void;
readonly onBeforeClose: BeEvent<() => void>;
Expand Down Expand Up @@ -4603,6 +4604,35 @@ export class Schemas {
static unregisterSchema(schemaName: string): boolean;
}

// @internal (undocumented)
export namespace SchemaSync {
export class CloudAccess extends CloudSqlite.DbAccess<SchemaSyncDb> {
constructor(props: CloudSqlite.ContainerAccessProps);
// (undocumented)
getUri(): string;
static initializeDb(props: CloudSqlite.ContainerAccessProps): Promise<void>;
}
const // (undocumented)
setTestCache: (iModel: IModelDb, cacheName: string) => void;
const // (undocumented)
withLockedAccess: (iModel: TestCacheIModel, args: {
operationName: string;
openMode?: OpenMode;
user?: string;
}, operation: (access: CloudAccess) => Promise<void>) => Promise<void>;
const // (undocumented)
initializeForIModel: (arg: {
iModel: IModelDb;
containerProps: CloudSqlite.ContainerProps;
}) => Promise<void>;
export class SchemaSyncDb extends VersionedSqliteDb {
// (undocumented)
protected createDDL(): void;
// (undocumented)
readonly myVersion = "4.0.0";
}
}

// @public
export class SectionCallout extends Callout {
constructor(props: CalloutProps, iModel: IModelDb);
Expand Down
81 changes: 21 additions & 60 deletions common/api/core-geometry.api.md

Large diffs are not rendered by default.

Loading

0 comments on commit 77e640f

Please sign in to comment.