amf-client-js 5.7.1-RC.1 → 5.8.0-OAS2-FIX-2

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 +11346 -11333
  2. package/package.json +1 -1
  3. package/typings/amf-client-js.d.ts +11 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "amf-client-js",
3
- "version": "5.7.1-RC.1",
3
+ "version": "5.8.0-OAS2-FIX-2",
4
4
  "description": "AMF Library",
5
5
  "main": "amf.js",
6
6
  "author": "amf team",
@@ -6253,6 +6253,13 @@ declare module "amf-client-js" {
6253
6253
 
6254
6254
  withUrl(url: string): this;
6255
6255
  }
6256
+ export class MutualTLSSettings extends Settings {
6257
+ scopes: Array<Scope>;
6258
+
6259
+ constructor();
6260
+
6261
+ withScopes(scopes: Array<Scope>): this;
6262
+ }
6256
6263
  export class Operation extends AbstractOperation implements Linkable {
6257
6264
  accepts: Array<StrField>;
6258
6265
  bindings: OperationBindings;
@@ -6569,6 +6576,8 @@ declare module "amf-client-js" {
6569
6576
  withScheme(scheme: SecurityScheme): this;
6570
6577
 
6571
6578
  withSettings(settings: Settings): this;
6579
+
6580
+ withMutualTLSSettings(): MutualTLSSettings;
6572
6581
  }
6573
6582
  export class ParametrizedTrait implements ParametrizedDeclaration {
6574
6583
  customDomainProperties: Array<DomainExtension>;
@@ -7797,6 +7806,8 @@ declare module "amf-client-js" {
7797
7806
  withSettings(settings: Settings): this;
7798
7807
 
7799
7808
  withType(type: string): this;
7809
+
7810
+ withMutualTLSSettings(): MutualTLSSettings;
7800
7811
  }
7801
7812
  export class SecuritySchemeFragment extends Fragment {
7802
7813
  constructor();