@quesmed/types-rn 2.5.90 → 2.5.92

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.
@@ -144,6 +144,10 @@ export interface IQuestionType {
144
144
  id: Id;
145
145
  name: string;
146
146
  }
147
+ export interface IPSAQuestionType {
148
+ id: Id;
149
+ name: string;
150
+ }
147
151
  export interface IProductsQuestion {
148
152
  id: Id;
149
153
  productId: Id;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quesmed/types-rn",
3
- "version": "2.5.90",
3
+ "version": "2.5.92",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "keywords": [
6
6
  "quesmed",
@@ -1,6 +1,6 @@
1
- import { RootData } from '../../types';
1
+ import { RestrictedData, graphqlNormalize } from '../../types';
2
2
  export interface ICancelSubscriptionVar {
3
3
  subscriptionId: number;
4
4
  }
5
- export type ICancelSubscriptionData = RootData<string, 'cancelSubscription'>;
5
+ export type ICancelSubscriptionData = RestrictedData<graphqlNormalize & string, 'cancelSubscription'>;
6
6
  export declare const CANCEL_SUBSCRIPTION: import("@apollo/client").DocumentNode;