@apicurio/artifact-type-builtins 3.1.1 → 3.1.3

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,12 +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[];
30
+ export interface ContentAccepterRequest {
31
+ typedContent: any;
32
+ resolvedReferences: any[];
32
33
  }
33
34
 
34
- export interface ContentCanonicalizerResponse {
35
- typedContent: any;
35
+ export interface CompatibilityCheckerResponse {
36
+ incompatibleDifferences: any[];
36
37
  }
37
38
 
38
39
  export interface ContentCanonicalizerRequest {
@@ -40,18 +41,6 @@ export interface ContentCanonicalizerRequest {
40
41
  resolvedReferences: any[];
41
42
  }
42
43
 
43
- export interface ContentDereferencerResponse {
44
- typedContent: any;
45
- }
46
-
47
- export interface ContentValidatorResponse {
48
- ruleViolations: any[];
49
- }
50
-
51
- export interface ReferenceFinderRequest {
52
- typedContent: any;
53
- }
54
-
55
44
  export interface ContentValidatorRequest {
56
45
  level: string;
57
46
  function: any;
@@ -60,15 +49,16 @@ export interface ContentValidatorRequest {
60
49
  references: any[];
61
50
  }
62
51
 
52
+ export interface ContentValidatorResponse {
53
+ ruleViolations: any[];
54
+ }
55
+
63
56
  export interface ReferenceFinderResponse {
64
57
  externalReferences: any[];
65
58
  }
66
59
 
67
- export interface ContentDereferencerRequest {
68
- content: any;
69
- resolvedReferences: any[];
70
- function: any;
71
- resolvedReferenceUrls: any[];
60
+ export interface ContentDereferencerResponse {
61
+ typedContent: any;
72
62
  }
73
63
 
74
64
  export interface CompatibilityCheckerRequest {
@@ -78,8 +68,18 @@ export interface CompatibilityCheckerRequest {
78
68
  resolvedReferences: any[];
79
69
  }
80
70
 
81
- export interface ContentAccepterRequest {
71
+ export interface ContentCanonicalizerResponse {
72
+ typedContent: any;
73
+ }
74
+
75
+ export interface ReferenceFinderRequest {
82
76
  typedContent: any;
77
+ }
78
+
79
+ export interface ContentDereferencerRequest {
80
+ content: any;
83
81
  resolvedReferences: any[];
82
+ function: any;
83
+ resolvedReferenceUrls: 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.1",
4
+ "version": "3.1.3",
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.0.1"
34
+ "rimraf": "6.1.2"
35
35
  }
36
36
  }