@apicurio/artifact-type-builtins 3.1.2 → 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,28 +27,18 @@ 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
30
  export interface ContentAccepterRequest {
39
31
  typedContent: 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 CompatibilityCheckerResponse {
36
+ incompatibleDifferences: any[];
48
37
  }
49
38
 
50
- export interface ContentCanonicalizerResponse {
51
- typedContent: any;
39
+ export interface ContentCanonicalizerRequest {
40
+ content: any;
41
+ resolvedReferences: any[];
52
42
  }
53
43
 
54
44
  export interface ContentValidatorRequest {
@@ -59,21 +49,31 @@ export interface ContentValidatorRequest {
59
49
  references: any[];
60
50
  }
61
51
 
62
- export interface ContentCanonicalizerRequest {
63
- content: any;
64
- resolvedReferences: any[];
52
+ export interface ContentValidatorResponse {
53
+ ruleViolations: any[];
54
+ }
55
+
56
+ export interface ReferenceFinderResponse {
57
+ externalReferences: any[];
65
58
  }
66
59
 
67
60
  export interface ContentDereferencerResponse {
68
61
  typedContent: any;
69
62
  }
70
63
 
71
- export interface ReferenceFinderResponse {
72
- externalReferences: any[];
64
+ export interface CompatibilityCheckerRequest {
65
+ level: string;
66
+ existingArtifacts: any[];
67
+ proposedArtifact: any;
68
+ resolvedReferences: any[];
73
69
  }
74
70
 
75
- export interface ContentValidatorResponse {
76
- ruleViolations: any[];
71
+ export interface ContentCanonicalizerResponse {
72
+ typedContent: any;
73
+ }
74
+
75
+ export interface ReferenceFinderRequest {
76
+ typedContent: any;
77
77
  }
78
78
 
79
79
  export interface ContentDereferencerRequest {
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.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.1.0"
34
+ "rimraf": "6.1.2"
35
35
  }
36
36
  }