amf-client-js 5.8.0-SNAPSHOT.13 → 5.8.0-SNAPSHOT.15

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.
Files changed (3) hide show
  1. package/amf.js +11296 -11287
  2. package/package.json +1 -1
  3. package/typings/amf-client-js.d.ts +15 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "amf-client-js",
3
- "version": "5.8.0-SNAPSHOT.13",
3
+ "version": "5.8.0-SNAPSHOT.15",
4
4
  "description": "AMF Library",
5
5
  "main": "amf.js",
6
6
  "author": "amf team",
@@ -1586,6 +1586,7 @@ declare module "amf-client-js" {
1586
1586
  tags: Array<Tag>;
1587
1587
  termsOfService: StrField;
1588
1588
  version: StrField;
1589
+ defaultSchema: StrField;
1589
1590
 
1590
1591
  annotations(): Annotations;
1591
1592
 
@@ -1608,16 +1609,21 @@ declare module "amf-client-js" {
1608
1609
  withIsExternalLink(isExternalLink: boolean): DomainElement;
1609
1610
 
1610
1611
  withServer(url: string): Server;
1612
+
1613
+ withDefaultSchema(schema: string): this;
1611
1614
  }
1612
1615
  export class ApiKeySettings extends Settings {
1613
1616
  in: StrField;
1614
1617
  name: StrField;
1618
+ scopes: Array<Scope>;
1615
1619
 
1616
1620
  constructor();
1617
1621
 
1618
1622
  withIn(inVal: string): this;
1619
1623
 
1620
1624
  withName(name: string): this;
1625
+
1626
+ withScopes(scopes: Array<Scope>): this;
1621
1627
  }
1622
1628
  export class ArrayNode implements DataNode {
1623
1629
  customDomainProperties: Array<DomainExtension>;
@@ -1694,6 +1700,7 @@ declare module "amf-client-js" {
1694
1700
  tags: Array<Tag>;
1695
1701
  termsOfService: StrField;
1696
1702
  version: StrField;
1703
+ defaultSchema: StrField;
1697
1704
 
1698
1705
  constructor();
1699
1706
 
@@ -1750,6 +1757,8 @@ declare module "amf-client-js" {
1750
1757
  withTermsOfService(terms: string): this;
1751
1758
 
1752
1759
  withVersion(version: string): this;
1760
+
1761
+ withDefaultSchema(schema: string): this;
1753
1762
  }
1754
1763
  export class AvroConfiguration {
1755
1764
  static Avro(): AMFConfiguration;
@@ -4253,12 +4262,15 @@ declare module "amf-client-js" {
4253
4262
  export class HttpSettings extends Settings {
4254
4263
  bearerFormat: StrField;
4255
4264
  scheme: StrField;
4265
+ scopes: Array<Scope>;
4256
4266
 
4257
4267
  constructor();
4258
4268
 
4259
4269
  withBearerFormat(bearerFormat: string): this;
4260
4270
 
4261
4271
  withScheme(scheme: string): this;
4272
+
4273
+ withScopes(scopes: Array<Scope>): this;
4262
4274
  }
4263
4275
  export class IBMMQChannelBinding implements ChannelBinding {
4264
4276
  destinationType: StrField;
@@ -9286,6 +9298,7 @@ declare module "amf-client-js" {
9286
9298
  tags: Array<Tag>;
9287
9299
  termsOfService: StrField;
9288
9300
  version: StrField;
9301
+ defaultSchema: StrField;
9289
9302
 
9290
9303
  constructor();
9291
9304
 
@@ -9342,6 +9355,8 @@ declare module "amf-client-js" {
9342
9355
  withTermsOfService(terms: string): this;
9343
9356
 
9344
9357
  withVersion(version: string): this;
9358
+
9359
+ withDefaultSchema(schema: string): this;
9345
9360
  }
9346
9361
  export class WebSocketsChannelBinding implements ChannelBinding {
9347
9362
  customDomainProperties: Array<DomainExtension>;