@axinom/mosaic-user-auth 0.3.6-rc.1 → 0.3.6

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.
@@ -424,7 +424,7 @@ export declare type BooleanFilter = {
424
424
  export declare type ConsumerAccessTokenPayload = {
425
425
  __typename?: 'ConsumerAccessTokenPayload';
426
426
  applicationId: Scalars['UUID'];
427
- email: Scalars['String'];
427
+ email?: Maybe<Scalars['String']>;
428
428
  environmentId: Scalars['UUID'];
429
429
  extensions?: Maybe<Scalars['JSON']>;
430
430
  name: Scalars['String'];
@@ -581,6 +581,17 @@ export declare type DatetimeFilter = {
581
581
  /** Not included in the specified list. */
582
582
  notIn?: Maybe<Array<Scalars['Datetime']>>;
583
583
  };
584
+ export declare type DecryptWithKeyAesInput = {
585
+ /** The encrypted value as a Base 64 encoded string. */
586
+ encryptedValue: Scalars['String'];
587
+ /** Encryption Key that was used for the encryption. */
588
+ key: Scalars['String'];
589
+ };
590
+ export declare type DecryptWithKeyAesPayload = {
591
+ __typename?: 'DecryptWithKeyAesPayload';
592
+ /** The decrypted string. */
593
+ decryptedValue: Scalars['String'];
594
+ };
584
595
  /** All input for the `deleteApplicationIdpConnection` mutation. */
585
596
  export declare type DeleteApplicationIdpConnectionInput = {
586
597
  /**
@@ -672,6 +683,40 @@ export declare type DeleteIdpConnectionPayload = {
672
683
  export declare type DeleteIdpConnectionPayloadIdpConnectionEdgeArgs = {
673
684
  orderBy?: Maybe<Array<IdpConnectionsOrderBy>>;
674
685
  };
686
+ /** All input for the `deleteUserIdpDatum` mutation. */
687
+ export declare type DeleteUserIdpDatumInput = {
688
+ /**
689
+ * An arbitrary string value with no semantic meaning. Will be included in the
690
+ * payload verbatim. May be used to track mutations by the client.
691
+ */
692
+ clientMutationId?: Maybe<Scalars['String']>;
693
+ idpConnectionId: Scalars['UUID'];
694
+ userId: Scalars['UUID'];
695
+ };
696
+ /** The output of our delete `UserIdpDatum` mutation. */
697
+ export declare type DeleteUserIdpDatumPayload = {
698
+ __typename?: 'DeleteUserIdpDatumPayload';
699
+ /**
700
+ * The exact same `clientMutationId` that was provided in the mutation input,
701
+ * unchanged and unused. May be used by a client to track mutations.
702
+ */
703
+ clientMutationId?: Maybe<Scalars['String']>;
704
+ deletedUserIdpDatumNodeId?: Maybe<Scalars['ID']>;
705
+ /** Reads a single `IdpConnection` that is related to this `UserIdpDatum`. */
706
+ idpConnection?: Maybe<IdpConnection>;
707
+ /** Our root query field type. Allows us to run any query from our mutation payload. */
708
+ query?: Maybe<Query>;
709
+ /** Reads a single `User` that is related to this `UserIdpDatum`. */
710
+ user?: Maybe<User>;
711
+ /** The `UserIdpDatum` that was deleted by this mutation. */
712
+ userIdpDatum?: Maybe<UserIdpDatum>;
713
+ /** An edge for our `UserIdpDatum`. May be used by Relay 1. */
714
+ userIdpDatumEdge?: Maybe<UserIdpDataEdge>;
715
+ };
716
+ /** The output of our delete `UserIdpDatum` mutation. */
717
+ export declare type DeleteUserIdpDatumPayloadUserIdpDatumEdgeArgs = {
718
+ orderBy?: Maybe<Array<UserIdpDataOrderBy>>;
719
+ };
675
720
  /** All input for the `deleteUser` mutation. */
676
721
  export declare type DeleteUserInput = {
677
722
  /**
@@ -795,12 +840,15 @@ export declare type GenerateDelegatedAccessTokenInput = {
795
840
  applicationId: Scalars['UUID'];
796
841
  /**
797
842
  * Email address of the consumer on the external system
798
- * the token is generated for.
843
+ * the token is generated for. This is an optional value.
844
+ * When the email is not provided, the user will be identified only by
845
+ * the subjectId.
799
846
  */
800
- email: Scalars['String'];
847
+ email?: Maybe<Scalars['String']>;
801
848
  /**
802
849
  * Name of the consumer.
803
850
  * If a name is not given, the local-part of the email address (portion before the @ sign) is taken as the name.
851
+ * If no email is given either, the name will have the UUID of the User.
804
852
  */
805
853
  name?: Maybe<Scalars['String']>;
806
854
  /**
@@ -877,6 +925,7 @@ export declare type IdpConnection = {
877
925
  environmentId: Scalars['UUID'];
878
926
  extraScopes?: Maybe<Array<Scalars['String']>>;
879
927
  id: Scalars['UUID'];
928
+ protocol: IdpProtocol;
880
929
  providerIconUrl?: Maybe<Scalars['String']>;
881
930
  providerId: Scalars['String'];
882
931
  providerName?: Maybe<Scalars['String']>;
@@ -887,6 +936,8 @@ export declare type IdpConnection = {
887
936
  tokenEndpointUrl?: Maybe<Scalars['String']>;
888
937
  updatedDate: Scalars['Datetime'];
889
938
  updatedUser: Scalars['String'];
939
+ /** Reads and enables pagination through a set of `UserIdpDatum`. */
940
+ userIdpData: UserIdpDataConnection;
890
941
  userInfoEndpointUrl?: Maybe<Scalars['String']>;
891
942
  userInfoRetrievalWebhook?: Maybe<Scalars['String']>;
892
943
  };
@@ -900,6 +951,16 @@ export declare type IdpConnectionApplicationIdpConnectionsArgs = {
900
951
  offset?: Maybe<Scalars['Int']>;
901
952
  orderBy?: Maybe<Array<ApplicationIdpConnectionsOrderBy>>;
902
953
  };
954
+ export declare type IdpConnectionUserIdpDataArgs = {
955
+ after?: Maybe<Scalars['Cursor']>;
956
+ before?: Maybe<Scalars['Cursor']>;
957
+ condition?: Maybe<UserIdpDatumCondition>;
958
+ filter?: Maybe<UserIdpDatumFilter>;
959
+ first?: Maybe<Scalars['Int']>;
960
+ last?: Maybe<Scalars['Int']>;
961
+ offset?: Maybe<Scalars['Int']>;
962
+ orderBy?: Maybe<Array<UserIdpDataOrderBy>>;
963
+ };
903
964
  /**
904
965
  * A condition to be used against `IdpConnection` object types. All fields are
905
966
  * tested for equality and combined with a logical ‘and.’
@@ -925,6 +986,8 @@ export declare type IdpConnectionCondition = {
925
986
  environmentId?: Maybe<Scalars['UUID']>;
926
987
  /** Checks for equality with the object’s `id` field. */
927
988
  id?: Maybe<Scalars['UUID']>;
989
+ /** Checks for equality with the object’s `protocol` field. */
990
+ protocol?: Maybe<IdpProtocol>;
928
991
  /** Checks for equality with the object’s `providerIconUrl` field. */
929
992
  providerIconUrl?: Maybe<Scalars['String']>;
930
993
  /** Checks for equality with the object’s `providerId` field. */
@@ -980,6 +1043,8 @@ export declare type IdpConnectionFilter = {
980
1043
  not?: Maybe<IdpConnectionFilter>;
981
1044
  /** Checks for any expressions in this list. */
982
1045
  or?: Maybe<Array<IdpConnectionFilter>>;
1046
+ /** Filter by the object’s `protocol` field. */
1047
+ protocol?: Maybe<IdpProtocolFilter>;
983
1048
  /** Filter by the object’s `providerIconUrl` field. */
984
1049
  providerIconUrl?: Maybe<StringFilter>;
985
1050
  /** Filter by the object’s `providerId` field. */
@@ -1000,6 +1065,10 @@ export declare type IdpConnectionFilter = {
1000
1065
  updatedDate?: Maybe<DatetimeFilter>;
1001
1066
  /** Filter by the object’s `updatedUser` field. */
1002
1067
  updatedUser?: Maybe<StringFilter>;
1068
+ /** Filter by the object’s `userIdpData` relation. */
1069
+ userIdpData?: Maybe<IdpConnectionToManyUserIdpDatumFilter>;
1070
+ /** Some related `userIdpData` exist. */
1071
+ userIdpDataExist?: Maybe<Scalars['Boolean']>;
1003
1072
  /** Filter by the object’s `userInfoEndpointUrl` field. */
1004
1073
  userInfoEndpointUrl?: Maybe<StringFilter>;
1005
1074
  /** Filter by the object’s `userInfoRetrievalWebhook` field. */
@@ -1012,6 +1081,7 @@ export declare type IdpConnectionInput = {
1012
1081
  clientId?: Maybe<Scalars['String']>;
1013
1082
  clientSecret?: Maybe<Scalars['String']>;
1014
1083
  discoveryDocumentUrl?: Maybe<Scalars['String']>;
1084
+ protocol?: Maybe<IdpProtocol>;
1015
1085
  providerIconUrl?: Maybe<Scalars['String']>;
1016
1086
  providerId: Scalars['String'];
1017
1087
  scopes?: Maybe<Array<Maybe<Scalars['String']>>>;
@@ -1082,6 +1152,8 @@ export declare enum IdpConnectionsOrderBy {
1082
1152
  NATURAL = "NATURAL",
1083
1153
  PRIMARY_KEY_ASC = "PRIMARY_KEY_ASC",
1084
1154
  PRIMARY_KEY_DESC = "PRIMARY_KEY_DESC",
1155
+ PROTOCOL_ASC = "PROTOCOL_ASC",
1156
+ PROTOCOL_DESC = "PROTOCOL_DESC",
1085
1157
  PROVIDER_ICON_URL_ASC = "PROVIDER_ICON_URL_ASC",
1086
1158
  PROVIDER_ICON_URL_DESC = "PROVIDER_ICON_URL_DESC",
1087
1159
  PROVIDER_ID_ASC = "PROVIDER_ID_ASC",
@@ -1116,6 +1188,48 @@ export declare type IdpConnectionToManyApplicationIdpConnectionFilter = {
1116
1188
  /** Some related `ApplicationIdpConnection` matches the filter criteria. All fields are combined with a logical ‘and.’ */
1117
1189
  some?: Maybe<ApplicationIdpConnectionFilter>;
1118
1190
  };
1191
+ /** A filter to be used against many `UserIdpDatum` object types. All fields are combined with a logical ‘and.’ */
1192
+ export declare type IdpConnectionToManyUserIdpDatumFilter = {
1193
+ /** Every related `UserIdpDatum` matches the filter criteria. All fields are combined with a logical ‘and.’ */
1194
+ every?: Maybe<UserIdpDatumFilter>;
1195
+ /** No related `UserIdpDatum` matches the filter criteria. All fields are combined with a logical ‘and.’ */
1196
+ none?: Maybe<UserIdpDatumFilter>;
1197
+ /** Some related `UserIdpDatum` matches the filter criteria. All fields are combined with a logical ‘and.’ */
1198
+ some?: Maybe<UserIdpDatumFilter>;
1199
+ };
1200
+ export declare enum IdpProtocol {
1201
+ /** Delegated */
1202
+ DELEGATED = "DELEGATED",
1203
+ /** OAuth 2.0 */
1204
+ OAUTH2 = "OAUTH2",
1205
+ /** OIDC */
1206
+ OIDC = "OIDC"
1207
+ }
1208
+ /** A filter to be used against IdpProtocol fields. All fields are combined with a logical ‘and.’ */
1209
+ export declare type IdpProtocolFilter = {
1210
+ /** Not equal to the specified value, treating null like an ordinary value. */
1211
+ distinctFrom?: Maybe<IdpProtocol>;
1212
+ /** Equal to the specified value. */
1213
+ equalTo?: Maybe<IdpProtocol>;
1214
+ /** Greater than the specified value. */
1215
+ greaterThan?: Maybe<IdpProtocol>;
1216
+ /** Greater than or equal to the specified value. */
1217
+ greaterThanOrEqualTo?: Maybe<IdpProtocol>;
1218
+ /** Included in the specified list. */
1219
+ in?: Maybe<Array<IdpProtocol>>;
1220
+ /** Is null (if `true` is specified) or is not null (if `false` is specified). */
1221
+ isNull?: Maybe<Scalars['Boolean']>;
1222
+ /** Less than the specified value. */
1223
+ lessThan?: Maybe<IdpProtocol>;
1224
+ /** Less than or equal to the specified value. */
1225
+ lessThanOrEqualTo?: Maybe<IdpProtocol>;
1226
+ /** Equal to the specified value, treating null like an ordinary value. */
1227
+ notDistinctFrom?: Maybe<IdpProtocol>;
1228
+ /** Not equal to the specified value. */
1229
+ notEqualTo?: Maybe<IdpProtocol>;
1230
+ /** Not included in the specified list. */
1231
+ notIn?: Maybe<Array<IdpProtocol>>;
1232
+ };
1119
1233
  export declare type IdProvider = {
1120
1234
  __typename?: 'IdProvider';
1121
1235
  createdDate: Scalars['Datetime'];
@@ -1273,6 +1387,11 @@ export declare type Mutation = {
1273
1387
  createIdpConnection?: Maybe<CreateIdpConnectionPayload>;
1274
1388
  /** Creates a single `UserProfile`. */
1275
1389
  createUserProfile?: Maybe<CreateUserProfilePayload>;
1390
+ /**
1391
+ * Custom mutation to to decrypt any value encrypted with AES256-CBC algorithm.
1392
+ * This is primarily used for decrypting the cookie object passed to native apps using deep linking.
1393
+ */
1394
+ decryptWithKeyAes: DecryptWithKeyAesPayload;
1276
1395
  /** Deletes a single `Application` using a unique key. */
1277
1396
  deleteApplication?: Maybe<DeleteApplicationPayload>;
1278
1397
  /** Deletes a single `ApplicationIdpConnection` using a unique key. */
@@ -1281,6 +1400,8 @@ export declare type Mutation = {
1281
1400
  deleteIdpConnection?: Maybe<DeleteIdpConnectionPayload>;
1282
1401
  /** Deletes a single `User` using a unique key. */
1283
1402
  deleteUser?: Maybe<DeleteUserPayload>;
1403
+ /** Deletes a single `UserIdpDatum` using a unique key. */
1404
+ deleteUserIdpDatum?: Maybe<DeleteUserIdpDatumPayload>;
1284
1405
  /** Deletes a single `UserProfile` using a unique key. */
1285
1406
  deleteUserProfile?: Maybe<DeleteUserProfilePayload>;
1286
1407
  /**
@@ -1328,6 +1449,10 @@ export declare type MutationCreateUserProfileArgs = {
1328
1449
  input: CreateUserProfileInput;
1329
1450
  };
1330
1451
  /** The root mutation type which contains root level fields which mutate data. */
1452
+ export declare type MutationDecryptWithKeyAesArgs = {
1453
+ input: DecryptWithKeyAesInput;
1454
+ };
1455
+ /** The root mutation type which contains root level fields which mutate data. */
1331
1456
  export declare type MutationDeleteApplicationArgs = {
1332
1457
  input: DeleteApplicationInput;
1333
1458
  };
@@ -1344,6 +1469,10 @@ export declare type MutationDeleteUserArgs = {
1344
1469
  input: DeleteUserInput;
1345
1470
  };
1346
1471
  /** The root mutation type which contains root level fields which mutate data. */
1472
+ export declare type MutationDeleteUserIdpDatumArgs = {
1473
+ input: DeleteUserIdpDatumInput;
1474
+ };
1475
+ /** The root mutation type which contains root level fields which mutate data. */
1347
1476
  export declare type MutationDeleteUserProfileArgs = {
1348
1477
  input: DeleteUserProfileInput;
1349
1478
  };
@@ -1418,6 +1547,9 @@ export declare type Query = {
1418
1547
  /** Reads and enables pagination through a set of `ServiceConfiguration`. */
1419
1548
  serviceConfigurations?: Maybe<ServiceConfigurationsConnection>;
1420
1549
  user?: Maybe<User>;
1550
+ /** Reads and enables pagination through a set of `UserIdpDatum`. */
1551
+ userIdpData?: Maybe<UserIdpDataConnection>;
1552
+ userIdpDatum?: Maybe<UserIdpDatum>;
1421
1553
  userProfile?: Maybe<UserProfile>;
1422
1554
  /** Reads and enables pagination through a set of `UserProfile`. */
1423
1555
  userProfiles?: Maybe<UserProfilesConnection>;
@@ -1500,6 +1632,22 @@ export declare type QueryUserArgs = {
1500
1632
  id: Scalars['UUID'];
1501
1633
  };
1502
1634
  /** The root query type which gives access points into the data universe. */
1635
+ export declare type QueryUserIdpDataArgs = {
1636
+ after?: Maybe<Scalars['Cursor']>;
1637
+ before?: Maybe<Scalars['Cursor']>;
1638
+ condition?: Maybe<UserIdpDatumCondition>;
1639
+ filter?: Maybe<UserIdpDatumFilter>;
1640
+ first?: Maybe<Scalars['Int']>;
1641
+ last?: Maybe<Scalars['Int']>;
1642
+ offset?: Maybe<Scalars['Int']>;
1643
+ orderBy?: Maybe<Array<UserIdpDataOrderBy>>;
1644
+ };
1645
+ /** The root query type which gives access points into the data universe. */
1646
+ export declare type QueryUserIdpDatumArgs = {
1647
+ idpConnectionId: Scalars['UUID'];
1648
+ userId: Scalars['UUID'];
1649
+ };
1650
+ /** The root query type which gives access points into the data universe. */
1503
1651
  export declare type QueryUserProfileArgs = {
1504
1652
  id: Scalars['UUID'];
1505
1653
  };
@@ -1932,9 +2080,21 @@ export declare type User = {
1932
2080
  tenantId: Scalars['UUID'];
1933
2081
  updatedDate: Scalars['Datetime'];
1934
2082
  updatedUser: Scalars['String'];
2083
+ /** Reads and enables pagination through a set of `UserIdpDatum`. */
2084
+ userIdpData: UserIdpDataConnection;
1935
2085
  /** Reads and enables pagination through a set of `UserProfile`. */
1936
2086
  userProfiles: UserProfilesConnection;
1937
2087
  };
2088
+ export declare type UserUserIdpDataArgs = {
2089
+ after?: Maybe<Scalars['Cursor']>;
2090
+ before?: Maybe<Scalars['Cursor']>;
2091
+ condition?: Maybe<UserIdpDatumCondition>;
2092
+ filter?: Maybe<UserIdpDatumFilter>;
2093
+ first?: Maybe<Scalars['Int']>;
2094
+ last?: Maybe<Scalars['Int']>;
2095
+ offset?: Maybe<Scalars['Int']>;
2096
+ orderBy?: Maybe<Array<UserIdpDataOrderBy>>;
2097
+ };
1938
2098
  export declare type UserUserProfilesArgs = {
1939
2099
  after?: Maybe<Scalars['Cursor']>;
1940
2100
  before?: Maybe<Scalars['Cursor']>;
@@ -2008,11 +2168,123 @@ export declare type UserFilter = {
2008
2168
  updatedDate?: Maybe<DatetimeFilter>;
2009
2169
  /** Filter by the object’s `updatedUser` field. */
2010
2170
  updatedUser?: Maybe<StringFilter>;
2171
+ /** Filter by the object’s `userIdpData` relation. */
2172
+ userIdpData?: Maybe<UserToManyUserIdpDatumFilter>;
2173
+ /** Some related `userIdpData` exist. */
2174
+ userIdpDataExist?: Maybe<Scalars['Boolean']>;
2011
2175
  /** Filter by the object’s `userProfiles` relation. */
2012
2176
  userProfiles?: Maybe<UserToManyUserProfileFilter>;
2013
2177
  /** Some related `userProfiles` exist. */
2014
2178
  userProfilesExist?: Maybe<Scalars['Boolean']>;
2015
2179
  };
2180
+ /** A connection to a list of `UserIdpDatum` values. */
2181
+ export declare type UserIdpDataConnection = {
2182
+ __typename?: 'UserIdpDataConnection';
2183
+ /** A list of edges which contains the `UserIdpDatum` and cursor to aid in pagination. */
2184
+ edges: Array<UserIdpDataEdge>;
2185
+ /** A list of `UserIdpDatum` objects. */
2186
+ nodes: Array<UserIdpDatum>;
2187
+ /** Information to aid in pagination. */
2188
+ pageInfo: PageInfo;
2189
+ /** The count of *all* `UserIdpDatum` you could get from the connection. */
2190
+ totalCount: Scalars['Int'];
2191
+ };
2192
+ /** A `UserIdpDatum` edge in the connection. */
2193
+ export declare type UserIdpDataEdge = {
2194
+ __typename?: 'UserIdpDataEdge';
2195
+ /** A cursor for use in pagination. */
2196
+ cursor?: Maybe<Scalars['Cursor']>;
2197
+ /** The `UserIdpDatum` at the end of the edge. */
2198
+ node: UserIdpDatum;
2199
+ };
2200
+ /** Methods to use when ordering `UserIdpDatum`. */
2201
+ export declare enum UserIdpDataOrderBy {
2202
+ CREATED_DATE_ASC = "CREATED_DATE_ASC",
2203
+ CREATED_DATE_DESC = "CREATED_DATE_DESC",
2204
+ IDP_CONNECTION_ID_ASC = "IDP_CONNECTION_ID_ASC",
2205
+ IDP_CONNECTION_ID_DESC = "IDP_CONNECTION_ID_DESC",
2206
+ IDP_SUBJECT_ID_ASC = "IDP_SUBJECT_ID_ASC",
2207
+ IDP_SUBJECT_ID_DESC = "IDP_SUBJECT_ID_DESC",
2208
+ INITIAL_IDP_REFRESH_TOKEN_ASC = "INITIAL_IDP_REFRESH_TOKEN_ASC",
2209
+ INITIAL_IDP_REFRESH_TOKEN_DESC = "INITIAL_IDP_REFRESH_TOKEN_DESC",
2210
+ NATURAL = "NATURAL",
2211
+ PRIMARY_KEY_ASC = "PRIMARY_KEY_ASC",
2212
+ PRIMARY_KEY_DESC = "PRIMARY_KEY_DESC",
2213
+ PROVIDER_ID_ASC = "PROVIDER_ID_ASC",
2214
+ PROVIDER_ID_DESC = "PROVIDER_ID_DESC",
2215
+ RAW_PAYLOAD_ASC = "RAW_PAYLOAD_ASC",
2216
+ RAW_PAYLOAD_DESC = "RAW_PAYLOAD_DESC",
2217
+ UPDATED_DATE_ASC = "UPDATED_DATE_ASC",
2218
+ UPDATED_DATE_DESC = "UPDATED_DATE_DESC",
2219
+ USER_ID_ASC = "USER_ID_ASC",
2220
+ USER_ID_DESC = "USER_ID_DESC"
2221
+ }
2222
+ export declare type UserIdpDatum = {
2223
+ __typename?: 'UserIdpDatum';
2224
+ createdDate: Scalars['Datetime'];
2225
+ /** Reads a single `IdpConnection` that is related to this `UserIdpDatum`. */
2226
+ idpConnection?: Maybe<IdpConnection>;
2227
+ idpConnectionId: Scalars['UUID'];
2228
+ idpSubjectId: Scalars['String'];
2229
+ initialIdpRefreshToken?: Maybe<Scalars['String']>;
2230
+ providerId: Scalars['String'];
2231
+ rawPayload: Scalars['JSON'];
2232
+ updatedDate: Scalars['Datetime'];
2233
+ /** Reads a single `User` that is related to this `UserIdpDatum`. */
2234
+ user?: Maybe<User>;
2235
+ userId: Scalars['UUID'];
2236
+ };
2237
+ /**
2238
+ * A condition to be used against `UserIdpDatum` object types. All fields are
2239
+ * tested for equality and combined with a logical ‘and.’
2240
+ */
2241
+ export declare type UserIdpDatumCondition = {
2242
+ /** Checks for equality with the object’s `createdDate` field. */
2243
+ createdDate?: Maybe<Scalars['Datetime']>;
2244
+ /** Checks for equality with the object’s `idpConnectionId` field. */
2245
+ idpConnectionId?: Maybe<Scalars['UUID']>;
2246
+ /** Checks for equality with the object’s `idpSubjectId` field. */
2247
+ idpSubjectId?: Maybe<Scalars['String']>;
2248
+ /** Checks for equality with the object’s `initialIdpRefreshToken` field. */
2249
+ initialIdpRefreshToken?: Maybe<Scalars['String']>;
2250
+ /** Checks for equality with the object’s `providerId` field. */
2251
+ providerId?: Maybe<Scalars['String']>;
2252
+ /** Checks for equality with the object’s `rawPayload` field. */
2253
+ rawPayload?: Maybe<Scalars['JSON']>;
2254
+ /** Checks for equality with the object’s `updatedDate` field. */
2255
+ updatedDate?: Maybe<Scalars['Datetime']>;
2256
+ /** Checks for equality with the object’s `userId` field. */
2257
+ userId?: Maybe<Scalars['UUID']>;
2258
+ };
2259
+ /** A filter to be used against `UserIdpDatum` object types. All fields are combined with a logical ‘and.’ */
2260
+ export declare type UserIdpDatumFilter = {
2261
+ /** Checks for all expressions in this list. */
2262
+ and?: Maybe<Array<UserIdpDatumFilter>>;
2263
+ /** Filter by the object’s `createdDate` field. */
2264
+ createdDate?: Maybe<DatetimeFilter>;
2265
+ /** Filter by the object’s `idpConnection` relation. */
2266
+ idpConnection?: Maybe<IdpConnectionFilter>;
2267
+ /** Filter by the object’s `idpConnectionId` field. */
2268
+ idpConnectionId?: Maybe<UuidFilter>;
2269
+ /** Filter by the object’s `idpSubjectId` field. */
2270
+ idpSubjectId?: Maybe<StringFilter>;
2271
+ /** Filter by the object’s `initialIdpRefreshToken` field. */
2272
+ initialIdpRefreshToken?: Maybe<StringFilter>;
2273
+ /** Negates the expression. */
2274
+ not?: Maybe<UserIdpDatumFilter>;
2275
+ /** Checks for any expressions in this list. */
2276
+ or?: Maybe<Array<UserIdpDatumFilter>>;
2277
+ /** Filter by the object’s `providerId` field. */
2278
+ providerId?: Maybe<StringFilter>;
2279
+ /** Filter by the object’s `rawPayload` field. */
2280
+ rawPayload?: Maybe<JsonFilter>;
2281
+ /** Filter by the object’s `updatedDate` field. */
2282
+ updatedDate?: Maybe<DatetimeFilter>;
2283
+ /** Filter by the object’s `user` relation. */
2284
+ user?: Maybe<UserFilter>;
2285
+ /** Filter by the object’s `userId` field. */
2286
+ userId?: Maybe<UuidFilter>;
2287
+ };
2016
2288
  /** Represents an update to a `User`. Fields that are set will be updated. */
2017
2289
  export declare type UserPatch = {
2018
2290
  email?: Maybe<Array<Maybe<Scalars['String']>>>;
@@ -2220,6 +2492,15 @@ export declare enum UsersOrderBy {
2220
2492
  UPDATED_USER_ASC = "UPDATED_USER_ASC",
2221
2493
  UPDATED_USER_DESC = "UPDATED_USER_DESC"
2222
2494
  }
2495
+ /** A filter to be used against many `UserIdpDatum` object types. All fields are combined with a logical ‘and.’ */
2496
+ export declare type UserToManyUserIdpDatumFilter = {
2497
+ /** Every related `UserIdpDatum` matches the filter criteria. All fields are combined with a logical ‘and.’ */
2498
+ every?: Maybe<UserIdpDatumFilter>;
2499
+ /** No related `UserIdpDatum` matches the filter criteria. All fields are combined with a logical ‘and.’ */
2500
+ none?: Maybe<UserIdpDatumFilter>;
2501
+ /** Some related `UserIdpDatum` matches the filter criteria. All fields are combined with a logical ‘and.’ */
2502
+ some?: Maybe<UserIdpDatumFilter>;
2503
+ };
2223
2504
  /** A filter to be used against many `UserProfile` object types. All fields are combined with a logical ‘and.’ */
2224
2505
  export declare type UserToManyUserProfileFilter = {
2225
2506
  /** Every related `UserProfile` matches the filter criteria. All fields are combined with a logical ‘and.’ */
@@ -2264,5 +2545,16 @@ export declare type AuthenticateConsumerApplicationMutation = ({
2264
2545
  __typename?: 'AuthenticateConsumerApplicationPayload';
2265
2546
  } & Pick<AuthenticateConsumerApplicationPayload, 'accessToken' | 'expiresInSeconds' | 'tokenType'>);
2266
2547
  });
2548
+ export declare type DecryptNativeCookieMutationVariables = Exact<{
2549
+ input: DecryptWithKeyAesInput;
2550
+ }>;
2551
+ export declare type DecryptNativeCookieMutation = ({
2552
+ __typename?: 'Mutation';
2553
+ } & {
2554
+ decryptWithKeyAes: ({
2555
+ __typename?: 'DecryptWithKeyAesPayload';
2556
+ } & Pick<DecryptWithKeyAesPayload, 'decryptedValue'>);
2557
+ });
2267
2558
  export declare const AuthenticateConsumerApplicationDocument: DocumentNode<AuthenticateConsumerApplicationMutation, AuthenticateConsumerApplicationMutationVariables>;
2559
+ export declare const DecryptNativeCookieDocument: DocumentNode<DecryptNativeCookieMutation, DecryptNativeCookieMutationVariables>;
2268
2560
  //# sourceMappingURL=user-service-management-graphql.types.d.ts.map