@itwin/core-common
Version:
iTwin.js components common to frontend and backend
25 lines • 1.13 kB
JavaScript
;
/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
/**
* @packageDocumentation
* @module iModels
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ChangesetType = void 0;
/** Value to indicate whether a changeset contains schema changes or not
* @public
* @extensions
*/
var ChangesetType;
(function (ChangesetType) {
/** changeset does *not* contain schema changes. */
ChangesetType[ChangesetType["Regular"] = 0] = "Regular";
/** changeset *does* contain schema changes. */
ChangesetType[ChangesetType["Schema"] = 1] = "Schema";
/** Schema changeset pushed by iModel with SchemaSync enabled */
ChangesetType[ChangesetType["SchemaSync"] = 65] = "SchemaSync";
})(ChangesetType || (exports.ChangesetType = ChangesetType = {}));
//# sourceMappingURL=ChangesetProps.js.map