@imbricate/core 3.15.2 → 3.15.4

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@imbricate/core",
3
3
  "main": "index.js",
4
- "version": "3.15.2",
4
+ "version": "3.15.4",
5
5
  "description": "Imbricate Core, Notebook for Engineers",
6
6
  "repository": {
7
7
  "type": "git",
@@ -8,6 +8,6 @@ import { IImbricateStatic } from "../interface";
8
8
  import { ImbricateStaticGetContentOutcome } from "../outcome";
9
9
  import { ImbricateStaticFullFeatureBase } from "./full-feature";
10
10
  export declare abstract class ImbricateStaticAuthorOnlyBase extends ImbricateStaticFullFeatureBase implements IImbricateStatic {
11
- readonly features: IMBRICATE_STATIC_FEATURE[];
11
+ readonly supportedFeatures: IMBRICATE_STATIC_FEATURE[];
12
12
  getContentInBase64(): PromiseLike<ImbricateStaticGetContentOutcome<string>>;
13
13
  }
@@ -12,7 +12,7 @@ const full_feature_1 = require("./full-feature");
12
12
  class ImbricateStaticAuthorOnlyBase extends full_feature_1.ImbricateStaticFullFeatureBase {
13
13
  constructor() {
14
14
  super(...arguments);
15
- this.features = [
15
+ this.supportedFeatures = [
16
16
  feature_1.IMBRICATE_STATIC_FEATURE.STATIC_GET_AUTHOR,
17
17
  ];
18
18
  }
@@ -7,6 +7,6 @@ import { ImbricateAuthor } from "../../author/definition";
7
7
  import { IMBRICATE_STATIC_FEATURE } from "../feature";
8
8
  import { ImbricateStaticFullFeatureBase } from "./full-feature";
9
9
  export declare abstract class ImbricateStaticContentOnlyBase extends ImbricateStaticFullFeatureBase {
10
- readonly features: IMBRICATE_STATIC_FEATURE[];
10
+ readonly supportedFeatures: IMBRICATE_STATIC_FEATURE[];
11
11
  get author(): ImbricateAuthor;
12
12
  }
@@ -12,7 +12,7 @@ const full_feature_1 = require("./full-feature");
12
12
  class ImbricateStaticContentOnlyBase extends full_feature_1.ImbricateStaticFullFeatureBase {
13
13
  constructor() {
14
14
  super(...arguments);
15
- this.features = [
15
+ this.supportedFeatures = [
16
16
  feature_1.IMBRICATE_STATIC_FEATURE.STATIC_GET_CONTENT,
17
17
  ];
18
18
  }
@@ -9,7 +9,7 @@ import { IImbricateStatic } from "../interface";
9
9
  import { ImbricateStaticGetContentOutcome } from "../outcome";
10
10
  export declare abstract class ImbricateStaticFullFeatureBase implements IImbricateStatic {
11
11
  abstract readonly uniqueIdentifier: string;
12
- readonly features: IMBRICATE_STATIC_FEATURE[];
12
+ readonly supportedFeatures: IMBRICATE_STATIC_FEATURE[];
13
13
  abstract readonly author: ImbricateAuthor;
14
14
  abstract getContentInBase64(): PromiseLike<ImbricateStaticGetContentOutcome<string>>;
15
15
  }
@@ -9,7 +9,7 @@ exports.ImbricateStaticFullFeatureBase = void 0;
9
9
  const feature_1 = require("../feature");
10
10
  class ImbricateStaticFullFeatureBase {
11
11
  constructor() {
12
- this.features = [
12
+ this.supportedFeatures = [
13
13
  feature_1.IMBRICATE_STATIC_FEATURE.STATIC_GET_AUTHOR,
14
14
  feature_1.IMBRICATE_STATIC_FEATURE.STATIC_GET_CONTENT,
15
15
  ];
@@ -14,7 +14,7 @@ export interface IImbricateStatic {
14
14
  /**
15
15
  * Features supported by the static object
16
16
  */
17
- readonly features: IMBRICATE_STATIC_FEATURE[];
17
+ readonly supportedFeatures: IMBRICATE_STATIC_FEATURE[];
18
18
  /**
19
19
  * Author of the text object
20
20
  */
@@ -8,6 +8,6 @@ import { IImbricateText } from "../interface";
8
8
  import { ImbricateTextGetContentOutcome } from "../outcome";
9
9
  import { ImbricateTextFullFeatureBase } from "./full-feature";
10
10
  export declare abstract class ImbricateTextAuthorOnlyBase extends ImbricateTextFullFeatureBase implements IImbricateText {
11
- readonly features: IMBRICATE_TEXT_FEATURE[];
11
+ readonly supportedFeatures: IMBRICATE_TEXT_FEATURE[];
12
12
  getContent(): PromiseLike<ImbricateTextGetContentOutcome>;
13
13
  }
@@ -12,7 +12,7 @@ const full_feature_1 = require("./full-feature");
12
12
  class ImbricateTextAuthorOnlyBase extends full_feature_1.ImbricateTextFullFeatureBase {
13
13
  constructor() {
14
14
  super(...arguments);
15
- this.features = [
15
+ this.supportedFeatures = [
16
16
  feature_1.IMBRICATE_TEXT_FEATURE.TEXT_GET_AUTHOR,
17
17
  ];
18
18
  }
@@ -7,6 +7,6 @@ import { ImbricateAuthor } from "../../author/definition";
7
7
  import { IMBRICATE_TEXT_FEATURE } from "../feature";
8
8
  import { ImbricateTextFullFeatureBase } from "./full-feature";
9
9
  export declare abstract class ImbricateTextContentOnlyBase extends ImbricateTextFullFeatureBase {
10
- readonly features: IMBRICATE_TEXT_FEATURE[];
10
+ readonly supportedFeatures: IMBRICATE_TEXT_FEATURE[];
11
11
  get author(): ImbricateAuthor;
12
12
  }
@@ -12,7 +12,7 @@ const full_feature_1 = require("./full-feature");
12
12
  class ImbricateTextContentOnlyBase extends full_feature_1.ImbricateTextFullFeatureBase {
13
13
  constructor() {
14
14
  super(...arguments);
15
- this.features = [
15
+ this.supportedFeatures = [
16
16
  feature_1.IMBRICATE_TEXT_FEATURE.TEXT_GET_CONTENT,
17
17
  ];
18
18
  }
@@ -9,7 +9,7 @@ import { IImbricateText } from "../interface";
9
9
  import { ImbricateTextGetContentOutcome } from "../outcome";
10
10
  export declare abstract class ImbricateTextFullFeatureBase implements IImbricateText {
11
11
  abstract readonly uniqueIdentifier: string;
12
- readonly features: IMBRICATE_TEXT_FEATURE[];
12
+ readonly supportedFeatures: IMBRICATE_TEXT_FEATURE[];
13
13
  abstract readonly author: ImbricateAuthor;
14
14
  abstract getContent(): PromiseLike<ImbricateTextGetContentOutcome>;
15
15
  }
@@ -9,7 +9,7 @@ exports.ImbricateTextFullFeatureBase = void 0;
9
9
  const feature_1 = require("../feature");
10
10
  class ImbricateTextFullFeatureBase {
11
11
  constructor() {
12
- this.features = [
12
+ this.supportedFeatures = [
13
13
  feature_1.IMBRICATE_TEXT_FEATURE.TEXT_GET_AUTHOR,
14
14
  feature_1.IMBRICATE_TEXT_FEATURE.TEXT_GET_CONTENT,
15
15
  ];
@@ -14,7 +14,7 @@ export interface IImbricateText {
14
14
  /**
15
15
  * Features supported by the text object
16
16
  */
17
- readonly features: IMBRICATE_TEXT_FEATURE[];
17
+ readonly supportedFeatures: IMBRICATE_TEXT_FEATURE[];
18
18
  /**
19
19
  * Author of the text object
20
20
  */