@luminocity/lemonate-gateway 8.0.5 → 8.0.6

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/dist/index.d.ts CHANGED
@@ -988,6 +988,7 @@ declare class PreparedItem extends AggregatedItem {
988
988
  public: boolean;
989
989
  readOnly: boolean;
990
990
  isPackaged: boolean;
991
+ isGenerated: boolean;
991
992
  packageItem?: PreparedItem;
992
993
  readonly isPreparedItem: boolean;
993
994
  resultingAcl?: Acl;
@@ -4132,6 +4133,7 @@ declare class ItemRepo {
4132
4133
  loadItemByRelativePath(itemId: string, path: string, options?: any): Promise<PreparedItem | undefined>;
4133
4134
  _loadItemFromApi(id: string, options?: any): Promise<any[]>;
4134
4135
  _relinkItems(items: PreparedItem[], referenceMap: Map<string, PreparedItem>): void;
4136
+ createItem(typeName: string, attributes: any): Promise<PreparedItem>;
4135
4137
  /**
4136
4138
  *
4137
4139
  * @param id
@@ -4291,6 +4293,7 @@ declare class Proxifier {
4291
4293
 
4292
4294
  declare const _default: {
4293
4295
  createGUID: () => string;
4296
+ createGeneratedItemId: () => string;
4294
4297
  toUserFriendlyName: (variableName: string) => string;
4295
4298
  assert: (value: any, msg: string) => void;
4296
4299
  matchItemIdAndObject(value1: any, value2: any): boolean;