@nldoc/openapi-test-set-generator 1.2.25 → 1.3.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 (64) hide show
  1. package/README.md +39 -0
  2. package/dist/commands/extract-examples.js +8 -8
  3. package/dist/commands/extract-examples.js.map +1 -1
  4. package/dist/lib/condition/schema/schemaPropertyChecker.d.ts +2 -3
  5. package/dist/lib/condition/schema/schemaPropertyChecker.js +8 -1
  6. package/dist/lib/condition/schema/schemaPropertyChecker.js.map +1 -1
  7. package/dist/lib/condition/schemaPropertySelector.d.ts +7 -8
  8. package/dist/lib/condition/schemaPropertySelector.js +31 -7
  9. package/dist/lib/condition/schemaPropertySelector.js.map +1 -1
  10. package/dist/lib/isJsonObject.d.ts +2 -0
  11. package/dist/lib/isJsonObject.js +4 -0
  12. package/dist/lib/isJsonObject.js.map +1 -0
  13. package/dist/lib/modification/createExampleVariantsFromSchemaOnQueries.d.ts +5 -5
  14. package/dist/lib/modification/createExampleVariantsFromSchemaOnQueries.js +3 -1
  15. package/dist/lib/modification/createExampleVariantsFromSchemaOnQueries.js.map +1 -1
  16. package/dist/lib/modification/createExampleVariantsFromSchemaOnQuery.d.ts +6 -5
  17. package/dist/lib/modification/createExampleVariantsFromSchemaOnQuery.js +3 -0
  18. package/dist/lib/modification/createExampleVariantsFromSchemaOnQuery.js.map +1 -1
  19. package/dist/lib/modification/createExampleVariantsFromSchemasOnQueries.d.ts +5 -5
  20. package/dist/lib/modification/createExampleVariantsFromSchemasOnQueries.js +5 -5
  21. package/dist/lib/modification/createExampleVariantsFromSchemasOnQueries.js.map +1 -1
  22. package/dist/lib/modification/modifyPropertyInExample.d.ts +8 -7
  23. package/dist/lib/modification/modifyPropertyInExample.js +33 -15
  24. package/dist/lib/modification/modifyPropertyInExample.js.map +1 -1
  25. package/dist/lib/modification/modifyPropertyInSchemaExamples.d.ts +7 -10
  26. package/dist/lib/modification/modifyPropertyInSchemaExamples.js +35 -13
  27. package/dist/lib/modification/modifyPropertyInSchemaExamples.js.map +1 -1
  28. package/dist/lib/openapi/PropertyResolver.d.ts +2 -2
  29. package/dist/lib/openapi/PropertyResolver.js.map +1 -1
  30. package/dist/lib/openapi/SchemaPropertyResolver.d.ts +32 -9
  31. package/dist/lib/openapi/SchemaPropertyResolver.js +71 -17
  32. package/dist/lib/openapi/SchemaPropertyResolver.js.map +1 -1
  33. package/dist/lib/openapi/extractSchemaObjectsWithExamples.d.ts +6 -0
  34. package/dist/lib/openapi/extractSchemaObjectsWithExamples.js +10 -0
  35. package/dist/lib/openapi/extractSchemaObjectsWithExamples.js.map +1 -0
  36. package/dist/lib/openapi/isReferenceObject.d.ts +2 -0
  37. package/dist/lib/openapi/isReferenceObject.js +4 -0
  38. package/dist/lib/openapi/isReferenceObject.js.map +1 -0
  39. package/dist/lib/openapi/isSchemaObject.d.ts +2 -0
  40. package/dist/lib/openapi/isSchemaObject.js +4 -0
  41. package/dist/lib/openapi/isSchemaObject.js.map +1 -0
  42. package/dist/lib/openapi/isSchemaObjectWithExamples.d.ts +4 -0
  43. package/dist/lib/openapi/isSchemaObjectWithExamples.js +8 -0
  44. package/dist/lib/openapi/isSchemaObjectWithExamples.js.map +1 -0
  45. package/dist/lib/openapi/isSchemaObjectWithProperties.d.ts +4 -0
  46. package/dist/lib/openapi/isSchemaObjectWithProperties.js +9 -0
  47. package/dist/lib/openapi/isSchemaObjectWithProperties.js.map +1 -0
  48. package/dist/types/InputFile.d.ts +32 -32
  49. package/dist/types/condition/SchemaPropertySelectorCondition.d.ts +8 -8
  50. package/dist/types/modification/SchemaPropertyVariantQuery.d.ts +16 -16
  51. package/dist/types/openapi/HasExamples.d.ts +4 -0
  52. package/dist/types/openapi/HasExamples.js +2 -0
  53. package/dist/types/openapi/HasExamples.js.map +1 -0
  54. package/package.json +1 -1
  55. package/LICENSE.txt +0 -287
  56. package/dist/lib/openapi/extractObjectSchemasWithExamples.d.ts +0 -8
  57. package/dist/lib/openapi/extractObjectSchemasWithExamples.js +0 -16
  58. package/dist/lib/openapi/extractObjectSchemasWithExamples.js.map +0 -1
  59. package/dist/types/openapi/HasObjectExamples.d.ts +0 -4
  60. package/dist/types/openapi/HasObjectExamples.js +0 -2
  61. package/dist/types/openapi/HasObjectExamples.js.map +0 -1
  62. package/dist/types/openapi/HasResolvedProperties.d.ts +0 -4
  63. package/dist/types/openapi/HasResolvedProperties.js +0 -2
  64. package/dist/types/openapi/HasResolvedProperties.js.map +0 -1
@@ -85,12 +85,14 @@ export declare const SchemaPropertyVariantQuery: z.ZodObject<{
85
85
  $ne?: string | null | undefined;
86
86
  $in?: (string | null)[] | undefined;
87
87
  } | undefined;
88
+ required?: boolean | undefined;
89
+ hasDefault?: boolean | undefined;
88
90
  format?: {
89
91
  $eq?: string | null | undefined;
90
92
  $ne?: string | null | undefined;
91
93
  $in?: (string | null)[] | undefined;
92
94
  } | undefined;
93
- maxLength?: {
95
+ minLength?: {
94
96
  $gte?: number | undefined;
95
97
  $lte?: number | undefined;
96
98
  $lt?: number | undefined;
@@ -99,7 +101,7 @@ export declare const SchemaPropertyVariantQuery: z.ZodObject<{
99
101
  $ne?: number | null | undefined;
100
102
  $in?: (number | null)[] | undefined;
101
103
  } | undefined;
102
- minLength?: {
104
+ maxLength?: {
103
105
  $gte?: number | undefined;
104
106
  $lte?: number | undefined;
105
107
  $lt?: number | undefined;
@@ -108,20 +110,20 @@ export declare const SchemaPropertyVariantQuery: z.ZodObject<{
108
110
  $ne?: number | null | undefined;
109
111
  $in?: (number | null)[] | undefined;
110
112
  } | undefined;
111
- required?: boolean | undefined;
112
- hasDefault?: boolean | undefined;
113
113
  }, {
114
114
  type?: {
115
115
  $eq?: string | null | undefined;
116
116
  $ne?: string | null | undefined;
117
117
  $in?: (string | null)[] | undefined;
118
118
  } | undefined;
119
+ required?: boolean | undefined;
120
+ hasDefault?: boolean | undefined;
119
121
  format?: {
120
122
  $eq?: string | null | undefined;
121
123
  $ne?: string | null | undefined;
122
124
  $in?: (string | null)[] | undefined;
123
125
  } | undefined;
124
- maxLength?: {
126
+ minLength?: {
125
127
  $gte?: number | undefined;
126
128
  $lte?: number | undefined;
127
129
  $lt?: number | undefined;
@@ -130,7 +132,7 @@ export declare const SchemaPropertyVariantQuery: z.ZodObject<{
130
132
  $ne?: number | null | undefined;
131
133
  $in?: (number | null)[] | undefined;
132
134
  } | undefined;
133
- minLength?: {
135
+ maxLength?: {
134
136
  $gte?: number | undefined;
135
137
  $lte?: number | undefined;
136
138
  $lt?: number | undefined;
@@ -139,8 +141,6 @@ export declare const SchemaPropertyVariantQuery: z.ZodObject<{
139
141
  $ne?: number | null | undefined;
140
142
  $in?: (number | null)[] | undefined;
141
143
  } | undefined;
142
- required?: boolean | undefined;
143
- hasDefault?: boolean | undefined;
144
144
  }>>;
145
145
  do: z.ZodDefault<z.ZodObject<{
146
146
  set: z.ZodOptional<z.ZodType<import("../Json.js").Json, z.ZodTypeDef, import("../Json.js").Json>>;
@@ -161,12 +161,14 @@ export declare const SchemaPropertyVariantQuery: z.ZodObject<{
161
161
  $ne?: string | null | undefined;
162
162
  $in?: (string | null)[] | undefined;
163
163
  } | undefined;
164
+ required?: boolean | undefined;
165
+ hasDefault?: boolean | undefined;
164
166
  format?: {
165
167
  $eq?: string | null | undefined;
166
168
  $ne?: string | null | undefined;
167
169
  $in?: (string | null)[] | undefined;
168
170
  } | undefined;
169
- maxLength?: {
171
+ minLength?: {
170
172
  $gte?: number | undefined;
171
173
  $lte?: number | undefined;
172
174
  $lt?: number | undefined;
@@ -175,7 +177,7 @@ export declare const SchemaPropertyVariantQuery: z.ZodObject<{
175
177
  $ne?: number | null | undefined;
176
178
  $in?: (number | null)[] | undefined;
177
179
  } | undefined;
178
- minLength?: {
180
+ maxLength?: {
179
181
  $gte?: number | undefined;
180
182
  $lte?: number | undefined;
181
183
  $lt?: number | undefined;
@@ -184,8 +186,6 @@ export declare const SchemaPropertyVariantQuery: z.ZodObject<{
184
186
  $ne?: number | null | undefined;
185
187
  $in?: (number | null)[] | undefined;
186
188
  } | undefined;
187
- required?: boolean | undefined;
188
- hasDefault?: boolean | undefined;
189
189
  };
190
190
  do: {
191
191
  set?: import("../Json.js").Json | undefined;
@@ -199,12 +199,14 @@ export declare const SchemaPropertyVariantQuery: z.ZodObject<{
199
199
  $ne?: string | null | undefined;
200
200
  $in?: (string | null)[] | undefined;
201
201
  } | undefined;
202
+ required?: boolean | undefined;
203
+ hasDefault?: boolean | undefined;
202
204
  format?: {
203
205
  $eq?: string | null | undefined;
204
206
  $ne?: string | null | undefined;
205
207
  $in?: (string | null)[] | undefined;
206
208
  } | undefined;
207
- maxLength?: {
209
+ minLength?: {
208
210
  $gte?: number | undefined;
209
211
  $lte?: number | undefined;
210
212
  $lt?: number | undefined;
@@ -213,7 +215,7 @@ export declare const SchemaPropertyVariantQuery: z.ZodObject<{
213
215
  $ne?: number | null | undefined;
214
216
  $in?: (number | null)[] | undefined;
215
217
  } | undefined;
216
- minLength?: {
218
+ maxLength?: {
217
219
  $gte?: number | undefined;
218
220
  $lte?: number | undefined;
219
221
  $lt?: number | undefined;
@@ -222,8 +224,6 @@ export declare const SchemaPropertyVariantQuery: z.ZodObject<{
222
224
  $ne?: number | null | undefined;
223
225
  $in?: (number | null)[] | undefined;
224
226
  } | undefined;
225
- required?: boolean | undefined;
226
- hasDefault?: boolean | undefined;
227
227
  } | undefined;
228
228
  do?: {
229
229
  set?: import("../Json.js").Json | undefined;
@@ -0,0 +1,4 @@
1
+ import { type Json } from '../Json.js';
2
+ export interface HasExamples {
3
+ examples: Json[];
4
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=HasExamples.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"HasExamples.js","sourceRoot":"","sources":["../../../src/types/openapi/HasExamples.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nldoc/openapi-test-set-generator",
3
- "version": "1.2.25",
3
+ "version": "1.3.0",
4
4
  "description": "OpenApi test set generator",
5
5
  "author": "NLdoc",
6
6
  "license": "EUPL-1.2",
package/LICENSE.txt DELETED
@@ -1,287 +0,0 @@
1
- EUROPEAN UNION PUBLIC LICENCE v. 1.2
2
- EUPL © the European Union 2007, 2016
3
-
4
- This European Union Public Licence (the ‘EUPL’) applies to the Work (as defined
5
- below) which is provided under the terms of this Licence. Any use of the Work,
6
- other than as authorised under this Licence is prohibited (to the extent such
7
- use is covered by a right of the copyright holder of the Work).
8
-
9
- The Work is provided under the terms of this Licence when the Licensor (as
10
- defined below) has placed the following notice immediately following the
11
- copyright notice for the Work:
12
-
13
- Licensed under the EUPL
14
-
15
- or has expressed by any other means his willingness to license under the EUPL.
16
-
17
- 1. Definitions
18
-
19
- In this Licence, the following terms have the following meaning:
20
-
21
- - ‘The Licence’: this Licence.
22
-
23
- - ‘The Original Work’: the work or software distributed or communicated by the
24
- Licensor under this Licence, available as Source Code and also as Executable
25
- Code as the case may be.
26
-
27
- - ‘Derivative Works’: the works or software that could be created by the
28
- Licensee, based upon the Original Work or modifications thereof. This Licence
29
- does not define the extent of modification or dependence on the Original Work
30
- required in order to classify a work as a Derivative Work; this extent is
31
- determined by copyright law applicable in the country mentioned in Article 15.
32
-
33
- - ‘The Work’: the Original Work or its Derivative Works.
34
-
35
- - ‘The Source Code’: the human-readable form of the Work which is the most
36
- convenient for people to study and modify.
37
-
38
- - ‘The Executable Code’: any code which has generally been compiled and which is
39
- meant to be interpreted by a computer as a program.
40
-
41
- - ‘The Licensor’: the natural or legal person that distributes or communicates
42
- the Work under the Licence.
43
-
44
- - ‘Contributor(s)’: any natural or legal person who modifies the Work under the
45
- Licence, or otherwise contributes to the creation of a Derivative Work.
46
-
47
- - ‘The Licensee’ or ‘You’: any natural or legal person who makes any usage of
48
- the Work under the terms of the Licence.
49
-
50
- - ‘Distribution’ or ‘Communication’: any act of selling, giving, lending,
51
- renting, distributing, communicating, transmitting, or otherwise making
52
- available, online or offline, copies of the Work or providing access to its
53
- essential functionalities at the disposal of any other natural or legal
54
- person.
55
-
56
- 2. Scope of the rights granted by the Licence
57
-
58
- The Licensor hereby grants You a worldwide, royalty-free, non-exclusive,
59
- sublicensable licence to do the following, for the duration of copyright vested
60
- in the Original Work:
61
-
62
- - use the Work in any circumstance and for all usage,
63
- - reproduce the Work,
64
- - modify the Work, and make Derivative Works based upon the Work,
65
- - communicate to the public, including the right to make available or display
66
- the Work or copies thereof to the public and perform publicly, as the case may
67
- be, the Work,
68
- - distribute the Work or copies thereof,
69
- - lend and rent the Work or copies thereof,
70
- - sublicense rights in the Work or copies thereof.
71
-
72
- Those rights can be exercised on any media, supports and formats, whether now
73
- known or later invented, as far as the applicable law permits so.
74
-
75
- In the countries where moral rights apply, the Licensor waives his right to
76
- exercise his moral right to the extent allowed by law in order to make effective
77
- the licence of the economic rights here above listed.
78
-
79
- The Licensor grants to the Licensee royalty-free, non-exclusive usage rights to
80
- any patents held by the Licensor, to the extent necessary to make use of the
81
- rights granted on the Work under this Licence.
82
-
83
- 3. Communication of the Source Code
84
-
85
- The Licensor may provide the Work either in its Source Code form, or as
86
- Executable Code. If the Work is provided as Executable Code, the Licensor
87
- provides in addition a machine-readable copy of the Source Code of the Work
88
- along with each copy of the Work that the Licensor distributes or indicates, in
89
- a notice following the copyright notice attached to the Work, a repository where
90
- the Source Code is easily and freely accessible for as long as the Licensor
91
- continues to distribute or communicate the Work.
92
-
93
- 4. Limitations on copyright
94
-
95
- Nothing in this Licence is intended to deprive the Licensee of the benefits from
96
- any exception or limitation to the exclusive rights of the rights owners in the
97
- Work, of the exhaustion of those rights or of other applicable limitations
98
- thereto.
99
-
100
- 5. Obligations of the Licensee
101
-
102
- The grant of the rights mentioned above is subject to some restrictions and
103
- obligations imposed on the Licensee. Those obligations are the following:
104
-
105
- Attribution right: The Licensee shall keep intact all copyright, patent or
106
- trademarks notices and all notices that refer to the Licence and to the
107
- disclaimer of warranties. The Licensee must include a copy of such notices and a
108
- copy of the Licence with every copy of the Work he/she distributes or
109
- communicates. The Licensee must cause any Derivative Work to carry prominent
110
- notices stating that the Work has been modified and the date of modification.
111
-
112
- Copyleft clause: If the Licensee distributes or communicates copies of the
113
- Original Works or Derivative Works, this Distribution or Communication will be
114
- done under the terms of this Licence or of a later version of this Licence
115
- unless the Original Work is expressly distributed only under this version of the
116
- Licence — for example by communicating ‘EUPL v. 1.2 only’. The Licensee
117
- (becoming Licensor) cannot offer or impose any additional terms or conditions on
118
- the Work or Derivative Work that alter or restrict the terms of the Licence.
119
-
120
- Compatibility clause: If the Licensee Distributes or Communicates Derivative
121
- Works or copies thereof based upon both the Work and another work licensed under
122
- a Compatible Licence, this Distribution or Communication can be done under the
123
- terms of this Compatible Licence. For the sake of this clause, ‘Compatible
124
- Licence’ refers to the licences listed in the appendix attached to this Licence.
125
- Should the Licensee's obligations under the Compatible Licence conflict with
126
- his/her obligations under this Licence, the obligations of the Compatible
127
- Licence shall prevail.
128
-
129
- Provision of Source Code: When distributing or communicating copies of the Work,
130
- the Licensee will provide a machine-readable copy of the Source Code or indicate
131
- a repository where this Source will be easily and freely available for as long
132
- as the Licensee continues to distribute or communicate the Work.
133
-
134
- Legal Protection: This Licence does not grant permission to use the trade names,
135
- trademarks, service marks, or names of the Licensor, except as required for
136
- reasonable and customary use in describing the origin of the Work and
137
- reproducing the content of the copyright notice.
138
-
139
- 6. Chain of Authorship
140
-
141
- The original Licensor warrants that the copyright in the Original Work granted
142
- hereunder is owned by him/her or licensed to him/her and that he/she has the
143
- power and authority to grant the Licence.
144
-
145
- Each Contributor warrants that the copyright in the modifications he/she brings
146
- to the Work are owned by him/her or licensed to him/her and that he/she has the
147
- power and authority to grant the Licence.
148
-
149
- Each time You accept the Licence, the original Licensor and subsequent
150
- Contributors grant You a licence to their contributions to the Work, under the
151
- terms of this Licence.
152
-
153
- 7. Disclaimer of Warranty
154
-
155
- The Work is a work in progress, which is continuously improved by numerous
156
- Contributors. It is not a finished work and may therefore contain defects or
157
- ‘bugs’ inherent to this type of development.
158
-
159
- For the above reason, the Work is provided under the Licence on an ‘as is’ basis
160
- and without warranties of any kind concerning the Work, including without
161
- limitation merchantability, fitness for a particular purpose, absence of defects
162
- or errors, accuracy, non-infringement of intellectual property rights other than
163
- copyright as stated in Article 6 of this Licence.
164
-
165
- This disclaimer of warranty is an essential part of the Licence and a condition
166
- for the grant of any rights to the Work.
167
-
168
- 8. Disclaimer of Liability
169
-
170
- Except in the cases of wilful misconduct or damages directly caused to natural
171
- persons, the Licensor will in no event be liable for any direct or indirect,
172
- material or moral, damages of any kind, arising out of the Licence or of the use
173
- of the Work, including without limitation, damages for loss of goodwill, work
174
- stoppage, computer failure or malfunction, loss of data or any commercial
175
- damage, even if the Licensor has been advised of the possibility of such damage.
176
- However, the Licensor will be liable under statutory product liability laws as
177
- far such laws apply to the Work.
178
-
179
- 9. Additional agreements
180
-
181
- While distributing the Work, You may choose to conclude an additional agreement,
182
- defining obligations or services consistent with this Licence. However, if
183
- accepting obligations, You may act only on your own behalf and on your sole
184
- responsibility, not on behalf of the original Licensor or any other Contributor,
185
- and only if You agree to indemnify, defend, and hold each Contributor harmless
186
- for any liability incurred by, or claims asserted against such Contributor by
187
- the fact You have accepted any warranty or additional liability.
188
-
189
- 10. Acceptance of the Licence
190
-
191
- The provisions of this Licence can be accepted by clicking on an icon ‘I agree’
192
- placed under the bottom of a window displaying the text of this Licence or by
193
- affirming consent in any other similar way, in accordance with the rules of
194
- applicable law. Clicking on that icon indicates your clear and irrevocable
195
- acceptance of this Licence and all of its terms and conditions.
196
-
197
- Similarly, you irrevocably accept this Licence and all of its terms and
198
- conditions by exercising any rights granted to You by Article 2 of this Licence,
199
- such as the use of the Work, the creation by You of a Derivative Work or the
200
- Distribution or Communication by You of the Work or copies thereof.
201
-
202
- 11. Information to the public
203
-
204
- In case of any Distribution or Communication of the Work by means of electronic
205
- communication by You (for example, by offering to download the Work from a
206
- remote location) the distribution channel or media (for example, a website) must
207
- at least provide to the public the information requested by the applicable law
208
- regarding the Licensor, the Licence and the way it may be accessible, concluded,
209
- stored and reproduced by the Licensee.
210
-
211
- 12. Termination of the Licence
212
-
213
- The Licence and the rights granted hereunder will terminate automatically upon
214
- any breach by the Licensee of the terms of the Licence.
215
-
216
- Such a termination will not terminate the licences of any person who has
217
- received the Work from the Licensee under the Licence, provided such persons
218
- remain in full compliance with the Licence.
219
-
220
- 13. Miscellaneous
221
-
222
- Without prejudice of Article 9 above, the Licence represents the complete
223
- agreement between the Parties as to the Work.
224
-
225
- If any provision of the Licence is invalid or unenforceable under applicable
226
- law, this will not affect the validity or enforceability of the Licence as a
227
- whole. Such provision will be construed or reformed so as necessary to make it
228
- valid and enforceable.
229
-
230
- The European Commission may publish other linguistic versions or new versions of
231
- this Licence or updated versions of the Appendix, so far this is required and
232
- reasonable, without reducing the scope of the rights granted by the Licence. New
233
- versions of the Licence will be published with a unique version number.
234
-
235
- All linguistic versions of this Licence, approved by the European Commission,
236
- have identical value. Parties can take advantage of the linguistic version of
237
- their choice.
238
-
239
- 14. Jurisdiction
240
-
241
- Without prejudice to specific agreement between parties,
242
-
243
- - any litigation resulting from the interpretation of this License, arising
244
- between the European Union institutions, bodies, offices or agencies, as a
245
- Licensor, and any Licensee, will be subject to the jurisdiction of the Court
246
- of Justice of the European Union, as laid down in article 272 of the Treaty on
247
- the Functioning of the European Union,
248
-
249
- - any litigation arising between other parties and resulting from the
250
- interpretation of this License, will be subject to the exclusive jurisdiction
251
- of the competent court where the Licensor resides or conducts its primary
252
- business.
253
-
254
- 15. Applicable Law
255
-
256
- Without prejudice to specific agreement between parties,
257
-
258
- - this Licence shall be governed by the law of the European Union Member State
259
- where the Licensor has his seat, resides or has his registered office,
260
-
261
- - this licence shall be governed by Belgian law if the Licensor has no seat,
262
- residence or registered office inside a European Union Member State.
263
-
264
- Appendix
265
-
266
- ‘Compatible Licences’ according to Article 5 EUPL are:
267
-
268
- - GNU General Public License (GPL) v. 2, v. 3
269
- - GNU Affero General Public License (AGPL) v. 3
270
- - Open Software License (OSL) v. 2.1, v. 3.0
271
- - Eclipse Public License (EPL) v. 1.0
272
- - CeCILL v. 2.0, v. 2.1
273
- - Mozilla Public Licence (MPL) v. 2
274
- - GNU Lesser General Public Licence (LGPL) v. 2.1, v. 3
275
- - Creative Commons Attribution-ShareAlike v. 3.0 Unported (CC BY-SA 3.0) for
276
- works other than software
277
- - European Union Public Licence (EUPL) v. 1.1, v. 1.2
278
- - Québec Free and Open-Source Licence — Reciprocity (LiLiQ-R) or Strong
279
- Reciprocity (LiLiQ-R+).
280
-
281
- The European Commission may update this Appendix to later versions of the above
282
- licences without producing a new version of the EUPL, as long as they provide
283
- the rights granted in Article 2 of this Licence and protect the covered Source
284
- Code from exclusive appropriation.
285
-
286
- All other changes or additions to this Appendix require the production of a new
287
- EUPL version.
@@ -1,8 +0,0 @@
1
- import { type OpenAPIObject, type SchemaObject } from 'openapi3-ts/oas31.js';
2
- import { type HasObjectExamples } from '../../types/openapi/HasObjectExamples.js';
3
- type SchemaWithExamples = SchemaObject & HasObjectExamples;
4
- export declare function extractObjectSchemasWithExamples(openApi: OpenAPIObject): Promise<{
5
- key: string;
6
- schema: SchemaWithExamples;
7
- }[]>;
8
- export {};
@@ -1,16 +0,0 @@
1
- import { JsonObject } from '../../types/Json.js';
2
- import { z } from 'zod';
3
- const isSchemaObjectWithExamples = (schema) => 'examples' in schema[1] && (schema[1].examples?.length ?? 0) > 0 && schema[1].type === 'object';
4
- export async function extractObjectSchemasWithExamples(openApi) {
5
- const promisedSchemas = Object.entries(openApi.components?.schemas ?? {})
6
- .filter(isSchemaObjectWithExamples)
7
- .map((schema) => z
8
- .array(JsonObject)
9
- .parseAsync(schema[1].examples)
10
- .then((examples) => ({
11
- key: schema[0],
12
- schema: { ...schema[1], examples: examples },
13
- })));
14
- return Promise.all(promisedSchemas);
15
- }
16
- //# sourceMappingURL=extractObjectSchemasWithExamples.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"extractObjectSchemasWithExamples.js","sourceRoot":"","sources":["../../../src/lib/openapi/extractObjectSchemasWithExamples.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAA;AAChD,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAKvB,MAAM,0BAA0B,GAAG,CAC/B,MAAgD,EAChB,EAAE,CAClC,UAAU,IAAI,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE,MAAM,IAAI,CAAC,CAAC,GAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,CAAC,IAAI,KAAK,QAAQ,CAAA;AAEnG,MAAM,CAAC,KAAK,UAAU,gCAAgC,CAClD,OAAsB;IAEtB,MAAM,eAAe,GAA2D,MAAM,CAAC,OAAO,CAC1F,OAAO,CAAC,UAAU,EAAE,OAAO,IAAI,EAAE,CACpC;SACI,MAAM,CAAC,0BAA0B,CAAC;SAClC,GAAG,CACA,CAAC,MAAM,EAAwD,EAAE,CAC7D,CAAC;SACI,KAAK,CAAC,UAAU,CAAC;SACjB,UAAU,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC;SAC9B,IAAI,CAAC,CAAC,QAAsB,EAAE,EAAE,CAAC,CAAC;QAC/B,GAAG,EAAE,MAAM,CAAC,CAAC,CAAC;QACd,MAAM,EAAE,EAAE,GAAG,MAAM,CAAC,CAAC,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE;KAC/C,CAAC,CAAC,CACd,CAAA;IAEL,OAAO,OAAO,CAAC,GAAG,CAAC,eAAe,CAAC,CAAA;AACvC,CAAC"}
@@ -1,4 +0,0 @@
1
- import { type JsonObject } from '../Json.js';
2
- export interface HasObjectExamples {
3
- examples: JsonObject[];
4
- }
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=HasObjectExamples.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"HasObjectExamples.js","sourceRoot":"","sources":["../../../src/types/openapi/HasObjectExamples.ts"],"names":[],"mappings":""}
@@ -1,4 +0,0 @@
1
- import { type SchemaObject } from 'openapi3-ts/oas31.js';
2
- export interface HasResolvedProperties {
3
- properties?: Record<string, SchemaObject>;
4
- }
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=HasResolvedProperties.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"HasResolvedProperties.js","sourceRoot":"","sources":["../../../src/types/openapi/HasResolvedProperties.ts"],"names":[],"mappings":""}