@apicurio/artifact-type-builtins 3.1.1 → 3.1.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.
@@ -31,24 +31,23 @@ export interface CompatibilityCheckerResponse {
31
31
  incompatibleDifferences: any[];
32
32
  }
33
33
 
34
- export interface ContentCanonicalizerResponse {
34
+ export interface ReferenceFinderRequest {
35
35
  typedContent: any;
36
36
  }
37
37
 
38
- export interface ContentCanonicalizerRequest {
39
- content: any;
40
- resolvedReferences: any[];
41
- }
42
-
43
- export interface ContentDereferencerResponse {
38
+ export interface ContentAccepterRequest {
44
39
  typedContent: any;
40
+ resolvedReferences: any[];
45
41
  }
46
42
 
47
- export interface ContentValidatorResponse {
48
- ruleViolations: any[];
43
+ export interface CompatibilityCheckerRequest {
44
+ level: string;
45
+ existingArtifacts: any[];
46
+ proposedArtifact: any;
47
+ resolvedReferences: any[];
49
48
  }
50
49
 
51
- export interface ReferenceFinderRequest {
50
+ export interface ContentCanonicalizerResponse {
52
51
  typedContent: any;
53
52
  }
54
53
 
@@ -60,10 +59,23 @@ export interface ContentValidatorRequest {
60
59
  references: any[];
61
60
  }
62
61
 
62
+ export interface ContentCanonicalizerRequest {
63
+ content: any;
64
+ resolvedReferences: any[];
65
+ }
66
+
67
+ export interface ContentDereferencerResponse {
68
+ typedContent: any;
69
+ }
70
+
63
71
  export interface ReferenceFinderResponse {
64
72
  externalReferences: any[];
65
73
  }
66
74
 
75
+ export interface ContentValidatorResponse {
76
+ ruleViolations: any[];
77
+ }
78
+
67
79
  export interface ContentDereferencerRequest {
68
80
  content: any;
69
81
  resolvedReferences: any[];
@@ -71,15 +83,3 @@ export interface ContentDereferencerRequest {
71
83
  resolvedReferenceUrls: any[];
72
84
  }
73
85
 
74
- export interface CompatibilityCheckerRequest {
75
- level: string;
76
- existingArtifacts: any[];
77
- proposedArtifact: any;
78
- resolvedReferences: any[];
79
- }
80
-
81
- export interface ContentAccepterRequest {
82
- typedContent: any;
83
- resolvedReferences: 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.1",
4
+ "version": "3.1.2",
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.0.1"
34
+ "rimraf": "6.1.0"
35
35
  }
36
36
  }