amf-client-js 5.8.0-SNAPSHOT.65 → 5.8.0-SNAPSHOT.66
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 +11617 -11583
- package/package.json +1 -1
- package/typings/amf-client-js.d.ts +35 -0
package/package.json
CHANGED
|
@@ -6813,6 +6813,7 @@ declare module "amf-client-js" {
|
|
|
6813
6813
|
static readonly RAML10: ProfileName;
|
|
6814
6814
|
static readonly MCP: ProfileName;
|
|
6815
6815
|
static readonly AGENT_FABRIC: ProfileName;
|
|
6816
|
+
static readonly AGENT_CARD: ProfileName;
|
|
6816
6817
|
}
|
|
6817
6818
|
export class PropertyDependencies implements DomainElement {
|
|
6818
6819
|
customDomainProperties: Array<DomainExtension>;
|
|
@@ -8901,6 +8902,7 @@ declare module "amf-client-js" {
|
|
|
8901
8902
|
static readonly RAML10: Spec;
|
|
8902
8903
|
static readonly MCP: Spec;
|
|
8903
8904
|
static readonly AGENT_FABRIC: Spec;
|
|
8905
|
+
static readonly AGENT_CARD: Spec;
|
|
8904
8906
|
|
|
8905
8907
|
static apply(name: string): Spec;
|
|
8906
8908
|
}
|
|
@@ -9598,6 +9600,39 @@ declare module "amf-client-js" {
|
|
|
9598
9600
|
syncValidate(baseUnit: BaseUnit): AMFValidationReport;
|
|
9599
9601
|
}
|
|
9600
9602
|
|
|
9603
|
+
export class AgentCardConfiguration extends BaseAgentCardConfiguration {
|
|
9604
|
+
static AgentCard(): AgentCardConfiguration;
|
|
9605
|
+
|
|
9606
|
+
baseUnitClient(): AgentCardBaseUnitClient;
|
|
9607
|
+
}
|
|
9608
|
+
|
|
9609
|
+
export class BaseAgentCardConfiguration extends BaseShapesConfiguration {
|
|
9610
|
+
withDialect(dialect: Dialect): BaseAgentCardConfiguration;
|
|
9611
|
+
|
|
9612
|
+
withErrorHandlerProvider(
|
|
9613
|
+
provider: ErrorHandlerProvider
|
|
9614
|
+
): BaseAgentCardConfiguration;
|
|
9615
|
+
|
|
9616
|
+
withEventListener(listener: AMFEventListener): BaseAgentCardConfiguration;
|
|
9617
|
+
|
|
9618
|
+
withParsingOptions(parsingOptions: ParsingOptions): BaseAgentCardConfiguration;
|
|
9619
|
+
|
|
9620
|
+
withRenderOptions(renderOptions: RenderOptions): BaseAgentCardConfiguration;
|
|
9621
|
+
|
|
9622
|
+
withResourceLoader(rl: ResourceLoader): BaseAgentCardConfiguration;
|
|
9623
|
+
|
|
9624
|
+
withResourceLoaders(rl: Array<ResourceLoader>): BaseAgentCardConfiguration;
|
|
9625
|
+
|
|
9626
|
+
withTransformationPipeline(
|
|
9627
|
+
pipeline: TransformationPipeline
|
|
9628
|
+
): BaseAgentCardConfiguration;
|
|
9629
|
+
|
|
9630
|
+
withUnitCache(cache: UnitCache): BaseAgentCardConfiguration;
|
|
9631
|
+
}
|
|
9632
|
+
export class AgentCardBaseUnitClient extends AMLBaseUnitClient {
|
|
9633
|
+
syncValidate(baseUnit: BaseUnit): AMFValidationReport;
|
|
9634
|
+
}
|
|
9635
|
+
|
|
9601
9636
|
export class AgentFabricConfiguration extends BaseAgentFabricConfiguration {
|
|
9602
9637
|
static AgentFabric(): AgentFabricConfiguration;
|
|
9603
9638
|
|