@platelet-app/graphql 1.1.2 → 1.1.5

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/API.d.ts CHANGED
@@ -1107,6 +1107,11 @@ export declare type SendFeedback = {
1107
1107
  __typename: "SendFeedback";
1108
1108
  successState?: boolean | null;
1109
1109
  };
1110
+ export declare type StateMachineExecution = {
1111
+ __typename: "StateMachineExecution";
1112
+ executionArn?: string | null;
1113
+ startDate?: string | null;
1114
+ };
1110
1115
  export declare type ModelTenantFilterInput = {
1111
1116
  id?: ModelIDInput | null;
1112
1117
  name?: ModelStringInput | null;
@@ -4995,6 +5000,16 @@ export declare type AdminDeleteRiderResponsibilityMutation = {
4995
5000
  _lastChangedAt: number;
4996
5001
  } | null;
4997
5002
  };
5003
+ export declare type AdminDeleteUserMutationVariables = {
5004
+ userId?: string | null;
5005
+ };
5006
+ export declare type AdminDeleteUserMutation = {
5007
+ adminDeleteUser?: {
5008
+ __typename: "StateMachineExecution";
5009
+ executionArn?: string | null;
5010
+ startDate?: string | null;
5011
+ } | null;
5012
+ };
4998
5013
  export declare type GetTenantQueryVariables = {
4999
5014
  id: string;
5000
5015
  };
@@ -50,4 +50,5 @@ export declare const enableUser: GeneratedMutation<APITypes.EnableUserMutationVa
50
50
  export declare const updateUserEmail: GeneratedMutation<APITypes.UpdateUserEmailMutationVariables, APITypes.UpdateUserEmailMutation>;
51
51
  export declare const resetUserPassword: GeneratedMutation<APITypes.ResetUserPasswordMutationVariables, APITypes.ResetUserPasswordMutation>;
52
52
  export declare const adminDeleteRiderResponsibility: GeneratedMutation<APITypes.AdminDeleteRiderResponsibilityMutationVariables, APITypes.AdminDeleteRiderResponsibilityMutation>;
53
+ export declare const adminDeleteUser: GeneratedMutation<APITypes.AdminDeleteUserMutationVariables, APITypes.AdminDeleteUserMutation>;
53
54
  export {};
@@ -3382,3 +3382,11 @@ export const adminDeleteRiderResponsibility = /* GraphQL */ `mutation AdminDelet
3382
3382
  }
3383
3383
  }
3384
3384
  `;
3385
+ export const adminDeleteUser = /* GraphQL */ `mutation AdminDeleteUser($userId: ID) {
3386
+ adminDeleteUser(userId: $userId) {
3387
+ executionArn
3388
+ startDate
3389
+ __typename
3390
+ }
3391
+ }
3392
+ `;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platelet-app/graphql",
3
- "version": "1.1.2",
3
+ "version": "1.1.5",
4
4
  "description": "GraphQL operations for the platelet.app project",
5
5
  "homepage": "https://platelet.app",
6
6
  "bugs": {
@@ -1,5 +0,0 @@
1
- import * as mutations from './mutations.js';
2
- import * as queries from './queries.js';
3
- import * as subscriptions from './subscriptions.js';
4
-
5
- export { mutations, queries, subscriptions };