amf-client-js 5.9.0-SNAPSHOT.14 → 5.9.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 +11761 -11699
- package/package.json +1 -1
- package/typings/amf-client-js.d.ts +66 -0
package/package.json
CHANGED
|
@@ -9723,6 +9723,72 @@ declare module "amf-client-js" {
|
|
|
9723
9723
|
syncValidate(baseUnit: BaseUnit): AMFValidationReport;
|
|
9724
9724
|
}
|
|
9725
9725
|
|
|
9726
|
+
export class AgentMetadataConfiguration extends BaseAgentMetadataConfiguration {
|
|
9727
|
+
static AgentMetadata(): AgentMetadataConfiguration;
|
|
9728
|
+
|
|
9729
|
+
baseUnitClient(): AgentMetadataBaseUnitClient;
|
|
9730
|
+
}
|
|
9731
|
+
|
|
9732
|
+
export class BaseAgentMetadataConfiguration extends BaseShapesConfiguration {
|
|
9733
|
+
withDialect(dialect: Dialect): BaseAgentMetadataConfiguration;
|
|
9734
|
+
|
|
9735
|
+
withErrorHandlerProvider(
|
|
9736
|
+
provider: ErrorHandlerProvider
|
|
9737
|
+
): BaseAgentMetadataConfiguration;
|
|
9738
|
+
|
|
9739
|
+
withEventListener(listener: AMFEventListener): BaseAgentMetadataConfiguration;
|
|
9740
|
+
|
|
9741
|
+
withParsingOptions(parsingOptions: ParsingOptions): BaseAgentMetadataConfiguration;
|
|
9742
|
+
|
|
9743
|
+
withRenderOptions(renderOptions: RenderOptions): BaseAgentMetadataConfiguration;
|
|
9744
|
+
|
|
9745
|
+
withResourceLoader(rl: ResourceLoader): BaseAgentMetadataConfiguration;
|
|
9746
|
+
|
|
9747
|
+
withResourceLoaders(rl: Array<ResourceLoader>): BaseAgentMetadataConfiguration;
|
|
9748
|
+
|
|
9749
|
+
withTransformationPipeline(
|
|
9750
|
+
pipeline: TransformationPipeline
|
|
9751
|
+
): BaseAgentMetadataConfiguration;
|
|
9752
|
+
|
|
9753
|
+
withUnitCache(cache: UnitCache): BaseAgentMetadataConfiguration;
|
|
9754
|
+
}
|
|
9755
|
+
export class AgentMetadataBaseUnitClient extends AMLBaseUnitClient {
|
|
9756
|
+
syncValidate(baseUnit: BaseUnit): AMFValidationReport;
|
|
9757
|
+
}
|
|
9758
|
+
|
|
9759
|
+
export class LLMMetadataConfiguration extends BaseLLMMetadataConfiguration {
|
|
9760
|
+
static LLMMetadata(): LLMMetadataConfiguration;
|
|
9761
|
+
|
|
9762
|
+
baseUnitClient(): LLMMetadataBaseUnitClient;
|
|
9763
|
+
}
|
|
9764
|
+
|
|
9765
|
+
export class BaseLLMMetadataConfiguration extends BaseShapesConfiguration {
|
|
9766
|
+
withDialect(dialect: Dialect): BaseLLMMetadataConfiguration;
|
|
9767
|
+
|
|
9768
|
+
withErrorHandlerProvider(
|
|
9769
|
+
provider: ErrorHandlerProvider
|
|
9770
|
+
): BaseLLMMetadataConfiguration;
|
|
9771
|
+
|
|
9772
|
+
withEventListener(listener: AMFEventListener): BaseLLMMetadataConfiguration;
|
|
9773
|
+
|
|
9774
|
+
withParsingOptions(parsingOptions: ParsingOptions): BaseLLMMetadataConfiguration;
|
|
9775
|
+
|
|
9776
|
+
withRenderOptions(renderOptions: RenderOptions): BaseLLMMetadataConfiguration;
|
|
9777
|
+
|
|
9778
|
+
withResourceLoader(rl: ResourceLoader): BaseLLMMetadataConfiguration;
|
|
9779
|
+
|
|
9780
|
+
withResourceLoaders(rl: Array<ResourceLoader>): BaseLLMMetadataConfiguration;
|
|
9781
|
+
|
|
9782
|
+
withTransformationPipeline(
|
|
9783
|
+
pipeline: TransformationPipeline
|
|
9784
|
+
): BaseLLMMetadataConfiguration;
|
|
9785
|
+
|
|
9786
|
+
withUnitCache(cache: UnitCache): BaseLLMMetadataConfiguration;
|
|
9787
|
+
}
|
|
9788
|
+
export class LLMMetadataBaseUnitClient extends AMLBaseUnitClient {
|
|
9789
|
+
syncValidate(baseUnit: BaseUnit): AMFValidationReport;
|
|
9790
|
+
}
|
|
9791
|
+
|
|
9726
9792
|
export class BrokerGroupConfiguration extends BaseBrokerGroupConfiguration {
|
|
9727
9793
|
static BrokerGroup(): BrokerGroupConfiguration;
|
|
9728
9794
|
|