amf-client-js 5.7.0-java21-0 → 5.7.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "amf-client-js",
3
- "version": "5.7.0-java21-0",
3
+ "version": "5.7.0",
4
4
  "description": "AMF Library",
5
5
  "main": "amf.js",
6
6
  "author": "amf team",
@@ -16,7 +16,7 @@
16
16
  "types": "./typings/amf-client-js.d.ts",
17
17
  "typings": "./typings/amf-client-js.d.ts",
18
18
  "dependencies": {
19
- "@aml-org/amf-antlr-parsers": "0.8.0-java21-1",
19
+ "@aml-org/amf-antlr-parsers": "0.8.28",
20
20
  "ajv": "6.12.6",
21
21
  "avro-js": "1.11.3"
22
22
  }
@@ -3335,6 +3335,7 @@ declare module "amf-client-js" {
3335
3335
  }
3336
3336
  export class Example implements DomainElement, Linkable {
3337
3337
  customDomainProperties: Array<DomainExtension>;
3338
+ summary: StrField;
3338
3339
  description: StrField;
3339
3340
  displayName: StrField;
3340
3341
  extendsNode: Array<DomainElement>;
@@ -3365,6 +3366,8 @@ declare module "amf-client-js" {
3365
3366
 
3366
3367
  withCustomDomainProperties(extensions: Array<DomainExtension>): this;
3367
3368
 
3369
+ withSummary(summary: string): this;
3370
+
3368
3371
  withDescription(description: string): this;
3369
3372
 
3370
3373
  withDisplayName(displayName: string): this;
@@ -5254,6 +5257,8 @@ declare module "amf-client-js" {
5254
5257
  export interface Linkable {
5255
5258
  isLink: boolean;
5256
5259
  linkLabel: StrField;
5260
+ refSummary: StrField;
5261
+ refDescription: StrField;
5257
5262
  linkTarget: undefined | DomainElement;
5258
5263
 
5259
5264
  link<T>(): T;