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