@ludo.ninja/api 2.8.35 → 2.8.36
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/index.d.ts +1243 -1
- package/build/index.js +19 -1
- package/package.json +1 -1
- package/src/index.ts +20 -1
- package/tsconfig.tsbuildinfo +1 -1
package/build/index.js
CHANGED
|
@@ -23,7 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.searchSchema = exports.preferencesSchema = exports.opportunitiesSchema = exports.mediasSchema = exports.identitySchema = exports.galleriesSchema = exports.extensionSchema = exports.experiencesSchema = exports.collectionsSchema = exports.authSchema = exports.assetSchema = exports.adminSchema = exports.authCookies = exports.graphqlConfig = exports.hosts = void 0;
|
|
26
|
+
exports.formsSchema = exports.searchSchema = exports.preferencesSchema = exports.opportunitiesSchema = exports.mediasSchema = exports.identitySchema = exports.galleriesSchema = exports.extensionSchema = exports.experiencesSchema = exports.collectionsSchema = exports.authSchema = exports.assetSchema = exports.adminSchema = exports.authCookies = exports.graphqlConfig = exports.schema = exports.hosts = void 0;
|
|
27
27
|
const hosts = __importStar(require("./hosts"));
|
|
28
28
|
exports.hosts = hosts;
|
|
29
29
|
const graphqlConfig = __importStar(require("./config"));
|
|
@@ -54,3 +54,21 @@ const preferencesSchema = __importStar(require("./graphql_tools/__generated__/pr
|
|
|
54
54
|
exports.preferencesSchema = preferencesSchema;
|
|
55
55
|
const searchSchema = __importStar(require("./graphql_tools/__generated__/searchHost/schema"));
|
|
56
56
|
exports.searchSchema = searchSchema;
|
|
57
|
+
const formsSchema = __importStar(require("./graphql_tools/__generated__/formsHost/schema"));
|
|
58
|
+
exports.formsSchema = formsSchema;
|
|
59
|
+
const schema = {
|
|
60
|
+
...adminSchema,
|
|
61
|
+
...assetSchema,
|
|
62
|
+
...authSchema,
|
|
63
|
+
...collectionsSchema,
|
|
64
|
+
...experiencesSchema,
|
|
65
|
+
...extensionSchema,
|
|
66
|
+
...galleriesSchema,
|
|
67
|
+
...identitySchema,
|
|
68
|
+
...mediasSchema,
|
|
69
|
+
...opportunitiesSchema,
|
|
70
|
+
...preferencesSchema,
|
|
71
|
+
...searchSchema,
|
|
72
|
+
...formsSchema
|
|
73
|
+
};
|
|
74
|
+
exports.schema = schema;
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -13,9 +13,27 @@ import * as mediasSchema from "./graphql_tools/__generated__/mediasHost/schema";
|
|
|
13
13
|
import * as opportunitiesSchema from "./graphql_tools/__generated__/opportunitiesHost/schema";
|
|
14
14
|
import * as preferencesSchema from "./graphql_tools/__generated__/preferencesHost/schema";
|
|
15
15
|
import * as searchSchema from "./graphql_tools/__generated__/searchHost/schema";
|
|
16
|
+
import * as formsSchema from "./graphql_tools/__generated__/formsHost/schema";
|
|
17
|
+
|
|
18
|
+
const schema = {
|
|
19
|
+
...adminSchema,
|
|
20
|
+
...assetSchema,
|
|
21
|
+
...authSchema,
|
|
22
|
+
...collectionsSchema,
|
|
23
|
+
...experiencesSchema,
|
|
24
|
+
...extensionSchema,
|
|
25
|
+
...galleriesSchema,
|
|
26
|
+
...identitySchema,
|
|
27
|
+
...mediasSchema,
|
|
28
|
+
...opportunitiesSchema,
|
|
29
|
+
...preferencesSchema,
|
|
30
|
+
...searchSchema,
|
|
31
|
+
...formsSchema
|
|
32
|
+
}
|
|
16
33
|
|
|
17
34
|
export {
|
|
18
35
|
hosts,
|
|
36
|
+
schema,
|
|
19
37
|
graphqlConfig,
|
|
20
38
|
authCookies,
|
|
21
39
|
adminSchema,
|
|
@@ -29,5 +47,6 @@ export {
|
|
|
29
47
|
mediasSchema,
|
|
30
48
|
opportunitiesSchema,
|
|
31
49
|
preferencesSchema,
|
|
32
|
-
searchSchema
|
|
50
|
+
searchSchema,
|
|
51
|
+
formsSchema
|
|
33
52
|
};
|