@ludo.ninja/api 2.8.72 → 2.8.74
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/build/graphql_tools/__generated__/adminHost/schema.d.ts +8 -0
- package/build/graphql_tools/__generated__/tapHost/schema.d.ts +525 -0
- package/build/graphql_tools/__generated__/tapHost/schema.js +315 -0
- package/build/index.d.ts +72 -1
- package/build/index.js +5 -2
- package/package.json +1 -1
- package/src/graphql_tools/__generated__/adminHost/schema.ts +10 -0
- package/src/graphql_tools/__generated__/tapHost/schema.ts +698 -0
- package/src/index.ts +5 -2
- package/tsconfig.tsbuildinfo +1 -1
package/src/index.ts
CHANGED
|
@@ -14,6 +14,7 @@ import * as opportunitiesSchema from "./graphql_tools/__generated__/opportunitie
|
|
|
14
14
|
import * as preferencesSchema from "./graphql_tools/__generated__/preferencesHost/schema";
|
|
15
15
|
import * as searchSchema from "./graphql_tools/__generated__/searchHost/schema";
|
|
16
16
|
import * as formsSchema from "./graphql_tools/__generated__/formsHost/schema";
|
|
17
|
+
import * as tapsSchema from "./graphql_tools/__generated__/tapHost/schema";
|
|
17
18
|
|
|
18
19
|
const schema = {
|
|
19
20
|
...adminSchema,
|
|
@@ -28,7 +29,8 @@ const schema = {
|
|
|
28
29
|
...opportunitiesSchema,
|
|
29
30
|
...preferencesSchema,
|
|
30
31
|
...searchSchema,
|
|
31
|
-
...formsSchema
|
|
32
|
+
...formsSchema,
|
|
33
|
+
...tapsSchema
|
|
32
34
|
}
|
|
33
35
|
|
|
34
36
|
export {
|
|
@@ -48,5 +50,6 @@ export {
|
|
|
48
50
|
opportunitiesSchema,
|
|
49
51
|
preferencesSchema,
|
|
50
52
|
searchSchema,
|
|
51
|
-
formsSchema
|
|
53
|
+
formsSchema,
|
|
54
|
+
tapsSchema
|
|
52
55
|
};
|