amf-client-js 5.8.0 → 5.8.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.
- package/amf.js +8801 -8801
- package/package.json +1 -1
- package/typings/amf-client-js.d.ts +16 -16
package/package.json
CHANGED
|
@@ -6812,7 +6812,7 @@ declare module "amf-client-js" {
|
|
|
6812
6812
|
static readonly RAML08: ProfileName;
|
|
6813
6813
|
static readonly RAML10: ProfileName;
|
|
6814
6814
|
static readonly MCP: ProfileName;
|
|
6815
|
-
static readonly
|
|
6815
|
+
static readonly BROKER_GROUP: ProfileName;
|
|
6816
6816
|
static readonly AGENT_CARD: ProfileName;
|
|
6817
6817
|
}
|
|
6818
6818
|
export class PropertyDependencies implements DomainElement {
|
|
@@ -8901,7 +8901,7 @@ declare module "amf-client-js" {
|
|
|
8901
8901
|
static readonly RAML08: Spec;
|
|
8902
8902
|
static readonly RAML10: Spec;
|
|
8903
8903
|
static readonly MCP: Spec;
|
|
8904
|
-
static readonly
|
|
8904
|
+
static readonly BROKER_GROUP: Spec;
|
|
8905
8905
|
static readonly AGENT_CARD: Spec;
|
|
8906
8906
|
|
|
8907
8907
|
static apply(name: string): Spec;
|
|
@@ -9633,36 +9633,36 @@ declare module "amf-client-js" {
|
|
|
9633
9633
|
syncValidate(baseUnit: BaseUnit): AMFValidationReport;
|
|
9634
9634
|
}
|
|
9635
9635
|
|
|
9636
|
-
export class
|
|
9637
|
-
static
|
|
9636
|
+
export class BrokerGroupConfiguration extends BaseBrokerGroupConfiguration {
|
|
9637
|
+
static BrokerGroup(): BrokerGroupConfiguration;
|
|
9638
9638
|
|
|
9639
|
-
baseUnitClient():
|
|
9639
|
+
baseUnitClient(): BrokerGroupBaseUnitClient;
|
|
9640
9640
|
}
|
|
9641
9641
|
|
|
9642
|
-
export class
|
|
9643
|
-
withDialect(dialect: Dialect):
|
|
9642
|
+
export class BaseBrokerGroupConfiguration extends BaseShapesConfiguration {
|
|
9643
|
+
withDialect(dialect: Dialect): BaseBrokerGroupConfiguration;
|
|
9644
9644
|
|
|
9645
9645
|
withErrorHandlerProvider(
|
|
9646
9646
|
provider: ErrorHandlerProvider
|
|
9647
|
-
):
|
|
9647
|
+
): BaseBrokerGroupConfiguration;
|
|
9648
9648
|
|
|
9649
|
-
withEventListener(listener: AMFEventListener):
|
|
9649
|
+
withEventListener(listener: AMFEventListener): BaseBrokerGroupConfiguration;
|
|
9650
9650
|
|
|
9651
|
-
withParsingOptions(parsingOptions: ParsingOptions):
|
|
9651
|
+
withParsingOptions(parsingOptions: ParsingOptions): BaseBrokerGroupConfiguration;
|
|
9652
9652
|
|
|
9653
|
-
withRenderOptions(renderOptions: RenderOptions):
|
|
9653
|
+
withRenderOptions(renderOptions: RenderOptions): BaseBrokerGroupConfiguration;
|
|
9654
9654
|
|
|
9655
|
-
withResourceLoader(rl: ResourceLoader):
|
|
9655
|
+
withResourceLoader(rl: ResourceLoader): BaseBrokerGroupConfiguration;
|
|
9656
9656
|
|
|
9657
|
-
withResourceLoaders(rl: Array<ResourceLoader>):
|
|
9657
|
+
withResourceLoaders(rl: Array<ResourceLoader>): BaseBrokerGroupConfiguration;
|
|
9658
9658
|
|
|
9659
9659
|
withTransformationPipeline(
|
|
9660
9660
|
pipeline: TransformationPipeline
|
|
9661
|
-
):
|
|
9661
|
+
): BaseBrokerGroupConfiguration;
|
|
9662
9662
|
|
|
9663
|
-
withUnitCache(cache: UnitCache):
|
|
9663
|
+
withUnitCache(cache: UnitCache): BaseBrokerGroupConfiguration;
|
|
9664
9664
|
}
|
|
9665
|
-
export class
|
|
9665
|
+
export class BrokerGroupBaseUnitClient extends AMLBaseUnitClient {
|
|
9666
9666
|
syncValidate(baseUnit: BaseUnit): AMFValidationReport;
|
|
9667
9667
|
}
|
|
9668
9668
|
|