amf-client-js 5.10.2-4 → 5.10.2-7

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 +12095 -12055
  2. package/package.json +1 -1
  3. package/typings/amf-client-js.d.ts +34 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "amf-client-js",
3
- "version": "5.10.2-4",
3
+ "version": "5.10.2-7",
4
4
  "description": "AMF Library",
5
5
  "main": "amf.js",
6
6
  "author": "amf team",
@@ -9900,6 +9900,40 @@ export class AgenticNetworkConfiguration extends BaseAgenticNetworkConfiguration
9900
9900
  syncValidate(baseUnit: BaseUnit): AMFValidationReport;
9901
9901
  }
9902
9902
 
9903
+
9904
+ export class AgentCardV1Configuration extends BaseAgentCardV1Configuration {
9905
+ static AgentCardV1(): AgentCardV1Configuration;
9906
+
9907
+ baseUnitClient(): AgentCardV1BaseUnitClient;
9908
+ }
9909
+
9910
+ export class BaseAgentCardV1Configuration extends BaseShapesConfiguration {
9911
+ withDialect(dialect: Dialect): BaseAgentCardV1Configuration;
9912
+
9913
+ withErrorHandlerProvider(
9914
+ provider: ErrorHandlerProvider
9915
+ ): BaseAgentCardV1Configuration;
9916
+
9917
+ withEventListener(listener: AMFEventListener): BaseAgentCardV1Configuration;
9918
+
9919
+ withParsingOptions(parsingOptions: ParsingOptions): BaseAgentCardV1Configuration;
9920
+
9921
+ withRenderOptions(renderOptions: RenderOptions): BaseAgentCardV1Configuration;
9922
+
9923
+ withResourceLoader(rl: ResourceLoader): BaseAgentCardV1Configuration;
9924
+
9925
+ withResourceLoaders(rl: Array<ResourceLoader>): BaseAgentCardV1Configuration;
9926
+
9927
+ withTransformationPipeline(
9928
+ pipeline: TransformationPipeline
9929
+ ): BaseAgentCardV1Configuration;
9930
+
9931
+ withUnitCache(cache: UnitCache): BaseAgentCardV1Configuration;
9932
+ }
9933
+ export class AgentCardV1BaseUnitClient extends AMLBaseUnitClient {
9934
+ syncValidate(baseUnit: BaseUnit): AMFValidationReport;
9935
+ }
9936
+
9903
9937
  export class ConfigurationAdapter {
9904
9938
  static adapt(baseConfiguration: AMFGraphConfiguration): AMFConfiguration;
9905
9939
  }