amf-client-js 5.8.0-SNAPSHOT.43 → 5.8.0-SNAPSHOT.45
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/package.json +1 -1
- package/typings/amf-client-js.d.ts +33 -0
package/package.json
CHANGED
|
@@ -9556,6 +9556,39 @@ declare module "amf-client-js" {
|
|
|
9556
9556
|
static isTypeOf(element: AmfObjectWrapper, typeIri: Array<String>): boolean;
|
|
9557
9557
|
}
|
|
9558
9558
|
|
|
9559
|
+
export class MCPConfiguration extends BaseMCPConfiguration {
|
|
9560
|
+
static MCP(): MCPConfiguration;
|
|
9561
|
+
|
|
9562
|
+
baseUnitClient(): MCPBaseUnitClient;
|
|
9563
|
+
}
|
|
9564
|
+
|
|
9565
|
+
export class BaseMCPConfiguration extends BaseShapesConfiguration {
|
|
9566
|
+
withDialect(dialect: Dialect): BaseMCPConfiguration;
|
|
9567
|
+
|
|
9568
|
+
withErrorHandlerProvider(
|
|
9569
|
+
provider: ErrorHandlerProvider
|
|
9570
|
+
): BaseMCPConfiguration;
|
|
9571
|
+
|
|
9572
|
+
withEventListener(listener: AMFEventListener): BaseMCPConfiguration;
|
|
9573
|
+
|
|
9574
|
+
withParsingOptions(parsingOptions: ParsingOptions): BaseMCPConfiguration;
|
|
9575
|
+
|
|
9576
|
+
withRenderOptions(renderOptions: RenderOptions): BaseMCPConfiguration;
|
|
9577
|
+
|
|
9578
|
+
withResourceLoader(rl: ResourceLoader): BaseMCPConfiguration;
|
|
9579
|
+
|
|
9580
|
+
withResourceLoaders(rl: Array<ResourceLoader>): BaseMCPConfiguration;
|
|
9581
|
+
|
|
9582
|
+
withTransformationPipeline(
|
|
9583
|
+
pipeline: TransformationPipeline
|
|
9584
|
+
): BaseMCPConfiguration;
|
|
9585
|
+
|
|
9586
|
+
withUnitCache(cache: UnitCache): BaseMCPConfiguration;
|
|
9587
|
+
}
|
|
9588
|
+
export class MCPBaseUnitClient extends AMLBaseUnitClient {
|
|
9589
|
+
syncValidate(baseUnit: BaseUnit): AMFValidationReport;
|
|
9590
|
+
}
|
|
9591
|
+
|
|
9559
9592
|
namespace org {
|
|
9560
9593
|
namespace mulesoft {
|
|
9561
9594
|
namespace common {
|