amf-client-js 5.10.1 → 5.10.2
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 +12082 -12030
- package/package.json +2 -2
- package/typings/amf-client-js.d.ts +51 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "amf-client-js",
|
|
3
|
-
"version": "5.10.
|
|
3
|
+
"version": "5.10.2",
|
|
4
4
|
"description": "AMF Library",
|
|
5
5
|
"main": "amf.js",
|
|
6
6
|
"author": "amf team",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"typings": "./typings/amf-client-js.d.ts",
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aml-org/amf-antlr-parsers": "0.8.35",
|
|
20
|
-
"ajv": "6.
|
|
20
|
+
"ajv": "6.14.0",
|
|
21
21
|
"avro-js": "1.11.3"
|
|
22
22
|
}
|
|
23
23
|
}
|
|
@@ -6819,7 +6819,8 @@ declare module "amf-client-js" {
|
|
|
6819
6819
|
static readonly OTHER_CARD: ProfileName;
|
|
6820
6820
|
static readonly AGENT_METADATA: ProfileName;
|
|
6821
6821
|
static readonly LLM_METADATA: ProfileName;
|
|
6822
|
-
static readonly
|
|
6822
|
+
static readonly AGENTIC_NETWORK: ProfileName;
|
|
6823
|
+
static readonly AGENT_NETWORK_METADATA: ProfileName;
|
|
6823
6824
|
}
|
|
6824
6825
|
export class PropertyDependencies implements DomainElement {
|
|
6825
6826
|
customDomainProperties: Array<DomainExtension>;
|
|
@@ -8969,7 +8970,8 @@ declare module "amf-client-js" {
|
|
|
8969
8970
|
static readonly OTHER_CARD: Spec;
|
|
8970
8971
|
static readonly AGENT_METADATA: Spec;
|
|
8971
8972
|
static readonly LLM_METADATA: Spec;
|
|
8972
|
-
static readonly
|
|
8973
|
+
static readonly AGENTIC_NETWORK: Spec;
|
|
8974
|
+
static readonly AGENT_NETWORK_METADATA: Spec;
|
|
8973
8975
|
|
|
8974
8976
|
static apply(name: string): Spec;
|
|
8975
8977
|
}
|
|
@@ -9832,36 +9834,69 @@ declare module "amf-client-js" {
|
|
|
9832
9834
|
syncValidate(baseUnit: BaseUnit): AMFValidationReport;
|
|
9833
9835
|
}
|
|
9834
9836
|
|
|
9835
|
-
export class
|
|
9836
|
-
static
|
|
9837
|
+
export class AgenticNetworkConfiguration extends BaseAgenticNetworkConfiguration {
|
|
9838
|
+
static AgenticNetwork(): AgenticNetworkConfiguration;
|
|
9837
9839
|
|
|
9838
|
-
baseUnitClient():
|
|
9840
|
+
baseUnitClient(): AgenticNetworkBaseUnitClient;
|
|
9839
9841
|
}
|
|
9840
9842
|
|
|
9841
|
-
export class
|
|
9842
|
-
withDialect(dialect: Dialect):
|
|
9843
|
+
export class BaseAgenticNetworkConfiguration extends BaseShapesConfiguration {
|
|
9844
|
+
withDialect(dialect: Dialect): BaseAgenticNetworkConfiguration;
|
|
9843
9845
|
|
|
9844
9846
|
withErrorHandlerProvider(
|
|
9845
9847
|
provider: ErrorHandlerProvider
|
|
9846
|
-
):
|
|
9848
|
+
): BaseAgenticNetworkConfiguration;
|
|
9847
9849
|
|
|
9848
|
-
withEventListener(listener: AMFEventListener):
|
|
9850
|
+
withEventListener(listener: AMFEventListener): BaseAgenticNetworkConfiguration;
|
|
9849
9851
|
|
|
9850
|
-
withParsingOptions(parsingOptions: ParsingOptions):
|
|
9852
|
+
withParsingOptions(parsingOptions: ParsingOptions): BaseAgenticNetworkConfiguration;
|
|
9851
9853
|
|
|
9852
|
-
withRenderOptions(renderOptions: RenderOptions):
|
|
9854
|
+
withRenderOptions(renderOptions: RenderOptions): BaseAgenticNetworkConfiguration;
|
|
9853
9855
|
|
|
9854
|
-
withResourceLoader(rl: ResourceLoader):
|
|
9856
|
+
withResourceLoader(rl: ResourceLoader): BaseAgenticNetworkConfiguration;
|
|
9855
9857
|
|
|
9856
|
-
withResourceLoaders(rl: Array<ResourceLoader>):
|
|
9858
|
+
withResourceLoaders(rl: Array<ResourceLoader>): BaseAgenticNetworkConfiguration;
|
|
9857
9859
|
|
|
9858
9860
|
withTransformationPipeline(
|
|
9859
9861
|
pipeline: TransformationPipeline
|
|
9860
|
-
):
|
|
9862
|
+
): BaseAgenticNetworkConfiguration;
|
|
9861
9863
|
|
|
9862
|
-
withUnitCache(cache: UnitCache):
|
|
9864
|
+
withUnitCache(cache: UnitCache): BaseAgenticNetworkConfiguration;
|
|
9863
9865
|
}
|
|
9864
|
-
export class
|
|
9866
|
+
export class AgenticNetworkBaseUnitClient extends AMLBaseUnitClient {
|
|
9867
|
+
syncValidate(baseUnit: BaseUnit): AMFValidationReport;
|
|
9868
|
+
}
|
|
9869
|
+
|
|
9870
|
+
export class AgentNetworkMetadataConfiguration extends BaseAgentNetworkMetadataConfiguration {
|
|
9871
|
+
static AgentNetworkMetadata(): AgentNetworkMetadataConfiguration;
|
|
9872
|
+
|
|
9873
|
+
baseUnitClient(): AgentNetworkMetadataBaseUnitClient;
|
|
9874
|
+
}
|
|
9875
|
+
|
|
9876
|
+
export class BaseAgentNetworkMetadataConfiguration extends BaseShapesConfiguration {
|
|
9877
|
+
withDialect(dialect: Dialect): BaseAgentNetworkMetadataConfiguration;
|
|
9878
|
+
|
|
9879
|
+
withErrorHandlerProvider(
|
|
9880
|
+
provider: ErrorHandlerProvider
|
|
9881
|
+
): BaseAgenticNetworkConfiguration;
|
|
9882
|
+
|
|
9883
|
+
withEventListener(listener: AMFEventListener): BaseAgentNetworkMetadataConfiguration;
|
|
9884
|
+
|
|
9885
|
+
withParsingOptions(parsingOptions: ParsingOptions): BaseAgentNetworkMetadataConfiguration;
|
|
9886
|
+
|
|
9887
|
+
withRenderOptions(renderOptions: RenderOptions): BaseAgentNetworkMetadataConfiguration;
|
|
9888
|
+
|
|
9889
|
+
withResourceLoader(rl: ResourceLoader): BaseAgentNetworkMetadataConfiguration;
|
|
9890
|
+
|
|
9891
|
+
withResourceLoaders(rl: Array<ResourceLoader>): BaseAgentNetworkMetadataConfiguration;
|
|
9892
|
+
|
|
9893
|
+
withTransformationPipeline(
|
|
9894
|
+
pipeline: TransformationPipeline
|
|
9895
|
+
): BaseAgentNetworkMetadataConfiguration;
|
|
9896
|
+
|
|
9897
|
+
withUnitCache(cache: UnitCache): BaseAgentNetworkMetadataConfiguration;
|
|
9898
|
+
}
|
|
9899
|
+
export class AgentNetworkMetadataBaseUnitClient extends AMLBaseUnitClient {
|
|
9865
9900
|
syncValidate(baseUnit: BaseUnit): AMFValidationReport;
|
|
9866
9901
|
}
|
|
9867
9902
|
|