@itwin/core-common
Version:
iTwin.js components common to frontend and backend
22 lines • 1 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
*/
/** Value to indicate whether a changeset contains schema changes or not
* @public
* @extensions
*/
export 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 || (ChangesetType = {}));
//# sourceMappingURL=ChangesetProps.js.map