@xyd-js/gql 0.1.0-xyd.0 → 0.1.0-xyd.10

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 ADDED
@@ -0,0 +1,61 @@
1
+ # @xyd-js/gql
2
+
3
+ ## 0.1.0-xyd.10
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @xyd-js/core@0.1.0-xyd.10
9
+ - @xyd-js/uniform@0.1.0-xyd.12
10
+
11
+ ## 0.1.0-xyd.9
12
+
13
+ ### Patch Changes
14
+
15
+ - refactor, tweaks and ui changes
16
+ - Updated dependencies
17
+ - @xyd-js/core@0.1.0-xyd.9
18
+ - @xyd-js/uniform@0.1.0-xyd.11
19
+
20
+ ## 0.1.0-xyd.8
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies
25
+ - @xyd-js/core@0.1.0-xyd.8
26
+ - @xyd-js/uniform@0.1.0-xyd.10
27
+
28
+ ## 0.1.0-xyd.7
29
+
30
+ ### Patch Changes
31
+
32
+ - Updated dependencies
33
+ - @xyd-js/core@0.1.0-xyd.7
34
+ - @xyd-js/uniform@0.1.0-xyd.9
35
+
36
+ ## 0.1.0-xyd.6
37
+
38
+ ### Patch Changes
39
+
40
+ - use react-router 7.1.1
41
+ - Updated dependencies
42
+ - @xyd-js/core@0.1.0-xyd.6
43
+ - @xyd-js/uniform@0.1.0-xyd.8
44
+
45
+ ## 0.1.0-xyd.5
46
+
47
+ ### Patch Changes
48
+
49
+ - another update
50
+ - Updated dependencies
51
+ - @xyd-js/core@0.1.0-xyd.5
52
+ - @xyd-js/uniform@0.1.0-xyd.7
53
+
54
+ ## 0.1.0-xyd.4
55
+
56
+ ### Patch Changes
57
+
58
+ - initial changeset bump
59
+ - Updated dependencies
60
+ - @xyd-js/core@0.1.0-xyd.4
61
+ - @xyd-js/uniform@0.1.0-xyd.6
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 xyd
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,5 @@
1
+ import { Reference } from '@xyd-js/uniform';
2
+
3
+ declare function gqlSchemaToReferences(schemaLocation: string): Promise<Reference[]>;
4
+
5
+ export { gqlSchemaToReferences };