@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.
@@ -1,12 +1,12 @@
1
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 {
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 declare type Scalars = {
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
  /** A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122). */
28
28
  UUID: any;
29
29
  };
30
- export declare type Application = {
30
+ export type Application = {
31
31
  __typename?: 'Application';
32
32
  accessTokenEnrichmentWebhook?: Maybe<Scalars['String']>;
33
33
  accessTokenLifetime: Scalars['Int'];
@@ -50,7 +50,7 @@ export declare type Application = {
50
50
  updatedDate: Scalars['Datetime'];
51
51
  updatedUser: Scalars['String'];
52
52
  };
53
- export declare type ApplicationIdpConnectionsArgs = {
53
+ export type ApplicationIdpConnectionsArgs = {
54
54
  after?: Maybe<Scalars['Cursor']>;
55
55
  before?: Maybe<Scalars['Cursor']>;
56
56
  condition?: Maybe<ApplicationIdpConnectionCondition>;
@@ -64,7 +64,7 @@ export declare type ApplicationIdpConnectionsArgs = {
64
64
  * A condition to be used against `Application` object types. All fields are tested
65
65
  * for equality and combined with a logical ‘and.’
66
66
  */
67
- export declare type ApplicationCondition = {
67
+ export type ApplicationCondition = {
68
68
  /** Checks for equality with the object’s `accessTokenEnrichmentWebhook` field. */
69
69
  accessTokenEnrichmentWebhook?: Maybe<Scalars['String']>;
70
70
  /** Checks for equality with the object’s `accessTokenLifetime` field. */
@@ -99,7 +99,7 @@ export declare type ApplicationCondition = {
99
99
  updatedUser?: Maybe<Scalars['String']>;
100
100
  };
101
101
  /** A filter to be used against `Application` object types. All fields are combined with a logical ‘and.’ */
102
- export declare type ApplicationFilter = {
102
+ export type ApplicationFilter = {
103
103
  /** Filter by the object’s `accessTokenEnrichmentWebhook` field. */
104
104
  accessTokenEnrichmentWebhook?: Maybe<StringFilter>;
105
105
  /** Filter by the object’s `accessTokenLifetime` field. */
@@ -143,7 +143,7 @@ export declare type ApplicationFilter = {
143
143
  /** Filter by the object’s `updatedUser` field. */
144
144
  updatedUser?: Maybe<StringFilter>;
145
145
  };
146
- export declare type ApplicationIdpConnection = {
146
+ export type ApplicationIdpConnection = {
147
147
  __typename?: 'ApplicationIdpConnection';
148
148
  /** Reads a single `Application` that is related to this `ApplicationIdpConnection`. */
149
149
  application?: Maybe<Application>;
@@ -163,7 +163,7 @@ export declare type ApplicationIdpConnection = {
163
163
  * A condition to be used against `ApplicationIdpConnection` object types. All
164
164
  * fields are tested for equality and combined with a logical ‘and.’
165
165
  */
166
- export declare type ApplicationIdpConnectionCondition = {
166
+ export type ApplicationIdpConnectionCondition = {
167
167
  /** Checks for equality with the object’s `applicationId` field. */
168
168
  applicationId?: Maybe<Scalars['UUID']>;
169
169
  /** Checks for equality with the object’s `createdDate` field. */
@@ -184,7 +184,7 @@ export declare type ApplicationIdpConnectionCondition = {
184
184
  updatedUser?: Maybe<Scalars['String']>;
185
185
  };
186
186
  /** A filter to be used against `ApplicationIdpConnection` object types. All fields are combined with a logical ‘and.’ */
187
- export declare type ApplicationIdpConnectionFilter = {
187
+ export type ApplicationIdpConnectionFilter = {
188
188
  /** Checks for all expressions in this list. */
189
189
  and?: Maybe<Array<ApplicationIdpConnectionFilter>>;
190
190
  /** Filter by the object’s `application` relation. */
@@ -215,12 +215,12 @@ export declare type ApplicationIdpConnectionFilter = {
215
215
  updatedUser?: Maybe<StringFilter>;
216
216
  };
217
217
  /** An input for mutations affecting `ApplicationIdpConnection` */
218
- export declare type ApplicationIdpConnectionInput = {
218
+ export type ApplicationIdpConnectionInput = {
219
219
  applicationId: Scalars['UUID'];
220
220
  idpConnectionId: Scalars['UUID'];
221
221
  };
222
222
  /** A connection to a list of `ApplicationIdpConnection` values. */
223
- export declare type ApplicationIdpConnectionsConnection = {
223
+ export type ApplicationIdpConnectionsConnection = {
224
224
  __typename?: 'ApplicationIdpConnectionsConnection';
225
225
  /** A list of edges which contains the `ApplicationIdpConnection` and cursor to aid in pagination. */
226
226
  edges: Array<ApplicationIdpConnectionsEdge>;
@@ -232,7 +232,7 @@ export declare type ApplicationIdpConnectionsConnection = {
232
232
  totalCount: Scalars['Int'];
233
233
  };
234
234
  /** A `ApplicationIdpConnection` edge in the connection. */
235
- export declare type ApplicationIdpConnectionsEdge = {
235
+ export type ApplicationIdpConnectionsEdge = {
236
236
  __typename?: 'ApplicationIdpConnectionsEdge';
237
237
  /** A cursor for use in pagination. */
238
238
  cursor?: Maybe<Scalars['Cursor']>;
@@ -264,7 +264,7 @@ export declare enum ApplicationIdpConnectionsOrderBy {
264
264
  UPDATED_USER_DESC = "UPDATED_USER_DESC"
265
265
  }
266
266
  /** An input for mutations affecting `Application` */
267
- export declare type ApplicationInput = {
267
+ export type ApplicationInput = {
268
268
  accessTokenEnrichmentWebhook?: Maybe<Scalars['String']>;
269
269
  accessTokenLifetime?: Maybe<Scalars['Int']>;
270
270
  allowedOrigins?: Maybe<Array<Maybe<Scalars['String']>>>;
@@ -275,7 +275,7 @@ export declare type ApplicationInput = {
275
275
  refreshTokenLifetime?: Maybe<Scalars['Int']>;
276
276
  };
277
277
  /** Represents an update to a `Application`. Fields that are set will be updated. */
278
- export declare type ApplicationPatch = {
278
+ export type ApplicationPatch = {
279
279
  accessTokenEnrichmentWebhook?: Maybe<Scalars['String']>;
280
280
  accessTokenLifetime?: Maybe<Scalars['Int']>;
281
281
  allowedOrigins?: Maybe<Array<Maybe<Scalars['String']>>>;
@@ -293,7 +293,7 @@ export declare enum ApplicationPlatform {
293
293
  WEB = "WEB"
294
294
  }
295
295
  /** A filter to be used against ApplicationPlatform fields. All fields are combined with a logical ‘and.’ */
296
- export declare type ApplicationPlatformFilter = {
296
+ export type ApplicationPlatformFilter = {
297
297
  /** Not equal to the specified value, treating null like an ordinary value. */
298
298
  distinctFrom?: Maybe<ApplicationPlatform>;
299
299
  /** Equal to the specified value. */
@@ -318,7 +318,7 @@ export declare type ApplicationPlatformFilter = {
318
318
  notIn?: Maybe<Array<ApplicationPlatform>>;
319
319
  };
320
320
  /** A connection to a list of `Application` values. */
321
- export declare type ApplicationsConnection = {
321
+ export type ApplicationsConnection = {
322
322
  __typename?: 'ApplicationsConnection';
323
323
  /** A list of edges which contains the `Application` and cursor to aid in pagination. */
324
324
  edges: Array<ApplicationsEdge>;
@@ -330,7 +330,7 @@ export declare type ApplicationsConnection = {
330
330
  totalCount: Scalars['Int'];
331
331
  };
332
332
  /** A `Application` edge in the connection. */
333
- export declare type ApplicationsEdge = {
333
+ export type ApplicationsEdge = {
334
334
  __typename?: 'ApplicationsEdge';
335
335
  /** A cursor for use in pagination. */
336
336
  cursor?: Maybe<Scalars['Cursor']>;
@@ -376,7 +376,7 @@ export declare enum ApplicationsOrderBy {
376
376
  UPDATED_USER_DESC = "UPDATED_USER_DESC"
377
377
  }
378
378
  /** A filter to be used against many `ApplicationIdpConnection` object types. All fields are combined with a logical ‘and.’ */
379
- export declare type ApplicationToManyApplicationIdpConnectionFilter = {
379
+ export type ApplicationToManyApplicationIdpConnectionFilter = {
380
380
  /** Every related `ApplicationIdpConnection` matches the filter criteria. All fields are combined with a logical ‘and.’ */
381
381
  every?: Maybe<ApplicationIdpConnectionFilter>;
382
382
  /** No related `ApplicationIdpConnection` matches the filter criteria. All fields are combined with a logical ‘and.’ */
@@ -384,20 +384,20 @@ export declare type ApplicationToManyApplicationIdpConnectionFilter = {
384
384
  /** Some related `ApplicationIdpConnection` matches the filter criteria. All fields are combined with a logical ‘and.’ */
385
385
  some?: Maybe<ApplicationIdpConnectionFilter>;
386
386
  };
387
- export declare type AuthenticateEndUserApplicationInput = {
387
+ export type AuthenticateEndUserApplicationInput = {
388
388
  applicationId: Scalars['UUID'];
389
389
  applicationKey: Scalars['String'];
390
390
  environmentId: Scalars['UUID'];
391
391
  tenantId: Scalars['UUID'];
392
392
  };
393
- export declare type AuthenticateEndUserApplicationPayload = {
393
+ export type AuthenticateEndUserApplicationPayload = {
394
394
  __typename?: 'AuthenticateEndUserApplicationPayload';
395
395
  accessToken: Scalars['String'];
396
396
  expiresInSeconds: Scalars['Int'];
397
397
  tokenType: Scalars['String'];
398
398
  };
399
399
  /** A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’ */
400
- export declare type BooleanFilter = {
400
+ export type BooleanFilter = {
401
401
  /** Not equal to the specified value, treating null like an ordinary value. */
402
402
  distinctFrom?: Maybe<Scalars['Boolean']>;
403
403
  /** Equal to the specified value. */
@@ -422,7 +422,7 @@ export declare type BooleanFilter = {
422
422
  notIn?: Maybe<Array<Scalars['Boolean']>>;
423
423
  };
424
424
  /** All input for the create `ApplicationIdpConnection` mutation. */
425
- export declare type CreateApplicationIdpConnectionInput = {
425
+ export type CreateApplicationIdpConnectionInput = {
426
426
  /** The `ApplicationIdpConnection` to be created by this mutation. */
427
427
  applicationIdpConnection: ApplicationIdpConnectionInput;
428
428
  /**
@@ -432,7 +432,7 @@ export declare type CreateApplicationIdpConnectionInput = {
432
432
  clientMutationId?: Maybe<Scalars['String']>;
433
433
  };
434
434
  /** The output of our create `ApplicationIdpConnection` mutation. */
435
- export declare type CreateApplicationIdpConnectionPayload = {
435
+ export type CreateApplicationIdpConnectionPayload = {
436
436
  __typename?: 'CreateApplicationIdpConnectionPayload';
437
437
  /** Reads a single `Application` that is related to this `ApplicationIdpConnection`. */
438
438
  application?: Maybe<Application>;
@@ -451,11 +451,11 @@ export declare type CreateApplicationIdpConnectionPayload = {
451
451
  query?: Maybe<Query>;
452
452
  };
453
453
  /** The output of our create `ApplicationIdpConnection` mutation. */
454
- export declare type CreateApplicationIdpConnectionPayloadApplicationIdpConnectionEdgeArgs = {
454
+ export type CreateApplicationIdpConnectionPayloadApplicationIdpConnectionEdgeArgs = {
455
455
  orderBy?: Maybe<Array<ApplicationIdpConnectionsOrderBy>>;
456
456
  };
457
457
  /** All input for the create `Application` mutation. */
458
- export declare type CreateApplicationInput = {
458
+ export type CreateApplicationInput = {
459
459
  /** The `Application` to be created by this mutation. */
460
460
  application: ApplicationInput;
461
461
  /**
@@ -465,7 +465,7 @@ export declare type CreateApplicationInput = {
465
465
  clientMutationId?: Maybe<Scalars['String']>;
466
466
  };
467
467
  /** The output of our create `Application` mutation. */
468
- export declare type CreateApplicationPayload = {
468
+ export type CreateApplicationPayload = {
469
469
  __typename?: 'CreateApplicationPayload';
470
470
  /** The `Application` that was created by this mutation. */
471
471
  application?: Maybe<Application>;
@@ -480,11 +480,11 @@ export declare type CreateApplicationPayload = {
480
480
  query?: Maybe<Query>;
481
481
  };
482
482
  /** The output of our create `Application` mutation. */
483
- export declare type CreateApplicationPayloadApplicationEdgeArgs = {
483
+ export type CreateApplicationPayloadApplicationEdgeArgs = {
484
484
  orderBy?: Maybe<Array<ApplicationsOrderBy>>;
485
485
  };
486
486
  /** All input for the create `IdpConnection` mutation. */
487
- export declare type CreateIdpConnectionInput = {
487
+ export type CreateIdpConnectionInput = {
488
488
  /**
489
489
  * An arbitrary string value with no semantic meaning. Will be included in the
490
490
  * payload verbatim. May be used to track mutations by the client.
@@ -494,7 +494,7 @@ export declare type CreateIdpConnectionInput = {
494
494
  idpConnection: IdpConnectionInput;
495
495
  };
496
496
  /** The output of our create `IdpConnection` mutation. */
497
- export declare type CreateIdpConnectionPayload = {
497
+ export type CreateIdpConnectionPayload = {
498
498
  __typename?: 'CreateIdpConnectionPayload';
499
499
  /**
500
500
  * The exact same `clientMutationId` that was provided in the mutation input,
@@ -509,11 +509,11 @@ export declare type CreateIdpConnectionPayload = {
509
509
  query?: Maybe<Query>;
510
510
  };
511
511
  /** The output of our create `IdpConnection` mutation. */
512
- export declare type CreateIdpConnectionPayloadIdpConnectionEdgeArgs = {
512
+ export type CreateIdpConnectionPayloadIdpConnectionEdgeArgs = {
513
513
  orderBy?: Maybe<Array<IdpConnectionsOrderBy>>;
514
514
  };
515
515
  /** All input for the create `UserProfile` mutation. */
516
- export declare type CreateUserProfileInput = {
516
+ export type CreateUserProfileInput = {
517
517
  /**
518
518
  * An arbitrary string value with no semantic meaning. Will be included in the
519
519
  * payload verbatim. May be used to track mutations by the client.
@@ -523,7 +523,7 @@ export declare type CreateUserProfileInput = {
523
523
  userProfile: UserProfileInput;
524
524
  };
525
525
  /** The output of our create `UserProfile` mutation. */
526
- export declare type CreateUserProfilePayload = {
526
+ export type CreateUserProfilePayload = {
527
527
  __typename?: 'CreateUserProfilePayload';
528
528
  /**
529
529
  * The exact same `clientMutationId` that was provided in the mutation input,
@@ -540,11 +540,11 @@ export declare type CreateUserProfilePayload = {
540
540
  userProfileEdge?: Maybe<UserProfilesEdge>;
541
541
  };
542
542
  /** The output of our create `UserProfile` mutation. */
543
- export declare type CreateUserProfilePayloadUserProfileEdgeArgs = {
543
+ export type CreateUserProfilePayloadUserProfileEdgeArgs = {
544
544
  orderBy?: Maybe<Array<UserProfilesOrderBy>>;
545
545
  };
546
546
  /** A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’ */
547
- export declare type DatetimeFilter = {
547
+ export type DatetimeFilter = {
548
548
  /** Not equal to the specified value, treating null like an ordinary value. */
549
549
  distinctFrom?: Maybe<Scalars['Datetime']>;
550
550
  /** Equal to the specified value. */
@@ -568,19 +568,19 @@ export declare type DatetimeFilter = {
568
568
  /** Not included in the specified list. */
569
569
  notIn?: Maybe<Array<Scalars['Datetime']>>;
570
570
  };
571
- export declare type DecryptWithKeyAesInput = {
571
+ export type DecryptWithKeyAesInput = {
572
572
  /** The encrypted value as a Base 64 encoded string. */
573
573
  encryptedValue: Scalars['String'];
574
574
  /** Encryption Key that was used for the encryption. */
575
575
  key: Scalars['String'];
576
576
  };
577
- export declare type DecryptWithKeyAesPayload = {
577
+ export type DecryptWithKeyAesPayload = {
578
578
  __typename?: 'DecryptWithKeyAesPayload';
579
579
  /** The decrypted string. */
580
580
  decryptedValue: Scalars['String'];
581
581
  };
582
582
  /** All input for the `deleteApplicationIdpConnection` mutation. */
583
- export declare type DeleteApplicationIdpConnectionInput = {
583
+ export type DeleteApplicationIdpConnectionInput = {
584
584
  /**
585
585
  * An arbitrary string value with no semantic meaning. Will be included in the
586
586
  * payload verbatim. May be used to track mutations by the client.
@@ -589,7 +589,7 @@ export declare type DeleteApplicationIdpConnectionInput = {
589
589
  id: Scalars['UUID'];
590
590
  };
591
591
  /** The output of our delete `ApplicationIdpConnection` mutation. */
592
- export declare type DeleteApplicationIdpConnectionPayload = {
592
+ export type DeleteApplicationIdpConnectionPayload = {
593
593
  __typename?: 'DeleteApplicationIdpConnectionPayload';
594
594
  /** Reads a single `Application` that is related to this `ApplicationIdpConnection`. */
595
595
  application?: Maybe<Application>;
@@ -609,11 +609,11 @@ export declare type DeleteApplicationIdpConnectionPayload = {
609
609
  query?: Maybe<Query>;
610
610
  };
611
611
  /** The output of our delete `ApplicationIdpConnection` mutation. */
612
- export declare type DeleteApplicationIdpConnectionPayloadApplicationIdpConnectionEdgeArgs = {
612
+ export type DeleteApplicationIdpConnectionPayloadApplicationIdpConnectionEdgeArgs = {
613
613
  orderBy?: Maybe<Array<ApplicationIdpConnectionsOrderBy>>;
614
614
  };
615
615
  /** All input for the `deleteApplication` mutation. */
616
- export declare type DeleteApplicationInput = {
616
+ export type DeleteApplicationInput = {
617
617
  /**
618
618
  * An arbitrary string value with no semantic meaning. Will be included in the
619
619
  * payload verbatim. May be used to track mutations by the client.
@@ -622,7 +622,7 @@ export declare type DeleteApplicationInput = {
622
622
  id: Scalars['UUID'];
623
623
  };
624
624
  /** The output of our delete `Application` mutation. */
625
- export declare type DeleteApplicationPayload = {
625
+ export type DeleteApplicationPayload = {
626
626
  __typename?: 'DeleteApplicationPayload';
627
627
  /** The `Application` that was deleted by this mutation. */
628
628
  application?: Maybe<Application>;
@@ -638,11 +638,11 @@ export declare type DeleteApplicationPayload = {
638
638
  query?: Maybe<Query>;
639
639
  };
640
640
  /** The output of our delete `Application` mutation. */
641
- export declare type DeleteApplicationPayloadApplicationEdgeArgs = {
641
+ export type DeleteApplicationPayloadApplicationEdgeArgs = {
642
642
  orderBy?: Maybe<Array<ApplicationsOrderBy>>;
643
643
  };
644
644
  /** All input for the `deleteIdpConnection` mutation. */
645
- export declare type DeleteIdpConnectionInput = {
645
+ export type DeleteIdpConnectionInput = {
646
646
  /**
647
647
  * An arbitrary string value with no semantic meaning. Will be included in the
648
648
  * payload verbatim. May be used to track mutations by the client.
@@ -651,7 +651,7 @@ export declare type DeleteIdpConnectionInput = {
651
651
  id: Scalars['UUID'];
652
652
  };
653
653
  /** The output of our delete `IdpConnection` mutation. */
654
- export declare type DeleteIdpConnectionPayload = {
654
+ export type DeleteIdpConnectionPayload = {
655
655
  __typename?: 'DeleteIdpConnectionPayload';
656
656
  /**
657
657
  * The exact same `clientMutationId` that was provided in the mutation input,
@@ -667,11 +667,11 @@ export declare type DeleteIdpConnectionPayload = {
667
667
  query?: Maybe<Query>;
668
668
  };
669
669
  /** The output of our delete `IdpConnection` mutation. */
670
- export declare type DeleteIdpConnectionPayloadIdpConnectionEdgeArgs = {
670
+ export type DeleteIdpConnectionPayloadIdpConnectionEdgeArgs = {
671
671
  orderBy?: Maybe<Array<IdpConnectionsOrderBy>>;
672
672
  };
673
673
  /** All input for the `deleteUserIdpDatum` mutation. */
674
- export declare type DeleteUserIdpDatumInput = {
674
+ export type DeleteUserIdpDatumInput = {
675
675
  /**
676
676
  * An arbitrary string value with no semantic meaning. Will be included in the
677
677
  * payload verbatim. May be used to track mutations by the client.
@@ -681,7 +681,7 @@ export declare type DeleteUserIdpDatumInput = {
681
681
  userId: Scalars['UUID'];
682
682
  };
683
683
  /** The output of our delete `UserIdpDatum` mutation. */
684
- export declare type DeleteUserIdpDatumPayload = {
684
+ export type DeleteUserIdpDatumPayload = {
685
685
  __typename?: 'DeleteUserIdpDatumPayload';
686
686
  /**
687
687
  * The exact same `clientMutationId` that was provided in the mutation input,
@@ -701,11 +701,11 @@ export declare type DeleteUserIdpDatumPayload = {
701
701
  userIdpDatumEdge?: Maybe<UserIdpDataEdge>;
702
702
  };
703
703
  /** The output of our delete `UserIdpDatum` mutation. */
704
- export declare type DeleteUserIdpDatumPayloadUserIdpDatumEdgeArgs = {
704
+ export type DeleteUserIdpDatumPayloadUserIdpDatumEdgeArgs = {
705
705
  orderBy?: Maybe<Array<UserIdpDataOrderBy>>;
706
706
  };
707
707
  /** All input for the `deleteUser` mutation. */
708
- export declare type DeleteUserInput = {
708
+ export type DeleteUserInput = {
709
709
  /**
710
710
  * An arbitrary string value with no semantic meaning. Will be included in the
711
711
  * payload verbatim. May be used to track mutations by the client.
@@ -714,7 +714,7 @@ export declare type DeleteUserInput = {
714
714
  id: Scalars['UUID'];
715
715
  };
716
716
  /** The output of our delete `User` mutation. */
717
- export declare type DeleteUserPayload = {
717
+ export type DeleteUserPayload = {
718
718
  __typename?: 'DeleteUserPayload';
719
719
  /**
720
720
  * The exact same `clientMutationId` that was provided in the mutation input,
@@ -730,11 +730,11 @@ export declare type DeleteUserPayload = {
730
730
  userEdge?: Maybe<UsersEdge>;
731
731
  };
732
732
  /** The output of our delete `User` mutation. */
733
- export declare type DeleteUserPayloadUserEdgeArgs = {
733
+ export type DeleteUserPayloadUserEdgeArgs = {
734
734
  orderBy?: Maybe<Array<UsersOrderBy>>;
735
735
  };
736
736
  /** All input for the `deleteUserProfile` mutation. */
737
- export declare type DeleteUserProfileInput = {
737
+ export type DeleteUserProfileInput = {
738
738
  /**
739
739
  * An arbitrary string value with no semantic meaning. Will be included in the
740
740
  * payload verbatim. May be used to track mutations by the client.
@@ -743,7 +743,7 @@ export declare type DeleteUserProfileInput = {
743
743
  id: Scalars['UUID'];
744
744
  };
745
745
  /** The output of our delete `UserProfile` mutation. */
746
- export declare type DeleteUserProfilePayload = {
746
+ export type DeleteUserProfilePayload = {
747
747
  __typename?: 'DeleteUserProfilePayload';
748
748
  /**
749
749
  * The exact same `clientMutationId` that was provided in the mutation input,
@@ -761,10 +761,10 @@ export declare type DeleteUserProfilePayload = {
761
761
  userProfileEdge?: Maybe<UserProfilesEdge>;
762
762
  };
763
763
  /** The output of our delete `UserProfile` mutation. */
764
- export declare type DeleteUserProfilePayloadUserProfileEdgeArgs = {
764
+ export type DeleteUserProfilePayloadUserProfileEdgeArgs = {
765
765
  orderBy?: Maybe<Array<UserProfilesOrderBy>>;
766
766
  };
767
- export declare type DevGenerateEndUserAccessTokenInput = {
767
+ export type DevGenerateEndUserAccessTokenInput = {
768
768
  /**
769
769
  * Application ID to be used in the generated token.
770
770
  * This must be the ID of an actual Application defined in the service (it need not be enabled).
@@ -808,25 +808,25 @@ export declare type DevGenerateEndUserAccessTokenInput = {
808
808
  */
809
809
  userId?: Maybe<Scalars['String']>;
810
810
  };
811
- export declare type DevGenerateEndUserAccessTokenPayload = {
811
+ export type DevGenerateEndUserAccessTokenPayload = {
812
812
  __typename?: 'DevGenerateEndUserAccessTokenPayload';
813
813
  /** Development-time End-User Access Token. */
814
814
  accessToken: Scalars['String'];
815
815
  expiresInSeconds: Scalars['Int'];
816
816
  tokenType: Scalars['String'];
817
817
  };
818
- export declare type EncryptWithKeyAesInput = {
818
+ export type EncryptWithKeyAesInput = {
819
819
  /** Encryption Key to be used for the encryption. */
820
820
  key: Scalars['String'];
821
821
  /** Value to encrypt. */
822
822
  valueToEncrypt: Scalars['String'];
823
823
  };
824
- export declare type EncryptWithKeyAesPayload = {
824
+ export type EncryptWithKeyAesPayload = {
825
825
  __typename?: 'EncryptWithKeyAesPayload';
826
826
  /** The encrypted value as a Base 64 encoded string. */
827
827
  encryptedValue: Scalars['String'];
828
828
  };
829
- export declare type EndUserAccessTokenPayload = {
829
+ export type EndUserAccessTokenPayload = {
830
830
  __typename?: 'EndUserAccessTokenPayload';
831
831
  applicationId: Scalars['UUID'];
832
832
  email?: Maybe<Scalars['String']>;
@@ -953,7 +953,7 @@ export declare enum ErrorCodesEnum {
953
953
  TOKEN_ENRICHMENT_EXCEEDS_LIMIT = "TOKEN_ENRICHMENT_EXCEEDS_LIMIT",
954
954
  /** Retrieving user information from Access Token Enrichment Webhook failed. */
955
955
  TOKEN_ENRICHMENT_WEBHOOK_FAILURE = "TOKEN_ENRICHMENT_WEBHOOK_FAILURE",
956
- /** An unhandled database-related has occurred. Please contact the service support. */
956
+ /** An unhandled database-related error has occurred. Please contact the service support. */
957
957
  UNHANDLED_DATABASE_ERROR = "UNHANDLED_DATABASE_ERROR",
958
958
  /** An unhandled error has occurred. Please contact the service support. */
959
959
  UNHANDLED_ERROR = "UNHANDLED_ERROR",
@@ -968,14 +968,14 @@ export declare enum ErrorCodesEnum {
968
968
  /** Websocket not found in ExtendedGraphQLContext. This is a development time issue. A reference to the websocket must be included in Postgraphile build options. */
969
969
  WEBSOCKET_NOT_FOUND = "WEBSOCKET_NOT_FOUND"
970
970
  }
971
- export declare type GenerateApplicationKeyInput = {
971
+ export type GenerateApplicationKeyInput = {
972
972
  applicationId: Scalars['UUID'];
973
973
  };
974
- export declare type GenerateApplicationKeyPayload = {
974
+ export type GenerateApplicationKeyPayload = {
975
975
  __typename?: 'GenerateApplicationKeyPayload';
976
976
  applicationKey: Scalars['String'];
977
977
  };
978
- export declare type GenerateDelegatedAccessTokenInput = {
978
+ export type GenerateDelegatedAccessTokenInput = {
979
979
  /** Application ID the Delegated Token that must be generated against. */
980
980
  applicationId: Scalars['UUID'];
981
981
  /**
@@ -1007,20 +1007,20 @@ export declare type GenerateDelegatedAccessTokenInput = {
1007
1007
  */
1008
1008
  uniqueProfileIdentifier?: Maybe<Scalars['String']>;
1009
1009
  };
1010
- export declare type GenerateDelegatedAccessTokenPayload = {
1010
+ export type GenerateDelegatedAccessTokenPayload = {
1011
1011
  __typename?: 'GenerateDelegatedAccessTokenPayload';
1012
1012
  accessToken: Scalars['String'];
1013
1013
  expiresInSeconds: Scalars['Int'];
1014
1014
  payload: EndUserAccessTokenPayload;
1015
1015
  tokenType: Scalars['String'];
1016
1016
  };
1017
- export declare type GenerateEndUserLongLivedTokenInput = {
1017
+ export type GenerateEndUserLongLivedTokenInput = {
1018
1018
  /** User access token to extend the validity period for. */
1019
1019
  userToken: Scalars['String'];
1020
1020
  /** Validity duration from time of invocation. Defaults to 30 days if unspecified. */
1021
1021
  validityDurationInSeconds?: Maybe<Scalars['Int']>;
1022
1022
  };
1023
- export declare type GenerateEndUserLongLivedTokenPayload = {
1023
+ export type GenerateEndUserLongLivedTokenPayload = {
1024
1024
  __typename?: 'GenerateEndUserLongLivedTokenPayload';
1025
1025
  /** User Token expiration timeout in seconds */
1026
1026
  expiresInSeconds: Scalars['Int'];
@@ -1030,7 +1030,7 @@ export declare type GenerateEndUserLongLivedTokenPayload = {
1030
1030
  userToken: Scalars['String'];
1031
1031
  };
1032
1032
  /** A filter to be used against IdpAdditionalParamsObject fields. All fields are combined with a logical ‘and.’ */
1033
- export declare type IdpAdditionalParamsObjectFilter = {
1033
+ export type IdpAdditionalParamsObjectFilter = {
1034
1034
  /** Contained by the specified JSON. */
1035
1035
  containedBy?: Maybe<Scalars['IdpAdditionalParamsObject']>;
1036
1036
  /** Contains the specified JSON. */
@@ -1064,7 +1064,7 @@ export declare type IdpAdditionalParamsObjectFilter = {
1064
1064
  /** Not included in the specified list. */
1065
1065
  notIn?: Maybe<Array<Scalars['IdpAdditionalParamsObject']>>;
1066
1066
  };
1067
- export declare type IdpConnection = {
1067
+ export type IdpConnection = {
1068
1068
  __typename?: 'IdpConnection';
1069
1069
  additionalParams?: Maybe<Scalars['IdpAdditionalParamsObject']>;
1070
1070
  allManagedScopes?: Maybe<Array<Maybe<Scalars['String']>>>;
@@ -1097,7 +1097,7 @@ export declare type IdpConnection = {
1097
1097
  userInfoEndpointUrl?: Maybe<Scalars['String']>;
1098
1098
  userInfoRetrievalWebhook?: Maybe<Scalars['String']>;
1099
1099
  };
1100
- export declare type IdpConnectionApplicationIdpConnectionsArgs = {
1100
+ export type IdpConnectionApplicationIdpConnectionsArgs = {
1101
1101
  after?: Maybe<Scalars['Cursor']>;
1102
1102
  before?: Maybe<Scalars['Cursor']>;
1103
1103
  condition?: Maybe<ApplicationIdpConnectionCondition>;
@@ -1107,7 +1107,7 @@ export declare type IdpConnectionApplicationIdpConnectionsArgs = {
1107
1107
  offset?: Maybe<Scalars['Int']>;
1108
1108
  orderBy?: Maybe<Array<ApplicationIdpConnectionsOrderBy>>;
1109
1109
  };
1110
- export declare type IdpConnectionUserIdpDataArgs = {
1110
+ export type IdpConnectionUserIdpDataArgs = {
1111
1111
  after?: Maybe<Scalars['Cursor']>;
1112
1112
  before?: Maybe<Scalars['Cursor']>;
1113
1113
  condition?: Maybe<UserIdpDatumCondition>;
@@ -1121,7 +1121,7 @@ export declare type IdpConnectionUserIdpDataArgs = {
1121
1121
  * A condition to be used against `IdpConnection` object types. All fields are
1122
1122
  * tested for equality and combined with a logical ‘and.’
1123
1123
  */
1124
- export declare type IdpConnectionCondition = {
1124
+ export type IdpConnectionCondition = {
1125
1125
  /** Checks for equality with the object’s `additionalParams` field. */
1126
1126
  additionalParams?: Maybe<Scalars['IdpAdditionalParamsObject']>;
1127
1127
  /** Checks for equality with the object’s `authorizationEndpointUrl` field. */
@@ -1170,7 +1170,7 @@ export declare type IdpConnectionCondition = {
1170
1170
  userInfoRetrievalWebhook?: Maybe<Scalars['String']>;
1171
1171
  };
1172
1172
  /** A filter to be used against `IdpConnection` object types. All fields are combined with a logical ‘and.’ */
1173
- export declare type IdpConnectionFilter = {
1173
+ export type IdpConnectionFilter = {
1174
1174
  /** Filter by the object’s `additionalParams` field. */
1175
1175
  additionalParams?: Maybe<IdpAdditionalParamsObjectFilter>;
1176
1176
  /** Checks for all expressions in this list. */
@@ -1235,7 +1235,7 @@ export declare type IdpConnectionFilter = {
1235
1235
  userInfoRetrievalWebhook?: Maybe<StringFilter>;
1236
1236
  };
1237
1237
  /** An input for mutations affecting `IdpConnection` */
1238
- export declare type IdpConnectionInput = {
1238
+ export type IdpConnectionInput = {
1239
1239
  additionalParams?: Maybe<Scalars['IdpAdditionalParamsObject']>;
1240
1240
  authorizationEndpointUrl?: Maybe<Scalars['String']>;
1241
1241
  clientId?: Maybe<Scalars['String']>;
@@ -1253,7 +1253,7 @@ export declare type IdpConnectionInput = {
1253
1253
  userInfoRetrievalWebhook?: Maybe<Scalars['String']>;
1254
1254
  };
1255
1255
  /** Represents an update to a `IdpConnection`. Fields that are set will be updated. */
1256
- export declare type IdpConnectionPatch = {
1256
+ export type IdpConnectionPatch = {
1257
1257
  additionalParams?: Maybe<Scalars['IdpAdditionalParamsObject']>;
1258
1258
  authorizationEndpointUrl?: Maybe<Scalars['String']>;
1259
1259
  clientId?: Maybe<Scalars['String']>;
@@ -1270,7 +1270,7 @@ export declare type IdpConnectionPatch = {
1270
1270
  userInfoRetrievalWebhook?: Maybe<Scalars['String']>;
1271
1271
  };
1272
1272
  /** A connection to a list of `IdpConnection` values. */
1273
- export declare type IdpConnectionsConnection = {
1273
+ export type IdpConnectionsConnection = {
1274
1274
  __typename?: 'IdpConnectionsConnection';
1275
1275
  /** A list of edges which contains the `IdpConnection` and cursor to aid in pagination. */
1276
1276
  edges: Array<IdpConnectionsEdge>;
@@ -1282,7 +1282,7 @@ export declare type IdpConnectionsConnection = {
1282
1282
  totalCount: Scalars['Int'];
1283
1283
  };
1284
1284
  /** A `IdpConnection` edge in the connection. */
1285
- export declare type IdpConnectionsEdge = {
1285
+ export type IdpConnectionsEdge = {
1286
1286
  __typename?: 'IdpConnectionsEdge';
1287
1287
  /** A cursor for use in pagination. */
1288
1288
  cursor?: Maybe<Scalars['Cursor']>;
@@ -1344,7 +1344,7 @@ export declare enum IdpConnectionsOrderBy {
1344
1344
  USER_INFO_RETRIEVAL_WEBHOOK_DESC = "USER_INFO_RETRIEVAL_WEBHOOK_DESC"
1345
1345
  }
1346
1346
  /** A filter to be used against many `ApplicationIdpConnection` object types. All fields are combined with a logical ‘and.’ */
1347
- export declare type IdpConnectionToManyApplicationIdpConnectionFilter = {
1347
+ export type IdpConnectionToManyApplicationIdpConnectionFilter = {
1348
1348
  /** Every related `ApplicationIdpConnection` matches the filter criteria. All fields are combined with a logical ‘and.’ */
1349
1349
  every?: Maybe<ApplicationIdpConnectionFilter>;
1350
1350
  /** No related `ApplicationIdpConnection` matches the filter criteria. All fields are combined with a logical ‘and.’ */
@@ -1353,7 +1353,7 @@ export declare type IdpConnectionToManyApplicationIdpConnectionFilter = {
1353
1353
  some?: Maybe<ApplicationIdpConnectionFilter>;
1354
1354
  };
1355
1355
  /** A filter to be used against many `UserIdpDatum` object types. All fields are combined with a logical ‘and.’ */
1356
- export declare type IdpConnectionToManyUserIdpDatumFilter = {
1356
+ export type IdpConnectionToManyUserIdpDatumFilter = {
1357
1357
  /** Every related `UserIdpDatum` matches the filter criteria. All fields are combined with a logical ‘and.’ */
1358
1358
  every?: Maybe<UserIdpDatumFilter>;
1359
1359
  /** No related `UserIdpDatum` matches the filter criteria. All fields are combined with a logical ‘and.’ */
@@ -1370,7 +1370,7 @@ export declare enum IdpProtocol {
1370
1370
  OIDC = "OIDC"
1371
1371
  }
1372
1372
  /** A filter to be used against IdpProtocol fields. All fields are combined with a logical ‘and.’ */
1373
- export declare type IdpProtocolFilter = {
1373
+ export type IdpProtocolFilter = {
1374
1374
  /** Not equal to the specified value, treating null like an ordinary value. */
1375
1375
  distinctFrom?: Maybe<IdpProtocol>;
1376
1376
  /** Equal to the specified value. */
@@ -1394,7 +1394,7 @@ export declare type IdpProtocolFilter = {
1394
1394
  /** Not included in the specified list. */
1395
1395
  notIn?: Maybe<Array<IdpProtocol>>;
1396
1396
  };
1397
- export declare type IdProvider = {
1397
+ export type IdProvider = {
1398
1398
  __typename?: 'IdProvider';
1399
1399
  createdDate: Scalars['Datetime'];
1400
1400
  createdUser: Scalars['String'];
@@ -1407,7 +1407,7 @@ export declare type IdProvider = {
1407
1407
  * A condition to be used against `IdProvider` object types. All fields are tested
1408
1408
  * for equality and combined with a logical ‘and.’
1409
1409
  */
1410
- export declare type IdProviderCondition = {
1410
+ export type IdProviderCondition = {
1411
1411
  /** Checks for equality with the object’s `createdDate` field. */
1412
1412
  createdDate?: Maybe<Scalars['Datetime']>;
1413
1413
  /** Checks for equality with the object’s `createdUser` field. */
@@ -1422,7 +1422,7 @@ export declare type IdProviderCondition = {
1422
1422
  updatedUser?: Maybe<Scalars['String']>;
1423
1423
  };
1424
1424
  /** A filter to be used against `IdProvider` object types. All fields are combined with a logical ‘and.’ */
1425
- export declare type IdProviderFilter = {
1425
+ export type IdProviderFilter = {
1426
1426
  /** Checks for all expressions in this list. */
1427
1427
  and?: Maybe<Array<IdProviderFilter>>;
1428
1428
  /** Filter by the object’s `createdDate` field. */
@@ -1443,7 +1443,7 @@ export declare type IdProviderFilter = {
1443
1443
  updatedUser?: Maybe<StringFilter>;
1444
1444
  };
1445
1445
  /** A connection to a list of `IdProvider` values. */
1446
- export declare type IdProvidersConnection = {
1446
+ export type IdProvidersConnection = {
1447
1447
  __typename?: 'IdProvidersConnection';
1448
1448
  /** A list of edges which contains the `IdProvider` and cursor to aid in pagination. */
1449
1449
  edges: Array<IdProvidersEdge>;
@@ -1455,7 +1455,7 @@ export declare type IdProvidersConnection = {
1455
1455
  totalCount: Scalars['Int'];
1456
1456
  };
1457
1457
  /** A `IdProvider` edge in the connection. */
1458
- export declare type IdProvidersEdge = {
1458
+ export type IdProvidersEdge = {
1459
1459
  __typename?: 'IdProvidersEdge';
1460
1460
  /** A cursor for use in pagination. */
1461
1461
  cursor?: Maybe<Scalars['Cursor']>;
@@ -1479,7 +1479,7 @@ export declare enum IdProvidersOrderBy {
1479
1479
  UPDATED_USER_DESC = "UPDATED_USER_DESC"
1480
1480
  }
1481
1481
  /** A filter to be used against Int fields. All fields are combined with a logical ‘and.’ */
1482
- export declare type IntFilter = {
1482
+ export type IntFilter = {
1483
1483
  /** Not equal to the specified value, treating null like an ordinary value. */
1484
1484
  distinctFrom?: Maybe<Scalars['Int']>;
1485
1485
  /** Equal to the specified value. */
@@ -1504,7 +1504,7 @@ export declare type IntFilter = {
1504
1504
  notIn?: Maybe<Array<Scalars['Int']>>;
1505
1505
  };
1506
1506
  /** A filter to be used against JSON fields. All fields are combined with a logical ‘and.’ */
1507
- export declare type JsonFilter = {
1507
+ export type JsonFilter = {
1508
1508
  /** Contained by the specified JSON. */
1509
1509
  containedBy?: Maybe<Scalars['JSON']>;
1510
1510
  /** Contains the specified JSON. */
@@ -1539,7 +1539,7 @@ export declare type JsonFilter = {
1539
1539
  notIn?: Maybe<Array<Scalars['JSON']>>;
1540
1540
  };
1541
1541
  /** The root mutation type which contains root level fields which mutate data. */
1542
- export declare type Mutation = {
1542
+ export type Mutation = {
1543
1543
  __typename?: 'Mutation';
1544
1544
  /** Adds a custom mutation to authenticate an end-user application token for a given tenant/environment/application combination */
1545
1545
  authenticateEndUserApplication: AuthenticateEndUserApplicationPayload;
@@ -1600,99 +1600,99 @@ export declare type Mutation = {
1600
1600
  updateUserProfile?: Maybe<UpdateUserProfilePayload>;
1601
1601
  };
1602
1602
  /** The root mutation type which contains root level fields which mutate data. */
1603
- export declare type MutationAuthenticateEndUserApplicationArgs = {
1603
+ export type MutationAuthenticateEndUserApplicationArgs = {
1604
1604
  input: AuthenticateEndUserApplicationInput;
1605
1605
  };
1606
1606
  /** The root mutation type which contains root level fields which mutate data. */
1607
- export declare type MutationCreateApplicationArgs = {
1607
+ export type MutationCreateApplicationArgs = {
1608
1608
  input: CreateApplicationInput;
1609
1609
  };
1610
1610
  /** The root mutation type which contains root level fields which mutate data. */
1611
- export declare type MutationCreateApplicationIdpConnectionArgs = {
1611
+ export type MutationCreateApplicationIdpConnectionArgs = {
1612
1612
  input: CreateApplicationIdpConnectionInput;
1613
1613
  };
1614
1614
  /** The root mutation type which contains root level fields which mutate data. */
1615
- export declare type MutationCreateIdpConnectionArgs = {
1615
+ export type MutationCreateIdpConnectionArgs = {
1616
1616
  input: CreateIdpConnectionInput;
1617
1617
  };
1618
1618
  /** The root mutation type which contains root level fields which mutate data. */
1619
- export declare type MutationCreateUserProfileArgs = {
1619
+ export type MutationCreateUserProfileArgs = {
1620
1620
  input: CreateUserProfileInput;
1621
1621
  };
1622
1622
  /** The root mutation type which contains root level fields which mutate data. */
1623
- export declare type MutationDecryptWithKeyAesArgs = {
1623
+ export type MutationDecryptWithKeyAesArgs = {
1624
1624
  input: DecryptWithKeyAesInput;
1625
1625
  };
1626
1626
  /** The root mutation type which contains root level fields which mutate data. */
1627
- export declare type MutationDeleteApplicationArgs = {
1627
+ export type MutationDeleteApplicationArgs = {
1628
1628
  input: DeleteApplicationInput;
1629
1629
  };
1630
1630
  /** The root mutation type which contains root level fields which mutate data. */
1631
- export declare type MutationDeleteApplicationIdpConnectionArgs = {
1631
+ export type MutationDeleteApplicationIdpConnectionArgs = {
1632
1632
  input: DeleteApplicationIdpConnectionInput;
1633
1633
  };
1634
1634
  /** The root mutation type which contains root level fields which mutate data. */
1635
- export declare type MutationDeleteIdpConnectionArgs = {
1635
+ export type MutationDeleteIdpConnectionArgs = {
1636
1636
  input: DeleteIdpConnectionInput;
1637
1637
  };
1638
1638
  /** The root mutation type which contains root level fields which mutate data. */
1639
- export declare type MutationDeleteUserArgs = {
1639
+ export type MutationDeleteUserArgs = {
1640
1640
  input: DeleteUserInput;
1641
1641
  };
1642
1642
  /** The root mutation type which contains root level fields which mutate data. */
1643
- export declare type MutationDeleteUserIdpDatumArgs = {
1643
+ export type MutationDeleteUserIdpDatumArgs = {
1644
1644
  input: DeleteUserIdpDatumInput;
1645
1645
  };
1646
1646
  /** The root mutation type which contains root level fields which mutate data. */
1647
- export declare type MutationDeleteUserProfileArgs = {
1647
+ export type MutationDeleteUserProfileArgs = {
1648
1648
  input: DeleteUserProfileInput;
1649
1649
  };
1650
1650
  /** The root mutation type which contains root level fields which mutate data. */
1651
- export declare type MutationDevGenerateEndUserAccessTokenArgs = {
1651
+ export type MutationDevGenerateEndUserAccessTokenArgs = {
1652
1652
  input: DevGenerateEndUserAccessTokenInput;
1653
1653
  };
1654
1654
  /** The root mutation type which contains root level fields which mutate data. */
1655
- export declare type MutationEncryptWithKeyAesArgs = {
1655
+ export type MutationEncryptWithKeyAesArgs = {
1656
1656
  input: EncryptWithKeyAesInput;
1657
1657
  };
1658
1658
  /** The root mutation type which contains root level fields which mutate data. */
1659
- export declare type MutationGenerateApplicationKeyArgs = {
1659
+ export type MutationGenerateApplicationKeyArgs = {
1660
1660
  input: GenerateApplicationKeyInput;
1661
1661
  };
1662
1662
  /** The root mutation type which contains root level fields which mutate data. */
1663
- export declare type MutationGenerateDelegatedAccessTokenArgs = {
1663
+ export type MutationGenerateDelegatedAccessTokenArgs = {
1664
1664
  input: GenerateDelegatedAccessTokenInput;
1665
1665
  };
1666
1666
  /** The root mutation type which contains root level fields which mutate data. */
1667
- export declare type MutationGenerateEndUserLongLivedTokenArgs = {
1667
+ export type MutationGenerateEndUserLongLivedTokenArgs = {
1668
1668
  input: GenerateEndUserLongLivedTokenInput;
1669
1669
  };
1670
1670
  /** The root mutation type which contains root level fields which mutate data. */
1671
- export declare type MutationRevokeAndRotateUserTokenSigningKeyArgs = {
1671
+ export type MutationRevokeAndRotateUserTokenSigningKeyArgs = {
1672
1672
  applicationId: Scalars['UUID'];
1673
1673
  };
1674
1674
  /** The root mutation type which contains root level fields which mutate data. */
1675
- export declare type MutationUpdateApplicationArgs = {
1675
+ export type MutationUpdateApplicationArgs = {
1676
1676
  input: UpdateApplicationInput;
1677
1677
  };
1678
1678
  /** The root mutation type which contains root level fields which mutate data. */
1679
- export declare type MutationUpdateIdpConnectionArgs = {
1679
+ export type MutationUpdateIdpConnectionArgs = {
1680
1680
  input: UpdateIdpConnectionInput;
1681
1681
  };
1682
1682
  /** The root mutation type which contains root level fields which mutate data. */
1683
- export declare type MutationUpdateServiceConfigurationArgs = {
1683
+ export type MutationUpdateServiceConfigurationArgs = {
1684
1684
  input: UpdateServiceConfigurationInput;
1685
1685
  };
1686
1686
  /** The root mutation type which contains root level fields which mutate data. */
1687
- export declare type MutationUpdateUserArgs = {
1687
+ export type MutationUpdateUserArgs = {
1688
1688
  input: UpdateUserInput;
1689
1689
  };
1690
1690
  /** The root mutation type which contains root level fields which mutate data. */
1691
- export declare type MutationUpdateUserProfileArgs = {
1691
+ export type MutationUpdateUserProfileArgs = {
1692
1692
  input: UpdateUserProfileInput;
1693
1693
  };
1694
1694
  /** Information about pagination in a connection. */
1695
- export declare type PageInfo = {
1695
+ export type PageInfo = {
1696
1696
  __typename?: 'PageInfo';
1697
1697
  /** When paginating forwards, the cursor to continue. */
1698
1698
  endCursor?: Maybe<Scalars['Cursor']>;
@@ -1704,7 +1704,7 @@ export declare type PageInfo = {
1704
1704
  startCursor?: Maybe<Scalars['Cursor']>;
1705
1705
  };
1706
1706
  /** The root query type which gives access points into the data universe. */
1707
- export declare type Query = {
1707
+ export type Query = {
1708
1708
  __typename?: 'Query';
1709
1709
  application?: Maybe<Application>;
1710
1710
  applicationIdpConnection?: Maybe<ApplicationIdpConnection>;
@@ -1736,15 +1736,15 @@ export declare type Query = {
1736
1736
  users?: Maybe<UsersConnection>;
1737
1737
  };
1738
1738
  /** The root query type which gives access points into the data universe. */
1739
- export declare type QueryApplicationArgs = {
1739
+ export type QueryApplicationArgs = {
1740
1740
  id: Scalars['UUID'];
1741
1741
  };
1742
1742
  /** The root query type which gives access points into the data universe. */
1743
- export declare type QueryApplicationIdpConnectionArgs = {
1743
+ export type QueryApplicationIdpConnectionArgs = {
1744
1744
  id: Scalars['UUID'];
1745
1745
  };
1746
1746
  /** The root query type which gives access points into the data universe. */
1747
- export declare type QueryApplicationIdpConnectionsArgs = {
1747
+ export type QueryApplicationIdpConnectionsArgs = {
1748
1748
  after?: Maybe<Scalars['Cursor']>;
1749
1749
  before?: Maybe<Scalars['Cursor']>;
1750
1750
  condition?: Maybe<ApplicationIdpConnectionCondition>;
@@ -1755,7 +1755,7 @@ export declare type QueryApplicationIdpConnectionsArgs = {
1755
1755
  orderBy?: Maybe<Array<ApplicationIdpConnectionsOrderBy>>;
1756
1756
  };
1757
1757
  /** The root query type which gives access points into the data universe. */
1758
- export declare type QueryApplicationsArgs = {
1758
+ export type QueryApplicationsArgs = {
1759
1759
  after?: Maybe<Scalars['Cursor']>;
1760
1760
  before?: Maybe<Scalars['Cursor']>;
1761
1761
  condition?: Maybe<ApplicationCondition>;
@@ -1766,11 +1766,11 @@ export declare type QueryApplicationsArgs = {
1766
1766
  orderBy?: Maybe<Array<ApplicationsOrderBy>>;
1767
1767
  };
1768
1768
  /** The root query type which gives access points into the data universe. */
1769
- export declare type QueryIdpConnectionArgs = {
1769
+ export type QueryIdpConnectionArgs = {
1770
1770
  id: Scalars['UUID'];
1771
1771
  };
1772
1772
  /** The root query type which gives access points into the data universe. */
1773
- export declare type QueryIdpConnectionsArgs = {
1773
+ export type QueryIdpConnectionsArgs = {
1774
1774
  after?: Maybe<Scalars['Cursor']>;
1775
1775
  before?: Maybe<Scalars['Cursor']>;
1776
1776
  condition?: Maybe<IdpConnectionCondition>;
@@ -1781,7 +1781,7 @@ export declare type QueryIdpConnectionsArgs = {
1781
1781
  orderBy?: Maybe<Array<IdpConnectionsOrderBy>>;
1782
1782
  };
1783
1783
  /** The root query type which gives access points into the data universe. */
1784
- export declare type QueryIdProvidersArgs = {
1784
+ export type QueryIdProvidersArgs = {
1785
1785
  after?: Maybe<Scalars['Cursor']>;
1786
1786
  before?: Maybe<Scalars['Cursor']>;
1787
1787
  condition?: Maybe<IdProviderCondition>;
@@ -1792,11 +1792,11 @@ export declare type QueryIdProvidersArgs = {
1792
1792
  orderBy?: Maybe<Array<IdProvidersOrderBy>>;
1793
1793
  };
1794
1794
  /** The root query type which gives access points into the data universe. */
1795
- export declare type QueryServiceConfigurationArgs = {
1795
+ export type QueryServiceConfigurationArgs = {
1796
1796
  id: Scalars['UUID'];
1797
1797
  };
1798
1798
  /** The root query type which gives access points into the data universe. */
1799
- export declare type QueryServiceConfigurationsArgs = {
1799
+ export type QueryServiceConfigurationsArgs = {
1800
1800
  after?: Maybe<Scalars['Cursor']>;
1801
1801
  before?: Maybe<Scalars['Cursor']>;
1802
1802
  condition?: Maybe<ServiceConfigurationCondition>;
@@ -1807,11 +1807,11 @@ export declare type QueryServiceConfigurationsArgs = {
1807
1807
  orderBy?: Maybe<Array<ServiceConfigurationsOrderBy>>;
1808
1808
  };
1809
1809
  /** The root query type which gives access points into the data universe. */
1810
- export declare type QueryUserArgs = {
1810
+ export type QueryUserArgs = {
1811
1811
  id: Scalars['UUID'];
1812
1812
  };
1813
1813
  /** The root query type which gives access points into the data universe. */
1814
- export declare type QueryUserIdpDataArgs = {
1814
+ export type QueryUserIdpDataArgs = {
1815
1815
  after?: Maybe<Scalars['Cursor']>;
1816
1816
  before?: Maybe<Scalars['Cursor']>;
1817
1817
  condition?: Maybe<UserIdpDatumCondition>;
@@ -1822,16 +1822,16 @@ export declare type QueryUserIdpDataArgs = {
1822
1822
  orderBy?: Maybe<Array<UserIdpDataOrderBy>>;
1823
1823
  };
1824
1824
  /** The root query type which gives access points into the data universe. */
1825
- export declare type QueryUserIdpDatumArgs = {
1825
+ export type QueryUserIdpDatumArgs = {
1826
1826
  idpConnectionId: Scalars['UUID'];
1827
1827
  userId: Scalars['UUID'];
1828
1828
  };
1829
1829
  /** The root query type which gives access points into the data universe. */
1830
- export declare type QueryUserProfileArgs = {
1830
+ export type QueryUserProfileArgs = {
1831
1831
  id: Scalars['UUID'];
1832
1832
  };
1833
1833
  /** The root query type which gives access points into the data universe. */
1834
- export declare type QueryUserProfilesArgs = {
1834
+ export type QueryUserProfilesArgs = {
1835
1835
  after?: Maybe<Scalars['Cursor']>;
1836
1836
  before?: Maybe<Scalars['Cursor']>;
1837
1837
  condition?: Maybe<UserProfileCondition>;
@@ -1842,7 +1842,7 @@ export declare type QueryUserProfilesArgs = {
1842
1842
  orderBy?: Maybe<Array<UserProfilesOrderBy>>;
1843
1843
  };
1844
1844
  /** The root query type which gives access points into the data universe. */
1845
- export declare type QueryUsersArgs = {
1845
+ export type QueryUsersArgs = {
1846
1846
  after?: Maybe<Scalars['Cursor']>;
1847
1847
  before?: Maybe<Scalars['Cursor']>;
1848
1848
  condition?: Maybe<UserCondition>;
@@ -1852,11 +1852,11 @@ export declare type QueryUsersArgs = {
1852
1852
  offset?: Maybe<Scalars['Int']>;
1853
1853
  orderBy?: Maybe<Array<UsersOrderBy>>;
1854
1854
  };
1855
- export declare type RevokeAndRotateUserTokenSigningKeyPayload = {
1855
+ export type RevokeAndRotateUserTokenSigningKeyPayload = {
1856
1856
  __typename?: 'RevokeAndRotateUserTokenSigningKeyPayload';
1857
1857
  tokenSigningKey: RevokedUserTokenSigningKey;
1858
1858
  };
1859
- export declare type RevokedUserTokenSigningKey = {
1859
+ export type RevokedUserTokenSigningKey = {
1860
1860
  __typename?: 'RevokedUserTokenSigningKey';
1861
1861
  applicationId?: Maybe<Scalars['UUID']>;
1862
1862
  environmentId?: Maybe<Scalars['UUID']>;
@@ -1864,7 +1864,7 @@ export declare type RevokedUserTokenSigningKey = {
1864
1864
  nextRotationAt: Scalars['Datetime'];
1865
1865
  tenantId?: Maybe<Scalars['UUID']>;
1866
1866
  };
1867
- export declare type ServiceConfiguration = {
1867
+ export type ServiceConfiguration = {
1868
1868
  __typename?: 'ServiceConfiguration';
1869
1869
  createdDate: Scalars['Datetime'];
1870
1870
  createdUser: Scalars['String'];
@@ -1880,7 +1880,7 @@ export declare type ServiceConfiguration = {
1880
1880
  * A condition to be used against `ServiceConfiguration` object types. All fields
1881
1881
  * are tested for equality and combined with a logical ‘and.’
1882
1882
  */
1883
- export declare type ServiceConfigurationCondition = {
1883
+ export type ServiceConfigurationCondition = {
1884
1884
  /** Checks for equality with the object’s `createdDate` field. */
1885
1885
  createdDate?: Maybe<Scalars['Datetime']>;
1886
1886
  /** Checks for equality with the object’s `createdUser` field. */
@@ -1901,7 +1901,7 @@ export declare type ServiceConfigurationCondition = {
1901
1901
  webhookTimeout?: Maybe<Scalars['Int']>;
1902
1902
  };
1903
1903
  /** A filter to be used against `ServiceConfiguration` object types. All fields are combined with a logical ‘and.’ */
1904
- export declare type ServiceConfigurationFilter = {
1904
+ export type ServiceConfigurationFilter = {
1905
1905
  /** Checks for all expressions in this list. */
1906
1906
  and?: Maybe<Array<ServiceConfigurationFilter>>;
1907
1907
  /** Filter by the object’s `createdDate` field. */
@@ -1928,12 +1928,12 @@ export declare type ServiceConfigurationFilter = {
1928
1928
  webhookTimeout?: Maybe<IntFilter>;
1929
1929
  };
1930
1930
  /** Represents an update to a `ServiceConfiguration`. Fields that are set will be updated. */
1931
- export declare type ServiceConfigurationPatch = {
1931
+ export type ServiceConfigurationPatch = {
1932
1932
  signingKeyRotationInterval?: Maybe<Scalars['Int']>;
1933
1933
  webhookTimeout?: Maybe<Scalars['Int']>;
1934
1934
  };
1935
1935
  /** A connection to a list of `ServiceConfiguration` values. */
1936
- export declare type ServiceConfigurationsConnection = {
1936
+ export type ServiceConfigurationsConnection = {
1937
1937
  __typename?: 'ServiceConfigurationsConnection';
1938
1938
  /** A list of edges which contains the `ServiceConfiguration` and cursor to aid in pagination. */
1939
1939
  edges: Array<ServiceConfigurationsEdge>;
@@ -1945,7 +1945,7 @@ export declare type ServiceConfigurationsConnection = {
1945
1945
  totalCount: Scalars['Int'];
1946
1946
  };
1947
1947
  /** A `ServiceConfiguration` edge in the connection. */
1948
- export declare type ServiceConfigurationsEdge = {
1948
+ export type ServiceConfigurationsEdge = {
1949
1949
  __typename?: 'ServiceConfigurationsEdge';
1950
1950
  /** A cursor for use in pagination. */
1951
1951
  cursor?: Maybe<Scalars['Cursor']>;
@@ -1977,7 +1977,7 @@ export declare enum ServiceConfigurationsOrderBy {
1977
1977
  WEBHOOK_TIMEOUT_DESC = "WEBHOOK_TIMEOUT_DESC"
1978
1978
  }
1979
1979
  /** A filter to be used against String fields. All fields are combined with a logical ‘and.’ */
1980
- export declare type StringFilter = {
1980
+ export type StringFilter = {
1981
1981
  /** Not equal to the specified value, treating null like an ordinary value. */
1982
1982
  distinctFrom?: Maybe<Scalars['String']>;
1983
1983
  /** Not equal to the specified value, treating null like an ordinary value (case-insensitive). */
@@ -2054,7 +2054,7 @@ export declare type StringFilter = {
2054
2054
  startsWithInsensitive?: Maybe<Scalars['String']>;
2055
2055
  };
2056
2056
  /** A filter to be used against String List fields. All fields are combined with a logical ‘and.’ */
2057
- export declare type StringListFilter = {
2057
+ export type StringListFilter = {
2058
2058
  /** Any array item is equal to the specified value. */
2059
2059
  anyEqualTo?: Maybe<Scalars['String']>;
2060
2060
  /** Any array item is greater than the specified value. */
@@ -2093,7 +2093,7 @@ export declare type StringListFilter = {
2093
2093
  overlaps?: Maybe<Array<Maybe<Scalars['String']>>>;
2094
2094
  };
2095
2095
  /** All input for the `updateApplication` mutation. */
2096
- export declare type UpdateApplicationInput = {
2096
+ export type UpdateApplicationInput = {
2097
2097
  /**
2098
2098
  * An arbitrary string value with no semantic meaning. Will be included in the
2099
2099
  * payload verbatim. May be used to track mutations by the client.
@@ -2104,7 +2104,7 @@ export declare type UpdateApplicationInput = {
2104
2104
  patch: ApplicationPatch;
2105
2105
  };
2106
2106
  /** The output of our update `Application` mutation. */
2107
- export declare type UpdateApplicationPayload = {
2107
+ export type UpdateApplicationPayload = {
2108
2108
  __typename?: 'UpdateApplicationPayload';
2109
2109
  /** The `Application` that was updated by this mutation. */
2110
2110
  application?: Maybe<Application>;
@@ -2119,11 +2119,11 @@ export declare type UpdateApplicationPayload = {
2119
2119
  query?: Maybe<Query>;
2120
2120
  };
2121
2121
  /** The output of our update `Application` mutation. */
2122
- export declare type UpdateApplicationPayloadApplicationEdgeArgs = {
2122
+ export type UpdateApplicationPayloadApplicationEdgeArgs = {
2123
2123
  orderBy?: Maybe<Array<ApplicationsOrderBy>>;
2124
2124
  };
2125
2125
  /** All input for the `updateIdpConnection` mutation. */
2126
- export declare type UpdateIdpConnectionInput = {
2126
+ export type UpdateIdpConnectionInput = {
2127
2127
  /**
2128
2128
  * An arbitrary string value with no semantic meaning. Will be included in the
2129
2129
  * payload verbatim. May be used to track mutations by the client.
@@ -2134,7 +2134,7 @@ export declare type UpdateIdpConnectionInput = {
2134
2134
  patch: IdpConnectionPatch;
2135
2135
  };
2136
2136
  /** The output of our update `IdpConnection` mutation. */
2137
- export declare type UpdateIdpConnectionPayload = {
2137
+ export type UpdateIdpConnectionPayload = {
2138
2138
  __typename?: 'UpdateIdpConnectionPayload';
2139
2139
  /**
2140
2140
  * The exact same `clientMutationId` that was provided in the mutation input,
@@ -2149,11 +2149,11 @@ export declare type UpdateIdpConnectionPayload = {
2149
2149
  query?: Maybe<Query>;
2150
2150
  };
2151
2151
  /** The output of our update `IdpConnection` mutation. */
2152
- export declare type UpdateIdpConnectionPayloadIdpConnectionEdgeArgs = {
2152
+ export type UpdateIdpConnectionPayloadIdpConnectionEdgeArgs = {
2153
2153
  orderBy?: Maybe<Array<IdpConnectionsOrderBy>>;
2154
2154
  };
2155
2155
  /** All input for the `updateServiceConfiguration` mutation. */
2156
- export declare type UpdateServiceConfigurationInput = {
2156
+ export type UpdateServiceConfigurationInput = {
2157
2157
  /**
2158
2158
  * An arbitrary string value with no semantic meaning. Will be included in the
2159
2159
  * payload verbatim. May be used to track mutations by the client.
@@ -2164,7 +2164,7 @@ export declare type UpdateServiceConfigurationInput = {
2164
2164
  patch: ServiceConfigurationPatch;
2165
2165
  };
2166
2166
  /** The output of our update `ServiceConfiguration` mutation. */
2167
- export declare type UpdateServiceConfigurationPayload = {
2167
+ export type UpdateServiceConfigurationPayload = {
2168
2168
  __typename?: 'UpdateServiceConfigurationPayload';
2169
2169
  /**
2170
2170
  * The exact same `clientMutationId` that was provided in the mutation input,
@@ -2179,11 +2179,11 @@ export declare type UpdateServiceConfigurationPayload = {
2179
2179
  serviceConfigurationEdge?: Maybe<ServiceConfigurationsEdge>;
2180
2180
  };
2181
2181
  /** The output of our update `ServiceConfiguration` mutation. */
2182
- export declare type UpdateServiceConfigurationPayloadServiceConfigurationEdgeArgs = {
2182
+ export type UpdateServiceConfigurationPayloadServiceConfigurationEdgeArgs = {
2183
2183
  orderBy?: Maybe<Array<ServiceConfigurationsOrderBy>>;
2184
2184
  };
2185
2185
  /** All input for the `updateUser` mutation. */
2186
- export declare type UpdateUserInput = {
2186
+ export type UpdateUserInput = {
2187
2187
  /**
2188
2188
  * An arbitrary string value with no semantic meaning. Will be included in the
2189
2189
  * payload verbatim. May be used to track mutations by the client.
@@ -2194,7 +2194,7 @@ export declare type UpdateUserInput = {
2194
2194
  patch: UserPatch;
2195
2195
  };
2196
2196
  /** The output of our update `User` mutation. */
2197
- export declare type UpdateUserPayload = {
2197
+ export type UpdateUserPayload = {
2198
2198
  __typename?: 'UpdateUserPayload';
2199
2199
  /**
2200
2200
  * The exact same `clientMutationId` that was provided in the mutation input,
@@ -2209,11 +2209,11 @@ export declare type UpdateUserPayload = {
2209
2209
  userEdge?: Maybe<UsersEdge>;
2210
2210
  };
2211
2211
  /** The output of our update `User` mutation. */
2212
- export declare type UpdateUserPayloadUserEdgeArgs = {
2212
+ export type UpdateUserPayloadUserEdgeArgs = {
2213
2213
  orderBy?: Maybe<Array<UsersOrderBy>>;
2214
2214
  };
2215
2215
  /** All input for the `updateUserProfile` mutation. */
2216
- export declare type UpdateUserProfileInput = {
2216
+ export type UpdateUserProfileInput = {
2217
2217
  /**
2218
2218
  * An arbitrary string value with no semantic meaning. Will be included in the
2219
2219
  * payload verbatim. May be used to track mutations by the client.
@@ -2224,7 +2224,7 @@ export declare type UpdateUserProfileInput = {
2224
2224
  patch: UserProfilePatch;
2225
2225
  };
2226
2226
  /** The output of our update `UserProfile` mutation. */
2227
- export declare type UpdateUserProfilePayload = {
2227
+ export type UpdateUserProfilePayload = {
2228
2228
  __typename?: 'UpdateUserProfilePayload';
2229
2229
  /**
2230
2230
  * The exact same `clientMutationId` that was provided in the mutation input,
@@ -2241,10 +2241,10 @@ export declare type UpdateUserProfilePayload = {
2241
2241
  userProfileEdge?: Maybe<UserProfilesEdge>;
2242
2242
  };
2243
2243
  /** The output of our update `UserProfile` mutation. */
2244
- export declare type UpdateUserProfilePayloadUserProfileEdgeArgs = {
2244
+ export type UpdateUserProfilePayloadUserProfileEdgeArgs = {
2245
2245
  orderBy?: Maybe<Array<UserProfilesOrderBy>>;
2246
2246
  };
2247
- export declare type User = {
2247
+ export type User = {
2248
2248
  __typename?: 'User';
2249
2249
  createdDate: Scalars['Datetime'];
2250
2250
  createdUser: Scalars['String'];
@@ -2264,7 +2264,7 @@ export declare type User = {
2264
2264
  /** Reads and enables pagination through a set of `UserProfile`. */
2265
2265
  userProfiles: UserProfilesConnection;
2266
2266
  };
2267
- export declare type UserUserIdpDataArgs = {
2267
+ export type UserUserIdpDataArgs = {
2268
2268
  after?: Maybe<Scalars['Cursor']>;
2269
2269
  before?: Maybe<Scalars['Cursor']>;
2270
2270
  condition?: Maybe<UserIdpDatumCondition>;
@@ -2274,7 +2274,7 @@ export declare type UserUserIdpDataArgs = {
2274
2274
  offset?: Maybe<Scalars['Int']>;
2275
2275
  orderBy?: Maybe<Array<UserIdpDataOrderBy>>;
2276
2276
  };
2277
- export declare type UserUserProfilesArgs = {
2277
+ export type UserUserProfilesArgs = {
2278
2278
  after?: Maybe<Scalars['Cursor']>;
2279
2279
  before?: Maybe<Scalars['Cursor']>;
2280
2280
  condition?: Maybe<UserProfileCondition>;
@@ -2285,7 +2285,7 @@ export declare type UserUserProfilesArgs = {
2285
2285
  orderBy?: Maybe<Array<UserProfilesOrderBy>>;
2286
2286
  };
2287
2287
  /** A condition to be used against `User` object types. All fields are tested for equality and combined with a logical ‘and.’ */
2288
- export declare type UserCondition = {
2288
+ export type UserCondition = {
2289
2289
  /** Checks for equality with the object’s `createdDate` field. */
2290
2290
  createdDate?: Maybe<Scalars['Datetime']>;
2291
2291
  /** Checks for equality with the object’s `createdUser` field. */
@@ -2314,7 +2314,7 @@ export declare type UserCondition = {
2314
2314
  updatedUser?: Maybe<Scalars['String']>;
2315
2315
  };
2316
2316
  /** A filter to be used against `User` object types. All fields are combined with a logical ‘and.’ */
2317
- export declare type UserFilter = {
2317
+ export type UserFilter = {
2318
2318
  /** Checks for all expressions in this list. */
2319
2319
  and?: Maybe<Array<UserFilter>>;
2320
2320
  /** Filter by the object’s `createdDate` field. */
@@ -2357,7 +2357,7 @@ export declare type UserFilter = {
2357
2357
  userProfilesExist?: Maybe<Scalars['Boolean']>;
2358
2358
  };
2359
2359
  /** A connection to a list of `UserIdpDatum` values. */
2360
- export declare type UserIdpDataConnection = {
2360
+ export type UserIdpDataConnection = {
2361
2361
  __typename?: 'UserIdpDataConnection';
2362
2362
  /** A list of edges which contains the `UserIdpDatum` and cursor to aid in pagination. */
2363
2363
  edges: Array<UserIdpDataEdge>;
@@ -2369,7 +2369,7 @@ export declare type UserIdpDataConnection = {
2369
2369
  totalCount: Scalars['Int'];
2370
2370
  };
2371
2371
  /** A `UserIdpDatum` edge in the connection. */
2372
- export declare type UserIdpDataEdge = {
2372
+ export type UserIdpDataEdge = {
2373
2373
  __typename?: 'UserIdpDataEdge';
2374
2374
  /** A cursor for use in pagination. */
2375
2375
  cursor?: Maybe<Scalars['Cursor']>;
@@ -2398,7 +2398,7 @@ export declare enum UserIdpDataOrderBy {
2398
2398
  USER_ID_ASC = "USER_ID_ASC",
2399
2399
  USER_ID_DESC = "USER_ID_DESC"
2400
2400
  }
2401
- export declare type UserIdpDatum = {
2401
+ export type UserIdpDatum = {
2402
2402
  __typename?: 'UserIdpDatum';
2403
2403
  createdDate: Scalars['Datetime'];
2404
2404
  /** Reads a single `IdpConnection` that is related to this `UserIdpDatum`. */
@@ -2417,7 +2417,7 @@ export declare type UserIdpDatum = {
2417
2417
  * A condition to be used against `UserIdpDatum` object types. All fields are
2418
2418
  * tested for equality and combined with a logical ‘and.’
2419
2419
  */
2420
- export declare type UserIdpDatumCondition = {
2420
+ export type UserIdpDatumCondition = {
2421
2421
  /** Checks for equality with the object’s `createdDate` field. */
2422
2422
  createdDate?: Maybe<Scalars['Datetime']>;
2423
2423
  /** Checks for equality with the object’s `idpConnectionId` field. */
@@ -2436,7 +2436,7 @@ export declare type UserIdpDatumCondition = {
2436
2436
  userId?: Maybe<Scalars['UUID']>;
2437
2437
  };
2438
2438
  /** A filter to be used against `UserIdpDatum` object types. All fields are combined with a logical ‘and.’ */
2439
- export declare type UserIdpDatumFilter = {
2439
+ export type UserIdpDatumFilter = {
2440
2440
  /** Checks for all expressions in this list. */
2441
2441
  and?: Maybe<Array<UserIdpDatumFilter>>;
2442
2442
  /** Filter by the object’s `createdDate` field. */
@@ -2465,7 +2465,7 @@ export declare type UserIdpDatumFilter = {
2465
2465
  userId?: Maybe<UuidFilter>;
2466
2466
  };
2467
2467
  /** Represents an update to a `User`. Fields that are set will be updated. */
2468
- export declare type UserPatch = {
2468
+ export type UserPatch = {
2469
2469
  email?: Maybe<Array<Maybe<Scalars['String']>>>;
2470
2470
  enabled?: Maybe<Scalars['Boolean']>;
2471
2471
  lastActiveAt?: Maybe<Scalars['Datetime']>;
@@ -2473,7 +2473,7 @@ export declare type UserPatch = {
2473
2473
  name?: Maybe<Scalars['String']>;
2474
2474
  phone?: Maybe<Scalars['String']>;
2475
2475
  };
2476
- export declare type UserProfile = {
2476
+ export type UserProfile = {
2477
2477
  __typename?: 'UserProfile';
2478
2478
  createdDate: Scalars['Datetime'];
2479
2479
  createdUser: Scalars['String'];
@@ -2494,7 +2494,7 @@ export declare type UserProfile = {
2494
2494
  * A condition to be used against `UserProfile` object types. All fields are tested
2495
2495
  * for equality and combined with a logical ‘and.’
2496
2496
  */
2497
- export declare type UserProfileCondition = {
2497
+ export type UserProfileCondition = {
2498
2498
  /** Checks for equality with the object’s `createdDate` field. */
2499
2499
  createdDate?: Maybe<Scalars['Datetime']>;
2500
2500
  /** Checks for equality with the object’s `createdUser` field. */
@@ -2521,7 +2521,7 @@ export declare type UserProfileCondition = {
2521
2521
  userId?: Maybe<Scalars['UUID']>;
2522
2522
  };
2523
2523
  /** A filter to be used against `UserProfile` object types. All fields are combined with a logical ‘and.’ */
2524
- export declare type UserProfileFilter = {
2524
+ export type UserProfileFilter = {
2525
2525
  /** Checks for all expressions in this list. */
2526
2526
  and?: Maybe<Array<UserProfileFilter>>;
2527
2527
  /** Filter by the object’s `createdDate` field. */
@@ -2556,7 +2556,7 @@ export declare type UserProfileFilter = {
2556
2556
  userId?: Maybe<UuidFilter>;
2557
2557
  };
2558
2558
  /** An input for mutations affecting `UserProfile` */
2559
- export declare type UserProfileInput = {
2559
+ export type UserProfileInput = {
2560
2560
  defaultProfile?: Maybe<Scalars['Boolean']>;
2561
2561
  displayName: Scalars['String'];
2562
2562
  profileData?: Maybe<Scalars['JSON']>;
@@ -2564,13 +2564,13 @@ export declare type UserProfileInput = {
2564
2564
  userId: Scalars['UUID'];
2565
2565
  };
2566
2566
  /** Represents an update to a `UserProfile`. Fields that are set will be updated. */
2567
- export declare type UserProfilePatch = {
2567
+ export type UserProfilePatch = {
2568
2568
  displayName?: Maybe<Scalars['String']>;
2569
2569
  profileData?: Maybe<Scalars['JSON']>;
2570
2570
  profilePictureUrl?: Maybe<Scalars['String']>;
2571
2571
  };
2572
2572
  /** A connection to a list of `UserProfile` values. */
2573
- export declare type UserProfilesConnection = {
2573
+ export type UserProfilesConnection = {
2574
2574
  __typename?: 'UserProfilesConnection';
2575
2575
  /** A list of edges which contains the `UserProfile` and cursor to aid in pagination. */
2576
2576
  edges: Array<UserProfilesEdge>;
@@ -2582,7 +2582,7 @@ export declare type UserProfilesConnection = {
2582
2582
  totalCount: Scalars['Int'];
2583
2583
  };
2584
2584
  /** A `UserProfile` edge in the connection. */
2585
- export declare type UserProfilesEdge = {
2585
+ export type UserProfilesEdge = {
2586
2586
  __typename?: 'UserProfilesEdge';
2587
2587
  /** A cursor for use in pagination. */
2588
2588
  cursor?: Maybe<Scalars['Cursor']>;
@@ -2620,7 +2620,7 @@ export declare enum UserProfilesOrderBy {
2620
2620
  USER_ID_DESC = "USER_ID_DESC"
2621
2621
  }
2622
2622
  /** A connection to a list of `User` values. */
2623
- export declare type UsersConnection = {
2623
+ export type UsersConnection = {
2624
2624
  __typename?: 'UsersConnection';
2625
2625
  /** A list of edges which contains the `User` and cursor to aid in pagination. */
2626
2626
  edges: Array<UsersEdge>;
@@ -2632,7 +2632,7 @@ export declare type UsersConnection = {
2632
2632
  totalCount: Scalars['Int'];
2633
2633
  };
2634
2634
  /** A `User` edge in the connection. */
2635
- export declare type UsersEdge = {
2635
+ export type UsersEdge = {
2636
2636
  __typename?: 'UsersEdge';
2637
2637
  /** A cursor for use in pagination. */
2638
2638
  cursor?: Maybe<Scalars['Cursor']>;
@@ -2672,7 +2672,7 @@ export declare enum UsersOrderBy {
2672
2672
  UPDATED_USER_DESC = "UPDATED_USER_DESC"
2673
2673
  }
2674
2674
  /** A filter to be used against many `UserIdpDatum` object types. All fields are combined with a logical ‘and.’ */
2675
- export declare type UserToManyUserIdpDatumFilter = {
2675
+ export type UserToManyUserIdpDatumFilter = {
2676
2676
  /** Every related `UserIdpDatum` matches the filter criteria. All fields are combined with a logical ‘and.’ */
2677
2677
  every?: Maybe<UserIdpDatumFilter>;
2678
2678
  /** No related `UserIdpDatum` matches the filter criteria. All fields are combined with a logical ‘and.’ */
@@ -2681,7 +2681,7 @@ export declare type UserToManyUserIdpDatumFilter = {
2681
2681
  some?: Maybe<UserIdpDatumFilter>;
2682
2682
  };
2683
2683
  /** A filter to be used against many `UserProfile` object types. All fields are combined with a logical ‘and.’ */
2684
- export declare type UserToManyUserProfileFilter = {
2684
+ export type UserToManyUserProfileFilter = {
2685
2685
  /** Every related `UserProfile` matches the filter criteria. All fields are combined with a logical ‘and.’ */
2686
2686
  every?: Maybe<UserProfileFilter>;
2687
2687
  /** No related `UserProfile` matches the filter criteria. All fields are combined with a logical ‘and.’ */
@@ -2690,7 +2690,7 @@ export declare type UserToManyUserProfileFilter = {
2690
2690
  some?: Maybe<UserProfileFilter>;
2691
2691
  };
2692
2692
  /** A filter to be used against UUID fields. All fields are combined with a logical ‘and.’ */
2693
- export declare type UuidFilter = {
2693
+ export type UuidFilter = {
2694
2694
  /** Not equal to the specified value, treating null like an ordinary value. */
2695
2695
  distinctFrom?: Maybe<Scalars['UUID']>;
2696
2696
  /** Equal to the specified value. */
@@ -2714,20 +2714,20 @@ export declare type UuidFilter = {
2714
2714
  /** Not included in the specified list. */
2715
2715
  notIn?: Maybe<Array<Scalars['UUID']>>;
2716
2716
  };
2717
- export declare type AuthenticateEndUserApplicationMutationVariables = Exact<{
2717
+ export type AuthenticateEndUserApplicationMutationVariables = Exact<{
2718
2718
  input: AuthenticateEndUserApplicationInput;
2719
2719
  }>;
2720
- export declare type AuthenticateEndUserApplicationMutation = ({
2720
+ export type AuthenticateEndUserApplicationMutation = ({
2721
2721
  __typename?: 'Mutation';
2722
2722
  } & {
2723
2723
  authenticateEndUserApplication: ({
2724
2724
  __typename?: 'AuthenticateEndUserApplicationPayload';
2725
2725
  } & Pick<AuthenticateEndUserApplicationPayload, 'accessToken' | 'expiresInSeconds' | 'tokenType'>);
2726
2726
  });
2727
- export declare type DecryptNativeCookieMutationVariables = Exact<{
2727
+ export type DecryptNativeCookieMutationVariables = Exact<{
2728
2728
  input: DecryptWithKeyAesInput;
2729
2729
  }>;
2730
- export declare type DecryptNativeCookieMutation = ({
2730
+ export type DecryptNativeCookieMutation = ({
2731
2731
  __typename?: 'Mutation';
2732
2732
  } & {
2733
2733
  decryptWithKeyAes: ({