@quesmed/types-rn 2.5.89 → 2.5.90

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quesmed/types-rn",
3
- "version": "2.5.89",
3
+ "version": "2.5.90",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "keywords": [
6
6
  "quesmed",
@@ -2,11 +2,12 @@ export * from './agora';
2
2
  export * from './contactUs';
3
3
  export * from './marksheet';
4
4
  export * from './mockTest';
5
+ export * from './notification';
5
6
  export * from './osce';
6
7
  export * from './preset';
7
8
  export * from './questionDiscussion';
9
+ export * from './stripe';
8
10
  export * from './todo';
9
11
  export * from './token';
10
12
  export * from './users';
11
13
  export * from './video';
12
- export * from './notification';
@@ -18,11 +18,12 @@ __exportStar(require("./agora"), exports);
18
18
  __exportStar(require("./contactUs"), exports);
19
19
  __exportStar(require("./marksheet"), exports);
20
20
  __exportStar(require("./mockTest"), exports);
21
+ __exportStar(require("./notification"), exports);
21
22
  __exportStar(require("./osce"), exports);
22
23
  __exportStar(require("./preset"), exports);
23
24
  __exportStar(require("./questionDiscussion"), exports);
25
+ __exportStar(require("./stripe"), exports);
24
26
  __exportStar(require("./todo"), exports);
25
27
  __exportStar(require("./token"), exports);
26
28
  __exportStar(require("./users"), exports);
27
29
  __exportStar(require("./video"), exports);
28
- __exportStar(require("./notification"), exports);
@@ -0,0 +1,6 @@
1
+ import { RootData } from '../../types';
2
+ export interface ICancelSubscriptionVar {
3
+ subscriptionId: number;
4
+ }
5
+ export type ICancelSubscriptionData = RootData<string, 'cancelSubscription'>;
6
+ export declare const CANCEL_SUBSCRIPTION: import("@apollo/client").DocumentNode;
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CANCEL_SUBSCRIPTION = void 0;
4
+ const client_1 = require("@apollo/client");
5
+ exports.CANCEL_SUBSCRIPTION = (0, client_1.gql) `
6
+ mutation Mutation($subscriptionId: Int!) {
7
+ restricted {
8
+ cancelSubscription(subscriptionId: $subscriptionId)
9
+ }
10
+ }
11
+ `;