@axinom/mosaic-user-auth 0.5.4 → 0.5.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/UserServiceClient/UserServiceClient.d.ts.map +1 -1
- package/dist/common/assertError.d.ts +8 -0
- package/dist/common/assertError.d.ts.map +1 -1
- package/dist/common/stringify-gql-query.d.ts +1 -1
- package/dist/common/stringify-gql-query.d.ts.map +1 -1
- package/dist/common/types.d.ts +10 -3
- package/dist/common/types.d.ts.map +1 -1
- package/dist/generated/ax-auth-management-graphql.types.d.ts +109 -109
- package/dist/generated/ax-auth-management-graphql.types.d.ts.map +1 -1
- package/dist/generated/user-service-end-user-graphql.types.d.ts +56 -56
- package/dist/generated/user-service-end-user-graphql.types.d.ts.map +1 -1
- package/dist/generated/user-service-management-graphql.types.d.ts +180 -180
- package/dist/generated/user-service-management-graphql.types.d.ts.map +1 -1
- package/dist/index.es.js +97 -108
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +116 -107
- package/dist/index.js.map +1 -1
- package/dist/util/endUserApplication.d.ts.map +1 -1
- package/dist/util/userAuth.d.ts.map +1 -1
- package/package.json +8 -8
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
|
|
2
|
-
export
|
|
3
|
-
export
|
|
2
|
+
export type Maybe<T> = T | null;
|
|
3
|
+
export type Exact<T extends {
|
|
4
4
|
[key: string]: unknown;
|
|
5
5
|
}> = {
|
|
6
6
|
[K in keyof T]: T[K];
|
|
7
7
|
};
|
|
8
8
|
/** All built-in and custom scalars, mapped to their actual values */
|
|
9
|
-
export
|
|
9
|
+
export type Scalars = {
|
|
10
10
|
ID: string;
|
|
11
11
|
String: string;
|
|
12
12
|
Boolean: boolean;
|
|
@@ -27,7 +27,7 @@ export declare type Scalars = {
|
|
|
27
27
|
UUID: any;
|
|
28
28
|
};
|
|
29
29
|
/** A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’ */
|
|
30
|
-
export
|
|
30
|
+
export type BooleanFilter = {
|
|
31
31
|
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
32
32
|
distinctFrom?: Maybe<Scalars['Boolean']>;
|
|
33
33
|
/** Equal to the specified value. */
|
|
@@ -51,29 +51,29 @@ export declare type BooleanFilter = {
|
|
|
51
51
|
/** Not included in the specified list. */
|
|
52
52
|
notIn?: Maybe<Array<Scalars['Boolean']>>;
|
|
53
53
|
};
|
|
54
|
-
export
|
|
54
|
+
export type CheckEndUserPasswordResetOtpInput = {
|
|
55
55
|
resetOtp: Scalars['String'];
|
|
56
56
|
};
|
|
57
|
-
export
|
|
57
|
+
export type CheckEndUserPasswordResetOtpPayload = {
|
|
58
58
|
__typename?: 'CheckEndUserPasswordResetOtpPayload';
|
|
59
59
|
isOtpValid: Scalars['Boolean'];
|
|
60
60
|
};
|
|
61
|
-
export
|
|
61
|
+
export type CheckEndUserSignUpOtpInput = {
|
|
62
62
|
signUpOtp: Scalars['String'];
|
|
63
63
|
};
|
|
64
|
-
export
|
|
64
|
+
export type CheckEndUserSignUpOtpPayload = {
|
|
65
65
|
__typename?: 'CheckEndUserSignUpOtpPayload';
|
|
66
66
|
isOtpValid: Scalars['Boolean'];
|
|
67
67
|
};
|
|
68
|
-
export
|
|
68
|
+
export type CompleteEndUserPasswordResetInput = {
|
|
69
69
|
newPassword: Scalars['String'];
|
|
70
70
|
resetOtp: Scalars['String'];
|
|
71
71
|
};
|
|
72
|
-
export
|
|
72
|
+
export type CompleteEndUserPasswordResetPayload = {
|
|
73
73
|
__typename?: 'CompleteEndUserPasswordResetPayload';
|
|
74
74
|
idpUserId: Scalars['UUID'];
|
|
75
75
|
};
|
|
76
|
-
export
|
|
76
|
+
export type CompleteEndUserSignUpInput = {
|
|
77
77
|
/**
|
|
78
78
|
* The password for the user must be provided either at this point or
|
|
79
79
|
* in InitiateEndUserSignUp mutation.
|
|
@@ -85,12 +85,12 @@ export declare type CompleteEndUserSignUpInput = {
|
|
|
85
85
|
password?: Maybe<Scalars['String']>;
|
|
86
86
|
signUpOtp: Scalars['String'];
|
|
87
87
|
};
|
|
88
|
-
export
|
|
88
|
+
export type CompleteEndUserSignUpPayload = {
|
|
89
89
|
__typename?: 'CompleteEndUserSignUpPayload';
|
|
90
90
|
idpUserId: Scalars['UUID'];
|
|
91
91
|
};
|
|
92
92
|
/** All input for the create `IdpUser` mutation. */
|
|
93
|
-
export
|
|
93
|
+
export type CreateIdpUserInput = {
|
|
94
94
|
/**
|
|
95
95
|
* An arbitrary string value with no semantic meaning. Will be included in the
|
|
96
96
|
* payload verbatim. May be used to track mutations by the client.
|
|
@@ -100,7 +100,7 @@ export declare type CreateIdpUserInput = {
|
|
|
100
100
|
idpUser: IdpUserInput;
|
|
101
101
|
};
|
|
102
102
|
/** The output of our create `IdpUser` mutation. */
|
|
103
|
-
export
|
|
103
|
+
export type CreateIdpUserPayload = {
|
|
104
104
|
__typename?: 'CreateIdpUserPayload';
|
|
105
105
|
/**
|
|
106
106
|
* The exact same `clientMutationId` that was provided in the mutation input,
|
|
@@ -117,11 +117,11 @@ export declare type CreateIdpUserPayload = {
|
|
|
117
117
|
query?: Maybe<Query>;
|
|
118
118
|
};
|
|
119
119
|
/** The output of our create `IdpUser` mutation. */
|
|
120
|
-
export
|
|
120
|
+
export type CreateIdpUserPayloadIdpUserEdgeArgs = {
|
|
121
121
|
orderBy?: Maybe<Array<IdpUsersOrderBy>>;
|
|
122
122
|
};
|
|
123
123
|
/** All input for the create `IdpUserStore` mutation. */
|
|
124
|
-
export
|
|
124
|
+
export type CreateIdpUserStoreInput = {
|
|
125
125
|
/**
|
|
126
126
|
* An arbitrary string value with no semantic meaning. Will be included in the
|
|
127
127
|
* payload verbatim. May be used to track mutations by the client.
|
|
@@ -131,7 +131,7 @@ export declare type CreateIdpUserStoreInput = {
|
|
|
131
131
|
idpUserStore: IdpUserStoreInput;
|
|
132
132
|
};
|
|
133
133
|
/** The output of our create `IdpUserStore` mutation. */
|
|
134
|
-
export
|
|
134
|
+
export type CreateIdpUserStorePayload = {
|
|
135
135
|
__typename?: 'CreateIdpUserStorePayload';
|
|
136
136
|
/**
|
|
137
137
|
* The exact same `clientMutationId` that was provided in the mutation input,
|
|
@@ -146,11 +146,11 @@ export declare type CreateIdpUserStorePayload = {
|
|
|
146
146
|
query?: Maybe<Query>;
|
|
147
147
|
};
|
|
148
148
|
/** The output of our create `IdpUserStore` mutation. */
|
|
149
|
-
export
|
|
149
|
+
export type CreateIdpUserStorePayloadIdpUserStoreEdgeArgs = {
|
|
150
150
|
orderBy?: Maybe<Array<IdpUserStoresOrderBy>>;
|
|
151
151
|
};
|
|
152
152
|
/** A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’ */
|
|
153
|
-
export
|
|
153
|
+
export type DatetimeFilter = {
|
|
154
154
|
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
155
155
|
distinctFrom?: Maybe<Scalars['Datetime']>;
|
|
156
156
|
/** Equal to the specified value. */
|
|
@@ -175,7 +175,7 @@ export declare type DatetimeFilter = {
|
|
|
175
175
|
notIn?: Maybe<Array<Scalars['Datetime']>>;
|
|
176
176
|
};
|
|
177
177
|
/** All input for the `deleteIdpUser` mutation. */
|
|
178
|
-
export
|
|
178
|
+
export type DeleteIdpUserInput = {
|
|
179
179
|
/**
|
|
180
180
|
* An arbitrary string value with no semantic meaning. Will be included in the
|
|
181
181
|
* payload verbatim. May be used to track mutations by the client.
|
|
@@ -184,7 +184,7 @@ export declare type DeleteIdpUserInput = {
|
|
|
184
184
|
id: Scalars['UUID'];
|
|
185
185
|
};
|
|
186
186
|
/** The output of our delete `IdpUser` mutation. */
|
|
187
|
-
export
|
|
187
|
+
export type DeleteIdpUserPayload = {
|
|
188
188
|
__typename?: 'DeleteIdpUserPayload';
|
|
189
189
|
/**
|
|
190
190
|
* The exact same `clientMutationId` that was provided in the mutation input,
|
|
@@ -202,11 +202,11 @@ export declare type DeleteIdpUserPayload = {
|
|
|
202
202
|
query?: Maybe<Query>;
|
|
203
203
|
};
|
|
204
204
|
/** The output of our delete `IdpUser` mutation. */
|
|
205
|
-
export
|
|
205
|
+
export type DeleteIdpUserPayloadIdpUserEdgeArgs = {
|
|
206
206
|
orderBy?: Maybe<Array<IdpUsersOrderBy>>;
|
|
207
207
|
};
|
|
208
208
|
/** All input for the `deleteIdpUserStore` mutation. */
|
|
209
|
-
export
|
|
209
|
+
export type DeleteIdpUserStoreInput = {
|
|
210
210
|
/**
|
|
211
211
|
* An arbitrary string value with no semantic meaning. Will be included in the
|
|
212
212
|
* payload verbatim. May be used to track mutations by the client.
|
|
@@ -215,7 +215,7 @@ export declare type DeleteIdpUserStoreInput = {
|
|
|
215
215
|
id: Scalars['UUID'];
|
|
216
216
|
};
|
|
217
217
|
/** The output of our delete `IdpUserStore` mutation. */
|
|
218
|
-
export
|
|
218
|
+
export type DeleteIdpUserStorePayload = {
|
|
219
219
|
__typename?: 'DeleteIdpUserStorePayload';
|
|
220
220
|
/**
|
|
221
221
|
* The exact same `clientMutationId` that was provided in the mutation input,
|
|
@@ -231,10 +231,10 @@ export declare type DeleteIdpUserStorePayload = {
|
|
|
231
231
|
query?: Maybe<Query>;
|
|
232
232
|
};
|
|
233
233
|
/** The output of our delete `IdpUserStore` mutation. */
|
|
234
|
-
export
|
|
234
|
+
export type DeleteIdpUserStorePayloadIdpUserStoreEdgeArgs = {
|
|
235
235
|
orderBy?: Maybe<Array<IdpUserStoresOrderBy>>;
|
|
236
236
|
};
|
|
237
|
-
export
|
|
237
|
+
export type EnvironmentClientMapping = {
|
|
238
238
|
__typename?: 'EnvironmentClientMapping';
|
|
239
239
|
clientId: Scalars['String'];
|
|
240
240
|
environmentId: Scalars['UUID'];
|
|
@@ -247,7 +247,7 @@ export declare type EnvironmentClientMapping = {
|
|
|
247
247
|
* A condition to be used against `EnvironmentClientMapping` object types. All
|
|
248
248
|
* fields are tested for equality and combined with a logical ‘and.’
|
|
249
249
|
*/
|
|
250
|
-
export
|
|
250
|
+
export type EnvironmentClientMappingCondition = {
|
|
251
251
|
/** Checks for equality with the object’s `clientId` field. */
|
|
252
252
|
clientId?: Maybe<Scalars['String']>;
|
|
253
253
|
/** Checks for equality with the object’s `environmentId` field. */
|
|
@@ -258,7 +258,7 @@ export declare type EnvironmentClientMappingCondition = {
|
|
|
258
258
|
tenantId?: Maybe<Scalars['UUID']>;
|
|
259
259
|
};
|
|
260
260
|
/** A filter to be used against `EnvironmentClientMapping` object types. All fields are combined with a logical ‘and.’ */
|
|
261
|
-
export
|
|
261
|
+
export type EnvironmentClientMappingFilter = {
|
|
262
262
|
/** Checks for all expressions in this list. */
|
|
263
263
|
and?: Maybe<Array<EnvironmentClientMappingFilter>>;
|
|
264
264
|
/** Filter by the object’s `clientId` field. */
|
|
@@ -277,7 +277,7 @@ export declare type EnvironmentClientMappingFilter = {
|
|
|
277
277
|
tenantId?: Maybe<UuidFilter>;
|
|
278
278
|
};
|
|
279
279
|
/** A connection to a list of `EnvironmentClientMapping` values. */
|
|
280
|
-
export
|
|
280
|
+
export type EnvironmentClientMappingsConnection = {
|
|
281
281
|
__typename?: 'EnvironmentClientMappingsConnection';
|
|
282
282
|
/** A list of edges which contains the `EnvironmentClientMapping` and cursor to aid in pagination. */
|
|
283
283
|
edges: Array<EnvironmentClientMappingsEdge>;
|
|
@@ -289,7 +289,7 @@ export declare type EnvironmentClientMappingsConnection = {
|
|
|
289
289
|
totalCount: Scalars['Int'];
|
|
290
290
|
};
|
|
291
291
|
/** A `EnvironmentClientMapping` edge in the connection. */
|
|
292
|
-
export
|
|
292
|
+
export type EnvironmentClientMappingsEdge = {
|
|
293
293
|
__typename?: 'EnvironmentClientMappingsEdge';
|
|
294
294
|
/** A cursor for use in pagination. */
|
|
295
295
|
cursor?: Maybe<Scalars['Cursor']>;
|
|
@@ -310,14 +310,14 @@ export declare enum EnvironmentClientMappingsOrderBy {
|
|
|
310
310
|
TENANT_ID_ASC = "TENANT_ID_ASC",
|
|
311
311
|
TENANT_ID_DESC = "TENANT_ID_DESC"
|
|
312
312
|
}
|
|
313
|
-
export
|
|
313
|
+
export type GenerateOAuthClientSecretInput = {
|
|
314
314
|
clientId: Scalars['String'];
|
|
315
315
|
};
|
|
316
|
-
export
|
|
316
|
+
export type GenerateOAuthClientSecretPayload = {
|
|
317
317
|
__typename?: 'GenerateOAuthClientSecretPayload';
|
|
318
318
|
newClientSecret: Scalars['String'];
|
|
319
319
|
};
|
|
320
|
-
export
|
|
320
|
+
export type IdpUser = {
|
|
321
321
|
__typename?: 'IdpUser';
|
|
322
322
|
createdAt: Scalars['Datetime'];
|
|
323
323
|
createdBy: Scalars['String'];
|
|
@@ -339,7 +339,7 @@ export declare type IdpUser = {
|
|
|
339
339
|
updatedBy: Scalars['String'];
|
|
340
340
|
};
|
|
341
341
|
/** A condition to be used against `IdpUser` object types. All fields are tested for equality and combined with a logical ‘and.’ */
|
|
342
|
-
export
|
|
342
|
+
export type IdpUserCondition = {
|
|
343
343
|
/** Checks for equality with the object’s `createdAt` field. */
|
|
344
344
|
createdAt?: Maybe<Scalars['Datetime']>;
|
|
345
345
|
/** Checks for equality with the object’s `createdBy` field. */
|
|
@@ -374,7 +374,7 @@ export declare type IdpUserCondition = {
|
|
|
374
374
|
updatedBy?: Maybe<Scalars['String']>;
|
|
375
375
|
};
|
|
376
376
|
/** A filter to be used against `IdpUser` object types. All fields are combined with a logical ‘and.’ */
|
|
377
|
-
export
|
|
377
|
+
export type IdpUserFilter = {
|
|
378
378
|
/** Checks for all expressions in this list. */
|
|
379
379
|
and?: Maybe<Array<IdpUserFilter>>;
|
|
380
380
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -417,7 +417,7 @@ export declare type IdpUserFilter = {
|
|
|
417
417
|
updatedBy?: Maybe<StringFilter>;
|
|
418
418
|
};
|
|
419
419
|
/** An input for mutations affecting `IdpUser` */
|
|
420
|
-
export
|
|
420
|
+
export type IdpUserInput = {
|
|
421
421
|
email: Scalars['String'];
|
|
422
422
|
emailVerified?: Maybe<Scalars['Boolean']>;
|
|
423
423
|
firstName?: Maybe<Scalars['String']>;
|
|
@@ -429,7 +429,7 @@ export declare type IdpUserInput = {
|
|
|
429
429
|
status?: Maybe<UserStatus>;
|
|
430
430
|
};
|
|
431
431
|
/** Represents an update to a `IdpUser`. Fields that are set will be updated. */
|
|
432
|
-
export
|
|
432
|
+
export type IdpUserPatch = {
|
|
433
433
|
firstName?: Maybe<Scalars['String']>;
|
|
434
434
|
idpUserStoreId?: Maybe<Scalars['UUID']>;
|
|
435
435
|
lastName?: Maybe<Scalars['String']>;
|
|
@@ -437,7 +437,7 @@ export declare type IdpUserPatch = {
|
|
|
437
437
|
status?: Maybe<UserStatus>;
|
|
438
438
|
};
|
|
439
439
|
/** A connection to a list of `IdpUser` values. */
|
|
440
|
-
export
|
|
440
|
+
export type IdpUsersConnection = {
|
|
441
441
|
__typename?: 'IdpUsersConnection';
|
|
442
442
|
/** A list of edges which contains the `IdpUser` and cursor to aid in pagination. */
|
|
443
443
|
edges: Array<IdpUsersEdge>;
|
|
@@ -449,7 +449,7 @@ export declare type IdpUsersConnection = {
|
|
|
449
449
|
totalCount: Scalars['Int'];
|
|
450
450
|
};
|
|
451
451
|
/** A `IdpUser` edge in the connection. */
|
|
452
|
-
export
|
|
452
|
+
export type IdpUsersEdge = {
|
|
453
453
|
__typename?: 'IdpUsersEdge';
|
|
454
454
|
/** A cursor for use in pagination. */
|
|
455
455
|
cursor?: Maybe<Scalars['Cursor']>;
|
|
@@ -494,7 +494,7 @@ export declare enum IdpUsersOrderBy {
|
|
|
494
494
|
UPDATED_BY_ASC = "UPDATED_BY_ASC",
|
|
495
495
|
UPDATED_BY_DESC = "UPDATED_BY_DESC"
|
|
496
496
|
}
|
|
497
|
-
export
|
|
497
|
+
export type IdpUserStore = {
|
|
498
498
|
__typename?: 'IdpUserStore';
|
|
499
499
|
category: UserStoreCategory;
|
|
500
500
|
createdAt: Scalars['Datetime'];
|
|
@@ -512,7 +512,7 @@ export declare type IdpUserStore = {
|
|
|
512
512
|
updatedBy: Scalars['String'];
|
|
513
513
|
userSignUpWebhook?: Maybe<Scalars['String']>;
|
|
514
514
|
};
|
|
515
|
-
export
|
|
515
|
+
export type IdpUserStoreEnvironmentClientMappingsArgs = {
|
|
516
516
|
after?: Maybe<Scalars['Cursor']>;
|
|
517
517
|
before?: Maybe<Scalars['Cursor']>;
|
|
518
518
|
condition?: Maybe<EnvironmentClientMappingCondition>;
|
|
@@ -522,7 +522,7 @@ export declare type IdpUserStoreEnvironmentClientMappingsArgs = {
|
|
|
522
522
|
offset?: Maybe<Scalars['Int']>;
|
|
523
523
|
orderBy?: Maybe<Array<EnvironmentClientMappingsOrderBy>>;
|
|
524
524
|
};
|
|
525
|
-
export
|
|
525
|
+
export type IdpUserStoreIdpUsersArgs = {
|
|
526
526
|
after?: Maybe<Scalars['Cursor']>;
|
|
527
527
|
before?: Maybe<Scalars['Cursor']>;
|
|
528
528
|
condition?: Maybe<IdpUserCondition>;
|
|
@@ -536,7 +536,7 @@ export declare type IdpUserStoreIdpUsersArgs = {
|
|
|
536
536
|
* A condition to be used against `IdpUserStore` object types. All fields are
|
|
537
537
|
* tested for equality and combined with a logical ‘and.’
|
|
538
538
|
*/
|
|
539
|
-
export
|
|
539
|
+
export type IdpUserStoreCondition = {
|
|
540
540
|
/** Checks for equality with the object’s `category` field. */
|
|
541
541
|
category?: Maybe<UserStoreCategory>;
|
|
542
542
|
/** Checks for equality with the object’s `createdAt` field. */
|
|
@@ -561,7 +561,7 @@ export declare type IdpUserStoreCondition = {
|
|
|
561
561
|
userSignUpWebhook?: Maybe<Scalars['String']>;
|
|
562
562
|
};
|
|
563
563
|
/** A filter to be used against `IdpUserStore` object types. All fields are combined with a logical ‘and.’ */
|
|
564
|
-
export
|
|
564
|
+
export type IdpUserStoreFilter = {
|
|
565
565
|
/** Checks for all expressions in this list. */
|
|
566
566
|
and?: Maybe<Array<IdpUserStoreFilter>>;
|
|
567
567
|
/** Filter by the object’s `category` field. */
|
|
@@ -600,21 +600,21 @@ export declare type IdpUserStoreFilter = {
|
|
|
600
600
|
userSignUpWebhook?: Maybe<StringFilter>;
|
|
601
601
|
};
|
|
602
602
|
/** An input for mutations affecting `IdpUserStore` */
|
|
603
|
-
export
|
|
603
|
+
export type IdpUserStoreInput = {
|
|
604
604
|
category?: Maybe<UserStoreCategory>;
|
|
605
605
|
forgotPasswordWebhook?: Maybe<Scalars['String']>;
|
|
606
606
|
name: Scalars['String'];
|
|
607
607
|
userSignUpWebhook?: Maybe<Scalars['String']>;
|
|
608
608
|
};
|
|
609
609
|
/** Represents an update to a `IdpUserStore`. Fields that are set will be updated. */
|
|
610
|
-
export
|
|
610
|
+
export type IdpUserStorePatch = {
|
|
611
611
|
category?: Maybe<UserStoreCategory>;
|
|
612
612
|
forgotPasswordWebhook?: Maybe<Scalars['String']>;
|
|
613
613
|
name?: Maybe<Scalars['String']>;
|
|
614
614
|
userSignUpWebhook?: Maybe<Scalars['String']>;
|
|
615
615
|
};
|
|
616
616
|
/** A connection to a list of `IdpUserStore` values. */
|
|
617
|
-
export
|
|
617
|
+
export type IdpUserStoresConnection = {
|
|
618
618
|
__typename?: 'IdpUserStoresConnection';
|
|
619
619
|
/** A list of edges which contains the `IdpUserStore` and cursor to aid in pagination. */
|
|
620
620
|
edges: Array<IdpUserStoresEdge>;
|
|
@@ -626,7 +626,7 @@ export declare type IdpUserStoresConnection = {
|
|
|
626
626
|
totalCount: Scalars['Int'];
|
|
627
627
|
};
|
|
628
628
|
/** A `IdpUserStore` edge in the connection. */
|
|
629
|
-
export
|
|
629
|
+
export type IdpUserStoresEdge = {
|
|
630
630
|
__typename?: 'IdpUserStoresEdge';
|
|
631
631
|
/** A cursor for use in pagination. */
|
|
632
632
|
cursor?: Maybe<Scalars['Cursor']>;
|
|
@@ -662,7 +662,7 @@ export declare enum IdpUserStoresOrderBy {
|
|
|
662
662
|
USER_SIGN_UP_WEBHOOK_DESC = "USER_SIGN_UP_WEBHOOK_DESC"
|
|
663
663
|
}
|
|
664
664
|
/** A filter to be used against many `EnvironmentClientMapping` object types. All fields are combined with a logical ‘and.’ */
|
|
665
|
-
export
|
|
665
|
+
export type IdpUserStoreToManyEnvironmentClientMappingFilter = {
|
|
666
666
|
/** Every related `EnvironmentClientMapping` matches the filter criteria. All fields are combined with a logical ‘and.’ */
|
|
667
667
|
every?: Maybe<EnvironmentClientMappingFilter>;
|
|
668
668
|
/** No related `EnvironmentClientMapping` matches the filter criteria. All fields are combined with a logical ‘and.’ */
|
|
@@ -671,7 +671,7 @@ export declare type IdpUserStoreToManyEnvironmentClientMappingFilter = {
|
|
|
671
671
|
some?: Maybe<EnvironmentClientMappingFilter>;
|
|
672
672
|
};
|
|
673
673
|
/** A filter to be used against many `IdpUser` object types. All fields are combined with a logical ‘and.’ */
|
|
674
|
-
export
|
|
674
|
+
export type IdpUserStoreToManyIdpUserFilter = {
|
|
675
675
|
/** Every related `IdpUser` matches the filter criteria. All fields are combined with a logical ‘and.’ */
|
|
676
676
|
every?: Maybe<IdpUserFilter>;
|
|
677
677
|
/** No related `IdpUser` matches the filter criteria. All fields are combined with a logical ‘and.’ */
|
|
@@ -679,15 +679,15 @@ export declare type IdpUserStoreToManyIdpUserFilter = {
|
|
|
679
679
|
/** Some related `IdpUser` matches the filter criteria. All fields are combined with a logical ‘and.’ */
|
|
680
680
|
some?: Maybe<IdpUserFilter>;
|
|
681
681
|
};
|
|
682
|
-
export
|
|
682
|
+
export type InitiateEndUserPasswordResetInput = {
|
|
683
683
|
email: Scalars['String'];
|
|
684
684
|
oAuthClientId: Scalars['String'];
|
|
685
685
|
};
|
|
686
|
-
export
|
|
686
|
+
export type InitiateEndUserPasswordResetPayload = {
|
|
687
687
|
__typename?: 'InitiateEndUserPasswordResetPayload';
|
|
688
688
|
idpUserId: Scalars['UUID'];
|
|
689
689
|
};
|
|
690
|
-
export
|
|
690
|
+
export type InitiateEndUserSignUpInput = {
|
|
691
691
|
customData?: Maybe<Scalars['JSON']>;
|
|
692
692
|
email: Scalars['String'];
|
|
693
693
|
firstName?: Maybe<Scalars['String']>;
|
|
@@ -702,12 +702,12 @@ export declare type InitiateEndUserSignUpInput = {
|
|
|
702
702
|
*/
|
|
703
703
|
password?: Maybe<Scalars['String']>;
|
|
704
704
|
};
|
|
705
|
-
export
|
|
705
|
+
export type InitiateEndUserSignUpPayload = {
|
|
706
706
|
__typename?: 'InitiateEndUserSignUpPayload';
|
|
707
707
|
idpUserId: Scalars['UUID'];
|
|
708
708
|
};
|
|
709
709
|
/** The root mutation type which contains root level fields which mutate data. */
|
|
710
|
-
export
|
|
710
|
+
export type Mutation = {
|
|
711
711
|
__typename?: 'Mutation';
|
|
712
712
|
/** Check End-User Password Reset Otp */
|
|
713
713
|
checkEndUserPasswordResetOtp: CheckEndUserPasswordResetOtpPayload;
|
|
@@ -739,62 +739,62 @@ export declare type Mutation = {
|
|
|
739
739
|
updateIdpUserStore?: Maybe<UpdateIdpUserStorePayload>;
|
|
740
740
|
};
|
|
741
741
|
/** The root mutation type which contains root level fields which mutate data. */
|
|
742
|
-
export
|
|
742
|
+
export type MutationCheckEndUserPasswordResetOtpArgs = {
|
|
743
743
|
input?: Maybe<CheckEndUserPasswordResetOtpInput>;
|
|
744
744
|
};
|
|
745
745
|
/** The root mutation type which contains root level fields which mutate data. */
|
|
746
|
-
export
|
|
746
|
+
export type MutationCheckEndUserSignUpOtpArgs = {
|
|
747
747
|
input?: Maybe<CheckEndUserSignUpOtpInput>;
|
|
748
748
|
};
|
|
749
749
|
/** The root mutation type which contains root level fields which mutate data. */
|
|
750
|
-
export
|
|
750
|
+
export type MutationCompleteEndUserPasswordResetArgs = {
|
|
751
751
|
input?: Maybe<CompleteEndUserPasswordResetInput>;
|
|
752
752
|
};
|
|
753
753
|
/** The root mutation type which contains root level fields which mutate data. */
|
|
754
|
-
export
|
|
754
|
+
export type MutationCompleteEndUserSignUpArgs = {
|
|
755
755
|
input?: Maybe<CompleteEndUserSignUpInput>;
|
|
756
756
|
};
|
|
757
757
|
/** The root mutation type which contains root level fields which mutate data. */
|
|
758
|
-
export
|
|
758
|
+
export type MutationCreateIdpUserArgs = {
|
|
759
759
|
input: CreateIdpUserInput;
|
|
760
760
|
};
|
|
761
761
|
/** The root mutation type which contains root level fields which mutate data. */
|
|
762
|
-
export
|
|
762
|
+
export type MutationCreateIdpUserStoreArgs = {
|
|
763
763
|
input: CreateIdpUserStoreInput;
|
|
764
764
|
};
|
|
765
765
|
/** The root mutation type which contains root level fields which mutate data. */
|
|
766
|
-
export
|
|
766
|
+
export type MutationDeleteIdpUserArgs = {
|
|
767
767
|
input: DeleteIdpUserInput;
|
|
768
768
|
};
|
|
769
769
|
/** The root mutation type which contains root level fields which mutate data. */
|
|
770
|
-
export
|
|
770
|
+
export type MutationDeleteIdpUserStoreArgs = {
|
|
771
771
|
input: DeleteIdpUserStoreInput;
|
|
772
772
|
};
|
|
773
773
|
/** The root mutation type which contains root level fields which mutate data. */
|
|
774
|
-
export
|
|
774
|
+
export type MutationGenerateOAuthClientSecretArgs = {
|
|
775
775
|
input?: Maybe<GenerateOAuthClientSecretInput>;
|
|
776
776
|
};
|
|
777
777
|
/** The root mutation type which contains root level fields which mutate data. */
|
|
778
|
-
export
|
|
778
|
+
export type MutationInitiateEndUserPasswordResetArgs = {
|
|
779
779
|
input?: Maybe<InitiateEndUserPasswordResetInput>;
|
|
780
780
|
};
|
|
781
781
|
/** The root mutation type which contains root level fields which mutate data. */
|
|
782
|
-
export
|
|
782
|
+
export type MutationInitiateEndUserSignUpArgs = {
|
|
783
783
|
input?: Maybe<InitiateEndUserSignUpInput>;
|
|
784
784
|
};
|
|
785
785
|
/** The root mutation type which contains root level fields which mutate data. */
|
|
786
|
-
export
|
|
786
|
+
export type MutationResetIdpUserPasswordArgs = {
|
|
787
787
|
input?: Maybe<ResetIdpUserPasswordInput>;
|
|
788
788
|
};
|
|
789
789
|
/** The root mutation type which contains root level fields which mutate data. */
|
|
790
|
-
export
|
|
790
|
+
export type MutationUpdateIdpUserArgs = {
|
|
791
791
|
input: UpdateIdpUserInput;
|
|
792
792
|
};
|
|
793
793
|
/** The root mutation type which contains root level fields which mutate data. */
|
|
794
|
-
export
|
|
794
|
+
export type MutationUpdateIdpUserStoreArgs = {
|
|
795
795
|
input: UpdateIdpUserStoreInput;
|
|
796
796
|
};
|
|
797
|
-
export
|
|
797
|
+
export type OAuthClient = {
|
|
798
798
|
__typename?: 'OAuthClient';
|
|
799
799
|
allowUserSignUp?: Maybe<Scalars['Boolean']>;
|
|
800
800
|
createdAt?: Maybe<Scalars['Datetime']>;
|
|
@@ -811,7 +811,7 @@ export declare type OAuthClient = {
|
|
|
811
811
|
* A condition to be used against `OAuthClient` object types. All fields are tested
|
|
812
812
|
* for equality and combined with a logical ‘and.’
|
|
813
813
|
*/
|
|
814
|
-
export
|
|
814
|
+
export type OAuthClientCondition = {
|
|
815
815
|
/** Checks for equality with the object’s `allowUserSignUp` field. */
|
|
816
816
|
allowUserSignUp?: Maybe<Scalars['Boolean']>;
|
|
817
817
|
/** Checks for equality with the object’s `createdAt` field. */
|
|
@@ -834,7 +834,7 @@ export declare type OAuthClientCondition = {
|
|
|
834
834
|
updatedBy?: Maybe<Scalars['String']>;
|
|
835
835
|
};
|
|
836
836
|
/** A filter to be used against `OAuthClient` object types. All fields are combined with a logical ‘and.’ */
|
|
837
|
-
export
|
|
837
|
+
export type OAuthClientFilter = {
|
|
838
838
|
/** Filter by the object’s `allowUserSignUp` field. */
|
|
839
839
|
allowUserSignUp?: Maybe<BooleanFilter>;
|
|
840
840
|
/** Checks for all expressions in this list. */
|
|
@@ -863,7 +863,7 @@ export declare type OAuthClientFilter = {
|
|
|
863
863
|
updatedBy?: Maybe<StringFilter>;
|
|
864
864
|
};
|
|
865
865
|
/** A connection to a list of `OAuthClient` values. */
|
|
866
|
-
export
|
|
866
|
+
export type OAuthClientsConnection = {
|
|
867
867
|
__typename?: 'OAuthClientsConnection';
|
|
868
868
|
/** A list of edges which contains the `OAuthClient` and cursor to aid in pagination. */
|
|
869
869
|
edges: Array<OAuthClientsEdge>;
|
|
@@ -875,7 +875,7 @@ export declare type OAuthClientsConnection = {
|
|
|
875
875
|
totalCount: Scalars['Int'];
|
|
876
876
|
};
|
|
877
877
|
/** A `OAuthClient` edge in the connection. */
|
|
878
|
-
export
|
|
878
|
+
export type OAuthClientsEdge = {
|
|
879
879
|
__typename?: 'OAuthClientsEdge';
|
|
880
880
|
/** A cursor for use in pagination. */
|
|
881
881
|
cursor?: Maybe<Scalars['Cursor']>;
|
|
@@ -907,7 +907,7 @@ export declare enum OAuthClientsOrderBy {
|
|
|
907
907
|
UPDATED_BY_DESC = "UPDATED_BY_DESC"
|
|
908
908
|
}
|
|
909
909
|
/** Information about pagination in a connection. */
|
|
910
|
-
export
|
|
910
|
+
export type PageInfo = {
|
|
911
911
|
__typename?: 'PageInfo';
|
|
912
912
|
/** When paginating forwards, the cursor to continue. */
|
|
913
913
|
endCursor?: Maybe<Scalars['Cursor']>;
|
|
@@ -919,7 +919,7 @@ export declare type PageInfo = {
|
|
|
919
919
|
startCursor?: Maybe<Scalars['Cursor']>;
|
|
920
920
|
};
|
|
921
921
|
/** The root query type which gives access points into the data universe. */
|
|
922
|
-
export
|
|
922
|
+
export type Query = {
|
|
923
923
|
__typename?: 'Query';
|
|
924
924
|
environmentClientMapping?: Maybe<EnvironmentClientMapping>;
|
|
925
925
|
environmentClientMappingByClientId?: Maybe<EnvironmentClientMapping>;
|
|
@@ -941,18 +941,18 @@ export declare type Query = {
|
|
|
941
941
|
query: Query;
|
|
942
942
|
};
|
|
943
943
|
/** The root query type which gives access points into the data universe. */
|
|
944
|
-
export
|
|
944
|
+
export type QueryEnvironmentClientMappingArgs = {
|
|
945
945
|
clientId: Scalars['String'];
|
|
946
946
|
environmentId: Scalars['UUID'];
|
|
947
947
|
idpUserStoreId: Scalars['UUID'];
|
|
948
948
|
tenantId: Scalars['UUID'];
|
|
949
949
|
};
|
|
950
950
|
/** The root query type which gives access points into the data universe. */
|
|
951
|
-
export
|
|
951
|
+
export type QueryEnvironmentClientMappingByClientIdArgs = {
|
|
952
952
|
clientId: Scalars['String'];
|
|
953
953
|
};
|
|
954
954
|
/** The root query type which gives access points into the data universe. */
|
|
955
|
-
export
|
|
955
|
+
export type QueryEnvironmentClientMappingsArgs = {
|
|
956
956
|
after?: Maybe<Scalars['Cursor']>;
|
|
957
957
|
before?: Maybe<Scalars['Cursor']>;
|
|
958
958
|
condition?: Maybe<EnvironmentClientMappingCondition>;
|
|
@@ -963,11 +963,11 @@ export declare type QueryEnvironmentClientMappingsArgs = {
|
|
|
963
963
|
orderBy?: Maybe<Array<EnvironmentClientMappingsOrderBy>>;
|
|
964
964
|
};
|
|
965
965
|
/** The root query type which gives access points into the data universe. */
|
|
966
|
-
export
|
|
966
|
+
export type QueryIdpUserArgs = {
|
|
967
967
|
id: Scalars['UUID'];
|
|
968
968
|
};
|
|
969
969
|
/** The root query type which gives access points into the data universe. */
|
|
970
|
-
export
|
|
970
|
+
export type QueryIdpUsersArgs = {
|
|
971
971
|
after?: Maybe<Scalars['Cursor']>;
|
|
972
972
|
before?: Maybe<Scalars['Cursor']>;
|
|
973
973
|
condition?: Maybe<IdpUserCondition>;
|
|
@@ -978,17 +978,17 @@ export declare type QueryIdpUsersArgs = {
|
|
|
978
978
|
orderBy?: Maybe<Array<IdpUsersOrderBy>>;
|
|
979
979
|
};
|
|
980
980
|
/** The root query type which gives access points into the data universe. */
|
|
981
|
-
export
|
|
981
|
+
export type QueryIdpUserStoreArgs = {
|
|
982
982
|
id: Scalars['UUID'];
|
|
983
983
|
};
|
|
984
984
|
/** The root query type which gives access points into the data universe. */
|
|
985
|
-
export
|
|
985
|
+
export type QueryIdpUserStoreByNameArgs = {
|
|
986
986
|
environmentId: Scalars['UUID'];
|
|
987
987
|
name: Scalars['String'];
|
|
988
988
|
tenantId: Scalars['UUID'];
|
|
989
989
|
};
|
|
990
990
|
/** The root query type which gives access points into the data universe. */
|
|
991
|
-
export
|
|
991
|
+
export type QueryIdpUserStoresArgs = {
|
|
992
992
|
after?: Maybe<Scalars['Cursor']>;
|
|
993
993
|
before?: Maybe<Scalars['Cursor']>;
|
|
994
994
|
condition?: Maybe<IdpUserStoreCondition>;
|
|
@@ -999,7 +999,7 @@ export declare type QueryIdpUserStoresArgs = {
|
|
|
999
999
|
orderBy?: Maybe<Array<IdpUserStoresOrderBy>>;
|
|
1000
1000
|
};
|
|
1001
1001
|
/** The root query type which gives access points into the data universe. */
|
|
1002
|
-
export
|
|
1002
|
+
export type QueryOAuthClientsArgs = {
|
|
1003
1003
|
after?: Maybe<Scalars['Cursor']>;
|
|
1004
1004
|
before?: Maybe<Scalars['Cursor']>;
|
|
1005
1005
|
condition?: Maybe<OAuthClientCondition>;
|
|
@@ -1009,16 +1009,16 @@ export declare type QueryOAuthClientsArgs = {
|
|
|
1009
1009
|
offset?: Maybe<Scalars['Int']>;
|
|
1010
1010
|
orderBy?: Maybe<Array<OAuthClientsOrderBy>>;
|
|
1011
1011
|
};
|
|
1012
|
-
export
|
|
1012
|
+
export type ResetIdpUserPasswordInput = {
|
|
1013
1013
|
id: Scalars['UUID'];
|
|
1014
1014
|
};
|
|
1015
|
-
export
|
|
1015
|
+
export type ResetIdpUserPasswordPayload = {
|
|
1016
1016
|
__typename?: 'ResetIdpUserPasswordPayload';
|
|
1017
1017
|
idpUser?: Maybe<IdpUser>;
|
|
1018
1018
|
newPassword: Scalars['String'];
|
|
1019
1019
|
};
|
|
1020
1020
|
/** A filter to be used against String fields. All fields are combined with a logical ‘and.’ */
|
|
1021
|
-
export
|
|
1021
|
+
export type StringFilter = {
|
|
1022
1022
|
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
1023
1023
|
distinctFrom?: Maybe<Scalars['String']>;
|
|
1024
1024
|
/** Not equal to the specified value, treating null like an ordinary value (case-insensitive). */
|
|
@@ -1095,7 +1095,7 @@ export declare type StringFilter = {
|
|
|
1095
1095
|
startsWithInsensitive?: Maybe<Scalars['String']>;
|
|
1096
1096
|
};
|
|
1097
1097
|
/** All input for the `updateIdpUser` mutation. */
|
|
1098
|
-
export
|
|
1098
|
+
export type UpdateIdpUserInput = {
|
|
1099
1099
|
/**
|
|
1100
1100
|
* An arbitrary string value with no semantic meaning. Will be included in the
|
|
1101
1101
|
* payload verbatim. May be used to track mutations by the client.
|
|
@@ -1106,7 +1106,7 @@ export declare type UpdateIdpUserInput = {
|
|
|
1106
1106
|
patch: IdpUserPatch;
|
|
1107
1107
|
};
|
|
1108
1108
|
/** The output of our update `IdpUser` mutation. */
|
|
1109
|
-
export
|
|
1109
|
+
export type UpdateIdpUserPayload = {
|
|
1110
1110
|
__typename?: 'UpdateIdpUserPayload';
|
|
1111
1111
|
/**
|
|
1112
1112
|
* The exact same `clientMutationId` that was provided in the mutation input,
|
|
@@ -1123,11 +1123,11 @@ export declare type UpdateIdpUserPayload = {
|
|
|
1123
1123
|
query?: Maybe<Query>;
|
|
1124
1124
|
};
|
|
1125
1125
|
/** The output of our update `IdpUser` mutation. */
|
|
1126
|
-
export
|
|
1126
|
+
export type UpdateIdpUserPayloadIdpUserEdgeArgs = {
|
|
1127
1127
|
orderBy?: Maybe<Array<IdpUsersOrderBy>>;
|
|
1128
1128
|
};
|
|
1129
1129
|
/** All input for the `updateIdpUserStore` mutation. */
|
|
1130
|
-
export
|
|
1130
|
+
export type UpdateIdpUserStoreInput = {
|
|
1131
1131
|
/**
|
|
1132
1132
|
* An arbitrary string value with no semantic meaning. Will be included in the
|
|
1133
1133
|
* payload verbatim. May be used to track mutations by the client.
|
|
@@ -1138,7 +1138,7 @@ export declare type UpdateIdpUserStoreInput = {
|
|
|
1138
1138
|
patch: IdpUserStorePatch;
|
|
1139
1139
|
};
|
|
1140
1140
|
/** The output of our update `IdpUserStore` mutation. */
|
|
1141
|
-
export
|
|
1141
|
+
export type UpdateIdpUserStorePayload = {
|
|
1142
1142
|
__typename?: 'UpdateIdpUserStorePayload';
|
|
1143
1143
|
/**
|
|
1144
1144
|
* The exact same `clientMutationId` that was provided in the mutation input,
|
|
@@ -1153,7 +1153,7 @@ export declare type UpdateIdpUserStorePayload = {
|
|
|
1153
1153
|
query?: Maybe<Query>;
|
|
1154
1154
|
};
|
|
1155
1155
|
/** The output of our update `IdpUserStore` mutation. */
|
|
1156
|
-
export
|
|
1156
|
+
export type UpdateIdpUserStorePayloadIdpUserStoreEdgeArgs = {
|
|
1157
1157
|
orderBy?: Maybe<Array<IdpUserStoresOrderBy>>;
|
|
1158
1158
|
};
|
|
1159
1159
|
export declare enum UserStatus {
|
|
@@ -1163,7 +1163,7 @@ export declare enum UserStatus {
|
|
|
1163
1163
|
BLOCKED = "BLOCKED"
|
|
1164
1164
|
}
|
|
1165
1165
|
/** A filter to be used against UserStatus fields. All fields are combined with a logical ‘and.’ */
|
|
1166
|
-
export
|
|
1166
|
+
export type UserStatusFilter = {
|
|
1167
1167
|
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
1168
1168
|
distinctFrom?: Maybe<UserStatus>;
|
|
1169
1169
|
/** Equal to the specified value. */
|
|
@@ -1194,7 +1194,7 @@ export declare enum UserStoreCategory {
|
|
|
1194
1194
|
MANAGEMENT = "MANAGEMENT"
|
|
1195
1195
|
}
|
|
1196
1196
|
/** A filter to be used against UserStoreCategory fields. All fields are combined with a logical ‘and.’ */
|
|
1197
|
-
export
|
|
1197
|
+
export type UserStoreCategoryFilter = {
|
|
1198
1198
|
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
1199
1199
|
distinctFrom?: Maybe<UserStoreCategory>;
|
|
1200
1200
|
/** Equal to the specified value. */
|
|
@@ -1219,7 +1219,7 @@ export declare type UserStoreCategoryFilter = {
|
|
|
1219
1219
|
notIn?: Maybe<Array<UserStoreCategory>>;
|
|
1220
1220
|
};
|
|
1221
1221
|
/** A filter to be used against UUID fields. All fields are combined with a logical ‘and.’ */
|
|
1222
|
-
export
|
|
1222
|
+
export type UuidFilter = {
|
|
1223
1223
|
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
1224
1224
|
distinctFrom?: Maybe<Scalars['UUID']>;
|
|
1225
1225
|
/** Equal to the specified value. */
|
|
@@ -1243,60 +1243,60 @@ export declare type UuidFilter = {
|
|
|
1243
1243
|
/** Not included in the specified list. */
|
|
1244
1244
|
notIn?: Maybe<Array<Scalars['UUID']>>;
|
|
1245
1245
|
};
|
|
1246
|
-
export
|
|
1246
|
+
export type InitiateEndUserSignUpMutationVariables = Exact<{
|
|
1247
1247
|
input: InitiateEndUserSignUpInput;
|
|
1248
1248
|
}>;
|
|
1249
|
-
export
|
|
1249
|
+
export type InitiateEndUserSignUpMutation = ({
|
|
1250
1250
|
__typename?: 'Mutation';
|
|
1251
1251
|
} & {
|
|
1252
1252
|
initiateEndUserSignUp: ({
|
|
1253
1253
|
__typename?: 'InitiateEndUserSignUpPayload';
|
|
1254
1254
|
} & Pick<InitiateEndUserSignUpPayload, 'idpUserId'>);
|
|
1255
1255
|
});
|
|
1256
|
-
export
|
|
1256
|
+
export type CheckEndUserSignUpOtpMutationVariables = Exact<{
|
|
1257
1257
|
input: CheckEndUserSignUpOtpInput;
|
|
1258
1258
|
}>;
|
|
1259
|
-
export
|
|
1259
|
+
export type CheckEndUserSignUpOtpMutation = ({
|
|
1260
1260
|
__typename?: 'Mutation';
|
|
1261
1261
|
} & {
|
|
1262
1262
|
checkEndUserSignUpOtp: ({
|
|
1263
1263
|
__typename?: 'CheckEndUserSignUpOtpPayload';
|
|
1264
1264
|
} & Pick<CheckEndUserSignUpOtpPayload, 'isOtpValid'>);
|
|
1265
1265
|
});
|
|
1266
|
-
export
|
|
1266
|
+
export type CompleteEndUserSignUpMutationVariables = Exact<{
|
|
1267
1267
|
input: CompleteEndUserSignUpInput;
|
|
1268
1268
|
}>;
|
|
1269
|
-
export
|
|
1269
|
+
export type CompleteEndUserSignUpMutation = ({
|
|
1270
1270
|
__typename?: 'Mutation';
|
|
1271
1271
|
} & {
|
|
1272
1272
|
completeEndUserSignUp: ({
|
|
1273
1273
|
__typename?: 'CompleteEndUserSignUpPayload';
|
|
1274
1274
|
} & Pick<CompleteEndUserSignUpPayload, 'idpUserId'>);
|
|
1275
1275
|
});
|
|
1276
|
-
export
|
|
1276
|
+
export type InitiateEndUserPasswordResetMutationVariables = Exact<{
|
|
1277
1277
|
input: InitiateEndUserPasswordResetInput;
|
|
1278
1278
|
}>;
|
|
1279
|
-
export
|
|
1279
|
+
export type InitiateEndUserPasswordResetMutation = ({
|
|
1280
1280
|
__typename?: 'Mutation';
|
|
1281
1281
|
} & {
|
|
1282
1282
|
initiateEndUserPasswordReset: ({
|
|
1283
1283
|
__typename?: 'InitiateEndUserPasswordResetPayload';
|
|
1284
1284
|
} & Pick<InitiateEndUserPasswordResetPayload, 'idpUserId'>);
|
|
1285
1285
|
});
|
|
1286
|
-
export
|
|
1286
|
+
export type CheckPasswordResetOtpMutationVariables = Exact<{
|
|
1287
1287
|
input: CheckEndUserPasswordResetOtpInput;
|
|
1288
1288
|
}>;
|
|
1289
|
-
export
|
|
1289
|
+
export type CheckPasswordResetOtpMutation = ({
|
|
1290
1290
|
__typename?: 'Mutation';
|
|
1291
1291
|
} & {
|
|
1292
1292
|
checkEndUserPasswordResetOtp: ({
|
|
1293
1293
|
__typename?: 'CheckEndUserPasswordResetOtpPayload';
|
|
1294
1294
|
} & Pick<CheckEndUserPasswordResetOtpPayload, 'isOtpValid'>);
|
|
1295
1295
|
});
|
|
1296
|
-
export
|
|
1296
|
+
export type CompleteEndUserPasswordResetMutationVariables = Exact<{
|
|
1297
1297
|
input: CompleteEndUserPasswordResetInput;
|
|
1298
1298
|
}>;
|
|
1299
|
-
export
|
|
1299
|
+
export type CompleteEndUserPasswordResetMutation = ({
|
|
1300
1300
|
__typename?: 'Mutation';
|
|
1301
1301
|
} & {
|
|
1302
1302
|
completeEndUserPasswordReset: ({
|