@axinom/mosaic-user-auth 0.2.2-rc.8 → 0.3.0-rc.2

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.
Files changed (37) hide show
  1. package/dist/UserServiceClient/UserServiceClient.d.ts +166 -0
  2. package/dist/UserServiceClient/UserServiceClient.d.ts.map +1 -0
  3. package/dist/UserServiceProvider/UserServiceProvider.d.ts +28 -0
  4. package/dist/UserServiceProvider/UserServiceProvider.d.ts.map +1 -0
  5. package/dist/common/assertError.d.ts +6 -0
  6. package/dist/common/assertError.d.ts.map +1 -0
  7. package/dist/common/enums.d.ts +12 -0
  8. package/dist/common/enums.d.ts.map +1 -0
  9. package/dist/common/stringify-gql-query.d.ts +11 -0
  10. package/dist/common/stringify-gql-query.d.ts.map +1 -0
  11. package/dist/common/types.d.ts +84 -0
  12. package/dist/common/types.d.ts.map +1 -0
  13. package/dist/generated/ax-auth-management-graphql.types.d.ts +1307 -0
  14. package/dist/generated/ax-auth-management-graphql.types.d.ts.map +1 -0
  15. package/dist/generated/user-service-consumer-graphql.types.d.ts +807 -0
  16. package/dist/generated/user-service-consumer-graphql.types.d.ts.map +1 -0
  17. package/dist/generated/user-service-management-graphql.types.d.ts +2268 -0
  18. package/dist/generated/user-service-management-graphql.types.d.ts.map +1 -0
  19. package/dist/index.d.ts +5 -0
  20. package/dist/index.d.ts.map +1 -0
  21. package/dist/index.es.js +2460 -0
  22. package/dist/index.es.js.map +1 -0
  23. package/dist/index.js +2465 -0
  24. package/dist/index.js.map +1 -0
  25. package/dist/util/consumerApplication.d.ts +11 -0
  26. package/dist/util/consumerApplication.d.ts.map +1 -0
  27. package/dist/util/consumerApplication.spec.d.ts +2 -0
  28. package/dist/util/consumerApplication.spec.d.ts.map +1 -0
  29. package/dist/util/userAuth.d.ts +84 -0
  30. package/dist/util/userAuth.d.ts.map +1 -0
  31. package/dist/util/userAuth.spec.d.ts +2 -0
  32. package/dist/util/userAuth.spec.d.ts.map +1 -0
  33. package/dist/util/userProfile.d.ts +13 -0
  34. package/dist/util/userProfile.d.ts.map +1 -0
  35. package/dist/util/userProfile.spec.d.ts +2 -0
  36. package/dist/util/userProfile.spec.d.ts.map +1 -0
  37. package/package.json +7 -3
@@ -0,0 +1,1307 @@
1
+ import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
2
+ export declare type Maybe<T> = T | null;
3
+ export declare type Exact<T extends {
4
+ [key: string]: unknown;
5
+ }> = {
6
+ [K in keyof T]: T[K];
7
+ };
8
+ /** All built-in and custom scalars, mapped to their actual values */
9
+ export declare type Scalars = {
10
+ ID: string;
11
+ String: string;
12
+ Boolean: boolean;
13
+ Int: number;
14
+ Float: number;
15
+ /** A location in a connection that can be used for resuming pagination. */
16
+ Cursor: any;
17
+ /**
18
+ * A point in time as described by the [ISO
19
+ * 8601](https://en.wikipedia.org/wiki/ISO_8601) standard. May or may not include a timezone.
20
+ */
21
+ Datetime: any;
22
+ /** A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122). */
23
+ UUID: any;
24
+ };
25
+ /** A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’ */
26
+ export declare type BooleanFilter = {
27
+ /** Not equal to the specified value, treating null like an ordinary value. */
28
+ distinctFrom?: Maybe<Scalars['Boolean']>;
29
+ /** Equal to the specified value. */
30
+ equalTo?: Maybe<Scalars['Boolean']>;
31
+ /** Greater than the specified value. */
32
+ greaterThan?: Maybe<Scalars['Boolean']>;
33
+ /** Greater than or equal to the specified value. */
34
+ greaterThanOrEqualTo?: Maybe<Scalars['Boolean']>;
35
+ /** Included in the specified list. */
36
+ in?: Maybe<Array<Scalars['Boolean']>>;
37
+ /** Is null (if `true` is specified) or is not null (if `false` is specified). */
38
+ isNull?: Maybe<Scalars['Boolean']>;
39
+ /** Less than the specified value. */
40
+ lessThan?: Maybe<Scalars['Boolean']>;
41
+ /** Less than or equal to the specified value. */
42
+ lessThanOrEqualTo?: Maybe<Scalars['Boolean']>;
43
+ /** Equal to the specified value, treating null like an ordinary value. */
44
+ notDistinctFrom?: Maybe<Scalars['Boolean']>;
45
+ /** Not equal to the specified value. */
46
+ notEqualTo?: Maybe<Scalars['Boolean']>;
47
+ /** Not included in the specified list. */
48
+ notIn?: Maybe<Array<Scalars['Boolean']>>;
49
+ };
50
+ export declare type CheckConsumerPasswordResetOtpInput = {
51
+ resetOtp: Scalars['String'];
52
+ };
53
+ export declare type CheckConsumerPasswordResetOtpPayload = {
54
+ __typename?: 'CheckConsumerPasswordResetOtpPayload';
55
+ isOtpValid: Scalars['Boolean'];
56
+ };
57
+ export declare type CheckConsumerSignUpOtpInput = {
58
+ signUpOtp: Scalars['String'];
59
+ };
60
+ export declare type CheckConsumerSignUpOtpPayload = {
61
+ __typename?: 'CheckConsumerSignUpOtpPayload';
62
+ isOtpValid: Scalars['Boolean'];
63
+ };
64
+ export declare type CompleteConsumerPasswordResetInput = {
65
+ newPassword: Scalars['String'];
66
+ resetOtp: Scalars['String'];
67
+ };
68
+ export declare type CompleteConsumerPasswordResetPayload = {
69
+ __typename?: 'CompleteConsumerPasswordResetPayload';
70
+ idpUserId: Scalars['UUID'];
71
+ };
72
+ export declare type CompleteConsumerSignUpInput = {
73
+ /**
74
+ * The password for the user must be provided either at this point or
75
+ * in InitiateConsumerSignUp mutation.
76
+ * If the consumer app will enforce the user to provide it in the
77
+ * InitiateConsumerSignUp mutation the password must not be provided here.
78
+ * If not, giving a password at this point is mandatory.
79
+ * If it's given at InitiateConsumerSignUp step, then the used cannot override it here.
80
+ */
81
+ password?: Maybe<Scalars['String']>;
82
+ signUpOtp: Scalars['String'];
83
+ };
84
+ export declare type CompleteConsumerSignUpPayload = {
85
+ __typename?: 'CompleteConsumerSignUpPayload';
86
+ idpUserId: Scalars['UUID'];
87
+ };
88
+ /** All input for the create `IdpUser` mutation. */
89
+ export declare type CreateIdpUserInput = {
90
+ /**
91
+ * An arbitrary string value with no semantic meaning. Will be included in the
92
+ * payload verbatim. May be used to track mutations by the client.
93
+ */
94
+ clientMutationId?: Maybe<Scalars['String']>;
95
+ /** The `IdpUser` to be created by this mutation. */
96
+ idpUser: IdpUserInput;
97
+ };
98
+ /** The output of our create `IdpUser` mutation. */
99
+ export declare type CreateIdpUserPayload = {
100
+ __typename?: 'CreateIdpUserPayload';
101
+ /**
102
+ * The exact same `clientMutationId` that was provided in the mutation input,
103
+ * unchanged and unused. May be used by a client to track mutations.
104
+ */
105
+ clientMutationId?: Maybe<Scalars['String']>;
106
+ /** The `IdpUser` that was created by this mutation. */
107
+ idpUser?: Maybe<IdpUser>;
108
+ /** An edge for our `IdpUser`. May be used by Relay 1. */
109
+ idpUserEdge?: Maybe<IdpUsersEdge>;
110
+ /** Reads a single `IdpUserStore` that is related to this `IdpUser`. */
111
+ idpUserStore?: Maybe<IdpUserStore>;
112
+ /** Our root query field type. Allows us to run any query from our mutation payload. */
113
+ query?: Maybe<Query>;
114
+ };
115
+ /** The output of our create `IdpUser` mutation. */
116
+ export declare type CreateIdpUserPayloadIdpUserEdgeArgs = {
117
+ orderBy?: Maybe<Array<IdpUsersOrderBy>>;
118
+ };
119
+ /** All input for the create `IdpUserStore` mutation. */
120
+ export declare type CreateIdpUserStoreInput = {
121
+ /**
122
+ * An arbitrary string value with no semantic meaning. Will be included in the
123
+ * payload verbatim. May be used to track mutations by the client.
124
+ */
125
+ clientMutationId?: Maybe<Scalars['String']>;
126
+ /** The `IdpUserStore` to be created by this mutation. */
127
+ idpUserStore: IdpUserStoreInput;
128
+ };
129
+ /** The output of our create `IdpUserStore` mutation. */
130
+ export declare type CreateIdpUserStorePayload = {
131
+ __typename?: 'CreateIdpUserStorePayload';
132
+ /**
133
+ * The exact same `clientMutationId` that was provided in the mutation input,
134
+ * unchanged and unused. May be used by a client to track mutations.
135
+ */
136
+ clientMutationId?: Maybe<Scalars['String']>;
137
+ /** The `IdpUserStore` that was created by this mutation. */
138
+ idpUserStore?: Maybe<IdpUserStore>;
139
+ /** An edge for our `IdpUserStore`. May be used by Relay 1. */
140
+ idpUserStoreEdge?: Maybe<IdpUserStoresEdge>;
141
+ /** Our root query field type. Allows us to run any query from our mutation payload. */
142
+ query?: Maybe<Query>;
143
+ };
144
+ /** The output of our create `IdpUserStore` mutation. */
145
+ export declare type CreateIdpUserStorePayloadIdpUserStoreEdgeArgs = {
146
+ orderBy?: Maybe<Array<IdpUserStoresOrderBy>>;
147
+ };
148
+ /** A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’ */
149
+ export declare type DatetimeFilter = {
150
+ /** Not equal to the specified value, treating null like an ordinary value. */
151
+ distinctFrom?: Maybe<Scalars['Datetime']>;
152
+ /** Equal to the specified value. */
153
+ equalTo?: Maybe<Scalars['Datetime']>;
154
+ /** Greater than the specified value. */
155
+ greaterThan?: Maybe<Scalars['Datetime']>;
156
+ /** Greater than or equal to the specified value. */
157
+ greaterThanOrEqualTo?: Maybe<Scalars['Datetime']>;
158
+ /** Included in the specified list. */
159
+ in?: Maybe<Array<Scalars['Datetime']>>;
160
+ /** Is null (if `true` is specified) or is not null (if `false` is specified). */
161
+ isNull?: Maybe<Scalars['Boolean']>;
162
+ /** Less than the specified value. */
163
+ lessThan?: Maybe<Scalars['Datetime']>;
164
+ /** Less than or equal to the specified value. */
165
+ lessThanOrEqualTo?: Maybe<Scalars['Datetime']>;
166
+ /** Equal to the specified value, treating null like an ordinary value. */
167
+ notDistinctFrom?: Maybe<Scalars['Datetime']>;
168
+ /** Not equal to the specified value. */
169
+ notEqualTo?: Maybe<Scalars['Datetime']>;
170
+ /** Not included in the specified list. */
171
+ notIn?: Maybe<Array<Scalars['Datetime']>>;
172
+ };
173
+ /** All input for the `deleteIdpUser` mutation. */
174
+ export declare type DeleteIdpUserInput = {
175
+ /**
176
+ * An arbitrary string value with no semantic meaning. Will be included in the
177
+ * payload verbatim. May be used to track mutations by the client.
178
+ */
179
+ clientMutationId?: Maybe<Scalars['String']>;
180
+ id: Scalars['UUID'];
181
+ };
182
+ /** The output of our delete `IdpUser` mutation. */
183
+ export declare type DeleteIdpUserPayload = {
184
+ __typename?: 'DeleteIdpUserPayload';
185
+ /**
186
+ * The exact same `clientMutationId` that was provided in the mutation input,
187
+ * unchanged and unused. May be used by a client to track mutations.
188
+ */
189
+ clientMutationId?: Maybe<Scalars['String']>;
190
+ deletedIdpUserNodeId?: Maybe<Scalars['ID']>;
191
+ /** The `IdpUser` that was deleted by this mutation. */
192
+ idpUser?: Maybe<IdpUser>;
193
+ /** An edge for our `IdpUser`. May be used by Relay 1. */
194
+ idpUserEdge?: Maybe<IdpUsersEdge>;
195
+ /** Reads a single `IdpUserStore` that is related to this `IdpUser`. */
196
+ idpUserStore?: Maybe<IdpUserStore>;
197
+ /** Our root query field type. Allows us to run any query from our mutation payload. */
198
+ query?: Maybe<Query>;
199
+ };
200
+ /** The output of our delete `IdpUser` mutation. */
201
+ export declare type DeleteIdpUserPayloadIdpUserEdgeArgs = {
202
+ orderBy?: Maybe<Array<IdpUsersOrderBy>>;
203
+ };
204
+ /** All input for the `deleteIdpUserStore` mutation. */
205
+ export declare type DeleteIdpUserStoreInput = {
206
+ /**
207
+ * An arbitrary string value with no semantic meaning. Will be included in the
208
+ * payload verbatim. May be used to track mutations by the client.
209
+ */
210
+ clientMutationId?: Maybe<Scalars['String']>;
211
+ id: Scalars['UUID'];
212
+ };
213
+ /** The output of our delete `IdpUserStore` mutation. */
214
+ export declare type DeleteIdpUserStorePayload = {
215
+ __typename?: 'DeleteIdpUserStorePayload';
216
+ /**
217
+ * The exact same `clientMutationId` that was provided in the mutation input,
218
+ * unchanged and unused. May be used by a client to track mutations.
219
+ */
220
+ clientMutationId?: Maybe<Scalars['String']>;
221
+ deletedIdpUserStoreNodeId?: Maybe<Scalars['ID']>;
222
+ /** The `IdpUserStore` that was deleted by this mutation. */
223
+ idpUserStore?: Maybe<IdpUserStore>;
224
+ /** An edge for our `IdpUserStore`. May be used by Relay 1. */
225
+ idpUserStoreEdge?: Maybe<IdpUserStoresEdge>;
226
+ /** Our root query field type. Allows us to run any query from our mutation payload. */
227
+ query?: Maybe<Query>;
228
+ };
229
+ /** The output of our delete `IdpUserStore` mutation. */
230
+ export declare type DeleteIdpUserStorePayloadIdpUserStoreEdgeArgs = {
231
+ orderBy?: Maybe<Array<IdpUserStoresOrderBy>>;
232
+ };
233
+ export declare type EnvironmentClientMapping = {
234
+ __typename?: 'EnvironmentClientMapping';
235
+ clientId: Scalars['String'];
236
+ environmentId: Scalars['UUID'];
237
+ /** Reads a single `IdpUserStore` that is related to this `EnvironmentClientMapping`. */
238
+ idpUserStore?: Maybe<IdpUserStore>;
239
+ idpUserStoreId: Scalars['UUID'];
240
+ tenantId: Scalars['UUID'];
241
+ };
242
+ /**
243
+ * A condition to be used against `EnvironmentClientMapping` object types. All
244
+ * fields are tested for equality and combined with a logical ‘and.’
245
+ */
246
+ export declare type EnvironmentClientMappingCondition = {
247
+ /** Checks for equality with the object’s `clientId` field. */
248
+ clientId?: Maybe<Scalars['String']>;
249
+ /** Checks for equality with the object’s `environmentId` field. */
250
+ environmentId?: Maybe<Scalars['UUID']>;
251
+ /** Checks for equality with the object’s `idpUserStoreId` field. */
252
+ idpUserStoreId?: Maybe<Scalars['UUID']>;
253
+ /** Checks for equality with the object’s `tenantId` field. */
254
+ tenantId?: Maybe<Scalars['UUID']>;
255
+ };
256
+ /** A filter to be used against `EnvironmentClientMapping` object types. All fields are combined with a logical ‘and.’ */
257
+ export declare type EnvironmentClientMappingFilter = {
258
+ /** Checks for all expressions in this list. */
259
+ and?: Maybe<Array<EnvironmentClientMappingFilter>>;
260
+ /** Filter by the object’s `clientId` field. */
261
+ clientId?: Maybe<StringFilter>;
262
+ /** Filter by the object’s `environmentId` field. */
263
+ environmentId?: Maybe<UuidFilter>;
264
+ /** Filter by the object’s `idpUserStore` relation. */
265
+ idpUserStore?: Maybe<IdpUserStoreFilter>;
266
+ /** Filter by the object’s `idpUserStoreId` field. */
267
+ idpUserStoreId?: Maybe<UuidFilter>;
268
+ /** Negates the expression. */
269
+ not?: Maybe<EnvironmentClientMappingFilter>;
270
+ /** Checks for any expressions in this list. */
271
+ or?: Maybe<Array<EnvironmentClientMappingFilter>>;
272
+ /** Filter by the object’s `tenantId` field. */
273
+ tenantId?: Maybe<UuidFilter>;
274
+ };
275
+ /** A connection to a list of `EnvironmentClientMapping` values. */
276
+ export declare type EnvironmentClientMappingsConnection = {
277
+ __typename?: 'EnvironmentClientMappingsConnection';
278
+ /** A list of edges which contains the `EnvironmentClientMapping` and cursor to aid in pagination. */
279
+ edges: Array<EnvironmentClientMappingsEdge>;
280
+ /** A list of `EnvironmentClientMapping` objects. */
281
+ nodes: Array<EnvironmentClientMapping>;
282
+ /** Information to aid in pagination. */
283
+ pageInfo: PageInfo;
284
+ /** The count of *all* `EnvironmentClientMapping` you could get from the connection. */
285
+ totalCount: Scalars['Int'];
286
+ };
287
+ /** A `EnvironmentClientMapping` edge in the connection. */
288
+ export declare type EnvironmentClientMappingsEdge = {
289
+ __typename?: 'EnvironmentClientMappingsEdge';
290
+ /** A cursor for use in pagination. */
291
+ cursor?: Maybe<Scalars['Cursor']>;
292
+ /** The `EnvironmentClientMapping` at the end of the edge. */
293
+ node: EnvironmentClientMapping;
294
+ };
295
+ /** Methods to use when ordering `EnvironmentClientMapping`. */
296
+ export declare enum EnvironmentClientMappingsOrderBy {
297
+ CLIENT_ID_ASC = "CLIENT_ID_ASC",
298
+ CLIENT_ID_DESC = "CLIENT_ID_DESC",
299
+ ENVIRONMENT_ID_ASC = "ENVIRONMENT_ID_ASC",
300
+ ENVIRONMENT_ID_DESC = "ENVIRONMENT_ID_DESC",
301
+ IDP_USER_STORE_ID_ASC = "IDP_USER_STORE_ID_ASC",
302
+ IDP_USER_STORE_ID_DESC = "IDP_USER_STORE_ID_DESC",
303
+ NATURAL = "NATURAL",
304
+ PRIMARY_KEY_ASC = "PRIMARY_KEY_ASC",
305
+ PRIMARY_KEY_DESC = "PRIMARY_KEY_DESC",
306
+ TENANT_ID_ASC = "TENANT_ID_ASC",
307
+ TENANT_ID_DESC = "TENANT_ID_DESC"
308
+ }
309
+ export declare type GenerateOAuthClientSecretInput = {
310
+ clientId: Scalars['String'];
311
+ };
312
+ export declare type GenerateOAuthClientSecretPayload = {
313
+ __typename?: 'GenerateOAuthClientSecretPayload';
314
+ newClientSecret: Scalars['String'];
315
+ };
316
+ export declare type IdpUser = {
317
+ __typename?: 'IdpUser';
318
+ createdAt: Scalars['Datetime'];
319
+ createdBy: Scalars['String'];
320
+ email: Scalars['String'];
321
+ emailVerified: Scalars['Boolean'];
322
+ environmentId: Scalars['UUID'];
323
+ firstName: Scalars['String'];
324
+ id: Scalars['UUID'];
325
+ /** Reads a single `IdpUserStore` that is related to this `IdpUser`. */
326
+ idpUserStore?: Maybe<IdpUserStore>;
327
+ idpUserStoreId: Scalars['UUID'];
328
+ lastName: Scalars['String'];
329
+ passwordHash: Scalars['String'];
330
+ phoneNumber?: Maybe<Scalars['String']>;
331
+ profilePictureUrl?: Maybe<Scalars['String']>;
332
+ status: UserStatus;
333
+ tenantId: Scalars['UUID'];
334
+ updatedAt: Scalars['Datetime'];
335
+ updatedBy: Scalars['String'];
336
+ };
337
+ /** A condition to be used against `IdpUser` object types. All fields are tested for equality and combined with a logical ‘and.’ */
338
+ export declare type IdpUserCondition = {
339
+ /** Checks for equality with the object’s `createdAt` field. */
340
+ createdAt?: Maybe<Scalars['Datetime']>;
341
+ /** Checks for equality with the object’s `createdBy` field. */
342
+ createdBy?: Maybe<Scalars['String']>;
343
+ /** Checks for equality with the object’s `email` field. */
344
+ email?: Maybe<Scalars['String']>;
345
+ /** Checks for equality with the object’s `emailVerified` field. */
346
+ emailVerified?: Maybe<Scalars['Boolean']>;
347
+ /** Checks for equality with the object’s `environmentId` field. */
348
+ environmentId?: Maybe<Scalars['UUID']>;
349
+ /** Checks for equality with the object’s `firstName` field. */
350
+ firstName?: Maybe<Scalars['String']>;
351
+ /** Checks for equality with the object’s `id` field. */
352
+ id?: Maybe<Scalars['UUID']>;
353
+ /** Checks for equality with the object’s `idpUserStoreId` field. */
354
+ idpUserStoreId?: Maybe<Scalars['UUID']>;
355
+ /** Checks for equality with the object’s `lastName` field. */
356
+ lastName?: Maybe<Scalars['String']>;
357
+ /** Checks for equality with the object’s `passwordHash` field. */
358
+ passwordHash?: Maybe<Scalars['String']>;
359
+ /** Checks for equality with the object’s `phoneNumber` field. */
360
+ phoneNumber?: Maybe<Scalars['String']>;
361
+ /** Checks for equality with the object’s `profilePictureUrl` field. */
362
+ profilePictureUrl?: Maybe<Scalars['String']>;
363
+ /** Checks for equality with the object’s `status` field. */
364
+ status?: Maybe<UserStatus>;
365
+ /** Checks for equality with the object’s `tenantId` field. */
366
+ tenantId?: Maybe<Scalars['UUID']>;
367
+ /** Checks for equality with the object’s `updatedAt` field. */
368
+ updatedAt?: Maybe<Scalars['Datetime']>;
369
+ /** Checks for equality with the object’s `updatedBy` field. */
370
+ updatedBy?: Maybe<Scalars['String']>;
371
+ };
372
+ /** A filter to be used against `IdpUser` object types. All fields are combined with a logical ‘and.’ */
373
+ export declare type IdpUserFilter = {
374
+ /** Checks for all expressions in this list. */
375
+ and?: Maybe<Array<IdpUserFilter>>;
376
+ /** Filter by the object’s `createdAt` field. */
377
+ createdAt?: Maybe<DatetimeFilter>;
378
+ /** Filter by the object’s `createdBy` field. */
379
+ createdBy?: Maybe<StringFilter>;
380
+ /** Filter by the object’s `email` field. */
381
+ email?: Maybe<StringFilter>;
382
+ /** Filter by the object’s `emailVerified` field. */
383
+ emailVerified?: Maybe<BooleanFilter>;
384
+ /** Filter by the object’s `environmentId` field. */
385
+ environmentId?: Maybe<UuidFilter>;
386
+ /** Filter by the object’s `firstName` field. */
387
+ firstName?: Maybe<StringFilter>;
388
+ /** Filter by the object’s `id` field. */
389
+ id?: Maybe<UuidFilter>;
390
+ /** Filter by the object’s `idpUserStore` relation. */
391
+ idpUserStore?: Maybe<IdpUserStoreFilter>;
392
+ /** Filter by the object’s `idpUserStoreId` field. */
393
+ idpUserStoreId?: Maybe<UuidFilter>;
394
+ /** Filter by the object’s `lastName` field. */
395
+ lastName?: Maybe<StringFilter>;
396
+ /** Negates the expression. */
397
+ not?: Maybe<IdpUserFilter>;
398
+ /** Checks for any expressions in this list. */
399
+ or?: Maybe<Array<IdpUserFilter>>;
400
+ /** Filter by the object’s `passwordHash` field. */
401
+ passwordHash?: Maybe<StringFilter>;
402
+ /** Filter by the object’s `phoneNumber` field. */
403
+ phoneNumber?: Maybe<StringFilter>;
404
+ /** Filter by the object’s `profilePictureUrl` field. */
405
+ profilePictureUrl?: Maybe<StringFilter>;
406
+ /** Filter by the object’s `status` field. */
407
+ status?: Maybe<UserStatusFilter>;
408
+ /** Filter by the object’s `tenantId` field. */
409
+ tenantId?: Maybe<UuidFilter>;
410
+ /** Filter by the object’s `updatedAt` field. */
411
+ updatedAt?: Maybe<DatetimeFilter>;
412
+ /** Filter by the object’s `updatedBy` field. */
413
+ updatedBy?: Maybe<StringFilter>;
414
+ };
415
+ /** An input for mutations affecting `IdpUser` */
416
+ export declare type IdpUserInput = {
417
+ email: Scalars['String'];
418
+ emailVerified?: Maybe<Scalars['Boolean']>;
419
+ firstName?: Maybe<Scalars['String']>;
420
+ idpUserStoreId: Scalars['UUID'];
421
+ lastName?: Maybe<Scalars['String']>;
422
+ passwordHash: Scalars['String'];
423
+ phoneNumber?: Maybe<Scalars['String']>;
424
+ profilePictureUrl?: Maybe<Scalars['String']>;
425
+ status?: Maybe<UserStatus>;
426
+ };
427
+ /** Represents an update to a `IdpUser`. Fields that are set will be updated. */
428
+ export declare type IdpUserPatch = {
429
+ firstName?: Maybe<Scalars['String']>;
430
+ idpUserStoreId?: Maybe<Scalars['UUID']>;
431
+ lastName?: Maybe<Scalars['String']>;
432
+ profilePictureUrl?: Maybe<Scalars['String']>;
433
+ status?: Maybe<UserStatus>;
434
+ };
435
+ /** A connection to a list of `IdpUser` values. */
436
+ export declare type IdpUsersConnection = {
437
+ __typename?: 'IdpUsersConnection';
438
+ /** A list of edges which contains the `IdpUser` and cursor to aid in pagination. */
439
+ edges: Array<IdpUsersEdge>;
440
+ /** A list of `IdpUser` objects. */
441
+ nodes: Array<IdpUser>;
442
+ /** Information to aid in pagination. */
443
+ pageInfo: PageInfo;
444
+ /** The count of *all* `IdpUser` you could get from the connection. */
445
+ totalCount: Scalars['Int'];
446
+ };
447
+ /** A `IdpUser` edge in the connection. */
448
+ export declare type IdpUsersEdge = {
449
+ __typename?: 'IdpUsersEdge';
450
+ /** A cursor for use in pagination. */
451
+ cursor?: Maybe<Scalars['Cursor']>;
452
+ /** The `IdpUser` at the end of the edge. */
453
+ node: IdpUser;
454
+ };
455
+ /** Methods to use when ordering `IdpUser`. */
456
+ export declare enum IdpUsersOrderBy {
457
+ CREATED_AT_ASC = "CREATED_AT_ASC",
458
+ CREATED_AT_DESC = "CREATED_AT_DESC",
459
+ CREATED_BY_ASC = "CREATED_BY_ASC",
460
+ CREATED_BY_DESC = "CREATED_BY_DESC",
461
+ EMAIL_ASC = "EMAIL_ASC",
462
+ EMAIL_DESC = "EMAIL_DESC",
463
+ EMAIL_VERIFIED_ASC = "EMAIL_VERIFIED_ASC",
464
+ EMAIL_VERIFIED_DESC = "EMAIL_VERIFIED_DESC",
465
+ ENVIRONMENT_ID_ASC = "ENVIRONMENT_ID_ASC",
466
+ ENVIRONMENT_ID_DESC = "ENVIRONMENT_ID_DESC",
467
+ FIRST_NAME_ASC = "FIRST_NAME_ASC",
468
+ FIRST_NAME_DESC = "FIRST_NAME_DESC",
469
+ ID_ASC = "ID_ASC",
470
+ ID_DESC = "ID_DESC",
471
+ IDP_USER_STORE_ID_ASC = "IDP_USER_STORE_ID_ASC",
472
+ IDP_USER_STORE_ID_DESC = "IDP_USER_STORE_ID_DESC",
473
+ LAST_NAME_ASC = "LAST_NAME_ASC",
474
+ LAST_NAME_DESC = "LAST_NAME_DESC",
475
+ NATURAL = "NATURAL",
476
+ PASSWORD_HASH_ASC = "PASSWORD_HASH_ASC",
477
+ PASSWORD_HASH_DESC = "PASSWORD_HASH_DESC",
478
+ PHONE_NUMBER_ASC = "PHONE_NUMBER_ASC",
479
+ PHONE_NUMBER_DESC = "PHONE_NUMBER_DESC",
480
+ PRIMARY_KEY_ASC = "PRIMARY_KEY_ASC",
481
+ PRIMARY_KEY_DESC = "PRIMARY_KEY_DESC",
482
+ PROFILE_PICTURE_URL_ASC = "PROFILE_PICTURE_URL_ASC",
483
+ PROFILE_PICTURE_URL_DESC = "PROFILE_PICTURE_URL_DESC",
484
+ STATUS_ASC = "STATUS_ASC",
485
+ STATUS_DESC = "STATUS_DESC",
486
+ TENANT_ID_ASC = "TENANT_ID_ASC",
487
+ TENANT_ID_DESC = "TENANT_ID_DESC",
488
+ UPDATED_AT_ASC = "UPDATED_AT_ASC",
489
+ UPDATED_AT_DESC = "UPDATED_AT_DESC",
490
+ UPDATED_BY_ASC = "UPDATED_BY_ASC",
491
+ UPDATED_BY_DESC = "UPDATED_BY_DESC"
492
+ }
493
+ export declare type IdpUserStore = {
494
+ __typename?: 'IdpUserStore';
495
+ category: UserStoreCategory;
496
+ createdAt: Scalars['Datetime'];
497
+ createdBy: Scalars['String'];
498
+ /** Reads and enables pagination through a set of `EnvironmentClientMapping`. */
499
+ environmentClientMappings: EnvironmentClientMappingsConnection;
500
+ environmentId: Scalars['UUID'];
501
+ forgotPasswordWebhook?: Maybe<Scalars['String']>;
502
+ id: Scalars['UUID'];
503
+ /** Reads and enables pagination through a set of `IdpUser`. */
504
+ idpUsers: IdpUsersConnection;
505
+ name: Scalars['String'];
506
+ tenantId: Scalars['UUID'];
507
+ updatedAt: Scalars['Datetime'];
508
+ updatedBy: Scalars['String'];
509
+ userSignUpWebhook?: Maybe<Scalars['String']>;
510
+ };
511
+ export declare type IdpUserStoreEnvironmentClientMappingsArgs = {
512
+ after?: Maybe<Scalars['Cursor']>;
513
+ before?: Maybe<Scalars['Cursor']>;
514
+ condition?: Maybe<EnvironmentClientMappingCondition>;
515
+ filter?: Maybe<EnvironmentClientMappingFilter>;
516
+ first?: Maybe<Scalars['Int']>;
517
+ last?: Maybe<Scalars['Int']>;
518
+ offset?: Maybe<Scalars['Int']>;
519
+ orderBy?: Maybe<Array<EnvironmentClientMappingsOrderBy>>;
520
+ };
521
+ export declare type IdpUserStoreIdpUsersArgs = {
522
+ after?: Maybe<Scalars['Cursor']>;
523
+ before?: Maybe<Scalars['Cursor']>;
524
+ condition?: Maybe<IdpUserCondition>;
525
+ filter?: Maybe<IdpUserFilter>;
526
+ first?: Maybe<Scalars['Int']>;
527
+ last?: Maybe<Scalars['Int']>;
528
+ offset?: Maybe<Scalars['Int']>;
529
+ orderBy?: Maybe<Array<IdpUsersOrderBy>>;
530
+ };
531
+ /**
532
+ * A condition to be used against `IdpUserStore` object types. All fields are
533
+ * tested for equality and combined with a logical ‘and.’
534
+ */
535
+ export declare type IdpUserStoreCondition = {
536
+ /** Checks for equality with the object’s `category` field. */
537
+ category?: Maybe<UserStoreCategory>;
538
+ /** Checks for equality with the object’s `createdAt` field. */
539
+ createdAt?: Maybe<Scalars['Datetime']>;
540
+ /** Checks for equality with the object’s `createdBy` field. */
541
+ createdBy?: Maybe<Scalars['String']>;
542
+ /** Checks for equality with the object’s `environmentId` field. */
543
+ environmentId?: Maybe<Scalars['UUID']>;
544
+ /** Checks for equality with the object’s `forgotPasswordWebhook` field. */
545
+ forgotPasswordWebhook?: Maybe<Scalars['String']>;
546
+ /** Checks for equality with the object’s `id` field. */
547
+ id?: Maybe<Scalars['UUID']>;
548
+ /** Checks for equality with the object’s `name` field. */
549
+ name?: Maybe<Scalars['String']>;
550
+ /** Checks for equality with the object’s `tenantId` field. */
551
+ tenantId?: Maybe<Scalars['UUID']>;
552
+ /** Checks for equality with the object’s `updatedAt` field. */
553
+ updatedAt?: Maybe<Scalars['Datetime']>;
554
+ /** Checks for equality with the object’s `updatedBy` field. */
555
+ updatedBy?: Maybe<Scalars['String']>;
556
+ /** Checks for equality with the object’s `userSignUpWebhook` field. */
557
+ userSignUpWebhook?: Maybe<Scalars['String']>;
558
+ };
559
+ /** A filter to be used against `IdpUserStore` object types. All fields are combined with a logical ‘and.’ */
560
+ export declare type IdpUserStoreFilter = {
561
+ /** Checks for all expressions in this list. */
562
+ and?: Maybe<Array<IdpUserStoreFilter>>;
563
+ /** Filter by the object’s `category` field. */
564
+ category?: Maybe<UserStoreCategoryFilter>;
565
+ /** Filter by the object’s `createdAt` field. */
566
+ createdAt?: Maybe<DatetimeFilter>;
567
+ /** Filter by the object’s `createdBy` field. */
568
+ createdBy?: Maybe<StringFilter>;
569
+ /** Filter by the object’s `environmentClientMappings` relation. */
570
+ environmentClientMappings?: Maybe<IdpUserStoreToManyEnvironmentClientMappingFilter>;
571
+ /** Some related `environmentClientMappings` exist. */
572
+ environmentClientMappingsExist?: Maybe<Scalars['Boolean']>;
573
+ /** Filter by the object’s `environmentId` field. */
574
+ environmentId?: Maybe<UuidFilter>;
575
+ /** Filter by the object’s `forgotPasswordWebhook` field. */
576
+ forgotPasswordWebhook?: Maybe<StringFilter>;
577
+ /** Filter by the object’s `id` field. */
578
+ id?: Maybe<UuidFilter>;
579
+ /** Filter by the object’s `idpUsers` relation. */
580
+ idpUsers?: Maybe<IdpUserStoreToManyIdpUserFilter>;
581
+ /** Some related `idpUsers` exist. */
582
+ idpUsersExist?: Maybe<Scalars['Boolean']>;
583
+ /** Filter by the object’s `name` field. */
584
+ name?: Maybe<StringFilter>;
585
+ /** Negates the expression. */
586
+ not?: Maybe<IdpUserStoreFilter>;
587
+ /** Checks for any expressions in this list. */
588
+ or?: Maybe<Array<IdpUserStoreFilter>>;
589
+ /** Filter by the object’s `tenantId` field. */
590
+ tenantId?: Maybe<UuidFilter>;
591
+ /** Filter by the object’s `updatedAt` field. */
592
+ updatedAt?: Maybe<DatetimeFilter>;
593
+ /** Filter by the object’s `updatedBy` field. */
594
+ updatedBy?: Maybe<StringFilter>;
595
+ /** Filter by the object’s `userSignUpWebhook` field. */
596
+ userSignUpWebhook?: Maybe<StringFilter>;
597
+ };
598
+ /** An input for mutations affecting `IdpUserStore` */
599
+ export declare type IdpUserStoreInput = {
600
+ category?: Maybe<UserStoreCategory>;
601
+ forgotPasswordWebhook?: Maybe<Scalars['String']>;
602
+ name: Scalars['String'];
603
+ userSignUpWebhook?: Maybe<Scalars['String']>;
604
+ };
605
+ /** Represents an update to a `IdpUserStore`. Fields that are set will be updated. */
606
+ export declare type IdpUserStorePatch = {
607
+ category?: Maybe<UserStoreCategory>;
608
+ forgotPasswordWebhook?: Maybe<Scalars['String']>;
609
+ name?: Maybe<Scalars['String']>;
610
+ userSignUpWebhook?: Maybe<Scalars['String']>;
611
+ };
612
+ /** A connection to a list of `IdpUserStore` values. */
613
+ export declare type IdpUserStoresConnection = {
614
+ __typename?: 'IdpUserStoresConnection';
615
+ /** A list of edges which contains the `IdpUserStore` and cursor to aid in pagination. */
616
+ edges: Array<IdpUserStoresEdge>;
617
+ /** A list of `IdpUserStore` objects. */
618
+ nodes: Array<IdpUserStore>;
619
+ /** Information to aid in pagination. */
620
+ pageInfo: PageInfo;
621
+ /** The count of *all* `IdpUserStore` you could get from the connection. */
622
+ totalCount: Scalars['Int'];
623
+ };
624
+ /** A `IdpUserStore` edge in the connection. */
625
+ export declare type IdpUserStoresEdge = {
626
+ __typename?: 'IdpUserStoresEdge';
627
+ /** A cursor for use in pagination. */
628
+ cursor?: Maybe<Scalars['Cursor']>;
629
+ /** The `IdpUserStore` at the end of the edge. */
630
+ node: IdpUserStore;
631
+ };
632
+ /** Methods to use when ordering `IdpUserStore`. */
633
+ export declare enum IdpUserStoresOrderBy {
634
+ CATEGORY_ASC = "CATEGORY_ASC",
635
+ CATEGORY_DESC = "CATEGORY_DESC",
636
+ CREATED_AT_ASC = "CREATED_AT_ASC",
637
+ CREATED_AT_DESC = "CREATED_AT_DESC",
638
+ CREATED_BY_ASC = "CREATED_BY_ASC",
639
+ CREATED_BY_DESC = "CREATED_BY_DESC",
640
+ ENVIRONMENT_ID_ASC = "ENVIRONMENT_ID_ASC",
641
+ ENVIRONMENT_ID_DESC = "ENVIRONMENT_ID_DESC",
642
+ FORGOT_PASSWORD_WEBHOOK_ASC = "FORGOT_PASSWORD_WEBHOOK_ASC",
643
+ FORGOT_PASSWORD_WEBHOOK_DESC = "FORGOT_PASSWORD_WEBHOOK_DESC",
644
+ ID_ASC = "ID_ASC",
645
+ ID_DESC = "ID_DESC",
646
+ NAME_ASC = "NAME_ASC",
647
+ NAME_DESC = "NAME_DESC",
648
+ NATURAL = "NATURAL",
649
+ PRIMARY_KEY_ASC = "PRIMARY_KEY_ASC",
650
+ PRIMARY_KEY_DESC = "PRIMARY_KEY_DESC",
651
+ TENANT_ID_ASC = "TENANT_ID_ASC",
652
+ TENANT_ID_DESC = "TENANT_ID_DESC",
653
+ UPDATED_AT_ASC = "UPDATED_AT_ASC",
654
+ UPDATED_AT_DESC = "UPDATED_AT_DESC",
655
+ UPDATED_BY_ASC = "UPDATED_BY_ASC",
656
+ UPDATED_BY_DESC = "UPDATED_BY_DESC",
657
+ USER_SIGN_UP_WEBHOOK_ASC = "USER_SIGN_UP_WEBHOOK_ASC",
658
+ USER_SIGN_UP_WEBHOOK_DESC = "USER_SIGN_UP_WEBHOOK_DESC"
659
+ }
660
+ /** A filter to be used against many `EnvironmentClientMapping` object types. All fields are combined with a logical ‘and.’ */
661
+ export declare type IdpUserStoreToManyEnvironmentClientMappingFilter = {
662
+ /** Every related `EnvironmentClientMapping` matches the filter criteria. All fields are combined with a logical ‘and.’ */
663
+ every?: Maybe<EnvironmentClientMappingFilter>;
664
+ /** No related `EnvironmentClientMapping` matches the filter criteria. All fields are combined with a logical ‘and.’ */
665
+ none?: Maybe<EnvironmentClientMappingFilter>;
666
+ /** Some related `EnvironmentClientMapping` matches the filter criteria. All fields are combined with a logical ‘and.’ */
667
+ some?: Maybe<EnvironmentClientMappingFilter>;
668
+ };
669
+ /** A filter to be used against many `IdpUser` object types. All fields are combined with a logical ‘and.’ */
670
+ export declare type IdpUserStoreToManyIdpUserFilter = {
671
+ /** Every related `IdpUser` matches the filter criteria. All fields are combined with a logical ‘and.’ */
672
+ every?: Maybe<IdpUserFilter>;
673
+ /** No related `IdpUser` matches the filter criteria. All fields are combined with a logical ‘and.’ */
674
+ none?: Maybe<IdpUserFilter>;
675
+ /** Some related `IdpUser` matches the filter criteria. All fields are combined with a logical ‘and.’ */
676
+ some?: Maybe<IdpUserFilter>;
677
+ };
678
+ export declare type InitiateConsumerPasswordResetInput = {
679
+ email: Scalars['String'];
680
+ oAuthClientId: Scalars['String'];
681
+ };
682
+ export declare type InitiateConsumerPasswordResetPayload = {
683
+ __typename?: 'InitiateConsumerPasswordResetPayload';
684
+ idpUserId: Scalars['UUID'];
685
+ };
686
+ export declare type InitiateConsumerSignUpInput = {
687
+ email: Scalars['String'];
688
+ firstName?: Maybe<Scalars['String']>;
689
+ lastName?: Maybe<Scalars['String']>;
690
+ oAuthClientId: Scalars['String'];
691
+ /**
692
+ * The password for the user must be provided either at this point or
693
+ * in CompleteConsumerSignUp mutation.
694
+ * If the consumer app will enforce the user to provide it in the
695
+ * CompleteConsumerSignUp mutation the password does not have to be provided here.
696
+ * If not, giving a password at this point is mandatory.
697
+ */
698
+ password?: Maybe<Scalars['String']>;
699
+ };
700
+ export declare type InitiateConsumerSignUpPayload = {
701
+ __typename?: 'InitiateConsumerSignUpPayload';
702
+ idpUserId: Scalars['UUID'];
703
+ };
704
+ /** The root mutation type which contains root level fields which mutate data. */
705
+ export declare type Mutation = {
706
+ __typename?: 'Mutation';
707
+ /** Check Consumer Password Reset Otp */
708
+ checkConsumerPasswordResetOtp: CheckConsumerPasswordResetOtpPayload;
709
+ /** Check Consumer Sign Up Otp */
710
+ checkConsumerSignUpOtp: CheckConsumerSignUpOtpPayload;
711
+ /** Complete Consumer Reset Password Flow */
712
+ completeConsumerPasswordReset: CompleteConsumerPasswordResetPayload;
713
+ /** Start Sign Up as a Consumer */
714
+ completeConsumerSignUp: CompleteConsumerSignUpPayload;
715
+ /** Creates a single `IdpUser`. */
716
+ createIdpUser?: Maybe<CreateIdpUserPayload>;
717
+ /** Creates a single `IdpUserStore`. */
718
+ createIdpUserStore?: Maybe<CreateIdpUserStorePayload>;
719
+ /** Deletes a single `IdpUser` using a unique key. */
720
+ deleteIdpUser?: Maybe<DeleteIdpUserPayload>;
721
+ /** Deletes a single `IdpUserStore` using a unique key. */
722
+ deleteIdpUserStore?: Maybe<DeleteIdpUserStorePayload>;
723
+ /** Generate the client secret of an OAuth client */
724
+ generateOAuthClientSecret: GenerateOAuthClientSecretPayload;
725
+ /** Start Consumer Reset Password Flow */
726
+ initiateConsumerPasswordReset: InitiateConsumerPasswordResetPayload;
727
+ /** Initiate Sign Up as a Consumer */
728
+ initiateConsumerSignUp: InitiateConsumerSignUpPayload;
729
+ /** Reset the password of an IDP user */
730
+ resetIdpUserPassword: ResetIdpUserPasswordPayload;
731
+ /** Updates a single `IdpUser` using a unique key and a patch. */
732
+ updateIdpUser?: Maybe<UpdateIdpUserPayload>;
733
+ /** Updates a single `IdpUserStore` using a unique key and a patch. */
734
+ updateIdpUserStore?: Maybe<UpdateIdpUserStorePayload>;
735
+ };
736
+ /** The root mutation type which contains root level fields which mutate data. */
737
+ export declare type MutationCheckConsumerPasswordResetOtpArgs = {
738
+ input?: Maybe<CheckConsumerPasswordResetOtpInput>;
739
+ };
740
+ /** The root mutation type which contains root level fields which mutate data. */
741
+ export declare type MutationCheckConsumerSignUpOtpArgs = {
742
+ input?: Maybe<CheckConsumerSignUpOtpInput>;
743
+ };
744
+ /** The root mutation type which contains root level fields which mutate data. */
745
+ export declare type MutationCompleteConsumerPasswordResetArgs = {
746
+ input?: Maybe<CompleteConsumerPasswordResetInput>;
747
+ };
748
+ /** The root mutation type which contains root level fields which mutate data. */
749
+ export declare type MutationCompleteConsumerSignUpArgs = {
750
+ input?: Maybe<CompleteConsumerSignUpInput>;
751
+ };
752
+ /** The root mutation type which contains root level fields which mutate data. */
753
+ export declare type MutationCreateIdpUserArgs = {
754
+ input: CreateIdpUserInput;
755
+ };
756
+ /** The root mutation type which contains root level fields which mutate data. */
757
+ export declare type MutationCreateIdpUserStoreArgs = {
758
+ input: CreateIdpUserStoreInput;
759
+ };
760
+ /** The root mutation type which contains root level fields which mutate data. */
761
+ export declare type MutationDeleteIdpUserArgs = {
762
+ input: DeleteIdpUserInput;
763
+ };
764
+ /** The root mutation type which contains root level fields which mutate data. */
765
+ export declare type MutationDeleteIdpUserStoreArgs = {
766
+ input: DeleteIdpUserStoreInput;
767
+ };
768
+ /** The root mutation type which contains root level fields which mutate data. */
769
+ export declare type MutationGenerateOAuthClientSecretArgs = {
770
+ input?: Maybe<GenerateOAuthClientSecretInput>;
771
+ };
772
+ /** The root mutation type which contains root level fields which mutate data. */
773
+ export declare type MutationInitiateConsumerPasswordResetArgs = {
774
+ input?: Maybe<InitiateConsumerPasswordResetInput>;
775
+ };
776
+ /** The root mutation type which contains root level fields which mutate data. */
777
+ export declare type MutationInitiateConsumerSignUpArgs = {
778
+ input?: Maybe<InitiateConsumerSignUpInput>;
779
+ };
780
+ /** The root mutation type which contains root level fields which mutate data. */
781
+ export declare type MutationResetIdpUserPasswordArgs = {
782
+ input?: Maybe<ResetIdpUserPasswordInput>;
783
+ };
784
+ /** The root mutation type which contains root level fields which mutate data. */
785
+ export declare type MutationUpdateIdpUserArgs = {
786
+ input: UpdateIdpUserInput;
787
+ };
788
+ /** The root mutation type which contains root level fields which mutate data. */
789
+ export declare type MutationUpdateIdpUserStoreArgs = {
790
+ input: UpdateIdpUserStoreInput;
791
+ };
792
+ export declare type OAuthClient = {
793
+ __typename?: 'OAuthClient';
794
+ allowUserSignUp?: Maybe<Scalars['Boolean']>;
795
+ createdAt?: Maybe<Scalars['Datetime']>;
796
+ createdBy?: Maybe<Scalars['String']>;
797
+ environmentId?: Maybe<Scalars['UUID']>;
798
+ id?: Maybe<Scalars['String']>;
799
+ idpUserStoreId?: Maybe<Scalars['UUID']>;
800
+ name?: Maybe<Scalars['String']>;
801
+ tenantId?: Maybe<Scalars['UUID']>;
802
+ updatedAt?: Maybe<Scalars['Datetime']>;
803
+ updatedBy?: Maybe<Scalars['String']>;
804
+ };
805
+ /**
806
+ * A condition to be used against `OAuthClient` object types. All fields are tested
807
+ * for equality and combined with a logical ‘and.’
808
+ */
809
+ export declare type OAuthClientCondition = {
810
+ /** Checks for equality with the object’s `allowUserSignUp` field. */
811
+ allowUserSignUp?: Maybe<Scalars['Boolean']>;
812
+ /** Checks for equality with the object’s `createdAt` field. */
813
+ createdAt?: Maybe<Scalars['Datetime']>;
814
+ /** Checks for equality with the object’s `createdBy` field. */
815
+ createdBy?: Maybe<Scalars['String']>;
816
+ /** Checks for equality with the object’s `environmentId` field. */
817
+ environmentId?: Maybe<Scalars['UUID']>;
818
+ /** Checks for equality with the object’s `id` field. */
819
+ id?: Maybe<Scalars['String']>;
820
+ /** Checks for equality with the object’s `idpUserStoreId` field. */
821
+ idpUserStoreId?: Maybe<Scalars['UUID']>;
822
+ /** Checks for equality with the object’s `name` field. */
823
+ name?: Maybe<Scalars['String']>;
824
+ /** Checks for equality with the object’s `tenantId` field. */
825
+ tenantId?: Maybe<Scalars['UUID']>;
826
+ /** Checks for equality with the object’s `updatedAt` field. */
827
+ updatedAt?: Maybe<Scalars['Datetime']>;
828
+ /** Checks for equality with the object’s `updatedBy` field. */
829
+ updatedBy?: Maybe<Scalars['String']>;
830
+ };
831
+ /** A filter to be used against `OAuthClient` object types. All fields are combined with a logical ‘and.’ */
832
+ export declare type OAuthClientFilter = {
833
+ /** Filter by the object’s `allowUserSignUp` field. */
834
+ allowUserSignUp?: Maybe<BooleanFilter>;
835
+ /** Checks for all expressions in this list. */
836
+ and?: Maybe<Array<OAuthClientFilter>>;
837
+ /** Filter by the object’s `createdAt` field. */
838
+ createdAt?: Maybe<DatetimeFilter>;
839
+ /** Filter by the object’s `createdBy` field. */
840
+ createdBy?: Maybe<StringFilter>;
841
+ /** Filter by the object’s `environmentId` field. */
842
+ environmentId?: Maybe<UuidFilter>;
843
+ /** Filter by the object’s `id` field. */
844
+ id?: Maybe<StringFilter>;
845
+ /** Filter by the object’s `idpUserStoreId` field. */
846
+ idpUserStoreId?: Maybe<UuidFilter>;
847
+ /** Filter by the object’s `name` field. */
848
+ name?: Maybe<StringFilter>;
849
+ /** Negates the expression. */
850
+ not?: Maybe<OAuthClientFilter>;
851
+ /** Checks for any expressions in this list. */
852
+ or?: Maybe<Array<OAuthClientFilter>>;
853
+ /** Filter by the object’s `tenantId` field. */
854
+ tenantId?: Maybe<UuidFilter>;
855
+ /** Filter by the object’s `updatedAt` field. */
856
+ updatedAt?: Maybe<DatetimeFilter>;
857
+ /** Filter by the object’s `updatedBy` field. */
858
+ updatedBy?: Maybe<StringFilter>;
859
+ };
860
+ /** A connection to a list of `OAuthClient` values. */
861
+ export declare type OAuthClientsConnection = {
862
+ __typename?: 'OAuthClientsConnection';
863
+ /** A list of edges which contains the `OAuthClient` and cursor to aid in pagination. */
864
+ edges: Array<OAuthClientsEdge>;
865
+ /** A list of `OAuthClient` objects. */
866
+ nodes: Array<OAuthClient>;
867
+ /** Information to aid in pagination. */
868
+ pageInfo: PageInfo;
869
+ /** The count of *all* `OAuthClient` you could get from the connection. */
870
+ totalCount: Scalars['Int'];
871
+ };
872
+ /** A `OAuthClient` edge in the connection. */
873
+ export declare type OAuthClientsEdge = {
874
+ __typename?: 'OAuthClientsEdge';
875
+ /** A cursor for use in pagination. */
876
+ cursor?: Maybe<Scalars['Cursor']>;
877
+ /** The `OAuthClient` at the end of the edge. */
878
+ node: OAuthClient;
879
+ };
880
+ /** Methods to use when ordering `OAuthClient`. */
881
+ export declare enum OAuthClientsOrderBy {
882
+ ALLOW_USER_SIGN_UP_ASC = "ALLOW_USER_SIGN_UP_ASC",
883
+ ALLOW_USER_SIGN_UP_DESC = "ALLOW_USER_SIGN_UP_DESC",
884
+ CREATED_AT_ASC = "CREATED_AT_ASC",
885
+ CREATED_AT_DESC = "CREATED_AT_DESC",
886
+ CREATED_BY_ASC = "CREATED_BY_ASC",
887
+ CREATED_BY_DESC = "CREATED_BY_DESC",
888
+ ENVIRONMENT_ID_ASC = "ENVIRONMENT_ID_ASC",
889
+ ENVIRONMENT_ID_DESC = "ENVIRONMENT_ID_DESC",
890
+ ID_ASC = "ID_ASC",
891
+ ID_DESC = "ID_DESC",
892
+ IDP_USER_STORE_ID_ASC = "IDP_USER_STORE_ID_ASC",
893
+ IDP_USER_STORE_ID_DESC = "IDP_USER_STORE_ID_DESC",
894
+ NAME_ASC = "NAME_ASC",
895
+ NAME_DESC = "NAME_DESC",
896
+ NATURAL = "NATURAL",
897
+ TENANT_ID_ASC = "TENANT_ID_ASC",
898
+ TENANT_ID_DESC = "TENANT_ID_DESC",
899
+ UPDATED_AT_ASC = "UPDATED_AT_ASC",
900
+ UPDATED_AT_DESC = "UPDATED_AT_DESC",
901
+ UPDATED_BY_ASC = "UPDATED_BY_ASC",
902
+ UPDATED_BY_DESC = "UPDATED_BY_DESC"
903
+ }
904
+ /** Information about pagination in a connection. */
905
+ export declare type PageInfo = {
906
+ __typename?: 'PageInfo';
907
+ /** When paginating forwards, the cursor to continue. */
908
+ endCursor?: Maybe<Scalars['Cursor']>;
909
+ /** When paginating forwards, are there more items? */
910
+ hasNextPage: Scalars['Boolean'];
911
+ /** When paginating backwards, are there more items? */
912
+ hasPreviousPage: Scalars['Boolean'];
913
+ /** When paginating backwards, the cursor to continue. */
914
+ startCursor?: Maybe<Scalars['Cursor']>;
915
+ };
916
+ /** The root query type which gives access points into the data universe. */
917
+ export declare type Query = {
918
+ __typename?: 'Query';
919
+ environmentClientMapping?: Maybe<EnvironmentClientMapping>;
920
+ environmentClientMappingByClientId?: Maybe<EnvironmentClientMapping>;
921
+ /** Reads and enables pagination through a set of `EnvironmentClientMapping`. */
922
+ environmentClientMappings?: Maybe<EnvironmentClientMappingsConnection>;
923
+ idpUser?: Maybe<IdpUser>;
924
+ /** Reads and enables pagination through a set of `IdpUser`. */
925
+ idpUsers?: Maybe<IdpUsersConnection>;
926
+ idpUserStore?: Maybe<IdpUserStore>;
927
+ idpUserStoreByName?: Maybe<IdpUserStore>;
928
+ /** Reads and enables pagination through a set of `IdpUserStore`. */
929
+ idpUserStores?: Maybe<IdpUserStoresConnection>;
930
+ /** Reads and enables pagination through a set of `OAuthClient`. */
931
+ oAuthClients?: Maybe<OAuthClientsConnection>;
932
+ /**
933
+ * Exposes the root query type nested one level down. This is helpful for Relay 1
934
+ * which can only query top level fields if they are in a particular form.
935
+ */
936
+ query: Query;
937
+ };
938
+ /** The root query type which gives access points into the data universe. */
939
+ export declare type QueryEnvironmentClientMappingArgs = {
940
+ clientId: Scalars['String'];
941
+ environmentId: Scalars['UUID'];
942
+ idpUserStoreId: Scalars['UUID'];
943
+ tenantId: Scalars['UUID'];
944
+ };
945
+ /** The root query type which gives access points into the data universe. */
946
+ export declare type QueryEnvironmentClientMappingByClientIdArgs = {
947
+ clientId: Scalars['String'];
948
+ };
949
+ /** The root query type which gives access points into the data universe. */
950
+ export declare type QueryEnvironmentClientMappingsArgs = {
951
+ after?: Maybe<Scalars['Cursor']>;
952
+ before?: Maybe<Scalars['Cursor']>;
953
+ condition?: Maybe<EnvironmentClientMappingCondition>;
954
+ filter?: Maybe<EnvironmentClientMappingFilter>;
955
+ first?: Maybe<Scalars['Int']>;
956
+ last?: Maybe<Scalars['Int']>;
957
+ offset?: Maybe<Scalars['Int']>;
958
+ orderBy?: Maybe<Array<EnvironmentClientMappingsOrderBy>>;
959
+ };
960
+ /** The root query type which gives access points into the data universe. */
961
+ export declare type QueryIdpUserArgs = {
962
+ id: Scalars['UUID'];
963
+ };
964
+ /** The root query type which gives access points into the data universe. */
965
+ export declare type QueryIdpUsersArgs = {
966
+ after?: Maybe<Scalars['Cursor']>;
967
+ before?: Maybe<Scalars['Cursor']>;
968
+ condition?: Maybe<IdpUserCondition>;
969
+ filter?: Maybe<IdpUserFilter>;
970
+ first?: Maybe<Scalars['Int']>;
971
+ last?: Maybe<Scalars['Int']>;
972
+ offset?: Maybe<Scalars['Int']>;
973
+ orderBy?: Maybe<Array<IdpUsersOrderBy>>;
974
+ };
975
+ /** The root query type which gives access points into the data universe. */
976
+ export declare type QueryIdpUserStoreArgs = {
977
+ id: Scalars['UUID'];
978
+ };
979
+ /** The root query type which gives access points into the data universe. */
980
+ export declare type QueryIdpUserStoreByNameArgs = {
981
+ environmentId: Scalars['UUID'];
982
+ name: Scalars['String'];
983
+ tenantId: Scalars['UUID'];
984
+ };
985
+ /** The root query type which gives access points into the data universe. */
986
+ export declare type QueryIdpUserStoresArgs = {
987
+ after?: Maybe<Scalars['Cursor']>;
988
+ before?: Maybe<Scalars['Cursor']>;
989
+ condition?: Maybe<IdpUserStoreCondition>;
990
+ filter?: Maybe<IdpUserStoreFilter>;
991
+ first?: Maybe<Scalars['Int']>;
992
+ last?: Maybe<Scalars['Int']>;
993
+ offset?: Maybe<Scalars['Int']>;
994
+ orderBy?: Maybe<Array<IdpUserStoresOrderBy>>;
995
+ };
996
+ /** The root query type which gives access points into the data universe. */
997
+ export declare type QueryOAuthClientsArgs = {
998
+ after?: Maybe<Scalars['Cursor']>;
999
+ before?: Maybe<Scalars['Cursor']>;
1000
+ condition?: Maybe<OAuthClientCondition>;
1001
+ filter?: Maybe<OAuthClientFilter>;
1002
+ first?: Maybe<Scalars['Int']>;
1003
+ last?: Maybe<Scalars['Int']>;
1004
+ offset?: Maybe<Scalars['Int']>;
1005
+ orderBy?: Maybe<Array<OAuthClientsOrderBy>>;
1006
+ };
1007
+ export declare type ResetIdpUserPasswordInput = {
1008
+ id: Scalars['UUID'];
1009
+ };
1010
+ export declare type ResetIdpUserPasswordPayload = {
1011
+ __typename?: 'ResetIdpUserPasswordPayload';
1012
+ idpUser?: Maybe<IdpUser>;
1013
+ newPassword: Scalars['String'];
1014
+ };
1015
+ /** A filter to be used against String fields. All fields are combined with a logical ‘and.’ */
1016
+ export declare type StringFilter = {
1017
+ /** Not equal to the specified value, treating null like an ordinary value. */
1018
+ distinctFrom?: Maybe<Scalars['String']>;
1019
+ /** Not equal to the specified value, treating null like an ordinary value (case-insensitive). */
1020
+ distinctFromInsensitive?: Maybe<Scalars['String']>;
1021
+ /** Ends with the specified string (case-sensitive). */
1022
+ endsWith?: Maybe<Scalars['String']>;
1023
+ /** Ends with the specified string (case-insensitive). */
1024
+ endsWithInsensitive?: Maybe<Scalars['String']>;
1025
+ /** Equal to the specified value. */
1026
+ equalTo?: Maybe<Scalars['String']>;
1027
+ /** Equal to the specified value (case-insensitive). */
1028
+ equalToInsensitive?: Maybe<Scalars['String']>;
1029
+ /** Greater than the specified value. */
1030
+ greaterThan?: Maybe<Scalars['String']>;
1031
+ /** Greater than the specified value (case-insensitive). */
1032
+ greaterThanInsensitive?: Maybe<Scalars['String']>;
1033
+ /** Greater than or equal to the specified value. */
1034
+ greaterThanOrEqualTo?: Maybe<Scalars['String']>;
1035
+ /** Greater than or equal to the specified value (case-insensitive). */
1036
+ greaterThanOrEqualToInsensitive?: Maybe<Scalars['String']>;
1037
+ /** Included in the specified list. */
1038
+ in?: Maybe<Array<Scalars['String']>>;
1039
+ /** Contains the specified string (case-sensitive). */
1040
+ includes?: Maybe<Scalars['String']>;
1041
+ /** Contains the specified string (case-insensitive). */
1042
+ includesInsensitive?: Maybe<Scalars['String']>;
1043
+ /** Included in the specified list (case-insensitive). */
1044
+ inInsensitive?: Maybe<Array<Scalars['String']>>;
1045
+ /** Is null (if `true` is specified) or is not null (if `false` is specified). */
1046
+ isNull?: Maybe<Scalars['Boolean']>;
1047
+ /** Less than the specified value. */
1048
+ lessThan?: Maybe<Scalars['String']>;
1049
+ /** Less than the specified value (case-insensitive). */
1050
+ lessThanInsensitive?: Maybe<Scalars['String']>;
1051
+ /** Less than or equal to the specified value. */
1052
+ lessThanOrEqualTo?: Maybe<Scalars['String']>;
1053
+ /** Less than or equal to the specified value (case-insensitive). */
1054
+ lessThanOrEqualToInsensitive?: Maybe<Scalars['String']>;
1055
+ /** Matches the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */
1056
+ like?: Maybe<Scalars['String']>;
1057
+ /** Matches the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */
1058
+ likeInsensitive?: Maybe<Scalars['String']>;
1059
+ /** Equal to the specified value, treating null like an ordinary value. */
1060
+ notDistinctFrom?: Maybe<Scalars['String']>;
1061
+ /** Equal to the specified value, treating null like an ordinary value (case-insensitive). */
1062
+ notDistinctFromInsensitive?: Maybe<Scalars['String']>;
1063
+ /** Does not end with the specified string (case-sensitive). */
1064
+ notEndsWith?: Maybe<Scalars['String']>;
1065
+ /** Does not end with the specified string (case-insensitive). */
1066
+ notEndsWithInsensitive?: Maybe<Scalars['String']>;
1067
+ /** Not equal to the specified value. */
1068
+ notEqualTo?: Maybe<Scalars['String']>;
1069
+ /** Not equal to the specified value (case-insensitive). */
1070
+ notEqualToInsensitive?: Maybe<Scalars['String']>;
1071
+ /** Not included in the specified list. */
1072
+ notIn?: Maybe<Array<Scalars['String']>>;
1073
+ /** Does not contain the specified string (case-sensitive). */
1074
+ notIncludes?: Maybe<Scalars['String']>;
1075
+ /** Does not contain the specified string (case-insensitive). */
1076
+ notIncludesInsensitive?: Maybe<Scalars['String']>;
1077
+ /** Not included in the specified list (case-insensitive). */
1078
+ notInInsensitive?: Maybe<Array<Scalars['String']>>;
1079
+ /** Does not match the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */
1080
+ notLike?: Maybe<Scalars['String']>;
1081
+ /** Does not match the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */
1082
+ notLikeInsensitive?: Maybe<Scalars['String']>;
1083
+ /** Does not start with the specified string (case-sensitive). */
1084
+ notStartsWith?: Maybe<Scalars['String']>;
1085
+ /** Does not start with the specified string (case-insensitive). */
1086
+ notStartsWithInsensitive?: Maybe<Scalars['String']>;
1087
+ /** Starts with the specified string (case-sensitive). */
1088
+ startsWith?: Maybe<Scalars['String']>;
1089
+ /** Starts with the specified string (case-insensitive). */
1090
+ startsWithInsensitive?: Maybe<Scalars['String']>;
1091
+ };
1092
+ /** All input for the `updateIdpUser` mutation. */
1093
+ export declare type UpdateIdpUserInput = {
1094
+ /**
1095
+ * An arbitrary string value with no semantic meaning. Will be included in the
1096
+ * payload verbatim. May be used to track mutations by the client.
1097
+ */
1098
+ clientMutationId?: Maybe<Scalars['String']>;
1099
+ id: Scalars['UUID'];
1100
+ /** An object where the defined keys will be set on the `IdpUser` being updated. */
1101
+ patch: IdpUserPatch;
1102
+ };
1103
+ /** The output of our update `IdpUser` mutation. */
1104
+ export declare type UpdateIdpUserPayload = {
1105
+ __typename?: 'UpdateIdpUserPayload';
1106
+ /**
1107
+ * The exact same `clientMutationId` that was provided in the mutation input,
1108
+ * unchanged and unused. May be used by a client to track mutations.
1109
+ */
1110
+ clientMutationId?: Maybe<Scalars['String']>;
1111
+ /** The `IdpUser` that was updated by this mutation. */
1112
+ idpUser?: Maybe<IdpUser>;
1113
+ /** An edge for our `IdpUser`. May be used by Relay 1. */
1114
+ idpUserEdge?: Maybe<IdpUsersEdge>;
1115
+ /** Reads a single `IdpUserStore` that is related to this `IdpUser`. */
1116
+ idpUserStore?: Maybe<IdpUserStore>;
1117
+ /** Our root query field type. Allows us to run any query from our mutation payload. */
1118
+ query?: Maybe<Query>;
1119
+ };
1120
+ /** The output of our update `IdpUser` mutation. */
1121
+ export declare type UpdateIdpUserPayloadIdpUserEdgeArgs = {
1122
+ orderBy?: Maybe<Array<IdpUsersOrderBy>>;
1123
+ };
1124
+ /** All input for the `updateIdpUserStore` mutation. */
1125
+ export declare type UpdateIdpUserStoreInput = {
1126
+ /**
1127
+ * An arbitrary string value with no semantic meaning. Will be included in the
1128
+ * payload verbatim. May be used to track mutations by the client.
1129
+ */
1130
+ clientMutationId?: Maybe<Scalars['String']>;
1131
+ id: Scalars['UUID'];
1132
+ /** An object where the defined keys will be set on the `IdpUserStore` being updated. */
1133
+ patch: IdpUserStorePatch;
1134
+ };
1135
+ /** The output of our update `IdpUserStore` mutation. */
1136
+ export declare type UpdateIdpUserStorePayload = {
1137
+ __typename?: 'UpdateIdpUserStorePayload';
1138
+ /**
1139
+ * The exact same `clientMutationId` that was provided in the mutation input,
1140
+ * unchanged and unused. May be used by a client to track mutations.
1141
+ */
1142
+ clientMutationId?: Maybe<Scalars['String']>;
1143
+ /** The `IdpUserStore` that was updated by this mutation. */
1144
+ idpUserStore?: Maybe<IdpUserStore>;
1145
+ /** An edge for our `IdpUserStore`. May be used by Relay 1. */
1146
+ idpUserStoreEdge?: Maybe<IdpUserStoresEdge>;
1147
+ /** Our root query field type. Allows us to run any query from our mutation payload. */
1148
+ query?: Maybe<Query>;
1149
+ };
1150
+ /** The output of our update `IdpUserStore` mutation. */
1151
+ export declare type UpdateIdpUserStorePayloadIdpUserStoreEdgeArgs = {
1152
+ orderBy?: Maybe<Array<IdpUserStoresOrderBy>>;
1153
+ };
1154
+ export declare enum UserStatus {
1155
+ /** Active */
1156
+ ACTIVE = "ACTIVE",
1157
+ /** Blocked */
1158
+ BLOCKED = "BLOCKED"
1159
+ }
1160
+ /** A filter to be used against UserStatus fields. All fields are combined with a logical ‘and.’ */
1161
+ export declare type UserStatusFilter = {
1162
+ /** Not equal to the specified value, treating null like an ordinary value. */
1163
+ distinctFrom?: Maybe<UserStatus>;
1164
+ /** Equal to the specified value. */
1165
+ equalTo?: Maybe<UserStatus>;
1166
+ /** Greater than the specified value. */
1167
+ greaterThan?: Maybe<UserStatus>;
1168
+ /** Greater than or equal to the specified value. */
1169
+ greaterThanOrEqualTo?: Maybe<UserStatus>;
1170
+ /** Included in the specified list. */
1171
+ in?: Maybe<Array<UserStatus>>;
1172
+ /** Is null (if `true` is specified) or is not null (if `false` is specified). */
1173
+ isNull?: Maybe<Scalars['Boolean']>;
1174
+ /** Less than the specified value. */
1175
+ lessThan?: Maybe<UserStatus>;
1176
+ /** Less than or equal to the specified value. */
1177
+ lessThanOrEqualTo?: Maybe<UserStatus>;
1178
+ /** Equal to the specified value, treating null like an ordinary value. */
1179
+ notDistinctFrom?: Maybe<UserStatus>;
1180
+ /** Not equal to the specified value. */
1181
+ notEqualTo?: Maybe<UserStatus>;
1182
+ /** Not included in the specified list. */
1183
+ notIn?: Maybe<Array<UserStatus>>;
1184
+ };
1185
+ export declare enum UserStoreCategory {
1186
+ /** Consumer */
1187
+ CONSUMER = "CONSUMER",
1188
+ /** Management */
1189
+ MANAGEMENT = "MANAGEMENT"
1190
+ }
1191
+ /** A filter to be used against UserStoreCategory fields. All fields are combined with a logical ‘and.’ */
1192
+ export declare type UserStoreCategoryFilter = {
1193
+ /** Not equal to the specified value, treating null like an ordinary value. */
1194
+ distinctFrom?: Maybe<UserStoreCategory>;
1195
+ /** Equal to the specified value. */
1196
+ equalTo?: Maybe<UserStoreCategory>;
1197
+ /** Greater than the specified value. */
1198
+ greaterThan?: Maybe<UserStoreCategory>;
1199
+ /** Greater than or equal to the specified value. */
1200
+ greaterThanOrEqualTo?: Maybe<UserStoreCategory>;
1201
+ /** Included in the specified list. */
1202
+ in?: Maybe<Array<UserStoreCategory>>;
1203
+ /** Is null (if `true` is specified) or is not null (if `false` is specified). */
1204
+ isNull?: Maybe<Scalars['Boolean']>;
1205
+ /** Less than the specified value. */
1206
+ lessThan?: Maybe<UserStoreCategory>;
1207
+ /** Less than or equal to the specified value. */
1208
+ lessThanOrEqualTo?: Maybe<UserStoreCategory>;
1209
+ /** Equal to the specified value, treating null like an ordinary value. */
1210
+ notDistinctFrom?: Maybe<UserStoreCategory>;
1211
+ /** Not equal to the specified value. */
1212
+ notEqualTo?: Maybe<UserStoreCategory>;
1213
+ /** Not included in the specified list. */
1214
+ notIn?: Maybe<Array<UserStoreCategory>>;
1215
+ };
1216
+ /** A filter to be used against UUID fields. All fields are combined with a logical ‘and.’ */
1217
+ export declare type UuidFilter = {
1218
+ /** Not equal to the specified value, treating null like an ordinary value. */
1219
+ distinctFrom?: Maybe<Scalars['UUID']>;
1220
+ /** Equal to the specified value. */
1221
+ equalTo?: Maybe<Scalars['UUID']>;
1222
+ /** Greater than the specified value. */
1223
+ greaterThan?: Maybe<Scalars['UUID']>;
1224
+ /** Greater than or equal to the specified value. */
1225
+ greaterThanOrEqualTo?: Maybe<Scalars['UUID']>;
1226
+ /** Included in the specified list. */
1227
+ in?: Maybe<Array<Scalars['UUID']>>;
1228
+ /** Is null (if `true` is specified) or is not null (if `false` is specified). */
1229
+ isNull?: Maybe<Scalars['Boolean']>;
1230
+ /** Less than the specified value. */
1231
+ lessThan?: Maybe<Scalars['UUID']>;
1232
+ /** Less than or equal to the specified value. */
1233
+ lessThanOrEqualTo?: Maybe<Scalars['UUID']>;
1234
+ /** Equal to the specified value, treating null like an ordinary value. */
1235
+ notDistinctFrom?: Maybe<Scalars['UUID']>;
1236
+ /** Not equal to the specified value. */
1237
+ notEqualTo?: Maybe<Scalars['UUID']>;
1238
+ /** Not included in the specified list. */
1239
+ notIn?: Maybe<Array<Scalars['UUID']>>;
1240
+ };
1241
+ export declare type InitiateConsumerSignUpMutationVariables = Exact<{
1242
+ input: InitiateConsumerSignUpInput;
1243
+ }>;
1244
+ export declare type InitiateConsumerSignUpMutation = ({
1245
+ __typename?: 'Mutation';
1246
+ } & {
1247
+ initiateConsumerSignUp: ({
1248
+ __typename?: 'InitiateConsumerSignUpPayload';
1249
+ } & Pick<InitiateConsumerSignUpPayload, 'idpUserId'>);
1250
+ });
1251
+ export declare type CheckConsumerSignUpOtpMutationVariables = Exact<{
1252
+ input: CheckConsumerSignUpOtpInput;
1253
+ }>;
1254
+ export declare type CheckConsumerSignUpOtpMutation = ({
1255
+ __typename?: 'Mutation';
1256
+ } & {
1257
+ checkConsumerSignUpOtp: ({
1258
+ __typename?: 'CheckConsumerSignUpOtpPayload';
1259
+ } & Pick<CheckConsumerSignUpOtpPayload, 'isOtpValid'>);
1260
+ });
1261
+ export declare type CompleteConsumerSignUpMutationVariables = Exact<{
1262
+ input: CompleteConsumerSignUpInput;
1263
+ }>;
1264
+ export declare type CompleteConsumerSignUpMutation = ({
1265
+ __typename?: 'Mutation';
1266
+ } & {
1267
+ completeConsumerSignUp: ({
1268
+ __typename?: 'CompleteConsumerSignUpPayload';
1269
+ } & Pick<CompleteConsumerSignUpPayload, 'idpUserId'>);
1270
+ });
1271
+ export declare type InitiateConsumerPasswordResetMutationVariables = Exact<{
1272
+ input: InitiateConsumerPasswordResetInput;
1273
+ }>;
1274
+ export declare type InitiateConsumerPasswordResetMutation = ({
1275
+ __typename?: 'Mutation';
1276
+ } & {
1277
+ initiateConsumerPasswordReset: ({
1278
+ __typename?: 'InitiateConsumerPasswordResetPayload';
1279
+ } & Pick<InitiateConsumerPasswordResetPayload, 'idpUserId'>);
1280
+ });
1281
+ export declare type CheckPasswordResetOtpMutationVariables = Exact<{
1282
+ input: CheckConsumerPasswordResetOtpInput;
1283
+ }>;
1284
+ export declare type CheckPasswordResetOtpMutation = ({
1285
+ __typename?: 'Mutation';
1286
+ } & {
1287
+ checkConsumerPasswordResetOtp: ({
1288
+ __typename?: 'CheckConsumerPasswordResetOtpPayload';
1289
+ } & Pick<CheckConsumerPasswordResetOtpPayload, 'isOtpValid'>);
1290
+ });
1291
+ export declare type CompleteConsumerPasswordResetMutationVariables = Exact<{
1292
+ input: CompleteConsumerPasswordResetInput;
1293
+ }>;
1294
+ export declare type CompleteConsumerPasswordResetMutation = ({
1295
+ __typename?: 'Mutation';
1296
+ } & {
1297
+ completeConsumerPasswordReset: ({
1298
+ __typename?: 'CompleteConsumerPasswordResetPayload';
1299
+ } & Pick<CompleteConsumerPasswordResetPayload, 'idpUserId'>);
1300
+ });
1301
+ export declare const InitiateConsumerSignUpDocument: DocumentNode<InitiateConsumerSignUpMutation, InitiateConsumerSignUpMutationVariables>;
1302
+ export declare const CheckConsumerSignUpOtpDocument: DocumentNode<CheckConsumerSignUpOtpMutation, CheckConsumerSignUpOtpMutationVariables>;
1303
+ export declare const CompleteConsumerSignUpDocument: DocumentNode<CompleteConsumerSignUpMutation, CompleteConsumerSignUpMutationVariables>;
1304
+ export declare const InitiateConsumerPasswordResetDocument: DocumentNode<InitiateConsumerPasswordResetMutation, InitiateConsumerPasswordResetMutationVariables>;
1305
+ export declare const CheckPasswordResetOtpDocument: DocumentNode<CheckPasswordResetOtpMutation, CheckPasswordResetOtpMutationVariables>;
1306
+ export declare const CompleteConsumerPasswordResetDocument: DocumentNode<CompleteConsumerPasswordResetMutation, CompleteConsumerPasswordResetMutationVariables>;
1307
+ //# sourceMappingURL=ax-auth-management-graphql.types.d.ts.map