amf-client-js 5.8.0-SNAPSHOT.57 → 5.8.0-SNAPSHOT.58
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
|
@@ -9594,6 +9594,39 @@ declare module "amf-client-js" {
|
|
|
9594
9594
|
syncValidate(baseUnit: BaseUnit): AMFValidationReport;
|
|
9595
9595
|
}
|
|
9596
9596
|
|
|
9597
|
+
export class AgentFabricConfiguration extends BaseAgentFabricConfiguration {
|
|
9598
|
+
static AgentFabric(): AgentFabricConfiguration;
|
|
9599
|
+
|
|
9600
|
+
baseUnitClient(): AgentFabricBaseUnitClient;
|
|
9601
|
+
}
|
|
9602
|
+
|
|
9603
|
+
export class BaseAgentFabricConfiguration extends BaseShapesConfiguration {
|
|
9604
|
+
withDialect(dialect: Dialect): BaseAgentFabricConfiguration;
|
|
9605
|
+
|
|
9606
|
+
withErrorHandlerProvider(
|
|
9607
|
+
provider: ErrorHandlerProvider
|
|
9608
|
+
): BaseAgentFabricConfiguration;
|
|
9609
|
+
|
|
9610
|
+
withEventListener(listener: AMFEventListener): BaseAgentFabricConfiguration;
|
|
9611
|
+
|
|
9612
|
+
withParsingOptions(parsingOptions: ParsingOptions): BaseAgentFabricConfiguration;
|
|
9613
|
+
|
|
9614
|
+
withRenderOptions(renderOptions: RenderOptions): BaseAgentFabricConfiguration;
|
|
9615
|
+
|
|
9616
|
+
withResourceLoader(rl: ResourceLoader): BaseAgentFabricConfiguration;
|
|
9617
|
+
|
|
9618
|
+
withResourceLoaders(rl: Array<ResourceLoader>): BaseAgentFabricConfiguration;
|
|
9619
|
+
|
|
9620
|
+
withTransformationPipeline(
|
|
9621
|
+
pipeline: TransformationPipeline
|
|
9622
|
+
): BaseAgentFabricConfiguration;
|
|
9623
|
+
|
|
9624
|
+
withUnitCache(cache: UnitCache): BaseAgentFabricConfiguration;
|
|
9625
|
+
}
|
|
9626
|
+
export class AgentFabricBaseUnitClient extends AMLBaseUnitClient {
|
|
9627
|
+
syncValidate(baseUnit: BaseUnit): AMFValidationReport;
|
|
9628
|
+
}
|
|
9629
|
+
|
|
9597
9630
|
namespace org {
|
|
9598
9631
|
namespace mulesoft {
|
|
9599
9632
|
namespace common {
|