amf-client-js 5.8.0-SNAPSHOT.13 → 5.8.0-SNAPSHOT.14
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 +9556 -9555
- package/package.json +1 -1
- package/typings/amf-client-js.d.ts +9 -0
package/package.json
CHANGED
|
@@ -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,6 +1609,8 @@ 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;
|
|
@@ -1694,6 +1697,7 @@ declare module "amf-client-js" {
|
|
|
1694
1697
|
tags: Array<Tag>;
|
|
1695
1698
|
termsOfService: StrField;
|
|
1696
1699
|
version: StrField;
|
|
1700
|
+
defaultSchema: StrField;
|
|
1697
1701
|
|
|
1698
1702
|
constructor();
|
|
1699
1703
|
|
|
@@ -1750,6 +1754,8 @@ declare module "amf-client-js" {
|
|
|
1750
1754
|
withTermsOfService(terms: string): this;
|
|
1751
1755
|
|
|
1752
1756
|
withVersion(version: string): this;
|
|
1757
|
+
|
|
1758
|
+
withDefaultSchema(schema: string): this;
|
|
1753
1759
|
}
|
|
1754
1760
|
export class AvroConfiguration {
|
|
1755
1761
|
static Avro(): AMFConfiguration;
|
|
@@ -9286,6 +9292,7 @@ declare module "amf-client-js" {
|
|
|
9286
9292
|
tags: Array<Tag>;
|
|
9287
9293
|
termsOfService: StrField;
|
|
9288
9294
|
version: StrField;
|
|
9295
|
+
defaultSchema: StrField;
|
|
9289
9296
|
|
|
9290
9297
|
constructor();
|
|
9291
9298
|
|
|
@@ -9342,6 +9349,8 @@ declare module "amf-client-js" {
|
|
|
9342
9349
|
withTermsOfService(terms: string): this;
|
|
9343
9350
|
|
|
9344
9351
|
withVersion(version: string): this;
|
|
9352
|
+
|
|
9353
|
+
withDefaultSchema(schema: string): this;
|
|
9345
9354
|
}
|
|
9346
9355
|
export class WebSocketsChannelBinding implements ChannelBinding {
|
|
9347
9356
|
customDomainProperties: Array<DomainExtension>;
|