@axinom/mosaic-user-auth 0.6.4-rc.8 → 0.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/ax-auth-management-graphql.types.d.ts +68 -1
- package/dist/generated/ax-auth-management-graphql.types.d.ts.map +1 -1
- package/dist/generated/user-service-end-user-graphql.types.d.ts +27 -42
- package/dist/generated/user-service-end-user-graphql.types.d.ts.map +1 -1
- package/dist/generated/user-service-management-graphql.types.d.ts +137 -5
- package/dist/generated/user-service-management-graphql.types.d.ts.map +1 -1
- package/dist/index.es.js +62 -0
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +62 -0
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
- package/src/generated/ax-auth-management-graphql.types.ts +84 -1
- package/src/generated/user-service-end-user-graphql.types.ts +27 -43
- package/src/generated/user-service-management-graphql.types.ts +161 -5
|
@@ -29,6 +29,7 @@ export type Scalars = {
|
|
|
29
29
|
export type Application = {
|
|
30
30
|
__typename?: 'Application';
|
|
31
31
|
accessTokenEnrichmentWebhook?: Maybe<Scalars['String']>;
|
|
32
|
+
accessTokenEnrichmentWebhookSecretIsSet: Scalars['Boolean'];
|
|
32
33
|
accessTokenLifetime: Scalars['Int'];
|
|
33
34
|
allowedOrigins?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
34
35
|
allowedProxyUrls?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
@@ -66,6 +67,8 @@ export type ApplicationIdpConnectionsArgs = {
|
|
|
66
67
|
export type ApplicationCondition = {
|
|
67
68
|
/** Checks for equality with the object’s `accessTokenEnrichmentWebhook` field. */
|
|
68
69
|
accessTokenEnrichmentWebhook?: Maybe<Scalars['String']>;
|
|
70
|
+
/** Checks for equality with the object’s `accessTokenEnrichmentWebhookSecretIsSet` field. */
|
|
71
|
+
accessTokenEnrichmentWebhookSecretIsSet?: Maybe<Scalars['Boolean']>;
|
|
69
72
|
/** Checks for equality with the object’s `accessTokenLifetime` field. */
|
|
70
73
|
accessTokenLifetime?: Maybe<Scalars['Int']>;
|
|
71
74
|
/** Checks for equality with the object’s `allowedOrigins` field. */
|
|
@@ -101,6 +104,8 @@ export type ApplicationCondition = {
|
|
|
101
104
|
export type ApplicationFilter = {
|
|
102
105
|
/** Filter by the object’s `accessTokenEnrichmentWebhook` field. */
|
|
103
106
|
accessTokenEnrichmentWebhook?: Maybe<StringFilter>;
|
|
107
|
+
/** Filter by the object’s `accessTokenEnrichmentWebhookSecretIsSet` field. */
|
|
108
|
+
accessTokenEnrichmentWebhookSecretIsSet?: Maybe<BooleanFilter>;
|
|
104
109
|
/** Filter by the object’s `accessTokenLifetime` field. */
|
|
105
110
|
accessTokenLifetime?: Maybe<IntFilter>;
|
|
106
111
|
/** Filter by the object’s `allowedOrigins` field. */
|
|
@@ -265,6 +270,7 @@ export declare enum ApplicationIdpConnectionsOrderBy {
|
|
|
265
270
|
/** An input for mutations affecting `Application` */
|
|
266
271
|
export type ApplicationInput = {
|
|
267
272
|
accessTokenEnrichmentWebhook?: Maybe<Scalars['String']>;
|
|
273
|
+
accessTokenEnrichmentWebhookSecretIsSet?: Maybe<Scalars['Boolean']>;
|
|
268
274
|
accessTokenLifetime?: Maybe<Scalars['Int']>;
|
|
269
275
|
allowedOrigins?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
270
276
|
allowedProxyUrls?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
@@ -276,6 +282,7 @@ export type ApplicationInput = {
|
|
|
276
282
|
/** Represents an update to a `Application`. Fields that are set will be updated. */
|
|
277
283
|
export type ApplicationPatch = {
|
|
278
284
|
accessTokenEnrichmentWebhook?: Maybe<Scalars['String']>;
|
|
285
|
+
accessTokenEnrichmentWebhookSecretIsSet?: Maybe<Scalars['Boolean']>;
|
|
279
286
|
accessTokenLifetime?: Maybe<Scalars['Int']>;
|
|
280
287
|
allowedOrigins?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
281
288
|
allowedProxyUrls?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
@@ -340,6 +347,8 @@ export type ApplicationsEdge = {
|
|
|
340
347
|
export declare enum ApplicationsOrderBy {
|
|
341
348
|
ACCESS_TOKEN_ENRICHMENT_WEBHOOK_ASC = "ACCESS_TOKEN_ENRICHMENT_WEBHOOK_ASC",
|
|
342
349
|
ACCESS_TOKEN_ENRICHMENT_WEBHOOK_DESC = "ACCESS_TOKEN_ENRICHMENT_WEBHOOK_DESC",
|
|
350
|
+
ACCESS_TOKEN_ENRICHMENT_WEBHOOK_SECRET_IS_SET_ASC = "ACCESS_TOKEN_ENRICHMENT_WEBHOOK_SECRET_IS_SET_ASC",
|
|
351
|
+
ACCESS_TOKEN_ENRICHMENT_WEBHOOK_SECRET_IS_SET_DESC = "ACCESS_TOKEN_ENRICHMENT_WEBHOOK_SECRET_IS_SET_DESC",
|
|
343
352
|
ACCESS_TOKEN_LIFETIME_ASC = "ACCESS_TOKEN_LIFETIME_ASC",
|
|
344
353
|
ACCESS_TOKEN_LIFETIME_DESC = "ACCESS_TOKEN_LIFETIME_DESC",
|
|
345
354
|
ALLOWED_ORIGINS_ASC = "ALLOWED_ORIGINS_ASC",
|
|
@@ -420,6 +429,27 @@ export type BooleanFilter = {
|
|
|
420
429
|
/** Not included in the specified list. */
|
|
421
430
|
notIn?: Maybe<Array<Scalars['Boolean']>>;
|
|
422
431
|
};
|
|
432
|
+
export type ClearAccessTokenEnrichmentWebhookSecretInput = {
|
|
433
|
+
applicationId: Scalars['String'];
|
|
434
|
+
};
|
|
435
|
+
export type ClearAccessTokenEnrichmentWebhookSecretPayload = {
|
|
436
|
+
__typename?: 'ClearAccessTokenEnrichmentWebhookSecretPayload';
|
|
437
|
+
deletedSecret: Scalars['String'];
|
|
438
|
+
};
|
|
439
|
+
export type ClearUserCreatedWebhookSecretInput = {
|
|
440
|
+
serviceConfigurationId: Scalars['String'];
|
|
441
|
+
};
|
|
442
|
+
export type ClearUserCreatedWebhookSecretPayload = {
|
|
443
|
+
__typename?: 'ClearUserCreatedWebhookSecretPayload';
|
|
444
|
+
deletedSecret: Scalars['String'];
|
|
445
|
+
};
|
|
446
|
+
export type ClearUserInfoWebhookSecretInput = {
|
|
447
|
+
idpConnectionId: Scalars['String'];
|
|
448
|
+
};
|
|
449
|
+
export type ClearUserInfoWebhookSecretPayload = {
|
|
450
|
+
__typename?: 'ClearUserInfoWebhookSecretPayload';
|
|
451
|
+
deletedSecret: Scalars['String'];
|
|
452
|
+
};
|
|
423
453
|
/** All input for the create `ApplicationIdpConnection` mutation. */
|
|
424
454
|
export type CreateApplicationIdpConnectionInput = {
|
|
425
455
|
/** The `ApplicationIdpConnection` to be created by this mutation. */
|
|
@@ -908,6 +938,8 @@ export declare enum ErrorCodesEnum {
|
|
|
908
938
|
ERROR_WRAPPER = "ERROR_WRAPPER",
|
|
909
939
|
/** A GraphQL validation error has occurred. Please make sure that the GraphQL request is made with correct syntax or parameters. */
|
|
910
940
|
GRAPHQL_VALIDATION_FAILED = "GRAPHQL_VALIDATION_FAILED",
|
|
941
|
+
/** The Hosting service is not accessible. Please contact Axinom support. */
|
|
942
|
+
HOSTING_SERVICE_NOT_ACCESSIBLE = "HOSTING_SERVICE_NOT_ACCESSIBLE",
|
|
911
943
|
/** The Identity service is not accessible. Please contact Axinom support. */
|
|
912
944
|
IDENTITY_SERVICE_NOT_ACCESSIBLE = "IDENTITY_SERVICE_NOT_ACCESSIBLE",
|
|
913
945
|
/** IDP Connection [%s] does not exist. */
|
|
@@ -924,6 +956,8 @@ export declare enum ErrorCodesEnum {
|
|
|
924
956
|
INVALID_CONSTRUCTOR_ARGS = "INVALID_CONSTRUCTOR_ARGS",
|
|
925
957
|
/** Custom provider name cannot begin with 'Ax'. */
|
|
926
958
|
INVALID_CUSTOM_PROVIDER_NAME = "INVALID_CUSTOM_PROVIDER_NAME",
|
|
959
|
+
/** Invalid email format. Please provide a valid email address. */
|
|
960
|
+
INVALID_EMAIL_FORMAT = "INVALID_EMAIL_FORMAT",
|
|
927
961
|
/** Invalid URL format in [%s]. */
|
|
928
962
|
INVALID_URL_FORMAT = "INVALID_URL_FORMAT",
|
|
929
963
|
/** User store category of the referenced user store ID must be 'END_USER'. */
|
|
@@ -950,6 +984,8 @@ export declare enum ErrorCodesEnum {
|
|
|
950
984
|
NOT_GENERIC_AUTHENTICATED_SUBJECT = "NOT_GENERIC_AUTHENTICATED_SUBJECT",
|
|
951
985
|
/** The object is not a ManagementAuthenticationContext */
|
|
952
986
|
NOT_MANAGEMENT_AUTHENTICATION_CONTEXT = "NOT_MANAGEMENT_AUTHENTICATION_CONTEXT",
|
|
987
|
+
/** The %s is missing required properties: %s. */
|
|
988
|
+
OBJECT_IS_MISSING_PROPERTIES = "OBJECT_IS_MISSING_PROPERTIES",
|
|
953
989
|
/** The provider name is already in use. Please use a different name or use the existing provider. */
|
|
954
990
|
PROVIDER_NAME_IN_USE = "PROVIDER_NAME_IN_USE",
|
|
955
991
|
/** The Reference User Store ID does not exist in the AxAuth Service. */
|
|
@@ -960,14 +996,22 @@ export declare enum ErrorCodesEnum {
|
|
|
960
996
|
SIGNING_KEY_NOT_FOUND = "SIGNING_KEY_NOT_FOUND",
|
|
961
997
|
/** An application startup error has occurred. The actual message will have more information. */
|
|
962
998
|
STARTUP_ERROR = "STARTUP_ERROR",
|
|
999
|
+
/** User is authenticated, but subject information was not found. Please contact Axinom Support. */
|
|
1000
|
+
SUBJECT_INFORMATION_NOT_FOUND = "SUBJECT_INFORMATION_NOT_FOUND",
|
|
963
1001
|
/** User Token enrichment content cannot exceed 10240 characters. */
|
|
964
1002
|
TOKEN_ENRICHMENT_EXCEEDS_LIMIT = "TOKEN_ENRICHMENT_EXCEEDS_LIMIT",
|
|
965
1003
|
/** Retrieving user information from Access Token Enrichment Webhook failed. */
|
|
966
1004
|
TOKEN_ENRICHMENT_WEBHOOK_FAILURE = "TOKEN_ENRICHMENT_WEBHOOK_FAILURE",
|
|
1005
|
+
/** Unable to get the %s secret. Please contact Axinom Support. */
|
|
1006
|
+
UNABLE_TO_GET_SECRET = "UNABLE_TO_GET_SECRET",
|
|
1007
|
+
/** Unable to set the %s secret. Please contact Axinom Support. */
|
|
1008
|
+
UNABLE_TO_SET_SECRET = "UNABLE_TO_SET_SECRET",
|
|
967
1009
|
/** An unhandled database-related error has occurred. Please contact the service support. */
|
|
968
1010
|
UNHANDLED_DATABASE_ERROR = "UNHANDLED_DATABASE_ERROR",
|
|
969
1011
|
/** An unhandled error has occurred. Please contact the service support. */
|
|
970
1012
|
UNHANDLED_ERROR = "UNHANDLED_ERROR",
|
|
1013
|
+
/** No payload was found in User Info Retrieval webhook response. */
|
|
1014
|
+
USER_INFO_WEBHOOK_RESPONSE_PAYLOAD_NOT_FOUND = "USER_INFO_WEBHOOK_RESPONSE_PAYLOAD_NOT_FOUND",
|
|
971
1015
|
/** User is not authorized to access the operation. */
|
|
972
1016
|
USER_NOT_AUTHORIZED = "USER_NOT_AUTHORIZED",
|
|
973
1017
|
/** User does not exist or you have provided an invalid user ID. */
|
|
@@ -978,9 +1022,28 @@ export declare enum ErrorCodesEnum {
|
|
|
978
1022
|
USER_STORE_SHOULD_BE_EMPTY = "USER_STORE_SHOULD_BE_EMPTY",
|
|
979
1023
|
/** A User Store is required when creating an IDP Connection for the "AxAuth" provider. */
|
|
980
1024
|
USER_STORE_SHOULD_NOT_BE_EMPTY = "USER_STORE_SHOULD_NOT_BE_EMPTY",
|
|
1025
|
+
/** The %s is not an object. */
|
|
1026
|
+
VALUE_IS_NOT_OBJECT = "VALUE_IS_NOT_OBJECT",
|
|
1027
|
+
/** Unable to make a request to the webhook URL '%s'. Please make sure that the endpoint is reachable. */
|
|
1028
|
+
WEBHOOK_ENDPOINT_NOT_REACHABLE = "WEBHOOK_ENDPOINT_NOT_REACHABLE",
|
|
1029
|
+
/** A webhook request has failed. A more concrete error message will be returned with this code. */
|
|
1030
|
+
WEBHOOK_REQUEST_FAILURE = "WEBHOOK_REQUEST_FAILURE",
|
|
1031
|
+
/** The webhook for the URL '%s' responded with error(s). Please check the details for more information. */
|
|
1032
|
+
WEBHOOK_RESPONDED_WITH_ERRORS = "WEBHOOK_RESPONDED_WITH_ERRORS",
|
|
1033
|
+
/** The request to get the %s secret succeeded, but the secret was not found. Please contact Axinom Support. */
|
|
1034
|
+
WEBHOOK_SECRET_NOT_FOUND = "WEBHOOK_SECRET_NOT_FOUND",
|
|
1035
|
+
/** The %s secret is not set. Please call an appropriate mutation to generate it. */
|
|
1036
|
+
WEBHOOK_SECRET_NOT_SET = "WEBHOOK_SECRET_NOT_SET",
|
|
981
1037
|
/** Websocket not found in ExtendedGraphQLContext. This is a development time issue. A reference to the websocket must be included in Postgraphile build options. */
|
|
982
1038
|
WEBSOCKET_NOT_FOUND = "WEBSOCKET_NOT_FOUND"
|
|
983
1039
|
}
|
|
1040
|
+
export type GenerateAccessTokenEnrichmentWebhookSecretInput = {
|
|
1041
|
+
applicationId: Scalars['String'];
|
|
1042
|
+
};
|
|
1043
|
+
export type GenerateAccessTokenEnrichmentWebhookSecretPayload = {
|
|
1044
|
+
__typename?: 'GenerateAccessTokenEnrichmentWebhookSecretPayload';
|
|
1045
|
+
secret: Scalars['String'];
|
|
1046
|
+
};
|
|
984
1047
|
export type GenerateApplicationKeyInput = {
|
|
985
1048
|
applicationId: Scalars['UUID'];
|
|
986
1049
|
};
|
|
@@ -1042,6 +1105,20 @@ export type GenerateEndUserLongLivedTokenPayload = {
|
|
|
1042
1105
|
/** Long lived user token */
|
|
1043
1106
|
userToken: Scalars['String'];
|
|
1044
1107
|
};
|
|
1108
|
+
export type GenerateUserCreatedWebhookSecretInput = {
|
|
1109
|
+
serviceConfigurationId: Scalars['String'];
|
|
1110
|
+
};
|
|
1111
|
+
export type GenerateUserCreatedWebhookSecretPayload = {
|
|
1112
|
+
__typename?: 'GenerateUserCreatedWebhookSecretPayload';
|
|
1113
|
+
secret: Scalars['String'];
|
|
1114
|
+
};
|
|
1115
|
+
export type GenerateUserInfoWebhookSecretInput = {
|
|
1116
|
+
idpConnectionId: Scalars['String'];
|
|
1117
|
+
};
|
|
1118
|
+
export type GenerateUserInfoWebhookSecretPayload = {
|
|
1119
|
+
__typename?: 'GenerateUserInfoWebhookSecretPayload';
|
|
1120
|
+
secret: Scalars['String'];
|
|
1121
|
+
};
|
|
1045
1122
|
/** A filter to be used against IdpAdditionalParamsObject fields. All fields are combined with a logical ‘and.’ */
|
|
1046
1123
|
export type IdpAdditionalParamsObjectFilter = {
|
|
1047
1124
|
/** Contained by the specified JSON. */
|
|
@@ -1109,6 +1186,7 @@ export type IdpConnection = {
|
|
|
1109
1186
|
userIdpData: UserIdpDataConnection;
|
|
1110
1187
|
userInfoEndpointUrl?: Maybe<Scalars['String']>;
|
|
1111
1188
|
userInfoRetrievalWebhook?: Maybe<Scalars['String']>;
|
|
1189
|
+
userInfoRetrievalWebhookSecretIsSet: Scalars['Boolean'];
|
|
1112
1190
|
};
|
|
1113
1191
|
export type IdpConnectionApplicationIdpConnectionsArgs = {
|
|
1114
1192
|
after?: Maybe<Scalars['Cursor']>;
|
|
@@ -1181,6 +1259,8 @@ export type IdpConnectionCondition = {
|
|
|
1181
1259
|
userInfoEndpointUrl?: Maybe<Scalars['String']>;
|
|
1182
1260
|
/** Checks for equality with the object’s `userInfoRetrievalWebhook` field. */
|
|
1183
1261
|
userInfoRetrievalWebhook?: Maybe<Scalars['String']>;
|
|
1262
|
+
/** Checks for equality with the object’s `userInfoRetrievalWebhookSecretIsSet` field. */
|
|
1263
|
+
userInfoRetrievalWebhookSecretIsSet?: Maybe<Scalars['Boolean']>;
|
|
1184
1264
|
};
|
|
1185
1265
|
/** A filter to be used against `IdpConnection` object types. All fields are combined with a logical ‘and.’ */
|
|
1186
1266
|
export type IdpConnectionFilter = {
|
|
@@ -1246,6 +1326,8 @@ export type IdpConnectionFilter = {
|
|
|
1246
1326
|
userInfoEndpointUrl?: Maybe<StringFilter>;
|
|
1247
1327
|
/** Filter by the object’s `userInfoRetrievalWebhook` field. */
|
|
1248
1328
|
userInfoRetrievalWebhook?: Maybe<StringFilter>;
|
|
1329
|
+
/** Filter by the object’s `userInfoRetrievalWebhookSecretIsSet` field. */
|
|
1330
|
+
userInfoRetrievalWebhookSecretIsSet?: Maybe<BooleanFilter>;
|
|
1249
1331
|
};
|
|
1250
1332
|
/** An input for mutations affecting `IdpConnection` */
|
|
1251
1333
|
export type IdpConnectionInput = {
|
|
@@ -1264,6 +1346,7 @@ export type IdpConnectionInput = {
|
|
|
1264
1346
|
tokenEndpointUrl?: Maybe<Scalars['String']>;
|
|
1265
1347
|
userInfoEndpointUrl?: Maybe<Scalars['String']>;
|
|
1266
1348
|
userInfoRetrievalWebhook?: Maybe<Scalars['String']>;
|
|
1349
|
+
userInfoRetrievalWebhookSecretIsSet?: Maybe<Scalars['Boolean']>;
|
|
1267
1350
|
};
|
|
1268
1351
|
/** Represents an update to a `IdpConnection`. Fields that are set will be updated. */
|
|
1269
1352
|
export type IdpConnectionPatch = {
|
|
@@ -1280,6 +1363,7 @@ export type IdpConnectionPatch = {
|
|
|
1280
1363
|
tokenEndpointUrl?: Maybe<Scalars['String']>;
|
|
1281
1364
|
userInfoEndpointUrl?: Maybe<Scalars['String']>;
|
|
1282
1365
|
userInfoRetrievalWebhook?: Maybe<Scalars['String']>;
|
|
1366
|
+
userInfoRetrievalWebhookSecretIsSet?: Maybe<Scalars['Boolean']>;
|
|
1283
1367
|
};
|
|
1284
1368
|
/** A connection to a list of `IdpConnection` values. */
|
|
1285
1369
|
export type IdpConnectionsConnection = {
|
|
@@ -1353,7 +1437,9 @@ export declare enum IdpConnectionsOrderBy {
|
|
|
1353
1437
|
USER_INFO_ENDPOINT_URL_ASC = "USER_INFO_ENDPOINT_URL_ASC",
|
|
1354
1438
|
USER_INFO_ENDPOINT_URL_DESC = "USER_INFO_ENDPOINT_URL_DESC",
|
|
1355
1439
|
USER_INFO_RETRIEVAL_WEBHOOK_ASC = "USER_INFO_RETRIEVAL_WEBHOOK_ASC",
|
|
1356
|
-
USER_INFO_RETRIEVAL_WEBHOOK_DESC = "USER_INFO_RETRIEVAL_WEBHOOK_DESC"
|
|
1440
|
+
USER_INFO_RETRIEVAL_WEBHOOK_DESC = "USER_INFO_RETRIEVAL_WEBHOOK_DESC",
|
|
1441
|
+
USER_INFO_RETRIEVAL_WEBHOOK_SECRET_IS_SET_ASC = "USER_INFO_RETRIEVAL_WEBHOOK_SECRET_IS_SET_ASC",
|
|
1442
|
+
USER_INFO_RETRIEVAL_WEBHOOK_SECRET_IS_SET_DESC = "USER_INFO_RETRIEVAL_WEBHOOK_SECRET_IS_SET_DESC"
|
|
1357
1443
|
}
|
|
1358
1444
|
/** A filter to be used against many `ApplicationIdpConnection` object types. All fields are combined with a logical ‘and.’ */
|
|
1359
1445
|
export type IdpConnectionToManyApplicationIdpConnectionFilter = {
|
|
@@ -1555,6 +1641,9 @@ export type Mutation = {
|
|
|
1555
1641
|
__typename?: 'Mutation';
|
|
1556
1642
|
/** Adds a custom mutation to authenticate an end-user application token for a given tenant/environment/application combination */
|
|
1557
1643
|
authenticateEndUserApplication: AuthenticateEndUserApplicationPayload;
|
|
1644
|
+
clearAccessTokenEnrichmentWebhookSecret: ClearAccessTokenEnrichmentWebhookSecretPayload;
|
|
1645
|
+
clearUserCreatedWebhookSecret: ClearUserCreatedWebhookSecretPayload;
|
|
1646
|
+
clearUserInfoWebhookSecret: ClearUserInfoWebhookSecretPayload;
|
|
1558
1647
|
/** Creates a single `Application`. */
|
|
1559
1648
|
createApplication?: Maybe<CreateApplicationPayload>;
|
|
1560
1649
|
/** Creates a single `ApplicationIdpConnection`. */
|
|
@@ -1592,12 +1681,15 @@ export type Mutation = {
|
|
|
1592
1681
|
* This can be used for encrypting the cookie object passed to native apps using deep linking.
|
|
1593
1682
|
*/
|
|
1594
1683
|
encryptWithKeyAes: EncryptWithKeyAesPayload;
|
|
1684
|
+
generateAccessTokenEnrichmentWebhookSecret: GenerateAccessTokenEnrichmentWebhookSecretPayload;
|
|
1595
1685
|
/** Adds a custom mutation to generate an Application Key for a given Application ID. */
|
|
1596
1686
|
generateApplicationKey: GenerateApplicationKeyPayload;
|
|
1597
1687
|
/** Adds a custom mutation to generated a delegated end-user access token for a given tenant/environment/application/email combination */
|
|
1598
1688
|
generateDelegatedAccessToken: GenerateDelegatedAccessTokenPayload;
|
|
1599
1689
|
/** Generate a long lived access token for a user access token */
|
|
1600
1690
|
generateEndUserLongLivedToken: GenerateEndUserLongLivedTokenPayload;
|
|
1691
|
+
generateUserCreatedWebhookSecret: GenerateUserCreatedWebhookSecretPayload;
|
|
1692
|
+
generateUserInfoWebhookSecret: GenerateUserInfoWebhookSecretPayload;
|
|
1601
1693
|
/** Adds a custom mutation to revoke and rotate the user token signing key */
|
|
1602
1694
|
revokeAndRotateUserTokenSigningKey: RevokeAndRotateUserTokenSigningKeyPayload;
|
|
1603
1695
|
/** Updates a single `Application` using a unique key and a patch. */
|
|
@@ -1616,6 +1708,18 @@ export type MutationAuthenticateEndUserApplicationArgs = {
|
|
|
1616
1708
|
input: AuthenticateEndUserApplicationInput;
|
|
1617
1709
|
};
|
|
1618
1710
|
/** The root mutation type which contains root level fields which mutate data. */
|
|
1711
|
+
export type MutationClearAccessTokenEnrichmentWebhookSecretArgs = {
|
|
1712
|
+
input: ClearAccessTokenEnrichmentWebhookSecretInput;
|
|
1713
|
+
};
|
|
1714
|
+
/** The root mutation type which contains root level fields which mutate data. */
|
|
1715
|
+
export type MutationClearUserCreatedWebhookSecretArgs = {
|
|
1716
|
+
input: ClearUserCreatedWebhookSecretInput;
|
|
1717
|
+
};
|
|
1718
|
+
/** The root mutation type which contains root level fields which mutate data. */
|
|
1719
|
+
export type MutationClearUserInfoWebhookSecretArgs = {
|
|
1720
|
+
input: ClearUserInfoWebhookSecretInput;
|
|
1721
|
+
};
|
|
1722
|
+
/** The root mutation type which contains root level fields which mutate data. */
|
|
1619
1723
|
export type MutationCreateApplicationArgs = {
|
|
1620
1724
|
input: CreateApplicationInput;
|
|
1621
1725
|
};
|
|
@@ -1668,6 +1772,10 @@ export type MutationEncryptWithKeyAesArgs = {
|
|
|
1668
1772
|
input: EncryptWithKeyAesInput;
|
|
1669
1773
|
};
|
|
1670
1774
|
/** The root mutation type which contains root level fields which mutate data. */
|
|
1775
|
+
export type MutationGenerateAccessTokenEnrichmentWebhookSecretArgs = {
|
|
1776
|
+
input: GenerateAccessTokenEnrichmentWebhookSecretInput;
|
|
1777
|
+
};
|
|
1778
|
+
/** The root mutation type which contains root level fields which mutate data. */
|
|
1671
1779
|
export type MutationGenerateApplicationKeyArgs = {
|
|
1672
1780
|
input: GenerateApplicationKeyInput;
|
|
1673
1781
|
};
|
|
@@ -1680,6 +1788,14 @@ export type MutationGenerateEndUserLongLivedTokenArgs = {
|
|
|
1680
1788
|
input: GenerateEndUserLongLivedTokenInput;
|
|
1681
1789
|
};
|
|
1682
1790
|
/** The root mutation type which contains root level fields which mutate data. */
|
|
1791
|
+
export type MutationGenerateUserCreatedWebhookSecretArgs = {
|
|
1792
|
+
input: GenerateUserCreatedWebhookSecretInput;
|
|
1793
|
+
};
|
|
1794
|
+
/** The root mutation type which contains root level fields which mutate data. */
|
|
1795
|
+
export type MutationGenerateUserInfoWebhookSecretArgs = {
|
|
1796
|
+
input: GenerateUserInfoWebhookSecretInput;
|
|
1797
|
+
};
|
|
1798
|
+
/** The root mutation type which contains root level fields which mutate data. */
|
|
1683
1799
|
export type MutationRevokeAndRotateUserTokenSigningKeyArgs = {
|
|
1684
1800
|
applicationId: Scalars['UUID'];
|
|
1685
1801
|
};
|
|
@@ -1886,6 +2002,8 @@ export type ServiceConfiguration = {
|
|
|
1886
2002
|
tenantId: Scalars['UUID'];
|
|
1887
2003
|
updatedDate: Scalars['Datetime'];
|
|
1888
2004
|
updatedUser: Scalars['String'];
|
|
2005
|
+
userCreatedWebhookSecretIsSet: Scalars['Boolean'];
|
|
2006
|
+
userCreatedWebhookUrl?: Maybe<Scalars['String']>;
|
|
1889
2007
|
webhookTimeout: Scalars['Int'];
|
|
1890
2008
|
};
|
|
1891
2009
|
/**
|
|
@@ -1909,6 +2027,10 @@ export type ServiceConfigurationCondition = {
|
|
|
1909
2027
|
updatedDate?: Maybe<Scalars['Datetime']>;
|
|
1910
2028
|
/** Checks for equality with the object’s `updatedUser` field. */
|
|
1911
2029
|
updatedUser?: Maybe<Scalars['String']>;
|
|
2030
|
+
/** Checks for equality with the object’s `userCreatedWebhookSecretIsSet` field. */
|
|
2031
|
+
userCreatedWebhookSecretIsSet?: Maybe<Scalars['Boolean']>;
|
|
2032
|
+
/** Checks for equality with the object’s `userCreatedWebhookUrl` field. */
|
|
2033
|
+
userCreatedWebhookUrl?: Maybe<Scalars['String']>;
|
|
1912
2034
|
/** Checks for equality with the object’s `webhookTimeout` field. */
|
|
1913
2035
|
webhookTimeout?: Maybe<Scalars['Int']>;
|
|
1914
2036
|
};
|
|
@@ -1936,12 +2058,18 @@ export type ServiceConfigurationFilter = {
|
|
|
1936
2058
|
updatedDate?: Maybe<DatetimeFilter>;
|
|
1937
2059
|
/** Filter by the object’s `updatedUser` field. */
|
|
1938
2060
|
updatedUser?: Maybe<StringFilter>;
|
|
2061
|
+
/** Filter by the object’s `userCreatedWebhookSecretIsSet` field. */
|
|
2062
|
+
userCreatedWebhookSecretIsSet?: Maybe<BooleanFilter>;
|
|
2063
|
+
/** Filter by the object’s `userCreatedWebhookUrl` field. */
|
|
2064
|
+
userCreatedWebhookUrl?: Maybe<StringFilter>;
|
|
1939
2065
|
/** Filter by the object’s `webhookTimeout` field. */
|
|
1940
2066
|
webhookTimeout?: Maybe<IntFilter>;
|
|
1941
2067
|
};
|
|
1942
2068
|
/** Represents an update to a `ServiceConfiguration`. Fields that are set will be updated. */
|
|
1943
2069
|
export type ServiceConfigurationPatch = {
|
|
1944
2070
|
signingKeyRotationInterval?: Maybe<Scalars['Int']>;
|
|
2071
|
+
userCreatedWebhookSecretIsSet?: Maybe<Scalars['Boolean']>;
|
|
2072
|
+
userCreatedWebhookUrl?: Maybe<Scalars['String']>;
|
|
1945
2073
|
webhookTimeout?: Maybe<Scalars['Int']>;
|
|
1946
2074
|
};
|
|
1947
2075
|
/** A connection to a list of `ServiceConfiguration` values. */
|
|
@@ -1985,6 +2113,10 @@ export declare enum ServiceConfigurationsOrderBy {
|
|
|
1985
2113
|
UPDATED_DATE_DESC = "UPDATED_DATE_DESC",
|
|
1986
2114
|
UPDATED_USER_ASC = "UPDATED_USER_ASC",
|
|
1987
2115
|
UPDATED_USER_DESC = "UPDATED_USER_DESC",
|
|
2116
|
+
USER_CREATED_WEBHOOK_SECRET_IS_SET_ASC = "USER_CREATED_WEBHOOK_SECRET_IS_SET_ASC",
|
|
2117
|
+
USER_CREATED_WEBHOOK_SECRET_IS_SET_DESC = "USER_CREATED_WEBHOOK_SECRET_IS_SET_DESC",
|
|
2118
|
+
USER_CREATED_WEBHOOK_URL_ASC = "USER_CREATED_WEBHOOK_URL_ASC",
|
|
2119
|
+
USER_CREATED_WEBHOOK_URL_DESC = "USER_CREATED_WEBHOOK_URL_DESC",
|
|
1988
2120
|
WEBHOOK_TIMEOUT_ASC = "WEBHOOK_TIMEOUT_ASC",
|
|
1989
2121
|
WEBHOOK_TIMEOUT_DESC = "WEBHOOK_TIMEOUT_DESC"
|
|
1990
2122
|
}
|
|
@@ -2260,7 +2392,7 @@ export type User = {
|
|
|
2260
2392
|
__typename?: 'User';
|
|
2261
2393
|
createdDate: Scalars['Datetime'];
|
|
2262
2394
|
createdUser: Scalars['String'];
|
|
2263
|
-
email?: Maybe<
|
|
2395
|
+
email?: Maybe<Scalars['String']>;
|
|
2264
2396
|
enabled: Scalars['Boolean'];
|
|
2265
2397
|
environmentId: Scalars['UUID'];
|
|
2266
2398
|
id: Scalars['UUID'];
|
|
@@ -2303,7 +2435,7 @@ export type UserCondition = {
|
|
|
2303
2435
|
/** Checks for equality with the object’s `createdUser` field. */
|
|
2304
2436
|
createdUser?: Maybe<Scalars['String']>;
|
|
2305
2437
|
/** Checks for equality with the object’s `email` field. */
|
|
2306
|
-
email?: Maybe<
|
|
2438
|
+
email?: Maybe<Scalars['String']>;
|
|
2307
2439
|
/** Checks for equality with the object’s `enabled` field. */
|
|
2308
2440
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
2309
2441
|
/** Checks for equality with the object’s `environmentId` field. */
|
|
@@ -2334,7 +2466,7 @@ export type UserFilter = {
|
|
|
2334
2466
|
/** Filter by the object’s `createdUser` field. */
|
|
2335
2467
|
createdUser?: Maybe<StringFilter>;
|
|
2336
2468
|
/** Filter by the object’s `email` field. */
|
|
2337
|
-
email?: Maybe<
|
|
2469
|
+
email?: Maybe<StringFilter>;
|
|
2338
2470
|
/** Filter by the object’s `enabled` field. */
|
|
2339
2471
|
enabled?: Maybe<BooleanFilter>;
|
|
2340
2472
|
/** Filter by the object’s `environmentId` field. */
|
|
@@ -2478,7 +2610,7 @@ export type UserIdpDatumFilter = {
|
|
|
2478
2610
|
};
|
|
2479
2611
|
/** Represents an update to a `User`. Fields that are set will be updated. */
|
|
2480
2612
|
export type UserPatch = {
|
|
2481
|
-
email?: Maybe<
|
|
2613
|
+
email?: Maybe<Scalars['String']>;
|
|
2482
2614
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
2483
2615
|
lastActiveAt?: Maybe<Scalars['Datetime']>;
|
|
2484
2616
|
loginCount?: Maybe<Scalars['Int']>;
|