amf-client-js 5.9.0-SNAPSHOT.13 → 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.
Files changed (3) hide show
  1. package/amf.js +11763 -11663
  2. package/package.json +1 -1
  3. package/typings/amf-client-js.d.ts +99 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "amf-client-js",
3
- "version": "5.9.0-SNAPSHOT.13",
3
+ "version": "5.9.0-SNAPSHOT.15",
4
4
  "description": "AMF Library",
5
5
  "main": "amf.js",
6
6
  "author": "amf team",
@@ -9690,6 +9690,105 @@ declare module "amf-client-js" {
9690
9690
  syncValidate(baseUnit: BaseUnit): AMFValidationReport;
9691
9691
  }
9692
9692
 
9693
+ export class OtherCardConfiguration extends BaseOtherCardConfiguration {
9694
+ static OtherCard(): OtherCardConfiguration;
9695
+
9696
+ baseUnitClient(): OtherCardBaseUnitClient;
9697
+ }
9698
+
9699
+ export class BaseOtherCardConfiguration extends BaseShapesConfiguration {
9700
+ withDialect(dialect: Dialect): BaseOtherCardConfiguration;
9701
+
9702
+ withErrorHandlerProvider(
9703
+ provider: ErrorHandlerProvider
9704
+ ): BaseOtherCardConfiguration;
9705
+
9706
+ withEventListener(listener: AMFEventListener): BaseOtherCardConfiguration;
9707
+
9708
+ withParsingOptions(parsingOptions: ParsingOptions): BaseOtherCardConfiguration;
9709
+
9710
+ withRenderOptions(renderOptions: RenderOptions): BaseOtherCardConfiguration;
9711
+
9712
+ withResourceLoader(rl: ResourceLoader): BaseOtherCardConfiguration;
9713
+
9714
+ withResourceLoaders(rl: Array<ResourceLoader>): BaseOtherCardConfiguration;
9715
+
9716
+ withTransformationPipeline(
9717
+ pipeline: TransformationPipeline
9718
+ ): BaseOtherCardConfiguration;
9719
+
9720
+ withUnitCache(cache: UnitCache): BaseOtherCardConfiguration;
9721
+ }
9722
+ export class OtherCardBaseUnitClient extends AMLBaseUnitClient {
9723
+ syncValidate(baseUnit: BaseUnit): AMFValidationReport;
9724
+ }
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
+
9693
9792
  export class BrokerGroupConfiguration extends BaseBrokerGroupConfiguration {
9694
9793
  static BrokerGroup(): BrokerGroupConfiguration;
9695
9794