@apicurio/artifact-type-builtins 3.1.7 → 3.2.1
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.
|
@@ -27,19 +27,16 @@ export interface ArtifactTypeScriptProvider {
|
|
|
27
27
|
// Type Definitions - TypeScript interfaces for Java beans
|
|
28
28
|
// =============================================================================
|
|
29
29
|
|
|
30
|
-
export interface ContentValidatorResponse {
|
|
31
|
-
ruleViolations: any[];
|
|
32
|
-
}
|
|
33
|
-
|
|
34
30
|
export interface ContentCanonicalizerResponse {
|
|
35
31
|
typedContent: any;
|
|
36
32
|
}
|
|
37
33
|
|
|
38
|
-
export interface
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
34
|
+
export interface ReferenceFinderResponse {
|
|
35
|
+
externalReferences: any[];
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export interface ReferenceFinderRequest {
|
|
39
|
+
typedContent: any;
|
|
43
40
|
}
|
|
44
41
|
|
|
45
42
|
export interface ContentValidatorRequest {
|
|
@@ -50,12 +47,19 @@ export interface ContentValidatorRequest {
|
|
|
50
47
|
references: any[];
|
|
51
48
|
}
|
|
52
49
|
|
|
53
|
-
export interface
|
|
50
|
+
export interface ContentValidatorResponse {
|
|
51
|
+
ruleViolations: any[];
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export interface ContentAccepterRequest {
|
|
54
55
|
typedContent: any;
|
|
56
|
+
resolvedReferences: any[];
|
|
55
57
|
}
|
|
56
58
|
|
|
57
|
-
export interface
|
|
58
|
-
|
|
59
|
+
export interface CompatibilityCheckerRequest {
|
|
60
|
+
level: string;
|
|
61
|
+
existingArtifacts: any[];
|
|
62
|
+
proposedArtifact: any;
|
|
59
63
|
resolvedReferences: any[];
|
|
60
64
|
}
|
|
61
65
|
|
|
@@ -66,20 +70,16 @@ export interface ContentDereferencerRequest {
|
|
|
66
70
|
resolvedReferenceUrls: any[];
|
|
67
71
|
}
|
|
68
72
|
|
|
69
|
-
export interface
|
|
70
|
-
|
|
73
|
+
export interface CompatibilityCheckerResponse {
|
|
74
|
+
incompatibleDifferences: any[];
|
|
71
75
|
}
|
|
72
76
|
|
|
73
|
-
export interface
|
|
74
|
-
|
|
77
|
+
export interface ContentCanonicalizerRequest {
|
|
78
|
+
content: any;
|
|
75
79
|
resolvedReferences: any[];
|
|
76
80
|
}
|
|
77
81
|
|
|
78
|
-
export interface
|
|
79
|
-
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
export interface ReferenceFinderResponse {
|
|
83
|
-
externalReferences: any[];
|
|
82
|
+
export interface ContentDereferencerResponse {
|
|
83
|
+
typedContent: any;
|
|
84
84
|
}
|
|
85
85
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apicurio/artifact-type-builtins",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "3.1
|
|
4
|
+
"version": "3.2.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Built-in functions and TypeScript type definitions for creating custom artifact types in Apicurio Registry",
|
|
7
7
|
"main": "lib/ArtifactTypeScriptProvider_Builtins.mjs",
|
|
@@ -31,6 +31,6 @@
|
|
|
31
31
|
"author": "Apicurio",
|
|
32
32
|
"license": "Apache-2.0",
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"rimraf": "6.1.
|
|
34
|
+
"rimraf": "6.1.3"
|
|
35
35
|
}
|
|
36
36
|
}
|