arc-1 0.5.0 → 0.6.0

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.
Files changed (53) hide show
  1. package/README.md +4 -4
  2. package/dist/adt/client.d.ts +5 -1
  3. package/dist/adt/client.d.ts.map +1 -1
  4. package/dist/adt/client.js +39 -1
  5. package/dist/adt/client.js.map +1 -1
  6. package/dist/adt/crud.d.ts.map +1 -1
  7. package/dist/adt/crud.js +1 -7
  8. package/dist/adt/crud.js.map +1 -1
  9. package/dist/adt/safety.d.ts +0 -7
  10. package/dist/adt/safety.d.ts.map +1 -1
  11. package/dist/adt/safety.js +3 -49
  12. package/dist/adt/safety.js.map +1 -1
  13. package/dist/adt/types.d.ts +19 -0
  14. package/dist/adt/types.d.ts.map +1 -1
  15. package/dist/adt/xml-parser.d.ts +10 -1
  16. package/dist/adt/xml-parser.d.ts.map +1 -1
  17. package/dist/adt/xml-parser.js +47 -0
  18. package/dist/adt/xml-parser.js.map +1 -1
  19. package/dist/aff/schemas/bdef-v1.json +62 -0
  20. package/dist/aff/schemas/clas-v1.json +276 -0
  21. package/dist/aff/schemas/ddls-v1.json +144 -0
  22. package/dist/aff/schemas/intf-v1.json +243 -0
  23. package/dist/aff/schemas/prog-v1.json +133 -0
  24. package/dist/aff/schemas/srvb-v1.json +115 -0
  25. package/dist/aff/schemas/srvd-v1.json +108 -0
  26. package/dist/aff/validator.d.ts +14 -0
  27. package/dist/aff/validator.d.ts.map +1 -0
  28. package/dist/aff/validator.js +83 -0
  29. package/dist/aff/validator.js.map +1 -0
  30. package/dist/handlers/hyperfocused.js +1 -1
  31. package/dist/handlers/hyperfocused.js.map +1 -1
  32. package/dist/handlers/intent.d.ts.map +1 -1
  33. package/dist/handlers/intent.js +119 -2
  34. package/dist/handlers/intent.js.map +1 -1
  35. package/dist/handlers/schemas.d.ts +65 -24
  36. package/dist/handlers/schemas.d.ts.map +1 -1
  37. package/dist/handlers/schemas.js +23 -5
  38. package/dist/handlers/schemas.js.map +1 -1
  39. package/dist/handlers/tools.d.ts.map +1 -1
  40. package/dist/handlers/tools.js +47 -10
  41. package/dist/handlers/tools.js.map +1 -1
  42. package/dist/server/config.d.ts.map +1 -1
  43. package/dist/server/config.js +6 -14
  44. package/dist/server/config.js.map +1 -1
  45. package/dist/server/server.d.ts +1 -1
  46. package/dist/server/server.d.ts.map +1 -1
  47. package/dist/server/server.js +1 -2
  48. package/dist/server/server.js.map +1 -1
  49. package/dist/server/types.d.ts +0 -1
  50. package/dist/server/types.d.ts.map +1 -1
  51. package/dist/server/types.js +1 -2
  52. package/dist/server/types.js.map +1 -1
  53. package/package.json +3 -2
@@ -0,0 +1,243 @@
1
+ {
2
+ "$comment": "This file is autogenerated, do not edit manually, see https://github.com/SAP/abap-file-formats for more information.",
3
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
4
+ "$id": "https://github.com/SAP/abap-file-formats/blob/main/file-formats/intf/intf-v1.json",
5
+ "title": "Interface Properties",
6
+ "description": "Interface properties",
7
+ "type": "object",
8
+ "properties": {
9
+ "formatVersion": {
10
+ "title": "ABAP File Format Version",
11
+ "description": "The ABAP file format version",
12
+ "type": "string",
13
+ "const": "1"
14
+ },
15
+ "header": {
16
+ "title": "Header",
17
+ "description": "Header",
18
+ "type": "object",
19
+ "properties": {
20
+ "description": {
21
+ "title": "Description",
22
+ "description": "Description of the ABAP object",
23
+ "type": "string",
24
+ "maxLength": 60
25
+ },
26
+ "originalLanguage": {
27
+ "title": "Original Language",
28
+ "description": "Original language of the ABAP object",
29
+ "type": "string",
30
+ "minLength": 2
31
+ },
32
+ "abapLanguageVersion": {
33
+ "title": "ABAP Language Version",
34
+ "description": "ABAP language version",
35
+ "type": "string",
36
+ "enum": ["standard", "keyUser", "cloudDevelopment"],
37
+ "enumTitles": ["Standard", "ABAP for Key Users", "ABAP Cloud Development"],
38
+ "enumDescriptions": ["Standard", "ABAP for key user extensibility", "ABAP cloud development"],
39
+ "default": "standard"
40
+ }
41
+ },
42
+ "additionalProperties": false,
43
+ "required": ["description", "originalLanguage"]
44
+ },
45
+ "category": {
46
+ "title": "Interface Category",
47
+ "description": "Interface category",
48
+ "type": "string",
49
+ "enum": [
50
+ "general",
51
+ "classicBadi",
52
+ "businessStaticComponents",
53
+ "businessInstanceComponents",
54
+ "dbProcedureProxy",
55
+ "webDynproRuntime",
56
+ "enterpriseService"
57
+ ],
58
+ "enumTitles": [
59
+ "General",
60
+ "Classic BAdI",
61
+ "Business (Static Components)",
62
+ "Business (Instance-Dep. Components)",
63
+ "DB Procedure Proxy",
64
+ "Web Dynpro Runtime",
65
+ "Enterprise Services"
66
+ ],
67
+ "enumDescriptions": [
68
+ "General interface",
69
+ "Interface definition of a classic BAdI",
70
+ "Business interface for static components",
71
+ "Business interface for instance-dependent components",
72
+ "Generated interface of a database procedure proxy",
73
+ "Web Dynpro runtime interface",
74
+ "Generated interface of enterprise services"
75
+ ],
76
+ "default": "general"
77
+ },
78
+ "proxy": {
79
+ "title": "Proxy Interface",
80
+ "description": "Interface is a proxy interface",
81
+ "type": "boolean"
82
+ },
83
+ "descriptions": {
84
+ "title": "Descriptions",
85
+ "description": "Descriptions maintained in SE80",
86
+ "type": "object",
87
+ "properties": {
88
+ "types": {
89
+ "title": "Type Descriptions",
90
+ "description": "Type descriptions",
91
+ "type": "array",
92
+ "uniqueItems": true,
93
+ "items": {
94
+ "title": "Name and Description",
95
+ "description": "Name and description",
96
+ "type": "object",
97
+ "properties": {
98
+ "name": { "title": "Name", "description": "Name", "type": "string", "maxLength": 30 },
99
+ "description": { "title": "Description", "description": "Description", "type": "string", "maxLength": 60 }
100
+ },
101
+ "additionalProperties": false,
102
+ "required": ["name", "description"]
103
+ }
104
+ },
105
+ "attributes": {
106
+ "title": "Attribute Descriptions",
107
+ "description": "Attribute descriptions",
108
+ "type": "array",
109
+ "uniqueItems": true,
110
+ "items": {
111
+ "title": "Name and Description",
112
+ "description": "Name and description",
113
+ "type": "object",
114
+ "properties": {
115
+ "name": { "title": "Name", "description": "Name", "type": "string", "maxLength": 30 },
116
+ "description": { "title": "Description", "description": "Description", "type": "string", "maxLength": 60 }
117
+ },
118
+ "additionalProperties": false,
119
+ "required": ["name", "description"]
120
+ }
121
+ },
122
+ "events": {
123
+ "title": "Event Descriptions",
124
+ "description": "Event descriptions",
125
+ "type": "array",
126
+ "uniqueItems": true,
127
+ "items": {
128
+ "title": "Event Description",
129
+ "description": "Event description",
130
+ "type": "object",
131
+ "properties": {
132
+ "name": { "title": "Event Name", "description": "Name of the event", "type": "string", "maxLength": 30 },
133
+ "description": {
134
+ "title": "Event Description",
135
+ "description": "Description of the event",
136
+ "type": "string",
137
+ "maxLength": 60
138
+ },
139
+ "parameters": {
140
+ "title": "Parameter Descriptions",
141
+ "description": "Parameter descriptions",
142
+ "type": "array",
143
+ "uniqueItems": true,
144
+ "items": {
145
+ "title": "Name and Description",
146
+ "description": "Name and description",
147
+ "type": "object",
148
+ "properties": {
149
+ "name": { "title": "Name", "description": "Name", "type": "string", "maxLength": 30 },
150
+ "description": {
151
+ "title": "Description",
152
+ "description": "Description",
153
+ "type": "string",
154
+ "maxLength": 60
155
+ }
156
+ },
157
+ "additionalProperties": false,
158
+ "required": ["name", "description"]
159
+ }
160
+ }
161
+ },
162
+ "additionalProperties": false,
163
+ "required": ["name", "description"]
164
+ }
165
+ },
166
+ "methods": {
167
+ "title": "Method Descriptions",
168
+ "description": "Method descriptions",
169
+ "type": "array",
170
+ "uniqueItems": true,
171
+ "items": {
172
+ "title": "Method Description",
173
+ "description": "Method description",
174
+ "type": "object",
175
+ "properties": {
176
+ "name": {
177
+ "title": "Method Name",
178
+ "description": "Name of the method",
179
+ "type": "string",
180
+ "maxLength": 30
181
+ },
182
+ "description": {
183
+ "title": "Method Description",
184
+ "description": "Description of the method",
185
+ "type": "string",
186
+ "maxLength": 60
187
+ },
188
+ "parameters": {
189
+ "title": "Parameter Descriptions",
190
+ "description": "Parameter descriptions",
191
+ "type": "array",
192
+ "uniqueItems": true,
193
+ "items": {
194
+ "title": "Name and Description",
195
+ "description": "Name and description",
196
+ "type": "object",
197
+ "properties": {
198
+ "name": { "title": "Name", "description": "Name", "type": "string", "maxLength": 30 },
199
+ "description": {
200
+ "title": "Description",
201
+ "description": "Description",
202
+ "type": "string",
203
+ "maxLength": 60
204
+ }
205
+ },
206
+ "additionalProperties": false,
207
+ "required": ["name", "description"]
208
+ }
209
+ },
210
+ "exceptions": {
211
+ "title": "Exception Descriptions",
212
+ "description": "Exception descriptions",
213
+ "type": "array",
214
+ "uniqueItems": true,
215
+ "items": {
216
+ "title": "Name and Description",
217
+ "description": "Name and description",
218
+ "type": "object",
219
+ "properties": {
220
+ "name": { "title": "Name", "description": "Name", "type": "string", "maxLength": 30 },
221
+ "description": {
222
+ "title": "Description",
223
+ "description": "Description",
224
+ "type": "string",
225
+ "maxLength": 60
226
+ }
227
+ },
228
+ "additionalProperties": false,
229
+ "required": ["name", "description"]
230
+ }
231
+ }
232
+ },
233
+ "additionalProperties": false,
234
+ "required": ["name", "description"]
235
+ }
236
+ }
237
+ },
238
+ "additionalProperties": false
239
+ }
240
+ },
241
+ "additionalProperties": false,
242
+ "required": ["formatVersion", "header"]
243
+ }
@@ -0,0 +1,133 @@
1
+ {
2
+ "$comment": "This file is autogenerated, do not edit manually, see https://github.com/SAP/abap-file-formats for more information.",
3
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
4
+ "$id": "https://github.com/SAP/abap-file-formats/blob/main/file-formats/prog/prog-v1.json",
5
+ "title": "Program",
6
+ "description": "Program",
7
+ "type": "object",
8
+ "properties": {
9
+ "formatVersion": {
10
+ "title": "Format Version",
11
+ "description": "Format version",
12
+ "type": "string",
13
+ "const": "1"
14
+ },
15
+ "header": {
16
+ "title": "Header",
17
+ "description": "Header",
18
+ "type": "object",
19
+ "properties": {
20
+ "description": {
21
+ "title": "Description",
22
+ "description": "Description of the ABAP object",
23
+ "type": "string",
24
+ "maxLength": 70
25
+ },
26
+ "originalLanguage": {
27
+ "title": "Original Language",
28
+ "description": "Original language of the ABAP object",
29
+ "type": "string",
30
+ "minLength": 2
31
+ },
32
+ "abapLanguageVersion": {
33
+ "title": "ABAP Language Version",
34
+ "description": "ABAP language version",
35
+ "type": "string",
36
+ "enum": ["standard", "keyUser", "cloudDevelopment"],
37
+ "enumTitles": ["Standard", "ABAP for Key Users", "ABAP Cloud Development"],
38
+ "enumDescriptions": ["Standard", "ABAP for key user extensibility", "ABAP cloud development"],
39
+ "default": "standard"
40
+ }
41
+ },
42
+ "additionalProperties": false,
43
+ "required": ["description", "originalLanguage"]
44
+ },
45
+ "generalInformation": {
46
+ "title": "General Information",
47
+ "description": "General information",
48
+ "type": "object",
49
+ "properties": {
50
+ "programType": {
51
+ "title": "Program Type",
52
+ "description": "Program type",
53
+ "type": "string",
54
+ "enum": ["executableProgram", "modulePool", "subroutinePool", "include"],
55
+ "enumTitles": ["Executable Program", "Module Pool", "Subroutine Pool", "Include"],
56
+ "enumDescriptions": ["Executable program", "Module pool", "Subroutine pool", "Include"],
57
+ "default": "executableProgram"
58
+ },
59
+ "programStatus": {
60
+ "title": "Program Status",
61
+ "description": "Program status",
62
+ "type": "string",
63
+ "enum": ["sapProductionProgram", "customerProductionProgram", "systemProgram", "testProgram", "unknown"],
64
+ "enumTitles": [
65
+ "SAP Production Program",
66
+ "Customer Production Program",
67
+ "System Program",
68
+ "Test Program",
69
+ "Unknown"
70
+ ],
71
+ "enumDescriptions": [
72
+ "SAP production program",
73
+ "Customer production program",
74
+ "System program",
75
+ "Test program",
76
+ "Unknown"
77
+ ],
78
+ "default": "unknown"
79
+ },
80
+ "fixPointArithmetic": {
81
+ "title": "Fix Point Arithmetic",
82
+ "description": "Fix point arithmetic",
83
+ "type": "boolean"
84
+ },
85
+ "editLocked": {
86
+ "title": "Edit Locked",
87
+ "description": "The editor lock flag prevents other users from making changes to the program. Only the last person to change the program can remove the flag.",
88
+ "type": "boolean"
89
+ },
90
+ "startsUsingVariant": {
91
+ "title": "Starts Using Variant",
92
+ "description": "A user can only start this report using a variant.",
93
+ "type": "boolean"
94
+ },
95
+ "authorizationGroup": {
96
+ "title": "Authorization Group",
97
+ "description": "Programs that are assigned to an authorization group are protected against display and execution. Security-related programs should, therefore, always be assigned to an authorization group.",
98
+ "type": "string",
99
+ "maxLength": 8
100
+ },
101
+ "application": {
102
+ "title": "Application",
103
+ "description": "Application (taplp)",
104
+ "type": "string",
105
+ "maxLength": 1
106
+ }
107
+ },
108
+ "additionalProperties": false
109
+ },
110
+ "logicalDatabase": {
111
+ "title": "Logical Database",
112
+ "description": "Logical database",
113
+ "type": "object",
114
+ "properties": {
115
+ "name": {
116
+ "title": "Logical Database Name",
117
+ "description": "Name of a logical database.",
118
+ "type": "string",
119
+ "maxLength": 20
120
+ },
121
+ "selectionScreen": {
122
+ "title": "Selection Screen",
123
+ "description": "The Dynpro selection screen.",
124
+ "type": "string",
125
+ "maxLength": 3
126
+ }
127
+ },
128
+ "additionalProperties": false
129
+ }
130
+ },
131
+ "additionalProperties": false,
132
+ "required": ["formatVersion", "header"]
133
+ }
@@ -0,0 +1,115 @@
1
+ {
2
+ "$comment": "This file is autogenerated, do not edit manually, see https://github.com/SAP/abap-file-formats for more information.",
3
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
4
+ "$id": "https://github.com/SAP/abap-file-formats/blob/main/file-formats/srvb/srvb-v1.json",
5
+ "title": "Service Binding Properties",
6
+ "description": "Service Binding properties",
7
+ "type": "object",
8
+ "properties": {
9
+ "formatVersion": {
10
+ "title": "ABAP File Format Version",
11
+ "description": "The ABAP file format version",
12
+ "type": "string",
13
+ "const": "1"
14
+ },
15
+ "header": {
16
+ "title": "Header",
17
+ "description": "Header",
18
+ "type": "object",
19
+ "properties": {
20
+ "description": {
21
+ "title": "Description",
22
+ "description": "Description of the ABAP object",
23
+ "type": "string",
24
+ "maxLength": 60
25
+ },
26
+ "originalLanguage": {
27
+ "title": "Original Language",
28
+ "description": "Original language of the ABAP object",
29
+ "type": "string",
30
+ "minLength": 2
31
+ },
32
+ "abapLanguageVersion": {
33
+ "title": "ABAP Language Version",
34
+ "description": "ABAP language version",
35
+ "type": "string",
36
+ "enum": ["standard", "keyUser", "cloudDevelopment"],
37
+ "enumTitles": ["Standard", "ABAP for Key Users", "ABAP Cloud Development"],
38
+ "enumDescriptions": ["Standard", "ABAP for key user extensibility", "ABAP cloud development"],
39
+ "default": "standard"
40
+ }
41
+ },
42
+ "additionalProperties": false,
43
+ "required": ["description", "originalLanguage"]
44
+ },
45
+ "bindingType": {
46
+ "title": "Binding Type",
47
+ "description": "Service Binding type",
48
+ "type": "string",
49
+ "maxLength": 30
50
+ },
51
+ "bindingTypeCategory": {
52
+ "title": "Binding Category",
53
+ "description": "Service Binding category",
54
+ "type": "string",
55
+ "enum": ["ui", "webApi"],
56
+ "enumTitles": ["UI", "Web API"],
57
+ "enumDescriptions": ["UI", "Web API"]
58
+ },
59
+ "services": {
60
+ "title": "Services",
61
+ "description": "Services",
62
+ "type": "array",
63
+ "items": {
64
+ "title": "Service Properties",
65
+ "description": "Service properties",
66
+ "type": "object",
67
+ "properties": {
68
+ "name": {
69
+ "title": "Service Name",
70
+ "description": "Service name",
71
+ "type": "string",
72
+ "maxLength": 40
73
+ },
74
+ "versions": {
75
+ "title": "Service Versions",
76
+ "description": "Service versions",
77
+ "type": "array",
78
+ "items": {
79
+ "title": "Service Version",
80
+ "description": "Service version",
81
+ "type": "object",
82
+ "properties": {
83
+ "serviceVersion": {
84
+ "title": "Service Version",
85
+ "description": "Service version",
86
+ "type": "string",
87
+ "maxLength": 24
88
+ },
89
+ "serviceBuildVersion": {
90
+ "title": "Service Build Version",
91
+ "description": "Service build version",
92
+ "type": "string",
93
+ "maxLength": 10,
94
+ "pattern": "^[0-9]+$"
95
+ },
96
+ "serviceDefinition": {
97
+ "title": "Service Definition",
98
+ "description": "Service definition",
99
+ "type": "string",
100
+ "maxLength": 30
101
+ }
102
+ },
103
+ "additionalProperties": false,
104
+ "required": ["serviceVersion", "serviceDefinition"]
105
+ }
106
+ }
107
+ },
108
+ "additionalProperties": false,
109
+ "required": ["name", "versions"]
110
+ }
111
+ }
112
+ },
113
+ "additionalProperties": false,
114
+ "required": ["formatVersion", "header", "bindingType", "bindingTypeCategory", "services"]
115
+ }
@@ -0,0 +1,108 @@
1
+ {
2
+ "$comment": "This file is autogenerated, do not edit manually, see https://github.com/SAP/abap-file-formats for more information.",
3
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
4
+ "$id": "https://github.com/SAP/abap-file-formats/blob/main/file-formats/srvd/srvd-v1.json",
5
+ "title": "Service Definition Properties",
6
+ "description": "Properties of a Service Definition",
7
+ "type": "object",
8
+ "properties": {
9
+ "formatVersion": {
10
+ "title": "ABAP File Format Version",
11
+ "description": "The ABAP file format version",
12
+ "type": "string",
13
+ "const": "1"
14
+ },
15
+ "header": {
16
+ "title": "Header",
17
+ "description": "Header",
18
+ "type": "object",
19
+ "properties": {
20
+ "description": {
21
+ "title": "Description",
22
+ "description": "Description of the ABAP object",
23
+ "type": "string",
24
+ "maxLength": 60
25
+ },
26
+ "originalLanguage": {
27
+ "title": "Original Language",
28
+ "description": "Original language of the ABAP object",
29
+ "type": "string",
30
+ "minLength": 2
31
+ },
32
+ "abapLanguageVersion": {
33
+ "title": "ABAP Language Version",
34
+ "description": "ABAP language version",
35
+ "type": "string",
36
+ "enum": ["standard", "keyUser", "cloudDevelopment"],
37
+ "enumTitles": ["Standard", "ABAP for Key Users", "ABAP Cloud Development"],
38
+ "enumDescriptions": ["Standard", "ABAP for key user extensibility", "ABAP cloud development"],
39
+ "default": "standard"
40
+ }
41
+ },
42
+ "additionalProperties": false,
43
+ "required": ["description", "originalLanguage"]
44
+ },
45
+ "generalInformation": {
46
+ "title": "General Information",
47
+ "description": "General information",
48
+ "type": "object",
49
+ "properties": {
50
+ "sourceOrigin": {
51
+ "title": "Source Origin",
52
+ "description": "Source Origin states which tool was used to create the service definition",
53
+ "type": "string",
54
+ "enum": [
55
+ "abapDevelopmentTools",
56
+ "customCdsViews",
57
+ "customAnalyticalQueries",
58
+ "customBusinessObject",
59
+ "customCodeList",
60
+ "customCdsViewsVariantConfg",
61
+ "customFields",
62
+ "extensionsForDataSources",
63
+ "customSearchModeler",
64
+ "serviceConsumptionModel"
65
+ ],
66
+ "enumTitles": [
67
+ "ABAP Development Tools",
68
+ "Custom CDS Views",
69
+ "Custom Analytical Queries",
70
+ "Custom Business Object",
71
+ "Custom Code List",
72
+ "Custom CDS Views for Variant Configurations",
73
+ "Custom Fields",
74
+ "Extensions for Data Sources",
75
+ "Custom Search Modeler",
76
+ "Service Consumption Model"
77
+ ],
78
+ "enumDescriptions": [
79
+ "ABAP Development Tools",
80
+ "Custom CDS views",
81
+ "Custom analytical queries",
82
+ "Custom business object",
83
+ "Custom code list",
84
+ "Custom CDS views for variant configurations",
85
+ "Custom fields",
86
+ "Extensions for data sources",
87
+ "Custom search modeler",
88
+ "Service Consumption Model"
89
+ ],
90
+ "default": "abapDevelopmentTools"
91
+ },
92
+ "sourceType": {
93
+ "title": "Source Type",
94
+ "description": "Source type states which statement is in the service definition.",
95
+ "type": "string",
96
+ "enum": ["definition", "extension"],
97
+ "enumTitles": ["Definition", "Extension"],
98
+ "enumDescriptions": ["Definition", "Extension"],
99
+ "default": "definition"
100
+ }
101
+ },
102
+ "additionalProperties": false,
103
+ "required": ["sourceOrigin", "sourceType"]
104
+ }
105
+ },
106
+ "additionalProperties": false,
107
+ "required": ["formatVersion", "header", "generalInformation"]
108
+ }
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Validates only the header portion of AFF metadata for a given type.
3
+ * This is useful at create time when we only have description/language, not the full object metadata.
4
+ * Returns `{ valid: true }` if validation passes, no schema exists, or no header sub-schema is defined.
5
+ */
6
+ export declare function validateAffHeader(type: string, header: Record<string, unknown>): {
7
+ valid: boolean;
8
+ errors?: string[];
9
+ };
10
+ /**
11
+ * Resets the internal validator cache. Useful for testing.
12
+ */
13
+ export declare function resetValidatorCache(): void;
14
+ //# sourceMappingURL=validator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"validator.d.ts","sourceRoot":"","sources":["../../src/aff/validator.ts"],"names":[],"mappings":"AAuCA;;;;GAIG;AACH,wBAAgB,iBAAiB,CAC/B,IAAI,EAAE,MAAM,EACZ,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAC9B;IAAE,KAAK,EAAE,OAAO,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,EAAE,CAAA;CAAE,CAyBvC;AAcD;;GAEG;AACH,wBAAgB,mBAAmB,IAAI,IAAI,CAG1C"}