amf-client-js 5.9.0-SNAPSHOT.20 → 5.9.0-SNAPSHOT.22
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 +9164 -9166
- package/package.json +1 -1
- package/typings/amf-client-js.d.ts +16 -16
package/package.json
CHANGED
|
@@ -6814,7 +6814,7 @@ declare module "amf-client-js" {
|
|
|
6814
6814
|
static readonly RAML08: ProfileName;
|
|
6815
6815
|
static readonly RAML10: ProfileName;
|
|
6816
6816
|
static readonly MCP: ProfileName;
|
|
6817
|
-
static readonly
|
|
6817
|
+
static readonly AGENT_NETWORK: ProfileName;
|
|
6818
6818
|
static readonly AGENT_CARD: ProfileName;
|
|
6819
6819
|
}
|
|
6820
6820
|
export class PropertyDependencies implements DomainElement {
|
|
@@ -8960,7 +8960,7 @@ declare module "amf-client-js" {
|
|
|
8960
8960
|
static readonly RAML08: Spec;
|
|
8961
8961
|
static readonly RAML10: Spec;
|
|
8962
8962
|
static readonly MCP: Spec;
|
|
8963
|
-
static readonly
|
|
8963
|
+
static readonly AGENT_NETWORK: Spec;
|
|
8964
8964
|
static readonly AGENT_CARD: Spec;
|
|
8965
8965
|
|
|
8966
8966
|
static apply(name: string): Spec;
|
|
@@ -9791,36 +9791,36 @@ declare module "amf-client-js" {
|
|
|
9791
9791
|
syncValidate(baseUnit: BaseUnit): AMFValidationReport;
|
|
9792
9792
|
}
|
|
9793
9793
|
|
|
9794
|
-
export class
|
|
9795
|
-
static
|
|
9794
|
+
export class AgentNetworkConfiguration extends BaseAgentNetworkConfiguration {
|
|
9795
|
+
static AgentNetwork(): AgentNetworkConfiguration;
|
|
9796
9796
|
|
|
9797
|
-
baseUnitClient():
|
|
9797
|
+
baseUnitClient(): AgentNetworkBaseUnitClient;
|
|
9798
9798
|
}
|
|
9799
9799
|
|
|
9800
|
-
export class
|
|
9801
|
-
withDialect(dialect: Dialect):
|
|
9800
|
+
export class BaseAgentNetworkConfiguration extends BaseShapesConfiguration {
|
|
9801
|
+
withDialect(dialect: Dialect): BaseAgentNetworkConfiguration;
|
|
9802
9802
|
|
|
9803
9803
|
withErrorHandlerProvider(
|
|
9804
9804
|
provider: ErrorHandlerProvider
|
|
9805
|
-
):
|
|
9805
|
+
): BaseAgentNetworkConfiguration;
|
|
9806
9806
|
|
|
9807
|
-
withEventListener(listener: AMFEventListener):
|
|
9807
|
+
withEventListener(listener: AMFEventListener): BaseAgentNetworkConfiguration;
|
|
9808
9808
|
|
|
9809
|
-
withParsingOptions(parsingOptions: ParsingOptions):
|
|
9809
|
+
withParsingOptions(parsingOptions: ParsingOptions): BaseAgentNetworkConfiguration;
|
|
9810
9810
|
|
|
9811
|
-
withRenderOptions(renderOptions: RenderOptions):
|
|
9811
|
+
withRenderOptions(renderOptions: RenderOptions): BaseAgentNetworkConfiguration;
|
|
9812
9812
|
|
|
9813
|
-
withResourceLoader(rl: ResourceLoader):
|
|
9813
|
+
withResourceLoader(rl: ResourceLoader): BaseAgentNetworkConfiguration;
|
|
9814
9814
|
|
|
9815
|
-
withResourceLoaders(rl: Array<ResourceLoader>):
|
|
9815
|
+
withResourceLoaders(rl: Array<ResourceLoader>): BaseAgentNetworkConfiguration;
|
|
9816
9816
|
|
|
9817
9817
|
withTransformationPipeline(
|
|
9818
9818
|
pipeline: TransformationPipeline
|
|
9819
|
-
):
|
|
9819
|
+
): BaseAgentNetworkConfiguration;
|
|
9820
9820
|
|
|
9821
|
-
withUnitCache(cache: UnitCache):
|
|
9821
|
+
withUnitCache(cache: UnitCache): BaseAgentNetworkConfiguration;
|
|
9822
9822
|
}
|
|
9823
|
-
export class
|
|
9823
|
+
export class AgentNetworkBaseUnitClient extends AMLBaseUnitClient {
|
|
9824
9824
|
syncValidate(baseUnit: BaseUnit): AMFValidationReport;
|
|
9825
9825
|
}
|
|
9826
9826
|
|