@itwin/ecschema-rpcinterface-tests 4.0.0-dev.102 → 4.0.0-dev.104

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.
@@ -59083,40 +59083,82 @@ exports.ECStringConstants = ECStringConstants;
59083
59083
  * See LICENSE.md in the project root for license terms and full copyright notice.
59084
59084
  *--------------------------------------------------------------------------------------------*/
59085
59085
  Object.defineProperty(exports, "__esModule", ({ value: true }));
59086
- exports.SchemaContext = exports.SchemaCache = exports.SchemaMap = void 0;
59086
+ exports.SchemaContext = exports.SchemaCache = void 0;
59087
59087
  const ECObjects_1 = __webpack_require__(/*! ./ECObjects */ "../../core/ecschema-metadata/lib/cjs/ECObjects.js");
59088
59088
  const Exception_1 = __webpack_require__(/*! ./Exception */ "../../core/ecschema-metadata/lib/cjs/Exception.js");
59089
59089
  /**
59090
- * @beta
59090
+ * @internal
59091
59091
  */
59092
59092
  class SchemaMap extends Array {
59093
59093
  }
59094
- exports.SchemaMap = SchemaMap;
59095
59094
  /**
59096
- * @beta
59095
+ * @internal
59097
59096
  */
59098
59097
  class SchemaCache {
59099
59098
  constructor() {
59100
59099
  this._schema = new SchemaMap();
59101
59100
  }
59102
59101
  get count() { return this._schema.length; }
59102
+ loadedSchemaExists(schemaKey) {
59103
+ return undefined !== this._schema.find((entry) => entry.schemaInfo.schemaKey.matches(schemaKey, ECObjects_1.SchemaMatchType.Latest) && !entry.schemaPromise);
59104
+ }
59105
+ schemaPromiseExists(schemaKey) {
59106
+ return undefined !== this._schema.find((entry) => entry.schemaInfo.schemaKey.matches(schemaKey, ECObjects_1.SchemaMatchType.Latest) && undefined !== entry.schemaPromise);
59107
+ }
59108
+ findEntry(schemaKey, matchType) {
59109
+ return this._schema.find((entry) => entry.schemaInfo.schemaKey.matches(schemaKey, matchType));
59110
+ }
59111
+ removeSchemaPromise(schemaKey) {
59112
+ const entry = this.findEntry(schemaKey, ECObjects_1.SchemaMatchType.Latest);
59113
+ if (entry)
59114
+ entry.schemaPromise = undefined;
59115
+ }
59116
+ removeEntry(schemaKey) {
59117
+ this._schema = this._schema.filter((entry) => !entry.schemaInfo.schemaKey.matches(schemaKey));
59118
+ }
59119
+ /**
59120
+ * Returns true if the schema exists in either the schema cache or the promise cache. SchemaMatchType.Latest used.
59121
+ * @param schemaKey The key to search for.
59122
+ */
59123
+ schemaExists(schemaKey) {
59124
+ return this.loadedSchemaExists(schemaKey) || this.schemaPromiseExists(schemaKey);
59125
+ }
59126
+ /**
59127
+ * Adds a promise to load the schema to the cache. Does not allow for duplicate schemas in the cache of schemas or cache of promises, checks using SchemaMatchType.Latest.
59128
+ * When the promise completes the schema will be added to the schema cache and the promise will be removed from the promise cache
59129
+ * @param schemaInfo An object with the schema key for the schema being loaded and it's references
59130
+ * @param schema The partially loaded schema that the promise will fulfill
59131
+ * @param schemaPromise The schema promise to add to the cache.
59132
+ */
59133
+ async addSchemaPromise(schemaInfo, schema, schemaPromise) {
59134
+ if (this.schemaExists(schemaInfo.schemaKey))
59135
+ throw new Exception_1.ECObjectsError(Exception_1.ECObjectsStatus.DuplicateSchema, `The schema, ${schemaPromise.toString()}, already exists within this cache.`);
59136
+ this._schema.push({ schemaInfo, schema, schemaPromise });
59137
+ // This promise is cached and will be awaited when the user requests the full schema.
59138
+ // If the promise competes successfully before the user requests the schema it will be removed from the cache
59139
+ // If it fails it will remain in the cache until the user awaits it and handles the error
59140
+ // eslint-disable-next-line @typescript-eslint/no-floating-promises
59141
+ schemaPromise.then(() => {
59142
+ this.removeSchemaPromise(schemaInfo.schemaKey);
59143
+ });
59144
+ }
59103
59145
  /**
59104
59146
  * Adds a schema to the cache. Does not allow for duplicate schemas, checks using SchemaMatchType.Latest.
59105
59147
  * @param schema The schema to add to the cache.
59106
59148
  */
59107
59149
  async addSchema(schema) {
59108
- if (await this.getSchema(schema.schemaKey))
59150
+ if (this.schemaExists(schema.schemaKey))
59109
59151
  throw new Exception_1.ECObjectsError(Exception_1.ECObjectsStatus.DuplicateSchema, `The schema, ${schema.schemaKey.toString()}, already exists within this cache.`);
59110
- this._schema.push(schema);
59152
+ this._schema.push({ schemaInfo: schema, schema });
59111
59153
  }
59112
59154
  /**
59113
59155
  * Adds a schema to the cache. Does not allow for duplicate schemas, checks using SchemaMatchType.Latest.
59114
59156
  * @param schema The schema to add to the cache.
59115
59157
  */
59116
59158
  addSchemaSync(schema) {
59117
- if (this.getSchemaSync(schema.schemaKey))
59159
+ if (this.schemaExists(schema.schemaKey))
59118
59160
  throw new Exception_1.ECObjectsError(Exception_1.ECObjectsStatus.DuplicateSchema, `The schema, ${schema.schemaKey.toString()}, already exists within this cache.`);
59119
- this._schema.push(schema);
59161
+ this._schema.push({ schemaInfo: schema, schema });
59120
59162
  }
59121
59163
  /**
59122
59164
  * Gets the schema which matches the provided SchemaKey.
@@ -59126,46 +59168,69 @@ class SchemaCache {
59126
59168
  async getSchema(schemaKey, matchType = ECObjects_1.SchemaMatchType.Latest) {
59127
59169
  if (this.count === 0)
59128
59170
  return undefined;
59129
- const findFunc = (schema) => {
59130
- return schema.schemaKey.matches(schemaKey, matchType);
59131
- };
59132
- const foundSchema = this._schema.find(findFunc);
59133
- if (!foundSchema)
59171
+ const entry = this.findEntry(schemaKey, matchType);
59172
+ if (!entry)
59134
59173
  return undefined;
59135
- return foundSchema;
59174
+ if (entry.schemaPromise) {
59175
+ try {
59176
+ const schema = await entry.schemaPromise;
59177
+ return schema;
59178
+ }
59179
+ catch (e) {
59180
+ this.removeEntry(schemaKey);
59181
+ throw e;
59182
+ }
59183
+ }
59184
+ return entry.schema;
59136
59185
  }
59137
59186
  /**
59138
- *
59139
- * @param schemaKey
59140
- * @param matchType
59187
+ * Gets the schema info which matches the provided SchemaKey. The schema info may be returned before the schema is fully loaded.
59188
+ * @param schemaKey The SchemaKey describing the schema to get from the cache.
59189
+ * @param matchType The match type to use when locating the schema
59190
+ */
59191
+ async getSchemaInfo(schemaKey, matchType = ECObjects_1.SchemaMatchType.Latest) {
59192
+ if (this.count === 0)
59193
+ return undefined;
59194
+ const entry = this.findEntry(schemaKey, matchType);
59195
+ if (entry)
59196
+ return entry.schemaInfo;
59197
+ return undefined;
59198
+ }
59199
+ /**
59200
+ * Gets the schema which matches the provided SchemaKey. If the schema is partially loaded an exception will be thrown.
59201
+ * @param schemaKey The SchemaKey describing the schema to get from the cache.
59202
+ * @param matchType The match type to use when locating the schema
59141
59203
  */
59142
59204
  getSchemaSync(schemaKey, matchType = ECObjects_1.SchemaMatchType.Latest) {
59143
59205
  if (this.count === 0)
59144
59206
  return undefined;
59145
- const findFunc = (schema) => {
59146
- return schema.schemaKey.matches(schemaKey, matchType);
59147
- };
59148
- const foundSchema = this._schema.find(findFunc);
59149
- if (!foundSchema)
59150
- return foundSchema;
59151
- return foundSchema;
59207
+ const entry = this.findEntry(schemaKey, matchType);
59208
+ if (entry) {
59209
+ if (entry.schemaPromise) {
59210
+ throw new Exception_1.ECObjectsError(Exception_1.ECObjectsStatus.UnableToLoadSchema, `The Schema ${schemaKey.toString()} is partially loaded so cannot be loaded synchronously.`);
59211
+ }
59212
+ return entry.schema;
59213
+ }
59214
+ return undefined;
59152
59215
  }
59153
59216
  /**
59154
- * Generator function that can iterate through each schema in _schema SchemaMap and items for each Schema
59217
+ * Generator function that can iterate through each schema in _schema SchemaMap and items for each Schema.
59218
+ * Does not include schema items from schemas that are not completely loaded yet.
59155
59219
  */
59156
59220
  *getSchemaItems() {
59157
- for (const schema of this._schema) {
59158
- for (const schemaItem of schema.getItems()) {
59221
+ for (const entry of this._schema) {
59222
+ for (const schemaItem of entry.schema.getItems()) {
59159
59223
  yield schemaItem;
59160
59224
  }
59161
59225
  }
59162
59226
  }
59163
59227
  /**
59164
59228
  * Gets all the schemas from the schema cache.
59229
+ * Does not include schemas from schemas that are not completely loaded yet.
59165
59230
  * @returns An array of Schema objects.
59166
59231
  */
59167
59232
  getAllSchemas() {
59168
- return this._schema;
59233
+ return this._schema.map((entry) => entry.schema);
59169
59234
  }
59170
59235
  }
59171
59236
  exports.SchemaCache = SchemaCache;
@@ -59187,7 +59252,7 @@ class SchemaContext {
59187
59252
  this._locaters.push(locater);
59188
59253
  }
59189
59254
  /**
59190
- * Adds the schema to this context
59255
+ * Adds the schema to this context. Use addSchemaPromise instead when asynchronously loading schemas.
59191
59256
  * @param schema The schema to add to this context
59192
59257
  */
59193
59258
  async addSchema(schema) {
@@ -59203,6 +59268,7 @@ class SchemaContext {
59203
59268
  /**
59204
59269
  * Adds the given SchemaItem to the the SchemaContext by locating the schema, with the best match of SchemaMatchType.Exact, and
59205
59270
  * @param schemaItem The SchemaItem to add
59271
+ * @deprecated in 4.0 use ecschema-editing package
59206
59272
  */
59207
59273
  async addSchemaItem(schemaItem) {
59208
59274
  const schema = await this.getSchema(schemaItem.key.schemaKey, ECObjects_1.SchemaMatchType.Exact);
@@ -59210,6 +59276,24 @@ class SchemaContext {
59210
59276
  throw new Exception_1.ECObjectsError(Exception_1.ECObjectsStatus.UnableToLocateSchema, `Unable to add the schema item ${schemaItem.name} to the schema ${schemaItem.key.schemaKey.toString()} because the schema could not be located.`);
59211
59277
  schema.addItem(schemaItem);
59212
59278
  }
59279
+ /**
59280
+ * Returns true if the schema is already in the context. SchemaMatchType.Latest is used to find a match.
59281
+ * @param schemaKey
59282
+ */
59283
+ schemaExists(schemaKey) {
59284
+ return this._knownSchemas.schemaExists(schemaKey);
59285
+ }
59286
+ /**
59287
+ * Adds a promise to load the schema to the cache. Does not allow for duplicate schemas in the cache of schemas or cache of promises, checks using SchemaMatchType.Latest.
59288
+ * When the promise completes the schema will be added to the schema cache and the promise will be removed from the promise cache.
59289
+ * Use this method over addSchema when asynchronously loading schemas
59290
+ * @param schemaInfo An object with the schema key for the schema being loaded and it's references
59291
+ * @param schema The partially loaded schema that the promise will fulfill
59292
+ * @param schemaPromise The schema promise to add to the cache.
59293
+ */
59294
+ async addSchemaPromise(schemaInfo, schema, schemaPromise) {
59295
+ return this._knownSchemas.addSchemaPromise(schemaInfo, schema, schemaPromise);
59296
+ }
59213
59297
  /**
59214
59298
  *
59215
59299
  * @param schemaKey
@@ -59223,6 +59307,20 @@ class SchemaContext {
59223
59307
  }
59224
59308
  return undefined;
59225
59309
  }
59310
+ /**
59311
+ * Gets the schema info which matches the provided SchemaKey. The schema info may be returned before the schema is fully loaded.
59312
+ * The fully loaded schema can be gotten later from the context using the getCachedSchema method.
59313
+ * @param schemaKey The SchemaKey describing the schema to get from the cache.
59314
+ * @param matchType The match type to use when locating the schema
59315
+ */
59316
+ async getSchemaInfo(schemaKey, matchType) {
59317
+ for (const locater of this._locaters) {
59318
+ const schemaInfo = await locater.getSchemaInfo(schemaKey, matchType, this);
59319
+ if (undefined !== schemaInfo)
59320
+ return schemaInfo;
59321
+ }
59322
+ return undefined;
59323
+ }
59226
59324
  /**
59227
59325
  *
59228
59326
  * @param schemaKey
@@ -59238,42 +59336,62 @@ class SchemaContext {
59238
59336
  }
59239
59337
  /**
59240
59338
  * Attempts to get a Schema from the context's cache.
59339
+ * Will await a partially loaded schema then return when it is completely loaded.
59241
59340
  * @param schemaKey The SchemaKey to identify the Schema.
59242
59341
  * @param matchType The SchemaMatch type to use. Default is SchemaMatchType.Latest.
59243
59342
  * @internal
59244
59343
  */
59245
59344
  async getCachedSchema(schemaKey, matchType = ECObjects_1.SchemaMatchType.Latest) {
59246
- return this.getCachedSchemaSync(schemaKey, matchType);
59345
+ return this._knownSchemas.getSchema(schemaKey, matchType);
59247
59346
  }
59248
59347
  /**
59249
59348
  * Attempts to get a Schema from the context's cache.
59349
+ * Will return undefined if the cached schema is partially loaded. Use the async method to await partially loaded schemas.
59250
59350
  * @param schemaKey The SchemaKey to identify the Schema.
59251
59351
  * @param matchType The SchemaMatch type to use. Default is SchemaMatchType.Latest.
59252
59352
  * @internal
59253
59353
  */
59254
59354
  getCachedSchemaSync(schemaKey, matchType = ECObjects_1.SchemaMatchType.Latest) {
59255
- const schema = this._knownSchemas.getSchemaSync(schemaKey, matchType);
59256
- return schema;
59355
+ return this._knownSchemas.getSchemaSync(schemaKey, matchType);
59257
59356
  }
59357
+ /**
59358
+ * Gets the schema item from the specified schema if it exists in this [[SchemaContext]].
59359
+ * Will await a partially loaded schema then look in it for the requested item
59360
+ * @param schemaItemKey The SchemaItemKey identifying the item to return. SchemaMatchType.Latest is used to match the schema.
59361
+ * @returns The requested schema item
59362
+ */
59258
59363
  async getSchemaItem(schemaItemKey) {
59259
59364
  const schema = await this.getSchema(schemaItemKey.schemaKey, ECObjects_1.SchemaMatchType.Latest);
59260
59365
  if (undefined === schema)
59261
59366
  return undefined;
59262
59367
  return schema.getItem(schemaItemKey.name);
59263
59368
  }
59369
+ /**
59370
+ * Gets the schema item from the specified schema if it exists in this [[SchemaContext]].
59371
+ * Will skip a partially loaded schema and return undefined if the item belongs to that schema. Use the async method to await partially loaded schemas.
59372
+ * @param schemaItemKey The SchemaItemKey identifying the item to return. SchemaMatchType.Latest is used to match the schema.
59373
+ * @returns The requested schema item
59374
+ */
59264
59375
  getSchemaItemSync(schemaItemKey) {
59265
59376
  const schema = this.getSchemaSync(schemaItemKey.schemaKey, ECObjects_1.SchemaMatchType.Latest);
59266
59377
  if (undefined === schema)
59267
59378
  return undefined;
59268
59379
  return schema.getItemSync(schemaItemKey.name);
59269
59380
  }
59381
+ /**
59382
+ * Iterates through the items of each schema known to the context. This includes schemas added to the
59383
+ * context using [[SchemaContext.addSchema]]. This does not include schemas that
59384
+ * can be located by an ISchemaLocater instance added to the context.
59385
+ * Does not include schema items from schemas that are not completely loaded yet.
59386
+ */
59270
59387
  getSchemaItems() {
59271
59388
  return this._knownSchemas.getSchemaItems();
59272
59389
  }
59273
59390
  /**
59274
59391
  * Gets all the Schemas known by the context. This includes schemas added to the
59275
59392
  * context using [[SchemaContext.addSchema]]. This does not include schemas that
59276
- * can be located by an ISchemaLocater instance added to the context.
59393
+ * can be located by an ISchemaLocater instance added to the context. Does not
59394
+ * include schemas that are partially loaded.
59277
59395
  * @returns An array of Schema objects.
59278
59396
  */
59279
59397
  getKnownSchemas() {
@@ -59443,11 +59561,13 @@ class SchemaReadHelper {
59443
59561
  this._parserType = parserType;
59444
59562
  }
59445
59563
  /**
59446
- * Populates the given Schema from a serialized representation.
59564
+ * Creates a complete SchemaInfo and starts parsing the schema from a serialized representation.
59565
+ * The info and schema promise will be registered with the SchemaContext. The complete schema can be retrieved by
59566
+ * calling getCachedSchema on the context.
59447
59567
  * @param schema The Schema to populate
59448
59568
  * @param rawSchema The serialized data to use to populate the Schema.
59449
59569
  */
59450
- async readSchema(schema, rawSchema) {
59570
+ async readSchemaInfo(schema, rawSchema) {
59451
59571
  // Ensure context matches schema context
59452
59572
  if (schema.context) {
59453
59573
  if (this._context !== schema.context)
@@ -59460,12 +59580,38 @@ class SchemaReadHelper {
59460
59580
  // Loads all of the properties on the Schema object
59461
59581
  await schema.fromJSON(this._parser.parseSchema());
59462
59582
  this._schema = schema;
59463
- // Need to add this schema to the context to be able to locate schemaItems within the context.
59464
- await this._context.addSchema(schema);
59465
- // Load schema references first
59466
- // Need to figure out if other schemas are present.
59583
+ const schemaInfo = { schemaKey: schema.schemaKey, references: [] };
59467
59584
  for (const reference of this._parser.getReferences()) {
59468
- await this.loadSchemaReference(reference);
59585
+ const refKey = new SchemaKey_1.SchemaKey(reference.name, SchemaKey_1.ECVersion.fromString(reference.version));
59586
+ schemaInfo.references.push({ schemaKey: refKey });
59587
+ }
59588
+ this._schemaInfo = schemaInfo;
59589
+ // Need to add this schema to the context to be able to locate schemaItems within the context.
59590
+ if (!this._context.schemaExists(schema.schemaKey)) {
59591
+ await this._context.addSchemaPromise(schemaInfo, schema, this.loadSchema(schemaInfo, schema));
59592
+ }
59593
+ return schemaInfo;
59594
+ }
59595
+ /**
59596
+ * Populates the given Schema from a serialized representation.
59597
+ * @param schema The Schema to populate
59598
+ * @param rawSchema The serialized data to use to populate the Schema.
59599
+ */
59600
+ async readSchema(schema, rawSchema) {
59601
+ if (!this._schemaInfo) {
59602
+ await this.readSchemaInfo(schema, rawSchema);
59603
+ }
59604
+ const cachedSchema = await this._context.getCachedSchema(this._schemaInfo.schemaKey, ECObjects_1.SchemaMatchType.Latest);
59605
+ if (undefined === cachedSchema)
59606
+ throw new Exception_1.ECObjectsError(Exception_1.ECObjectsStatus.UnableToLoadSchema, `Could not load schema ${schema.schemaKey.toString()}`);
59607
+ return cachedSchema;
59608
+ }
59609
+ /* Finish loading the rest of the schema */
59610
+ async loadSchema(schemaInfo, schema) {
59611
+ // Verify that there are no schema reference cycles, this will start schema loading by loading their headers
59612
+ (await SchemaGraph_1.SchemaGraph.generateGraph(schemaInfo, this._context)).throwIfCycles();
59613
+ for (const reference of schemaInfo.references) {
59614
+ await this.loadSchemaReference(schemaInfo, reference.schemaKey);
59469
59615
  }
59470
59616
  if (this._visitorHelper)
59471
59617
  await this._visitorHelper.visitSchema(schema, false);
@@ -59524,11 +59670,10 @@ class SchemaReadHelper {
59524
59670
  * Ensures that the schema references can be located and adds them to the schema.
59525
59671
  * @param ref The object to read the SchemaReference's props from.
59526
59672
  */
59527
- async loadSchemaReference(ref) {
59528
- const schemaKey = new SchemaKey_1.SchemaKey(ref.name, SchemaKey_1.ECVersion.fromString(ref.version));
59529
- const refSchema = await this._context.getSchema(schemaKey, ECObjects_1.SchemaMatchType.LatestWriteCompatible);
59673
+ async loadSchemaReference(schemaInfo, refKey) {
59674
+ const refSchema = await this._context.getSchema(refKey, ECObjects_1.SchemaMatchType.LatestWriteCompatible);
59530
59675
  if (undefined === refSchema)
59531
- throw new Exception_1.ECObjectsError(Exception_1.ECObjectsStatus.UnableToLocateSchema, `Could not locate the referenced schema, ${ref.name}.${ref.version}, of ${this._schema.schemaKey.name}`);
59676
+ throw new Exception_1.ECObjectsError(Exception_1.ECObjectsStatus.UnableToLocateSchema, `Could not locate the referenced schema, ${refKey.name}.${refKey.version.toString()}, of ${schemaInfo.schemaKey.name}`);
59532
59677
  await this._schema.addReference(refSchema);
59533
59678
  const results = this.validateSchemaReferences(this._schema);
59534
59679
  let errorMessage = "";
@@ -59549,6 +59694,7 @@ class SchemaReadHelper {
59549
59694
  if (!refSchema)
59550
59695
  throw new Exception_1.ECObjectsError(Exception_1.ECObjectsStatus.UnableToLocateSchema, `Could not locate the referenced schema, ${ref.name}.${ref.version}, of ${this._schema.schemaKey.name}`);
59551
59696
  this._schema.addReferenceSync(refSchema);
59697
+ SchemaGraph_1.SchemaGraph.generateGraphSync(this._schema).throwIfCycles();
59552
59698
  const results = this.validateSchemaReferences(this._schema);
59553
59699
  let errorMessage = "";
59554
59700
  for (const result of results) {
@@ -59577,12 +59723,6 @@ class SchemaReadHelper {
59577
59723
  aliases.set(schemaRef.alias, schemaRef);
59578
59724
  }
59579
59725
  }
59580
- const graph = new SchemaGraph_1.SchemaGraph(schema);
59581
- const cycles = graph.detectCycles();
59582
- if (cycles) {
59583
- const result = cycles.map((cycle) => `${cycle.schema.name} --> ${cycle.refSchema.name}`).join(", ");
59584
- yield `Schema '${schema.name}' has reference cycles: ${result}`;
59585
- }
59586
59726
  }
59587
59727
  /**
59588
59728
  * Given the schema item object, the anticipated type and the name a schema item is created and loaded into the schema provided.
@@ -59767,7 +59907,10 @@ class SchemaReadHelper {
59767
59907
  const isInThisSchema = (this._schema && this._schema.name.toLowerCase() === schemaName.toLowerCase());
59768
59908
  if (undefined === schemaName || 0 === schemaName.length)
59769
59909
  throw new Exception_1.ECObjectsError(Exception_1.ECObjectsStatus.InvalidECJson, `The SchemaItem ${name} is invalid without a schema name`);
59770
- if (isInThisSchema && undefined === await this._schema.getItem(itemName)) {
59910
+ if (isInThisSchema) {
59911
+ schemaItem = await this._schema.getItem(itemName);
59912
+ if (schemaItem)
59913
+ return schemaItem;
59771
59914
  const foundItem = this._parser.findItem(itemName);
59772
59915
  if (foundItem) {
59773
59916
  schemaItem = await this.loadSchemaItem(this._schema, ...foundItem);
@@ -62841,6 +62984,7 @@ var ECObjectsStatus;
62841
62984
  ECObjectsStatus[ECObjectsStatus["InvalidSchemaComparisonArgument"] = 35077] = "InvalidSchemaComparisonArgument";
62842
62985
  ECObjectsStatus[ECObjectsStatus["InvalidSchemaAlias"] = 35078] = "InvalidSchemaAlias";
62843
62986
  ECObjectsStatus[ECObjectsStatus["InvalidSchemaKey"] = 35079] = "InvalidSchemaKey";
62987
+ ECObjectsStatus[ECObjectsStatus["UnableToLoadSchema"] = 35080] = "UnableToLoadSchema";
62844
62988
  })(ECObjectsStatus = exports.ECObjectsStatus || (exports.ECObjectsStatus = {}));
62845
62989
  /** @internal */
62846
62990
  class ECObjectsError extends core_bentley_1.BentleyError {
@@ -66466,6 +66610,9 @@ class Schema {
66466
66610
  schemaXml.appendChild(schemaMetadata);
66467
66611
  return schemaXml;
66468
66612
  }
66613
+ /**
66614
+ * Loads the schema header (name, version alias, label and description) from the input SchemaProps
66615
+ */
66469
66616
  fromJSONSync(schemaProps) {
66470
66617
  if (undefined === this._schemaKey) {
66471
66618
  const schemaName = schemaProps.name;
@@ -66491,9 +66638,22 @@ class Schema {
66491
66638
  if (undefined !== schemaProps.description)
66492
66639
  this._description = schemaProps.description;
66493
66640
  }
66641
+ /**
66642
+ * Loads the schema header (name, version alias, label and description) from the input SchemaProps
66643
+ */
66494
66644
  async fromJSON(schemaProps) {
66495
66645
  this.fromJSONSync(schemaProps);
66496
66646
  }
66647
+ /**
66648
+ * Completely loads the SchemaInfo from the input json and starts loading the entire schema. The complete schema can be retrieved from the
66649
+ * schema context using the getCachedSchema method
66650
+ */
66651
+ static async startLoadingFromJson(jsonObj, context) {
66652
+ const schema = new Schema(context);
66653
+ const reader = new Helper_1.SchemaReadHelper(JsonParser_1.JsonParser, context);
66654
+ const rawSchema = typeof jsonObj === "string" ? JSON.parse(jsonObj) : jsonObj;
66655
+ return reader.readSchemaInfo(schema, rawSchema);
66656
+ }
66497
66657
  static async fromJson(jsonObj, context) {
66498
66658
  let schema = new Schema(context);
66499
66659
  const reader = new Helper_1.SchemaReadHelper(JsonParser_1.JsonParser, context);
@@ -66501,6 +66661,9 @@ class Schema {
66501
66661
  schema = await reader.readSchema(schema, rawSchema);
66502
66662
  return schema;
66503
66663
  }
66664
+ /**
66665
+ * Completely loads the Schema from the input json. The schema is cached in the schema context.
66666
+ */
66504
66667
  static fromJsonSync(jsonObj, context) {
66505
66668
  let schema = new Schema(context);
66506
66669
  const reader = new Helper_1.SchemaReadHelper(JsonParser_1.JsonParser, context);
@@ -67026,6 +67189,14 @@ class SchemaJsonLocater {
67026
67189
  async getSchema(schemaKey, matchType, context) {
67027
67190
  return this.getSchemaSync(schemaKey, matchType, context);
67028
67191
  }
67192
+ /**
67193
+ * Gets the schema info which matches the provided SchemaKey. The schema info may be returned before the schema is fully loaded.
67194
+ * @param schemaKey The SchemaKey describing the schema to get from the cache.
67195
+ * @param matchType The match type to use when locating the schema
67196
+ */
67197
+ async getSchemaInfo(schemaKey, matchType, context) {
67198
+ return this.getSchema(schemaKey, matchType, context);
67199
+ }
67029
67200
  /** Get a schema by [SchemaKey] synchronously.
67030
67201
  * @param schemaKey The [SchemaKey] that identifies the schema.
67031
67202
  * * @param matchType The [SchemaMatchType] to used for comparing schema versions.
@@ -68522,7 +68693,7 @@ Object.defineProperty(exports, "SchemaGraph", ({ enumerable: true, get: function
68522
68693
  /*!*****************************************************************!*\
68523
68694
  !*** ../../core/ecschema-metadata/lib/cjs/utils/SchemaGraph.js ***!
68524
68695
  \*****************************************************************/
68525
- /***/ ((__unused_webpack_module, exports) => {
68696
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
68526
68697
 
68527
68698
  "use strict";
68528
68699
 
@@ -68532,22 +68703,32 @@ Object.defineProperty(exports, "SchemaGraph", ({ enumerable: true, get: function
68532
68703
  *--------------------------------------------------------------------------------------------*/
68533
68704
  Object.defineProperty(exports, "__esModule", ({ value: true }));
68534
68705
  exports.SchemaGraph = void 0;
68706
+ const ECObjects_1 = __webpack_require__(/*! ../ECObjects */ "../../core/ecschema-metadata/lib/cjs/ECObjects.js");
68707
+ const Exception_1 = __webpack_require__(/*! ../Exception */ "../../core/ecschema-metadata/lib/cjs/Exception.js");
68535
68708
  /**
68536
68709
  * Utility class for detecting cyclic references in a Schema graph.
68537
- * @beta
68710
+ * @internal
68538
68711
  */
68539
68712
  class SchemaGraph {
68713
+ constructor() {
68714
+ this._schemas = [];
68715
+ }
68716
+ find(schemaKey) {
68717
+ return this._schemas.find((info) => info.schemaKey.matches(schemaKey, ECObjects_1.SchemaMatchType.Latest));
68718
+ }
68540
68719
  /**
68541
- * Initializes a new SchemaGraph instance.
68542
- * @param schema The schema to analyze.
68720
+ * Detected cyclic references in a schema and throw an exception if a cycle is found.
68543
68721
  */
68544
- constructor(schema) {
68545
- this._schemas = [];
68546
- this.populateGraph(schema);
68722
+ throwIfCycles() {
68723
+ const cycles = this.detectCycles();
68724
+ if (cycles) {
68725
+ const result = cycles.map((cycle) => `${cycle.schema.schemaKey.name} --> ${cycle.refSchema.schemaKey.name}`).join(", ");
68726
+ throw new Exception_1.ECObjectsError(Exception_1.ECObjectsStatus.InvalidECJson, `Schema '${this._schemas[0].schemaKey.name}' has reference cycles: ${result}`);
68727
+ }
68547
68728
  }
68548
68729
  /**
68549
68730
  * Detected cyclic references in a schema.
68550
- * @returns True if a cycle is found.
68731
+ * @returns An array describing the cycle if there is a cycle or undefined if no cycles found.
68551
68732
  */
68552
68733
  detectCycles() {
68553
68734
  const visited = {};
@@ -68562,31 +68743,70 @@ class SchemaGraph {
68562
68743
  }
68563
68744
  detectCycleUtil(schema, visited, recStack, cycles) {
68564
68745
  let cycleFound = false;
68565
- if (!visited[schema.name]) {
68566
- visited[schema.name] = true;
68567
- recStack[schema.name] = true;
68568
- for (const refSchema of schema.references) {
68569
- if (!visited[refSchema.name] && this.detectCycleUtil(refSchema, visited, recStack, cycles)) {
68746
+ if (!visited[schema.schemaKey.name]) {
68747
+ visited[schema.schemaKey.name] = true;
68748
+ recStack[schema.schemaKey.name] = true;
68749
+ for (const refKey of schema.references) {
68750
+ const refSchema = this.find(refKey.schemaKey);
68751
+ if (undefined === refSchema)
68752
+ throw new Exception_1.ECObjectsError(Exception_1.ECObjectsStatus.UnableToLoadSchema, `Could not find the schema info for ref schema ${refKey.schemaKey.toString()} for schema ${schema.schemaKey.toString()}`);
68753
+ if (!visited[refKey.schemaKey.name] && this.detectCycleUtil(refSchema, visited, recStack, cycles)) {
68570
68754
  cycles.push({ schema, refSchema });
68571
68755
  cycleFound = true;
68572
68756
  }
68573
- else if (recStack[refSchema.name]) {
68757
+ else if (recStack[refKey.schemaKey.name]) {
68574
68758
  cycles.push({ schema, refSchema });
68575
68759
  cycleFound = true;
68576
68760
  }
68577
68761
  }
68578
68762
  }
68579
68763
  if (!cycleFound)
68580
- recStack[schema.name] = false;
68764
+ recStack[schema.schemaKey.name] = false;
68581
68765
  return cycleFound;
68582
68766
  }
68583
- populateGraph(schema) {
68584
- if (this._schemas.includes(schema))
68585
- return;
68586
- this._schemas.push(schema);
68587
- for (const refSchema of schema.references) {
68588
- this.populateGraph(refSchema);
68589
- }
68767
+ /**
68768
+ * Generates a SchemaGraph for the input schema using the context to find info on referenced schemas. Use the generateGraphSync if you have the fully loaded Schema.
68769
+ * @param schema The SchemaInfo to build the graph from
68770
+ * @param context The SchemaContext used to locate info on the referenced schemas
68771
+ * @returns A SchemaGraph that can be used to detect schema cycles
68772
+ */
68773
+ static async generateGraph(schema, context) {
68774
+ const graph = new SchemaGraph();
68775
+ const genGraph = async (s) => {
68776
+ if (graph.find(s.schemaKey))
68777
+ return;
68778
+ graph._schemas.push(s);
68779
+ for (const refSchema of s.references) {
68780
+ if (!graph.find(refSchema.schemaKey)) {
68781
+ const refInfo = await context.getSchemaInfo(refSchema.schemaKey, ECObjects_1.SchemaMatchType.LatestWriteCompatible);
68782
+ if (undefined === refInfo) {
68783
+ throw new Exception_1.ECObjectsError(Exception_1.ECObjectsStatus.UnableToLocateSchema, `Could not locate the referenced schema, ${refSchema.schemaKey.name}.${refSchema.schemaKey.version.toString()}, of ${s.schemaKey.name} when populating the graph for ${schema.schemaKey.name}`);
68784
+ }
68785
+ await genGraph(refInfo);
68786
+ }
68787
+ }
68788
+ };
68789
+ await genGraph(schema);
68790
+ return graph;
68791
+ }
68792
+ /**
68793
+ * Generates a SchemaGraph for the input schema. Use the generateGraph if you just have schema info.
68794
+ * @param schema The Schema to build the graph from.
68795
+ * @returns A SchemaGraph that can be used to detect schema cycles
68796
+ */
68797
+ static generateGraphSync(schema) {
68798
+ const graph = new SchemaGraph();
68799
+ const genGraph = (s) => {
68800
+ if (graph.find(s.schemaKey))
68801
+ return;
68802
+ graph._schemas.push(s);
68803
+ for (const refSchema of s.references) {
68804
+ if (!graph.find(refSchema.schemaKey))
68805
+ genGraph(refSchema);
68806
+ }
68807
+ };
68808
+ genGraph(schema);
68809
+ return graph;
68590
68810
  }
68591
68811
  }
68592
68812
  exports.SchemaGraph = SchemaGraph;
@@ -68690,10 +68910,21 @@ class ECSchemaRpcLocater {
68690
68910
  * @param context The SchemaContext that will control the lifetime of the schema and holds the schema's references, if they exist.
68691
68911
  */
68692
68912
  async getSchema(schemaKey, matchType, context) {
68913
+ await this.getSchemaInfo(schemaKey, matchType, context);
68914
+ const schema = await context.getCachedSchema(schemaKey, matchType);
68915
+ return schema;
68916
+ }
68917
+ /**
68918
+ * Gets the schema info which matches the provided SchemaKey. The schema info may be returned before the schema is fully loaded.
68919
+ * The fully loaded schema can be accessed via the schema context using the getCachedSchema method.
68920
+ * @param schemaKey The SchemaKey describing the schema to get from the cache.
68921
+ * @param matchType The match type to use when locating the schema
68922
+ */
68923
+ async getSchemaInfo(schemaKey, matchType, context) {
68693
68924
  const schemaJson = await ECSchemaRpcInterface_1.ECSchemaRpcInterface.getClient().getSchemaJSON(this.token, schemaKey.name);
68694
- const schema = await ecschema_metadata_1.Schema.fromJson(schemaJson, context || new ecschema_metadata_1.SchemaContext());
68695
- if (schema !== undefined && schema.schemaKey.matches(schemaKey, matchType)) {
68696
- return schema;
68925
+ const schemaInfo = await ecschema_metadata_1.Schema.startLoadingFromJson(schemaJson, context || new ecschema_metadata_1.SchemaContext());
68926
+ if (schemaInfo !== undefined && schemaInfo.schemaKey.matches(schemaKey, matchType)) {
68927
+ return schemaInfo;
68697
68928
  }
68698
68929
  return undefined;
68699
68930
  }
@@ -79341,9 +79572,7 @@ class IModelApp {
79341
79572
  static get applicationVersion() { return this._applicationVersion; }
79342
79573
  /** True after [[startup]] has been called, until [[shutdown]] is called. */
79343
79574
  static get initialized() { return this._initialized; }
79344
- /** Provides access to the IModelHub implementation for this IModelApp.
79345
- * @internal
79346
- */
79575
+ /** Provides access to IModelHub services. */
79347
79576
  static get hubAccess() { return this._hubAccess; }
79348
79577
  /** Provides access to the RealityData service implementation for this IModelApp
79349
79578
  * @beta
@@ -95206,65 +95435,6 @@ class ExtensionHost {
95206
95435
  }
95207
95436
 
95208
95437
 
95209
- /***/ }),
95210
-
95211
- /***/ "../../core/frontend/lib/esm/extension/ExtensionImpl.js":
95212
- /*!**************************************************************!*\
95213
- !*** ../../core/frontend/lib/esm/extension/ExtensionImpl.js ***!
95214
- \**************************************************************/
95215
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
95216
-
95217
- "use strict";
95218
- __webpack_require__.r(__webpack_exports__);
95219
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
95220
- /* harmony export */ "ExtensionImpl": () => (/* binding */ ExtensionImpl),
95221
- /* harmony export */ "ToolProvider": () => (/* binding */ ToolProvider)
95222
- /* harmony export */ });
95223
- /* harmony import */ var _IModelApp__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../IModelApp */ "../../core/frontend/lib/esm/IModelApp.js");
95224
- /* harmony import */ var _itwin_appui_abstract__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @itwin/appui-abstract */ "../../ui/appui-abstract/lib/esm/appui-abstract.js");
95225
- /*---------------------------------------------------------------------------------------------
95226
- * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
95227
- * See LICENSE.md in the project root for license terms and full copyright notice.
95228
- *--------------------------------------------------------------------------------------------*/
95229
- /** @packageDocumentation
95230
- * @module Extensions
95231
- */
95232
-
95233
-
95234
- /** @alpha */
95235
- class ToolProvider {
95236
- constructor(tool) {
95237
- this._toolId = "";
95238
- this.id = `ToolProvider:${tool.toolId}`;
95239
- this._toolId = tool.toolId;
95240
- this._toolIcon = tool.iconSpec;
95241
- this._toolLabel = tool.description;
95242
- }
95243
- provideToolbarButtonItems(_stageId, stageUsage, toolbarUsage, toolbarOrientation) {
95244
- const toolbarItem = _itwin_appui_abstract__WEBPACK_IMPORTED_MODULE_1__.ToolbarItemUtilities.createActionButton(this._toolId, 0, this._toolIcon, this._toolLabel, async () => {
95245
- await _IModelApp__WEBPACK_IMPORTED_MODULE_0__.IModelApp.tools.run(this._toolId);
95246
- });
95247
- return stageUsage === _itwin_appui_abstract__WEBPACK_IMPORTED_MODULE_1__.StageUsage.General && toolbarUsage === _itwin_appui_abstract__WEBPACK_IMPORTED_MODULE_1__.ToolbarUsage.ContentManipulation && toolbarOrientation === _itwin_appui_abstract__WEBPACK_IMPORTED_MODULE_1__.ToolbarOrientation.Vertical ? [toolbarItem] : []; // eslint-disable-line deprecation/deprecation
95248
- }
95249
- }
95250
- /** @alpha */
95251
- class ExtensionImpl {
95252
- constructor(_id) {
95253
- this._id = _id;
95254
- }
95255
- async registerTool(tool, onRegistered) {
95256
- try {
95257
- _IModelApp__WEBPACK_IMPORTED_MODULE_0__.IModelApp.tools.register(tool);
95258
- _itwin_appui_abstract__WEBPACK_IMPORTED_MODULE_1__.UiItemsManager.register(new ToolProvider(tool)); // eslint-disable-line deprecation/deprecation
95259
- onRegistered?.();
95260
- }
95261
- catch (e) {
95262
- console.log(`Error registering tool: ${e}`); // eslint-disable-line
95263
- }
95264
- }
95265
- }
95266
-
95267
-
95268
95438
  /***/ }),
95269
95439
 
95270
95440
  /***/ "../../core/frontend/lib/esm/extension/ExtensionRuntime.js":
@@ -95275,10 +95445,9 @@ class ExtensionImpl {
95275
95445
 
95276
95446
  "use strict";
95277
95447
  __webpack_require__.r(__webpack_exports__);
95278
- /* harmony import */ var _ExtensionImpl__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ExtensionImpl */ "../../core/frontend/lib/esm/extension/ExtensionImpl.js");
95279
- /* harmony import */ var _ExtensionHost__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ExtensionHost */ "../../core/frontend/lib/esm/extension/ExtensionHost.js");
95280
- /* harmony import */ var _core_frontend__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
95281
- /* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
95448
+ /* harmony import */ var _ExtensionHost__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ExtensionHost */ "../../core/frontend/lib/esm/extension/ExtensionHost.js");
95449
+ /* harmony import */ var _core_frontend__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
95450
+ /* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
95282
95451
  /*---------------------------------------------------------------------------------------------
95283
95452
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
95284
95453
  * See LICENSE.md in the project root for license terms and full copyright notice.
@@ -95290,7 +95459,6 @@ __webpack_require__.r(__webpack_exports__);
95290
95459
  /* eslint-disable @itwin/no-internal-barrel-imports */
95291
95460
  /* eslint-disable sort-imports */
95292
95461
 
95293
-
95294
95462
  const globalSymbol = Symbol.for("itwin.core.frontend.globals");
95295
95463
  if (globalThis[globalSymbol])
95296
95464
  throw new Error("Multiple @itwin/core-frontend imports detected!");
@@ -95298,265 +95466,264 @@ if (globalThis[globalSymbol])
95298
95466
 
95299
95467
 
95300
95468
  const extensionExports = {
95301
- ACSDisplayOptions: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ACSDisplayOptions,
95302
- ACSType: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ACSType,
95303
- AccuDrawHintBuilder: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.AccuDrawHintBuilder,
95304
- AccuSnap: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.AccuSnap,
95305
- ActivityMessageDetails: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ActivityMessageDetails,
95306
- ActivityMessageEndReason: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ActivityMessageEndReason,
95307
- AuxCoordSystem2dState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.AuxCoordSystem2dState,
95308
- AuxCoordSystem3dState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.AuxCoordSystem3dState,
95309
- AuxCoordSystemSpatialState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.AuxCoordSystemSpatialState,
95310
- AuxCoordSystemState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.AuxCoordSystemState,
95311
- BackgroundFill: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.BackgroundFill,
95312
- BackgroundMapType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.BackgroundMapType,
95313
- BatchType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.BatchType,
95314
- BeButton: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.BeButton,
95315
- BeButtonEvent: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.BeButtonEvent,
95316
- BeButtonState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.BeButtonState,
95317
- BeModifierKeys: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.BeModifierKeys,
95318
- BeTouchEvent: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.BeTouchEvent,
95319
- BeWheelEvent: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.BeWheelEvent,
95320
- BingElevationProvider: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.BingElevationProvider,
95321
- BingLocationProvider: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.BingLocationProvider,
95322
- BisCodeSpec: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.BisCodeSpec,
95323
- BriefcaseIdValue: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.BriefcaseIdValue,
95324
- CategorySelectorState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.CategorySelectorState,
95325
- ChangeFlags: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ChangeFlags,
95326
- ChangeOpCode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.ChangeOpCode,
95327
- ChangedValueState: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.ChangedValueState,
95328
- ChangesetType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.ChangesetType,
95329
- ClipEventType: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ClipEventType,
95330
- Cluster: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.Cluster,
95331
- ColorByName: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.ColorByName,
95332
- ColorDef: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.ColorDef,
95333
- CommonLoggerCategory: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.CommonLoggerCategory,
95334
- ContextRealityModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ContextRealityModelState,
95335
- ContextRotationId: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ContextRotationId,
95336
- CoordSource: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.CoordSource,
95337
- CoordSystem: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.CoordSystem,
95338
- CoordinateLockOverrides: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.CoordinateLockOverrides,
95339
- DecorateContext: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.DecorateContext,
95340
- Decorations: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.Decorations,
95341
- DisclosedTileTreeSet: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.DisclosedTileTreeSet,
95342
- DisplayStyle2dState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.DisplayStyle2dState,
95343
- DisplayStyle3dState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.DisplayStyle3dState,
95344
- DisplayStyleState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.DisplayStyleState,
95345
- DrawingModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.DrawingModelState,
95346
- DrawingViewState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.DrawingViewState,
95347
- ECSqlSystemProperty: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.ECSqlSystemProperty,
95348
- ECSqlValueType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.ECSqlValueType,
95349
- EditManipulator: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.EditManipulator,
95350
- ElementGeometryOpcode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.ElementGeometryOpcode,
95351
- ElementLocateManager: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ElementLocateManager,
95352
- ElementPicker: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ElementPicker,
95353
- ElementState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ElementState,
95354
- EmphasizeElements: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.EmphasizeElements,
95355
- EntityState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.EntityState,
95356
- EventController: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.EventController,
95357
- EventHandled: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.EventHandled,
95358
- FeatureOverrideType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.FeatureOverrideType,
95359
- FeatureSymbology: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.FeatureSymbology,
95360
- FillDisplay: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.FillDisplay,
95361
- FillFlags: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.FillFlags,
95362
- FlashMode: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.FlashMode,
95363
- FlashSettings: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.FlashSettings,
95364
- FontType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.FontType,
95365
- FrontendLoggerCategory: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.FrontendLoggerCategory,
95366
- FrustumAnimator: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.FrustumAnimator,
95367
- FrustumPlanes: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.FrustumPlanes,
95368
- GeoCoordStatus: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.GeoCoordStatus,
95369
- GeometricModel2dState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.GeometricModel2dState,
95370
- GeometricModel3dState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.GeometricModel3dState,
95371
- GeometricModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.GeometricModelState,
95372
- GeometryClass: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.GeometryClass,
95373
- GeometryStreamFlags: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.GeometryStreamFlags,
95374
- GeometrySummaryVerbosity: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.GeometrySummaryVerbosity,
95375
- GlobeAnimator: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.GlobeAnimator,
95376
- GlobeMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.GlobeMode,
95377
- GraphicBranch: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.GraphicBranch,
95378
- GraphicBuilder: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.GraphicBuilder,
95379
- GraphicType: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.GraphicType,
95380
- GridOrientationType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.GridOrientationType,
95381
- HSVConstants: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.HSVConstants,
95382
- HiliteSet: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.HiliteSet,
95383
- HitDetail: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.HitDetail,
95384
- HitDetailType: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.HitDetailType,
95385
- HitGeomType: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.HitGeomType,
95386
- HitList: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.HitList,
95387
- HitParentGeomType: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.HitParentGeomType,
95388
- HitPriority: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.HitPriority,
95389
- HitSource: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.HitSource,
95390
- IModelConnection: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.IModelConnection,
95391
- IconSprites: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.IconSprites,
95392
- ImageBufferFormat: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.ImageBufferFormat,
95393
- ImageSourceFormat: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.ImageSourceFormat,
95394
- InputCollector: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.InputCollector,
95395
- InputSource: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.InputSource,
95396
- InteractiveTool: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.InteractiveTool,
95397
- IntersectDetail: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.IntersectDetail,
95398
- KeyinParseError: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.KeyinParseError,
95399
- LinePixels: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.LinePixels,
95400
- LocateAction: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.LocateAction,
95401
- LocateFilterStatus: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.LocateFilterStatus,
95402
- LocateOptions: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.LocateOptions,
95403
- LocateResponse: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.LocateResponse,
95404
- ManipulatorToolEvent: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ManipulatorToolEvent,
95405
- MarginPercent: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.MarginPercent,
95406
- Marker: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.Marker,
95407
- MarkerSet: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.MarkerSet,
95408
- MassPropertiesOperation: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.MassPropertiesOperation,
95409
- MessageBoxIconType: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.MessageBoxIconType,
95410
- MessageBoxType: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.MessageBoxType,
95411
- MessageBoxValue: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.MessageBoxValue,
95412
- ModelSelectorState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ModelSelectorState,
95413
- ModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ModelState,
95414
- MonochromeMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.MonochromeMode,
95415
- NotificationHandler: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.NotificationHandler,
95416
- NotificationManager: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.NotificationManager,
95417
- NotifyMessageDetails: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.NotifyMessageDetails,
95418
- Npc: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.Npc,
95419
- OffScreenViewport: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.OffScreenViewport,
95420
- OrthographicViewState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.OrthographicViewState,
95421
- OutputMessageAlert: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.OutputMessageAlert,
95422
- OutputMessagePriority: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.OutputMessagePriority,
95423
- OutputMessageType: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.OutputMessageType,
95424
- ParseAndRunResult: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ParseAndRunResult,
95425
- PerModelCategoryVisibility: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.PerModelCategoryVisibility,
95426
- PhysicalModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.PhysicalModelState,
95427
- Pixel: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.Pixel,
95428
- PlanarClipMaskMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.PlanarClipMaskMode,
95429
- PlanarClipMaskPriority: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.PlanarClipMaskPriority,
95430
- PrimitiveTool: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.PrimitiveTool,
95431
- QParams2d: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.QParams2d,
95432
- QParams3d: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.QParams3d,
95433
- QPoint2d: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.QPoint2d,
95434
- QPoint2dBuffer: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.QPoint2dBuffer,
95435
- QPoint2dBufferBuilder: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.QPoint2dBufferBuilder,
95436
- QPoint2dList: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.QPoint2dList,
95437
- QPoint3d: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.QPoint3d,
95438
- QPoint3dBuffer: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.QPoint3dBuffer,
95439
- QPoint3dBufferBuilder: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.QPoint3dBufferBuilder,
95440
- QPoint3dList: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.QPoint3dList,
95441
- Quantization: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.Quantization,
95442
- QueryRowFormat: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.QueryRowFormat,
95443
- Rank: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.Rank,
95444
- RenderClipVolume: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.RenderClipVolume,
95445
- RenderContext: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.RenderContext,
95446
- RenderGraphic: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.RenderGraphic,
95447
- RenderGraphicOwner: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.RenderGraphicOwner,
95448
- RenderMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.RenderMode,
95449
- RenderSystem: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.RenderSystem,
95450
- Scene: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.Scene,
95451
- ScreenViewport: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ScreenViewport,
95452
- SectionDrawingModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.SectionDrawingModelState,
95453
- SectionType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.SectionType,
95454
- SelectionMethod: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.SelectionMethod,
95455
- SelectionMode: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.SelectionMode,
95456
- SelectionProcessing: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.SelectionProcessing,
95457
- SelectionSet: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.SelectionSet,
95458
- SelectionSetEventType: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.SelectionSetEventType,
95459
- SheetModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.SheetModelState,
95460
- SheetViewState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.SheetViewState,
95461
- SkyBoxImageType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.SkyBoxImageType,
95462
- SnapDetail: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.SnapDetail,
95463
- SnapHeat: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.SnapHeat,
95464
- SnapMode: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.SnapMode,
95465
- SnapStatus: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.SnapStatus,
95466
- SpatialClassifierInsideDisplay: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.SpatialClassifierInsideDisplay,
95467
- SpatialClassifierOutsideDisplay: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.SpatialClassifierOutsideDisplay,
95468
- SpatialLocationModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.SpatialLocationModelState,
95469
- SpatialModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.SpatialModelState,
95470
- SpatialViewState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.SpatialViewState,
95471
- Sprite: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.Sprite,
95472
- SpriteLocation: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.SpriteLocation,
95473
- StandardViewId: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.StandardViewId,
95474
- StartOrResume: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.StartOrResume,
95475
- SyncMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.SyncMode,
95476
- TentativePoint: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.TentativePoint,
95477
- TerrainHeightOriginMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.TerrainHeightOriginMode,
95478
- TextureMapUnits: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.TextureMapUnits,
95479
- ThematicDisplayMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.ThematicDisplayMode,
95480
- ThematicGradientColorScheme: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.ThematicGradientColorScheme,
95481
- ThematicGradientMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.ThematicGradientMode,
95482
- Tile: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.Tile,
95483
- TileAdmin: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.TileAdmin,
95484
- TileBoundingBoxes: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.TileBoundingBoxes,
95485
- TileDrawArgs: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.TileDrawArgs,
95486
- TileGraphicType: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.TileGraphicType,
95487
- TileLoadPriority: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.TileLoadPriority,
95488
- TileLoadStatus: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.TileLoadStatus,
95489
- TileRequest: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.TileRequest,
95490
- TileRequestChannel: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.TileRequestChannel,
95491
- TileRequestChannelStatistics: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.TileRequestChannelStatistics,
95492
- TileRequestChannels: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.TileRequestChannels,
95493
- TileTree: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.TileTree,
95494
- TileTreeLoadStatus: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.TileTreeLoadStatus,
95495
- TileTreeReference: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.TileTreeReference,
95496
- TileUsageMarker: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.TileUsageMarker,
95497
- TileVisibility: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.TileVisibility,
95498
- Tiles: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.Tiles,
95499
- Tool: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.Tool,
95500
- ToolAdmin: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ToolAdmin,
95501
- ToolAssistance: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ToolAssistance,
95502
- ToolAssistanceImage: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ToolAssistanceImage,
95503
- ToolAssistanceInputMethod: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ToolAssistanceInputMethod,
95504
- ToolSettings: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ToolSettings,
95505
- TwoWayViewportFrustumSync: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.TwoWayViewportFrustumSync,
95506
- TwoWayViewportSync: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.TwoWayViewportSync,
95507
- TxnAction: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.TxnAction,
95508
- TypeOfChange: _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__.TypeOfChange,
95509
- UniformType: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.UniformType,
95510
- VaryingType: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.VaryingType,
95511
- ViewClipClearTool: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewClipClearTool,
95512
- ViewClipDecoration: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewClipDecoration,
95513
- ViewClipDecorationProvider: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewClipDecorationProvider,
95514
- ViewClipTool: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewClipTool,
95515
- ViewCreator2d: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewCreator2d,
95516
- ViewCreator3d: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewCreator3d,
95517
- ViewManager: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewManager,
95518
- ViewManip: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewManip,
95519
- ViewPose: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewPose,
95520
- ViewPose2d: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewPose2d,
95521
- ViewPose3d: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewPose3d,
95522
- ViewRect: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewRect,
95523
- ViewState: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewState,
95524
- ViewState2d: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewState2d,
95525
- ViewState3d: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewState3d,
95526
- ViewStatus: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewStatus,
95527
- ViewTool: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewTool,
95528
- ViewingSpace: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewingSpace,
95529
- Viewport: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.Viewport,
95530
- canvasToImageBuffer: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.canvasToImageBuffer,
95531
- canvasToResizedCanvasWithBars: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.canvasToResizedCanvasWithBars,
95532
- connectViewportFrusta: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.connectViewportFrusta,
95533
- connectViewportViews: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.connectViewportViews,
95534
- connectViewports: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.connectViewports,
95535
- extractImageSourceDimensions: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.extractImageSourceDimensions,
95536
- getCompressedJpegFromCanvas: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.getCompressedJpegFromCanvas,
95537
- getImageSourceFormatForMimeType: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.getImageSourceFormatForMimeType,
95538
- getImageSourceMimeType: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.getImageSourceMimeType,
95539
- imageBufferToBase64EncodedPng: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.imageBufferToBase64EncodedPng,
95540
- imageBufferToCanvas: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.imageBufferToCanvas,
95541
- imageBufferToPngDataUrl: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.imageBufferToPngDataUrl,
95542
- imageElementFromImageSource: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.imageElementFromImageSource,
95543
- imageElementFromUrl: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.imageElementFromUrl,
95544
- queryTerrainElevationOffset: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.queryTerrainElevationOffset,
95545
- readElementGraphics: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.readElementGraphics,
95546
- readGltfGraphics: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.readGltfGraphics,
95547
- synchronizeViewportFrusta: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.synchronizeViewportFrusta,
95548
- synchronizeViewportViews: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.synchronizeViewportViews,
95469
+ ACSDisplayOptions: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ACSDisplayOptions,
95470
+ ACSType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ACSType,
95471
+ AccuDrawHintBuilder: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.AccuDrawHintBuilder,
95472
+ AccuSnap: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.AccuSnap,
95473
+ ActivityMessageDetails: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ActivityMessageDetails,
95474
+ ActivityMessageEndReason: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ActivityMessageEndReason,
95475
+ AuxCoordSystem2dState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.AuxCoordSystem2dState,
95476
+ AuxCoordSystem3dState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.AuxCoordSystem3dState,
95477
+ AuxCoordSystemSpatialState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.AuxCoordSystemSpatialState,
95478
+ AuxCoordSystemState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.AuxCoordSystemState,
95479
+ BackgroundFill: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.BackgroundFill,
95480
+ BackgroundMapType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.BackgroundMapType,
95481
+ BatchType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.BatchType,
95482
+ BeButton: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.BeButton,
95483
+ BeButtonEvent: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.BeButtonEvent,
95484
+ BeButtonState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.BeButtonState,
95485
+ BeModifierKeys: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.BeModifierKeys,
95486
+ BeTouchEvent: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.BeTouchEvent,
95487
+ BeWheelEvent: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.BeWheelEvent,
95488
+ BingElevationProvider: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.BingElevationProvider,
95489
+ BingLocationProvider: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.BingLocationProvider,
95490
+ BisCodeSpec: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.BisCodeSpec,
95491
+ BriefcaseIdValue: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.BriefcaseIdValue,
95492
+ CategorySelectorState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.CategorySelectorState,
95493
+ ChangeFlags: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ChangeFlags,
95494
+ ChangeOpCode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ChangeOpCode,
95495
+ ChangedValueState: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ChangedValueState,
95496
+ ChangesetType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ChangesetType,
95497
+ ClipEventType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ClipEventType,
95498
+ Cluster: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.Cluster,
95499
+ ColorByName: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ColorByName,
95500
+ ColorDef: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ColorDef,
95501
+ CommonLoggerCategory: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.CommonLoggerCategory,
95502
+ ContextRealityModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ContextRealityModelState,
95503
+ ContextRotationId: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ContextRotationId,
95504
+ CoordSource: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.CoordSource,
95505
+ CoordSystem: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.CoordSystem,
95506
+ CoordinateLockOverrides: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.CoordinateLockOverrides,
95507
+ DecorateContext: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.DecorateContext,
95508
+ Decorations: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.Decorations,
95509
+ DisclosedTileTreeSet: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.DisclosedTileTreeSet,
95510
+ DisplayStyle2dState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.DisplayStyle2dState,
95511
+ DisplayStyle3dState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.DisplayStyle3dState,
95512
+ DisplayStyleState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.DisplayStyleState,
95513
+ DrawingModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.DrawingModelState,
95514
+ DrawingViewState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.DrawingViewState,
95515
+ ECSqlSystemProperty: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ECSqlSystemProperty,
95516
+ ECSqlValueType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ECSqlValueType,
95517
+ EditManipulator: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.EditManipulator,
95518
+ ElementGeometryOpcode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ElementGeometryOpcode,
95519
+ ElementLocateManager: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ElementLocateManager,
95520
+ ElementPicker: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ElementPicker,
95521
+ ElementState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ElementState,
95522
+ EmphasizeElements: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.EmphasizeElements,
95523
+ EntityState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.EntityState,
95524
+ EventController: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.EventController,
95525
+ EventHandled: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.EventHandled,
95526
+ FeatureOverrideType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.FeatureOverrideType,
95527
+ FeatureSymbology: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.FeatureSymbology,
95528
+ FillDisplay: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.FillDisplay,
95529
+ FillFlags: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.FillFlags,
95530
+ FlashMode: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.FlashMode,
95531
+ FlashSettings: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.FlashSettings,
95532
+ FontType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.FontType,
95533
+ FrontendLoggerCategory: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.FrontendLoggerCategory,
95534
+ FrustumAnimator: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.FrustumAnimator,
95535
+ FrustumPlanes: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.FrustumPlanes,
95536
+ GeoCoordStatus: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.GeoCoordStatus,
95537
+ GeometricModel2dState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.GeometricModel2dState,
95538
+ GeometricModel3dState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.GeometricModel3dState,
95539
+ GeometricModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.GeometricModelState,
95540
+ GeometryClass: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.GeometryClass,
95541
+ GeometryStreamFlags: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.GeometryStreamFlags,
95542
+ GeometrySummaryVerbosity: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.GeometrySummaryVerbosity,
95543
+ GlobeAnimator: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.GlobeAnimator,
95544
+ GlobeMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.GlobeMode,
95545
+ GraphicBranch: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.GraphicBranch,
95546
+ GraphicBuilder: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.GraphicBuilder,
95547
+ GraphicType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.GraphicType,
95548
+ GridOrientationType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.GridOrientationType,
95549
+ HSVConstants: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.HSVConstants,
95550
+ HiliteSet: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.HiliteSet,
95551
+ HitDetail: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.HitDetail,
95552
+ HitDetailType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.HitDetailType,
95553
+ HitGeomType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.HitGeomType,
95554
+ HitList: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.HitList,
95555
+ HitParentGeomType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.HitParentGeomType,
95556
+ HitPriority: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.HitPriority,
95557
+ HitSource: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.HitSource,
95558
+ IModelConnection: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.IModelConnection,
95559
+ IconSprites: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.IconSprites,
95560
+ ImageBufferFormat: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ImageBufferFormat,
95561
+ ImageSourceFormat: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ImageSourceFormat,
95562
+ InputCollector: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.InputCollector,
95563
+ InputSource: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.InputSource,
95564
+ InteractiveTool: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.InteractiveTool,
95565
+ IntersectDetail: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.IntersectDetail,
95566
+ KeyinParseError: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.KeyinParseError,
95567
+ LinePixels: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.LinePixels,
95568
+ LocateAction: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.LocateAction,
95569
+ LocateFilterStatus: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.LocateFilterStatus,
95570
+ LocateOptions: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.LocateOptions,
95571
+ LocateResponse: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.LocateResponse,
95572
+ ManipulatorToolEvent: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ManipulatorToolEvent,
95573
+ MarginPercent: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.MarginPercent,
95574
+ Marker: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.Marker,
95575
+ MarkerSet: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.MarkerSet,
95576
+ MassPropertiesOperation: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.MassPropertiesOperation,
95577
+ MessageBoxIconType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.MessageBoxIconType,
95578
+ MessageBoxType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.MessageBoxType,
95579
+ MessageBoxValue: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.MessageBoxValue,
95580
+ ModelSelectorState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ModelSelectorState,
95581
+ ModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ModelState,
95582
+ MonochromeMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.MonochromeMode,
95583
+ NotificationHandler: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.NotificationHandler,
95584
+ NotificationManager: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.NotificationManager,
95585
+ NotifyMessageDetails: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.NotifyMessageDetails,
95586
+ Npc: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.Npc,
95587
+ OffScreenViewport: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.OffScreenViewport,
95588
+ OrthographicViewState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.OrthographicViewState,
95589
+ OutputMessageAlert: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.OutputMessageAlert,
95590
+ OutputMessagePriority: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.OutputMessagePriority,
95591
+ OutputMessageType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.OutputMessageType,
95592
+ ParseAndRunResult: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ParseAndRunResult,
95593
+ PerModelCategoryVisibility: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.PerModelCategoryVisibility,
95594
+ PhysicalModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.PhysicalModelState,
95595
+ Pixel: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.Pixel,
95596
+ PlanarClipMaskMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.PlanarClipMaskMode,
95597
+ PlanarClipMaskPriority: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.PlanarClipMaskPriority,
95598
+ PrimitiveTool: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.PrimitiveTool,
95599
+ QParams2d: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.QParams2d,
95600
+ QParams3d: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.QParams3d,
95601
+ QPoint2d: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.QPoint2d,
95602
+ QPoint2dBuffer: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.QPoint2dBuffer,
95603
+ QPoint2dBufferBuilder: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.QPoint2dBufferBuilder,
95604
+ QPoint2dList: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.QPoint2dList,
95605
+ QPoint3d: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.QPoint3d,
95606
+ QPoint3dBuffer: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.QPoint3dBuffer,
95607
+ QPoint3dBufferBuilder: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.QPoint3dBufferBuilder,
95608
+ QPoint3dList: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.QPoint3dList,
95609
+ Quantization: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.Quantization,
95610
+ QueryRowFormat: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.QueryRowFormat,
95611
+ Rank: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.Rank,
95612
+ RenderClipVolume: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.RenderClipVolume,
95613
+ RenderContext: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.RenderContext,
95614
+ RenderGraphic: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.RenderGraphic,
95615
+ RenderGraphicOwner: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.RenderGraphicOwner,
95616
+ RenderMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.RenderMode,
95617
+ RenderSystem: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.RenderSystem,
95618
+ Scene: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.Scene,
95619
+ ScreenViewport: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ScreenViewport,
95620
+ SectionDrawingModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SectionDrawingModelState,
95621
+ SectionType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.SectionType,
95622
+ SelectionMethod: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SelectionMethod,
95623
+ SelectionMode: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SelectionMode,
95624
+ SelectionProcessing: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SelectionProcessing,
95625
+ SelectionSet: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SelectionSet,
95626
+ SelectionSetEventType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SelectionSetEventType,
95627
+ SheetModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SheetModelState,
95628
+ SheetViewState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SheetViewState,
95629
+ SkyBoxImageType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.SkyBoxImageType,
95630
+ SnapDetail: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SnapDetail,
95631
+ SnapHeat: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SnapHeat,
95632
+ SnapMode: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SnapMode,
95633
+ SnapStatus: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SnapStatus,
95634
+ SpatialClassifierInsideDisplay: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.SpatialClassifierInsideDisplay,
95635
+ SpatialClassifierOutsideDisplay: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.SpatialClassifierOutsideDisplay,
95636
+ SpatialLocationModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SpatialLocationModelState,
95637
+ SpatialModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SpatialModelState,
95638
+ SpatialViewState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SpatialViewState,
95639
+ Sprite: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.Sprite,
95640
+ SpriteLocation: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SpriteLocation,
95641
+ StandardViewId: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.StandardViewId,
95642
+ StartOrResume: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.StartOrResume,
95643
+ SyncMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.SyncMode,
95644
+ TentativePoint: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TentativePoint,
95645
+ TerrainHeightOriginMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.TerrainHeightOriginMode,
95646
+ TextureMapUnits: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.TextureMapUnits,
95647
+ ThematicDisplayMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ThematicDisplayMode,
95648
+ ThematicGradientColorScheme: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ThematicGradientColorScheme,
95649
+ ThematicGradientMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ThematicGradientMode,
95650
+ Tile: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.Tile,
95651
+ TileAdmin: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileAdmin,
95652
+ TileBoundingBoxes: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileBoundingBoxes,
95653
+ TileDrawArgs: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileDrawArgs,
95654
+ TileGraphicType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileGraphicType,
95655
+ TileLoadPriority: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileLoadPriority,
95656
+ TileLoadStatus: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileLoadStatus,
95657
+ TileRequest: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileRequest,
95658
+ TileRequestChannel: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileRequestChannel,
95659
+ TileRequestChannelStatistics: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileRequestChannelStatistics,
95660
+ TileRequestChannels: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileRequestChannels,
95661
+ TileTree: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileTree,
95662
+ TileTreeLoadStatus: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileTreeLoadStatus,
95663
+ TileTreeReference: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileTreeReference,
95664
+ TileUsageMarker: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileUsageMarker,
95665
+ TileVisibility: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileVisibility,
95666
+ Tiles: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.Tiles,
95667
+ Tool: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.Tool,
95668
+ ToolAdmin: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ToolAdmin,
95669
+ ToolAssistance: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ToolAssistance,
95670
+ ToolAssistanceImage: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ToolAssistanceImage,
95671
+ ToolAssistanceInputMethod: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ToolAssistanceInputMethod,
95672
+ ToolSettings: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ToolSettings,
95673
+ TwoWayViewportFrustumSync: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TwoWayViewportFrustumSync,
95674
+ TwoWayViewportSync: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TwoWayViewportSync,
95675
+ TxnAction: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.TxnAction,
95676
+ TypeOfChange: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.TypeOfChange,
95677
+ UniformType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.UniformType,
95678
+ VaryingType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.VaryingType,
95679
+ ViewClipClearTool: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewClipClearTool,
95680
+ ViewClipDecoration: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewClipDecoration,
95681
+ ViewClipDecorationProvider: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewClipDecorationProvider,
95682
+ ViewClipTool: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewClipTool,
95683
+ ViewCreator2d: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewCreator2d,
95684
+ ViewCreator3d: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewCreator3d,
95685
+ ViewManager: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewManager,
95686
+ ViewManip: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewManip,
95687
+ ViewPose: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewPose,
95688
+ ViewPose2d: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewPose2d,
95689
+ ViewPose3d: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewPose3d,
95690
+ ViewRect: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewRect,
95691
+ ViewState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewState,
95692
+ ViewState2d: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewState2d,
95693
+ ViewState3d: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewState3d,
95694
+ ViewStatus: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewStatus,
95695
+ ViewTool: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewTool,
95696
+ ViewingSpace: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewingSpace,
95697
+ Viewport: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.Viewport,
95698
+ canvasToImageBuffer: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.canvasToImageBuffer,
95699
+ canvasToResizedCanvasWithBars: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.canvasToResizedCanvasWithBars,
95700
+ connectViewportFrusta: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.connectViewportFrusta,
95701
+ connectViewportViews: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.connectViewportViews,
95702
+ connectViewports: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.connectViewports,
95703
+ extractImageSourceDimensions: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.extractImageSourceDimensions,
95704
+ getCompressedJpegFromCanvas: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.getCompressedJpegFromCanvas,
95705
+ getImageSourceFormatForMimeType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.getImageSourceFormatForMimeType,
95706
+ getImageSourceMimeType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.getImageSourceMimeType,
95707
+ imageBufferToBase64EncodedPng: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.imageBufferToBase64EncodedPng,
95708
+ imageBufferToCanvas: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.imageBufferToCanvas,
95709
+ imageBufferToPngDataUrl: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.imageBufferToPngDataUrl,
95710
+ imageElementFromImageSource: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.imageElementFromImageSource,
95711
+ imageElementFromUrl: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.imageElementFromUrl,
95712
+ queryTerrainElevationOffset: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.queryTerrainElevationOffset,
95713
+ readElementGraphics: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.readElementGraphics,
95714
+ readGltfGraphics: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.readGltfGraphics,
95715
+ synchronizeViewportFrusta: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.synchronizeViewportFrusta,
95716
+ synchronizeViewportViews: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.synchronizeViewportViews,
95549
95717
  };
95550
95718
  // END GENERATED CODE
95551
- const getExtensionApi = (id) => {
95719
+ const getExtensionApi = (_id) => {
95552
95720
  return {
95553
95721
  exports: {
95554
95722
  // exceptions
95555
- ExtensionHost: _ExtensionHost__WEBPACK_IMPORTED_MODULE_1__.ExtensionHost,
95723
+ ExtensionHost: _ExtensionHost__WEBPACK_IMPORTED_MODULE_0__.ExtensionHost,
95556
95724
  // automated
95557
95725
  ...extensionExports,
95558
95726
  },
95559
- api: new _ExtensionImpl__WEBPACK_IMPORTED_MODULE_0__.ExtensionImpl(id),
95560
95727
  };
95561
95728
  };
95562
95729
  globalThis[globalSymbol] = {
@@ -142209,8 +142376,9 @@ class TileAdmin {
142209
142376
  // start dynamically loading default implementation and save the promise to avoid duplicate instances
142210
142377
  this._tileStoragePromise = (async () => {
142211
142378
  await __webpack_require__.e(/*! import() */ "vendors-common_temp_node_modules_pnpm_reflect-metadata_0_1_13_node_modules_reflect-metadata_R-610cb3").then(__webpack_require__.t.bind(__webpack_require__, /*! reflect-metadata */ "../../common/temp/node_modules/.pnpm/reflect-metadata@0.1.13/node_modules/reflect-metadata/Reflect.js", 23));
142379
+ const objectStorage = await Promise.all(/*! import() | object-storage-azure */[__webpack_require__.e("vendors-common_temp_node_modules_pnpm_reflect-metadata_0_1_13_node_modules_reflect-metadata_R-610cb3"), __webpack_require__.e("vendors-common_temp_node_modules_pnpm_itwin_object-storage-azure_1_6_0_node_modules_itwin_obj-0f69b1"), __webpack_require__.e("object-storage-azure")]).then(__webpack_require__.t.bind(__webpack_require__, /*! @itwin/object-storage-azure/lib/frontend */ "../../common/temp/node_modules/.pnpm/@itwin+object-storage-azure@1.6.0/node_modules/@itwin/object-storage-azure/lib/frontend/index.js", 23));
142212
142380
  // eslint-disable-next-line @typescript-eslint/naming-convention
142213
- const { AzureFrontendStorage, FrontendBlockBlobClientWrapperFactory } = await Promise.all(/*! import() | object-storage */[__webpack_require__.e("vendors-common_temp_node_modules_pnpm_reflect-metadata_0_1_13_node_modules_reflect-metadata_R-610cb3"), __webpack_require__.e("vendors-common_temp_node_modules_pnpm_itwin_object-storage-azure_1_6_0_node_modules_itwin_obj-0f69b1"), __webpack_require__.e("object-storage")]).then(__webpack_require__.t.bind(__webpack_require__, /*! @itwin/object-storage-azure/lib/frontend */ "../../common/temp/node_modules/.pnpm/@itwin+object-storage-azure@1.6.0/node_modules/@itwin/object-storage-azure/lib/frontend/index.js", 23));
142381
+ const { AzureFrontendStorage, FrontendBlockBlobClientWrapperFactory } = objectStorage.default ?? objectStorage;
142214
142382
  const azureStorage = new AzureFrontendStorage(new FrontendBlockBlobClientWrapperFactory());
142215
142383
  this._tileStorage = new _internal__WEBPACK_IMPORTED_MODULE_6__.TileStorage(azureStorage);
142216
142384
  return this._tileStorage;
@@ -282362,7 +282530,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
282362
282530
  /***/ ((module) => {
282363
282531
 
282364
282532
  "use strict";
282365
- module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.0.0-dev.102","description":"iTwin.js frontend components","main":"lib/cjs/core-frontend.js","module":"lib/esm/core-frontend.js","typings":"lib/cjs/core-frontend","license":"MIT","scripts":{"build":"npm run -s copy:public && npm run -s build:cjs && npm run -s build:esm","build:cjs":"npm run -s copy:js:cjs && tsc 1>&2 --outDir lib/cjs","build:esm":"npm run -s copy:js:esm && tsc 1>&2 --module ES2020 --outDir lib/esm","clean":"rimraf lib .rush/temp/package-deps*.json","copy:public":"cpx \\"./src/public/**/*\\" ./lib/public","copy:js:cjs":"cpx \\"./src/**/*.js\\" ./lib/cjs","copy:js:esm":"cpx \\"./src/**/*.js\\" ./lib/esm","docs":"betools docs --includes=../../generated-docs/extract --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/primitives,**/map/*.d.ts,**/tile/*.d.ts,**/*-css.ts","extract-api":"betools extract-api --entry=core-frontend && npm run extract-extension-api","extract-extension-api":"eslint --no-eslintrc -c \\"./node_modules/@itwin/eslint-plugin/dist/configs/extension-exports-config.js\\" \\"./src/**/*.ts\\" 1>&2","lint":"eslint -f visualstudio \\"./src/**/*.ts\\" 1>&2","pseudolocalize":"betools pseudolocalize --englishDir ./src/public/locales/en --out ./public/locales/en-PSEUDO","test":"npm run -s webpackTests && certa -r chrome","cover":"npm -s test","test:debug":"certa -r chrome --debug","webpackTests":"webpack --config ./src/test/utils/webpack.config.js 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core.git","directory":"core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:^4.0.0-dev.102","@itwin/core-bentley":"workspace:^4.0.0-dev.102","@itwin/core-common":"workspace:^4.0.0-dev.102","@itwin/core-geometry":"workspace:^4.0.0-dev.102","@itwin/core-orbitgt":"workspace:^4.0.0-dev.102","@itwin/core-quantity":"workspace:^4.0.0-dev.102"},"//devDependencies":["NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install","NOTE: All tools used by scripts in this package must be listed as devDependencies"],"devDependencies":{"@itwin/appui-abstract":"workspace:*","@itwin/build-tools":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/certa":"workspace:*","@itwin/eslint-plugin":"^4.0.0-dev.33","@types/chai":"4.3.1","@types/chai-as-promised":"^7","@types/mocha":"^8.2.2","@types/node":"^18.11.5","@types/sinon":"^9.0.0","babel-loader":"~8.2.5","babel-plugin-istanbul":"~6.1.1","chai":"^4.1.2","chai-as-promised":"^7","cpx2":"^3.0.0","eslint":"^8.36.0","glob":"^7.1.2","mocha":"^10.0.0","nyc":"^15.1.0","rimraf":"^3.0.2","sinon":"^9.0.2","source-map-loader":"^4.0.0","typescript":"~5.0.2","webpack":"^5.76.0"},"//dependencies":["NOTE: these dependencies should be only for things that DO NOT APPEAR IN THE API","NOTE: core-frontend should remain UI technology agnostic, so no react/angular dependencies are allowed"],"dependencies":{"@itwin/object-storage-azure":"^1.5.0","@itwin/cloud-agnostic-core":"^1.5.0","@itwin/object-storage-core":"^1.5.0","@itwin/core-i18n":"workspace:*","@itwin/core-telemetry":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"^3.1.6","@loaders.gl/draco":"^3.1.6","fuse.js":"^3.3.0","wms-capabilities":"0.4.0","reflect-metadata":"0.1.13"},"nyc":{"extends":"./node_modules/@itwin/build-tools/.nycrc"},"eslintConfig":{"plugins":["@itwin"],"extends":"plugin:@itwin/itwinjs-recommended","rules":{"@itwin/no-internal-barrel-imports":["error",{"required-barrel-modules":["./src/tile/internal.ts"]}],"@itwin/public-extension-exports":["error",{"releaseTags":["public","preview"],"outputApiFile":false}]},"overrides":[{"files":["*.test.ts","*.test.tsx","**/test/**/*.ts"],"rules":{"@itwin/no-internal-barrel-imports":"off"}}]}}');
282533
+ module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.0.0-dev.104","description":"iTwin.js frontend components","main":"lib/cjs/core-frontend.js","module":"lib/esm/core-frontend.js","typings":"lib/cjs/core-frontend","license":"MIT","scripts":{"build":"npm run -s copy:public && npm run -s build:cjs && npm run -s build:esm","build:cjs":"npm run -s copy:js:cjs && tsc 1>&2 --outDir lib/cjs","build:esm":"npm run -s copy:js:esm && tsc 1>&2 --module ES2020 --outDir lib/esm","clean":"rimraf lib .rush/temp/package-deps*.json","copy:public":"cpx \\"./src/public/**/*\\" ./lib/public","copy:js:cjs":"cpx \\"./src/**/*.js\\" ./lib/cjs","copy:js:esm":"cpx \\"./src/**/*.js\\" ./lib/esm","docs":"betools docs --includes=../../generated-docs/extract --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/primitives,**/map/*.d.ts,**/tile/*.d.ts,**/*-css.ts","extract-api":"betools extract-api --entry=core-frontend && npm run extract-extension-api","extract-extension-api":"eslint --no-eslintrc -c \\"./node_modules/@itwin/eslint-plugin/dist/configs/extension-exports-config.js\\" \\"./src/**/*.ts\\" 1>&2","lint":"eslint -f visualstudio \\"./src/**/*.ts\\" 1>&2","pseudolocalize":"betools pseudolocalize --englishDir ./src/public/locales/en --out ./public/locales/en-PSEUDO","test":"npm run -s webpackTests && certa -r chrome","cover":"npm -s test","test:debug":"certa -r chrome --debug","webpackTests":"webpack --config ./src/test/utils/webpack.config.js 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core.git","directory":"core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:^4.0.0-dev.104","@itwin/core-bentley":"workspace:^4.0.0-dev.104","@itwin/core-common":"workspace:^4.0.0-dev.104","@itwin/core-geometry":"workspace:^4.0.0-dev.104","@itwin/core-orbitgt":"workspace:^4.0.0-dev.104","@itwin/core-quantity":"workspace:^4.0.0-dev.104"},"//devDependencies":["NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install","NOTE: All tools used by scripts in this package must be listed as devDependencies"],"devDependencies":{"@itwin/appui-abstract":"workspace:*","@itwin/build-tools":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/certa":"workspace:*","@itwin/eslint-plugin":"^4.0.0-dev.33","@types/chai":"4.3.1","@types/chai-as-promised":"^7","@types/mocha":"^8.2.2","@types/node":"^18.11.5","@types/sinon":"^9.0.0","babel-loader":"~8.2.5","babel-plugin-istanbul":"~6.1.1","chai":"^4.1.2","chai-as-promised":"^7","cpx2":"^3.0.0","eslint":"^8.36.0","glob":"^7.1.2","mocha":"^10.0.0","nyc":"^15.1.0","rimraf":"^3.0.2","sinon":"^9.0.2","source-map-loader":"^4.0.0","typescript":"~5.0.2","webpack":"^5.76.0"},"//dependencies":["NOTE: these dependencies should be only for things that DO NOT APPEAR IN THE API","NOTE: core-frontend should remain UI technology agnostic, so no react/angular dependencies are allowed"],"dependencies":{"@itwin/object-storage-azure":"^1.5.0","@itwin/cloud-agnostic-core":"^1.5.0","@itwin/object-storage-core":"^1.5.0","@itwin/core-i18n":"workspace:*","@itwin/core-telemetry":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"^3.1.6","@loaders.gl/draco":"^3.1.6","fuse.js":"^3.3.0","wms-capabilities":"0.4.0","reflect-metadata":"0.1.13"},"nyc":{"extends":"./node_modules/@itwin/build-tools/.nycrc"},"eslintConfig":{"plugins":["@itwin"],"extends":"plugin:@itwin/itwinjs-recommended","rules":{"@itwin/no-internal-barrel-imports":["error",{"required-barrel-modules":["./src/tile/internal.ts"]}],"@itwin/public-extension-exports":["error",{"releaseTags":["public","preview"],"outputApiFile":false}]},"overrides":[{"files":["*.test.ts","*.test.tsx","**/test/**/*.ts"],"rules":{"@itwin/no-internal-barrel-imports":"off"}}]}}');
282366
282534
 
282367
282535
  /***/ })
282368
282536