@tridion-sites/models 2.1.0 → 2.2.0

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 CHANGED
@@ -1,5 +1,21 @@
1
1
  # @tridion-sites/models
2
2
 
3
+ ## 2.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - bc98a17: Add translation manager applicable actions
8
+ - a7a8cd6: Add `IdentifiableTranslationJob`, `TmUri` models
9
+ - 68fd3dc: Add `translationJob` item type
10
+ - 77cdc6c: Add `TranslationResolvedItem` model
11
+ - a4fda02: Add `tcm:finishprocess` action
12
+
13
+ ### Patch Changes
14
+
15
+ - c8abfb1: Fix TM error translation job uri mapping
16
+ - Updated dependencies [482b9d1], [77cdc6c], [cf7b3ba]
17
+ - @tridion-sites/open-api-client@4.2.0
18
+
3
19
  ## 2.1.0
4
20
 
5
21
  ### Minor Changes
package/dist/index.d.ts CHANGED
@@ -104,6 +104,7 @@ import type { PublishTransactionsCreationResult as PublishTransactionsCreationRe
104
104
  import { PublishTransactionState as PublishTransactionState_2 } from '@tridion-sites/open-api-client';
105
105
  import type { PublishUrlInfo as PublishUrlInfo_2 } from '@tridion-sites/open-api-client';
106
106
  import type { Region as Region_2 } from '@tridion-sites/open-api-client';
107
+ import type { RenderedItem as RenderedItem_2 } from '@tridion-sites/open-api-client';
107
108
  import type { Repository as Repository_2 } from '@tridion-sites/open-api-client';
108
109
  import type { RepositoryLocalObject as RepositoryLocalObject_2 } from '@tridion-sites/open-api-client';
109
110
  import type { ResolvedItem as ResolvedItem_2 } from '@tridion-sites/open-api-client';
@@ -116,6 +117,7 @@ import { SchemaPurpose as SchemaPurpose_2 } from '@tridion-sites/open-api-client
116
117
  import { SearchBlueprintStatus as SearchBlueprintStatus_2 } from '@tridion-sites/open-api-client';
117
118
  import type { SearchFolder as SearchFolder_2 } from '@tridion-sites/open-api-client';
118
119
  import type { SecurityDescriptor as SecurityDescriptor_2 } from '@tridion-sites/open-api-client';
120
+ import type { Settings as Settings_2 } from '@tridion-sites/open-api-client';
119
121
  import type { SingleLineTextFieldDefinition as SingleLineTextFieldDefinition_2 } from '@tridion-sites/open-api-client';
120
122
  import type { SingleLineTextListDefinition as SingleLineTextListDefinition_2 } from '@tridion-sites/open-api-client';
121
123
  import { StringSearchMode as StringSearchMode_2 } from '@tridion-sites/open-api-client';
@@ -134,6 +136,7 @@ import type { TargetType as TargetType_2 } from '@tridion-sites/open-api-client'
134
136
  import type { Template as Template_2 } from '@tridion-sites/open-api-client';
135
137
  import type { TemplateBuildingBlock as TemplateBuildingBlock_2 } from '@tridion-sites/open-api-client';
136
138
  import type { TextFieldDefinition as TextFieldDefinition_2 } from '@tridion-sites/open-api-client';
139
+ import type { TmResolvedItem } from '@tridion-sites/open-api-client';
137
140
  import type { TmsLanguage as TmsLanguage_2 } from '@tridion-sites/open-api-client';
138
141
  import type { TmsWorkflow as TmsWorkflow_2 } from '@tridion-sites/open-api-client';
139
142
  import type { TmsWorkflowStep as TmsWorkflowStep_2 } from '@tridion-sites/open-api-client';
@@ -570,9 +573,16 @@ export declare const applicableActions: {
570
573
  assignActivity: string;
571
574
  startActivity: string;
572
575
  finishActivity: string;
576
+ finishProcess: string;
573
577
  restartActivity: string;
574
578
  pushTranslation: string;
575
579
  pullTranslation: string;
580
+ deleteTranslation: string;
581
+ retryTranslation: string;
582
+ viewTranslation: string;
583
+ editTranslation: string;
584
+ copyTranslation: string;
585
+ sendTranslation: string;
576
586
  };
577
587
 
578
588
  export declare class ApprovalStatus extends SystemWideObject {
@@ -598,6 +608,8 @@ export declare class ApprovalStatus extends SystemWideObject {
598
608
  export declare interface ApprovalStatusConstructorArgs extends SystemWideObjectConstructorArgs {
599
609
  }
600
610
 
611
+ export declare type BackendIdentifiableTranslationJob = IdentifiableObject_2 & Omit<TranslationJob_2, 'Id'>;
612
+
601
613
  export declare interface BackendValidationApiError extends ApiError_2 {
602
614
  body: BackendValidationApiErrorBody;
603
615
  }
@@ -1476,7 +1488,7 @@ export declare interface DynamicVersionInfoConstructorArgs {
1476
1488
  revisionDate: Date | undefined;
1477
1489
  }
1478
1490
 
1479
- export declare class EclUri {
1491
+ export declare class EclUri implements Uri {
1480
1492
  /**
1481
1493
  * Id of the Tridion Publication this EclUri belongs to.
1482
1494
  */
@@ -1995,6 +2007,147 @@ export declare interface IdentifiableObjectConstructorArgs {
1995
2007
  securityDescriptor: SecurityDescriptor | undefined;
1996
2008
  }
1997
2009
 
2010
+ /**
2011
+ * `TranslationJob` class that extends `IdentifiableObject`, that uses `ItemUri` instead of number as an id.
2012
+ *
2013
+ * @note
2014
+ * Please note that the rest of `IdentifiableObject` props will be undefined always.
2015
+ *
2016
+ * To get original object use `getOriginalInternalModel()`, as `getInternalModel()` result will include `Id` in a format `tm:0-1234`.
2017
+ *
2018
+ * @example
2019
+ * TranslationJob.id: number | undefined;
2020
+ * IdentifiableTranslationJob.id: ItemUri;
2021
+ */
2022
+ export declare class IdentifiableTranslationJob extends IdentifiableObject {
2023
+ protected _backendModel: BackendIdentifiableTranslationJob;
2024
+ private _addedItems;
2025
+ private _creator;
2026
+ private _configurationItemUri;
2027
+ private _displayState;
2028
+ private _errors;
2029
+ private _errorSeverityLevel;
2030
+ private _language;
2031
+ private _priority;
2032
+ private _revisor;
2033
+ private _state;
2034
+ private _targetLanguages;
2035
+ private _type;
2036
+ private _workflowStatus;
2037
+ private _creationDate;
2038
+ private _requiredDate;
2039
+ private _revisionDate;
2040
+ private _contextRepository;
2041
+ constructor({ addedItems, backendModel, configurationItemUri, creationDate, creator, displayState, errors, errorSeverityLevel, language, priority, requiredDate, revisionDate, revisor, state, targetLanguages, type, workflowStatus, contextRepository, ...identifiableObjectArgs }: IdentifiableTranslationJobConstructorArgs);
2042
+ get title(): string | undefined;
2043
+ /**
2044
+ * Collection containing the `AddedItem`s that have been added to this Translation Job.
2045
+ * The `AddedItem`s represent either an Item that will be translated (for example a Component) or
2046
+ * an Item that contains the Items that will be translated (for example a Folder).
2047
+ */
2048
+ get addedItems(): ReadonlyArray<TranslationJobItem> | undefined;
2049
+ /**
2050
+ * TCM URI of the item containing the `TranslationConfiguration` used for this Translation Job.
2051
+ */
2052
+ get configurationItemUri(): ItemUri | undefined;
2053
+ /**
2054
+ * Link to the Context Repository.
2055
+ */
2056
+ get contextRepository(): Link | undefined;
2057
+ /**
2058
+ * The date the Translation Job was created (in UTC).
2059
+ */
2060
+ get creationDate(): Date | undefined;
2061
+ /**
2062
+ * A link to the user who created the Translation Job.
2063
+ */
2064
+ get creator(): Link | undefined;
2065
+ get displayState(): TranslationJobDisplayState | undefined;
2066
+ /**
2067
+ * Collection of errors registered to this job.
2068
+ */
2069
+ get errors(): ReadonlyArray<TranslationErrorDetails> | undefined;
2070
+ get errorSeverityLevel(): TranslationErrorSeverity | undefined;
2071
+ get hasError(): boolean;
2072
+ /**
2073
+ * Value indicating whether items that have already been translated should be included in the job.
2074
+ */
2075
+ get includeItemsAlreadyTranslated(): boolean;
2076
+ /**
2077
+ * Value indicating if the Translation Job currently have one or more `TranslationJobQuote`s awaiting authorization (see remarks).
2078
+ */
2079
+ get isAwaitingAuthorization(): boolean;
2080
+ get language(): TmsLanguage | undefined;
2081
+ /**
2082
+ * Metadata associated with the Translation Job.
2083
+ */
2084
+ get metadata(): FieldsValueDictionary | undefined;
2085
+ /**
2086
+ * TCM URI of the metadata schema used for this Translation Job.
2087
+ */
2088
+ get metadataSchemaUri(): string | undefined;
2089
+ /**
2090
+ * The priority of the Translation Job. This value will only have an affect if `SupportsPriority` returns true.
2091
+ */
2092
+ get priority(): TranslationJobPriority | undefined;
2093
+ get progressPercentage(): number | undefined;
2094
+ /**
2095
+ * The due date for this job.
2096
+ */
2097
+ get requiredDate(): Date | undefined;
2098
+ get revisionDate(): Date | undefined;
2099
+ /**
2100
+ * A link to the user who last modified the Translation Job.
2101
+ */
2102
+ get revisor(): Link | undefined;
2103
+ get state(): TranslationJobState | undefined;
2104
+ /**
2105
+ * Show if `TranslationJob` support setting of priority.
2106
+ */
2107
+ get supportsPriority(): boolean;
2108
+ /**
2109
+ * Show if `TranslationJob` support setting required rate.
2110
+ */
2111
+ get supportsRequiredDate(): boolean;
2112
+ /**
2113
+ * List of target languages available for this `TranslationJob`.
2114
+ */
2115
+ get targetLanguages(): ReadonlyArray<TargetLanguage> | undefined;
2116
+ /**
2117
+ * Value indicating if the Translation Job is a translation to the Publication of the `ConfigurationItemUri`
2118
+ * (Pull job) or from the Publication (Push job).
2119
+ */
2120
+ get type(): ReadonlyArray<TranslationJobType> | undefined;
2121
+ /**
2122
+ * Item count of language/workflowstep pairs.
2123
+ */
2124
+ get workflowStatus(): ReadonlyArray<TranslationWorkflowStatus> | undefined;
2125
+ getOriginalInternalModel: () => TranslationJob_2;
2126
+ getInternalModel: () => BackendIdentifiableTranslationJob;
2127
+ }
2128
+
2129
+ export declare interface IdentifiableTranslationJobConstructorArgs extends IdentifiableObjectConstructorArgs {
2130
+ backendModel: BackendIdentifiableTranslationJob;
2131
+ id: ItemUri;
2132
+ addedItems: ReadonlyArray<TranslationJobItem> | undefined;
2133
+ configurationItemUri: ItemUri | undefined;
2134
+ creationDate: Date | undefined;
2135
+ creator: Link | undefined;
2136
+ displayState: TranslationJobDisplayState | undefined;
2137
+ errors: ReadonlyArray<TranslationErrorDetails> | undefined;
2138
+ errorSeverityLevel: TranslationErrorSeverity | undefined;
2139
+ language: TmsLanguage | undefined;
2140
+ priority: TranslationJobPriority | undefined;
2141
+ requiredDate: Date | undefined;
2142
+ revisionDate: Date | undefined;
2143
+ revisor: Link | undefined;
2144
+ state: TranslationJobState | undefined;
2145
+ targetLanguages: ReadonlyArray<TargetLanguage> | undefined;
2146
+ type: ReadonlyArray<TranslationJobType> | undefined;
2147
+ workflowStatus: ReadonlyArray<TranslationWorkflowStatus> | undefined;
2148
+ contextRepository: Link | undefined;
2149
+ }
2150
+
1998
2151
  export declare const isRloNode: (node: ItemBlueprintNode) => node is BlueprintReadonlyGraphNode<ReadonlyItemBlueprintRloNodeData>;
1999
2152
 
2000
2153
  export declare class ItemBlueprintHierarchy {
@@ -2094,6 +2247,7 @@ export declare const itemLinkType: {
2094
2247
  activityInstance: "activityInstance";
2095
2248
  businessProcessTypes: "businessProcessTypes";
2096
2249
  taxonomies: "taxonomies";
2250
+ translationJob: "translationJob";
2097
2251
  externalFolder: "externalFolder";
2098
2252
  externalKeyword: "externalKeyword";
2099
2253
  externalKeywordCategory: "externalKeywordCategory";
@@ -2103,7 +2257,7 @@ export declare const itemLinkType: {
2103
2257
  userGroup: "userGroup";
2104
2258
  };
2105
2259
 
2106
- export declare const itemLinkTypes: readonly ["activityInstance", "businessProcessType", "businessProcessTypes", "component", "componentTemplate", "externalFolder", "externalKeyword", "externalKeywordCategory", "externalMountpoint", "externalMultimediaComponent", "folder", "keyword", "keywordCategory", "multimediaType", "page", "pageTemplate", "processDefinition", "processHistory", "processInstance", "publication", "schema", "structureGroup", "targetGroup", "taxonomies", "templateBuildingBlock", "user", "userGroup", "virtualFolder"];
2260
+ export declare const itemLinkTypes: readonly ["activityInstance", "businessProcessType", "businessProcessTypes", "component", "componentTemplate", "externalFolder", "externalKeyword", "externalKeywordCategory", "externalMountpoint", "externalMultimediaComponent", "folder", "keyword", "keywordCategory", "multimediaType", "page", "pageTemplate", "processDefinition", "processHistory", "processInstance", "publication", "schema", "structureGroup", "targetGroup", "taxonomies", "templateBuildingBlock", "user", "userGroup", "virtualFolder", "translationJob"];
2107
2261
 
2108
2262
  /**
2109
2263
  * Abstract base class for Item Field Definitions for the field types that can be published.
@@ -2146,6 +2300,7 @@ export declare const itemType: {
2146
2300
  activityInstance: "activityInstance";
2147
2301
  businessProcessTypes: "businessProcessTypes";
2148
2302
  taxonomies: "taxonomies";
2303
+ translationJob: "translationJob";
2149
2304
  bundle: "bundle";
2150
2305
  externalFolder: "externalFolder";
2151
2306
  externalKeyword: "externalKeyword";
@@ -2161,9 +2316,9 @@ export declare const itemType: {
2161
2316
  searchFolder: "searchFolder";
2162
2317
  };
2163
2318
 
2164
- export declare const itemTypes: readonly ["activityInstance", "businessProcessType", "businessProcessTypes", "component", "componentTemplate", "externalFolder", "externalKeyword", "externalKeywordCategory", "externalMountpoint", "externalMultimediaComponent", "folder", "keyword", "keywordCategory", "multimediaType", "page", "pageTemplate", "processDefinition", "processHistory", "processInstance", "publication", "schema", "structureGroup", "targetGroup", "taxonomies", "templateBuildingBlock", "user", "userGroup", "virtualFolder", "abstractExternalKeyword", "abstractKeyword", "bundle", "multimediaComponent", "multimediaSchema", "searchFolder"];
2319
+ export declare const itemTypes: readonly ["activityInstance", "businessProcessType", "businessProcessTypes", "component", "componentTemplate", "externalFolder", "externalKeyword", "externalKeywordCategory", "externalMountpoint", "externalMultimediaComponent", "folder", "keyword", "keywordCategory", "multimediaType", "page", "pageTemplate", "processDefinition", "processHistory", "processInstance", "publication", "schema", "structureGroup", "targetGroup", "taxonomies", "templateBuildingBlock", "user", "userGroup", "virtualFolder", "translationJob", "abstractExternalKeyword", "abstractKeyword", "bundle", "multimediaComponent", "multimediaSchema", "searchFolder"];
2165
2320
 
2166
- export declare type ItemUri = TcmUri | EclUri | VirtualUri;
2321
+ export declare type ItemUri = TcmUri | EclUri | VirtualUri | TmUri;
2167
2322
 
2168
2323
  /**
2169
2324
  * Represents the data of a Keyword used to classify items.
@@ -3508,6 +3663,36 @@ export declare abstract class Region {
3508
3663
  getInternalModel: () => Region_2;
3509
3664
  }
3510
3665
 
3666
+ export declare class RenderedItem {
3667
+ protected _backendModel: RenderedItem_2;
3668
+ private _item;
3669
+ private _template;
3670
+ constructor({ backendModel, item, template }: RenderedItemConstructorArgs);
3671
+ /**
3672
+ * Gets the data pipeline JSON (if any)
3673
+ */
3674
+ get dataPipelineJson(): string | undefined;
3675
+ /**
3676
+ * Gets a link to the item that was rendered.
3677
+ */
3678
+ get item(): Link | undefined;
3679
+ /**
3680
+ * Gets the rendered output of the template (if any)
3681
+ */
3682
+ get renderedOutput(): string | undefined;
3683
+ /**
3684
+ * Gets a link to the template with which the item was rendered (if any).
3685
+ */
3686
+ get template(): Link | undefined;
3687
+ getInternalModel: () => RenderedItem_2;
3688
+ }
3689
+
3690
+ export declare interface RenderedItemConstructorArgs {
3691
+ backendModel: RenderedItem_2;
3692
+ item: Link | undefined;
3693
+ template: Link | undefined;
3694
+ }
3695
+
3511
3696
  /**
3512
3697
  * Represents a Repository: a context for BluePrinting.
3513
3698
  */
@@ -3913,6 +4098,19 @@ export declare interface SecurityDescriptorConstructorArgs {
3913
4098
  rights: ReadonlyArray<Right> | undefined;
3914
4099
  }
3915
4100
 
4101
+ export declare class Settings<TData extends Record<string, any>> {
4102
+ protected _backendModel: Settings_2;
4103
+ private _data;
4104
+ constructor({ backendModel, data }: SettingsConstructorArgs<TData>);
4105
+ get data(): TData | undefined;
4106
+ getInternalModel: () => Settings_2;
4107
+ }
4108
+
4109
+ export declare interface SettingsConstructorArgs<TData> {
4110
+ backendModel: Settings_2;
4111
+ data: TData | undefined;
4112
+ }
4113
+
3916
4114
  /**
3917
4115
  * Represents a single-line text field definition (in a Schema).
3918
4116
  */
@@ -4310,7 +4508,7 @@ export declare interface TaxonomiesConstructorArgs extends OrganizationalItemCon
4310
4508
  *
4311
4509
  * The structure of a TCM URI is PublicationID-ItemID[-ItemType][-vVersion].
4312
4510
  */
4313
- export declare class TcmUri {
4511
+ export declare class TcmUri implements Uri {
4314
4512
  private readonly _publicationId;
4315
4513
  private readonly _itemId;
4316
4514
  private readonly _itemType;
@@ -4524,6 +4722,42 @@ export declare class TmsWorkflowStep {
4524
4722
  getInternalModel: () => TmsWorkflowStep_2;
4525
4723
  }
4526
4724
 
4725
+ export declare class TmUri implements Uri {
4726
+ /**
4727
+ * TM-specified item id.
4728
+ */
4729
+ private readonly _itemId;
4730
+ private readonly _asString;
4731
+ private static _tmUriCache;
4732
+ private static _tmUriPrefix;
4733
+ private static _tmUriRegExp;
4734
+ private constructor();
4735
+ static get uriPrefix(): string;
4736
+ static create: (itemId: number) => TmUri;
4737
+ static parse: (input: string) => TmUri | undefined;
4738
+ get itemType(): 'translationJob';
4739
+ get itemId(): number;
4740
+ get asString(): string;
4741
+ /**
4742
+ * Don't use it, will be removed later. Added to align api with other uris.
4743
+ *
4744
+ * @deprecated
4745
+ */
4746
+ get isDynamic(): boolean;
4747
+ /**
4748
+ * Don't use it, will be removed later. Added to align api with other uris.
4749
+ *
4750
+ * @deprecated
4751
+ */
4752
+ getPublicationUri: () => TcmUri;
4753
+ /**
4754
+ * Don't use it, will be removed later. Added to align api with other uris.
4755
+ *
4756
+ * @deprecated
4757
+ */
4758
+ getUriInPublication: (publicationUri: TcmUri) => TmUri;
4759
+ }
4760
+
4527
4761
  /**
4528
4762
  * Contains information about the translation state of the Item.
4529
4763
  */
@@ -4750,7 +4984,8 @@ export declare class TranslationJob {
4750
4984
  private _creationDate;
4751
4985
  private _requiredDate;
4752
4986
  private _revisionDate;
4753
- constructor({ addedItems, backendModel, configurationItemUri, creationDate, creator, displayState, errors, errorSeverityLevel, language, priority, requiredDate, revisionDate, revisor, state, targetLanguages, type, workflowStatus, }: TranslationJobConstructorArgs);
4987
+ private _contextRepository;
4988
+ constructor({ addedItems, backendModel, configurationItemUri, creationDate, creator, displayState, errors, errorSeverityLevel, language, priority, requiredDate, revisionDate, revisor, state, targetLanguages, type, workflowStatus, contextRepository, }: TranslationJobConstructorArgs);
4754
4989
  get id(): number | undefined;
4755
4990
  get title(): string | undefined;
4756
4991
  /**
@@ -4764,9 +4999,9 @@ export declare class TranslationJob {
4764
4999
  */
4765
5000
  get configurationItemUri(): ItemUri | undefined;
4766
5001
  /**
4767
- * Title of the Publication containing the <seealso cref="P:Tridion.TranslationManager.OpenApi.V2.Dto.TranslationJob.ConfigurationItemUri" />.
5002
+ * Link to the Context Repository.
4768
5003
  */
4769
- get contextPublicationTitle(): string | undefined;
5004
+ get contextRepository(): Link | undefined;
4770
5005
  /**
4771
5006
  * The date the Translation Job was created (in UTC).
4772
5007
  */
@@ -4856,6 +5091,7 @@ export declare interface TranslationJobConstructorArgs {
4856
5091
  targetLanguages: ReadonlyArray<TargetLanguage> | undefined;
4857
5092
  type: ReadonlyArray<TranslationJobType> | undefined;
4858
5093
  workflowStatus: ReadonlyArray<TranslationWorkflowStatus> | undefined;
5094
+ contextRepository: Link | undefined;
4859
5095
  }
4860
5096
 
4861
5097
  /**
@@ -5094,6 +5330,24 @@ export declare type TranslationJobState = 'canceled' | 'definition' | 'readyForT
5094
5330
  */
5095
5331
  export declare type TranslationJobType = 'none' | 'pushJob' | 'pullJob' | 'unknownByClient';
5096
5332
 
5333
+ export declare class TranslationResolvedItem {
5334
+ protected _backendModel: TmResolvedItem;
5335
+ private _sourceItem;
5336
+ private _targetLanguages;
5337
+ constructor({ backendModel, sourceItem, targetLanguages }: TranslationResolvedItemConstructorArgs);
5338
+ get isValidForTranslation(): boolean;
5339
+ get comment(): string | undefined;
5340
+ get sourceItem(): RepositoryLocalObject | undefined;
5341
+ get targetLanguages(): ReadonlyArray<TargetLanguage> | undefined;
5342
+ getInternalModel: () => TmResolvedItem;
5343
+ }
5344
+
5345
+ export declare interface TranslationResolvedItemConstructorArgs {
5346
+ backendModel: TmResolvedItem;
5347
+ sourceItem: RepositoryLocalObject | undefined;
5348
+ targetLanguages: ReadonlyArray<TargetLanguage> | undefined;
5349
+ }
5350
+
5097
5351
  /**
5098
5352
  * Represents translation status of an Item.
5099
5353
  *
@@ -5297,6 +5551,16 @@ export declare interface UnpublishInstructionConstructorArgs {
5297
5551
  resolveInstruction: ResolveInstruction | undefined;
5298
5552
  }
5299
5553
 
5554
+ declare abstract class Uri {
5555
+ abstract itemId: number | string;
5556
+ abstract asString: string;
5557
+ abstract itemType: EclUriItemType | TcmUriItemType | VirtualUriItemType | 'translationJob';
5558
+ abstract isDynamic: boolean;
5559
+ abstract getPublicationUri(): TcmUri;
5560
+ abstract getUriInPublication(publicationUri: TcmUri): ItemUri;
5561
+ static parse(backendId: string): ItemUri | undefined;
5562
+ }
5563
+
5300
5564
  export declare class User extends Trustee {
5301
5565
  protected _backendModel: User_2;
5302
5566
  constructor({ backendModel, ...trusteeArgs }: UserConstructorArgs);
@@ -5667,7 +5931,7 @@ export declare interface VirtualFolderConstructorArgs extends OrganizationalItem
5667
5931
  workflowInfo: WorkflowInfo | undefined;
5668
5932
  }
5669
5933
 
5670
- export declare class VirtualUri {
5934
+ export declare class VirtualUri implements Uri {
5671
5935
  private readonly _publicationUri;
5672
5936
  private readonly _itemType;
5673
5937
  private readonly _asString;
@@ -5675,6 +5939,7 @@ export declare class VirtualUri {
5675
5939
  private constructor();
5676
5940
  static create: (publicationUri: TcmUri, itemType: VirtualUriItemType) => VirtualUri;
5677
5941
  static parse: (input: string) => VirtualUri | undefined;
5942
+ get itemId(): string;
5678
5943
  get itemType(): VirtualUriItemType;
5679
5944
  get isDynamic(): boolean;
5680
5945
  get asString(): string;