amf-client-js 5.9.0-SNAPSHOT.12 → 5.9.0-SNAPSHOT.14

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 +11689 -11651
  2. package/package.json +1 -1
  3. package/typings/amf-client-js.d.ts +33 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "amf-client-js",
3
- "version": "5.9.0-SNAPSHOT.12",
3
+ "version": "5.9.0-SNAPSHOT.14",
4
4
  "description": "AMF Library",
5
5
  "main": "amf.js",
6
6
  "author": "amf team",
@@ -9690,6 +9690,39 @@ 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
+
9693
9726
  export class BrokerGroupConfiguration extends BaseBrokerGroupConfiguration {
9694
9727
  static BrokerGroup(): BrokerGroupConfiguration;
9695
9728