@xyd-js/core 0.1.0-xyd.8 → 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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @xyd-js/core
2
2
 
3
+ ## 0.1.0-xyd.9
4
+
5
+ ### Patch Changes
6
+
7
+ - refactor, tweaks and ui changes
8
+
3
9
  ## 0.1.0-xyd.8
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -139,6 +139,7 @@ interface API {
139
139
  info?: APIInfo;
140
140
  openapi?: APIFile;
141
141
  graphql?: APIFile;
142
+ sources?: APIFile;
142
143
  match?: {
143
144
  graphql?: string;
144
145
  openapi?: string;
package/dist/index.d.ts CHANGED
@@ -139,6 +139,7 @@ interface API {
139
139
  info?: APIInfo;
140
140
  openapi?: APIFile;
141
141
  graphql?: APIFile;
142
+ sources?: APIFile;
142
143
  match?: {
143
144
  graphql?: string;
144
145
  openapi?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyd-js/core",
3
- "version": "0.1.0-xyd.8",
3
+ "version": "0.1.0-xyd.9",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "dependencies": {},
@@ -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
- // TODO: better in the future?
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