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