@xyd-js/core 0.1.0-xyd.7 → 0.1.0-xyd.9
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.
- package/CHANGELOG.md +12 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/types/settings.ts +4 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
package/src/types/settings.ts
CHANGED
|
@@ -276,7 +276,10 @@ export interface API {
|
|
|
276
276
|
// A string or an array of strings of URL(s) or relative path(s) pointing to your GraphQL file.
|
|
277
277
|
graphql?: APIFile
|
|
278
278
|
|
|
279
|
-
//
|
|
279
|
+
// A string or an array of strings of URL(s) or relative path(s) pointing to your source code folder.
|
|
280
|
+
sources?: APIFile
|
|
281
|
+
|
|
282
|
+
// TODO: better in the future? -> move outside of API ?
|
|
280
283
|
match?: {
|
|
281
284
|
graphql?: string
|
|
282
285
|
openapi?: string
|