@apicurio/artifact-type-builtins 3.1.2 → 3.1.4

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,24 +27,13 @@ export interface ArtifactTypeScriptProvider {
27
27
  // Type Definitions - TypeScript interfaces for Java beans
28
28
  // =============================================================================
29
29
 
30
- export interface CompatibilityCheckerResponse {
31
- incompatibleDifferences: any[];
32
- }
33
-
34
- export interface ReferenceFinderRequest {
35
- typedContent: any;
36
- }
37
-
38
- export interface ContentAccepterRequest {
39
- typedContent: any;
30
+ export interface ContentCanonicalizerRequest {
31
+ content: any;
40
32
  resolvedReferences: any[];
41
33
  }
42
34
 
43
- export interface CompatibilityCheckerRequest {
44
- level: string;
45
- existingArtifacts: any[];
46
- proposedArtifact: any;
47
- resolvedReferences: any[];
35
+ export interface ContentDereferencerResponse {
36
+ typedContent: any;
48
37
  }
49
38
 
50
39
  export interface ContentCanonicalizerResponse {
@@ -59,23 +48,19 @@ export interface ContentValidatorRequest {
59
48
  references: any[];
60
49
  }
61
50
 
62
- export interface ContentCanonicalizerRequest {
63
- content: any;
51
+ export interface ContentAccepterRequest {
52
+ typedContent: any;
64
53
  resolvedReferences: any[];
65
54
  }
66
55
 
67
- export interface ContentDereferencerResponse {
68
- typedContent: any;
56
+ export interface ContentValidatorResponse {
57
+ ruleViolations: any[];
69
58
  }
70
59
 
71
60
  export interface ReferenceFinderResponse {
72
61
  externalReferences: any[];
73
62
  }
74
63
 
75
- export interface ContentValidatorResponse {
76
- ruleViolations: any[];
77
- }
78
-
79
64
  export interface ContentDereferencerRequest {
80
65
  content: any;
81
66
  resolvedReferences: any[];
@@ -83,3 +68,18 @@ export interface ContentDereferencerRequest {
83
68
  resolvedReferenceUrls: any[];
84
69
  }
85
70
 
71
+ export interface CompatibilityCheckerResponse {
72
+ incompatibleDifferences: any[];
73
+ }
74
+
75
+ export interface ReferenceFinderRequest {
76
+ typedContent: any;
77
+ }
78
+
79
+ export interface CompatibilityCheckerRequest {
80
+ level: string;
81
+ existingArtifacts: any[];
82
+ proposedArtifact: 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.2",
4
+ "version": "3.1.4",
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",
@@ -17,7 +17,7 @@
17
17
  },
18
18
  "repository": {
19
19
  "type": "git",
20
- "url": "https://github.com/Apicurio/apicurio-registry.git",
20
+ "url": "https://github.com/Apicurio/apicurio-registry",
21
21
  "directory": "artifact-type-builtins"
22
22
  },
23
23
  "keywords": [
@@ -31,6 +31,6 @@
31
31
  "author": "Apicurio",
32
32
  "license": "Apache-2.0",
33
33
  "devDependencies": {
34
- "rimraf": "6.1.0"
34
+ "rimraf": "6.1.2"
35
35
  }
36
36
  }