@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 +15 -0
- package/dist/graphql/mutations.d.ts +1 -0
- package/dist/graphql/mutations.js +8 -0
- package/package.json +1 -1
- package/dist/graphql/index.ts +0 -5
- package/dist/graphql/mutations.ts +0 -3532
- package/dist/graphql/queries.ts +0 -2126
- package/dist/graphql/schema.json +0 -10628
- package/dist/graphql/subscriptions.ts +0 -2950
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