@axinom/mosaic-user-auth 0.6.4-rc.2 → 0.6.4-rc.21
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
|
@@ -20,6 +20,7 @@ export type Scalars = {
|
|
|
20
20
|
export type Application = {
|
|
21
21
|
__typename?: 'Application';
|
|
22
22
|
accessTokenEnrichmentWebhook?: Maybe<Scalars['String']>;
|
|
23
|
+
accessTokenEnrichmentWebhookSecretIsSet: Scalars['Boolean'];
|
|
23
24
|
accessTokenLifetime: Scalars['Int'];
|
|
24
25
|
allowedOrigins?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
25
26
|
allowedProxyUrls?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
@@ -60,6 +61,8 @@ export type ApplicationIdpConnectionsArgs = {
|
|
|
60
61
|
export type ApplicationCondition = {
|
|
61
62
|
/** Checks for equality with the object’s `accessTokenEnrichmentWebhook` field. */
|
|
62
63
|
accessTokenEnrichmentWebhook?: Maybe<Scalars['String']>;
|
|
64
|
+
/** Checks for equality with the object’s `accessTokenEnrichmentWebhookSecretIsSet` field. */
|
|
65
|
+
accessTokenEnrichmentWebhookSecretIsSet?: Maybe<Scalars['Boolean']>;
|
|
63
66
|
/** Checks for equality with the object’s `accessTokenLifetime` field. */
|
|
64
67
|
accessTokenLifetime?: Maybe<Scalars['Int']>;
|
|
65
68
|
/** Checks for equality with the object’s `allowedOrigins` field. */
|
|
@@ -96,6 +99,8 @@ export type ApplicationCondition = {
|
|
|
96
99
|
export type ApplicationFilter = {
|
|
97
100
|
/** Filter by the object’s `accessTokenEnrichmentWebhook` field. */
|
|
98
101
|
accessTokenEnrichmentWebhook?: Maybe<StringFilter>;
|
|
102
|
+
/** Filter by the object’s `accessTokenEnrichmentWebhookSecretIsSet` field. */
|
|
103
|
+
accessTokenEnrichmentWebhookSecretIsSet?: Maybe<BooleanFilter>;
|
|
99
104
|
/** Filter by the object’s `accessTokenLifetime` field. */
|
|
100
105
|
accessTokenLifetime?: Maybe<IntFilter>;
|
|
101
106
|
/** Filter by the object’s `allowedOrigins` field. */
|
|
@@ -268,6 +273,7 @@ export enum ApplicationIdpConnectionsOrderBy {
|
|
|
268
273
|
/** An input for mutations affecting `Application` */
|
|
269
274
|
export type ApplicationInput = {
|
|
270
275
|
accessTokenEnrichmentWebhook?: Maybe<Scalars['String']>;
|
|
276
|
+
accessTokenEnrichmentWebhookSecretIsSet?: Maybe<Scalars['Boolean']>;
|
|
271
277
|
accessTokenLifetime?: Maybe<Scalars['Int']>;
|
|
272
278
|
allowedOrigins?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
273
279
|
allowedProxyUrls?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
@@ -280,6 +286,7 @@ export type ApplicationInput = {
|
|
|
280
286
|
/** Represents an update to a `Application`. Fields that are set will be updated. */
|
|
281
287
|
export type ApplicationPatch = {
|
|
282
288
|
accessTokenEnrichmentWebhook?: Maybe<Scalars['String']>;
|
|
289
|
+
accessTokenEnrichmentWebhookSecretIsSet?: Maybe<Scalars['Boolean']>;
|
|
283
290
|
accessTokenLifetime?: Maybe<Scalars['Int']>;
|
|
284
291
|
allowedOrigins?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
285
292
|
allowedProxyUrls?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
@@ -349,6 +356,8 @@ export type ApplicationsEdge = {
|
|
|
349
356
|
export enum ApplicationsOrderBy {
|
|
350
357
|
ACCESS_TOKEN_ENRICHMENT_WEBHOOK_ASC = 'ACCESS_TOKEN_ENRICHMENT_WEBHOOK_ASC',
|
|
351
358
|
ACCESS_TOKEN_ENRICHMENT_WEBHOOK_DESC = 'ACCESS_TOKEN_ENRICHMENT_WEBHOOK_DESC',
|
|
359
|
+
ACCESS_TOKEN_ENRICHMENT_WEBHOOK_SECRET_IS_SET_ASC = 'ACCESS_TOKEN_ENRICHMENT_WEBHOOK_SECRET_IS_SET_ASC',
|
|
360
|
+
ACCESS_TOKEN_ENRICHMENT_WEBHOOK_SECRET_IS_SET_DESC = 'ACCESS_TOKEN_ENRICHMENT_WEBHOOK_SECRET_IS_SET_DESC',
|
|
352
361
|
ACCESS_TOKEN_LIFETIME_ASC = 'ACCESS_TOKEN_LIFETIME_ASC',
|
|
353
362
|
ACCESS_TOKEN_LIFETIME_DESC = 'ACCESS_TOKEN_LIFETIME_DESC',
|
|
354
363
|
ALLOWED_ORIGINS_ASC = 'ALLOWED_ORIGINS_ASC',
|
|
@@ -434,6 +443,33 @@ export type BooleanFilter = {
|
|
|
434
443
|
notIn?: Maybe<Array<Scalars['Boolean']>>;
|
|
435
444
|
};
|
|
436
445
|
|
|
446
|
+
export type ClearAccessTokenEnrichmentWebhookSecretInput = {
|
|
447
|
+
applicationId: Scalars['String'];
|
|
448
|
+
};
|
|
449
|
+
|
|
450
|
+
export type ClearAccessTokenEnrichmentWebhookSecretPayload = {
|
|
451
|
+
__typename?: 'ClearAccessTokenEnrichmentWebhookSecretPayload';
|
|
452
|
+
deletedSecret: Scalars['String'];
|
|
453
|
+
};
|
|
454
|
+
|
|
455
|
+
export type ClearUserCreatedWebhookSecretInput = {
|
|
456
|
+
serviceConfigurationId: Scalars['String'];
|
|
457
|
+
};
|
|
458
|
+
|
|
459
|
+
export type ClearUserCreatedWebhookSecretPayload = {
|
|
460
|
+
__typename?: 'ClearUserCreatedWebhookSecretPayload';
|
|
461
|
+
deletedSecret: Scalars['String'];
|
|
462
|
+
};
|
|
463
|
+
|
|
464
|
+
export type ClearUserInfoWebhookSecretInput = {
|
|
465
|
+
idpConnectionId: Scalars['String'];
|
|
466
|
+
};
|
|
467
|
+
|
|
468
|
+
export type ClearUserInfoWebhookSecretPayload = {
|
|
469
|
+
__typename?: 'ClearUserInfoWebhookSecretPayload';
|
|
470
|
+
deletedSecret: Scalars['String'];
|
|
471
|
+
};
|
|
472
|
+
|
|
437
473
|
/** All input for the create `ApplicationIdpConnection` mutation. */
|
|
438
474
|
export type CreateApplicationIdpConnectionInput = {
|
|
439
475
|
/** The `ApplicationIdpConnection` to be created by this mutation. */
|
|
@@ -972,6 +1008,8 @@ export enum ErrorCodesEnum {
|
|
|
972
1008
|
ERROR_WRAPPER = 'ERROR_WRAPPER',
|
|
973
1009
|
/** A GraphQL validation error has occurred. Please make sure that the GraphQL request is made with correct syntax or parameters. */
|
|
974
1010
|
GRAPHQL_VALIDATION_FAILED = 'GRAPHQL_VALIDATION_FAILED',
|
|
1011
|
+
/** The Hosting service is not accessible. Please contact Axinom support. */
|
|
1012
|
+
HOSTING_SERVICE_NOT_ACCESSIBLE = 'HOSTING_SERVICE_NOT_ACCESSIBLE',
|
|
975
1013
|
/** The Identity service is not accessible. Please contact Axinom support. */
|
|
976
1014
|
IDENTITY_SERVICE_NOT_ACCESSIBLE = 'IDENTITY_SERVICE_NOT_ACCESSIBLE',
|
|
977
1015
|
/** IDP Connection [%s] does not exist. */
|
|
@@ -988,6 +1026,8 @@ export enum ErrorCodesEnum {
|
|
|
988
1026
|
INVALID_CONSTRUCTOR_ARGS = 'INVALID_CONSTRUCTOR_ARGS',
|
|
989
1027
|
/** Custom provider name cannot begin with 'Ax'. */
|
|
990
1028
|
INVALID_CUSTOM_PROVIDER_NAME = 'INVALID_CUSTOM_PROVIDER_NAME',
|
|
1029
|
+
/** Invalid email format. Please provide a valid email address. */
|
|
1030
|
+
INVALID_EMAIL_FORMAT = 'INVALID_EMAIL_FORMAT',
|
|
991
1031
|
/** Invalid URL format in [%s]. */
|
|
992
1032
|
INVALID_URL_FORMAT = 'INVALID_URL_FORMAT',
|
|
993
1033
|
/** User store category of the referenced user store ID must be 'END_USER'. */
|
|
@@ -1014,6 +1054,8 @@ export enum ErrorCodesEnum {
|
|
|
1014
1054
|
NOT_GENERIC_AUTHENTICATED_SUBJECT = 'NOT_GENERIC_AUTHENTICATED_SUBJECT',
|
|
1015
1055
|
/** The object is not a ManagementAuthenticationContext */
|
|
1016
1056
|
NOT_MANAGEMENT_AUTHENTICATION_CONTEXT = 'NOT_MANAGEMENT_AUTHENTICATION_CONTEXT',
|
|
1057
|
+
/** The %s is missing required properties: %s. */
|
|
1058
|
+
OBJECT_IS_MISSING_PROPERTIES = 'OBJECT_IS_MISSING_PROPERTIES',
|
|
1017
1059
|
/** The provider name is already in use. Please use a different name or use the existing provider. */
|
|
1018
1060
|
PROVIDER_NAME_IN_USE = 'PROVIDER_NAME_IN_USE',
|
|
1019
1061
|
/** The Reference User Store ID does not exist in the AxAuth Service. */
|
|
@@ -1024,14 +1066,22 @@ export enum ErrorCodesEnum {
|
|
|
1024
1066
|
SIGNING_KEY_NOT_FOUND = 'SIGNING_KEY_NOT_FOUND',
|
|
1025
1067
|
/** An application startup error has occurred. The actual message will have more information. */
|
|
1026
1068
|
STARTUP_ERROR = 'STARTUP_ERROR',
|
|
1069
|
+
/** User is authenticated, but subject information was not found. Please contact Axinom Support. */
|
|
1070
|
+
SUBJECT_INFORMATION_NOT_FOUND = 'SUBJECT_INFORMATION_NOT_FOUND',
|
|
1027
1071
|
/** User Token enrichment content cannot exceed 10240 characters. */
|
|
1028
1072
|
TOKEN_ENRICHMENT_EXCEEDS_LIMIT = 'TOKEN_ENRICHMENT_EXCEEDS_LIMIT',
|
|
1029
1073
|
/** Retrieving user information from Access Token Enrichment Webhook failed. */
|
|
1030
1074
|
TOKEN_ENRICHMENT_WEBHOOK_FAILURE = 'TOKEN_ENRICHMENT_WEBHOOK_FAILURE',
|
|
1075
|
+
/** Unable to get the %s secret. Please contact Axinom Support. */
|
|
1076
|
+
UNABLE_TO_GET_SECRET = 'UNABLE_TO_GET_SECRET',
|
|
1077
|
+
/** Unable to set the %s secret. Please contact Axinom Support. */
|
|
1078
|
+
UNABLE_TO_SET_SECRET = 'UNABLE_TO_SET_SECRET',
|
|
1031
1079
|
/** An unhandled database-related error has occurred. Please contact the service support. */
|
|
1032
1080
|
UNHANDLED_DATABASE_ERROR = 'UNHANDLED_DATABASE_ERROR',
|
|
1033
1081
|
/** An unhandled error has occurred. Please contact the service support. */
|
|
1034
1082
|
UNHANDLED_ERROR = 'UNHANDLED_ERROR',
|
|
1083
|
+
/** No payload was found in User Info Retrieval webhook response. */
|
|
1084
|
+
USER_INFO_WEBHOOK_RESPONSE_PAYLOAD_NOT_FOUND = 'USER_INFO_WEBHOOK_RESPONSE_PAYLOAD_NOT_FOUND',
|
|
1035
1085
|
/** User is not authorized to access the operation. */
|
|
1036
1086
|
USER_NOT_AUTHORIZED = 'USER_NOT_AUTHORIZED',
|
|
1037
1087
|
/** User does not exist or you have provided an invalid user ID. */
|
|
@@ -1042,10 +1092,31 @@ export enum ErrorCodesEnum {
|
|
|
1042
1092
|
USER_STORE_SHOULD_BE_EMPTY = 'USER_STORE_SHOULD_BE_EMPTY',
|
|
1043
1093
|
/** A User Store is required when creating an IDP Connection for the "AxAuth" provider. */
|
|
1044
1094
|
USER_STORE_SHOULD_NOT_BE_EMPTY = 'USER_STORE_SHOULD_NOT_BE_EMPTY',
|
|
1095
|
+
/** The %s is not an object. */
|
|
1096
|
+
VALUE_IS_NOT_OBJECT = 'VALUE_IS_NOT_OBJECT',
|
|
1097
|
+
/** Unable to make a request to the webhook URL '%s'. Please make sure that the endpoint is reachable. */
|
|
1098
|
+
WEBHOOK_ENDPOINT_NOT_REACHABLE = 'WEBHOOK_ENDPOINT_NOT_REACHABLE',
|
|
1099
|
+
/** A webhook request has failed. A more concrete error message will be returned with this code. */
|
|
1100
|
+
WEBHOOK_REQUEST_FAILURE = 'WEBHOOK_REQUEST_FAILURE',
|
|
1101
|
+
/** The webhook for the URL '%s' responded with error(s). Please check the details for more information. */
|
|
1102
|
+
WEBHOOK_RESPONDED_WITH_ERRORS = 'WEBHOOK_RESPONDED_WITH_ERRORS',
|
|
1103
|
+
/** The request to get the %s secret succeeded, but the secret was not found. Please contact Axinom Support. */
|
|
1104
|
+
WEBHOOK_SECRET_NOT_FOUND = 'WEBHOOK_SECRET_NOT_FOUND',
|
|
1105
|
+
/** The %s secret is not set. Please call an appropriate mutation to generate it. */
|
|
1106
|
+
WEBHOOK_SECRET_NOT_SET = 'WEBHOOK_SECRET_NOT_SET',
|
|
1045
1107
|
/** Websocket not found in ExtendedGraphQLContext. This is a development time issue. A reference to the websocket must be included in Postgraphile build options. */
|
|
1046
1108
|
WEBSOCKET_NOT_FOUND = 'WEBSOCKET_NOT_FOUND'
|
|
1047
1109
|
}
|
|
1048
1110
|
|
|
1111
|
+
export type GenerateAccessTokenEnrichmentWebhookSecretInput = {
|
|
1112
|
+
applicationId: Scalars['String'];
|
|
1113
|
+
};
|
|
1114
|
+
|
|
1115
|
+
export type GenerateAccessTokenEnrichmentWebhookSecretPayload = {
|
|
1116
|
+
__typename?: 'GenerateAccessTokenEnrichmentWebhookSecretPayload';
|
|
1117
|
+
secret: Scalars['String'];
|
|
1118
|
+
};
|
|
1119
|
+
|
|
1049
1120
|
export type GenerateApplicationKeyInput = {
|
|
1050
1121
|
applicationId: Scalars['UUID'];
|
|
1051
1122
|
};
|
|
@@ -1113,6 +1184,24 @@ export type GenerateEndUserLongLivedTokenPayload = {
|
|
|
1113
1184
|
userToken: Scalars['String'];
|
|
1114
1185
|
};
|
|
1115
1186
|
|
|
1187
|
+
export type GenerateUserCreatedWebhookSecretInput = {
|
|
1188
|
+
serviceConfigurationId: Scalars['String'];
|
|
1189
|
+
};
|
|
1190
|
+
|
|
1191
|
+
export type GenerateUserCreatedWebhookSecretPayload = {
|
|
1192
|
+
__typename?: 'GenerateUserCreatedWebhookSecretPayload';
|
|
1193
|
+
secret: Scalars['String'];
|
|
1194
|
+
};
|
|
1195
|
+
|
|
1196
|
+
export type GenerateUserInfoWebhookSecretInput = {
|
|
1197
|
+
idpConnectionId: Scalars['String'];
|
|
1198
|
+
};
|
|
1199
|
+
|
|
1200
|
+
export type GenerateUserInfoWebhookSecretPayload = {
|
|
1201
|
+
__typename?: 'GenerateUserInfoWebhookSecretPayload';
|
|
1202
|
+
secret: Scalars['String'];
|
|
1203
|
+
};
|
|
1204
|
+
|
|
1116
1205
|
|
|
1117
1206
|
/** A filter to be used against IdpAdditionalParamsObject fields. All fields are combined with a logical ‘and.’ */
|
|
1118
1207
|
export type IdpAdditionalParamsObjectFilter = {
|
|
@@ -1182,6 +1271,7 @@ export type IdpConnection = {
|
|
|
1182
1271
|
userIdpData: UserIdpDataConnection;
|
|
1183
1272
|
userInfoEndpointUrl?: Maybe<Scalars['String']>;
|
|
1184
1273
|
userInfoRetrievalWebhook?: Maybe<Scalars['String']>;
|
|
1274
|
+
userInfoRetrievalWebhookSecretIsSet: Scalars['Boolean'];
|
|
1185
1275
|
};
|
|
1186
1276
|
|
|
1187
1277
|
|
|
@@ -1259,6 +1349,8 @@ export type IdpConnectionCondition = {
|
|
|
1259
1349
|
userInfoEndpointUrl?: Maybe<Scalars['String']>;
|
|
1260
1350
|
/** Checks for equality with the object’s `userInfoRetrievalWebhook` field. */
|
|
1261
1351
|
userInfoRetrievalWebhook?: Maybe<Scalars['String']>;
|
|
1352
|
+
/** Checks for equality with the object’s `userInfoRetrievalWebhookSecretIsSet` field. */
|
|
1353
|
+
userInfoRetrievalWebhookSecretIsSet?: Maybe<Scalars['Boolean']>;
|
|
1262
1354
|
};
|
|
1263
1355
|
|
|
1264
1356
|
/** A filter to be used against `IdpConnection` object types. All fields are combined with a logical ‘and.’ */
|
|
@@ -1325,6 +1417,8 @@ export type IdpConnectionFilter = {
|
|
|
1325
1417
|
userInfoEndpointUrl?: Maybe<StringFilter>;
|
|
1326
1418
|
/** Filter by the object’s `userInfoRetrievalWebhook` field. */
|
|
1327
1419
|
userInfoRetrievalWebhook?: Maybe<StringFilter>;
|
|
1420
|
+
/** Filter by the object’s `userInfoRetrievalWebhookSecretIsSet` field. */
|
|
1421
|
+
userInfoRetrievalWebhookSecretIsSet?: Maybe<BooleanFilter>;
|
|
1328
1422
|
};
|
|
1329
1423
|
|
|
1330
1424
|
/** An input for mutations affecting `IdpConnection` */
|
|
@@ -1344,6 +1438,7 @@ export type IdpConnectionInput = {
|
|
|
1344
1438
|
tokenEndpointUrl?: Maybe<Scalars['String']>;
|
|
1345
1439
|
userInfoEndpointUrl?: Maybe<Scalars['String']>;
|
|
1346
1440
|
userInfoRetrievalWebhook?: Maybe<Scalars['String']>;
|
|
1441
|
+
userInfoRetrievalWebhookSecretIsSet?: Maybe<Scalars['Boolean']>;
|
|
1347
1442
|
};
|
|
1348
1443
|
|
|
1349
1444
|
/** Represents an update to a `IdpConnection`. Fields that are set will be updated. */
|
|
@@ -1361,6 +1456,7 @@ export type IdpConnectionPatch = {
|
|
|
1361
1456
|
tokenEndpointUrl?: Maybe<Scalars['String']>;
|
|
1362
1457
|
userInfoEndpointUrl?: Maybe<Scalars['String']>;
|
|
1363
1458
|
userInfoRetrievalWebhook?: Maybe<Scalars['String']>;
|
|
1459
|
+
userInfoRetrievalWebhookSecretIsSet?: Maybe<Scalars['Boolean']>;
|
|
1364
1460
|
};
|
|
1365
1461
|
|
|
1366
1462
|
/** A connection to a list of `IdpConnection` values. */
|
|
@@ -1437,7 +1533,9 @@ export enum IdpConnectionsOrderBy {
|
|
|
1437
1533
|
USER_INFO_ENDPOINT_URL_ASC = 'USER_INFO_ENDPOINT_URL_ASC',
|
|
1438
1534
|
USER_INFO_ENDPOINT_URL_DESC = 'USER_INFO_ENDPOINT_URL_DESC',
|
|
1439
1535
|
USER_INFO_RETRIEVAL_WEBHOOK_ASC = 'USER_INFO_RETRIEVAL_WEBHOOK_ASC',
|
|
1440
|
-
USER_INFO_RETRIEVAL_WEBHOOK_DESC = 'USER_INFO_RETRIEVAL_WEBHOOK_DESC'
|
|
1536
|
+
USER_INFO_RETRIEVAL_WEBHOOK_DESC = 'USER_INFO_RETRIEVAL_WEBHOOK_DESC',
|
|
1537
|
+
USER_INFO_RETRIEVAL_WEBHOOK_SECRET_IS_SET_ASC = 'USER_INFO_RETRIEVAL_WEBHOOK_SECRET_IS_SET_ASC',
|
|
1538
|
+
USER_INFO_RETRIEVAL_WEBHOOK_SECRET_IS_SET_DESC = 'USER_INFO_RETRIEVAL_WEBHOOK_SECRET_IS_SET_DESC'
|
|
1441
1539
|
}
|
|
1442
1540
|
|
|
1443
1541
|
/** A filter to be used against many `ApplicationIdpConnection` object types. All fields are combined with a logical ‘and.’ */
|
|
@@ -1653,6 +1751,9 @@ export type Mutation = {
|
|
|
1653
1751
|
__typename?: 'Mutation';
|
|
1654
1752
|
/** Adds a custom mutation to authenticate an end-user application token for a given tenant/environment/application combination */
|
|
1655
1753
|
authenticateEndUserApplication: AuthenticateEndUserApplicationPayload;
|
|
1754
|
+
clearAccessTokenEnrichmentWebhookSecret: ClearAccessTokenEnrichmentWebhookSecretPayload;
|
|
1755
|
+
clearUserCreatedWebhookSecret: ClearUserCreatedWebhookSecretPayload;
|
|
1756
|
+
clearUserInfoWebhookSecret: ClearUserInfoWebhookSecretPayload;
|
|
1656
1757
|
/** Creates a single `Application`. */
|
|
1657
1758
|
createApplication?: Maybe<CreateApplicationPayload>;
|
|
1658
1759
|
/** Creates a single `ApplicationIdpConnection`. */
|
|
@@ -1690,12 +1791,15 @@ export type Mutation = {
|
|
|
1690
1791
|
* This can be used for encrypting the cookie object passed to native apps using deep linking.
|
|
1691
1792
|
*/
|
|
1692
1793
|
encryptWithKeyAes: EncryptWithKeyAesPayload;
|
|
1794
|
+
generateAccessTokenEnrichmentWebhookSecret: GenerateAccessTokenEnrichmentWebhookSecretPayload;
|
|
1693
1795
|
/** Adds a custom mutation to generate an Application Key for a given Application ID. */
|
|
1694
1796
|
generateApplicationKey: GenerateApplicationKeyPayload;
|
|
1695
1797
|
/** Adds a custom mutation to generated a delegated end-user access token for a given tenant/environment/application/email combination */
|
|
1696
1798
|
generateDelegatedAccessToken: GenerateDelegatedAccessTokenPayload;
|
|
1697
1799
|
/** Generate a long lived access token for a user access token */
|
|
1698
1800
|
generateEndUserLongLivedToken: GenerateEndUserLongLivedTokenPayload;
|
|
1801
|
+
generateUserCreatedWebhookSecret: GenerateUserCreatedWebhookSecretPayload;
|
|
1802
|
+
generateUserInfoWebhookSecret: GenerateUserInfoWebhookSecretPayload;
|
|
1699
1803
|
/** Adds a custom mutation to revoke and rotate the user token signing key */
|
|
1700
1804
|
revokeAndRotateUserTokenSigningKey: RevokeAndRotateUserTokenSigningKeyPayload;
|
|
1701
1805
|
/** Updates a single `Application` using a unique key and a patch. */
|
|
@@ -1717,6 +1821,24 @@ export type MutationAuthenticateEndUserApplicationArgs = {
|
|
|
1717
1821
|
};
|
|
1718
1822
|
|
|
1719
1823
|
|
|
1824
|
+
/** The root mutation type which contains root level fields which mutate data. */
|
|
1825
|
+
export type MutationClearAccessTokenEnrichmentWebhookSecretArgs = {
|
|
1826
|
+
input: ClearAccessTokenEnrichmentWebhookSecretInput;
|
|
1827
|
+
};
|
|
1828
|
+
|
|
1829
|
+
|
|
1830
|
+
/** The root mutation type which contains root level fields which mutate data. */
|
|
1831
|
+
export type MutationClearUserCreatedWebhookSecretArgs = {
|
|
1832
|
+
input: ClearUserCreatedWebhookSecretInput;
|
|
1833
|
+
};
|
|
1834
|
+
|
|
1835
|
+
|
|
1836
|
+
/** The root mutation type which contains root level fields which mutate data. */
|
|
1837
|
+
export type MutationClearUserInfoWebhookSecretArgs = {
|
|
1838
|
+
input: ClearUserInfoWebhookSecretInput;
|
|
1839
|
+
};
|
|
1840
|
+
|
|
1841
|
+
|
|
1720
1842
|
/** The root mutation type which contains root level fields which mutate data. */
|
|
1721
1843
|
export type MutationCreateApplicationArgs = {
|
|
1722
1844
|
input: CreateApplicationInput;
|
|
@@ -1795,6 +1917,12 @@ export type MutationEncryptWithKeyAesArgs = {
|
|
|
1795
1917
|
};
|
|
1796
1918
|
|
|
1797
1919
|
|
|
1920
|
+
/** The root mutation type which contains root level fields which mutate data. */
|
|
1921
|
+
export type MutationGenerateAccessTokenEnrichmentWebhookSecretArgs = {
|
|
1922
|
+
input: GenerateAccessTokenEnrichmentWebhookSecretInput;
|
|
1923
|
+
};
|
|
1924
|
+
|
|
1925
|
+
|
|
1798
1926
|
/** The root mutation type which contains root level fields which mutate data. */
|
|
1799
1927
|
export type MutationGenerateApplicationKeyArgs = {
|
|
1800
1928
|
input: GenerateApplicationKeyInput;
|
|
@@ -1813,6 +1941,18 @@ export type MutationGenerateEndUserLongLivedTokenArgs = {
|
|
|
1813
1941
|
};
|
|
1814
1942
|
|
|
1815
1943
|
|
|
1944
|
+
/** The root mutation type which contains root level fields which mutate data. */
|
|
1945
|
+
export type MutationGenerateUserCreatedWebhookSecretArgs = {
|
|
1946
|
+
input: GenerateUserCreatedWebhookSecretInput;
|
|
1947
|
+
};
|
|
1948
|
+
|
|
1949
|
+
|
|
1950
|
+
/** The root mutation type which contains root level fields which mutate data. */
|
|
1951
|
+
export type MutationGenerateUserInfoWebhookSecretArgs = {
|
|
1952
|
+
input: GenerateUserInfoWebhookSecretInput;
|
|
1953
|
+
};
|
|
1954
|
+
|
|
1955
|
+
|
|
1816
1956
|
/** The root mutation type which contains root level fields which mutate data. */
|
|
1817
1957
|
export type MutationRevokeAndRotateUserTokenSigningKeyArgs = {
|
|
1818
1958
|
applicationId: Scalars['UUID'];
|
|
@@ -2065,6 +2205,8 @@ export type ServiceConfiguration = {
|
|
|
2065
2205
|
tenantId: Scalars['UUID'];
|
|
2066
2206
|
updatedDate: Scalars['Datetime'];
|
|
2067
2207
|
updatedUser: Scalars['String'];
|
|
2208
|
+
userCreatedWebhookSecretIsSet: Scalars['Boolean'];
|
|
2209
|
+
userCreatedWebhookUrl?: Maybe<Scalars['String']>;
|
|
2068
2210
|
webhookTimeout: Scalars['Int'];
|
|
2069
2211
|
};
|
|
2070
2212
|
|
|
@@ -2089,6 +2231,10 @@ export type ServiceConfigurationCondition = {
|
|
|
2089
2231
|
updatedDate?: Maybe<Scalars['Datetime']>;
|
|
2090
2232
|
/** Checks for equality with the object’s `updatedUser` field. */
|
|
2091
2233
|
updatedUser?: Maybe<Scalars['String']>;
|
|
2234
|
+
/** Checks for equality with the object’s `userCreatedWebhookSecretIsSet` field. */
|
|
2235
|
+
userCreatedWebhookSecretIsSet?: Maybe<Scalars['Boolean']>;
|
|
2236
|
+
/** Checks for equality with the object’s `userCreatedWebhookUrl` field. */
|
|
2237
|
+
userCreatedWebhookUrl?: Maybe<Scalars['String']>;
|
|
2092
2238
|
/** Checks for equality with the object’s `webhookTimeout` field. */
|
|
2093
2239
|
webhookTimeout?: Maybe<Scalars['Int']>;
|
|
2094
2240
|
};
|
|
@@ -2117,6 +2263,10 @@ export type ServiceConfigurationFilter = {
|
|
|
2117
2263
|
updatedDate?: Maybe<DatetimeFilter>;
|
|
2118
2264
|
/** Filter by the object’s `updatedUser` field. */
|
|
2119
2265
|
updatedUser?: Maybe<StringFilter>;
|
|
2266
|
+
/** Filter by the object’s `userCreatedWebhookSecretIsSet` field. */
|
|
2267
|
+
userCreatedWebhookSecretIsSet?: Maybe<BooleanFilter>;
|
|
2268
|
+
/** Filter by the object’s `userCreatedWebhookUrl` field. */
|
|
2269
|
+
userCreatedWebhookUrl?: Maybe<StringFilter>;
|
|
2120
2270
|
/** Filter by the object’s `webhookTimeout` field. */
|
|
2121
2271
|
webhookTimeout?: Maybe<IntFilter>;
|
|
2122
2272
|
};
|
|
@@ -2124,6 +2274,8 @@ export type ServiceConfigurationFilter = {
|
|
|
2124
2274
|
/** Represents an update to a `ServiceConfiguration`. Fields that are set will be updated. */
|
|
2125
2275
|
export type ServiceConfigurationPatch = {
|
|
2126
2276
|
signingKeyRotationInterval?: Maybe<Scalars['Int']>;
|
|
2277
|
+
userCreatedWebhookSecretIsSet?: Maybe<Scalars['Boolean']>;
|
|
2278
|
+
userCreatedWebhookUrl?: Maybe<Scalars['String']>;
|
|
2127
2279
|
webhookTimeout?: Maybe<Scalars['Int']>;
|
|
2128
2280
|
};
|
|
2129
2281
|
|
|
@@ -2170,6 +2322,10 @@ export enum ServiceConfigurationsOrderBy {
|
|
|
2170
2322
|
UPDATED_DATE_DESC = 'UPDATED_DATE_DESC',
|
|
2171
2323
|
UPDATED_USER_ASC = 'UPDATED_USER_ASC',
|
|
2172
2324
|
UPDATED_USER_DESC = 'UPDATED_USER_DESC',
|
|
2325
|
+
USER_CREATED_WEBHOOK_SECRET_IS_SET_ASC = 'USER_CREATED_WEBHOOK_SECRET_IS_SET_ASC',
|
|
2326
|
+
USER_CREATED_WEBHOOK_SECRET_IS_SET_DESC = 'USER_CREATED_WEBHOOK_SECRET_IS_SET_DESC',
|
|
2327
|
+
USER_CREATED_WEBHOOK_URL_ASC = 'USER_CREATED_WEBHOOK_URL_ASC',
|
|
2328
|
+
USER_CREATED_WEBHOOK_URL_DESC = 'USER_CREATED_WEBHOOK_URL_DESC',
|
|
2173
2329
|
WEBHOOK_TIMEOUT_ASC = 'WEBHOOK_TIMEOUT_ASC',
|
|
2174
2330
|
WEBHOOK_TIMEOUT_DESC = 'WEBHOOK_TIMEOUT_DESC'
|
|
2175
2331
|
}
|
|
@@ -2468,7 +2624,7 @@ export type User = {
|
|
|
2468
2624
|
__typename?: 'User';
|
|
2469
2625
|
createdDate: Scalars['Datetime'];
|
|
2470
2626
|
createdUser: Scalars['String'];
|
|
2471
|
-
email?: Maybe<
|
|
2627
|
+
email?: Maybe<Scalars['String']>;
|
|
2472
2628
|
enabled: Scalars['Boolean'];
|
|
2473
2629
|
environmentId: Scalars['UUID'];
|
|
2474
2630
|
id: Scalars['UUID'];
|
|
@@ -2516,7 +2672,7 @@ export type UserCondition = {
|
|
|
2516
2672
|
/** Checks for equality with the object’s `createdUser` field. */
|
|
2517
2673
|
createdUser?: Maybe<Scalars['String']>;
|
|
2518
2674
|
/** Checks for equality with the object’s `email` field. */
|
|
2519
|
-
email?: Maybe<
|
|
2675
|
+
email?: Maybe<Scalars['String']>;
|
|
2520
2676
|
/** Checks for equality with the object’s `enabled` field. */
|
|
2521
2677
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
2522
2678
|
/** Checks for equality with the object’s `environmentId` field. */
|
|
@@ -2548,7 +2704,7 @@ export type UserFilter = {
|
|
|
2548
2704
|
/** Filter by the object’s `createdUser` field. */
|
|
2549
2705
|
createdUser?: Maybe<StringFilter>;
|
|
2550
2706
|
/** Filter by the object’s `email` field. */
|
|
2551
|
-
email?: Maybe<
|
|
2707
|
+
email?: Maybe<StringFilter>;
|
|
2552
2708
|
/** Filter by the object’s `enabled` field. */
|
|
2553
2709
|
enabled?: Maybe<BooleanFilter>;
|
|
2554
2710
|
/** Filter by the object’s `environmentId` field. */
|
|
@@ -2699,7 +2855,7 @@ export type UserIdpDatumFilter = {
|
|
|
2699
2855
|
|
|
2700
2856
|
/** Represents an update to a `User`. Fields that are set will be updated. */
|
|
2701
2857
|
export type UserPatch = {
|
|
2702
|
-
email?: Maybe<
|
|
2858
|
+
email?: Maybe<Scalars['String']>;
|
|
2703
2859
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
2704
2860
|
lastActiveAt?: Maybe<Scalars['Datetime']>;
|
|
2705
2861
|
loginCount?: Maybe<Scalars['Int']>;
|