amf-client-js 5.7.1-RC.0 → 5.8.0-OAS2-FIX
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/amf.js +11377 -11362
- package/package.json +1 -1
- package/typings/amf-client-js.d.ts +11 -0
package/package.json
CHANGED
|
@@ -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();
|