@tridion-sites/models 0.1.2 → 0.1.3
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.
- package/CHANGELOG.md +6 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -5095,7 +5095,7 @@ export declare abstract class VersionedItem extends RepositoryLocalObject {
|
|
|
5095
5095
|
private _fullVersionInfo;
|
|
5096
5096
|
private _isDynamic;
|
|
5097
5097
|
constructor({ backendModel, dynamicVersionInfo, fullVersionInfo, isDynamic, ...rloArgs }: VersionedItemConstructorArgs);
|
|
5098
|
-
get
|
|
5098
|
+
get isAwaitingFirstCheckIn(): boolean;
|
|
5099
5099
|
get isDynamic(): boolean;
|
|
5100
5100
|
get dynamicVersionInfo(): DynamicVersionInfo | undefined;
|
|
5101
5101
|
get versionInfo(): FullVersionInfo | undefined;
|
package/dist/index.js
CHANGED
|
@@ -3636,7 +3636,7 @@ class VersionedItem extends RepositoryLocalObject {
|
|
|
3636
3636
|
this._dynamicVersionInfo = dynamicVersionInfo;
|
|
3637
3637
|
this._fullVersionInfo = fullVersionInfo;
|
|
3638
3638
|
}
|
|
3639
|
-
get
|
|
3639
|
+
get isAwaitingFirstCheckIn() {
|
|
3640
3640
|
var _a;
|
|
3641
3641
|
return ((_a = this._fullVersionInfo) === null || _a === void 0 ? void 0 : _a.isNew) || false;
|
|
3642
3642
|
}
|