@vocollege/app 0.0.100 → 0.0.101
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/dist/modules/VoApi/graphql.d.ts +1 -0
- package/dist/modules/VoApi/graphql.js +1 -0
- package/dist/modules/VoApi/mutations/newsletter.d.ts +1 -0
- package/dist/modules/VoApi/mutations/newsletter.js +10 -0
- package/package.json +1 -1
- package/src/modules/VoApi/graphql.ts +1 -0
- package/src/modules/VoApi/mutations/newsletter.ts +7 -0
|
@@ -22,6 +22,7 @@ export * from "./mutations/books";
|
|
|
22
22
|
export * from "./mutations/cards";
|
|
23
23
|
export * from "./mutations/events";
|
|
24
24
|
export * from "./mutations/navigation";
|
|
25
|
+
export * from "./mutations/newsletter";
|
|
25
26
|
export * from "./mutations/pages";
|
|
26
27
|
export * from "./mutations/queues";
|
|
27
28
|
export * from "./mutations/settings";
|
|
@@ -46,6 +46,7 @@ __exportStar(require("./mutations/books"), exports);
|
|
|
46
46
|
__exportStar(require("./mutations/cards"), exports);
|
|
47
47
|
__exportStar(require("./mutations/events"), exports);
|
|
48
48
|
__exportStar(require("./mutations/navigation"), exports);
|
|
49
|
+
__exportStar(require("./mutations/newsletter"), exports);
|
|
49
50
|
__exportStar(require("./mutations/pages"), exports);
|
|
50
51
|
__exportStar(require("./mutations/queues"), exports);
|
|
51
52
|
__exportStar(require("./mutations/settings"), exports);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const SUBSCRIBE_TO_NEWSLETTER: import("@apollo/client").DocumentNode;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
3
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
4
|
+
return cooked;
|
|
5
|
+
};
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
exports.SUBSCRIBE_TO_NEWSLETTER = void 0;
|
|
8
|
+
var client_1 = require("@apollo/client");
|
|
9
|
+
exports.SUBSCRIBE_TO_NEWSLETTER = (0, client_1.gql)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n mutation SubscribeToNewsletter($input: SubscribeToNewsletterInput!) {\n subscribeToNewsletter(input: $input)\n }\n"], ["\n mutation SubscribeToNewsletter($input: SubscribeToNewsletterInput!) {\n subscribeToNewsletter(input: $input)\n }\n"])));
|
|
10
|
+
var templateObject_1;
|
package/package.json
CHANGED
|
@@ -27,6 +27,7 @@ export * from "./mutations/books";
|
|
|
27
27
|
export * from "./mutations/cards";
|
|
28
28
|
export * from "./mutations/events";
|
|
29
29
|
export * from "./mutations/navigation";
|
|
30
|
+
export * from "./mutations/newsletter";
|
|
30
31
|
export * from "./mutations/pages";
|
|
31
32
|
export * from "./mutations/queues";
|
|
32
33
|
export * from "./mutations/settings";
|