@apicurio/artifact-type-builtins 3.1.7 → 3.2.0

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,24 @@ export interface ArtifactTypeScriptProvider {
27
27
  // Type Definitions - TypeScript interfaces for Java beans
28
28
  // =============================================================================
29
29
 
30
- export interface ContentValidatorResponse {
31
- ruleViolations: any[];
30
+ export interface ContentCanonicalizerRequest {
31
+ content: any;
32
+ resolvedReferences: any[];
32
33
  }
33
34
 
34
35
  export interface ContentCanonicalizerResponse {
35
36
  typedContent: any;
36
37
  }
37
38
 
38
- export interface CompatibilityCheckerRequest {
39
- level: string;
40
- existingArtifacts: any[];
41
- proposedArtifact: any;
39
+ export interface ContentDereferencerRequest {
40
+ content: any;
42
41
  resolvedReferences: any[];
42
+ function: any;
43
+ resolvedReferenceUrls: any[];
44
+ }
45
+
46
+ export interface CompatibilityCheckerResponse {
47
+ incompatibleDifferences: any[];
43
48
  }
44
49
 
45
50
  export interface ContentValidatorRequest {
@@ -50,20 +55,23 @@ export interface ContentValidatorRequest {
50
55
  references: any[];
51
56
  }
52
57
 
53
- export interface ContentDereferencerResponse {
54
- typedContent: any;
58
+ export interface ContentValidatorResponse {
59
+ ruleViolations: any[];
55
60
  }
56
61
 
57
- export interface ContentCanonicalizerRequest {
58
- content: any;
59
- resolvedReferences: any[];
62
+ export interface ReferenceFinderResponse {
63
+ externalReferences: any[];
60
64
  }
61
65
 
62
- export interface ContentDereferencerRequest {
63
- content: any;
66
+ export interface CompatibilityCheckerRequest {
67
+ level: string;
68
+ existingArtifacts: any[];
69
+ proposedArtifact: any;
64
70
  resolvedReferences: any[];
65
- function: any;
66
- resolvedReferenceUrls: any[];
71
+ }
72
+
73
+ export interface ContentDereferencerResponse {
74
+ typedContent: any;
67
75
  }
68
76
 
69
77
  export interface ReferenceFinderRequest {
@@ -75,11 +83,3 @@ export interface ContentAccepterRequest {
75
83
  resolvedReferences: any[];
76
84
  }
77
85
 
78
- export interface CompatibilityCheckerResponse {
79
- incompatibleDifferences: any[];
80
- }
81
-
82
- export interface ReferenceFinderResponse {
83
- externalReferences: any[];
84
- }
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.7",
4
+ "version": "3.2.0",
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.2"
34
+ "rimraf": "6.1.3"
35
35
  }
36
36
  }