amf-client-js 5.8.0-SNAPSHOT.14 → 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.
- package/amf.js +11291 -11283
- package/package.json +1 -1
- package/typings/amf-client-js.d.ts +6 -0
package/package.json
CHANGED
|
@@ -1615,12 +1615,15 @@ declare module "amf-client-js" {
|
|
|
1615
1615
|
export class ApiKeySettings extends Settings {
|
|
1616
1616
|
in: StrField;
|
|
1617
1617
|
name: StrField;
|
|
1618
|
+
scopes: Array<Scope>;
|
|
1618
1619
|
|
|
1619
1620
|
constructor();
|
|
1620
1621
|
|
|
1621
1622
|
withIn(inVal: string): this;
|
|
1622
1623
|
|
|
1623
1624
|
withName(name: string): this;
|
|
1625
|
+
|
|
1626
|
+
withScopes(scopes: Array<Scope>): this;
|
|
1624
1627
|
}
|
|
1625
1628
|
export class ArrayNode implements DataNode {
|
|
1626
1629
|
customDomainProperties: Array<DomainExtension>;
|
|
@@ -4259,12 +4262,15 @@ declare module "amf-client-js" {
|
|
|
4259
4262
|
export class HttpSettings extends Settings {
|
|
4260
4263
|
bearerFormat: StrField;
|
|
4261
4264
|
scheme: StrField;
|
|
4265
|
+
scopes: Array<Scope>;
|
|
4262
4266
|
|
|
4263
4267
|
constructor();
|
|
4264
4268
|
|
|
4265
4269
|
withBearerFormat(bearerFormat: string): this;
|
|
4266
4270
|
|
|
4267
4271
|
withScheme(scheme: string): this;
|
|
4272
|
+
|
|
4273
|
+
withScopes(scopes: Array<Scope>): this;
|
|
4268
4274
|
}
|
|
4269
4275
|
export class IBMMQChannelBinding implements ChannelBinding {
|
|
4270
4276
|
destinationType: StrField;
|