@ver-id/graphql-client 0.9.0 → 0.10.0
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/index.cjs +143 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1413 -42
- package/dist/index.d.ts +1413 -42
- package/dist/index.js +121 -9
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -648,6 +648,10 @@ type Scalars = {
|
|
|
648
648
|
input: string;
|
|
649
649
|
output: string;
|
|
650
650
|
};
|
|
651
|
+
NACECode: {
|
|
652
|
+
input: unknown;
|
|
653
|
+
output: unknown;
|
|
654
|
+
};
|
|
651
655
|
NonEmpty: {
|
|
652
656
|
input: string;
|
|
653
657
|
output: string;
|
|
@@ -942,6 +946,11 @@ type App = Model & {
|
|
|
942
946
|
__typename?: 'App';
|
|
943
947
|
/** The base64Logo of the app. */
|
|
944
948
|
base64Logo: Scalars['NonEmpty']['output'];
|
|
949
|
+
/**
|
|
950
|
+
* Primary operating regions as ISO 3166-1 alpha-2 country codes.
|
|
951
|
+
* Most apps can also be used outside these regions.
|
|
952
|
+
*/
|
|
953
|
+
countries: Array<Scalars['ISO3166']['output']>;
|
|
945
954
|
/** The creation time */
|
|
946
955
|
createdAt: Scalars['DateTime']['output'];
|
|
947
956
|
/** The collection of locale */
|
|
@@ -2412,12 +2421,22 @@ type Authentication = Model & {
|
|
|
2412
2421
|
authenticationLabels: AuthenticationLabelConnection;
|
|
2413
2422
|
/** A list of flow providers belonging to this flow authentication. */
|
|
2414
2423
|
authenticationProviders: AuthenticationProviderConnection;
|
|
2424
|
+
/** The associated secrets with this authentication */
|
|
2425
|
+
authenticationSecrets: AuthenticationSecretConnection;
|
|
2415
2426
|
/** The creation timestamp. */
|
|
2416
2427
|
createdAt: Scalars['DateTime']['output'];
|
|
2428
|
+
/** The data deletion policy. */
|
|
2429
|
+
deletionPolicy?: Maybe<Scalars['String']['output']>;
|
|
2417
2430
|
/** The name of the flow. */
|
|
2418
2431
|
name: Scalars['NonEmpty']['output'];
|
|
2419
2432
|
/** The organization the flow belongs to. */
|
|
2420
2433
|
organization: Organization;
|
|
2434
|
+
/** The purpose statement describing why attributes are being attested. */
|
|
2435
|
+
purposeStatement?: Maybe<Scalars['String']['output']>;
|
|
2436
|
+
/** The data retention policy. */
|
|
2437
|
+
retentionPolicy?: Maybe<Scalars['String']['output']>;
|
|
2438
|
+
/** The data sharing policy. */
|
|
2439
|
+
sharingPolicy?: Maybe<Scalars['String']['output']>;
|
|
2421
2440
|
/** The state of the flow. */
|
|
2422
2441
|
state: AuthenticationState;
|
|
2423
2442
|
/** Shortcut to active studio controls associated to this object */
|
|
@@ -2443,6 +2462,10 @@ type AuthenticationAuthenticationLabelsArgs = {
|
|
|
2443
2462
|
type AuthenticationAuthenticationProvidersArgs = {
|
|
2444
2463
|
input?: InputMaybe<FindManyAuthenticationProvidersInput>;
|
|
2445
2464
|
};
|
|
2465
|
+
/** Flow authentication definition. */
|
|
2466
|
+
type AuthenticationAuthenticationSecretsArgs = {
|
|
2467
|
+
input?: InputMaybe<FindManyAuthenticationSecretsInput>;
|
|
2468
|
+
};
|
|
2446
2469
|
/** AuthenticationAction */
|
|
2447
2470
|
declare enum AuthenticationAction {
|
|
2448
2471
|
Activate = "ACTIVATE",
|
|
@@ -2868,6 +2891,50 @@ type AuthenticationScopeSortInput = {
|
|
|
2868
2891
|
/** The field to sort on. */
|
|
2869
2892
|
field: AuthenticationScopeSortEnum;
|
|
2870
2893
|
};
|
|
2894
|
+
/** Authentication secret definition. Links an organization secret to an authentication flow. */
|
|
2895
|
+
type AuthenticationSecret = Model & {
|
|
2896
|
+
__typename?: 'AuthenticationSecret';
|
|
2897
|
+
/** The flow authentication */
|
|
2898
|
+
authentication: Authentication;
|
|
2899
|
+
/** The creation time */
|
|
2900
|
+
createdAt: Scalars['DateTime']['output'];
|
|
2901
|
+
/** The organization secret */
|
|
2902
|
+
organizationSecret: OrganizationSecret;
|
|
2903
|
+
/** The update time */
|
|
2904
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
2905
|
+
/** The UUID */
|
|
2906
|
+
uuid: Scalars['UUID']['output'];
|
|
2907
|
+
};
|
|
2908
|
+
/** A connection */
|
|
2909
|
+
type AuthenticationSecretConnection = {
|
|
2910
|
+
__typename?: 'AuthenticationSecretConnection';
|
|
2911
|
+
edges: Array<AuthenticationSecretEdge>;
|
|
2912
|
+
pageInfo: PageInfo;
|
|
2913
|
+
};
|
|
2914
|
+
/** An edge */
|
|
2915
|
+
type AuthenticationSecretEdge = {
|
|
2916
|
+
__typename?: 'AuthenticationSecretEdge';
|
|
2917
|
+
cursor: Scalars['String']['output'];
|
|
2918
|
+
node: AuthenticationSecret;
|
|
2919
|
+
};
|
|
2920
|
+
/** Fields which can be used to filter authentication secrets on. Value must be camel case. */
|
|
2921
|
+
declare enum AuthenticationSecretFilteringField {
|
|
2922
|
+
AuthenticationUuid = "authenticationUuid",
|
|
2923
|
+
OrganizationSecretUuid = "organizationSecretUuid",
|
|
2924
|
+
Uuid = "uuid"
|
|
2925
|
+
}
|
|
2926
|
+
/** Fields which can be used to sort authentication secrets on. Value must be camel case. */
|
|
2927
|
+
declare enum AuthenticationSecretSortEnum {
|
|
2928
|
+
CreatedAt = "createdAt",
|
|
2929
|
+
UpdatedAt = "updatedAt"
|
|
2930
|
+
}
|
|
2931
|
+
/** Input options for sorting authentication secrets. */
|
|
2932
|
+
type AuthenticationSecretSortInput = {
|
|
2933
|
+
/** The direction to sort on. */
|
|
2934
|
+
direction: OrderDirection;
|
|
2935
|
+
/** The field to sort on. */
|
|
2936
|
+
field: AuthenticationSecretSortEnum;
|
|
2937
|
+
};
|
|
2871
2938
|
/** Fields which can be used to sort flow authentications on. Value must be camel case. */
|
|
2872
2939
|
declare enum AuthenticationSortEnum {
|
|
2873
2940
|
CreatedAt = "createdAt",
|
|
@@ -3536,6 +3603,11 @@ type Constants = {
|
|
|
3536
3603
|
type CreateAppInput = {
|
|
3537
3604
|
/** The base64Logo of the app. */
|
|
3538
3605
|
base64Logo: Scalars['NonEmpty']['input'];
|
|
3606
|
+
/**
|
|
3607
|
+
* Primary operating regions as ISO 3166-1 alpha-2 country codes.
|
|
3608
|
+
* Most apps can also be used outside these regions.
|
|
3609
|
+
*/
|
|
3610
|
+
countries?: InputMaybe<Array<Scalars['ISO3166']['input']>>;
|
|
3539
3611
|
/** The name of the app. */
|
|
3540
3612
|
name: Scalars['NonEmpty']['input'];
|
|
3541
3613
|
};
|
|
@@ -3818,6 +3890,13 @@ type CreateAuthenticationScopeInput = {
|
|
|
3818
3890
|
/** The scope name */
|
|
3819
3891
|
scopeUuid: Scalars['UUID']['input'];
|
|
3820
3892
|
};
|
|
3893
|
+
/** Create input */
|
|
3894
|
+
type CreateAuthenticationSecretInput = {
|
|
3895
|
+
/** The UUID of the authentication flow */
|
|
3896
|
+
authenticationUuid: Scalars['UUID']['input'];
|
|
3897
|
+
/** The UUID of the organization secret */
|
|
3898
|
+
organizationSecretUuid: Scalars['UUID']['input'];
|
|
3899
|
+
};
|
|
3821
3900
|
/** Input type used to create billing plan types. */
|
|
3822
3901
|
type CreateBillingPlanInput = {
|
|
3823
3902
|
/** autoRenew */
|
|
@@ -4185,6 +4264,13 @@ type CreateDisclosureProviderInput = {
|
|
|
4185
4264
|
/** The uuid of the flow provider app. */
|
|
4186
4265
|
providerAppUuid: Scalars['UUID']['input'];
|
|
4187
4266
|
};
|
|
4267
|
+
/** Create input */
|
|
4268
|
+
type CreateDisclosureSecretInput = {
|
|
4269
|
+
/** The UUID of the disclosure flow */
|
|
4270
|
+
disclosureUuid: Scalars['UUID']['input'];
|
|
4271
|
+
/** The UUID of the organization secret */
|
|
4272
|
+
organizationSecretUuid: Scalars['UUID']['input'];
|
|
4273
|
+
};
|
|
4188
4274
|
/** The input for creating a flow issuance attribute. */
|
|
4189
4275
|
type CreateIssuanceAttributeInput = {
|
|
4190
4276
|
/** The uuid of the flow attribute. */
|
|
@@ -4214,14 +4300,21 @@ type CreateIssuanceCredentialInput = {
|
|
|
4214
4300
|
};
|
|
4215
4301
|
/** The input for creating a flow credential meta datakeeper */
|
|
4216
4302
|
type CreateIssuanceCredentialMetaDatakeeperInput = {
|
|
4217
|
-
/** The expiration duration, in
|
|
4303
|
+
/** The expiration duration, in seconds */
|
|
4304
|
+
expirationDuration: Scalars['Int']['input'];
|
|
4305
|
+
/** The flow issuance credential UUID */
|
|
4306
|
+
issuanceCredentialUuid: Scalars['UUID']['input'];
|
|
4307
|
+
};
|
|
4308
|
+
/** The input for creating a flow credential meta oid4vc */
|
|
4309
|
+
type CreateIssuanceCredentialMetaOid4vcInput = {
|
|
4310
|
+
/** The expiration duration, in seconds */
|
|
4218
4311
|
expirationDuration: Scalars['Int']['input'];
|
|
4219
4312
|
/** The flow issuance credential UUID */
|
|
4220
4313
|
issuanceCredentialUuid: Scalars['UUID']['input'];
|
|
4221
4314
|
};
|
|
4222
4315
|
/** The input for creating a flow credential meta yivi */
|
|
4223
4316
|
type CreateIssuanceCredentialMetaYiviInput = {
|
|
4224
|
-
/** The expiration duration, in
|
|
4317
|
+
/** The expiration duration, in seconds */
|
|
4225
4318
|
expirationDuration: Scalars['Int']['input'];
|
|
4226
4319
|
/** The flow issuance credential UUID */
|
|
4227
4320
|
issuanceCredentialUuid: Scalars['UUID']['input'];
|
|
@@ -4269,6 +4362,13 @@ type CreateIssuanceProviderByAttributesInput = {
|
|
|
4269
4362
|
/** The uuid of the flow provider app. */
|
|
4270
4363
|
providerAppUuid: Scalars['UUID']['input'];
|
|
4271
4364
|
};
|
|
4365
|
+
/** Create Input */
|
|
4366
|
+
type CreateIssuanceProviderConfigurationNlWalletInput = {
|
|
4367
|
+
/** The attribute UUIDs that must be disclosed before issuance */
|
|
4368
|
+
attributeUuids: Array<Scalars['UUID']['input']>;
|
|
4369
|
+
/** The IssuanceProvider UUID */
|
|
4370
|
+
issuanceProviderUuid: Scalars['UUID']['input'];
|
|
4371
|
+
};
|
|
4272
4372
|
/** The input for creating a flow issuance provider. */
|
|
4273
4373
|
type CreateIssuanceProviderInput = {
|
|
4274
4374
|
/** The uuid of the flow the flow provider belongs to. */
|
|
@@ -4276,6 +4376,13 @@ type CreateIssuanceProviderInput = {
|
|
|
4276
4376
|
/** The uuid of the flow provider app. */
|
|
4277
4377
|
providerAppUuid: Scalars['UUID']['input'];
|
|
4278
4378
|
};
|
|
4379
|
+
/** Create input */
|
|
4380
|
+
type CreateIssuanceSecretInput = {
|
|
4381
|
+
/** The UUID of the issuance flow */
|
|
4382
|
+
issuanceUuid: Scalars['UUID']['input'];
|
|
4383
|
+
/** The UUID of the organization secret */
|
|
4384
|
+
organizationSecretUuid: Scalars['UUID']['input'];
|
|
4385
|
+
};
|
|
4279
4386
|
/** The input for creating a issuer. */
|
|
4280
4387
|
type CreateIssuerInput = {
|
|
4281
4388
|
/** The categories of the issuer */
|
|
@@ -4313,6 +4420,8 @@ type CreateIssuerMetaDatakeeperInput = {
|
|
|
4313
4420
|
did: Scalars['NonEmpty']['input'];
|
|
4314
4421
|
/** The issuer UUID */
|
|
4315
4422
|
issuerUuid: Scalars['UUID']['input'];
|
|
4423
|
+
/** The issuer's logo image URI */
|
|
4424
|
+
logo?: InputMaybe<Scalars['String']['input']>;
|
|
4316
4425
|
};
|
|
4317
4426
|
/** The input for creating a issuer meta mdoc. */
|
|
4318
4427
|
type CreateIssuerMetaMdocInput = {
|
|
@@ -4320,18 +4429,39 @@ type CreateIssuerMetaMdocInput = {
|
|
|
4320
4429
|
issuerUuid: Scalars['UUID']['input'];
|
|
4321
4430
|
/** The issuer's public key as a JWK */
|
|
4322
4431
|
jwk: Scalars['JSONObject']['input'];
|
|
4432
|
+
/** The issuer's logo image URI */
|
|
4433
|
+
logo?: InputMaybe<Scalars['String']['input']>;
|
|
4323
4434
|
};
|
|
4324
4435
|
/** The input for creating a issuer meta OID4VC. */
|
|
4325
4436
|
type CreateIssuerMetaOid4VcmdocInput = {
|
|
4437
|
+
/** The certificate identifier in the secret store */
|
|
4438
|
+
certIdentifier?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
4326
4439
|
/** The issuer UUID */
|
|
4327
4440
|
issuerUuid: Scalars['UUID']['input'];
|
|
4328
4441
|
/** The issuer's public key as a JWK */
|
|
4329
4442
|
jwk: Scalars['JSONObject']['input'];
|
|
4330
4443
|
/** The issuer's logo image URI */
|
|
4331
4444
|
logo?: InputMaybe<Scalars['String']['input']>;
|
|
4445
|
+
/** The private key identifier in the secret store */
|
|
4446
|
+
privateKeyIdentifier?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
4447
|
+
};
|
|
4448
|
+
/** The input for creating an issuer meta OID4VC MDOC key profile. */
|
|
4449
|
+
type CreateIssuerMetaOid4VcMdocKeyProfileInput = {
|
|
4450
|
+
/** The certificate identifier in the secret store */
|
|
4451
|
+
certIdentifier: Scalars['NonEmpty']['input'];
|
|
4452
|
+
/** The issuer meta OID4VC MDOC UUID */
|
|
4453
|
+
issuerMetaOID4VCMdocUuid: Scalars['UUID']['input'];
|
|
4454
|
+
/** The issuer's public key as a JWK */
|
|
4455
|
+
jwk: Scalars['JSONObject']['input'];
|
|
4456
|
+
/** The private key identifier in the secret store */
|
|
4457
|
+
privateKeyIdentifier: Scalars['NonEmpty']['input'];
|
|
4458
|
+
/** The provider app UUID this key profile is linked to */
|
|
4459
|
+
providerAppUuid: Scalars['UUID']['input'];
|
|
4332
4460
|
};
|
|
4333
4461
|
/** The input for creating a issuer meta OID4VC. */
|
|
4334
4462
|
type CreateIssuerMetaOid4VcsdjwtInput = {
|
|
4463
|
+
/** The certificate identifier in the secret store */
|
|
4464
|
+
certIdentifier?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
4335
4465
|
/** The issuer's identifier (iss) */
|
|
4336
4466
|
identifier: Scalars['NonEmpty']['input'];
|
|
4337
4467
|
/** The issuer UUID */
|
|
@@ -4340,6 +4470,23 @@ type CreateIssuerMetaOid4VcsdjwtInput = {
|
|
|
4340
4470
|
jwk: Scalars['JSONObject']['input'];
|
|
4341
4471
|
/** The issuer's logo image URI */
|
|
4342
4472
|
logo?: InputMaybe<Scalars['String']['input']>;
|
|
4473
|
+
/** The private key identifier in the secret store */
|
|
4474
|
+
privateKeyIdentifier?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
4475
|
+
};
|
|
4476
|
+
/** The input for creating an issuer meta OID4VC SD-JWT key profile. */
|
|
4477
|
+
type CreateIssuerMetaOid4VcSdJwtKeyProfileInput = {
|
|
4478
|
+
/** The certificate identifier in the secret store */
|
|
4479
|
+
certIdentifier: Scalars['NonEmpty']['input'];
|
|
4480
|
+
/** The issuer's identifier override (iss) */
|
|
4481
|
+
identifier?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
4482
|
+
/** The issuer meta OID4VC SD-JWT UUID */
|
|
4483
|
+
issuerMetaOID4VCSdJwtUuid: Scalars['UUID']['input'];
|
|
4484
|
+
/** The issuer's public key as a JWK */
|
|
4485
|
+
jwk: Scalars['JSONObject']['input'];
|
|
4486
|
+
/** The private key identifier in the secret store */
|
|
4487
|
+
privateKeyIdentifier: Scalars['NonEmpty']['input'];
|
|
4488
|
+
/** The provider app UUID this key profile is linked to */
|
|
4489
|
+
providerAppUuid: Scalars['UUID']['input'];
|
|
4343
4490
|
};
|
|
4344
4491
|
/** The input for creating a issuer meta yivi. */
|
|
4345
4492
|
type CreateIssuerMetaYiviInput = {
|
|
@@ -4347,6 +4494,8 @@ type CreateIssuerMetaYiviInput = {
|
|
|
4347
4494
|
id: Scalars['NonEmpty']['input'];
|
|
4348
4495
|
/** The issuer UUID */
|
|
4349
4496
|
issuerUuid: Scalars['UUID']['input'];
|
|
4497
|
+
/** The issuer's logo image URI */
|
|
4498
|
+
logo?: InputMaybe<Scalars['String']['input']>;
|
|
4350
4499
|
};
|
|
4351
4500
|
/** Input for creating a label */
|
|
4352
4501
|
type CreateLabelInput = {
|
|
@@ -4389,8 +4538,6 @@ type CreateMaintenanceInput = {
|
|
|
4389
4538
|
type CreateManyMappingIssuanceAttributeInput = {
|
|
4390
4539
|
/** The uuid of the attribute. */
|
|
4391
4540
|
attributeUuid: Scalars['UUID']['input'];
|
|
4392
|
-
/** The claims, this attribute will be mapped to. */
|
|
4393
|
-
claims: Array<Scalars['NonEmpty']['input']>;
|
|
4394
4541
|
/** The uuid of the mappingIssuance link. */
|
|
4395
4542
|
mappingIssuanceLinkUuid: Scalars['UUID']['input'];
|
|
4396
4543
|
};
|
|
@@ -4454,11 +4601,18 @@ type CreateManyStudioPlanControlInput = {
|
|
|
4454
4601
|
type CreateMappingIssuanceAttributeInput = {
|
|
4455
4602
|
/** The uuid of the attribute. */
|
|
4456
4603
|
attributeUuid: Scalars['UUID']['input'];
|
|
4457
|
-
/** The claims, this attribute will be mapped to. */
|
|
4458
|
-
claims: Array<Scalars['NonEmpty']['input']>;
|
|
4459
4604
|
/** The uuid of the mappingIssuance link. */
|
|
4460
4605
|
mappingIssuanceLinkUuid: Scalars['UUID']['input'];
|
|
4461
4606
|
};
|
|
4607
|
+
/** The input for creating a mappingIssuance claim. */
|
|
4608
|
+
type CreateMappingIssuanceClaimInput = {
|
|
4609
|
+
/** The claim */
|
|
4610
|
+
claim: Scalars['NonEmpty']['input'];
|
|
4611
|
+
/** The uuid of the mappingIssuance attribute, this claim belongs to. */
|
|
4612
|
+
mappingIssuanceAttributeUuid: Scalars['UUID']['input'];
|
|
4613
|
+
/** The name of the claim. */
|
|
4614
|
+
name: Scalars['NonEmpty']['input'];
|
|
4615
|
+
};
|
|
4462
4616
|
/** The input for creating an mappingIssuance. */
|
|
4463
4617
|
type CreateMappingIssuanceInput = {
|
|
4464
4618
|
/** The name of the mappingIssuance. */
|
|
@@ -4661,14 +4815,24 @@ type CreateOrganizationDomainOAuthProviderInput = {
|
|
|
4661
4815
|
};
|
|
4662
4816
|
/** Input type used to create DIRECT organizations. */
|
|
4663
4817
|
type CreateOrganizationInput = {
|
|
4818
|
+
/** The ISO 3166-1 alpha-2 country code of the organization. */
|
|
4819
|
+
countryCode?: InputMaybe<Scalars['ISO3166']['input']>;
|
|
4664
4820
|
/** The organization description. */
|
|
4665
4821
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
4666
4822
|
/** The public email address of the organization. */
|
|
4667
4823
|
email?: InputMaybe<Scalars['Email']['input']>;
|
|
4824
|
+
/** The chamber of commerce registration number. */
|
|
4825
|
+
kvk?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
4826
|
+
/** The legal registered name of the organization. */
|
|
4827
|
+
legalName?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
4828
|
+
/** The NACE Rev. 2.1 economic activity code of the organization. */
|
|
4829
|
+
naceCode?: InputMaybe<Scalars['NACECode']['input']>;
|
|
4668
4830
|
/** The organization name. */
|
|
4669
4831
|
name: Scalars['NonEmpty']['input'];
|
|
4670
4832
|
/** The phone number of the organization. */
|
|
4671
4833
|
phone?: InputMaybe<Scalars['String']['input']>;
|
|
4834
|
+
/** The URL of the organization's privacy policy. */
|
|
4835
|
+
privacyPolicyUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
4672
4836
|
/** The organization type (DIRECT or PARTNER). Defaults to DIRECT. */
|
|
4673
4837
|
type?: InputMaybe<OrganizationType>;
|
|
4674
4838
|
/** The url of the website of the organization. */
|
|
@@ -4824,14 +4988,18 @@ type CreateProviderAppMetaOid4VcInput = {
|
|
|
4824
4988
|
clientIdentifierPrefix?: InputMaybe<ProviderAppMetaTypeOid4VcClientIdentifierPrefix>;
|
|
4825
4989
|
/** If DCQL is supported */
|
|
4826
4990
|
dcql?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4827
|
-
/** The latest draft version supported by this app */
|
|
4828
|
-
|
|
4991
|
+
/** The latest issuance draft version supported by this app */
|
|
4992
|
+
issuanceDraftVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
4993
|
+
/** The issuance spec type supported by this app */
|
|
4994
|
+
issuanceSpecType?: InputMaybe<ProviderAppMetaOid4VcIssuanceSpecType>;
|
|
4829
4995
|
/** The protocol */
|
|
4830
4996
|
protocol?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
4831
4997
|
/** The ProviderApp UUID */
|
|
4832
4998
|
providerAppUuid: Scalars['UUID']['input'];
|
|
4833
|
-
/** The
|
|
4834
|
-
|
|
4999
|
+
/** The latest verification draft version supported by this app */
|
|
5000
|
+
verificationDraftVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
5001
|
+
/** The verification spec type supported by this app */
|
|
5002
|
+
verificationSpecType: ProviderAppMetaOid4VcVerificationSpecType;
|
|
4835
5003
|
};
|
|
4836
5004
|
/** The input for creating a provider. */
|
|
4837
5005
|
type CreateProviderInput = {
|
|
@@ -5035,6 +5203,13 @@ type CreateSignatureProviderInput = {
|
|
|
5035
5203
|
/** The uuid of the flow the flow provider belongs to. */
|
|
5036
5204
|
signatureUuid: Scalars['UUID']['input'];
|
|
5037
5205
|
};
|
|
5206
|
+
/** Create input */
|
|
5207
|
+
type CreateSignatureSecretInput = {
|
|
5208
|
+
/** The UUID of the organization secret */
|
|
5209
|
+
organizationSecretUuid: Scalars['UUID']['input'];
|
|
5210
|
+
/** The UUID of the signature flow */
|
|
5211
|
+
signatureUuid: Scalars['UUID']['input'];
|
|
5212
|
+
};
|
|
5038
5213
|
/** Create Input */
|
|
5039
5214
|
type CreateStudioPlanControlInput = {
|
|
5040
5215
|
/** The URN */
|
|
@@ -6678,6 +6853,8 @@ type Disclosure = Model & {
|
|
|
6678
6853
|
__typename?: 'Disclosure';
|
|
6679
6854
|
/** The creation timestamp. */
|
|
6680
6855
|
createdAt: Scalars['DateTime']['output'];
|
|
6856
|
+
/** The data deletion policy. */
|
|
6857
|
+
deletionPolicy?: Maybe<Scalars['String']['output']>;
|
|
6681
6858
|
/** The associated brand with this disclosure */
|
|
6682
6859
|
disclosureBrands: DisclosureBrandConnection;
|
|
6683
6860
|
/** The associated domains with this disclosure */
|
|
@@ -6688,6 +6865,8 @@ type Disclosure = Model & {
|
|
|
6688
6865
|
disclosureMappings: DisclosureMappingConnection;
|
|
6689
6866
|
/** A list of flow providers belonging to this flow disclosure. */
|
|
6690
6867
|
disclosureProviders: DisclosureProviderConnection;
|
|
6868
|
+
/** The associated secrets with this disclosure */
|
|
6869
|
+
disclosureSecrets: DisclosureSecretConnection;
|
|
6691
6870
|
/** The JWT media type */
|
|
6692
6871
|
jwtMediaType: Scalars['JwtMediaType']['output'];
|
|
6693
6872
|
/** The meta of the flow. */
|
|
@@ -6696,8 +6875,14 @@ type Disclosure = Model & {
|
|
|
6696
6875
|
name: Scalars['NonEmpty']['output'];
|
|
6697
6876
|
/** The organization the flow belongs to. */
|
|
6698
6877
|
organization: Organization;
|
|
6878
|
+
/** The purpose statement describing why attributes are being attested. */
|
|
6879
|
+
purposeStatement?: Maybe<Scalars['String']['output']>;
|
|
6699
6880
|
/** The indicator if explicit consent is required */
|
|
6700
6881
|
requireExplicitConsent: Scalars['Boolean']['output'];
|
|
6882
|
+
/** The data retention policy. */
|
|
6883
|
+
retentionPolicy?: Maybe<Scalars['String']['output']>;
|
|
6884
|
+
/** The data sharing policy. */
|
|
6885
|
+
sharingPolicy?: Maybe<Scalars['String']['output']>;
|
|
6701
6886
|
/** The state of the flow. */
|
|
6702
6887
|
state: DisclosureState;
|
|
6703
6888
|
/** Shortcut to active studio controls associated to this object */
|
|
@@ -6727,6 +6912,10 @@ type DisclosureDisclosureMappingsArgs = {
|
|
|
6727
6912
|
type DisclosureDisclosureProvidersArgs = {
|
|
6728
6913
|
input?: InputMaybe<FindManyDisclosureProvidersInput>;
|
|
6729
6914
|
};
|
|
6915
|
+
/** Flow disclosure definition. */
|
|
6916
|
+
type DisclosureDisclosureSecretsArgs = {
|
|
6917
|
+
input?: InputMaybe<FindManyDisclosureSecretsInput>;
|
|
6918
|
+
};
|
|
6730
6919
|
/** DisclosureAction */
|
|
6731
6920
|
declare enum DisclosureAction {
|
|
6732
6921
|
Activate = "ACTIVATE",
|
|
@@ -7312,6 +7501,50 @@ type DisclosureProviderSortInput = {
|
|
|
7312
7501
|
/** The field to sort on. */
|
|
7313
7502
|
field: DisclosureProviderSortEnum;
|
|
7314
7503
|
};
|
|
7504
|
+
/** Disclosure secret definition. Links an organization secret to a disclosure flow. */
|
|
7505
|
+
type DisclosureSecret = Model & {
|
|
7506
|
+
__typename?: 'DisclosureSecret';
|
|
7507
|
+
/** The creation time */
|
|
7508
|
+
createdAt: Scalars['DateTime']['output'];
|
|
7509
|
+
/** The flow disclosure */
|
|
7510
|
+
disclosure: Disclosure;
|
|
7511
|
+
/** The organization secret */
|
|
7512
|
+
organizationSecret: OrganizationSecret;
|
|
7513
|
+
/** The update time */
|
|
7514
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
7515
|
+
/** The UUID */
|
|
7516
|
+
uuid: Scalars['UUID']['output'];
|
|
7517
|
+
};
|
|
7518
|
+
/** A connection */
|
|
7519
|
+
type DisclosureSecretConnection = {
|
|
7520
|
+
__typename?: 'DisclosureSecretConnection';
|
|
7521
|
+
edges: Array<DisclosureSecretEdge>;
|
|
7522
|
+
pageInfo: PageInfo;
|
|
7523
|
+
};
|
|
7524
|
+
/** An edge */
|
|
7525
|
+
type DisclosureSecretEdge = {
|
|
7526
|
+
__typename?: 'DisclosureSecretEdge';
|
|
7527
|
+
cursor: Scalars['String']['output'];
|
|
7528
|
+
node: DisclosureSecret;
|
|
7529
|
+
};
|
|
7530
|
+
/** Fields which can be used to filter disclosure secrets on. Value must be camel case. */
|
|
7531
|
+
declare enum DisclosureSecretFilteringField {
|
|
7532
|
+
DisclosureUuid = "disclosureUuid",
|
|
7533
|
+
OrganizationSecretUuid = "organizationSecretUuid",
|
|
7534
|
+
Uuid = "uuid"
|
|
7535
|
+
}
|
|
7536
|
+
/** Fields which can be used to sort disclosure secrets on. Value must be camel case. */
|
|
7537
|
+
declare enum DisclosureSecretSortEnum {
|
|
7538
|
+
CreatedAt = "createdAt",
|
|
7539
|
+
UpdatedAt = "updatedAt"
|
|
7540
|
+
}
|
|
7541
|
+
/** Input options for sorting disclosure secrets. */
|
|
7542
|
+
type DisclosureSecretSortInput = {
|
|
7543
|
+
/** The direction to sort on. */
|
|
7544
|
+
direction: OrderDirection;
|
|
7545
|
+
/** The field to sort on. */
|
|
7546
|
+
field: DisclosureSecretSortEnum;
|
|
7547
|
+
};
|
|
7315
7548
|
/** Fields which can be used to sort flow disclosures on. Value must be camel case. */
|
|
7316
7549
|
declare enum DisclosureSortEnum {
|
|
7317
7550
|
CreatedAt = "createdAt",
|
|
@@ -8221,6 +8454,28 @@ type FindManyAuthenticationScopesInput = {
|
|
|
8221
8454
|
/** Sorting options. */
|
|
8222
8455
|
sorting?: InputMaybe<AuthenticationScopeSortInput>;
|
|
8223
8456
|
};
|
|
8457
|
+
/** Input for filtering authentication secrets on provided fields. */
|
|
8458
|
+
type FindManyAuthenticationSecretsFilter = {
|
|
8459
|
+
/** The query connector */
|
|
8460
|
+
connector?: InputMaybe<FilteringConnector>;
|
|
8461
|
+
/** The field to filter on. */
|
|
8462
|
+
field: AuthenticationSecretFilteringField;
|
|
8463
|
+
/** The filter mode. */
|
|
8464
|
+
mode?: InputMaybe<FilteringMode>;
|
|
8465
|
+
/** The filter type. */
|
|
8466
|
+
type?: InputMaybe<FilteringType>;
|
|
8467
|
+
/** The value to filter on. */
|
|
8468
|
+
value: Scalars['FilteringValue']['input'];
|
|
8469
|
+
};
|
|
8470
|
+
/** Input for filtering many authentication secrets on filters, pagination and sorting. */
|
|
8471
|
+
type FindManyAuthenticationSecretsInput = {
|
|
8472
|
+
/** Filtering options. */
|
|
8473
|
+
filtering?: InputMaybe<Array<FindManyAuthenticationSecretsFilter>>;
|
|
8474
|
+
/** Pagination options. */
|
|
8475
|
+
pagination?: InputMaybe<PaginationInput>;
|
|
8476
|
+
/** Sorting options. */
|
|
8477
|
+
sorting?: InputMaybe<AuthenticationSecretSortInput>;
|
|
8478
|
+
};
|
|
8224
8479
|
/** Input for filtering flow authentication on provided fields. */
|
|
8225
8480
|
type FindManyAuthenticationsFilter = {
|
|
8226
8481
|
/** The query connector */
|
|
@@ -9311,6 +9566,28 @@ type FindManyDisclosureProvidersInput = {
|
|
|
9311
9566
|
/** Sorting options. */
|
|
9312
9567
|
sorting?: InputMaybe<DisclosureProviderSortInput>;
|
|
9313
9568
|
};
|
|
9569
|
+
/** Input for filtering disclosure secrets on provided fields. */
|
|
9570
|
+
type FindManyDisclosureSecretsFilter = {
|
|
9571
|
+
/** The query connector */
|
|
9572
|
+
connector?: InputMaybe<FilteringConnector>;
|
|
9573
|
+
/** The field to filter on. */
|
|
9574
|
+
field: DisclosureSecretFilteringField;
|
|
9575
|
+
/** The filter mode. */
|
|
9576
|
+
mode?: InputMaybe<FilteringMode>;
|
|
9577
|
+
/** The filter type. */
|
|
9578
|
+
type?: InputMaybe<FilteringType>;
|
|
9579
|
+
/** The value to filter on. */
|
|
9580
|
+
value: Scalars['FilteringValue']['input'];
|
|
9581
|
+
};
|
|
9582
|
+
/** Input for filtering many disclosure secrets on filters, pagination and sorting. */
|
|
9583
|
+
type FindManyDisclosureSecretsInput = {
|
|
9584
|
+
/** Filtering options. */
|
|
9585
|
+
filtering?: InputMaybe<Array<FindManyDisclosureSecretsFilter>>;
|
|
9586
|
+
/** Pagination options. */
|
|
9587
|
+
pagination?: InputMaybe<PaginationInput>;
|
|
9588
|
+
/** Sorting options. */
|
|
9589
|
+
sorting?: InputMaybe<DisclosureSecretSortInput>;
|
|
9590
|
+
};
|
|
9314
9591
|
/** Input for filtering flow disclosure on provided fields. */
|
|
9315
9592
|
type FindManyDisclosuresFilter = {
|
|
9316
9593
|
/** The query connector */
|
|
@@ -9452,6 +9729,28 @@ type FindManyIssuanceCredentialMetaInput = {
|
|
|
9452
9729
|
/** Sorting options. */
|
|
9453
9730
|
sorting?: InputMaybe<IssuanceCredentialMetaSortInput>;
|
|
9454
9731
|
};
|
|
9732
|
+
/** Input for filtering flow issuance credential meta oid4vc on provided fields. */
|
|
9733
|
+
type FindManyIssuanceCredentialMetaOid4vcFilter = {
|
|
9734
|
+
/** The query connector */
|
|
9735
|
+
connector?: InputMaybe<FilteringConnector>;
|
|
9736
|
+
/** The field to filter on. */
|
|
9737
|
+
field: IssuanceCredentialMetaOid4vcFilteringField;
|
|
9738
|
+
/** The filter mode. */
|
|
9739
|
+
mode?: InputMaybe<FilteringMode>;
|
|
9740
|
+
/** The filter type. */
|
|
9741
|
+
type?: InputMaybe<FilteringType>;
|
|
9742
|
+
/** The value to filter on. */
|
|
9743
|
+
value: Scalars['FilteringValue']['input'];
|
|
9744
|
+
};
|
|
9745
|
+
/** Input for filtering many credential meta oid4vc on filters, pagination and sorting. */
|
|
9746
|
+
type FindManyIssuanceCredentialMetaOid4vcInput = {
|
|
9747
|
+
/** Filtering options. */
|
|
9748
|
+
filtering?: InputMaybe<Array<FindManyIssuanceCredentialMetaOid4vcFilter>>;
|
|
9749
|
+
/** Pagination options. */
|
|
9750
|
+
pagination?: InputMaybe<PaginationInput>;
|
|
9751
|
+
/** Sorting options. */
|
|
9752
|
+
sorting?: InputMaybe<IssuanceCredentialMetaOid4vcSortInput>;
|
|
9753
|
+
};
|
|
9455
9754
|
/** Input for filtering flow issuance credential meta yivi on provided fields. */
|
|
9456
9755
|
type FindManyIssuanceCredentialMetaYiviFilter = {
|
|
9457
9756
|
/** The query connector */
|
|
@@ -9562,6 +9861,50 @@ type FindManyIssuanceMappingsInput = {
|
|
|
9562
9861
|
/** Sorting options. */
|
|
9563
9862
|
sorting?: InputMaybe<IssuanceMappingSortInput>;
|
|
9564
9863
|
};
|
|
9864
|
+
/** Input for filtering finding many IssuanceProviderConfigurationNLWallet. */
|
|
9865
|
+
type FindManyIssuanceProviderConfigurationNlWalletsFilter = {
|
|
9866
|
+
/** The query connector */
|
|
9867
|
+
connector?: InputMaybe<FilteringConnector>;
|
|
9868
|
+
/** The field to filter on. */
|
|
9869
|
+
field: IssuanceProviderConfigurationNlWalletFilteringField;
|
|
9870
|
+
/** The filter mode. */
|
|
9871
|
+
mode?: InputMaybe<FilteringMode>;
|
|
9872
|
+
/** The filter type. */
|
|
9873
|
+
type?: InputMaybe<FilteringType>;
|
|
9874
|
+
/** The value to filter on. */
|
|
9875
|
+
value: Scalars['FilteringValue']['input'];
|
|
9876
|
+
};
|
|
9877
|
+
/** Input for finding many IssuanceProviderConfigurationNLWallet. */
|
|
9878
|
+
type FindManyIssuanceProviderConfigurationNlWalletsInput = {
|
|
9879
|
+
/** Filtering options. */
|
|
9880
|
+
filtering?: InputMaybe<Array<FindManyIssuanceProviderConfigurationNlWalletsFilter>>;
|
|
9881
|
+
/** Pagination options. */
|
|
9882
|
+
pagination?: InputMaybe<PaginationInput>;
|
|
9883
|
+
/** Sorting options. */
|
|
9884
|
+
sorting?: InputMaybe<IssuanceProviderConfigurationNlWalletSortInput>;
|
|
9885
|
+
};
|
|
9886
|
+
/** Input for filtering IssuanceProviderConfiguration on provided fields. */
|
|
9887
|
+
type FindManyIssuanceProviderConfigurationsFilter = {
|
|
9888
|
+
/** The query connector */
|
|
9889
|
+
connector?: InputMaybe<FilteringConnector>;
|
|
9890
|
+
/** The field to filter on. */
|
|
9891
|
+
field: IssuanceProviderConfigurationFilteringField;
|
|
9892
|
+
/** The filter mode. */
|
|
9893
|
+
mode?: InputMaybe<FilteringMode>;
|
|
9894
|
+
/** The filter type. */
|
|
9895
|
+
type?: InputMaybe<FilteringType>;
|
|
9896
|
+
/** The value to filter on. */
|
|
9897
|
+
value: Scalars['FilteringValue']['input'];
|
|
9898
|
+
};
|
|
9899
|
+
/** Input for filtering many IssuanceProviderConfiguration on filters, pagination and sorting. */
|
|
9900
|
+
type FindManyIssuanceProviderConfigurationsInput = {
|
|
9901
|
+
/** Filtering options. */
|
|
9902
|
+
filtering?: InputMaybe<Array<FindManyIssuanceProviderConfigurationsFilter>>;
|
|
9903
|
+
/** Pagination options. */
|
|
9904
|
+
pagination?: InputMaybe<PaginationInput>;
|
|
9905
|
+
/** Sorting options. */
|
|
9906
|
+
sorting?: InputMaybe<IssuanceProviderConfigurationSortInput>;
|
|
9907
|
+
};
|
|
9565
9908
|
/** Input for filtering flow issuance provider on provided fields. */
|
|
9566
9909
|
type FindManyIssuanceProvidersFilter = {
|
|
9567
9910
|
/** The query connector */
|
|
@@ -9584,6 +9927,28 @@ type FindManyIssuanceProvidersInput = {
|
|
|
9584
9927
|
/** Sorting options. */
|
|
9585
9928
|
sorting?: InputMaybe<IssuanceProviderSortInput>;
|
|
9586
9929
|
};
|
|
9930
|
+
/** Input for filtering issuance secrets on provided fields. */
|
|
9931
|
+
type FindManyIssuanceSecretsFilter = {
|
|
9932
|
+
/** The query connector */
|
|
9933
|
+
connector?: InputMaybe<FilteringConnector>;
|
|
9934
|
+
/** The field to filter on. */
|
|
9935
|
+
field: IssuanceSecretFilteringField;
|
|
9936
|
+
/** The filter mode. */
|
|
9937
|
+
mode?: InputMaybe<FilteringMode>;
|
|
9938
|
+
/** The filter type. */
|
|
9939
|
+
type?: InputMaybe<FilteringType>;
|
|
9940
|
+
/** The value to filter on. */
|
|
9941
|
+
value: Scalars['FilteringValue']['input'];
|
|
9942
|
+
};
|
|
9943
|
+
/** Input for filtering many issuance secrets on filters, pagination and sorting. */
|
|
9944
|
+
type FindManyIssuanceSecretsInput = {
|
|
9945
|
+
/** Filtering options. */
|
|
9946
|
+
filtering?: InputMaybe<Array<FindManyIssuanceSecretsFilter>>;
|
|
9947
|
+
/** Pagination options. */
|
|
9948
|
+
pagination?: InputMaybe<PaginationInput>;
|
|
9949
|
+
/** Sorting options. */
|
|
9950
|
+
sorting?: InputMaybe<IssuanceSecretSortInput>;
|
|
9951
|
+
};
|
|
9587
9952
|
/** Input for filtering flow issuance on provided fields. */
|
|
9588
9953
|
type FindManyIssuancesFilter = {
|
|
9589
9954
|
/** The query connector */
|
|
@@ -9747,6 +10112,28 @@ type FindManyIssuerMetaOid4VcmdocInput = {
|
|
|
9747
10112
|
/** Sorting options. */
|
|
9748
10113
|
sorting?: InputMaybe<IssuerMetaOid4VcmdocSortInput>;
|
|
9749
10114
|
};
|
|
10115
|
+
/** Input for filtering issuer meta OID4VC MDOC key profiles on provided fields. */
|
|
10116
|
+
type FindManyIssuerMetaOid4VcMdocKeyProfileFilter = {
|
|
10117
|
+
/** The query connector */
|
|
10118
|
+
connector?: InputMaybe<FilteringConnector>;
|
|
10119
|
+
/** The field to filter on. */
|
|
10120
|
+
field: IssuerMetaOid4VcMdocKeyProfileFilteringField;
|
|
10121
|
+
/** The filter mode. */
|
|
10122
|
+
mode?: InputMaybe<FilteringMode>;
|
|
10123
|
+
/** The filter type. */
|
|
10124
|
+
type?: InputMaybe<FilteringType>;
|
|
10125
|
+
/** The value to filter on. */
|
|
10126
|
+
value: Scalars['FilteringValue']['input'];
|
|
10127
|
+
};
|
|
10128
|
+
/** Input for filtering many issuer meta OID4VC MDOC key profiles on filters, pagination and sorting. */
|
|
10129
|
+
type FindManyIssuerMetaOid4VcMdocKeyProfileInput = {
|
|
10130
|
+
/** Filtering options. */
|
|
10131
|
+
filtering?: InputMaybe<Array<FindManyIssuerMetaOid4VcMdocKeyProfileFilter>>;
|
|
10132
|
+
/** Pagination options. */
|
|
10133
|
+
pagination?: InputMaybe<PaginationInput>;
|
|
10134
|
+
/** Sorting options. */
|
|
10135
|
+
sorting?: InputMaybe<IssuerMetaOid4VcMdocKeyProfileSortInput>;
|
|
10136
|
+
};
|
|
9750
10137
|
/** Input for filtering issuer meta OID4VC on provided fields. */
|
|
9751
10138
|
type FindManyIssuerMetaOid4VcsdjwtFilter = {
|
|
9752
10139
|
/** The query connector */
|
|
@@ -9769,6 +10156,28 @@ type FindManyIssuerMetaOid4VcsdjwtInput = {
|
|
|
9769
10156
|
/** Sorting options. */
|
|
9770
10157
|
sorting?: InputMaybe<IssuerMetaOid4VcsdjwtSortInput>;
|
|
9771
10158
|
};
|
|
10159
|
+
/** Input for filtering issuer meta OID4VC SD-JWT key profiles on provided fields. */
|
|
10160
|
+
type FindManyIssuerMetaOid4VcSdJwtKeyProfileFilter = {
|
|
10161
|
+
/** The query connector */
|
|
10162
|
+
connector?: InputMaybe<FilteringConnector>;
|
|
10163
|
+
/** The field to filter on. */
|
|
10164
|
+
field: IssuerMetaOid4VcSdJwtKeyProfileFilteringField;
|
|
10165
|
+
/** The filter mode. */
|
|
10166
|
+
mode?: InputMaybe<FilteringMode>;
|
|
10167
|
+
/** The filter type. */
|
|
10168
|
+
type?: InputMaybe<FilteringType>;
|
|
10169
|
+
/** The value to filter on. */
|
|
10170
|
+
value: Scalars['FilteringValue']['input'];
|
|
10171
|
+
};
|
|
10172
|
+
/** Input for filtering many issuer meta OID4VC SD-JWT key profiles on filters, pagination and sorting. */
|
|
10173
|
+
type FindManyIssuerMetaOid4VcSdJwtKeyProfileInput = {
|
|
10174
|
+
/** Filtering options. */
|
|
10175
|
+
filtering?: InputMaybe<Array<FindManyIssuerMetaOid4VcSdJwtKeyProfileFilter>>;
|
|
10176
|
+
/** Pagination options. */
|
|
10177
|
+
pagination?: InputMaybe<PaginationInput>;
|
|
10178
|
+
/** Sorting options. */
|
|
10179
|
+
sorting?: InputMaybe<IssuerMetaOid4VcSdJwtKeyProfileSortInput>;
|
|
10180
|
+
};
|
|
9772
10181
|
/** Input for filtering issuer meta yivi on provided fields. */
|
|
9773
10182
|
type FindManyIssuerMetaYiviFilter = {
|
|
9774
10183
|
/** The query connector */
|
|
@@ -9912,6 +10321,28 @@ type FindManyMappingIssuanceAttributesInput = {
|
|
|
9912
10321
|
/** Sorting options. */
|
|
9913
10322
|
sorting?: InputMaybe<MappingIssuanceAttributeSortInput>;
|
|
9914
10323
|
};
|
|
10324
|
+
/** Input for filtering mappingIssuance claim on provided fields. */
|
|
10325
|
+
type FindManyMappingIssuanceClaimsFilter = {
|
|
10326
|
+
/** The query connector */
|
|
10327
|
+
connector?: InputMaybe<FilteringConnector>;
|
|
10328
|
+
/** The field to filter on. */
|
|
10329
|
+
field: MappingIssuanceClaimFilteringField;
|
|
10330
|
+
/** The filter mode. */
|
|
10331
|
+
mode?: InputMaybe<FilteringMode>;
|
|
10332
|
+
/** The filter type. */
|
|
10333
|
+
type?: InputMaybe<FilteringType>;
|
|
10334
|
+
/** The value to filter on. */
|
|
10335
|
+
value: Scalars['FilteringValue']['input'];
|
|
10336
|
+
};
|
|
10337
|
+
/** Input for filtering many mappingIssuance claims on filters, pagination and sorting. */
|
|
10338
|
+
type FindManyMappingIssuanceClaimsInput = {
|
|
10339
|
+
/** Filtering options. */
|
|
10340
|
+
filtering?: InputMaybe<Array<FindManyMappingIssuanceClaimsFilter>>;
|
|
10341
|
+
/** Pagination options. */
|
|
10342
|
+
pagination?: InputMaybe<PaginationInput>;
|
|
10343
|
+
/** Sorting options. */
|
|
10344
|
+
sorting?: InputMaybe<MappingIssuanceClaimSortInput>;
|
|
10345
|
+
};
|
|
9915
10346
|
/** Input for filtering mappingIssuance link on provided fields. */
|
|
9916
10347
|
type FindManyMappingIssuanceLinksFilter = {
|
|
9917
10348
|
/** The query connector */
|
|
@@ -11471,6 +11902,28 @@ type FindManySignatureProvidersInput = {
|
|
|
11471
11902
|
/** Sorting options. */
|
|
11472
11903
|
sorting?: InputMaybe<SignatureProviderSortInput>;
|
|
11473
11904
|
};
|
|
11905
|
+
/** Input for filtering signature secrets on provided fields. */
|
|
11906
|
+
type FindManySignatureSecretsFilter = {
|
|
11907
|
+
/** The query connector */
|
|
11908
|
+
connector?: InputMaybe<FilteringConnector>;
|
|
11909
|
+
/** The field to filter on. */
|
|
11910
|
+
field: SignatureSecretFilteringField;
|
|
11911
|
+
/** The filter mode. */
|
|
11912
|
+
mode?: InputMaybe<FilteringMode>;
|
|
11913
|
+
/** The filter type. */
|
|
11914
|
+
type?: InputMaybe<FilteringType>;
|
|
11915
|
+
/** The value to filter on. */
|
|
11916
|
+
value: Scalars['FilteringValue']['input'];
|
|
11917
|
+
};
|
|
11918
|
+
/** Input for filtering many signature secrets on filters, pagination and sorting. */
|
|
11919
|
+
type FindManySignatureSecretsInput = {
|
|
11920
|
+
/** Filtering options. */
|
|
11921
|
+
filtering?: InputMaybe<Array<FindManySignatureSecretsFilter>>;
|
|
11922
|
+
/** Pagination options. */
|
|
11923
|
+
pagination?: InputMaybe<PaginationInput>;
|
|
11924
|
+
/** Sorting options. */
|
|
11925
|
+
sorting?: InputMaybe<SignatureSecretSortInput>;
|
|
11926
|
+
};
|
|
11474
11927
|
/** Input for filtering flow signature on provided fields. */
|
|
11475
11928
|
type FindManySignaturesFilter = {
|
|
11476
11929
|
/** The query connector */
|
|
@@ -11694,6 +12147,8 @@ type Issuance = Model & {
|
|
|
11694
12147
|
__typename?: 'Issuance';
|
|
11695
12148
|
/** The creation timestamp. */
|
|
11696
12149
|
createdAt: Scalars['DateTime']['output'];
|
|
12150
|
+
/** The data deletion policy. */
|
|
12151
|
+
deletionPolicy?: Maybe<Scalars['String']['output']>;
|
|
11697
12152
|
/** The associated brands with this issuance */
|
|
11698
12153
|
issuanceBrands: IssuanceBrandConnection;
|
|
11699
12154
|
/** The associated domains with this issuance */
|
|
@@ -11704,6 +12159,8 @@ type Issuance = Model & {
|
|
|
11704
12159
|
issuanceMappings: IssuanceMappingConnection;
|
|
11705
12160
|
/** A list of flow providers belonging to this flow issuance. */
|
|
11706
12161
|
issuanceProviders: IssuanceProviderConnection;
|
|
12162
|
+
/** The associated secrets with this issuance */
|
|
12163
|
+
issuanceSecrets: IssuanceSecretConnection;
|
|
11707
12164
|
/** The JWT media type */
|
|
11708
12165
|
jwtMediaType: Scalars['JwtMediaType']['output'];
|
|
11709
12166
|
/** The meta of the flow. */
|
|
@@ -11712,8 +12169,14 @@ type Issuance = Model & {
|
|
|
11712
12169
|
name: Scalars['NonEmpty']['output'];
|
|
11713
12170
|
/** The organization the flow belongs to. */
|
|
11714
12171
|
organization: Organization;
|
|
12172
|
+
/** The purpose statement describing why attributes are being attested. */
|
|
12173
|
+
purposeStatement?: Maybe<Scalars['String']['output']>;
|
|
11715
12174
|
/** The indicator if explicit consent is required */
|
|
11716
12175
|
requireExplicitConsent: Scalars['Boolean']['output'];
|
|
12176
|
+
/** The data retention policy. */
|
|
12177
|
+
retentionPolicy?: Maybe<Scalars['String']['output']>;
|
|
12178
|
+
/** The data sharing policy. */
|
|
12179
|
+
sharingPolicy?: Maybe<Scalars['String']['output']>;
|
|
11717
12180
|
/** The state of the flow. */
|
|
11718
12181
|
state: IssuanceState;
|
|
11719
12182
|
/** Shortcut to active studio controls associated to this object */
|
|
@@ -11743,6 +12206,10 @@ type IssuanceIssuanceMappingsArgs = {
|
|
|
11743
12206
|
type IssuanceIssuanceProvidersArgs = {
|
|
11744
12207
|
input?: InputMaybe<FindManyIssuanceProvidersInput>;
|
|
11745
12208
|
};
|
|
12209
|
+
/** Flow issuance definition. */
|
|
12210
|
+
type IssuanceIssuanceSecretsArgs = {
|
|
12211
|
+
input?: InputMaybe<FindManyIssuanceSecretsInput>;
|
|
12212
|
+
};
|
|
11746
12213
|
/** IssuanceAction */
|
|
11747
12214
|
declare enum IssuanceAction {
|
|
11748
12215
|
Activate = "ACTIVATE",
|
|
@@ -11965,6 +12432,8 @@ type IssuanceCredentialMeta = Model & {
|
|
|
11965
12432
|
datakeeper?: Maybe<IssuanceCredentialMetaDatakeeper>;
|
|
11966
12433
|
/** The flow issuance credential the meta belongs to. */
|
|
11967
12434
|
issuanceCredential: IssuanceCredential;
|
|
12435
|
+
/** The oid4vc credential meta */
|
|
12436
|
+
oid4vc?: Maybe<IssuanceCredentialMetaOid4vc>;
|
|
11968
12437
|
/** The update time */
|
|
11969
12438
|
updatedAt: Scalars['DateTime']['output'];
|
|
11970
12439
|
/** The UUID */
|
|
@@ -11983,7 +12452,7 @@ type IssuanceCredentialMetaDatakeeper = Model & {
|
|
|
11983
12452
|
__typename?: 'IssuanceCredentialMetaDatakeeper';
|
|
11984
12453
|
/** The creation time */
|
|
11985
12454
|
createdAt: Scalars['DateTime']['output'];
|
|
11986
|
-
/** The expiration duration, in
|
|
12455
|
+
/** The expiration duration, in seconds */
|
|
11987
12456
|
expirationDuration: Scalars['Int']['output'];
|
|
11988
12457
|
/** The flow issuance credential meta the datakeeper meta belongs to. */
|
|
11989
12458
|
issuanceCredentialMeta: IssuanceCredentialMeta;
|
|
@@ -12030,13 +12499,54 @@ type IssuanceCredentialMetaEdge = {
|
|
|
12030
12499
|
declare enum IssuanceCredentialMetaFilteringField {
|
|
12031
12500
|
IssuanceCredentialUuid = "issuanceCredentialUuid"
|
|
12032
12501
|
}
|
|
12033
|
-
/**
|
|
12034
|
-
|
|
12035
|
-
|
|
12036
|
-
|
|
12037
|
-
|
|
12038
|
-
|
|
12039
|
-
|
|
12502
|
+
/** Flow issuance credential meta oid4vc definition. */
|
|
12503
|
+
type IssuanceCredentialMetaOid4vc = Model & {
|
|
12504
|
+
__typename?: 'IssuanceCredentialMetaOid4vc';
|
|
12505
|
+
/** The creation time */
|
|
12506
|
+
createdAt: Scalars['DateTime']['output'];
|
|
12507
|
+
/** The expiration duration, in seconds */
|
|
12508
|
+
expirationDuration: Scalars['Int']['output'];
|
|
12509
|
+
/** The flow issuance credential meta the oid4vc meta belongs to. */
|
|
12510
|
+
issuanceCredentialMeta: IssuanceCredentialMeta;
|
|
12511
|
+
/** The update time */
|
|
12512
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
12513
|
+
/** The UUID */
|
|
12514
|
+
uuid: Scalars['UUID']['output'];
|
|
12515
|
+
};
|
|
12516
|
+
/** The flow credential meta oid4vc connection definition. */
|
|
12517
|
+
type IssuanceCredentialMetaOid4vcConnection = {
|
|
12518
|
+
__typename?: 'IssuanceCredentialMetaOid4vcConnection';
|
|
12519
|
+
edges: Array<Maybe<IssuanceCredentialMetaOid4vcEdge>>;
|
|
12520
|
+
pageInfo: PageInfo;
|
|
12521
|
+
};
|
|
12522
|
+
/** The flow credential meta oid4vc edge definition. */
|
|
12523
|
+
type IssuanceCredentialMetaOid4vcEdge = {
|
|
12524
|
+
__typename?: 'IssuanceCredentialMetaOid4vcEdge';
|
|
12525
|
+
cursor: Scalars['String']['output'];
|
|
12526
|
+
node: IssuanceCredentialMetaOid4vc;
|
|
12527
|
+
};
|
|
12528
|
+
/** Fields which can be used to filter flow issuance credential meta oid4vc on. Value must be camel case. */
|
|
12529
|
+
declare enum IssuanceCredentialMetaOid4vcFilteringField {
|
|
12530
|
+
IssuanceCredentialMetaUuid = "issuanceCredentialMetaUuid"
|
|
12531
|
+
}
|
|
12532
|
+
/** Fields which can be used to sort flow issuance credential meta oid4vc on. Value must be camel case. */
|
|
12533
|
+
declare enum IssuanceCredentialMetaOid4vcSortEnum {
|
|
12534
|
+
CreatedAt = "createdAt"
|
|
12535
|
+
}
|
|
12536
|
+
/** Input options for sorting flow issuance credential meta oid4vc. */
|
|
12537
|
+
type IssuanceCredentialMetaOid4vcSortInput = {
|
|
12538
|
+
/** The direction to sort on. */
|
|
12539
|
+
direction: OrderDirection;
|
|
12540
|
+
/** The field to sort on. */
|
|
12541
|
+
field: IssuanceCredentialMetaOid4vcSortEnum;
|
|
12542
|
+
};
|
|
12543
|
+
/** Fields which can be used to sort flow issuance credential meta on. Value must be camel case. */
|
|
12544
|
+
declare enum IssuanceCredentialMetaSortEnum {
|
|
12545
|
+
CreatedAt = "createdAt"
|
|
12546
|
+
}
|
|
12547
|
+
/** Input options for sorting flow issuance credential meta. */
|
|
12548
|
+
type IssuanceCredentialMetaSortInput = {
|
|
12549
|
+
/** The direction to sort on. */
|
|
12040
12550
|
direction: OrderDirection;
|
|
12041
12551
|
/** The field to sort on. */
|
|
12042
12552
|
field: IssuanceCredentialMetaSortEnum;
|
|
@@ -12045,6 +12555,7 @@ type IssuanceCredentialMetaSortInput = {
|
|
|
12045
12555
|
declare enum IssuanceCredentialMetaType {
|
|
12046
12556
|
Datakeeper = "DATAKEEPER",
|
|
12047
12557
|
None = "NONE",
|
|
12558
|
+
Oid4Vc = "OID4VC",
|
|
12048
12559
|
Yivi = "YIVI"
|
|
12049
12560
|
}
|
|
12050
12561
|
/** Flow issuance credential meta datakapeer definition. */
|
|
@@ -12052,7 +12563,7 @@ type IssuanceCredentialMetaYivi = Model & {
|
|
|
12052
12563
|
__typename?: 'IssuanceCredentialMetaYivi';
|
|
12053
12564
|
/** The creation time */
|
|
12054
12565
|
createdAt: Scalars['DateTime']['output'];
|
|
12055
|
-
/** The expiration duration, in
|
|
12566
|
+
/** The expiration duration, in seconds */
|
|
12056
12567
|
expirationDuration: Scalars['Int']['output'];
|
|
12057
12568
|
/** The flow issuance credential meta the yivi meta belongs to. */
|
|
12058
12569
|
issuanceCredentialMeta: IssuanceCredentialMeta;
|
|
@@ -12277,6 +12788,10 @@ type IssuanceNestedFilteringIssuanceLabelField = {
|
|
|
12277
12788
|
/** Flow issuance provider definition. */
|
|
12278
12789
|
type IssuanceProvider = Model & {
|
|
12279
12790
|
__typename?: 'IssuanceProvider';
|
|
12791
|
+
/** The flow issuance provider configuration. */
|
|
12792
|
+
configuration?: Maybe<IssuanceProviderConfiguration>;
|
|
12793
|
+
/** The configuration type for this provider. */
|
|
12794
|
+
configurationType?: Maybe<IssuanceProviderConfigurationType>;
|
|
12280
12795
|
/** The creation timestamp. */
|
|
12281
12796
|
createdAt: Scalars['DateTime']['output'];
|
|
12282
12797
|
/** The flow issuance the flow provider belongs to. */
|
|
@@ -12298,6 +12813,92 @@ type IssuanceProvider = Model & {
|
|
|
12298
12813
|
type IssuanceProviderIssuanceCredentialsArgs = {
|
|
12299
12814
|
input?: InputMaybe<FindManyIssuanceCredentialsInput>;
|
|
12300
12815
|
};
|
|
12816
|
+
/** Flow issuance provider configuration definition */
|
|
12817
|
+
type IssuanceProviderConfiguration = Model & {
|
|
12818
|
+
__typename?: 'IssuanceProviderConfiguration';
|
|
12819
|
+
/** The creation time */
|
|
12820
|
+
createdAt: Scalars['DateTime']['output'];
|
|
12821
|
+
/** The IssuanceProvider this configuration belongs to */
|
|
12822
|
+
issuanceProvider: IssuanceProvider;
|
|
12823
|
+
/** The NL Wallet flow issuance provider configuration */
|
|
12824
|
+
nlWallet?: Maybe<IssuanceProviderConfigurationNlWallet>;
|
|
12825
|
+
/** The update time */
|
|
12826
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
12827
|
+
/** The UUID */
|
|
12828
|
+
uuid: Scalars['UUID']['output'];
|
|
12829
|
+
};
|
|
12830
|
+
/** The IssuanceProviderConfiguration connection definition. */
|
|
12831
|
+
type IssuanceProviderConfigurationConnection = {
|
|
12832
|
+
__typename?: 'IssuanceProviderConfigurationConnection';
|
|
12833
|
+
edges: Array<Maybe<IssuanceProviderConfigurationEdge>>;
|
|
12834
|
+
pageInfo: PageInfo;
|
|
12835
|
+
};
|
|
12836
|
+
/** The IssuanceProviderConfiguration edge definition. */
|
|
12837
|
+
type IssuanceProviderConfigurationEdge = {
|
|
12838
|
+
__typename?: 'IssuanceProviderConfigurationEdge';
|
|
12839
|
+
cursor: Scalars['String']['output'];
|
|
12840
|
+
node: IssuanceProviderConfiguration;
|
|
12841
|
+
};
|
|
12842
|
+
/** Fields which can be used to filter IssuanceProviderConfiguration on. Value must be camel case. */
|
|
12843
|
+
declare enum IssuanceProviderConfigurationFilteringField {
|
|
12844
|
+
IssuanceProviderUuid = "issuanceProviderUuid"
|
|
12845
|
+
}
|
|
12846
|
+
/** IssuanceProviderConfigurationNLWallet definition */
|
|
12847
|
+
type IssuanceProviderConfigurationNlWallet = Model & {
|
|
12848
|
+
__typename?: 'IssuanceProviderConfigurationNLWallet';
|
|
12849
|
+
/** The attribute UUIDs that must be disclosed before issuance */
|
|
12850
|
+
attributeUuids: Array<Scalars['UUID']['output']>;
|
|
12851
|
+
/** The creation timestamp */
|
|
12852
|
+
createdAt: Scalars['DateTime']['output'];
|
|
12853
|
+
/** The IssuanceProviderConfiguration this object belongs to. */
|
|
12854
|
+
issuanceProviderConfiguration: IssuanceProviderConfiguration;
|
|
12855
|
+
/** The timestamp of when the type has been last updated */
|
|
12856
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
12857
|
+
/** The UUID */
|
|
12858
|
+
uuid: Scalars['UUID']['output'];
|
|
12859
|
+
};
|
|
12860
|
+
/** The IssuanceProviderConfigurationNLWallet connection definition. */
|
|
12861
|
+
type IssuanceProviderConfigurationNlWalletConnection = {
|
|
12862
|
+
__typename?: 'IssuanceProviderConfigurationNLWalletConnection';
|
|
12863
|
+
edges: Array<Maybe<IssuanceProviderConfigurationNlWalletEdge>>;
|
|
12864
|
+
pageInfo: PageInfo;
|
|
12865
|
+
};
|
|
12866
|
+
/** The IssuanceProviderConfigurationNLWallet edge definition. */
|
|
12867
|
+
type IssuanceProviderConfigurationNlWalletEdge = {
|
|
12868
|
+
__typename?: 'IssuanceProviderConfigurationNLWalletEdge';
|
|
12869
|
+
cursor: Scalars['String']['output'];
|
|
12870
|
+
node: IssuanceProviderConfigurationNlWallet;
|
|
12871
|
+
};
|
|
12872
|
+
/** Fields which can be used to filter IssuanceProviderConfigurationNLWallet on. Value must be camel case. */
|
|
12873
|
+
declare enum IssuanceProviderConfigurationNlWalletFilteringField {
|
|
12874
|
+
IssuanceProviderConfigurationUuid = "issuanceProviderConfigurationUuid"
|
|
12875
|
+
}
|
|
12876
|
+
/** Fields which can be used to sort IssuanceProviderConfigurationNLWallet on. Value must be camel case. */
|
|
12877
|
+
declare enum IssuanceProviderConfigurationNlWalletSortEnum {
|
|
12878
|
+
CreatedAt = "createdAt"
|
|
12879
|
+
}
|
|
12880
|
+
/** Input options for sorting IssuanceProviderConfigurationNLWallet. */
|
|
12881
|
+
type IssuanceProviderConfigurationNlWalletSortInput = {
|
|
12882
|
+
/** The direction to sort on. */
|
|
12883
|
+
direction: OrderDirection;
|
|
12884
|
+
/** The field to sort on. */
|
|
12885
|
+
field: IssuanceProviderConfigurationNlWalletSortEnum;
|
|
12886
|
+
};
|
|
12887
|
+
/** Fields which can be used to sort IssuanceProviderConfiguration on. Value must be camel case. */
|
|
12888
|
+
declare enum IssuanceProviderConfigurationSortEnum {
|
|
12889
|
+
CreatedAt = "createdAt"
|
|
12890
|
+
}
|
|
12891
|
+
/** Input options for sorting IssuanceProviderConfiguration. */
|
|
12892
|
+
type IssuanceProviderConfigurationSortInput = {
|
|
12893
|
+
/** The direction to sort on. */
|
|
12894
|
+
direction: OrderDirection;
|
|
12895
|
+
/** The field to sort on. */
|
|
12896
|
+
field: IssuanceProviderConfigurationSortEnum;
|
|
12897
|
+
};
|
|
12898
|
+
/** The issuance provider configuration type. */
|
|
12899
|
+
declare enum IssuanceProviderConfigurationType {
|
|
12900
|
+
NlWallet = "NL_WALLET"
|
|
12901
|
+
}
|
|
12301
12902
|
/** The flow issuance provider connection definition. */
|
|
12302
12903
|
type IssuanceProviderConnection = {
|
|
12303
12904
|
__typename?: 'IssuanceProviderConnection';
|
|
@@ -12329,6 +12930,50 @@ type IssuanceProviderSortInput = {
|
|
|
12329
12930
|
/** The field to sort on. */
|
|
12330
12931
|
field: IssuanceProviderSortEnum;
|
|
12331
12932
|
};
|
|
12933
|
+
/** Issuance secret definition. Links an organization secret to an issuance flow. */
|
|
12934
|
+
type IssuanceSecret = Model & {
|
|
12935
|
+
__typename?: 'IssuanceSecret';
|
|
12936
|
+
/** The creation time */
|
|
12937
|
+
createdAt: Scalars['DateTime']['output'];
|
|
12938
|
+
/** The flow issuance */
|
|
12939
|
+
issuance: Issuance;
|
|
12940
|
+
/** The organization secret */
|
|
12941
|
+
organizationSecret: OrganizationSecret;
|
|
12942
|
+
/** The update time */
|
|
12943
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
12944
|
+
/** The UUID */
|
|
12945
|
+
uuid: Scalars['UUID']['output'];
|
|
12946
|
+
};
|
|
12947
|
+
/** A connection */
|
|
12948
|
+
type IssuanceSecretConnection = {
|
|
12949
|
+
__typename?: 'IssuanceSecretConnection';
|
|
12950
|
+
edges: Array<IssuanceSecretEdge>;
|
|
12951
|
+
pageInfo: PageInfo;
|
|
12952
|
+
};
|
|
12953
|
+
/** An edge */
|
|
12954
|
+
type IssuanceSecretEdge = {
|
|
12955
|
+
__typename?: 'IssuanceSecretEdge';
|
|
12956
|
+
cursor: Scalars['String']['output'];
|
|
12957
|
+
node: IssuanceSecret;
|
|
12958
|
+
};
|
|
12959
|
+
/** Fields which can be used to filter issuance secrets on. Value must be camel case. */
|
|
12960
|
+
declare enum IssuanceSecretFilteringField {
|
|
12961
|
+
IssuanceUuid = "issuanceUuid",
|
|
12962
|
+
OrganizationSecretUuid = "organizationSecretUuid",
|
|
12963
|
+
Uuid = "uuid"
|
|
12964
|
+
}
|
|
12965
|
+
/** Fields which can be used to sort issuance secrets on. Value must be camel case. */
|
|
12966
|
+
declare enum IssuanceSecretSortEnum {
|
|
12967
|
+
CreatedAt = "createdAt",
|
|
12968
|
+
UpdatedAt = "updatedAt"
|
|
12969
|
+
}
|
|
12970
|
+
/** Input options for sorting issuance secrets. */
|
|
12971
|
+
type IssuanceSecretSortInput = {
|
|
12972
|
+
/** The direction to sort on. */
|
|
12973
|
+
direction: OrderDirection;
|
|
12974
|
+
/** The field to sort on. */
|
|
12975
|
+
field: IssuanceSecretSortEnum;
|
|
12976
|
+
};
|
|
12332
12977
|
/** Fields which can be used to sort flow issuances on. Value must be camel case. */
|
|
12333
12978
|
declare enum IssuanceSortEnum {
|
|
12334
12979
|
CreatedAt = "createdAt",
|
|
@@ -12543,6 +13188,8 @@ type IssuerMetaDatakeeper = Model & {
|
|
|
12543
13188
|
did: Scalars['NonEmpty']['output'];
|
|
12544
13189
|
/** The issuer meta the datakeeper meta belongs to. */
|
|
12545
13190
|
issuerMeta: IssuerMeta;
|
|
13191
|
+
/** The issuer's logo image URI */
|
|
13192
|
+
logo?: Maybe<Scalars['String']['output']>;
|
|
12546
13193
|
/** The update time */
|
|
12547
13194
|
updatedAt: Scalars['DateTime']['output'];
|
|
12548
13195
|
/** The UUID */
|
|
@@ -12595,6 +13242,8 @@ type IssuerMetaMdoc = Model & {
|
|
|
12595
13242
|
issuerMeta: IssuerMeta;
|
|
12596
13243
|
/** The issuer's public key as a JWK */
|
|
12597
13244
|
jwk: Scalars['JSONObject']['output'];
|
|
13245
|
+
/** The issuer's logo image URI */
|
|
13246
|
+
logo?: Maybe<Scalars['String']['output']>;
|
|
12598
13247
|
/** The update time */
|
|
12599
13248
|
updatedAt: Scalars['DateTime']['output'];
|
|
12600
13249
|
/** The UUID */
|
|
@@ -12630,14 +13279,20 @@ type IssuerMetaMdocSortInput = {
|
|
|
12630
13279
|
/** Issuer meta definition. */
|
|
12631
13280
|
type IssuerMetaOid4Vcmdoc = Model & {
|
|
12632
13281
|
__typename?: 'IssuerMetaOID4VCMDOC';
|
|
13282
|
+
/** The certificate identifier in the secret store */
|
|
13283
|
+
certIdentifier?: Maybe<Scalars['String']['output']>;
|
|
12633
13284
|
/** The creation time */
|
|
12634
13285
|
createdAt: Scalars['DateTime']['output'];
|
|
12635
13286
|
/** The issuer meta the OID4VC meta belongs to. */
|
|
12636
13287
|
issuerMeta: IssuerMeta;
|
|
12637
13288
|
/** The issuer's public key as a JWK */
|
|
12638
13289
|
jwk: Scalars['JSONObject']['output'];
|
|
13290
|
+
/** Wallet-specific signing key profiles. */
|
|
13291
|
+
keyProfiles: Array<IssuerMetaOid4VcMdocKeyProfile>;
|
|
12639
13292
|
/** The issuer's logo image URI */
|
|
12640
13293
|
logo?: Maybe<Scalars['String']['output']>;
|
|
13294
|
+
/** The private key identifier in the secret store */
|
|
13295
|
+
privateKeyIdentifier?: Maybe<Scalars['String']['output']>;
|
|
12641
13296
|
/** The update time */
|
|
12642
13297
|
updatedAt: Scalars['DateTime']['output'];
|
|
12643
13298
|
/** The UUID */
|
|
@@ -12670,9 +13325,59 @@ type IssuerMetaOid4VcmdocSortInput = {
|
|
|
12670
13325
|
/** The field to sort on. */
|
|
12671
13326
|
field: IssuerMetaOid4VcmdocSortEnum;
|
|
12672
13327
|
};
|
|
13328
|
+
/** Issuer meta OID4VC MDOC key profile definition. */
|
|
13329
|
+
type IssuerMetaOid4VcMdocKeyProfile = Model & {
|
|
13330
|
+
__typename?: 'IssuerMetaOID4VCMdocKeyProfile';
|
|
13331
|
+
/** The certificate identifier in the secret store */
|
|
13332
|
+
certIdentifier: Scalars['NonEmpty']['output'];
|
|
13333
|
+
/** The creation time */
|
|
13334
|
+
createdAt: Scalars['DateTime']['output'];
|
|
13335
|
+
/** The parent issuer meta OID4VC MDOC. */
|
|
13336
|
+
issuerMetaOID4VCMdoc: IssuerMetaOid4Vcmdoc;
|
|
13337
|
+
/** The issuer's public key as a JWK */
|
|
13338
|
+
jwk: Scalars['JSONObject']['output'];
|
|
13339
|
+
/** The private key identifier in the secret store */
|
|
13340
|
+
privateKeyIdentifier: Scalars['NonEmpty']['output'];
|
|
13341
|
+
/** The provider app UUID this key profile is linked to */
|
|
13342
|
+
providerAppUuid: Scalars['UUID']['output'];
|
|
13343
|
+
/** The update time */
|
|
13344
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
13345
|
+
/** The UUID */
|
|
13346
|
+
uuid: Scalars['UUID']['output'];
|
|
13347
|
+
};
|
|
13348
|
+
/** The issuer meta OID4VC MDOC key profile connection definition. */
|
|
13349
|
+
type IssuerMetaOid4VcMdocKeyProfileConnection = {
|
|
13350
|
+
__typename?: 'IssuerMetaOID4VCMdocKeyProfileConnection';
|
|
13351
|
+
edges: Array<Maybe<IssuerMetaOid4VcMdocKeyProfileEdge>>;
|
|
13352
|
+
pageInfo: PageInfo;
|
|
13353
|
+
};
|
|
13354
|
+
/** The issuer meta OID4VC MDOC key profile edge definition. */
|
|
13355
|
+
type IssuerMetaOid4VcMdocKeyProfileEdge = {
|
|
13356
|
+
__typename?: 'IssuerMetaOID4VCMdocKeyProfileEdge';
|
|
13357
|
+
cursor: Scalars['String']['output'];
|
|
13358
|
+
node: IssuerMetaOid4VcMdocKeyProfile;
|
|
13359
|
+
};
|
|
13360
|
+
/** Fields which can be used to filter issuer meta OID4VC MDOC key profiles on. Value must be camel case. */
|
|
13361
|
+
declare enum IssuerMetaOid4VcMdocKeyProfileFilteringField {
|
|
13362
|
+
IssuerMetaOid4VcMdocUuid = "issuerMetaOID4VCMdocUuid",
|
|
13363
|
+
ProviderAppUuid = "providerAppUuid"
|
|
13364
|
+
}
|
|
13365
|
+
/** Fields which can be used to sort issuer meta OID4VC MDOC key profiles on. Value must be camel case. */
|
|
13366
|
+
declare enum IssuerMetaOid4VcMdocKeyProfileSortEnum {
|
|
13367
|
+
CreatedAt = "createdAt"
|
|
13368
|
+
}
|
|
13369
|
+
/** Input options for sorting issuer meta OID4VC MDOC key profiles. */
|
|
13370
|
+
type IssuerMetaOid4VcMdocKeyProfileSortInput = {
|
|
13371
|
+
/** The direction to sort on. */
|
|
13372
|
+
direction: OrderDirection;
|
|
13373
|
+
/** The field to sort on. */
|
|
13374
|
+
field: IssuerMetaOid4VcMdocKeyProfileSortEnum;
|
|
13375
|
+
};
|
|
12673
13376
|
/** Issuer meta definition. */
|
|
12674
13377
|
type IssuerMetaOid4Vcsdjwt = Model & {
|
|
12675
13378
|
__typename?: 'IssuerMetaOID4VCSDJWT';
|
|
13379
|
+
/** The certificate identifier in the secret store */
|
|
13380
|
+
certIdentifier?: Maybe<Scalars['String']['output']>;
|
|
12676
13381
|
/** The creation time */
|
|
12677
13382
|
createdAt: Scalars['DateTime']['output'];
|
|
12678
13383
|
/** The issuer's identifier (iss) */
|
|
@@ -12681,8 +13386,12 @@ type IssuerMetaOid4Vcsdjwt = Model & {
|
|
|
12681
13386
|
issuerMeta: IssuerMeta;
|
|
12682
13387
|
/** The issuer's public key as a JWK */
|
|
12683
13388
|
jwk: Scalars['JSONObject']['output'];
|
|
13389
|
+
/** Wallet-specific signing key profiles. */
|
|
13390
|
+
keyProfiles: Array<IssuerMetaOid4VcSdJwtKeyProfile>;
|
|
12684
13391
|
/** The issuer's logo image URI */
|
|
12685
13392
|
logo?: Maybe<Scalars['String']['output']>;
|
|
13393
|
+
/** The private key identifier in the secret store */
|
|
13394
|
+
privateKeyIdentifier?: Maybe<Scalars['String']['output']>;
|
|
12686
13395
|
/** The update time */
|
|
12687
13396
|
updatedAt: Scalars['DateTime']['output'];
|
|
12688
13397
|
/** The UUID */
|
|
@@ -12716,6 +13425,56 @@ type IssuerMetaOid4VcsdjwtSortInput = {
|
|
|
12716
13425
|
/** The field to sort on. */
|
|
12717
13426
|
field: IssuerMetaOid4VcsdjwtSortEnum;
|
|
12718
13427
|
};
|
|
13428
|
+
/** Issuer meta OID4VC SD-JWT key profile definition. */
|
|
13429
|
+
type IssuerMetaOid4VcSdJwtKeyProfile = Model & {
|
|
13430
|
+
__typename?: 'IssuerMetaOID4VCSdJwtKeyProfile';
|
|
13431
|
+
/** The certificate identifier in the secret store */
|
|
13432
|
+
certIdentifier: Scalars['NonEmpty']['output'];
|
|
13433
|
+
/** The creation time */
|
|
13434
|
+
createdAt: Scalars['DateTime']['output'];
|
|
13435
|
+
/** The issuer's identifier override (iss) */
|
|
13436
|
+
identifier?: Maybe<Scalars['String']['output']>;
|
|
13437
|
+
/** The parent issuer meta OID4VC SD-JWT. */
|
|
13438
|
+
issuerMetaOID4VCSdJwt: IssuerMetaOid4Vcsdjwt;
|
|
13439
|
+
/** The issuer's public key as a JWK */
|
|
13440
|
+
jwk: Scalars['JSONObject']['output'];
|
|
13441
|
+
/** The private key identifier in the secret store */
|
|
13442
|
+
privateKeyIdentifier: Scalars['NonEmpty']['output'];
|
|
13443
|
+
/** The provider app UUID this key profile is linked to */
|
|
13444
|
+
providerAppUuid: Scalars['UUID']['output'];
|
|
13445
|
+
/** The update time */
|
|
13446
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
13447
|
+
/** The UUID */
|
|
13448
|
+
uuid: Scalars['UUID']['output'];
|
|
13449
|
+
};
|
|
13450
|
+
/** The issuer meta OID4VC SD-JWT key profile connection definition. */
|
|
13451
|
+
type IssuerMetaOid4VcSdJwtKeyProfileConnection = {
|
|
13452
|
+
__typename?: 'IssuerMetaOID4VCSdJwtKeyProfileConnection';
|
|
13453
|
+
edges: Array<Maybe<IssuerMetaOid4VcSdJwtKeyProfileEdge>>;
|
|
13454
|
+
pageInfo: PageInfo;
|
|
13455
|
+
};
|
|
13456
|
+
/** The issuer meta OID4VC SD-JWT key profile edge definition. */
|
|
13457
|
+
type IssuerMetaOid4VcSdJwtKeyProfileEdge = {
|
|
13458
|
+
__typename?: 'IssuerMetaOID4VCSdJwtKeyProfileEdge';
|
|
13459
|
+
cursor: Scalars['String']['output'];
|
|
13460
|
+
node: IssuerMetaOid4VcSdJwtKeyProfile;
|
|
13461
|
+
};
|
|
13462
|
+
/** Fields which can be used to filter issuer meta OID4VC SD-JWT key profiles on. Value must be camel case. */
|
|
13463
|
+
declare enum IssuerMetaOid4VcSdJwtKeyProfileFilteringField {
|
|
13464
|
+
IssuerMetaOid4VcSdJwtUuid = "issuerMetaOID4VCSdJwtUuid",
|
|
13465
|
+
ProviderAppUuid = "providerAppUuid"
|
|
13466
|
+
}
|
|
13467
|
+
/** Fields which can be used to sort issuer meta OID4VC SD-JWT key profiles on. Value must be camel case. */
|
|
13468
|
+
declare enum IssuerMetaOid4VcSdJwtKeyProfileSortEnum {
|
|
13469
|
+
CreatedAt = "createdAt"
|
|
13470
|
+
}
|
|
13471
|
+
/** Input options for sorting issuer meta OID4VC SD-JWT key profiles. */
|
|
13472
|
+
type IssuerMetaOid4VcSdJwtKeyProfileSortInput = {
|
|
13473
|
+
/** The direction to sort on. */
|
|
13474
|
+
direction: OrderDirection;
|
|
13475
|
+
/** The field to sort on. */
|
|
13476
|
+
field: IssuerMetaOid4VcSdJwtKeyProfileSortEnum;
|
|
13477
|
+
};
|
|
12719
13478
|
/** Fields which can be used to sort issuer meta on. Value must be camel case. */
|
|
12720
13479
|
declare enum IssuerMetaSortEnum {
|
|
12721
13480
|
CreatedAt = "createdAt"
|
|
@@ -12745,6 +13504,8 @@ type IssuerMetaYivi = Model & {
|
|
|
12745
13504
|
id?: Maybe<Scalars['NonEmpty']['output']>;
|
|
12746
13505
|
/** The issuer meta the yivi meta belongs to. */
|
|
12747
13506
|
issuerMeta: IssuerMeta;
|
|
13507
|
+
/** The issuer's logo image URI */
|
|
13508
|
+
logo?: Maybe<Scalars['String']['output']>;
|
|
12748
13509
|
/** The update time */
|
|
12749
13510
|
updatedAt: Scalars['DateTime']['output'];
|
|
12750
13511
|
/** The UUID */
|
|
@@ -13101,8 +13862,6 @@ type MappingIssuance = Model & {
|
|
|
13101
13862
|
createdAt: Scalars['DateTime']['output'];
|
|
13102
13863
|
/** The associated issuance flow mappings. */
|
|
13103
13864
|
issuanceMappings: IssuanceMappingConnection;
|
|
13104
|
-
/** The issuance payload */
|
|
13105
|
-
issuancePayload: Scalars['JSONObject']['output'];
|
|
13106
13865
|
/** The collection of defined attributes. */
|
|
13107
13866
|
mappingIssuanceAttributes: MappingIssuanceAttributeConnection;
|
|
13108
13867
|
/** A list of links belonging to this mapping. */
|
|
@@ -13142,10 +13901,10 @@ type MappingIssuanceAttribute = Model & {
|
|
|
13142
13901
|
attribute: Attribute;
|
|
13143
13902
|
/** The attribute UUID. */
|
|
13144
13903
|
attributeUuid: Scalars['UUID']['output'];
|
|
13145
|
-
/** The claims, this attribute will be mapped to. */
|
|
13146
|
-
claims: Array<Scalars['NonEmpty']['output']>;
|
|
13147
13904
|
/** The creation timestamp. */
|
|
13148
13905
|
createdAt: Scalars['DateTime']['output'];
|
|
13906
|
+
/** A list of claims belonging to this attribute. */
|
|
13907
|
+
mappingIssuanceClaims: MappingIssuanceClaimConnection;
|
|
13149
13908
|
/** The mappingIssuance link, the attribute associated to. */
|
|
13150
13909
|
mappingIssuanceLink: MappingIssuanceLink;
|
|
13151
13910
|
/** The transform function */
|
|
@@ -13155,6 +13914,10 @@ type MappingIssuanceAttribute = Model & {
|
|
|
13155
13914
|
/** The UUID. */
|
|
13156
13915
|
uuid: Scalars['UUID']['output'];
|
|
13157
13916
|
};
|
|
13917
|
+
/** Property definition. */
|
|
13918
|
+
type MappingIssuanceAttributeMappingIssuanceClaimsArgs = {
|
|
13919
|
+
input?: InputMaybe<FindManyMappingIssuanceClaimsInput>;
|
|
13920
|
+
};
|
|
13158
13921
|
/** The mappingIssuance attribute connection definition. */
|
|
13159
13922
|
type MappingIssuanceAttributeConnection = {
|
|
13160
13923
|
__typename?: 'MappingIssuanceAttributeConnection';
|
|
@@ -13186,6 +13949,53 @@ type MappingIssuanceAttributeSortInput = {
|
|
|
13186
13949
|
/** The field to sort on. */
|
|
13187
13950
|
field: MappingIssuanceAttributeSortEnum;
|
|
13188
13951
|
};
|
|
13952
|
+
/** Property definition. */
|
|
13953
|
+
type MappingIssuanceClaim = Model & {
|
|
13954
|
+
__typename?: 'MappingIssuanceClaim';
|
|
13955
|
+
/** The actual claim */
|
|
13956
|
+
claim: Scalars['NonEmpty']['output'];
|
|
13957
|
+
/** The creation timestamp. */
|
|
13958
|
+
createdAt: Scalars['DateTime']['output'];
|
|
13959
|
+
/** The mappingIssuance attribute the claim belongs to. */
|
|
13960
|
+
mappingIssuanceAttribute: MappingIssuanceAttribute;
|
|
13961
|
+
/** The name of the claim. */
|
|
13962
|
+
name: Scalars['NonEmpty']['output'];
|
|
13963
|
+
/** The timestamp of when the type has been last updated. */
|
|
13964
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
13965
|
+
/** The UUID. */
|
|
13966
|
+
uuid: Scalars['UUID']['output'];
|
|
13967
|
+
};
|
|
13968
|
+
/** The mappingIssuance claim connection definition. */
|
|
13969
|
+
type MappingIssuanceClaimConnection = {
|
|
13970
|
+
__typename?: 'MappingIssuanceClaimConnection';
|
|
13971
|
+
edges: Array<MappingIssuanceClaimEdge>;
|
|
13972
|
+
pageInfo: PageInfo;
|
|
13973
|
+
};
|
|
13974
|
+
/** The mappingIssuance claim edge definition. */
|
|
13975
|
+
type MappingIssuanceClaimEdge = {
|
|
13976
|
+
__typename?: 'MappingIssuanceClaimEdge';
|
|
13977
|
+
cursor: Scalars['String']['output'];
|
|
13978
|
+
node: MappingIssuanceClaim;
|
|
13979
|
+
};
|
|
13980
|
+
/** Fields which can be used to filter mappingIssuance claim on. Value must be camel case. */
|
|
13981
|
+
declare enum MappingIssuanceClaimFilteringField {
|
|
13982
|
+
MappingIssuanceAttributeUuid = "mappingIssuanceAttributeUuid",
|
|
13983
|
+
Name = "name",
|
|
13984
|
+
Uuid = "uuid"
|
|
13985
|
+
}
|
|
13986
|
+
/** Fields which can be used to sort mappingIssuance claim on. Value must be camel case. */
|
|
13987
|
+
declare enum MappingIssuanceClaimSortEnum {
|
|
13988
|
+
CreatedAt = "createdAt",
|
|
13989
|
+
Name = "name",
|
|
13990
|
+
UpdatedAt = "updatedAt"
|
|
13991
|
+
}
|
|
13992
|
+
/** Input options for sorting mappingIssuance claim. */
|
|
13993
|
+
type MappingIssuanceClaimSortInput = {
|
|
13994
|
+
/** The direction to sort on. */
|
|
13995
|
+
direction: OrderDirection;
|
|
13996
|
+
/** The field to sort on. */
|
|
13997
|
+
field: MappingIssuanceClaimSortEnum;
|
|
13998
|
+
};
|
|
13189
13999
|
/** The connection definition for mappingIssuance. */
|
|
13190
14000
|
type MappingIssuanceConnection = {
|
|
13191
14001
|
__typename?: 'MappingIssuanceConnection';
|
|
@@ -13716,6 +14526,8 @@ type Mutation = {
|
|
|
13716
14526
|
createAuthenticationProviderConfigurationNLWallet: AuthenticationProviderConfigurationNlWallet;
|
|
13717
14527
|
/** Create a flow authentication scope. */
|
|
13718
14528
|
createAuthenticationScope: AuthenticationScope;
|
|
14529
|
+
/** Bind an organization secret to an authentication flow. */
|
|
14530
|
+
createAuthenticationSecret: AuthenticationSecret;
|
|
13719
14531
|
/** Initializes billing plan */
|
|
13720
14532
|
createBillingPlan: BillingPlan;
|
|
13721
14533
|
/** Create billing wallet */
|
|
@@ -13788,6 +14600,8 @@ type Mutation = {
|
|
|
13788
14600
|
createDisclosureProviderByAttributes: DisclosureProvider;
|
|
13789
14601
|
/** Create a DisclosureProviderConfigurationNLWallet. */
|
|
13790
14602
|
createDisclosureProviderConfigurationNLWallet: DisclosureProviderConfigurationNlWallet;
|
|
14603
|
+
/** Bind an organization secret to a disclosure flow. */
|
|
14604
|
+
createDisclosureSecret: DisclosureSecret;
|
|
13791
14605
|
/** Create a flow. */
|
|
13792
14606
|
createIssuance: Issuance;
|
|
13793
14607
|
/** Create a flow issuance attribute. */
|
|
@@ -13798,6 +14612,8 @@ type Mutation = {
|
|
|
13798
14612
|
createIssuanceCredential: IssuanceCredential;
|
|
13799
14613
|
/** Create a flow credential meta datakeeper. */
|
|
13800
14614
|
createIssuanceCredentialMetaDatakeeper: IssuanceCredentialMetaDatakeeper;
|
|
14615
|
+
/** Create a flow credential meta oid4vc. */
|
|
14616
|
+
createIssuanceCredentialMetaOid4vc: IssuanceCredentialMetaOid4vc;
|
|
13801
14617
|
/** Create a flow credential meta yivi. */
|
|
13802
14618
|
createIssuanceCredentialMetaYivi: IssuanceCredentialMetaYivi;
|
|
13803
14619
|
/** Create and store a new domain type. */
|
|
@@ -13810,6 +14626,10 @@ type Mutation = {
|
|
|
13810
14626
|
createIssuanceProvider: IssuanceProvider;
|
|
13811
14627
|
/** Create many flow issuance provider by attributes */
|
|
13812
14628
|
createIssuanceProviderByAttributes: IssuanceProvider;
|
|
14629
|
+
/** Create a IssuanceProviderConfigurationNLWallet. */
|
|
14630
|
+
createIssuanceProviderConfigurationNLWallet: IssuanceProviderConfigurationNlWallet;
|
|
14631
|
+
/** Bind an organization secret to an issuance flow. */
|
|
14632
|
+
createIssuanceSecret: IssuanceSecret;
|
|
13813
14633
|
/** Create a issuer. */
|
|
13814
14634
|
createIssuer: Issuer;
|
|
13815
14635
|
/** Create and store a new identity issuer label. */
|
|
@@ -13822,8 +14642,12 @@ type Mutation = {
|
|
|
13822
14642
|
createIssuerMetaMDOC: IssuerMetaMdoc;
|
|
13823
14643
|
/** Create a issuer meta OID4VC. */
|
|
13824
14644
|
createIssuerMetaOID4VCMDOC: IssuerMetaOid4Vcmdoc;
|
|
14645
|
+
/** Create an issuer meta OID4VC MDOC key profile. */
|
|
14646
|
+
createIssuerMetaOID4VCMdocKeyProfile: IssuerMetaOid4VcMdocKeyProfile;
|
|
13825
14647
|
/** Create a issuer meta OID4VC. */
|
|
13826
14648
|
createIssuerMetaOID4VCSDJWT: IssuerMetaOid4Vcsdjwt;
|
|
14649
|
+
/** Create an issuer meta OID4VC SD-JWT key profile. */
|
|
14650
|
+
createIssuerMetaOID4VCSdJwtKeyProfile: IssuerMetaOid4VcSdJwtKeyProfile;
|
|
13827
14651
|
/** Create a issuer meta yivi. */
|
|
13828
14652
|
createIssuerMetaYivi: IssuerMetaYivi;
|
|
13829
14653
|
/** Create a new label */
|
|
@@ -13854,6 +14678,8 @@ type Mutation = {
|
|
|
13854
14678
|
createMappingIssuance: MappingIssuance;
|
|
13855
14679
|
/** Create an mappingIssuance attribute. */
|
|
13856
14680
|
createMappingIssuanceAttribute: MappingIssuanceAttribute;
|
|
14681
|
+
/** Create a mappingIssuance claim. */
|
|
14682
|
+
createMappingIssuanceClaim: MappingIssuanceClaim;
|
|
13857
14683
|
/** Create an mappingIssuance link. */
|
|
13858
14684
|
createMappingIssuanceLink: MappingIssuanceLink;
|
|
13859
14685
|
/** Create an mappingVerification. */
|
|
@@ -13970,6 +14796,8 @@ type Mutation = {
|
|
|
13970
14796
|
createSignatureProviderByAttributes: SignatureProvider;
|
|
13971
14797
|
/** Create a SignatureProviderConfigurationNLWallet. */
|
|
13972
14798
|
createSignatureProviderConfigurationNLWallet: SignatureProviderConfigurationNlWallet;
|
|
14799
|
+
/** Bind an organization secret to a signature flow. */
|
|
14800
|
+
createSignatureSecret: SignatureSecret;
|
|
13973
14801
|
/** Create a StudioPlan. */
|
|
13974
14802
|
createStudioPlan: StudioPlan;
|
|
13975
14803
|
/** Create a StudioPlanControl. */
|
|
@@ -14056,6 +14884,8 @@ type Mutation = {
|
|
|
14056
14884
|
deleteAuthenticationProviderConfigurationNLWallet?: Maybe<Scalars['Null']['output']>;
|
|
14057
14885
|
/** Delete a flow authentication scope. */
|
|
14058
14886
|
deleteAuthenticationScope?: Maybe<Scalars['Null']['output']>;
|
|
14887
|
+
/** Unbind an organization secret from an authentication flow. */
|
|
14888
|
+
deleteAuthenticationSecret?: Maybe<Scalars['Null']['output']>;
|
|
14059
14889
|
/** Delete billing plan. */
|
|
14060
14890
|
deleteBillingPlan?: Maybe<Scalars['Null']['output']>;
|
|
14061
14891
|
/** Delete an credential. */
|
|
@@ -14124,6 +14954,8 @@ type Mutation = {
|
|
|
14124
14954
|
deleteDisclosureProvider?: Maybe<Scalars['Null']['output']>;
|
|
14125
14955
|
/** Delete a DisclosureProviderConfigurationNLWallet. */
|
|
14126
14956
|
deleteDisclosureProviderConfigurationNLWallet?: Maybe<Scalars['Null']['output']>;
|
|
14957
|
+
/** Unbind an organization secret from a disclosure flow. */
|
|
14958
|
+
deleteDisclosureSecret?: Maybe<Scalars['Null']['output']>;
|
|
14127
14959
|
/** Delete a flow. */
|
|
14128
14960
|
deleteIssuance?: Maybe<Scalars['Null']['output']>;
|
|
14129
14961
|
/** Delete a flow issuance attribute. */
|
|
@@ -14134,6 +14966,8 @@ type Mutation = {
|
|
|
14134
14966
|
deleteIssuanceCredential?: Maybe<Scalars['Null']['output']>;
|
|
14135
14967
|
/** Delete a flow credential meta datakeeper. */
|
|
14136
14968
|
deleteIssuanceCredentialMetaDatakeeper?: Maybe<Scalars['Null']['output']>;
|
|
14969
|
+
/** Delete a flow credential meta oid4vc. */
|
|
14970
|
+
deleteIssuanceCredentialMetaOid4vc?: Maybe<Scalars['Null']['output']>;
|
|
14137
14971
|
/** Delete a flow credential meta yivi. */
|
|
14138
14972
|
deleteIssuanceCredentialMetaYivi?: Maybe<Scalars['Null']['output']>;
|
|
14139
14973
|
/** Delete a domain. */
|
|
@@ -14144,6 +14978,10 @@ type Mutation = {
|
|
|
14144
14978
|
deleteIssuanceMapping?: Maybe<Scalars['Null']['output']>;
|
|
14145
14979
|
/** Delete a flow issuance provider. */
|
|
14146
14980
|
deleteIssuanceProvider?: Maybe<Scalars['Null']['output']>;
|
|
14981
|
+
/** Delete a IssuanceProviderConfigurationNLWallet. */
|
|
14982
|
+
deleteIssuanceProviderConfigurationNLWallet?: Maybe<Scalars['Null']['output']>;
|
|
14983
|
+
/** Unbind an organization secret from an issuance flow. */
|
|
14984
|
+
deleteIssuanceSecret?: Maybe<Scalars['Null']['output']>;
|
|
14147
14985
|
/** Delete an issuer. */
|
|
14148
14986
|
deleteIssuer?: Maybe<Scalars['Null']['output']>;
|
|
14149
14987
|
/** Delete an identity issuer label. */
|
|
@@ -14156,8 +14994,12 @@ type Mutation = {
|
|
|
14156
14994
|
deleteIssuerMetaMDOC?: Maybe<Scalars['Null']['output']>;
|
|
14157
14995
|
/** Delete a issuer meta OID4VC. */
|
|
14158
14996
|
deleteIssuerMetaOID4VCMDOC?: Maybe<Scalars['Null']['output']>;
|
|
14997
|
+
/** Delete an issuer meta OID4VC MDOC key profile. */
|
|
14998
|
+
deleteIssuerMetaOID4VCMdocKeyProfile?: Maybe<Scalars['Null']['output']>;
|
|
14159
14999
|
/** Delete a issuer meta OID4VC. */
|
|
14160
15000
|
deleteIssuerMetaOID4VCSDJWT?: Maybe<Scalars['Null']['output']>;
|
|
15001
|
+
/** Delete an issuer meta OID4VC SD-JWT key profile. */
|
|
15002
|
+
deleteIssuerMetaOID4VCSdJwtKeyProfile?: Maybe<Scalars['Null']['output']>;
|
|
14161
15003
|
/** Delete a issuer meta yivi. */
|
|
14162
15004
|
deleteIssuerMetaYivi?: Maybe<Scalars['Null']['output']>;
|
|
14163
15005
|
/** Delete a label */
|
|
@@ -14170,6 +15012,8 @@ type Mutation = {
|
|
|
14170
15012
|
deleteMappingIssuance?: Maybe<Scalars['Null']['output']>;
|
|
14171
15013
|
/** Delete a mappingIssuance attribute */
|
|
14172
15014
|
deleteMappingIssuanceAttribute?: Maybe<Scalars['Null']['output']>;
|
|
15015
|
+
/** Delete a mappingIssuance claim. */
|
|
15016
|
+
deleteMappingIssuanceClaim?: Maybe<Scalars['Null']['output']>;
|
|
14173
15017
|
/** Delete an mappingIssuance. */
|
|
14174
15018
|
deleteMappingIssuanceLink?: Maybe<Scalars['Null']['output']>;
|
|
14175
15019
|
/** Delete an mappingVerification. */
|
|
@@ -14284,6 +15128,8 @@ type Mutation = {
|
|
|
14284
15128
|
deleteSignatureProvider?: Maybe<Scalars['Null']['output']>;
|
|
14285
15129
|
/** Delete a SignatureProviderConfigurationNLWallet. */
|
|
14286
15130
|
deleteSignatureProviderConfigurationNLWallet?: Maybe<Scalars['Null']['output']>;
|
|
15131
|
+
/** Unbind an organization secret from a signature flow. */
|
|
15132
|
+
deleteSignatureSecret?: Maybe<Scalars['Null']['output']>;
|
|
14287
15133
|
/** Delete a StudioPlan. */
|
|
14288
15134
|
deleteStudioPlan?: Maybe<Scalars['Null']['output']>;
|
|
14289
15135
|
/** Delete a StudioPlanControl. */
|
|
@@ -14460,12 +15306,16 @@ type Mutation = {
|
|
|
14460
15306
|
updateIssuanceBrand: IssuanceBrand;
|
|
14461
15307
|
/** Update a flow credential meta datakeeper. */
|
|
14462
15308
|
updateIssuanceCredentialMetaDatakeeper: IssuanceCredentialMetaDatakeeper;
|
|
15309
|
+
/** Update a flow credential meta oid4vc. */
|
|
15310
|
+
updateIssuanceCredentialMetaOid4vc: IssuanceCredentialMetaOid4vc;
|
|
14463
15311
|
/** Update a flow credential meta yivi. */
|
|
14464
15312
|
updateIssuanceCredentialMetaYivi: IssuanceCredentialMetaYivi;
|
|
14465
15313
|
/** Update an domain. */
|
|
14466
15314
|
updateIssuanceDomain: IssuanceDomain;
|
|
14467
15315
|
/** Update a flow issuance provider. */
|
|
14468
15316
|
updateIssuanceProvider: IssuanceProvider;
|
|
15317
|
+
/** Update a IssuanceProviderConfigurationNLWallet. */
|
|
15318
|
+
updateIssuanceProviderConfigurationNLWallet: IssuanceProviderConfigurationNlWallet;
|
|
14469
15319
|
/** Update an issuer. */
|
|
14470
15320
|
updateIssuer: Issuer;
|
|
14471
15321
|
/** Update an issuer. */
|
|
@@ -14476,8 +15326,12 @@ type Mutation = {
|
|
|
14476
15326
|
updateIssuerMetaMDOC: IssuerMetaMdoc;
|
|
14477
15327
|
/** Update a issuer meta OID4VC. */
|
|
14478
15328
|
updateIssuerMetaOID4VCMDOC: IssuerMetaOid4Vcmdoc;
|
|
15329
|
+
/** Update an issuer meta OID4VC MDOC key profile. */
|
|
15330
|
+
updateIssuerMetaOID4VCMdocKeyProfile: IssuerMetaOid4VcMdocKeyProfile;
|
|
14479
15331
|
/** Update a issuer meta OID4VC. */
|
|
14480
15332
|
updateIssuerMetaOID4VCSDJWT: IssuerMetaOid4Vcsdjwt;
|
|
15333
|
+
/** Update an issuer meta OID4VC SD-JWT key profile. */
|
|
15334
|
+
updateIssuerMetaOID4VCSdJwtKeyProfile: IssuerMetaOid4VcSdJwtKeyProfile;
|
|
14481
15335
|
/** Update a issuer meta yivi. */
|
|
14482
15336
|
updateIssuerMetaYivi: IssuerMetaYivi;
|
|
14483
15337
|
/** Update an existing label */
|
|
@@ -14490,6 +15344,8 @@ type Mutation = {
|
|
|
14490
15344
|
updateMappingIssuance: MappingIssuance;
|
|
14491
15345
|
/** Update a mappingIssuance attribute. */
|
|
14492
15346
|
updateMappingIssuanceAttribute: MappingIssuanceAttribute;
|
|
15347
|
+
/** Update a mappingIssuance claim. */
|
|
15348
|
+
updateMappingIssuanceClaim: MappingIssuanceClaim;
|
|
14493
15349
|
/** Update an mappingVerification. */
|
|
14494
15350
|
updateMappingVerification: MappingVerification;
|
|
14495
15351
|
/** Update a mappingVerification attribute. */
|
|
@@ -14818,6 +15674,9 @@ type MutationCreateAuthenticationProviderConfigurationNlWalletArgs = {
|
|
|
14818
15674
|
type MutationCreateAuthenticationScopeArgs = {
|
|
14819
15675
|
input: CreateAuthenticationScopeInput;
|
|
14820
15676
|
};
|
|
15677
|
+
type MutationCreateAuthenticationSecretArgs = {
|
|
15678
|
+
input: CreateAuthenticationSecretInput;
|
|
15679
|
+
};
|
|
14821
15680
|
type MutationCreateBillingPlanArgs = {
|
|
14822
15681
|
input: CreateBillingPlanInput;
|
|
14823
15682
|
};
|
|
@@ -14926,6 +15785,9 @@ type MutationCreateDisclosureProviderByAttributesArgs = {
|
|
|
14926
15785
|
type MutationCreateDisclosureProviderConfigurationNlWalletArgs = {
|
|
14927
15786
|
input: CreateDisclosureProviderConfigurationNlWalletInput;
|
|
14928
15787
|
};
|
|
15788
|
+
type MutationCreateDisclosureSecretArgs = {
|
|
15789
|
+
input: CreateDisclosureSecretInput;
|
|
15790
|
+
};
|
|
14929
15791
|
type MutationCreateIssuanceArgs = {
|
|
14930
15792
|
input: CreateIssuanceInput;
|
|
14931
15793
|
};
|
|
@@ -14941,6 +15803,9 @@ type MutationCreateIssuanceCredentialArgs = {
|
|
|
14941
15803
|
type MutationCreateIssuanceCredentialMetaDatakeeperArgs = {
|
|
14942
15804
|
input: CreateIssuanceCredentialMetaDatakeeperInput;
|
|
14943
15805
|
};
|
|
15806
|
+
type MutationCreateIssuanceCredentialMetaOid4vcArgs = {
|
|
15807
|
+
input: CreateIssuanceCredentialMetaOid4vcInput;
|
|
15808
|
+
};
|
|
14944
15809
|
type MutationCreateIssuanceCredentialMetaYiviArgs = {
|
|
14945
15810
|
input: CreateIssuanceCredentialMetaYiviInput;
|
|
14946
15811
|
};
|
|
@@ -14959,6 +15824,12 @@ type MutationCreateIssuanceProviderArgs = {
|
|
|
14959
15824
|
type MutationCreateIssuanceProviderByAttributesArgs = {
|
|
14960
15825
|
input: CreateIssuanceProviderByAttributesInput;
|
|
14961
15826
|
};
|
|
15827
|
+
type MutationCreateIssuanceProviderConfigurationNlWalletArgs = {
|
|
15828
|
+
input: CreateIssuanceProviderConfigurationNlWalletInput;
|
|
15829
|
+
};
|
|
15830
|
+
type MutationCreateIssuanceSecretArgs = {
|
|
15831
|
+
input: CreateIssuanceSecretInput;
|
|
15832
|
+
};
|
|
14962
15833
|
type MutationCreateIssuerArgs = {
|
|
14963
15834
|
input: CreateIssuerInput;
|
|
14964
15835
|
};
|
|
@@ -14977,9 +15848,15 @@ type MutationCreateIssuerMetaMdocArgs = {
|
|
|
14977
15848
|
type MutationCreateIssuerMetaOid4VcmdocArgs = {
|
|
14978
15849
|
input: CreateIssuerMetaOid4VcmdocInput;
|
|
14979
15850
|
};
|
|
15851
|
+
type MutationCreateIssuerMetaOid4VcMdocKeyProfileArgs = {
|
|
15852
|
+
input: CreateIssuerMetaOid4VcMdocKeyProfileInput;
|
|
15853
|
+
};
|
|
14980
15854
|
type MutationCreateIssuerMetaOid4VcsdjwtArgs = {
|
|
14981
15855
|
input: CreateIssuerMetaOid4VcsdjwtInput;
|
|
14982
15856
|
};
|
|
15857
|
+
type MutationCreateIssuerMetaOid4VcSdJwtKeyProfileArgs = {
|
|
15858
|
+
input: CreateIssuerMetaOid4VcSdJwtKeyProfileInput;
|
|
15859
|
+
};
|
|
14983
15860
|
type MutationCreateIssuerMetaYiviArgs = {
|
|
14984
15861
|
input: CreateIssuerMetaYiviInput;
|
|
14985
15862
|
};
|
|
@@ -15026,6 +15903,9 @@ type MutationCreateMappingIssuanceArgs = {
|
|
|
15026
15903
|
type MutationCreateMappingIssuanceAttributeArgs = {
|
|
15027
15904
|
input: CreateMappingIssuanceAttributeInput;
|
|
15028
15905
|
};
|
|
15906
|
+
type MutationCreateMappingIssuanceClaimArgs = {
|
|
15907
|
+
input: CreateMappingIssuanceClaimInput;
|
|
15908
|
+
};
|
|
15029
15909
|
type MutationCreateMappingIssuanceLinkArgs = {
|
|
15030
15910
|
input: CreateMappingIssuanceLinkInput;
|
|
15031
15911
|
};
|
|
@@ -15200,6 +16080,9 @@ type MutationCreateSignatureProviderByAttributesArgs = {
|
|
|
15200
16080
|
type MutationCreateSignatureProviderConfigurationNlWalletArgs = {
|
|
15201
16081
|
input: CreateSignatureProviderConfigurationNlWalletInput;
|
|
15202
16082
|
};
|
|
16083
|
+
type MutationCreateSignatureSecretArgs = {
|
|
16084
|
+
input: CreateSignatureSecretInput;
|
|
16085
|
+
};
|
|
15203
16086
|
type MutationCreateStudioPlanArgs = {
|
|
15204
16087
|
input: CreateStudioPlanInput;
|
|
15205
16088
|
};
|
|
@@ -15329,6 +16212,9 @@ type MutationDeleteAuthenticationProviderConfigurationNlWalletArgs = {
|
|
|
15329
16212
|
type MutationDeleteAuthenticationScopeArgs = {
|
|
15330
16213
|
uuid: Scalars['UUID']['input'];
|
|
15331
16214
|
};
|
|
16215
|
+
type MutationDeleteAuthenticationSecretArgs = {
|
|
16216
|
+
uuid: Scalars['UUID']['input'];
|
|
16217
|
+
};
|
|
15332
16218
|
type MutationDeleteBillingPlanArgs = {
|
|
15333
16219
|
uuid: Scalars['UUID']['input'];
|
|
15334
16220
|
};
|
|
@@ -15431,6 +16317,9 @@ type MutationDeleteDisclosureProviderArgs = {
|
|
|
15431
16317
|
type MutationDeleteDisclosureProviderConfigurationNlWalletArgs = {
|
|
15432
16318
|
uuid: Scalars['UUID']['input'];
|
|
15433
16319
|
};
|
|
16320
|
+
type MutationDeleteDisclosureSecretArgs = {
|
|
16321
|
+
uuid: Scalars['UUID']['input'];
|
|
16322
|
+
};
|
|
15434
16323
|
type MutationDeleteIssuanceArgs = {
|
|
15435
16324
|
uuid: Scalars['UUID']['input'];
|
|
15436
16325
|
};
|
|
@@ -15446,6 +16335,9 @@ type MutationDeleteIssuanceCredentialArgs = {
|
|
|
15446
16335
|
type MutationDeleteIssuanceCredentialMetaDatakeeperArgs = {
|
|
15447
16336
|
uuid: Scalars['UUID']['input'];
|
|
15448
16337
|
};
|
|
16338
|
+
type MutationDeleteIssuanceCredentialMetaOid4vcArgs = {
|
|
16339
|
+
uuid: Scalars['UUID']['input'];
|
|
16340
|
+
};
|
|
15449
16341
|
type MutationDeleteIssuanceCredentialMetaYiviArgs = {
|
|
15450
16342
|
uuid: Scalars['UUID']['input'];
|
|
15451
16343
|
};
|
|
@@ -15461,6 +16353,12 @@ type MutationDeleteIssuanceMappingArgs = {
|
|
|
15461
16353
|
type MutationDeleteIssuanceProviderArgs = {
|
|
15462
16354
|
uuid: Scalars['UUID']['input'];
|
|
15463
16355
|
};
|
|
16356
|
+
type MutationDeleteIssuanceProviderConfigurationNlWalletArgs = {
|
|
16357
|
+
uuid: Scalars['UUID']['input'];
|
|
16358
|
+
};
|
|
16359
|
+
type MutationDeleteIssuanceSecretArgs = {
|
|
16360
|
+
uuid: Scalars['UUID']['input'];
|
|
16361
|
+
};
|
|
15464
16362
|
type MutationDeleteIssuerArgs = {
|
|
15465
16363
|
uuid: Scalars['UUID']['input'];
|
|
15466
16364
|
};
|
|
@@ -15479,9 +16377,15 @@ type MutationDeleteIssuerMetaMdocArgs = {
|
|
|
15479
16377
|
type MutationDeleteIssuerMetaOid4VcmdocArgs = {
|
|
15480
16378
|
uuid: Scalars['UUID']['input'];
|
|
15481
16379
|
};
|
|
16380
|
+
type MutationDeleteIssuerMetaOid4VcMdocKeyProfileArgs = {
|
|
16381
|
+
uuid: Scalars['UUID']['input'];
|
|
16382
|
+
};
|
|
15482
16383
|
type MutationDeleteIssuerMetaOid4VcsdjwtArgs = {
|
|
15483
16384
|
uuid: Scalars['UUID']['input'];
|
|
15484
16385
|
};
|
|
16386
|
+
type MutationDeleteIssuerMetaOid4VcSdJwtKeyProfileArgs = {
|
|
16387
|
+
uuid: Scalars['UUID']['input'];
|
|
16388
|
+
};
|
|
15485
16389
|
type MutationDeleteIssuerMetaYiviArgs = {
|
|
15486
16390
|
uuid: Scalars['UUID']['input'];
|
|
15487
16391
|
};
|
|
@@ -15500,6 +16404,9 @@ type MutationDeleteMappingIssuanceArgs = {
|
|
|
15500
16404
|
type MutationDeleteMappingIssuanceAttributeArgs = {
|
|
15501
16405
|
uuid: Scalars['UUID']['input'];
|
|
15502
16406
|
};
|
|
16407
|
+
type MutationDeleteMappingIssuanceClaimArgs = {
|
|
16408
|
+
uuid: Scalars['UUID']['input'];
|
|
16409
|
+
};
|
|
15503
16410
|
type MutationDeleteMappingIssuanceLinkArgs = {
|
|
15504
16411
|
uuid: Scalars['UUID']['input'];
|
|
15505
16412
|
};
|
|
@@ -15671,6 +16578,9 @@ type MutationDeleteSignatureProviderArgs = {
|
|
|
15671
16578
|
type MutationDeleteSignatureProviderConfigurationNlWalletArgs = {
|
|
15672
16579
|
uuid: Scalars['UUID']['input'];
|
|
15673
16580
|
};
|
|
16581
|
+
type MutationDeleteSignatureSecretArgs = {
|
|
16582
|
+
uuid: Scalars['UUID']['input'];
|
|
16583
|
+
};
|
|
15674
16584
|
type MutationDeleteStudioPlanArgs = {
|
|
15675
16585
|
uuid: Scalars['UUID']['input'];
|
|
15676
16586
|
};
|
|
@@ -16006,6 +16916,10 @@ type MutationUpdateIssuanceCredentialMetaDatakeeperArgs = {
|
|
|
16006
16916
|
input: UpdateIssuanceCredentialMetaDatakeeperInput;
|
|
16007
16917
|
uuid: Scalars['UUID']['input'];
|
|
16008
16918
|
};
|
|
16919
|
+
type MutationUpdateIssuanceCredentialMetaOid4vcArgs = {
|
|
16920
|
+
input: UpdateIssuanceCredentialMetaOid4vcInput;
|
|
16921
|
+
uuid: Scalars['UUID']['input'];
|
|
16922
|
+
};
|
|
16009
16923
|
type MutationUpdateIssuanceCredentialMetaYiviArgs = {
|
|
16010
16924
|
input: UpdateIssuanceCredentialMetaYiviInput;
|
|
16011
16925
|
uuid: Scalars['UUID']['input'];
|
|
@@ -16018,6 +16932,10 @@ type MutationUpdateIssuanceProviderArgs = {
|
|
|
16018
16932
|
input: UpdateIssuanceProviderInput;
|
|
16019
16933
|
uuid: Scalars['UUID']['input'];
|
|
16020
16934
|
};
|
|
16935
|
+
type MutationUpdateIssuanceProviderConfigurationNlWalletArgs = {
|
|
16936
|
+
input: UpdateIssuanceProviderConfigurationNlWalletInput;
|
|
16937
|
+
uuid: Scalars['UUID']['input'];
|
|
16938
|
+
};
|
|
16021
16939
|
type MutationUpdateIssuerArgs = {
|
|
16022
16940
|
input: UpdateIssuerInput;
|
|
16023
16941
|
uuid: Scalars['UUID']['input'];
|
|
@@ -16038,10 +16956,18 @@ type MutationUpdateIssuerMetaOid4VcmdocArgs = {
|
|
|
16038
16956
|
input: UpdateIssuerMetaOid4VcmdocInput;
|
|
16039
16957
|
uuid: Scalars['UUID']['input'];
|
|
16040
16958
|
};
|
|
16959
|
+
type MutationUpdateIssuerMetaOid4VcMdocKeyProfileArgs = {
|
|
16960
|
+
input: UpdateIssuerMetaOid4VcMdocKeyProfileInput;
|
|
16961
|
+
uuid: Scalars['UUID']['input'];
|
|
16962
|
+
};
|
|
16041
16963
|
type MutationUpdateIssuerMetaOid4VcsdjwtArgs = {
|
|
16042
16964
|
input: UpdateIssuerMetaOid4VcsdjwtInput;
|
|
16043
16965
|
uuid: Scalars['UUID']['input'];
|
|
16044
16966
|
};
|
|
16967
|
+
type MutationUpdateIssuerMetaOid4VcSdJwtKeyProfileArgs = {
|
|
16968
|
+
input: UpdateIssuerMetaOid4VcSdJwtKeyProfileInput;
|
|
16969
|
+
uuid: Scalars['UUID']['input'];
|
|
16970
|
+
};
|
|
16045
16971
|
type MutationUpdateIssuerMetaYiviArgs = {
|
|
16046
16972
|
input: UpdateIssuerMetaYiviInput;
|
|
16047
16973
|
uuid: Scalars['UUID']['input'];
|
|
@@ -16066,6 +16992,10 @@ type MutationUpdateMappingIssuanceAttributeArgs = {
|
|
|
16066
16992
|
input: UpdateMappingIssuanceAttributeInput;
|
|
16067
16993
|
uuid: Scalars['UUID']['input'];
|
|
16068
16994
|
};
|
|
16995
|
+
type MutationUpdateMappingIssuanceClaimArgs = {
|
|
16996
|
+
input: UpdateMappingIssuanceClaimInput;
|
|
16997
|
+
uuid: Scalars['UUID']['input'];
|
|
16998
|
+
};
|
|
16069
16999
|
type MutationUpdateMappingVerificationArgs = {
|
|
16070
17000
|
input: UpdateMappingVerificationInput;
|
|
16071
17001
|
uuid: Scalars['UUID']['input'];
|
|
@@ -16393,18 +17323,26 @@ type Organization = Model & {
|
|
|
16393
17323
|
billing?: Maybe<Billing>;
|
|
16394
17324
|
/** The time when the organization got blocked */
|
|
16395
17325
|
blockedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
17326
|
+
/** The ISO 3166-1 alpha-2 country code of the organization. */
|
|
17327
|
+
countryCode?: Maybe<Scalars['ISO3166']['output']>;
|
|
16396
17328
|
/** The resource creation time */
|
|
16397
17329
|
createdAt: Scalars['DateTime']['output'];
|
|
16398
17330
|
/** The organization description. */
|
|
16399
17331
|
description?: Maybe<Scalars['NonEmpty']['output']>;
|
|
16400
17332
|
/** The public email address of the organization. */
|
|
16401
17333
|
email?: Maybe<Scalars['Email']['output']>;
|
|
17334
|
+
/** The chamber of commerce registration number. */
|
|
17335
|
+
kvk?: Maybe<Scalars['NonEmpty']['output']>;
|
|
16402
17336
|
/** Labels created by this organization */
|
|
16403
17337
|
labels?: Maybe<LabelConnection>;
|
|
17338
|
+
/** The legal registered name of the organization. */
|
|
17339
|
+
legalName?: Maybe<Scalars['NonEmpty']['output']>;
|
|
16404
17340
|
/** The logo of the organization. */
|
|
16405
17341
|
logo?: Maybe<Scalars['ProfilePicture']['output']>;
|
|
16406
17342
|
/** A list of managed organizations */
|
|
16407
17343
|
managedOrganizations?: Maybe<OrganizationConnection>;
|
|
17344
|
+
/** The NACE Rev. 2.1 economic activity code of the organization. */
|
|
17345
|
+
naceCode?: Maybe<Scalars['NACECode']['output']>;
|
|
16408
17346
|
/** The organization name. */
|
|
16409
17347
|
name: Scalars['NonEmpty']['output'];
|
|
16410
17348
|
/** A list of addresses of this organization. */
|
|
@@ -16421,6 +17359,8 @@ type Organization = Model & {
|
|
|
16421
17359
|
partnerOrganization?: Maybe<Organization>;
|
|
16422
17360
|
/** The phone number of the organization. */
|
|
16423
17361
|
phone?: Maybe<Scalars['String']['output']>;
|
|
17362
|
+
/** The URL of the organization's privacy policy. */
|
|
17363
|
+
privacyPolicyUrl?: Maybe<Scalars['URL']['output']>;
|
|
16424
17364
|
/** Shortcut to active studio controls associated to this object */
|
|
16425
17365
|
studioControlCompacts: Array<StudioControlCompact>;
|
|
16426
17366
|
/** The type of the organization */
|
|
@@ -17496,8 +18436,12 @@ type OrganizationEdge = {
|
|
|
17496
18436
|
};
|
|
17497
18437
|
/** Fields which can be used to filter user organizations on. Value must be camel case. */
|
|
17498
18438
|
declare enum OrganizationFilteringField {
|
|
18439
|
+
CountryCode = "countryCode",
|
|
17499
18440
|
Description = "description",
|
|
17500
18441
|
Email = "email",
|
|
18442
|
+
Kvk = "kvk",
|
|
18443
|
+
LegalName = "legalName",
|
|
18444
|
+
NaceCode = "naceCode",
|
|
17501
18445
|
Name = "name",
|
|
17502
18446
|
PartnerOrganizationUuid = "partnerOrganizationUuid",
|
|
17503
18447
|
Phone = "phone",
|
|
@@ -17715,8 +18659,7 @@ type OrganizationSecretSortInput = {
|
|
|
17715
18659
|
};
|
|
17716
18660
|
/** The types */
|
|
17717
18661
|
declare enum OrganizationSecretType {
|
|
17718
|
-
Oauth = "OAUTH"
|
|
17719
|
-
Oct = "OCT"
|
|
18662
|
+
Oauth = "OAUTH"
|
|
17720
18663
|
}
|
|
17721
18664
|
/** Fields which can be used to sort user organizations on. Value must be camel case. */
|
|
17722
18665
|
declare enum OrganizationSortEnum {
|
|
@@ -18767,18 +19710,22 @@ type ProviderAppMetaOid4Vc = Model & {
|
|
|
18767
19710
|
createdAt: Scalars['DateTime']['output'];
|
|
18768
19711
|
/** If DCQL is supported */
|
|
18769
19712
|
dcql?: Maybe<Scalars['Boolean']['output']>;
|
|
18770
|
-
/** The latest draft version supported by this app */
|
|
18771
|
-
|
|
19713
|
+
/** The latest issuance draft version supported by this app */
|
|
19714
|
+
issuanceDraftVersion?: Maybe<Scalars['Int']['output']>;
|
|
19715
|
+
/** The issuance spec type supported by this app */
|
|
19716
|
+
issuanceSpecType?: Maybe<ProviderAppMetaOid4VcIssuanceSpecType>;
|
|
18772
19717
|
/** The protocol */
|
|
18773
19718
|
protocol?: Maybe<Scalars['NonEmpty']['output']>;
|
|
18774
19719
|
/** The ProviderAppMeta this ProviderAppMetaOID4VC belongs to */
|
|
18775
19720
|
providerAppMeta: ProviderAppMeta;
|
|
18776
|
-
/** The spec type supported by this app */
|
|
18777
|
-
specType: ProviderAppMetaOid4VcSpecType;
|
|
18778
19721
|
/** The update time */
|
|
18779
19722
|
updatedAt: Scalars['DateTime']['output'];
|
|
18780
19723
|
/** The UUID */
|
|
18781
19724
|
uuid: Scalars['UUID']['output'];
|
|
19725
|
+
/** The latest verification draft version supported by this app */
|
|
19726
|
+
verificationDraftVersion?: Maybe<Scalars['Int']['output']>;
|
|
19727
|
+
/** The verification spec type supported by this app */
|
|
19728
|
+
verificationSpecType: ProviderAppMetaOid4VcVerificationSpecType;
|
|
18782
19729
|
};
|
|
18783
19730
|
/** The connection definition */
|
|
18784
19731
|
type ProviderAppMetaOid4VcConnection = {
|
|
@@ -18794,8 +19741,14 @@ type ProviderAppMetaOid4VcEdge = {
|
|
|
18794
19741
|
};
|
|
18795
19742
|
/** Camel-case fields to filter on */
|
|
18796
19743
|
declare enum ProviderAppMetaOid4VcFilteringField {
|
|
18797
|
-
|
|
18798
|
-
ProviderAppMetaUuid = "providerAppMetaUuid"
|
|
19744
|
+
IssuanceDraftVersion = "issuanceDraftVersion",
|
|
19745
|
+
ProviderAppMetaUuid = "providerAppMetaUuid",
|
|
19746
|
+
VerificationDraftVersion = "verificationDraftVersion"
|
|
19747
|
+
}
|
|
19748
|
+
/** ProviderAppMetaOID4VCIssuanceSpecType */
|
|
19749
|
+
declare enum ProviderAppMetaOid4VcIssuanceSpecType {
|
|
19750
|
+
Draft = "DRAFT",
|
|
19751
|
+
V1 = "V1"
|
|
18799
19752
|
}
|
|
18800
19753
|
/** Camel-case fields to sort on */
|
|
18801
19754
|
declare enum ProviderAppMetaOid4VcSortEnum {
|
|
@@ -18808,8 +19761,8 @@ type ProviderAppMetaOid4VcSortInput = {
|
|
|
18808
19761
|
/** The field to sort on. */
|
|
18809
19762
|
field: ProviderAppMetaOid4VcSortEnum;
|
|
18810
19763
|
};
|
|
18811
|
-
/**
|
|
18812
|
-
declare enum
|
|
19764
|
+
/** ProviderAppMetaOID4VCVerificationSpecType */
|
|
19765
|
+
declare enum ProviderAppMetaOid4VcVerificationSpecType {
|
|
18813
19766
|
Draft = "DRAFT",
|
|
18814
19767
|
V1 = "V1"
|
|
18815
19768
|
}
|
|
@@ -19105,6 +20058,8 @@ type Query = {
|
|
|
19105
20058
|
findAuthenticationProviderConfigurationNLWallet: AuthenticationProviderConfigurationNlWallet;
|
|
19106
20059
|
/** Retrieve a single flow authentication scopes. */
|
|
19107
20060
|
findAuthenticationScope: AuthenticationScope;
|
|
20061
|
+
/** Get authentication secret */
|
|
20062
|
+
findAuthenticationSecret: AuthenticationSecret;
|
|
19108
20063
|
/** Find billing */
|
|
19109
20064
|
findBilling: Billing;
|
|
19110
20065
|
/** Find billing */
|
|
@@ -19201,6 +20156,8 @@ type Query = {
|
|
|
19201
20156
|
findDisclosureProviderConfiguration: DisclosureProviderConfiguration;
|
|
19202
20157
|
/** Retrieve a single credential meta NL Wallet. */
|
|
19203
20158
|
findDisclosureProviderConfigurationNLWallet: DisclosureProviderConfigurationNlWallet;
|
|
20159
|
+
/** Get disclosure secret */
|
|
20160
|
+
findDisclosureSecret: DisclosureSecret;
|
|
19204
20161
|
findGlobalOAuthMethods?: Maybe<Array<Maybe<OAuthMethod>>>;
|
|
19205
20162
|
/** Retrieve a single flow issuance. */
|
|
19206
20163
|
findIssuance: Issuance;
|
|
@@ -19216,6 +20173,8 @@ type Query = {
|
|
|
19216
20173
|
findIssuanceCredentialMeta: IssuanceCredentialMeta;
|
|
19217
20174
|
/** Retrieve a single flow issuance credential meta datakeeper. */
|
|
19218
20175
|
findIssuanceCredentialMetaDatakeeper: IssuanceCredentialMetaDatakeeper;
|
|
20176
|
+
/** Retrieve a single flow issuance credential meta oid4vc. */
|
|
20177
|
+
findIssuanceCredentialMetaOid4vc: IssuanceCredentialMetaOid4vc;
|
|
19219
20178
|
/** Retrieve a single flow issuance credential meta yivi. */
|
|
19220
20179
|
findIssuanceCredentialMetaYivi: IssuanceCredentialMetaYivi;
|
|
19221
20180
|
/** Get domain */
|
|
@@ -19226,6 +20185,12 @@ type Query = {
|
|
|
19226
20185
|
findIssuanceMapping: IssuanceMapping;
|
|
19227
20186
|
/** Retrieve a single flow issuance provider. */
|
|
19228
20187
|
findIssuanceProvider: IssuanceProvider;
|
|
20188
|
+
/** Retrieve a single IssuanceProviderConfiguration. */
|
|
20189
|
+
findIssuanceProviderConfiguration: IssuanceProviderConfiguration;
|
|
20190
|
+
/** Retrieve a single IssuanceProviderConfigurationNLWallet. */
|
|
20191
|
+
findIssuanceProviderConfigurationNLWallet: IssuanceProviderConfigurationNlWallet;
|
|
20192
|
+
/** Get issuance secret */
|
|
20193
|
+
findIssuanceSecret: IssuanceSecret;
|
|
19229
20194
|
/** Retrieve a single issuer. */
|
|
19230
20195
|
findIssuer: Issuer;
|
|
19231
20196
|
/** Get identity issuer label */
|
|
@@ -19240,8 +20205,12 @@ type Query = {
|
|
|
19240
20205
|
findIssuerMetaMDOC: IssuerMetaMdoc;
|
|
19241
20206
|
/** Retrieve a single issuer meta OID4VC. */
|
|
19242
20207
|
findIssuerMetaOID4VCMDOC: IssuerMetaOid4Vcmdoc;
|
|
20208
|
+
/** Retrieve a single issuer meta OID4VC MDOC key profile. */
|
|
20209
|
+
findIssuerMetaOID4VCMdocKeyProfile: IssuerMetaOid4VcMdocKeyProfile;
|
|
19243
20210
|
/** Retrieve a single issuer meta OID4VC. */
|
|
19244
20211
|
findIssuerMetaOID4VCSDJWT: IssuerMetaOid4Vcsdjwt;
|
|
20212
|
+
/** Retrieve a single issuer meta OID4VC SD-JWT key profile. */
|
|
20213
|
+
findIssuerMetaOID4VCSdJwtKeyProfile: IssuerMetaOid4VcSdJwtKeyProfile;
|
|
19245
20214
|
/** Retrieve a single issuer meta yivi. */
|
|
19246
20215
|
findIssuerMetaYivi: IssuerMetaYivi;
|
|
19247
20216
|
/** Find a single label */
|
|
@@ -19324,6 +20293,8 @@ type Query = {
|
|
|
19324
20293
|
findManyAuthenticationProviders: AuthenticationProviderConnection;
|
|
19325
20294
|
/** Retrieve many flow authentication scopes. */
|
|
19326
20295
|
findManyAuthenticationScopes: AuthenticationScopeConnection;
|
|
20296
|
+
/** Retrieve a list of many authentication secrets. */
|
|
20297
|
+
findManyAuthenticationSecrets: AuthenticationSecretConnection;
|
|
19327
20298
|
/** Retreive many flow authentications. */
|
|
19328
20299
|
findManyAuthentications: AuthenticationConnection;
|
|
19329
20300
|
/** Retrieve a list of many billings. */
|
|
@@ -19420,6 +20391,8 @@ type Query = {
|
|
|
19420
20391
|
findManyDisclosureProviderConfigurations: DisclosureProviderConfigurationConnection;
|
|
19421
20392
|
/** Retrieve many flow disclosure providers. */
|
|
19422
20393
|
findManyDisclosureProviders: DisclosureProviderConnection;
|
|
20394
|
+
/** Retrieve a list of many disclosure secrets. */
|
|
20395
|
+
findManyDisclosureSecrets: DisclosureSecretConnection;
|
|
19423
20396
|
/** Retreive many flow disclosures. */
|
|
19424
20397
|
findManyDisclosures: DisclosureConnection;
|
|
19425
20398
|
/** Retrieve many issuance activities. */
|
|
@@ -19432,6 +20405,8 @@ type Query = {
|
|
|
19432
20405
|
findManyIssuanceCredentialMeta: IssuanceCredentialMetaConnection;
|
|
19433
20406
|
/** Retrieve many flow issuance credential meta datakeeper. */
|
|
19434
20407
|
findManyIssuanceCredentialMetaDatakeeper: IssuanceCredentialMetaDatakeeperConnection;
|
|
20408
|
+
/** Retrieve many flow issuance credential meta oid4vc. */
|
|
20409
|
+
findManyIssuanceCredentialMetaOid4vc: IssuanceCredentialMetaOid4vcConnection;
|
|
19435
20410
|
/** Retrieve many flow issuance credential meta yivi. */
|
|
19436
20411
|
findManyIssuanceCredentialMetaYivi: IssuanceCredentialMetaYiviConnection;
|
|
19437
20412
|
/** Retrieve many flow issuance credentials. */
|
|
@@ -19442,8 +20417,14 @@ type Query = {
|
|
|
19442
20417
|
findManyIssuanceLabels: IssuanceLabelConnection;
|
|
19443
20418
|
/** Retrieve a list of many mappings. */
|
|
19444
20419
|
findManyIssuanceMappings: IssuanceMappingConnection;
|
|
20420
|
+
/** Retrieve many IssuanceProviderConfigurationNLWallet. */
|
|
20421
|
+
findManyIssuanceProviderConfigurationNLWallets: IssuanceProviderConfigurationNlWalletConnection;
|
|
20422
|
+
/** Retrieve many IssuanceProviderConfiguration. */
|
|
20423
|
+
findManyIssuanceProviderConfigurations: IssuanceProviderConfigurationConnection;
|
|
19445
20424
|
/** Retrieve many flow issuance providers. */
|
|
19446
20425
|
findManyIssuanceProviders: IssuanceProviderConnection;
|
|
20426
|
+
/** Retrieve a list of many issuance secrets. */
|
|
20427
|
+
findManyIssuanceSecrets: IssuanceSecretConnection;
|
|
19447
20428
|
/** Retreive many flow issuances. */
|
|
19448
20429
|
findManyIssuances: IssuanceConnection;
|
|
19449
20430
|
/** Retrieve a list of many identity issuer labels. */
|
|
@@ -19458,8 +20439,12 @@ type Query = {
|
|
|
19458
20439
|
findManyIssuerMetaMDOC: IssuerMetaMdocConnection;
|
|
19459
20440
|
/** Retrieve many issuer meta OID4VC. */
|
|
19460
20441
|
findManyIssuerMetaOID4VCMDOC: IssuerMetaOid4VcmdocConnection;
|
|
20442
|
+
/** Retrieve many issuer meta OID4VC MDOC key profiles. */
|
|
20443
|
+
findManyIssuerMetaOID4VCMdocKeyProfile: IssuerMetaOid4VcMdocKeyProfileConnection;
|
|
19461
20444
|
/** Retrieve many issuer meta OID4VC. */
|
|
19462
20445
|
findManyIssuerMetaOID4VCSDJWT: IssuerMetaOid4VcsdjwtConnection;
|
|
20446
|
+
/** Retrieve many issuer meta OID4VC SD-JWT key profiles. */
|
|
20447
|
+
findManyIssuerMetaOID4VCSdJwtKeyProfile: IssuerMetaOid4VcSdJwtKeyProfileConnection;
|
|
19463
20448
|
/** Retrieve many issuer meta yivi. */
|
|
19464
20449
|
findManyIssuerMetaYivi: IssuerMetaYiviConnection;
|
|
19465
20450
|
/** Retreive many issuer. */
|
|
@@ -19472,6 +20457,8 @@ type Query = {
|
|
|
19472
20457
|
findManyMaintenances: MaintenanceConnection;
|
|
19473
20458
|
/** Retrieve many mappingIssuance attributes. */
|
|
19474
20459
|
findManyMappingIssuanceAttributes: MappingIssuanceAttributeConnection;
|
|
20460
|
+
/** Retrieve many mappingIssuance claims. */
|
|
20461
|
+
findManyMappingIssuanceClaims: MappingIssuanceClaimConnection;
|
|
19475
20462
|
/** Retrieve many mappingIssuance links. */
|
|
19476
20463
|
findManyMappingIssuanceLinks: MappingIssuanceLinkConnection;
|
|
19477
20464
|
/** Retrieve many mappingIssuances. */
|
|
@@ -19614,6 +20601,8 @@ type Query = {
|
|
|
19614
20601
|
findManySignatureProviderConfigurations: SignatureProviderConfigurationConnection;
|
|
19615
20602
|
/** Retrieve many flow signature providers. */
|
|
19616
20603
|
findManySignatureProviders: SignatureProviderConnection;
|
|
20604
|
+
/** Retrieve a list of many signature secrets. */
|
|
20605
|
+
findManySignatureSecrets: SignatureSecretConnection;
|
|
19617
20606
|
/** Retreive many flow signatures. */
|
|
19618
20607
|
findManySignatures: SignatureConnection;
|
|
19619
20608
|
/** FindMany StudioPlanControlOverride. */
|
|
@@ -19634,6 +20623,8 @@ type Query = {
|
|
|
19634
20623
|
findMappingIssuance: MappingIssuance;
|
|
19635
20624
|
/** Retrieve a single mappingIssuance attribute. */
|
|
19636
20625
|
findMappingIssuanceAttribute: MappingIssuanceAttribute;
|
|
20626
|
+
/** Retrieve a single mappingIssuance claim. */
|
|
20627
|
+
findMappingIssuanceClaim: MappingIssuanceClaim;
|
|
19637
20628
|
/** Retrieve a single mappingIssuance link. */
|
|
19638
20629
|
findMappingIssuanceLink: MappingIssuanceLink;
|
|
19639
20630
|
/** Retrieve a single mappingVerification. */
|
|
@@ -19771,6 +20762,8 @@ type Query = {
|
|
|
19771
20762
|
findSignatureProviderConfiguration: SignatureProviderConfiguration;
|
|
19772
20763
|
/** Retrieve a single credential meta NL Wallet. */
|
|
19773
20764
|
findSignatureProviderConfigurationNLWallet: SignatureProviderConfigurationNlWallet;
|
|
20765
|
+
/** Get signature secret */
|
|
20766
|
+
findSignatureSecret: SignatureSecret;
|
|
19774
20767
|
/** Find StudioPlan. */
|
|
19775
20768
|
findStudioPlan: StudioPlan;
|
|
19776
20769
|
/** Find StudioPlanControl. */
|
|
@@ -20211,6 +21204,17 @@ type QueryFindAuthenticationProviderConfigurationNlWalletArgs = {
|
|
|
20211
21204
|
type QueryFindAuthenticationScopeArgs = {
|
|
20212
21205
|
uuid: Scalars['UUID']['input'];
|
|
20213
21206
|
};
|
|
21207
|
+
/**
|
|
21208
|
+
* Introspect a GraphQL input type and return its JSON Schema
|
|
21209
|
+
* representation. All fields are included by default; fields decorated
|
|
21210
|
+
* with `@excludeFromJsonSchema` are excluded.
|
|
21211
|
+
*
|
|
21212
|
+
* Returns a standard JSON Schema object with `type`, `properties`, and
|
|
21213
|
+
* `required` keys that the UI can use to render typed form controls.
|
|
21214
|
+
*/
|
|
21215
|
+
type QueryFindAuthenticationSecretArgs = {
|
|
21216
|
+
uuid?: InputMaybe<Scalars['UUID']['input']>;
|
|
21217
|
+
};
|
|
20214
21218
|
/**
|
|
20215
21219
|
* Introspect a GraphQL input type and return its JSON Schema
|
|
20216
21220
|
* representation. All fields are included by default; fields decorated
|
|
@@ -20739,6 +21743,17 @@ type QueryFindDisclosureProviderConfigurationArgs = {
|
|
|
20739
21743
|
type QueryFindDisclosureProviderConfigurationNlWalletArgs = {
|
|
20740
21744
|
uuid: Scalars['UUID']['input'];
|
|
20741
21745
|
};
|
|
21746
|
+
/**
|
|
21747
|
+
* Introspect a GraphQL input type and return its JSON Schema
|
|
21748
|
+
* representation. All fields are included by default; fields decorated
|
|
21749
|
+
* with `@excludeFromJsonSchema` are excluded.
|
|
21750
|
+
*
|
|
21751
|
+
* Returns a standard JSON Schema object with `type`, `properties`, and
|
|
21752
|
+
* `required` keys that the UI can use to render typed form controls.
|
|
21753
|
+
*/
|
|
21754
|
+
type QueryFindDisclosureSecretArgs = {
|
|
21755
|
+
uuid?: InputMaybe<Scalars['UUID']['input']>;
|
|
21756
|
+
};
|
|
20742
21757
|
/**
|
|
20743
21758
|
* Introspect a GraphQL input type and return its JSON Schema
|
|
20744
21759
|
* representation. All fields are included by default; fields decorated
|
|
@@ -20827,6 +21842,17 @@ type QueryFindIssuanceCredentialMetaArgs = {
|
|
|
20827
21842
|
type QueryFindIssuanceCredentialMetaDatakeeperArgs = {
|
|
20828
21843
|
uuid: Scalars['UUID']['input'];
|
|
20829
21844
|
};
|
|
21845
|
+
/**
|
|
21846
|
+
* Introspect a GraphQL input type and return its JSON Schema
|
|
21847
|
+
* representation. All fields are included by default; fields decorated
|
|
21848
|
+
* with `@excludeFromJsonSchema` are excluded.
|
|
21849
|
+
*
|
|
21850
|
+
* Returns a standard JSON Schema object with `type`, `properties`, and
|
|
21851
|
+
* `required` keys that the UI can use to render typed form controls.
|
|
21852
|
+
*/
|
|
21853
|
+
type QueryFindIssuanceCredentialMetaOid4vcArgs = {
|
|
21854
|
+
uuid: Scalars['UUID']['input'];
|
|
21855
|
+
};
|
|
20830
21856
|
/**
|
|
20831
21857
|
* Introspect a GraphQL input type and return its JSON Schema
|
|
20832
21858
|
* representation. All fields are included by default; fields decorated
|
|
@@ -20882,6 +21908,39 @@ type QueryFindIssuanceMappingArgs = {
|
|
|
20882
21908
|
type QueryFindIssuanceProviderArgs = {
|
|
20883
21909
|
uuid: Scalars['UUID']['input'];
|
|
20884
21910
|
};
|
|
21911
|
+
/**
|
|
21912
|
+
* Introspect a GraphQL input type and return its JSON Schema
|
|
21913
|
+
* representation. All fields are included by default; fields decorated
|
|
21914
|
+
* with `@excludeFromJsonSchema` are excluded.
|
|
21915
|
+
*
|
|
21916
|
+
* Returns a standard JSON Schema object with `type`, `properties`, and
|
|
21917
|
+
* `required` keys that the UI can use to render typed form controls.
|
|
21918
|
+
*/
|
|
21919
|
+
type QueryFindIssuanceProviderConfigurationArgs = {
|
|
21920
|
+
uuid: Scalars['UUID']['input'];
|
|
21921
|
+
};
|
|
21922
|
+
/**
|
|
21923
|
+
* Introspect a GraphQL input type and return its JSON Schema
|
|
21924
|
+
* representation. All fields are included by default; fields decorated
|
|
21925
|
+
* with `@excludeFromJsonSchema` are excluded.
|
|
21926
|
+
*
|
|
21927
|
+
* Returns a standard JSON Schema object with `type`, `properties`, and
|
|
21928
|
+
* `required` keys that the UI can use to render typed form controls.
|
|
21929
|
+
*/
|
|
21930
|
+
type QueryFindIssuanceProviderConfigurationNlWalletArgs = {
|
|
21931
|
+
uuid: Scalars['UUID']['input'];
|
|
21932
|
+
};
|
|
21933
|
+
/**
|
|
21934
|
+
* Introspect a GraphQL input type and return its JSON Schema
|
|
21935
|
+
* representation. All fields are included by default; fields decorated
|
|
21936
|
+
* with `@excludeFromJsonSchema` are excluded.
|
|
21937
|
+
*
|
|
21938
|
+
* Returns a standard JSON Schema object with `type`, `properties`, and
|
|
21939
|
+
* `required` keys that the UI can use to render typed form controls.
|
|
21940
|
+
*/
|
|
21941
|
+
type QueryFindIssuanceSecretArgs = {
|
|
21942
|
+
uuid?: InputMaybe<Scalars['UUID']['input']>;
|
|
21943
|
+
};
|
|
20885
21944
|
/**
|
|
20886
21945
|
* Introspect a GraphQL input type and return its JSON Schema
|
|
20887
21946
|
* representation. All fields are included by default; fields decorated
|
|
@@ -20959,6 +22018,17 @@ type QueryFindIssuerMetaMdocArgs = {
|
|
|
20959
22018
|
type QueryFindIssuerMetaOid4VcmdocArgs = {
|
|
20960
22019
|
uuid: Scalars['UUID']['input'];
|
|
20961
22020
|
};
|
|
22021
|
+
/**
|
|
22022
|
+
* Introspect a GraphQL input type and return its JSON Schema
|
|
22023
|
+
* representation. All fields are included by default; fields decorated
|
|
22024
|
+
* with `@excludeFromJsonSchema` are excluded.
|
|
22025
|
+
*
|
|
22026
|
+
* Returns a standard JSON Schema object with `type`, `properties`, and
|
|
22027
|
+
* `required` keys that the UI can use to render typed form controls.
|
|
22028
|
+
*/
|
|
22029
|
+
type QueryFindIssuerMetaOid4VcMdocKeyProfileArgs = {
|
|
22030
|
+
uuid: Scalars['UUID']['input'];
|
|
22031
|
+
};
|
|
20962
22032
|
/**
|
|
20963
22033
|
* Introspect a GraphQL input type and return its JSON Schema
|
|
20964
22034
|
* representation. All fields are included by default; fields decorated
|
|
@@ -20970,6 +22040,17 @@ type QueryFindIssuerMetaOid4VcmdocArgs = {
|
|
|
20970
22040
|
type QueryFindIssuerMetaOid4VcsdjwtArgs = {
|
|
20971
22041
|
uuid: Scalars['UUID']['input'];
|
|
20972
22042
|
};
|
|
22043
|
+
/**
|
|
22044
|
+
* Introspect a GraphQL input type and return its JSON Schema
|
|
22045
|
+
* representation. All fields are included by default; fields decorated
|
|
22046
|
+
* with `@excludeFromJsonSchema` are excluded.
|
|
22047
|
+
*
|
|
22048
|
+
* Returns a standard JSON Schema object with `type`, `properties`, and
|
|
22049
|
+
* `required` keys that the UI can use to render typed form controls.
|
|
22050
|
+
*/
|
|
22051
|
+
type QueryFindIssuerMetaOid4VcSdJwtKeyProfileArgs = {
|
|
22052
|
+
uuid: Scalars['UUID']['input'];
|
|
22053
|
+
};
|
|
20973
22054
|
/**
|
|
20974
22055
|
* Introspect a GraphQL input type and return its JSON Schema
|
|
20975
22056
|
* representation. All fields are included by default; fields decorated
|
|
@@ -21421,6 +22502,17 @@ type QueryFindManyAuthenticationProvidersArgs = {
|
|
|
21421
22502
|
type QueryFindManyAuthenticationScopesArgs = {
|
|
21422
22503
|
input?: InputMaybe<FindManyAuthenticationScopesInput>;
|
|
21423
22504
|
};
|
|
22505
|
+
/**
|
|
22506
|
+
* Introspect a GraphQL input type and return its JSON Schema
|
|
22507
|
+
* representation. All fields are included by default; fields decorated
|
|
22508
|
+
* with `@excludeFromJsonSchema` are excluded.
|
|
22509
|
+
*
|
|
22510
|
+
* Returns a standard JSON Schema object with `type`, `properties`, and
|
|
22511
|
+
* `required` keys that the UI can use to render typed form controls.
|
|
22512
|
+
*/
|
|
22513
|
+
type QueryFindManyAuthenticationSecretsArgs = {
|
|
22514
|
+
input?: InputMaybe<FindManyAuthenticationSecretsInput>;
|
|
22515
|
+
};
|
|
21424
22516
|
/**
|
|
21425
22517
|
* Introspect a GraphQL input type and return its JSON Schema
|
|
21426
22518
|
* representation. All fields are included by default; fields decorated
|
|
@@ -21949,6 +23041,17 @@ type QueryFindManyDisclosureProviderConfigurationsArgs = {
|
|
|
21949
23041
|
type QueryFindManyDisclosureProvidersArgs = {
|
|
21950
23042
|
input?: InputMaybe<FindManyDisclosureProvidersInput>;
|
|
21951
23043
|
};
|
|
23044
|
+
/**
|
|
23045
|
+
* Introspect a GraphQL input type and return its JSON Schema
|
|
23046
|
+
* representation. All fields are included by default; fields decorated
|
|
23047
|
+
* with `@excludeFromJsonSchema` are excluded.
|
|
23048
|
+
*
|
|
23049
|
+
* Returns a standard JSON Schema object with `type`, `properties`, and
|
|
23050
|
+
* `required` keys that the UI can use to render typed form controls.
|
|
23051
|
+
*/
|
|
23052
|
+
type QueryFindManyDisclosureSecretsArgs = {
|
|
23053
|
+
input?: InputMaybe<FindManyDisclosureSecretsInput>;
|
|
23054
|
+
};
|
|
21952
23055
|
/**
|
|
21953
23056
|
* Introspect a GraphQL input type and return its JSON Schema
|
|
21954
23057
|
* representation. All fields are included by default; fields decorated
|
|
@@ -22015,6 +23118,17 @@ type QueryFindManyIssuanceCredentialMetaArgs = {
|
|
|
22015
23118
|
type QueryFindManyIssuanceCredentialMetaDatakeeperArgs = {
|
|
22016
23119
|
input?: InputMaybe<FindManyIssuanceCredentialMetaDatakeeperInput>;
|
|
22017
23120
|
};
|
|
23121
|
+
/**
|
|
23122
|
+
* Introspect a GraphQL input type and return its JSON Schema
|
|
23123
|
+
* representation. All fields are included by default; fields decorated
|
|
23124
|
+
* with `@excludeFromJsonSchema` are excluded.
|
|
23125
|
+
*
|
|
23126
|
+
* Returns a standard JSON Schema object with `type`, `properties`, and
|
|
23127
|
+
* `required` keys that the UI can use to render typed form controls.
|
|
23128
|
+
*/
|
|
23129
|
+
type QueryFindManyIssuanceCredentialMetaOid4vcArgs = {
|
|
23130
|
+
input?: InputMaybe<FindManyIssuanceCredentialMetaOid4vcInput>;
|
|
23131
|
+
};
|
|
22018
23132
|
/**
|
|
22019
23133
|
* Introspect a GraphQL input type and return its JSON Schema
|
|
22020
23134
|
* representation. All fields are included by default; fields decorated
|
|
@@ -22070,6 +23184,28 @@ type QueryFindManyIssuanceLabelsArgs = {
|
|
|
22070
23184
|
type QueryFindManyIssuanceMappingsArgs = {
|
|
22071
23185
|
input?: InputMaybe<FindManyIssuanceMappingsInput>;
|
|
22072
23186
|
};
|
|
23187
|
+
/**
|
|
23188
|
+
* Introspect a GraphQL input type and return its JSON Schema
|
|
23189
|
+
* representation. All fields are included by default; fields decorated
|
|
23190
|
+
* with `@excludeFromJsonSchema` are excluded.
|
|
23191
|
+
*
|
|
23192
|
+
* Returns a standard JSON Schema object with `type`, `properties`, and
|
|
23193
|
+
* `required` keys that the UI can use to render typed form controls.
|
|
23194
|
+
*/
|
|
23195
|
+
type QueryFindManyIssuanceProviderConfigurationNlWalletsArgs = {
|
|
23196
|
+
input?: InputMaybe<FindManyIssuanceProviderConfigurationNlWalletsInput>;
|
|
23197
|
+
};
|
|
23198
|
+
/**
|
|
23199
|
+
* Introspect a GraphQL input type and return its JSON Schema
|
|
23200
|
+
* representation. All fields are included by default; fields decorated
|
|
23201
|
+
* with `@excludeFromJsonSchema` are excluded.
|
|
23202
|
+
*
|
|
23203
|
+
* Returns a standard JSON Schema object with `type`, `properties`, and
|
|
23204
|
+
* `required` keys that the UI can use to render typed form controls.
|
|
23205
|
+
*/
|
|
23206
|
+
type QueryFindManyIssuanceProviderConfigurationsArgs = {
|
|
23207
|
+
input?: InputMaybe<FindManyIssuanceProviderConfigurationsInput>;
|
|
23208
|
+
};
|
|
22073
23209
|
/**
|
|
22074
23210
|
* Introspect a GraphQL input type and return its JSON Schema
|
|
22075
23211
|
* representation. All fields are included by default; fields decorated
|
|
@@ -22081,6 +23217,17 @@ type QueryFindManyIssuanceMappingsArgs = {
|
|
|
22081
23217
|
type QueryFindManyIssuanceProvidersArgs = {
|
|
22082
23218
|
input?: InputMaybe<FindManyIssuanceProvidersInput>;
|
|
22083
23219
|
};
|
|
23220
|
+
/**
|
|
23221
|
+
* Introspect a GraphQL input type and return its JSON Schema
|
|
23222
|
+
* representation. All fields are included by default; fields decorated
|
|
23223
|
+
* with `@excludeFromJsonSchema` are excluded.
|
|
23224
|
+
*
|
|
23225
|
+
* Returns a standard JSON Schema object with `type`, `properties`, and
|
|
23226
|
+
* `required` keys that the UI can use to render typed form controls.
|
|
23227
|
+
*/
|
|
23228
|
+
type QueryFindManyIssuanceSecretsArgs = {
|
|
23229
|
+
input?: InputMaybe<FindManyIssuanceSecretsInput>;
|
|
23230
|
+
};
|
|
22084
23231
|
/**
|
|
22085
23232
|
* Introspect a GraphQL input type and return its JSON Schema
|
|
22086
23233
|
* representation. All fields are included by default; fields decorated
|
|
@@ -22158,6 +23305,17 @@ type QueryFindManyIssuerMetaMdocArgs = {
|
|
|
22158
23305
|
type QueryFindManyIssuerMetaOid4VcmdocArgs = {
|
|
22159
23306
|
input?: InputMaybe<FindManyIssuerMetaOid4VcmdocInput>;
|
|
22160
23307
|
};
|
|
23308
|
+
/**
|
|
23309
|
+
* Introspect a GraphQL input type and return its JSON Schema
|
|
23310
|
+
* representation. All fields are included by default; fields decorated
|
|
23311
|
+
* with `@excludeFromJsonSchema` are excluded.
|
|
23312
|
+
*
|
|
23313
|
+
* Returns a standard JSON Schema object with `type`, `properties`, and
|
|
23314
|
+
* `required` keys that the UI can use to render typed form controls.
|
|
23315
|
+
*/
|
|
23316
|
+
type QueryFindManyIssuerMetaOid4VcMdocKeyProfileArgs = {
|
|
23317
|
+
input?: InputMaybe<FindManyIssuerMetaOid4VcMdocKeyProfileInput>;
|
|
23318
|
+
};
|
|
22161
23319
|
/**
|
|
22162
23320
|
* Introspect a GraphQL input type and return its JSON Schema
|
|
22163
23321
|
* representation. All fields are included by default; fields decorated
|
|
@@ -22169,6 +23327,17 @@ type QueryFindManyIssuerMetaOid4VcmdocArgs = {
|
|
|
22169
23327
|
type QueryFindManyIssuerMetaOid4VcsdjwtArgs = {
|
|
22170
23328
|
input?: InputMaybe<FindManyIssuerMetaOid4VcsdjwtInput>;
|
|
22171
23329
|
};
|
|
23330
|
+
/**
|
|
23331
|
+
* Introspect a GraphQL input type and return its JSON Schema
|
|
23332
|
+
* representation. All fields are included by default; fields decorated
|
|
23333
|
+
* with `@excludeFromJsonSchema` are excluded.
|
|
23334
|
+
*
|
|
23335
|
+
* Returns a standard JSON Schema object with `type`, `properties`, and
|
|
23336
|
+
* `required` keys that the UI can use to render typed form controls.
|
|
23337
|
+
*/
|
|
23338
|
+
type QueryFindManyIssuerMetaOid4VcSdJwtKeyProfileArgs = {
|
|
23339
|
+
input?: InputMaybe<FindManyIssuerMetaOid4VcSdJwtKeyProfileInput>;
|
|
23340
|
+
};
|
|
22172
23341
|
/**
|
|
22173
23342
|
* Introspect a GraphQL input type and return its JSON Schema
|
|
22174
23343
|
* representation. All fields are included by default; fields decorated
|
|
@@ -22235,6 +23404,17 @@ type QueryFindManyMaintenancesArgs = {
|
|
|
22235
23404
|
type QueryFindManyMappingIssuanceAttributesArgs = {
|
|
22236
23405
|
input?: InputMaybe<FindManyMappingIssuanceAttributesInput>;
|
|
22237
23406
|
};
|
|
23407
|
+
/**
|
|
23408
|
+
* Introspect a GraphQL input type and return its JSON Schema
|
|
23409
|
+
* representation. All fields are included by default; fields decorated
|
|
23410
|
+
* with `@excludeFromJsonSchema` are excluded.
|
|
23411
|
+
*
|
|
23412
|
+
* Returns a standard JSON Schema object with `type`, `properties`, and
|
|
23413
|
+
* `required` keys that the UI can use to render typed form controls.
|
|
23414
|
+
*/
|
|
23415
|
+
type QueryFindManyMappingIssuanceClaimsArgs = {
|
|
23416
|
+
input?: InputMaybe<FindManyMappingIssuanceClaimsInput>;
|
|
23417
|
+
};
|
|
22238
23418
|
/**
|
|
22239
23419
|
* Introspect a GraphQL input type and return its JSON Schema
|
|
22240
23420
|
* representation. All fields are included by default; fields decorated
|
|
@@ -23017,6 +24197,17 @@ type QueryFindManySignatureProviderConfigurationsArgs = {
|
|
|
23017
24197
|
type QueryFindManySignatureProvidersArgs = {
|
|
23018
24198
|
input?: InputMaybe<FindManySignatureProvidersInput>;
|
|
23019
24199
|
};
|
|
24200
|
+
/**
|
|
24201
|
+
* Introspect a GraphQL input type and return its JSON Schema
|
|
24202
|
+
* representation. All fields are included by default; fields decorated
|
|
24203
|
+
* with `@excludeFromJsonSchema` are excluded.
|
|
24204
|
+
*
|
|
24205
|
+
* Returns a standard JSON Schema object with `type`, `properties`, and
|
|
24206
|
+
* `required` keys that the UI can use to render typed form controls.
|
|
24207
|
+
*/
|
|
24208
|
+
type QueryFindManySignatureSecretsArgs = {
|
|
24209
|
+
input?: InputMaybe<FindManySignatureSecretsInput>;
|
|
24210
|
+
};
|
|
23020
24211
|
/**
|
|
23021
24212
|
* Introspect a GraphQL input type and return its JSON Schema
|
|
23022
24213
|
* representation. All fields are included by default; fields decorated
|
|
@@ -23127,6 +24318,17 @@ type QueryFindMappingIssuanceArgs = {
|
|
|
23127
24318
|
type QueryFindMappingIssuanceAttributeArgs = {
|
|
23128
24319
|
uuid: Scalars['UUID']['input'];
|
|
23129
24320
|
};
|
|
24321
|
+
/**
|
|
24322
|
+
* Introspect a GraphQL input type and return its JSON Schema
|
|
24323
|
+
* representation. All fields are included by default; fields decorated
|
|
24324
|
+
* with `@excludeFromJsonSchema` are excluded.
|
|
24325
|
+
*
|
|
24326
|
+
* Returns a standard JSON Schema object with `type`, `properties`, and
|
|
24327
|
+
* `required` keys that the UI can use to render typed form controls.
|
|
24328
|
+
*/
|
|
24329
|
+
type QueryFindMappingIssuanceClaimArgs = {
|
|
24330
|
+
uuid: Scalars['UUID']['input'];
|
|
24331
|
+
};
|
|
23130
24332
|
/**
|
|
23131
24333
|
* Introspect a GraphQL input type and return its JSON Schema
|
|
23132
24334
|
* representation. All fields are included by default; fields decorated
|
|
@@ -23897,6 +25099,17 @@ type QueryFindSignatureProviderConfigurationArgs = {
|
|
|
23897
25099
|
type QueryFindSignatureProviderConfigurationNlWalletArgs = {
|
|
23898
25100
|
uuid: Scalars['UUID']['input'];
|
|
23899
25101
|
};
|
|
25102
|
+
/**
|
|
25103
|
+
* Introspect a GraphQL input type and return its JSON Schema
|
|
25104
|
+
* representation. All fields are included by default; fields decorated
|
|
25105
|
+
* with `@excludeFromJsonSchema` are excluded.
|
|
25106
|
+
*
|
|
25107
|
+
* Returns a standard JSON Schema object with `type`, `properties`, and
|
|
25108
|
+
* `required` keys that the UI can use to render typed form controls.
|
|
25109
|
+
*/
|
|
25110
|
+
type QueryFindSignatureSecretArgs = {
|
|
25111
|
+
uuid?: InputMaybe<Scalars['UUID']['input']>;
|
|
25112
|
+
};
|
|
23900
25113
|
/**
|
|
23901
25114
|
* Introspect a GraphQL input type and return its JSON Schema
|
|
23902
25115
|
* representation. All fields are included by default; fields decorated
|
|
@@ -24443,6 +25656,8 @@ type Signature = Model & {
|
|
|
24443
25656
|
__typename?: 'Signature';
|
|
24444
25657
|
/** The creation timestamp. */
|
|
24445
25658
|
createdAt: Scalars['DateTime']['output'];
|
|
25659
|
+
/** The data deletion policy. */
|
|
25660
|
+
deletionPolicy?: Maybe<Scalars['String']['output']>;
|
|
24446
25661
|
/** The JWT media type */
|
|
24447
25662
|
jwtMediaType: Scalars['JwtMediaType']['output'];
|
|
24448
25663
|
/** The meta of the flow. */
|
|
@@ -24451,8 +25666,14 @@ type Signature = Model & {
|
|
|
24451
25666
|
name: Scalars['NonEmpty']['output'];
|
|
24452
25667
|
/** The organization the flow belongs to. */
|
|
24453
25668
|
organization: Organization;
|
|
25669
|
+
/** The purpose statement describing why attributes are being attested. */
|
|
25670
|
+
purposeStatement?: Maybe<Scalars['String']['output']>;
|
|
24454
25671
|
/** The indicator if explicit consent is required */
|
|
24455
25672
|
requireExplicitConsent: Scalars['Boolean']['output'];
|
|
25673
|
+
/** The data retention policy. */
|
|
25674
|
+
retentionPolicy?: Maybe<Scalars['String']['output']>;
|
|
25675
|
+
/** The data sharing policy. */
|
|
25676
|
+
sharingPolicy?: Maybe<Scalars['String']['output']>;
|
|
24456
25677
|
/** The associated brands with this signature */
|
|
24457
25678
|
signatureBrands: SignatureBrandConnection;
|
|
24458
25679
|
/** The associated domains with this signature */
|
|
@@ -24463,6 +25684,8 @@ type Signature = Model & {
|
|
|
24463
25684
|
signatureMappings: SignatureMappingConnection;
|
|
24464
25685
|
/** A list of flow providers belonging to this flow signature. */
|
|
24465
25686
|
signatureProviders: SignatureProviderConnection;
|
|
25687
|
+
/** The associated secrets with this signature */
|
|
25688
|
+
signatureSecrets: SignatureSecretConnection;
|
|
24466
25689
|
/** The state of the flow. */
|
|
24467
25690
|
state: SignatureState;
|
|
24468
25691
|
/** Shortcut to active studio controls associated to this object */
|
|
@@ -24492,6 +25715,10 @@ type SignatureSignatureMappingsArgs = {
|
|
|
24492
25715
|
type SignatureSignatureProvidersArgs = {
|
|
24493
25716
|
input?: InputMaybe<FindManySignatureProvidersInput>;
|
|
24494
25717
|
};
|
|
25718
|
+
/** Flow signature definition. */
|
|
25719
|
+
type SignatureSignatureSecretsArgs = {
|
|
25720
|
+
input?: InputMaybe<FindManySignatureSecretsInput>;
|
|
25721
|
+
};
|
|
24495
25722
|
/** SignatureAction */
|
|
24496
25723
|
declare enum SignatureAction {
|
|
24497
25724
|
Activate = "ACTIVATE",
|
|
@@ -25077,6 +26304,50 @@ type SignatureProviderSortInput = {
|
|
|
25077
26304
|
/** The field to sort on. */
|
|
25078
26305
|
field: SignatureProviderSortEnum;
|
|
25079
26306
|
};
|
|
26307
|
+
/** Signature secret definition. Links an organization secret to a signature flow. */
|
|
26308
|
+
type SignatureSecret = Model & {
|
|
26309
|
+
__typename?: 'SignatureSecret';
|
|
26310
|
+
/** The creation time */
|
|
26311
|
+
createdAt: Scalars['DateTime']['output'];
|
|
26312
|
+
/** The organization secret */
|
|
26313
|
+
organizationSecret: OrganizationSecret;
|
|
26314
|
+
/** The flow signature */
|
|
26315
|
+
signature: Signature;
|
|
26316
|
+
/** The update time */
|
|
26317
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
26318
|
+
/** The UUID */
|
|
26319
|
+
uuid: Scalars['UUID']['output'];
|
|
26320
|
+
};
|
|
26321
|
+
/** A connection */
|
|
26322
|
+
type SignatureSecretConnection = {
|
|
26323
|
+
__typename?: 'SignatureSecretConnection';
|
|
26324
|
+
edges: Array<SignatureSecretEdge>;
|
|
26325
|
+
pageInfo: PageInfo;
|
|
26326
|
+
};
|
|
26327
|
+
/** An edge */
|
|
26328
|
+
type SignatureSecretEdge = {
|
|
26329
|
+
__typename?: 'SignatureSecretEdge';
|
|
26330
|
+
cursor: Scalars['String']['output'];
|
|
26331
|
+
node: SignatureSecret;
|
|
26332
|
+
};
|
|
26333
|
+
/** Fields which can be used to filter signature secrets on. Value must be camel case. */
|
|
26334
|
+
declare enum SignatureSecretFilteringField {
|
|
26335
|
+
OrganizationSecretUuid = "organizationSecretUuid",
|
|
26336
|
+
SignatureUuid = "signatureUuid",
|
|
26337
|
+
Uuid = "uuid"
|
|
26338
|
+
}
|
|
26339
|
+
/** Fields which can be used to sort signature secrets on. Value must be camel case. */
|
|
26340
|
+
declare enum SignatureSecretSortEnum {
|
|
26341
|
+
CreatedAt = "createdAt",
|
|
26342
|
+
UpdatedAt = "updatedAt"
|
|
26343
|
+
}
|
|
26344
|
+
/** Input options for sorting signature secrets. */
|
|
26345
|
+
type SignatureSecretSortInput = {
|
|
26346
|
+
/** The direction to sort on. */
|
|
26347
|
+
direction: OrderDirection;
|
|
26348
|
+
/** The field to sort on. */
|
|
26349
|
+
field: SignatureSecretSortEnum;
|
|
26350
|
+
};
|
|
25080
26351
|
/** Fields which can be used to sort flow signatures on. Value must be camel case. */
|
|
25081
26352
|
declare enum SignatureSortEnum {
|
|
25082
26353
|
CreatedAt = "createdAt",
|
|
@@ -25404,6 +26675,11 @@ type TransitionOrganizationTypeInput = {
|
|
|
25404
26675
|
type UpdateAppInput = {
|
|
25405
26676
|
/** The base64Logo of the app. */
|
|
25406
26677
|
base64Logo?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
26678
|
+
/**
|
|
26679
|
+
* Primary operating regions as ISO 3166-1 alpha-2 country codes.
|
|
26680
|
+
* Most apps can also be used outside these regions.
|
|
26681
|
+
*/
|
|
26682
|
+
countries?: InputMaybe<Array<Scalars['ISO3166']['input']>>;
|
|
25407
26683
|
/** The name of the app. */
|
|
25408
26684
|
name?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
25409
26685
|
};
|
|
@@ -25592,8 +26868,16 @@ type UpdateAuthenticationDomainInput = {
|
|
|
25592
26868
|
};
|
|
25593
26869
|
/** Update Input */
|
|
25594
26870
|
type UpdateAuthenticationInput = {
|
|
26871
|
+
/** The data deletion policy. */
|
|
26872
|
+
deletionPolicy?: InputMaybe<Scalars['String']['input']>;
|
|
25595
26873
|
/** The name of the flow authentication. */
|
|
25596
26874
|
name?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
26875
|
+
/** The purpose statement describing why attributes are being attested. */
|
|
26876
|
+
purposeStatement?: InputMaybe<Scalars['String']['input']>;
|
|
26877
|
+
/** The data retention policy. */
|
|
26878
|
+
retentionPolicy?: InputMaybe<Scalars['String']['input']>;
|
|
26879
|
+
/** The data sharing policy. */
|
|
26880
|
+
sharingPolicy?: InputMaybe<Scalars['String']['input']>;
|
|
25597
26881
|
};
|
|
25598
26882
|
/** Update Input */
|
|
25599
26883
|
type UpdateAuthenticationProviderConfigurationNlWalletInput = {
|
|
@@ -25833,14 +27117,22 @@ type UpdateDisclosureGroupInput = {
|
|
|
25833
27117
|
};
|
|
25834
27118
|
/** Update Input */
|
|
25835
27119
|
type UpdateDisclosureInput = {
|
|
27120
|
+
/** The data deletion policy. */
|
|
27121
|
+
deletionPolicy?: InputMaybe<Scalars['String']['input']>;
|
|
25836
27122
|
/** The JWT media type */
|
|
25837
27123
|
jwtMediaType?: InputMaybe<Scalars['JwtMediaType']['input']>;
|
|
25838
27124
|
/** The meta of the flow disclosure. */
|
|
25839
27125
|
meta?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
25840
27126
|
/** The name of the flow disclosure. */
|
|
25841
27127
|
name?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
27128
|
+
/** The purpose statement describing why attributes are being attested. */
|
|
27129
|
+
purposeStatement?: InputMaybe<Scalars['String']['input']>;
|
|
25842
27130
|
/** The indicator if explicit consent is required */
|
|
25843
27131
|
requireExplicitConsent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27132
|
+
/** The data retention policy. */
|
|
27133
|
+
retentionPolicy?: InputMaybe<Scalars['String']['input']>;
|
|
27134
|
+
/** The data sharing policy. */
|
|
27135
|
+
sharingPolicy?: InputMaybe<Scalars['String']['input']>;
|
|
25844
27136
|
};
|
|
25845
27137
|
/** Update Input */
|
|
25846
27138
|
type UpdateDisclosureProviderConfigurationNlWalletInput = {
|
|
@@ -25859,12 +27151,17 @@ type UpdateIssuanceBrandInput = {
|
|
|
25859
27151
|
};
|
|
25860
27152
|
/** The input for updating a flow credential meta datakeeper */
|
|
25861
27153
|
type UpdateIssuanceCredentialMetaDatakeeperInput = {
|
|
25862
|
-
/** The expiration duration, in
|
|
27154
|
+
/** The expiration duration, in seconds */
|
|
27155
|
+
expirationDuration: Scalars['Int']['input'];
|
|
27156
|
+
};
|
|
27157
|
+
/** The input for updating a flow credential meta oid4vc */
|
|
27158
|
+
type UpdateIssuanceCredentialMetaOid4vcInput = {
|
|
27159
|
+
/** The expiration duration, in seconds */
|
|
25863
27160
|
expirationDuration: Scalars['Int']['input'];
|
|
25864
27161
|
};
|
|
25865
27162
|
/** The input for updating a flow credential meta yivi */
|
|
25866
27163
|
type UpdateIssuanceCredentialMetaYiviInput = {
|
|
25867
|
-
/** The expiration duration, in
|
|
27164
|
+
/** The expiration duration, in seconds */
|
|
25868
27165
|
expirationDuration: Scalars['Int']['input'];
|
|
25869
27166
|
};
|
|
25870
27167
|
/** Update Input */
|
|
@@ -25878,14 +27175,27 @@ type UpdateIssuanceDomainInput = {
|
|
|
25878
27175
|
};
|
|
25879
27176
|
/** Update Input */
|
|
25880
27177
|
type UpdateIssuanceInput = {
|
|
27178
|
+
/** The data deletion policy. */
|
|
27179
|
+
deletionPolicy?: InputMaybe<Scalars['String']['input']>;
|
|
25881
27180
|
/** The JWT media type */
|
|
25882
27181
|
jwtMediaType?: InputMaybe<Scalars['JwtMediaType']['input']>;
|
|
25883
27182
|
/** The meta of the flow issuance. */
|
|
25884
27183
|
meta?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
25885
27184
|
/** The name of the flow issuance. */
|
|
25886
27185
|
name?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
27186
|
+
/** The purpose statement describing why attributes are being attested. */
|
|
27187
|
+
purposeStatement?: InputMaybe<Scalars['String']['input']>;
|
|
25887
27188
|
/** The indicator if explicit consent is required */
|
|
25888
27189
|
requireExplicitConsent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27190
|
+
/** The data retention policy. */
|
|
27191
|
+
retentionPolicy?: InputMaybe<Scalars['String']['input']>;
|
|
27192
|
+
/** The data sharing policy. */
|
|
27193
|
+
sharingPolicy?: InputMaybe<Scalars['String']['input']>;
|
|
27194
|
+
};
|
|
27195
|
+
/** Update Input */
|
|
27196
|
+
type UpdateIssuanceProviderConfigurationNlWalletInput = {
|
|
27197
|
+
/** The attribute UUIDs that must be disclosed before issuance */
|
|
27198
|
+
attributeUuids?: InputMaybe<Array<Scalars['UUID']['input']>>;
|
|
25889
27199
|
};
|
|
25890
27200
|
/** Update Input */
|
|
25891
27201
|
type UpdateIssuanceProviderInput = {
|
|
@@ -25916,32 +27226,66 @@ type UpdateIssuerLocaleInput = {
|
|
|
25916
27226
|
type UpdateIssuerMetaDatakeeperInput = {
|
|
25917
27227
|
/** The did of the issuer */
|
|
25918
27228
|
did?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
27229
|
+
/** The issuer's logo image URI */
|
|
27230
|
+
logo?: InputMaybe<Scalars['String']['input']>;
|
|
25919
27231
|
};
|
|
25920
27232
|
/** Update Input */
|
|
25921
27233
|
type UpdateIssuerMetaMdocInput = {
|
|
25922
27234
|
/** The issuer's public key as a JWK */
|
|
25923
27235
|
jwk?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
27236
|
+
/** The issuer's logo image URI */
|
|
27237
|
+
logo?: InputMaybe<Scalars['String']['input']>;
|
|
25924
27238
|
};
|
|
25925
27239
|
/** Update Input */
|
|
25926
27240
|
type UpdateIssuerMetaOid4VcmdocInput = {
|
|
27241
|
+
/** The certificate identifier in the secret store */
|
|
27242
|
+
certIdentifier?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
25927
27243
|
/** The issuer's public key as a JWK */
|
|
25928
27244
|
jwk?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
25929
27245
|
/** The issuer's logo image URI */
|
|
25930
27246
|
logo?: InputMaybe<Scalars['String']['input']>;
|
|
27247
|
+
/** The private key identifier in the secret store */
|
|
27248
|
+
privateKeyIdentifier?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
27249
|
+
};
|
|
27250
|
+
/** Update Input */
|
|
27251
|
+
type UpdateIssuerMetaOid4VcMdocKeyProfileInput = {
|
|
27252
|
+
/** The certificate identifier in the secret store */
|
|
27253
|
+
certIdentifier?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
27254
|
+
/** The issuer's public key as a JWK */
|
|
27255
|
+
jwk?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
27256
|
+
/** The private key identifier in the secret store */
|
|
27257
|
+
privateKeyIdentifier?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
25931
27258
|
};
|
|
25932
27259
|
/** Update Input */
|
|
25933
27260
|
type UpdateIssuerMetaOid4VcsdjwtInput = {
|
|
27261
|
+
/** The certificate identifier in the secret store */
|
|
27262
|
+
certIdentifier?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
25934
27263
|
/** The issuer's identifier (iss) */
|
|
25935
27264
|
identifier?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
25936
27265
|
/** The issuer's public key as a JWK */
|
|
25937
27266
|
jwk?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
25938
27267
|
/** The issuer's logo image URI */
|
|
25939
27268
|
logo?: InputMaybe<Scalars['String']['input']>;
|
|
27269
|
+
/** The private key identifier in the secret store */
|
|
27270
|
+
privateKeyIdentifier?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
27271
|
+
};
|
|
27272
|
+
/** Update Input */
|
|
27273
|
+
type UpdateIssuerMetaOid4VcSdJwtKeyProfileInput = {
|
|
27274
|
+
/** The certificate identifier in the secret store */
|
|
27275
|
+
certIdentifier?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
27276
|
+
/** The issuer's identifier override (iss) */
|
|
27277
|
+
identifier?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
27278
|
+
/** The issuer's public key as a JWK */
|
|
27279
|
+
jwk?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
27280
|
+
/** The private key identifier in the secret store */
|
|
27281
|
+
privateKeyIdentifier?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
25940
27282
|
};
|
|
25941
27283
|
/** Update Input */
|
|
25942
27284
|
type UpdateIssuerMetaYiviInput = {
|
|
25943
27285
|
/** The identifier of the issuer */
|
|
25944
27286
|
id?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
27287
|
+
/** The issuer's logo image URI */
|
|
27288
|
+
logo?: InputMaybe<Scalars['String']['input']>;
|
|
25945
27289
|
};
|
|
25946
27290
|
/** Input for updating a label */
|
|
25947
27291
|
type UpdateLabelInput = {
|
|
@@ -25974,12 +27318,17 @@ type UpdateMaintenanceInput = {
|
|
|
25974
27318
|
};
|
|
25975
27319
|
/** Update Input */
|
|
25976
27320
|
type UpdateMappingIssuanceAttributeInput = {
|
|
25977
|
-
/** The claims, this attribute will be mapped to. */
|
|
25978
|
-
claims: Array<Scalars['NonEmpty']['input']>;
|
|
25979
27321
|
/** The transform function */
|
|
25980
27322
|
transform?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
25981
27323
|
};
|
|
25982
27324
|
/** Update Input */
|
|
27325
|
+
type UpdateMappingIssuanceClaimInput = {
|
|
27326
|
+
/** The claim */
|
|
27327
|
+
claim?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
27328
|
+
/** The name of the mappingIssuance claim. */
|
|
27329
|
+
name?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
27330
|
+
};
|
|
27331
|
+
/** Update Input */
|
|
25983
27332
|
type UpdateMappingIssuanceInput = {
|
|
25984
27333
|
/** The name of the mappingIssuance. */
|
|
25985
27334
|
name?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
@@ -26109,16 +27458,26 @@ type UpdateOrganizationDomainInput = {
|
|
|
26109
27458
|
};
|
|
26110
27459
|
/** Input type used to update user organization types. */
|
|
26111
27460
|
type UpdateOrganizationInput = {
|
|
27461
|
+
/** The ISO 3166-1 alpha-2 country code of the organization. */
|
|
27462
|
+
countryCode?: InputMaybe<Scalars['ISO3166']['input']>;
|
|
26112
27463
|
/** The organization description. */
|
|
26113
27464
|
description?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
26114
27465
|
/** The public email address of the organization. */
|
|
26115
27466
|
email?: InputMaybe<Scalars['Email']['input']>;
|
|
27467
|
+
/** The chamber of commerce registration number. */
|
|
27468
|
+
kvk?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
27469
|
+
/** The legal registered name of the organization. */
|
|
27470
|
+
legalName?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
26116
27471
|
/** The organization logo. */
|
|
26117
27472
|
logo?: InputMaybe<Scalars['ProfilePicture']['input']>;
|
|
27473
|
+
/** The NACE Rev. 2.1 economic activity code of the organization. */
|
|
27474
|
+
naceCode?: InputMaybe<Scalars['NACECode']['input']>;
|
|
26118
27475
|
/** The organization name. */
|
|
26119
27476
|
name?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
26120
27477
|
/** The phone number of the organization. */
|
|
26121
27478
|
phone?: InputMaybe<Scalars['String']['input']>;
|
|
27479
|
+
/** The URL of the organization's privacy policy. */
|
|
27480
|
+
privacyPolicyUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
26122
27481
|
/** The url of the website of the organization. */
|
|
26123
27482
|
website?: InputMaybe<Scalars['URL']['input']>;
|
|
26124
27483
|
};
|
|
@@ -26242,12 +27601,16 @@ type UpdateProviderAppMetaOid4VcInput = {
|
|
|
26242
27601
|
clientIdentifierPrefix?: InputMaybe<ProviderAppMetaTypeOid4VcClientIdentifierPrefix>;
|
|
26243
27602
|
/** If DCQL is supported */
|
|
26244
27603
|
dcql?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26245
|
-
/** The latest draft version supported by this app */
|
|
26246
|
-
|
|
27604
|
+
/** The latest issuance draft version supported by this app */
|
|
27605
|
+
issuanceDraftVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
27606
|
+
/** The issuance spec type supported by this app */
|
|
27607
|
+
issuanceSpecType?: InputMaybe<ProviderAppMetaOid4VcIssuanceSpecType>;
|
|
26247
27608
|
/** The protocol */
|
|
26248
27609
|
protocol?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
26249
|
-
/** The
|
|
26250
|
-
|
|
27610
|
+
/** The latest verification draft version supported by this app */
|
|
27611
|
+
verificationDraftVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
27612
|
+
/** The verification spec type supported by this app */
|
|
27613
|
+
verificationSpecType?: InputMaybe<ProviderAppMetaOid4VcVerificationSpecType>;
|
|
26251
27614
|
};
|
|
26252
27615
|
/** Update Input */
|
|
26253
27616
|
type UpdateProviderInput = {
|
|
@@ -26336,14 +27699,22 @@ type UpdateSignatureGroupInput = {
|
|
|
26336
27699
|
};
|
|
26337
27700
|
/** Update Input */
|
|
26338
27701
|
type UpdateSignatureInput = {
|
|
27702
|
+
/** The data deletion policy. */
|
|
27703
|
+
deletionPolicy?: InputMaybe<Scalars['String']['input']>;
|
|
26339
27704
|
/** The JWT media type */
|
|
26340
27705
|
jwtMediaType?: InputMaybe<Scalars['JwtMediaType']['input']>;
|
|
26341
27706
|
/** The meta of the flow signature. */
|
|
26342
27707
|
meta?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
26343
27708
|
/** The name of the flow signature. */
|
|
26344
27709
|
name?: InputMaybe<Scalars['NonEmpty']['input']>;
|
|
27710
|
+
/** The purpose statement describing why attributes are being attested. */
|
|
27711
|
+
purposeStatement?: InputMaybe<Scalars['String']['input']>;
|
|
26345
27712
|
/** The indicator if explicit consent is required */
|
|
26346
27713
|
requireExplicitConsent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27714
|
+
/** The data retention policy. */
|
|
27715
|
+
retentionPolicy?: InputMaybe<Scalars['String']['input']>;
|
|
27716
|
+
/** The data sharing policy. */
|
|
27717
|
+
sharingPolicy?: InputMaybe<Scalars['String']['input']>;
|
|
26347
27718
|
};
|
|
26348
27719
|
/** Update Input */
|
|
26349
27720
|
type UpdateSignatureProviderConfigurationNlWalletInput = {
|
|
@@ -26592,4 +27963,4 @@ type ValidateUserResetInput = {
|
|
|
26592
27963
|
token: Scalars['NonEmpty']['input'];
|
|
26593
27964
|
};
|
|
26594
27965
|
|
|
26595
|
-
export { type AcceptUserInvitationAndRegisterByPasswordInput, type AcceptUserInvitationByOpenIdTokenInput, type AcceptUserInvitationByPasswordInput, type AcceptUserInvitationTokenInput, Action, type ActionAppInput, type ActionAttributeInput, type ActionAuthenticationInput, type ActionBillingWalletChargeInput, type ActionBillingWalletGiveCreditInput, type ActionBillingWalletInput, type ActionCredentialInput, type ActionCredentialRequestInput, type ActionDisclosureInput, type ActionIssuanceInput, type ActionIssuerInput, type ActionMaintenanceInput, type ActionMappingIssuanceInput, type ActionMappingVerificationInput, type ActionOAuthProviderInput, type ActionOrganizationAlertInput, type ActionOrganizationAppInput, type ActionOrganizationAppPrerequisiteInput, type ActionOrganizationBrandInput, type ActionOrganizationBrandRejectInput, type ActionOrganizationDomainInput, type ActionOrganizationInput, type ActionOrganizationNotificationInput, type ActionOrganizationUserInput, type ActionPasswordUserInput, type ActionPricingRuleInput, type ActionProviderInput, type ActionSchemeInput, type ActionScopeInput, type ActionSignatureInput, type ActionStudioPlanInput, AlertSeverity, AlertState, AlertType, type App, type AppConnection, type AppEdge, AppFilteringField, type AppLocale, type AppLocaleArgs, type AppLocaleConnection, type AppLocaleEdge, AppLocaleFilteringField, AppLocaleSortEnum, type AppLocaleSortInput, type AppOrganizationAppsArgs, type AppPrerequisite, type AppPrerequisiteAppPrerequisiteStatesArgs, type AppPrerequisiteConnection, type AppPrerequisiteEdge, AppPrerequisiteFilteringField, type AppPrerequisiteLocale, type AppPrerequisiteLocaleArgs, type AppPrerequisiteLocaleConnection, type AppPrerequisiteLocaleEdge, AppPrerequisiteLocaleFilteringField, AppPrerequisiteLocaleSortEnum, type AppPrerequisiteLocaleSortInput, type AppPrerequisiteOrganizationAppPrerequisitesArgs, AppPrerequisiteSortEnum, type AppPrerequisiteSortInput, type AppPrerequisiteState, type AppPrerequisiteStateConnection, type AppPrerequisiteStateEdge, AppPrerequisiteStateFilteringField, type AppPrerequisiteStateLocale, type AppPrerequisiteStateLocaleArgs, type AppPrerequisiteStateLocaleConnection, type AppPrerequisiteStateLocaleEdge, AppPrerequisiteStateLocaleFilteringField, AppPrerequisiteStateLocaleSortEnum, type AppPrerequisiteStateLocaleSortInput, type AppPrerequisiteStateOrganizationAppPrerequisiteWorkflowsArgs, type AppPrerequisiteStateOrganizationAppPrerequisitesArgs, AppPrerequisiteStateSortEnum, type AppPrerequisiteStateSortInput, type AppPrerequisiteStateTransitionFromArgs, type AppPrerequisiteStateTransitionToArgs, AppPrerequisiteStates, AppPrerequisites, type AppPrerequisitesArgs, type AppProviderAppsArgs, AppSortEnum, type AppSortInput, type Attribute, AttributeCategoryType, type AttributeConnection, type AttributeEdge, type AttributeEntity, type AttributeEntityDeep, type AttributeEntityEnriched, AttributeFilteringField, type AttributeLabel, type AttributeLabelConnection, type AttributeLabelEdge, AttributeLabelFilteringField, AttributeLabelSortEnum, type AttributeLabelSortInput, type AttributeLocale, type AttributeLocaleArgs, type AttributeLocaleConnection, type AttributeLocaleEdge, AttributeLocaleFilteringField, AttributeLocaleSortEnum, type AttributeLocaleSortInput, type AttributeMeta, type AttributeMetaConnection, type AttributeMetaDatakeeper, type AttributeMetaDatakeeperConnection, type AttributeMetaDatakeeperEdge, AttributeMetaDatakeeperFilteringField, AttributeMetaDatakeeperSortEnum, type AttributeMetaDatakeeperSortInput, type AttributeMetaDigidentity, type AttributeMetaDigidentityConnection, type AttributeMetaDigidentityEdge, AttributeMetaDigidentityFilteringField, AttributeMetaDigidentitySortEnum, type AttributeMetaDigidentitySortInput, type AttributeMetaEdge, AttributeMetaFilteringField, type AttributeMetaMdoc, type AttributeMetaMdocConnection, type AttributeMetaMdocEdge, AttributeMetaMdocFilteringField, AttributeMetaMdocSortEnum, type AttributeMetaMdocSortInput, type AttributeMetaNect, type AttributeMetaNectConnection, type AttributeMetaNectEdge, AttributeMetaNectFilteringField, AttributeMetaNectSortEnum, type AttributeMetaNectSortInput, type AttributeMetaNlWallet, type AttributeMetaNlWalletConnection, type AttributeMetaNlWalletEdge, AttributeMetaNlWalletFilteringField, AttributeMetaNlWalletSortEnum, type AttributeMetaNlWalletSortInput, type AttributeMetaOid4Vcmdoc, type AttributeMetaOid4VcmdocConnection, type AttributeMetaOid4VcmdocEdge, AttributeMetaOid4VcmdocFilteringField, AttributeMetaOid4VcmdocSortEnum, type AttributeMetaOid4VcmdocSortInput, type AttributeMetaOid4Vcsdjwt, type AttributeMetaOid4VcsdjwtConnection, type AttributeMetaOid4VcsdjwtEdge, AttributeMetaOid4VcsdjwtFilteringField, AttributeMetaOid4VcsdjwtSortEnum, type AttributeMetaOid4VcsdjwtSortInput, type AttributeMetaReadId, type AttributeMetaReadIdConnection, type AttributeMetaReadIdEdge, AttributeMetaReadIdFilteringField, AttributeMetaReadIdSortEnum, type AttributeMetaReadIdSortInput, AttributeMetaSortEnum, type AttributeMetaSortInput, type AttributeMetaTruid, type AttributeMetaTruidConnection, type AttributeMetaTruidEdge, AttributeMetaTruidFilteringField, AttributeMetaTruidSortEnum, type AttributeMetaTruidSortInput, AttributeMetaType, type AttributeMetaYivi, type AttributeMetaYiviConnection, type AttributeMetaYiviEdge, AttributeMetaYiviFilteringField, AttributeMetaYiviSortEnum, type AttributeMetaYiviSortInput, type AttributeMetaYoti, type AttributeMetaYotiConnection, type AttributeMetaYotiEdge, AttributeMetaYotiFilteringField, AttributeMetaYotiSortEnum, type AttributeMetaYotiSortInput, type AttributeNestedFilteringAttributeMetaField, type AttributeNestedFilteringCredentialField, type AttributeRequest, type AttributeRequestConnection, type AttributeRequestEdge, AttributeRequestFilteringField, type AttributeRequestLocale, type AttributeRequestLocaleArgs, type AttributeRequestLocaleConnection, type AttributeRequestLocaleEdge, AttributeRequestLocaleFilteringField, AttributeRequestLocaleSortEnum, type AttributeRequestLocaleSortInput, type AttributeRequestMeta, type AttributeRequestMetaConnection, type AttributeRequestMetaDatakeeper, type AttributeRequestMetaDatakeeperConnection, type AttributeRequestMetaDatakeeperEdge, AttributeRequestMetaDatakeeperFilteringField, AttributeRequestMetaDatakeeperSortEnum, type AttributeRequestMetaDatakeeperSortInput, type AttributeRequestMetaEdge, AttributeRequestMetaFilteringField, type AttributeRequestMetaOid4Vcmdoc, type AttributeRequestMetaOid4VcmdocConnection, type AttributeRequestMetaOid4VcmdocEdge, AttributeRequestMetaOid4VcmdocFilteringField, AttributeRequestMetaOid4VcmdocSortEnum, type AttributeRequestMetaOid4VcmdocSortInput, type AttributeRequestMetaOid4Vcsdjwt, type AttributeRequestMetaOid4VcsdjwtConnection, type AttributeRequestMetaOid4VcsdjwtEdge, AttributeRequestMetaOid4VcsdjwtFilteringField, AttributeRequestMetaOid4VcsdjwtSortEnum, type AttributeRequestMetaOid4VcsdjwtSortInput, AttributeRequestMetaSortEnum, type AttributeRequestMetaSortInput, AttributeRequestMetaType, type AttributeRequestMetaYivi, type AttributeRequestMetaYiviConnection, type AttributeRequestMetaYiviEdge, AttributeRequestMetaYiviFilteringField, AttributeRequestMetaYiviSortEnum, type AttributeRequestMetaYiviSortInput, type AttributeRequestMetaYoti, type AttributeRequestMetaYotiConnection, type AttributeRequestMetaYotiEdge, AttributeRequestMetaYotiFilteringField, AttributeRequestMetaYotiSortEnum, type AttributeRequestMetaYotiSortInput, AttributeRequestSortEnum, type AttributeRequestSortInput, AttributeSortEnum, type AttributeSortInput, type Authentication, AuthenticationAction, type AuthenticationActivity, type AuthenticationActivityConnection, type AuthenticationActivityEdge, AuthenticationActivityFilteringField, AuthenticationActivitySortEnum, type AuthenticationActivitySortInput, type AuthenticationAuthenticationBrandsArgs, type AuthenticationAuthenticationDomainsArgs, type AuthenticationAuthenticationLabelsArgs, type AuthenticationAuthenticationProvidersArgs, type AuthenticationBrand, type AuthenticationBrandConnection, type AuthenticationBrandEdge, AuthenticationBrandFilteringField, AuthenticationBrandSortEnum, type AuthenticationBrandSortInput, type AuthenticationConnection, type AuthenticationDomain, type AuthenticationDomainConnection, type AuthenticationDomainEdge, AuthenticationDomainFilteringField, AuthenticationDomainSortEnum, type AuthenticationDomainSortInput, type AuthenticationEdge, AuthenticationFilteringField, type AuthenticationLabel, type AuthenticationLabelConnection, type AuthenticationLabelEdge, AuthenticationLabelFilteringField, AuthenticationLabelSortEnum, type AuthenticationLabelSortInput, type AuthenticationNestedFilteringAuthenticationBrandField, type AuthenticationNestedFilteringAuthenticationLabelField, type AuthenticationProvider, type AuthenticationProviderAuthenticationScopesArgs, type AuthenticationProviderConfiguration, type AuthenticationProviderConfigurationConnection, type AuthenticationProviderConfigurationEdge, AuthenticationProviderConfigurationFilteringField, type AuthenticationProviderConfigurationNlWallet, type AuthenticationProviderConfigurationNlWalletConnection, type AuthenticationProviderConfigurationNlWalletEdge, AuthenticationProviderConfigurationNlWalletFilteringField, AuthenticationProviderConfigurationNlWalletSortEnum, type AuthenticationProviderConfigurationNlWalletSortInput, AuthenticationProviderConfigurationSortEnum, type AuthenticationProviderConfigurationSortInput, type AuthenticationProviderConnection, type AuthenticationProviderEdge, AuthenticationProviderFilteringField, AuthenticationProviderSortEnum, type AuthenticationProviderSortInput, type AuthenticationScope, type AuthenticationScopeConnection, type AuthenticationScopeEdge, AuthenticationScopeFilteringField, AuthenticationScopeSortEnum, type AuthenticationScopeSortInput, AuthenticationSortEnum, type AuthenticationSortInput, AuthenticationState, type Billing, type BillingBillingMethodsArgs, type BillingBillingPlansArgs, type BillingBillingWalletsArgs, type BillingConnection, type BillingEdge, BillingFilteringField, type BillingMethod, type BillingMethodConnection, type BillingMethodEdge, BillingMethodFilteringField, BillingMethodSortEnum, type BillingMethodSortInput, type BillingPlan, type BillingPlanConnection, type BillingPlanEdge, BillingPlanFilteringField, BillingPlanSortEnum, type BillingPlanSortInput, BillingPlanState, BillingSortEnum, type BillingSortInput, type BillingWallet, BillingWalletAction, type BillingWalletBillingWalletTransactionsArgs, type BillingWalletConnection, type BillingWalletEdge, BillingWalletFilteringField, BillingWalletPaymentType, BillingWalletSortEnum, type BillingWalletSortInput, type BillingWalletTransaction, type BillingWalletTransactionConnection, type BillingWalletTransactionEdge, BillingWalletTransactionFilteringField, type BillingWalletTransactionMeta, type BillingWalletTransactionMetaConnection, type BillingWalletTransactionMetaEdge, BillingWalletTransactionMetaFilteringField, type BillingWalletTransactionMetaFlow, type BillingWalletTransactionMetaFlowAttribute, type BillingWalletTransactionMetaFlowAttributeConnection, type BillingWalletTransactionMetaFlowAttributeEdge, BillingWalletTransactionMetaFlowAttributeFilteringField, BillingWalletTransactionMetaFlowAttributeSortEnum, type BillingWalletTransactionMetaFlowAttributeSortInput, type BillingWalletTransactionMetaFlowAttributesArgs, type BillingWalletTransactionMetaFlowConnection, type BillingWalletTransactionMetaFlowEdge, BillingWalletTransactionMetaFlowFilteringField, BillingWalletTransactionMetaFlowSortEnum, type BillingWalletTransactionMetaFlowSortInput, type BillingWalletTransactionMetaNestedFilteringBillingWalletTransactionField, type BillingWalletTransactionMetaPlan, type BillingWalletTransactionMetaPlanConnection, type BillingWalletTransactionMetaPlanEdge, BillingWalletTransactionMetaPlanFilteringField, BillingWalletTransactionMetaPlanSortEnum, type BillingWalletTransactionMetaPlanSortInput, BillingWalletTransactionMetaSortEnum, type BillingWalletTransactionMetaSortInput, BillingWalletTransactionMetaType, type BillingWalletTransactionMetaWallet, type BillingWalletTransactionMetaWalletConnection, type BillingWalletTransactionMetaWalletEdge, BillingWalletTransactionMetaWalletFilteringField, type BillingWalletTransactionMetaWalletNestedFilteringBillingWalletTransactionMetaField, BillingWalletTransactionMetaWalletSortEnum, type BillingWalletTransactionMetaWalletSortInput, BillingWalletTransactionSortEnum, type BillingWalletTransactionSortInput, BillingWalletTransactionState, CatalogModelType, type ConfigBillingMethodOutput, type Constants, type CreateAppInput, type CreateAppLocaleInput, type CreateAppPrerequisiteInput, type CreateAppPrerequisiteLocaleInput, type CreateAppPrerequisiteStateInput, type CreateAppPrerequisiteStateLocaleInput, type CreateAttributeInput, type CreateAttributeLabelInput, type CreateAttributeLocaleInput, type CreateAttributeMetaDatakeeperInput, type CreateAttributeMetaDigidentityInput, type CreateAttributeMetaMdocInput, type CreateAttributeMetaNectInput, type CreateAttributeMetaNlWalletInput, type CreateAttributeMetaOid4VcmdocInput, type CreateAttributeMetaOid4VcsdjwtInput, type CreateAttributeMetaReadIdInput, type CreateAttributeMetaTruidInput, type CreateAttributeMetaYiviInput, type CreateAttributeMetaYotiInput, type CreateAttributeRequestInput, type CreateAttributeRequestLocaleInput, type CreateAttributeRequestMetaDatakeeperInput, type CreateAttributeRequestMetaOid4VcmdocInput, type CreateAttributeRequestMetaOid4VcsdjwtInput, type CreateAttributeRequestMetaYiviInput, type CreateAttributeRequestMetaYotiInput, type CreateAuthenticationBrandInput, type CreateAuthenticationDomainInput, type CreateAuthenticationInput, type CreateAuthenticationLabelInput, type CreateAuthenticationProviderConfigurationNlWalletInput, type CreateAuthenticationProviderInput, type CreateAuthenticationScopeInput, type CreateBillingPlanInput, type CreateBillingWalletInput, type CreateCredentialInput, type CreateCredentialLabelInput, type CreateCredentialLocaleInput, type CreateCredentialMetaDatakeeperInput, type CreateCredentialMetaDigidentityInput, type CreateCredentialMetaMdocInput, type CreateCredentialMetaNectInput, type CreateCredentialMetaNlWalletInput, type CreateCredentialMetaOid4VcmdocInput, type CreateCredentialMetaOid4VcsdjwtInput, type CreateCredentialMetaReadIdInput, type CreateCredentialMetaTruidInput, type CreateCredentialMetaYiviInput, type CreateCredentialMetaYotiInput, type CreateCredentialRequestInput, type CreateCredentialRequestLocaleInput, type CreateCredentialRequestMetaDatakeeperInput, type CreateCredentialRequestMetaOid4VcmdocInput, type CreateCredentialRequestMetaOid4VcsdjwtInput, type CreateCredentialRequestMetaYiviInput, type CreateCredentialRequestMetaYotiInput, type CreateCredentialRequestStateInput, type CreateCredentialRequestStateLocaleInput, type CreateDisclosureAttributeInput, type CreateDisclosureBrandInput, type CreateDisclosureCredentialInput, type CreateDisclosureDomainInput, type CreateDisclosureGroupInput, type CreateDisclosureInput, type CreateDisclosureLabelInput, type CreateDisclosureMappingInput, type CreateDisclosureProviderByAttributesInput, CreateDisclosureProviderByAttributesMode, type CreateDisclosureProviderConfigurationNlWalletInput, type CreateDisclosureProviderInput, type CreateIssuanceAttributeInput, type CreateIssuanceBrandInput, type CreateIssuanceCredentialInput, type CreateIssuanceCredentialMetaDatakeeperInput, type CreateIssuanceCredentialMetaYiviInput, type CreateIssuanceDomainInput, type CreateIssuanceInput, type CreateIssuanceLabelInput, type CreateIssuanceMappingInput, type CreateIssuanceProviderByAttributesInput, type CreateIssuanceProviderInput, type CreateIssuerInput, type CreateIssuerLabelInput, type CreateIssuerLocaleInput, type CreateIssuerMetaDatakeeperInput, type CreateIssuerMetaMdocInput, type CreateIssuerMetaOid4VcmdocInput, type CreateIssuerMetaOid4VcsdjwtInput, type CreateIssuerMetaYiviInput, type CreateLabelInput, type CreateLocaleConfigInput, type CreateMaintenanceInput, type CreateManyMappingIssuanceAttributeInput, type CreateManyMappingIssuanceLinkInput, type CreateManyMappingIssuanceLinksByAttributesInput, type CreateManyMappingVerificationAttributeInput, type CreateManyMappingVerificationLinkInput, type CreateManyMappingVerificationLinksByAttributesInput, type CreateManyOrganizationNotificationEventInput, type CreateManyOrganizationQuotaInput, type CreateManyStudioPlanControlInput, type CreateMappingIssuanceAttributeInput, type CreateMappingIssuanceInput, type CreateMappingIssuanceLinkInput, type CreateMappingVerificationAttributeInput, type CreateMappingVerificationClaimInput, type CreateMappingVerificationInput, type CreateMappingVerificationLinkInput, type CreateOAuthProviderInput, type CreateOrganizationAddressInput, type CreateOrganizationAlertDeprecationInput, type CreateOrganizationAlertInput, type CreateOrganizationAppInput, type CreateOrganizationAppMetaDatakeeperInput, type CreateOrganizationAppMetaKiwaInput, type CreateOrganizationAppMetaOid4vcInput, type CreateOrganizationAppMetaYotiInput, type CreateOrganizationAppPrerequisiteInput, type CreateOrganizationBrandInput, type CreateOrganizationBrandLabelInput, type CreateOrganizationClientInput, type CreateOrganizationDomainInput, type CreateOrganizationDomainLabelInput, type CreateOrganizationDomainOAuthProviderInput, type CreateOrganizationInput, type CreateOrganizationNotificationEventInput, type CreateOrganizationNotificationInput, type CreateOrganizationQuotaInput, type CreateOrganizationSecretInput, type CreateOrganizationUserInput, type CreatePricingCatalogInput, type CreatePricingConfigurationAppInput, type CreatePricingConfigurationOrganizationInput, type CreatePricingConfigurationStudioPlanInput, type CreatePricingGroupAssignmentInput, type CreatePricingGroupInput, type CreatePricingRuleConstraintInput, type CreatePricingRuleInput, type CreatePricingRuleTargetInput, type CreateProviderAppInput, type CreateProviderAppMetaOid4VcInput, type CreateProviderInput, type CreateProviderLabelInput, type CreateProviderLocaleInput, type CreateSchemeInput, type CreateSchemeLabelInput, type CreateSchemeLocaleInput, type CreateScopeClaimInput, type CreateScopeInput, type CreateScopeLocaleInput, type CreateScopeResourceInput, type CreateSignatureAttributeInput, type CreateSignatureBrandInput, type CreateSignatureCredentialInput, type CreateSignatureDomainInput, type CreateSignatureGroupInput, type CreateSignatureInput, type CreateSignatureLabelInput, type CreateSignatureMappingInput, type CreateSignatureProviderByAttributesInput, CreateSignatureProviderByAttributesMode, type CreateSignatureProviderConfigurationNlWalletInput, type CreateSignatureProviderInput, type CreateStudioPlanControlInput, type CreateStudioPlanControlOverrideInput, type CreateStudioPlanInput, type CreateStudioPlanIntervalInput, type CreateStudioPlanOrganizationInput, type CreateUserInput, type CreateUserInvitationInput, type CreateUserResetInput, type Credential, type CredentialAttributesArgs, CredentialCategoryType, type CredentialConnection, type CredentialEdge, type CredentialEntity, type CredentialEntityDeep, CredentialFilteringField, type CredentialLabel, type CredentialLabelConnection, type CredentialLabelEdge, CredentialLabelFilteringField, CredentialLabelSortEnum, type CredentialLabelSortInput, type CredentialLocale, type CredentialLocaleArgs, type CredentialLocaleConnection, type CredentialLocaleEdge, CredentialLocaleFilteringField, CredentialLocaleSortEnum, type CredentialLocaleSortInput, type CredentialMeta, type CredentialMetaConnection, type CredentialMetaDatakeeper, type CredentialMetaDatakeeperConnection, type CredentialMetaDatakeeperEdge, CredentialMetaDatakeeperFilteringField, CredentialMetaDatakeeperSortEnum, type CredentialMetaDatakeeperSortInput, type CredentialMetaDigidentity, type CredentialMetaDigidentityConnection, type CredentialMetaDigidentityEdge, CredentialMetaDigidentityFilteringField, CredentialMetaDigidentitySortEnum, type CredentialMetaDigidentitySortInput, type CredentialMetaEdge, CredentialMetaFilteringField, type CredentialMetaMdoc, type CredentialMetaMdocConnection, type CredentialMetaMdocEdge, CredentialMetaMdocFilteringField, CredentialMetaMdocSortEnum, type CredentialMetaMdocSortInput, type CredentialMetaNect, type CredentialMetaNectConnection, type CredentialMetaNectEdge, CredentialMetaNectFilteringField, CredentialMetaNectSortEnum, type CredentialMetaNectSortInput, type CredentialMetaNlWallet, type CredentialMetaNlWalletConnection, type CredentialMetaNlWalletEdge, CredentialMetaNlWalletFilteringField, CredentialMetaNlWalletSortEnum, type CredentialMetaNlWalletSortInput, type CredentialMetaOid4Vcmdoc, type CredentialMetaOid4VcmdocConnection, type CredentialMetaOid4VcmdocEdge, CredentialMetaOid4VcmdocFilteringField, CredentialMetaOid4VcmdocSortEnum, type CredentialMetaOid4VcmdocSortInput, type CredentialMetaOid4Vcsdjwt, type CredentialMetaOid4VcsdjwtConnection, type CredentialMetaOid4VcsdjwtEdge, CredentialMetaOid4VcsdjwtFilteringField, CredentialMetaOid4VcsdjwtSortEnum, type CredentialMetaOid4VcsdjwtSortInput, type CredentialMetaReadId, type CredentialMetaReadIdConnection, CredentialMetaReadIdDocumentType, type CredentialMetaReadIdEdge, CredentialMetaReadIdFilteringField, CredentialMetaReadIdSortEnum, type CredentialMetaReadIdSortInput, CredentialMetaSortEnum, type CredentialMetaSortInput, type CredentialMetaTruid, type CredentialMetaTruidConnection, type CredentialMetaTruidEdge, CredentialMetaTruidFilteringField, CredentialMetaTruidSortEnum, type CredentialMetaTruidSortInput, CredentialMetaType, type CredentialMetaYivi, type CredentialMetaYiviConnection, type CredentialMetaYiviEdge, CredentialMetaYiviFilteringField, CredentialMetaYiviSortEnum, type CredentialMetaYiviSortInput, type CredentialMetaYoti, type CredentialMetaYotiConnection, type CredentialMetaYotiEdge, CredentialMetaYotiFilteringField, CredentialMetaYotiSortEnum, type CredentialMetaYotiSortInput, type CredentialNestedFilteringAttributesField, type CredentialNestedFilteringCredentialMetaField, type CredentialNestedFilteringIssuerField, type CredentialRequest, type CredentialRequestAttributeRequestsArgs, type CredentialRequestConnection, type CredentialRequestEdge, CredentialRequestFilteringField, type CredentialRequestLocale, type CredentialRequestLocaleArgs, type CredentialRequestLocaleConnection, type CredentialRequestLocaleEdge, CredentialRequestLocaleFilteringField, CredentialRequestLocaleSortEnum, type CredentialRequestLocaleSortInput, type CredentialRequestMeta, type CredentialRequestMetaConnection, type CredentialRequestMetaDatakeeper, type CredentialRequestMetaDatakeeperConnection, type CredentialRequestMetaDatakeeperEdge, CredentialRequestMetaDatakeeperFilteringField, CredentialRequestMetaDatakeeperSortEnum, type CredentialRequestMetaDatakeeperSortInput, type CredentialRequestMetaEdge, CredentialRequestMetaFilteringField, type CredentialRequestMetaOid4Vcmdoc, type CredentialRequestMetaOid4VcmdocConnection, type CredentialRequestMetaOid4VcmdocEdge, CredentialRequestMetaOid4VcmdocFilteringField, CredentialRequestMetaOid4VcmdocSortEnum, type CredentialRequestMetaOid4VcmdocSortInput, type CredentialRequestMetaOid4Vcsdjwt, type CredentialRequestMetaOid4VcsdjwtConnection, type CredentialRequestMetaOid4VcsdjwtEdge, CredentialRequestMetaOid4VcsdjwtFilteringField, CredentialRequestMetaOid4VcsdjwtSortEnum, type CredentialRequestMetaOid4VcsdjwtSortInput, CredentialRequestMetaSortEnum, type CredentialRequestMetaSortInput, CredentialRequestMetaType, type CredentialRequestMetaYivi, type CredentialRequestMetaYiviConnection, type CredentialRequestMetaYiviEdge, CredentialRequestMetaYiviFilteringField, CredentialRequestMetaYiviSortEnum, type CredentialRequestMetaYiviSortInput, type CredentialRequestMetaYoti, CredentialRequestMetaYotiCategoryType, type CredentialRequestMetaYotiConnection, type CredentialRequestMetaYotiEdge, CredentialRequestMetaYotiFilteringField, CredentialRequestMetaYotiSortEnum, type CredentialRequestMetaYotiSortInput, CredentialRequestSortEnum, type CredentialRequestSortInput, type CredentialRequestState, type CredentialRequestStateConnection, type CredentialRequestStateCredentialRequestWorkflowsArgs, type CredentialRequestStateEdge, CredentialRequestStateFilteringField, type CredentialRequestStateLocale, type CredentialRequestStateLocaleArgs, type CredentialRequestStateLocaleConnection, type CredentialRequestStateLocaleEdge, CredentialRequestStateLocaleFilteringField, CredentialRequestStateLocaleSortEnum, type CredentialRequestStateLocaleSortInput, CredentialRequestStateSortEnum, type CredentialRequestStateSortInput, type CredentialRequestStateTransitionFromArgs, type CredentialRequestStateTransitionToArgs, CredentialRequestStates, type CredentialRequestWorkflow, type CredentialRequestWorkflowConnection, type CredentialRequestWorkflowEdge, CredentialRequestWorkflowFilteringField, CredentialRequestWorkflowSortEnum, type CredentialRequestWorkflowSortInput, CredentialSortEnum, type CredentialSortInput, Currency, CurrencyCode, CurrencyUnit, type Disclosure, DisclosureAction, type DisclosureActivity, type DisclosureActivityConnection, type DisclosureActivityEdge, DisclosureActivityFilteringField, DisclosureActivitySortEnum, type DisclosureActivitySortInput, type DisclosureAttribute, type DisclosureAttributeConnection, type DisclosureAttributeEdge, DisclosureAttributeFilteringField, DisclosureAttributeSortEnum, type DisclosureAttributeSortInput, type DisclosureBrand, type DisclosureBrandConnection, type DisclosureBrandEdge, DisclosureBrandFilteringField, DisclosureBrandSortEnum, type DisclosureBrandSortInput, type DisclosureConnection, type DisclosureCredential, type DisclosureCredentialConnection, type DisclosureCredentialDisclosureAttributesArgs, type DisclosureCredentialEdge, DisclosureCredentialFilteringField, DisclosureCredentialSortEnum, type DisclosureCredentialSortInput, type DisclosureDisclosureBrandsArgs, type DisclosureDisclosureDomainsArgs, type DisclosureDisclosureLabelsArgs, type DisclosureDisclosureMappingsArgs, type DisclosureDisclosureProvidersArgs, type DisclosureDomain, type DisclosureDomainConnection, type DisclosureDomainEdge, DisclosureDomainFilteringField, DisclosureDomainSortEnum, type DisclosureDomainSortInput, type DisclosureEdge, DisclosureFilteringField, type DisclosureGroup, type DisclosureGroupConnection, type DisclosureGroupDisclosureCredentialsArgs, type DisclosureGroupEdge, DisclosureGroupFilteringField, DisclosureGroupSortEnum, type DisclosureGroupSortInput, type DisclosureLabel, type DisclosureLabelConnection, type DisclosureLabelEdge, DisclosureLabelFilteringField, DisclosureLabelSortEnum, type DisclosureLabelSortInput, type DisclosureMapping, type DisclosureMappingConnection, type DisclosureMappingEdge, DisclosureMappingFilteringField, DisclosureMappingSortEnum, type DisclosureMappingSortInput, type DisclosureNestedFilteringDisclosureBrandField, type DisclosureNestedFilteringDisclosureLabelField, type DisclosureProvider, type DisclosureProviderConfiguration, type DisclosureProviderConfigurationConnection, type DisclosureProviderConfigurationEdge, DisclosureProviderConfigurationFilteringField, type DisclosureProviderConfigurationNlWallet, type DisclosureProviderConfigurationNlWalletConnection, type DisclosureProviderConfigurationNlWalletEdge, DisclosureProviderConfigurationNlWalletFilteringField, DisclosureProviderConfigurationNlWalletSortEnum, type DisclosureProviderConfigurationNlWalletSortInput, DisclosureProviderConfigurationSortEnum, type DisclosureProviderConfigurationSortInput, type DisclosureProviderConnection, type DisclosureProviderDisclosureGroupsArgs, type DisclosureProviderEdge, DisclosureProviderFilteringField, DisclosureProviderSortEnum, type DisclosureProviderSortInput, DisclosureSortEnum, type DisclosureSortInput, DisclosureState, type DuplicateAuthenticationInput, type DuplicateDisclosureInput, type DuplicateIssuanceInput, type DuplicateSignatureInput, type DuplicateStudioPlanInput, type Exact, FilteringConnector, FilteringMode, FilteringType, type FindGlobalOAuthMethodsInput, type FindManyAppLocaleFilter, type FindManyAppLocaleInput, type FindManyAppPrerequisiteLocaleFilter, type FindManyAppPrerequisiteLocaleInput, type FindManyAppPrerequisiteStateFilter, type FindManyAppPrerequisiteStateInput, type FindManyAppPrerequisiteStateLocaleFilter, type FindManyAppPrerequisiteStateLocaleInput, type FindManyAppPrerequisitesFilter, type FindManyAppPrerequisitesInput, type FindManyAppsFilter, type FindManyAppsInput, type FindManyAttributeLabelsFilter, type FindManyAttributeLabelsInput, type FindManyAttributeLocaleFilter, type FindManyAttributeLocaleInput, type FindManyAttributeMetaDatakeeperFilter, type FindManyAttributeMetaDatakeeperInput, type FindManyAttributeMetaDigidentityFilter, type FindManyAttributeMetaDigidentityInput, type FindManyAttributeMetaFilter, type FindManyAttributeMetaInput, type FindManyAttributeMetaMdocFilter, type FindManyAttributeMetaMdocInput, type FindManyAttributeMetaNectFilter, type FindManyAttributeMetaNectInput, type FindManyAttributeMetaNlWalletFilter, type FindManyAttributeMetaNlWalletInput, type FindManyAttributeMetaOid4VcmdocFilter, type FindManyAttributeMetaOid4VcmdocInput, type FindManyAttributeMetaOid4VcsdjwtFilter, type FindManyAttributeMetaOid4VcsdjwtInput, type FindManyAttributeMetaReadIdFilter, type FindManyAttributeMetaReadIdInput, type FindManyAttributeMetaTruidFilter, type FindManyAttributeMetaTruidInput, type FindManyAttributeMetaYiviFilter, type FindManyAttributeMetaYiviInput, type FindManyAttributeMetaYotiFilter, type FindManyAttributeMetaYotiInput, type FindManyAttributeRequestLocaleFilter, type FindManyAttributeRequestLocaleInput, type FindManyAttributeRequestMetaDatakeeperFilter, type FindManyAttributeRequestMetaDatakeeperInput, type FindManyAttributeRequestMetaFilter, type FindManyAttributeRequestMetaInput, type FindManyAttributeRequestMetaOid4VcmdocFilter, type FindManyAttributeRequestMetaOid4VcmdocInput, type FindManyAttributeRequestMetaOid4VcsdjwtFilter, type FindManyAttributeRequestMetaOid4VcsdjwtInput, type FindManyAttributeRequestMetaYiviFilter, type FindManyAttributeRequestMetaYiviInput, type FindManyAttributeRequestMetaYotiFilter, type FindManyAttributeRequestMetaYotiInput, type FindManyAttributeRequestsFilter, type FindManyAttributeRequestsInput, type FindManyAttributesFilter, type FindManyAttributesInput, type FindManyAttributesNestedFilter, type FindManyAuthenticationActivitiesFilter, type FindManyAuthenticationActivitiesInput, type FindManyAuthenticationBrandsFilter, type FindManyAuthenticationBrandsInput, type FindManyAuthenticationDomainsFilter, type FindManyAuthenticationDomainsInput, type FindManyAuthenticationLabelsFilter, type FindManyAuthenticationLabelsInput, type FindManyAuthenticationProviderConfigurationNlWalletsFilter, type FindManyAuthenticationProviderConfigurationNlWalletsInput, type FindManyAuthenticationProviderConfigurationsFilter, type FindManyAuthenticationProviderConfigurationsInput, type FindManyAuthenticationProvidersFilter, type FindManyAuthenticationProvidersInput, type FindManyAuthenticationScopesFilter, type FindManyAuthenticationScopesInput, type FindManyAuthenticationsFilter, type FindManyAuthenticationsInput, type FindManyAuthenticationsNestedFilter, type FindManyBillingMethodsFilter, type FindManyBillingMethodsInput, type FindManyBillingPlansFilter, type FindManyBillingPlansInput, type FindManyBillingWalletTransactionMetaFlowAttributesFilter, type FindManyBillingWalletTransactionMetaFlowAttributesInput, type FindManyBillingWalletTransactionMetaFlowsFilter, type FindManyBillingWalletTransactionMetaFlowsInput, type FindManyBillingWalletTransactionMetaNestedFilter, type FindManyBillingWalletTransactionMetaPlansFilter, type FindManyBillingWalletTransactionMetaPlansInput, type FindManyBillingWalletTransactionMetaWalletsFilter, type FindManyBillingWalletTransactionMetaWalletsInput, type FindManyBillingWalletTransactionMetaWalletsNestedFilter, type FindManyBillingWalletTransactionMetasFilter, type FindManyBillingWalletTransactionMetasInput, type FindManyBillingWalletTransactionsFilter, type FindManyBillingWalletTransactionsInput, type FindManyBillingWalletsFilter, type FindManyBillingWalletsInput, type FindManyBillingsFilter, type FindManyBillingsInput, type FindManyCredentialLabelsFilter, type FindManyCredentialLabelsInput, type FindManyCredentialLocaleFilter, type FindManyCredentialLocaleInput, type FindManyCredentialMetaDatakeeperFilter, type FindManyCredentialMetaDatakeeperInput, type FindManyCredentialMetaDigidentityFilter, type FindManyCredentialMetaDigidentityInput, type FindManyCredentialMetaFilter, type FindManyCredentialMetaInput, type FindManyCredentialMetaMdocFilter, type FindManyCredentialMetaMdocInput, type FindManyCredentialMetaNectFilter, type FindManyCredentialMetaNectInput, type FindManyCredentialMetaNlWalletFilter, type FindManyCredentialMetaNlWalletInput, type FindManyCredentialMetaOid4VcmdocFilter, type FindManyCredentialMetaOid4VcmdocInput, type FindManyCredentialMetaOid4VcsdjwtFilter, type FindManyCredentialMetaOid4VcsdjwtInput, type FindManyCredentialMetaReadIdFilter, type FindManyCredentialMetaReadIdInput, type FindManyCredentialMetaTruidFilter, type FindManyCredentialMetaTruidInput, type FindManyCredentialMetaYiviFilter, type FindManyCredentialMetaYiviInput, type FindManyCredentialMetaYotiFilter, type FindManyCredentialMetaYotiInput, type FindManyCredentialRequestLocaleFilter, type FindManyCredentialRequestLocaleInput, type FindManyCredentialRequestMetaDatakeeperFilter, type FindManyCredentialRequestMetaDatakeeperInput, type FindManyCredentialRequestMetaFilter, type FindManyCredentialRequestMetaInput, type FindManyCredentialRequestMetaOid4VcmdocFilter, type FindManyCredentialRequestMetaOid4VcmdocInput, type FindManyCredentialRequestMetaOid4VcsdjwtFilter, type FindManyCredentialRequestMetaOid4VcsdjwtInput, type FindManyCredentialRequestMetaYiviFilter, type FindManyCredentialRequestMetaYiviInput, type FindManyCredentialRequestMetaYotiFilter, type FindManyCredentialRequestMetaYotiInput, type FindManyCredentialRequestStateFilter, type FindManyCredentialRequestStateInput, type FindManyCredentialRequestStateLocaleFilter, type FindManyCredentialRequestStateLocaleInput, type FindManyCredentialRequestWorkflowFilter, type FindManyCredentialRequestWorkflowInput, type FindManyCredentialRequestsFilter, type FindManyCredentialRequestsInput, type FindManyCredentialsFilter, type FindManyCredentialsInput, type FindManyCredentialsNestedFilter, type FindManyDisclosureActivitiesFilter, type FindManyDisclosureActivitiesInput, type FindManyDisclosureAttributesFilter, type FindManyDisclosureAttributesInput, type FindManyDisclosureBrandsFilter, type FindManyDisclosureBrandsInput, type FindManyDisclosureCredentialsFilter, type FindManyDisclosureCredentialsInput, type FindManyDisclosureDomainsFilter, type FindManyDisclosureDomainsInput, type FindManyDisclosureGroupsFilter, type FindManyDisclosureGroupsInput, type FindManyDisclosureLabelsFilter, type FindManyDisclosureLabelsInput, type FindManyDisclosureMappingsFilter, type FindManyDisclosureMappingsInput, type FindManyDisclosureProviderConfigurationNlWalletsFilter, type FindManyDisclosureProviderConfigurationNlWalletsInput, type FindManyDisclosureProviderConfigurationsFilter, type FindManyDisclosureProviderConfigurationsInput, type FindManyDisclosureProvidersFilter, type FindManyDisclosureProvidersInput, type FindManyDisclosuresFilter, type FindManyDisclosuresInput, type FindManyDisclosuresNestedFilter, type FindManyIssuanceActivitiesFilter, type FindManyIssuanceActivitiesInput, type FindManyIssuanceAttributesFilter, type FindManyIssuanceAttributesInput, type FindManyIssuanceBrandsFilter, type FindManyIssuanceBrandsInput, type FindManyIssuanceCredentialMetaDatakeeperFilter, type FindManyIssuanceCredentialMetaDatakeeperInput, type FindManyIssuanceCredentialMetaFilter, type FindManyIssuanceCredentialMetaInput, type FindManyIssuanceCredentialMetaYiviFilter, type FindManyIssuanceCredentialMetaYiviInput, type FindManyIssuanceCredentialsFilter, type FindManyIssuanceCredentialsInput, type FindManyIssuanceDomainsFilter, type FindManyIssuanceDomainsInput, type FindManyIssuanceLabelsFilter, type FindManyIssuanceLabelsInput, type FindManyIssuanceMappingsFilter, type FindManyIssuanceMappingsInput, type FindManyIssuanceProvidersFilter, type FindManyIssuanceProvidersInput, type FindManyIssuancesFilter, type FindManyIssuancesInput, type FindManyIssuancesNestedFilter, type FindManyIssuerLabelsFilter, type FindManyIssuerLabelsInput, type FindManyIssuerLocaleFilter, type FindManyIssuerLocaleInput, type FindManyIssuerMetaDatakeeperFilter, type FindManyIssuerMetaDatakeeperInput, type FindManyIssuerMetaFilter, type FindManyIssuerMetaInput, type FindManyIssuerMetaMdocFilter, type FindManyIssuerMetaMdocInput, type FindManyIssuerMetaOid4VcmdocFilter, type FindManyIssuerMetaOid4VcmdocInput, type FindManyIssuerMetaOid4VcsdjwtFilter, type FindManyIssuerMetaOid4VcsdjwtInput, type FindManyIssuerMetaYiviFilter, type FindManyIssuerMetaYiviInput, type FindManyIssuersFilter, type FindManyIssuersInput, type FindManyIssuersNestedFilter, type FindManyLabelsFilter, type FindManyLabelsInput, type FindManyLocaleConfigsFilter, type FindManyLocaleConfigsInput, type FindManyMaintenancesFilter, type FindManyMaintenancesInput, type FindManyMappingIssuanceAttributesFilter, type FindManyMappingIssuanceAttributesInput, type FindManyMappingIssuanceLinksFilter, type FindManyMappingIssuanceLinksInput, type FindManyMappingIssuancesFilter, type FindManyMappingIssuancesInput, type FindManyMappingVerificationAttributesFilter, type FindManyMappingVerificationAttributesInput, type FindManyMappingVerificationClaimsFilter, type FindManyMappingVerificationClaimsInput, type FindManyMappingVerificationLinksFilter, type FindManyMappingVerificationLinksInput, type FindManyMappingVerificationsFilter, type FindManyMappingVerificationsInput, type FindManyOAuthProvidersFilter, type FindManyOAuthProvidersInput, type FindManyOrganizationAddressesFilter, type FindManyOrganizationAddressesInput, type FindManyOrganizationAlertDeprecationsFilter, type FindManyOrganizationAlertDeprecationsInput, type FindManyOrganizationAlertsFilter, type FindManyOrganizationAlertsInput, type FindManyOrganizationAppMetaDatakeeperFilter, type FindManyOrganizationAppMetaDatakeeperInput, type FindManyOrganizationAppMetaFilter, type FindManyOrganizationAppMetaInput, type FindManyOrganizationAppMetaKiwaFilter, type FindManyOrganizationAppMetaKiwaInput, type FindManyOrganizationAppMetaOid4vcFilter, type FindManyOrganizationAppMetaOid4vcInput, type FindManyOrganizationAppMetaYotiFilter, type FindManyOrganizationAppMetaYotiInput, type FindManyOrganizationAppPrerequisiteFilter, type FindManyOrganizationAppPrerequisiteInput, type FindManyOrganizationAppPrerequisiteWorkflowFilter, type FindManyOrganizationAppPrerequisiteWorkflowInput, type FindManyOrganizationAppsFilter, type FindManyOrganizationAppsInput, type FindManyOrganizationAppsNestedFilter, type FindManyOrganizationBrandLabelsFilter, type FindManyOrganizationBrandLabelsInput, type FindManyOrganizationBrandsFilter, type FindManyOrganizationBrandsInput, type FindManyOrganizationBrandsNestedFilter, type FindManyOrganizationClientsFilter, type FindManyOrganizationClientsInput, type FindManyOrganizationDomainLabelsFilter, type FindManyOrganizationDomainLabelsInput, type FindManyOrganizationDomainOAuthProvidersFilter, type FindManyOrganizationDomainOAuthProvidersInput, type FindManyOrganizationDomainValidationsFilter, type FindManyOrganizationDomainValidationsInput, type FindManyOrganizationDomainsFilter, type FindManyOrganizationDomainsInput, type FindManyOrganizationDomainsNestedFilter, type FindManyOrganizationNotificationEventsFilter, type FindManyOrganizationNotificationEventsInput, type FindManyOrganizationNotificationsFilter, type FindManyOrganizationNotificationsInput, type FindManyOrganizationQuotasFilter, type FindManyOrganizationQuotasInput, type FindManyOrganizationSecretsFilter, type FindManyOrganizationSecretsInput, type FindManyOrganizationUsersFilter, type FindManyOrganizationUsersInput, type FindManyOrganizationUsersNestedFilter, type FindManyOrganizationsFilter, type FindManyOrganizationsInput, type FindManyPaymentProviderEventsFilter, type FindManyPaymentProviderEventsInput, type FindManyPaymentProviderInvoicesFilter, type FindManyPaymentProviderInvoicesInput, type FindManyPaymentProviderMethodsFilter, type FindManyPaymentProviderMethodsInput, type FindManyPaymentProviderOrganizationsFilter, type FindManyPaymentProviderOrganizationsInput, type FindManyPaymentProvidersFilter, type FindManyPaymentProvidersInput, type FindManyPricingCatalogsFilter, type FindManyPricingCatalogsInput, type FindManyPricingConfigurationAppsFilter, type FindManyPricingConfigurationAppsInput, type FindManyPricingConfigurationOrganizationsFilter, type FindManyPricingConfigurationOrganizationsInput, type FindManyPricingConfigurationStudioPlansFilter, type FindManyPricingConfigurationStudioPlansInput, type FindManyPricingGroupAssignmentsFilter, type FindManyPricingGroupAssignmentsInput, type FindManyPricingGroupsFilter, type FindManyPricingGroupsInput, type FindManyPricingRuleConstraintsFilter, type FindManyPricingRuleConstraintsInput, type FindManyPricingRuleTargetsFilter, type FindManyPricingRuleTargetsInput, type FindManyPricingRulesFilter, type FindManyPricingRulesInput, type FindManyProviderAppMetaFilter, type FindManyProviderAppMetaInput, type FindManyProviderAppMetaOid4VcFilter, type FindManyProviderAppMetaOid4VcInput, type FindManyProviderAppsFilter, type FindManyProviderAppsInput, type FindManyProviderLabelsFilter, type FindManyProviderLabelsInput, type FindManyProviderLocaleFilter, type FindManyProviderLocaleInput, type FindManyProvidersFilter, type FindManyProvidersForOrganizationInput, type FindManyProvidersInput, type FindManySchemeLabelsFilter, type FindManySchemeLabelsInput, type FindManySchemeLocaleFilter, type FindManySchemeLocaleInput, type FindManySchemesFilter, type FindManySchemesInput, type FindManyScopeClaimsFilter, type FindManyScopeClaimsInput, type FindManyScopeLocaleFilter, type FindManyScopeLocaleInput, type FindManyScopeResourcesFilter, type FindManyScopeResourcesInput, type FindManyScopesFilter, type FindManyScopesInput, type FindManySignatureActivitiesFilter, type FindManySignatureActivitiesInput, type FindManySignatureAttributesFilter, type FindManySignatureAttributesInput, type FindManySignatureBrandsFilter, type FindManySignatureBrandsInput, type FindManySignatureCredentialsFilter, type FindManySignatureCredentialsInput, type FindManySignatureDomainsFilter, type FindManySignatureDomainsInput, type FindManySignatureGroupsFilter, type FindManySignatureGroupsInput, type FindManySignatureLabelsFilter, type FindManySignatureLabelsInput, type FindManySignatureMappingsFilter, type FindManySignatureMappingsInput, type FindManySignatureProviderConfigurationNlWalletsFilter, type FindManySignatureProviderConfigurationNlWalletsInput, type FindManySignatureProviderConfigurationsFilter, type FindManySignatureProviderConfigurationsInput, type FindManySignatureProvidersFilter, type FindManySignatureProvidersInput, type FindManySignaturesFilter, type FindManySignaturesInput, type FindManySignaturesNestedFilter, type FindManyStudioPlanControlOverridesFilter, type FindManyStudioPlanControlOverridesInput, type FindManyStudioPlanControlsFilter, type FindManyStudioPlanControlsInput, type FindManyStudioPlanIntervalsFilter, type FindManyStudioPlanIntervalsInput, type FindManyStudioPlanOrganizationsFilter, type FindManyStudioPlanOrganizationsInput, type FindManyStudioPlansFilter, type FindManyStudioPlansInput, type FindManyUserInvitationsFilter, type FindManyUserInvitationsInput, type FindManyUsersFilter, type FindManyUsersInput, type FindOAuthMethodsByOrganizationDomainInput, FlowType, type GraphQLClientOptions, IdentityModel, type Incremental, type InputMaybe, Interval, InvalidArgumentError, InvalidAssertionError, InvalidResponseError, type Issuance, IssuanceAction, type IssuanceActivity, type IssuanceActivityConnection, type IssuanceActivityEdge, IssuanceActivityFilteringField, IssuanceActivitySortEnum, type IssuanceActivitySortInput, type IssuanceAttribute, type IssuanceAttributeConnection, type IssuanceAttributeEdge, IssuanceAttributeFilteringField, IssuanceAttributeSortEnum, type IssuanceAttributeSortInput, type IssuanceBrand, type IssuanceBrandConnection, type IssuanceBrandEdge, IssuanceBrandFilteringField, IssuanceBrandSortEnum, type IssuanceBrandSortInput, type IssuanceConnection, type IssuanceCredential, type IssuanceCredentialConnection, type IssuanceCredentialEdge, IssuanceCredentialFilteringField, type IssuanceCredentialIssuanceAttributesArgs, type IssuanceCredentialMeta, type IssuanceCredentialMetaConnection, type IssuanceCredentialMetaDatakeeper, type IssuanceCredentialMetaDatakeeperConnection, type IssuanceCredentialMetaDatakeeperEdge, IssuanceCredentialMetaDatakeeperFilteringField, IssuanceCredentialMetaDatakeeperSortEnum, type IssuanceCredentialMetaDatakeeperSortInput, type IssuanceCredentialMetaEdge, IssuanceCredentialMetaFilteringField, IssuanceCredentialMetaSortEnum, type IssuanceCredentialMetaSortInput, IssuanceCredentialMetaType, type IssuanceCredentialMetaYivi, type IssuanceCredentialMetaYiviConnection, type IssuanceCredentialMetaYiviEdge, IssuanceCredentialMetaYiviFilteringField, IssuanceCredentialMetaYiviSortEnum, type IssuanceCredentialMetaYiviSortInput, IssuanceCredentialSortEnum, type IssuanceCredentialSortInput, type IssuanceDomain, type IssuanceDomainConnection, type IssuanceDomainEdge, IssuanceDomainFilteringField, IssuanceDomainSortEnum, type IssuanceDomainSortInput, type IssuanceEdge, IssuanceFilteringField, type IssuanceIssuanceBrandsArgs, type IssuanceIssuanceDomainsArgs, type IssuanceIssuanceLabelsArgs, type IssuanceIssuanceMappingsArgs, type IssuanceIssuanceProvidersArgs, type IssuanceLabel, type IssuanceLabelConnection, type IssuanceLabelEdge, IssuanceLabelFilteringField, IssuanceLabelSortEnum, type IssuanceLabelSortInput, type IssuanceMapping, type IssuanceMappingConnection, type IssuanceMappingEdge, IssuanceMappingFilteringField, IssuanceMappingSortEnum, type IssuanceMappingSortInput, type IssuanceNestedFilteringIssuanceBrandField, type IssuanceNestedFilteringIssuanceLabelField, type IssuanceProvider, type IssuanceProviderConnection, type IssuanceProviderEdge, IssuanceProviderFilteringField, type IssuanceProviderIssuanceCredentialsArgs, IssuanceProviderSortEnum, type IssuanceProviderSortInput, IssuanceSortEnum, type IssuanceSortInput, IssuanceState, type Issuer, IssuerCategoryType, type IssuerConnection, type IssuerCredentialsArgs, type IssuerEdge, type IssuerEntity, type IssuerEntityDeep, IssuerFilteringField, type IssuerLabel, type IssuerLabelConnection, type IssuerLabelEdge, IssuerLabelFilteringField, IssuerLabelSortEnum, type IssuerLabelSortInput, type IssuerLocale, type IssuerLocaleArgs, type IssuerLocaleConnection, type IssuerLocaleEdge, IssuerLocaleFilteringField, IssuerLocaleSortEnum, type IssuerLocaleSortInput, type IssuerMeta, type IssuerMetaConnection, type IssuerMetaDatakeeper, type IssuerMetaDatakeeperConnection, type IssuerMetaDatakeeperEdge, IssuerMetaDatakeeperFilteringField, IssuerMetaDatakeeperSortEnum, type IssuerMetaDatakeeperSortInput, type IssuerMetaEdge, IssuerMetaFilteringField, type IssuerMetaMdoc, type IssuerMetaMdocConnection, type IssuerMetaMdocEdge, IssuerMetaMdocFilteringField, IssuerMetaMdocSortEnum, type IssuerMetaMdocSortInput, type IssuerMetaOid4Vcmdoc, type IssuerMetaOid4VcmdocConnection, type IssuerMetaOid4VcmdocEdge, IssuerMetaOid4VcmdocFilteringField, IssuerMetaOid4VcmdocSortEnum, type IssuerMetaOid4VcmdocSortInput, type IssuerMetaOid4Vcsdjwt, type IssuerMetaOid4VcsdjwtConnection, type IssuerMetaOid4VcsdjwtEdge, IssuerMetaOid4VcsdjwtFilteringField, IssuerMetaOid4VcsdjwtSortEnum, type IssuerMetaOid4VcsdjwtSortInput, IssuerMetaSortEnum, type IssuerMetaSortInput, IssuerMetaType, type IssuerMetaYivi, type IssuerMetaYiviConnection, type IssuerMetaYiviEdge, IssuerMetaYiviFilteringField, IssuerMetaYiviSortEnum, type IssuerMetaYiviSortInput, type IssuerNestedFilteringCredentialsField, type IssuerNestedFilteringIssuerMetaField, type IssuerNestedFilteringSchemeField, IssuerSortEnum, type IssuerSortInput, IssuerType, type Label, type LabelAttributeLabelsArgs, type LabelAuthenticationLabelsArgs, type LabelConnection, type LabelCredentialLabelsArgs, type LabelDisclosureLabelsArgs, type LabelEdge, LabelFilteringField, type LabelIssuanceLabelsArgs, type LabelIssuerLabelsArgs, type LabelOrganizationBrandLabelsArgs, type LabelOrganizationDomainLabelsArgs, type LabelProviderLabelsArgs, type LabelSchemeLabelsArgs, LabelScope, type LabelSignatureLabelsArgs, LabelSortEnum, type LabelSortInput, type LocaleConfig, type LocaleConfigConnection, type LocaleConfigEdge, LocaleConfigFilteringField, LocaleConfigSortEnum, type LocaleConfigSortInput, type LocaleEntity, type LoginByClientCredentialsInput, type LoginByOpenIdTokenInput, type LoginByPasswordInput, type Maintenance, MaintenanceAction, type MaintenanceConnection, type MaintenanceEdge, MaintenanceFilteringField, MaintenanceSortEnum, type MaintenanceSortInput, MaintenanceState, type MakeEmpty, type MakeMaybe, type MakeOptional, type MappingIssuance, MappingIssuanceAction, type MappingIssuanceAttribute, type MappingIssuanceAttributeConnection, type MappingIssuanceAttributeEdge, MappingIssuanceAttributeFilteringField, MappingIssuanceAttributeSortEnum, type MappingIssuanceAttributeSortInput, type MappingIssuanceConnection, type MappingIssuanceEdge, MappingIssuanceFilteringField, type MappingIssuanceIssuanceMappingsArgs, type MappingIssuanceLink, type MappingIssuanceLinkConnection, type MappingIssuanceLinkEdge, MappingIssuanceLinkFilteringField, type MappingIssuanceLinkMappingIssuanceAttributesArgs, MappingIssuanceLinkSortEnum, type MappingIssuanceLinkSortInput, type MappingIssuanceMappingIssuanceAttributesArgs, type MappingIssuanceMappingIssuanceLinksArgs, MappingIssuanceSortEnum, type MappingIssuanceSortInput, MappingIssuanceState, type MappingVerification, MappingVerificationAction, type MappingVerificationAttribute, type MappingVerificationAttributeConnection, type MappingVerificationAttributeEdge, MappingVerificationAttributeFilteringField, MappingVerificationAttributeSortEnum, type MappingVerificationAttributeSortInput, type MappingVerificationClaim, type MappingVerificationClaimConnection, type MappingVerificationClaimEdge, MappingVerificationClaimFilteringField, type MappingVerificationClaimMappingVerificationLinksArgs, MappingVerificationClaimSortEnum, type MappingVerificationClaimSortInput, type MappingVerificationConnection, type MappingVerificationDisclosureMappingsArgs, type MappingVerificationEdge, MappingVerificationFilteringField, type MappingVerificationLink, type MappingVerificationLinkConnection, type MappingVerificationLinkEdge, MappingVerificationLinkFilteringField, type MappingVerificationLinkMappingVerificationAttributesArgs, MappingVerificationLinkSortEnum, type MappingVerificationLinkSortInput, type MappingVerificationMappingVerificationAttributesArgs, type MappingVerificationMappingVerificationClaimsArgs, type MappingVerificationMappingVerificationLinksArgs, MappingVerificationSortEnum, type MappingVerificationSortInput, MappingVerificationState, type Maybe, type Model, type Money, type MoveDisclosureCredentialInput, type MoveDisclosureCredentialOptionsInput, type MoveSignatureCredentialInput, type MoveSignatureCredentialOptionsInput, type Mutation, type MutationAcceptUserInvitationAndRegisterByPasswordArgs, type MutationAcceptUserInvitationByOpenIdTokenArgs, type MutationAcceptUserInvitationByPasswordArgs, type MutationActionAppArgs, type MutationActionAttributeArgs, type MutationActionAuthenticationArgs, type MutationActionBillingWalletArgs, type MutationActionCredentialArgs, type MutationActionCredentialRequestArgs, type MutationActionDisclosureArgs, type MutationActionIssuanceArgs, type MutationActionIssuerArgs, type MutationActionMaintenanceArgs, type MutationActionMappingIssuanceArgs, type MutationActionMappingVerificationArgs, type MutationActionOAuthProviderArgs, type MutationActionOrganizationAlertArgs, type MutationActionOrganizationAppArgs, type MutationActionOrganizationAppPrerequisiteArgs, type MutationActionOrganizationArgs, type MutationActionOrganizationBrandArgs, type MutationActionOrganizationDomainArgs, type MutationActionOrganizationNotificationArgs, type MutationActionOrganizationUserArgs, type MutationActionPricingRuleArgs, type MutationActionProviderArgs, type MutationActionSchemeArgs, type MutationActionScopeArgs, type MutationActionSignatureArgs, type MutationActionStudioPlanArgs, type MutationCreateAppArgs, type MutationCreateAppLocaleArgs, type MutationCreateAppPrerequisiteArgs, type MutationCreateAppPrerequisiteLocaleArgs, type MutationCreateAppPrerequisiteStateArgs, type MutationCreateAppPrerequisiteStateLocaleArgs, type MutationCreateAttributeArgs, type MutationCreateAttributeLabelArgs, type MutationCreateAttributeLocaleArgs, type MutationCreateAttributeMetaDatakeeperArgs, type MutationCreateAttributeMetaDigidentityArgs, type MutationCreateAttributeMetaMdocArgs, type MutationCreateAttributeMetaNectArgs, type MutationCreateAttributeMetaNlWalletArgs, type MutationCreateAttributeMetaOid4VcmdocArgs, type MutationCreateAttributeMetaOid4VcsdjwtArgs, type MutationCreateAttributeMetaReadIdArgs, type MutationCreateAttributeMetaTruidArgs, type MutationCreateAttributeMetaYiviArgs, type MutationCreateAttributeMetaYotiArgs, type MutationCreateAttributeRequestArgs, type MutationCreateAttributeRequestLocaleArgs, type MutationCreateAttributeRequestMetaDatakeeperArgs, type MutationCreateAttributeRequestMetaOid4VcmdocArgs, type MutationCreateAttributeRequestMetaOid4VcsdjwtArgs, type MutationCreateAttributeRequestMetaYiviArgs, type MutationCreateAttributeRequestMetaYotiArgs, type MutationCreateAuthenticationArgs, type MutationCreateAuthenticationBrandArgs, type MutationCreateAuthenticationDomainArgs, type MutationCreateAuthenticationLabelArgs, type MutationCreateAuthenticationProviderArgs, type MutationCreateAuthenticationProviderConfigurationNlWalletArgs, type MutationCreateAuthenticationScopeArgs, type MutationCreateBillingPlanArgs, type MutationCreateBillingWalletArgs, type MutationCreateCredentialArgs, type MutationCreateCredentialLabelArgs, type MutationCreateCredentialLocaleArgs, type MutationCreateCredentialMetaDatakeeperArgs, type MutationCreateCredentialMetaDigidentityArgs, type MutationCreateCredentialMetaMdocArgs, type MutationCreateCredentialMetaNectArgs, type MutationCreateCredentialMetaNlWalletArgs, type MutationCreateCredentialMetaOid4VcmdocArgs, type MutationCreateCredentialMetaOid4VcsdjwtArgs, type MutationCreateCredentialMetaReadIdArgs, type MutationCreateCredentialMetaTruidArgs, type MutationCreateCredentialMetaYiviArgs, type MutationCreateCredentialMetaYotiArgs, type MutationCreateCredentialRequestArgs, type MutationCreateCredentialRequestLocaleArgs, type MutationCreateCredentialRequestMetaDatakeeperArgs, type MutationCreateCredentialRequestMetaOid4VcmdocArgs, type MutationCreateCredentialRequestMetaOid4VcsdjwtArgs, type MutationCreateCredentialRequestMetaYiviArgs, type MutationCreateCredentialRequestMetaYotiArgs, type MutationCreateCredentialRequestStateArgs, type MutationCreateCredentialRequestStateLocaleArgs, type MutationCreateDisclosureArgs, type MutationCreateDisclosureAttributeArgs, type MutationCreateDisclosureBrandArgs, type MutationCreateDisclosureCredentialArgs, type MutationCreateDisclosureDomainArgs, type MutationCreateDisclosureGroupArgs, type MutationCreateDisclosureLabelArgs, type MutationCreateDisclosureMappingArgs, type MutationCreateDisclosureProviderArgs, type MutationCreateDisclosureProviderByAttributesArgs, type MutationCreateDisclosureProviderConfigurationNlWalletArgs, type MutationCreateIssuanceArgs, type MutationCreateIssuanceAttributeArgs, type MutationCreateIssuanceBrandArgs, type MutationCreateIssuanceCredentialArgs, type MutationCreateIssuanceCredentialMetaDatakeeperArgs, type MutationCreateIssuanceCredentialMetaYiviArgs, type MutationCreateIssuanceDomainArgs, type MutationCreateIssuanceLabelArgs, type MutationCreateIssuanceMappingArgs, type MutationCreateIssuanceProviderArgs, type MutationCreateIssuanceProviderByAttributesArgs, type MutationCreateIssuerArgs, type MutationCreateIssuerLabelArgs, type MutationCreateIssuerLocaleArgs, type MutationCreateIssuerMetaDatakeeperArgs, type MutationCreateIssuerMetaMdocArgs, type MutationCreateIssuerMetaOid4VcmdocArgs, type MutationCreateIssuerMetaOid4VcsdjwtArgs, type MutationCreateIssuerMetaYiviArgs, type MutationCreateLabelArgs, type MutationCreateLocaleConfigArgs, type MutationCreateMaintenanceArgs, type MutationCreateManagedOrganizationArgs, type MutationCreateManyMappingIssuanceAttributesArgs, type MutationCreateManyMappingIssuanceLinksArgs, type MutationCreateManyMappingIssuanceLinksByAttributesArgs, type MutationCreateManyMappingVerificationAttributesArgs, type MutationCreateManyMappingVerificationLinksArgs, type MutationCreateManyMappingVerificationLinksByAttributesArgs, type MutationCreateManyOrganizationNotificationEventsArgs, type MutationCreateManyStudioPlanControlsArgs, type MutationCreateMappingIssuanceArgs, type MutationCreateMappingIssuanceAttributeArgs, type MutationCreateMappingIssuanceLinkArgs, type MutationCreateMappingVerificationArgs, type MutationCreateMappingVerificationAttributeArgs, type MutationCreateMappingVerificationClaimArgs, type MutationCreateMappingVerificationLinkArgs, type MutationCreateOAuthProviderArgs, type MutationCreateOrganizationAddressArgs, type MutationCreateOrganizationAlertArgs, type MutationCreateOrganizationAlertDeprecationArgs, type MutationCreateOrganizationAppArgs, type MutationCreateOrganizationAppMetaDatakeeperArgs, type MutationCreateOrganizationAppMetaKiwaArgs, type MutationCreateOrganizationAppMetaOid4vcArgs, type MutationCreateOrganizationAppMetaYotiArgs, type MutationCreateOrganizationAppPrerequisiteArgs, type MutationCreateOrganizationArgs, type MutationCreateOrganizationBrandArgs, type MutationCreateOrganizationBrandLabelArgs, type MutationCreateOrganizationClientArgs, type MutationCreateOrganizationDomainArgs, type MutationCreateOrganizationDomainLabelArgs, type MutationCreateOrganizationDomainOAuthProviderArgs, type MutationCreateOrganizationNotificationArgs, type MutationCreateOrganizationNotificationEventArgs, type MutationCreateOrganizationSecretArgs, type MutationCreateOrganizationUserArgs, type MutationCreatePricingCatalogArgs, type MutationCreatePricingConfigurationAppArgs, type MutationCreatePricingConfigurationOrganizationArgs, type MutationCreatePricingConfigurationStudioPlanArgs, type MutationCreatePricingGroupArgs, type MutationCreatePricingGroupAssignmentArgs, type MutationCreatePricingRuleArgs, type MutationCreatePricingRuleConstraintArgs, type MutationCreatePricingRuleTargetArgs, type MutationCreateProviderAppArgs, type MutationCreateProviderAppMetaOid4VcArgs, type MutationCreateProviderArgs, type MutationCreateProviderLabelArgs, type MutationCreateProviderLocaleArgs, type MutationCreateSchemeArgs, type MutationCreateSchemeLabelArgs, type MutationCreateSchemeLocaleArgs, type MutationCreateScopeArgs, type MutationCreateScopeClaimArgs, type MutationCreateScopeLocaleArgs, type MutationCreateScopeResourceArgs, type MutationCreateSignatureArgs, type MutationCreateSignatureAttributeArgs, type MutationCreateSignatureBrandArgs, type MutationCreateSignatureCredentialArgs, type MutationCreateSignatureDomainArgs, type MutationCreateSignatureGroupArgs, type MutationCreateSignatureLabelArgs, type MutationCreateSignatureMappingArgs, type MutationCreateSignatureProviderArgs, type MutationCreateSignatureProviderByAttributesArgs, type MutationCreateSignatureProviderConfigurationNlWalletArgs, type MutationCreateStudioPlanArgs, type MutationCreateStudioPlanControlArgs, type MutationCreateStudioPlanControlOverrideArgs, type MutationCreateStudioPlanIntervalArgs, type MutationCreateStudioPlanOrganizationArgs, type MutationCreateUserArgs, type MutationCreateUserInvitationArgs, type MutationCreateUserInvitationTokenArgs, type MutationCreateUserResetArgs, type MutationDeleteAppArgs, type MutationDeleteAppLocaleArgs, type MutationDeleteAppPrerequisiteArgs, type MutationDeleteAppPrerequisiteLocaleArgs, type MutationDeleteAppPrerequisiteStateArgs, type MutationDeleteAppPrerequisiteStateLocaleArgs, type MutationDeleteAttributeArgs, type MutationDeleteAttributeLabelArgs, type MutationDeleteAttributeLocaleArgs, type MutationDeleteAttributeMetaDatakeeperArgs, type MutationDeleteAttributeMetaDigidentityArgs, type MutationDeleteAttributeMetaMdocArgs, type MutationDeleteAttributeMetaNectArgs, type MutationDeleteAttributeMetaNlWalletArgs, type MutationDeleteAttributeMetaOid4VcmdocArgs, type MutationDeleteAttributeMetaOid4VcsdjwtArgs, type MutationDeleteAttributeMetaReadIdArgs, type MutationDeleteAttributeMetaTruidArgs, type MutationDeleteAttributeMetaYiviArgs, type MutationDeleteAttributeMetaYotiArgs, type MutationDeleteAttributeRequestArgs, type MutationDeleteAttributeRequestLocaleArgs, type MutationDeleteAttributeRequestMetaDatakeeperArgs, type MutationDeleteAttributeRequestMetaOid4VcmdocArgs, type MutationDeleteAttributeRequestMetaOid4VcsdjwtArgs, type MutationDeleteAttributeRequestMetaYiviArgs, type MutationDeleteAttributeRequestMetaYotiArgs, type MutationDeleteAuthenticationArgs, type MutationDeleteAuthenticationBrandArgs, type MutationDeleteAuthenticationDomainArgs, type MutationDeleteAuthenticationLabelArgs, type MutationDeleteAuthenticationProviderArgs, type MutationDeleteAuthenticationProviderConfigurationNlWalletArgs, type MutationDeleteAuthenticationScopeArgs, type MutationDeleteBillingPlanArgs, type MutationDeleteCredentialArgs, type MutationDeleteCredentialLabelArgs, type MutationDeleteCredentialLocaleArgs, type MutationDeleteCredentialMetaDatakeeperArgs, type MutationDeleteCredentialMetaDigidentityArgs, type MutationDeleteCredentialMetaMdocArgs, type MutationDeleteCredentialMetaNectArgs, type MutationDeleteCredentialMetaNlWalletArgs, type MutationDeleteCredentialMetaOid4VcmdocArgs, type MutationDeleteCredentialMetaOid4VcsdjwtArgs, type MutationDeleteCredentialMetaReadIdArgs, type MutationDeleteCredentialMetaTruidArgs, type MutationDeleteCredentialMetaYiviArgs, type MutationDeleteCredentialMetaYotiArgs, type MutationDeleteCredentialRequestArgs, type MutationDeleteCredentialRequestLocaleArgs, type MutationDeleteCredentialRequestMetaDatakeeperArgs, type MutationDeleteCredentialRequestMetaOid4VcmdocArgs, type MutationDeleteCredentialRequestMetaOid4VcsdjwtArgs, type MutationDeleteCredentialRequestMetaYiviArgs, type MutationDeleteCredentialRequestMetaYotiArgs, type MutationDeleteCredentialRequestStateArgs, type MutationDeleteCredentialRequestStateLocaleArgs, type MutationDeleteDisclosureArgs, type MutationDeleteDisclosureAttributeArgs, type MutationDeleteDisclosureBrandArgs, type MutationDeleteDisclosureCredentialArgs, type MutationDeleteDisclosureDomainArgs, type MutationDeleteDisclosureGroupArgs, type MutationDeleteDisclosureLabelArgs, type MutationDeleteDisclosureMappingArgs, type MutationDeleteDisclosureProviderArgs, type MutationDeleteDisclosureProviderConfigurationNlWalletArgs, type MutationDeleteIssuanceArgs, type MutationDeleteIssuanceAttributeArgs, type MutationDeleteIssuanceBrandArgs, type MutationDeleteIssuanceCredentialArgs, type MutationDeleteIssuanceCredentialMetaDatakeeperArgs, type MutationDeleteIssuanceCredentialMetaYiviArgs, type MutationDeleteIssuanceDomainArgs, type MutationDeleteIssuanceLabelArgs, type MutationDeleteIssuanceMappingArgs, type MutationDeleteIssuanceProviderArgs, type MutationDeleteIssuerArgs, type MutationDeleteIssuerLabelArgs, type MutationDeleteIssuerLocaleArgs, type MutationDeleteIssuerMetaDatakeeperArgs, type MutationDeleteIssuerMetaMdocArgs, type MutationDeleteIssuerMetaOid4VcmdocArgs, type MutationDeleteIssuerMetaOid4VcsdjwtArgs, type MutationDeleteIssuerMetaYiviArgs, type MutationDeleteLabelArgs, type MutationDeleteLocaleConfigArgs, type MutationDeleteMaintenanceArgs, type MutationDeleteMappingIssuanceArgs, type MutationDeleteMappingIssuanceAttributeArgs, type MutationDeleteMappingIssuanceLinkArgs, type MutationDeleteMappingVerificationArgs, type MutationDeleteMappingVerificationAttributeArgs, type MutationDeleteMappingVerificationClaimArgs, type MutationDeleteMappingVerificationLinkArgs, type MutationDeleteOAuthProviderArgs, type MutationDeleteOrganizationAddressArgs, type MutationDeleteOrganizationAlertArgs, type MutationDeleteOrganizationAlertDeprecationArgs, type MutationDeleteOrganizationAppArgs, type MutationDeleteOrganizationAppMetaDatakeeperArgs, type MutationDeleteOrganizationAppMetaKiwaArgs, type MutationDeleteOrganizationAppMetaOid4vcArgs, type MutationDeleteOrganizationAppMetaYotiArgs, type MutationDeleteOrganizationAppPrerequisiteArgs, type MutationDeleteOrganizationArgs, type MutationDeleteOrganizationBrandArgs, type MutationDeleteOrganizationBrandLabelArgs, type MutationDeleteOrganizationClientArgs, type MutationDeleteOrganizationDomainArgs, type MutationDeleteOrganizationDomainLabelArgs, type MutationDeleteOrganizationDomainOAuthProviderArgs, type MutationDeleteOrganizationNotificationArgs, type MutationDeleteOrganizationNotificationEventArgs, type MutationDeleteOrganizationSecretArgs, type MutationDeleteOrganizationUserArgs, type MutationDeletePricingCatalogArgs, type MutationDeletePricingConfigurationAppArgs, type MutationDeletePricingConfigurationOrganizationArgs, type MutationDeletePricingConfigurationStudioPlanArgs, type MutationDeletePricingGroupArgs, type MutationDeletePricingGroupAssignmentArgs, type MutationDeletePricingRuleArgs, type MutationDeletePricingRuleConstraintArgs, type MutationDeletePricingRuleTargetArgs, type MutationDeleteProviderAppArgs, type MutationDeleteProviderAppMetaOid4VcArgs, type MutationDeleteProviderArgs, type MutationDeleteProviderLabelArgs, type MutationDeleteProviderLocaleArgs, type MutationDeleteSchemeArgs, type MutationDeleteSchemeLabelArgs, type MutationDeleteSchemeLocaleArgs, type MutationDeleteScopeArgs, type MutationDeleteScopeClaimArgs, type MutationDeleteScopeLocaleArgs, type MutationDeleteScopeResourceArgs, type MutationDeleteSignatureArgs, type MutationDeleteSignatureAttributeArgs, type MutationDeleteSignatureBrandArgs, type MutationDeleteSignatureCredentialArgs, type MutationDeleteSignatureDomainArgs, type MutationDeleteSignatureGroupArgs, type MutationDeleteSignatureLabelArgs, type MutationDeleteSignatureMappingArgs, type MutationDeleteSignatureProviderArgs, type MutationDeleteSignatureProviderConfigurationNlWalletArgs, type MutationDeleteStudioPlanArgs, type MutationDeleteStudioPlanControlArgs, type MutationDeleteStudioPlanControlOverrideArgs, type MutationDeleteStudioPlanIntervalArgs, type MutationDeleteStudioPlanOrganizationArgs, type MutationDeleteUserArgs, type MutationDeleteUserInvitationArgs, type MutationDuplicateAuthenticationArgs, type MutationDuplicateDisclosureArgs, type MutationDuplicateIssuanceArgs, type MutationDuplicateSignatureArgs, type MutationDuplicateStudioPlanArgs, type MutationLoginByClientCredentialsArgs, type MutationLoginByOpenIdTokenArgs, type MutationLoginByPasswordArgs, type MutationMoveDisclosureCredentialArgs, type MutationMoveSignatureCredentialArgs, type MutationRegisterByOpenIdTokenArgs, type MutationRegisterByPasswordArgs, type MutationRenewAccessTokenArgs, type MutationResendUserInvitationArgs, type MutationSetupBillingMethodArgs, type MutationTransitionOrganizationTypeArgs, type MutationUpdateAppArgs, type MutationUpdateAppLocaleArgs, type MutationUpdateAppPrerequisiteArgs, type MutationUpdateAppPrerequisiteLocaleArgs, type MutationUpdateAppPrerequisiteStateArgs, type MutationUpdateAppPrerequisiteStateLocaleArgs, type MutationUpdateAttributeArgs, type MutationUpdateAttributeLocaleArgs, type MutationUpdateAttributeMetaDatakeeperArgs, type MutationUpdateAttributeMetaDigidentityArgs, type MutationUpdateAttributeMetaMdocArgs, type MutationUpdateAttributeMetaNectArgs, type MutationUpdateAttributeMetaNlWalletArgs, type MutationUpdateAttributeMetaOid4VcmdocArgs, type MutationUpdateAttributeMetaOid4VcsdjwtArgs, type MutationUpdateAttributeMetaReadIdArgs, type MutationUpdateAttributeMetaTruidArgs, type MutationUpdateAttributeMetaYiviArgs, type MutationUpdateAttributeMetaYotiArgs, type MutationUpdateAttributeRequestArgs, type MutationUpdateAttributeRequestLocaleArgs, type MutationUpdateAttributeRequestMetaDatakeeperArgs, type MutationUpdateAttributeRequestMetaOid4VcmdocArgs, type MutationUpdateAttributeRequestMetaOid4VcsdjwtArgs, type MutationUpdateAttributeRequestMetaYiviArgs, type MutationUpdateAttributeRequestMetaYotiArgs, type MutationUpdateAuthenticationArgs, type MutationUpdateAuthenticationBrandArgs, type MutationUpdateAuthenticationDomainArgs, type MutationUpdateAuthenticationProviderArgs, type MutationUpdateAuthenticationProviderConfigurationNlWalletArgs, type MutationUpdateBillingMethodArgs, type MutationUpdateBillingPlanArgs, type MutationUpdateBillingWalletArgs, type MutationUpdateCredentialArgs, type MutationUpdateCredentialLocaleArgs, type MutationUpdateCredentialMetaDatakeeperArgs, type MutationUpdateCredentialMetaDigidentityArgs, type MutationUpdateCredentialMetaMdocArgs, type MutationUpdateCredentialMetaNectArgs, type MutationUpdateCredentialMetaNlWalletArgs, type MutationUpdateCredentialMetaOid4VcmdocArgs, type MutationUpdateCredentialMetaOid4VcsdjwtArgs, type MutationUpdateCredentialMetaReadIdArgs, type MutationUpdateCredentialMetaTruidArgs, type MutationUpdateCredentialMetaYiviArgs, type MutationUpdateCredentialMetaYotiArgs, type MutationUpdateCredentialRequestArgs, type MutationUpdateCredentialRequestLocaleArgs, type MutationUpdateCredentialRequestMetaDatakeeperArgs, type MutationUpdateCredentialRequestMetaOid4VcmdocArgs, type MutationUpdateCredentialRequestMetaOid4VcsdjwtArgs, type MutationUpdateCredentialRequestMetaYiviArgs, type MutationUpdateCredentialRequestMetaYotiArgs, type MutationUpdateCredentialRequestStateArgs, type MutationUpdateCredentialRequestStateLocaleArgs, type MutationUpdateDisclosureArgs, type MutationUpdateDisclosureBrandArgs, type MutationUpdateDisclosureDomainArgs, type MutationUpdateDisclosureGroupArgs, type MutationUpdateDisclosureProviderArgs, type MutationUpdateDisclosureProviderConfigurationNlWalletArgs, type MutationUpdateIssuanceArgs, type MutationUpdateIssuanceBrandArgs, type MutationUpdateIssuanceCredentialMetaDatakeeperArgs, type MutationUpdateIssuanceCredentialMetaYiviArgs, type MutationUpdateIssuanceDomainArgs, type MutationUpdateIssuanceProviderArgs, type MutationUpdateIssuerArgs, type MutationUpdateIssuerLocaleArgs, type MutationUpdateIssuerMetaDatakeeperArgs, type MutationUpdateIssuerMetaMdocArgs, type MutationUpdateIssuerMetaOid4VcmdocArgs, type MutationUpdateIssuerMetaOid4VcsdjwtArgs, type MutationUpdateIssuerMetaYiviArgs, type MutationUpdateLabelArgs, type MutationUpdateLocaleConfigArgs, type MutationUpdateMaintenanceArgs, type MutationUpdateMappingIssuanceArgs, type MutationUpdateMappingIssuanceAttributeArgs, type MutationUpdateMappingVerificationArgs, type MutationUpdateMappingVerificationAttributeArgs, type MutationUpdateMappingVerificationClaimArgs, type MutationUpdateMappingVerificationLinkArgs, type MutationUpdateOAuthProviderArgs, type MutationUpdateOrganizationAddressArgs, type MutationUpdateOrganizationAlertArgs, type MutationUpdateOrganizationAlertDeprecationArgs, type MutationUpdateOrganizationAppMetaDatakeeperArgs, type MutationUpdateOrganizationAppMetaKiwaArgs, type MutationUpdateOrganizationAppMetaOid4vcArgs, type MutationUpdateOrganizationAppMetaYotiArgs, type MutationUpdateOrganizationArgs, type MutationUpdateOrganizationBrandArgs, type MutationUpdateOrganizationClientArgs, type MutationUpdateOrganizationDomainArgs, type MutationUpdateOrganizationNotificationArgs, type MutationUpdateOrganizationSecretArgs, type MutationUpdateOrganizationUserArgs, type MutationUpdatePasswordUserArgs, type MutationUpdatePricingCatalogArgs, type MutationUpdatePricingConfigurationAppArgs, type MutationUpdatePricingConfigurationOrganizationArgs, type MutationUpdatePricingConfigurationStudioPlanArgs, type MutationUpdatePricingGroupArgs, type MutationUpdatePricingRuleArgs, type MutationUpdatePricingRuleConstraintArgs, type MutationUpdatePricingRuleTargetArgs, type MutationUpdateProviderAppMetaOid4VcArgs, type MutationUpdateProviderArgs, type MutationUpdateProviderLocaleArgs, type MutationUpdateSchemeArgs, type MutationUpdateSchemeLocaleArgs, type MutationUpdateScopeArgs, type MutationUpdateScopeClaimArgs, type MutationUpdateScopeLocaleArgs, type MutationUpdateScopeResourceArgs, type MutationUpdateSignatureArgs, type MutationUpdateSignatureBrandArgs, type MutationUpdateSignatureDomainArgs, type MutationUpdateSignatureGroupArgs, type MutationUpdateSignatureProviderArgs, type MutationUpdateSignatureProviderConfigurationNlWalletArgs, type MutationUpdateStudioPlanArgs, type MutationUpdateStudioPlanControlArgs, type MutationUpdateStudioPlanControlOverrideArgs, type MutationUpdateStudioPlanIntervalArgs, type MutationUpdateUserArgs, type MutationUpdateUserInvitationArgs, type MutationUseUserInvitationTokenArgs, type MutationUseUserResetArgs, type MutationValidateUserInvitationArgs, type MutationValidateUserInvitationTokenArgs, type MutationValidateUserResetArgs, NestedFilteringType, OAuthFlowType, type OAuthMethod, type OAuthProvider, OAuthProviderAction, type OAuthProviderConnection, type OAuthProviderEdge, OAuthProviderFilteringField, type OAuthProviderOrganizationDomainOAuthProvidersArgs, OAuthProviderSortEnum, type OAuthProviderSortInput, OAuthProviderState, OperationFailedError, OrderDirection, type Organization, OrganizationAction, type OrganizationAddress, type OrganizationAddressConnection, type OrganizationAddressEdge, OrganizationAddressFilteringField, OrganizationAddressSortEnum, type OrganizationAddressSortInput, type OrganizationAlert, OrganizationAlertAction, type OrganizationAlertConnection, type OrganizationAlertDeprecation, type OrganizationAlertDeprecationConnection, type OrganizationAlertDeprecationEdge, OrganizationAlertDeprecationFilteringField, OrganizationAlertDeprecationSortEnum, type OrganizationAlertDeprecationSortInput, type OrganizationAlertEdge, OrganizationAlertFilteringField, OrganizationAlertSortEnum, type OrganizationAlertSortInput, type OrganizationApp, OrganizationAppAction, type OrganizationAppConnection, type OrganizationAppEdge, OrganizationAppFilteringField, type OrganizationAppMeta, type OrganizationAppMetaConnection, type OrganizationAppMetaDatakeeper, type OrganizationAppMetaDatakeeperConnection, type OrganizationAppMetaDatakeeperEdge, OrganizationAppMetaDatakeeperFilteringField, OrganizationAppMetaDatakeeperSortEnum, type OrganizationAppMetaDatakeeperSortInput, type OrganizationAppMetaEdge, OrganizationAppMetaFilteringField, type OrganizationAppMetaKiwa, type OrganizationAppMetaKiwaConnection, type OrganizationAppMetaKiwaEdge, OrganizationAppMetaKiwaFilteringField, OrganizationAppMetaKiwaSortEnum, type OrganizationAppMetaKiwaSortInput, type OrganizationAppMetaOid4vc, type OrganizationAppMetaOid4vcConnection, type OrganizationAppMetaOid4vcEdge, OrganizationAppMetaOid4vcFilteringField, OrganizationAppMetaOid4vcSortEnum, type OrganizationAppMetaOid4vcSortInput, OrganizationAppMetaSortEnum, type OrganizationAppMetaSortInput, OrganizationAppMetaType, type OrganizationAppMetaYoti, type OrganizationAppMetaYotiConnection, type OrganizationAppMetaYotiEdge, OrganizationAppMetaYotiFilteringField, OrganizationAppMetaYotiSortEnum, type OrganizationAppMetaYotiSortInput, type OrganizationAppNestedFilteringAppField, type OrganizationAppOrganizationAppPrerequisitesArgs, type OrganizationAppPrerequisite, type OrganizationAppPrerequisiteConnection, type OrganizationAppPrerequisiteEdge, OrganizationAppPrerequisiteFilteringField, OrganizationAppPrerequisiteSortEnum, type OrganizationAppPrerequisiteSortInput, type OrganizationAppPrerequisiteWorkflow, type OrganizationAppPrerequisiteWorkflowConnection, type OrganizationAppPrerequisiteWorkflowEdge, OrganizationAppPrerequisiteWorkflowFilteringField, OrganizationAppPrerequisiteWorkflowSortEnum, type OrganizationAppPrerequisiteWorkflowSortInput, type OrganizationAppPrerequisiteWorkflowsArgs, OrganizationAppProduct, OrganizationAppSortEnum, type OrganizationAppSortInput, OrganizationAppState, type OrganizationBrand, OrganizationBrandAction, type OrganizationBrandConnection, type OrganizationBrandEdge, OrganizationBrandFilteringField, type OrganizationBrandLabel, type OrganizationBrandLabelConnection, type OrganizationBrandLabelEdge, OrganizationBrandLabelFilteringField, OrganizationBrandLabelSortEnum, type OrganizationBrandLabelSortInput, type OrganizationBrandNestedFilteringOrganizationBrandLabelField, type OrganizationBrandOrganizationBrandLabelsArgs, OrganizationBrandSortEnum, type OrganizationBrandSortInput, OrganizationBrandState, type OrganizationClient, type OrganizationClientConnection, type OrganizationClientEdge, OrganizationClientFilteringField, OrganizationClientSortEnum, type OrganizationClientSortInput, type OrganizationConnection, type OrganizationDomain, OrganizationDomainAction, type OrganizationDomainActionRejectInput, type OrganizationDomainConnection, type OrganizationDomainEdge, OrganizationDomainFilteringField, type OrganizationDomainLabel, type OrganizationDomainLabelConnection, type OrganizationDomainLabelEdge, OrganizationDomainLabelFilteringField, OrganizationDomainLabelSortEnum, type OrganizationDomainLabelSortInput, type OrganizationDomainNestedFilteringOrganizationDomainLabelField, type OrganizationDomainOAuthProvider, type OrganizationDomainOAuthProviderConnection, type OrganizationDomainOAuthProviderEdge, OrganizationDomainOAuthProviderFilteringField, OrganizationDomainOAuthProviderSortEnum, type OrganizationDomainOAuthProviderSortInput, type OrganizationDomainOrganizationDomainLabelsArgs, OrganizationDomainSortEnum, type OrganizationDomainSortInput, OrganizationDomainState, type OrganizationDomainValidation, type OrganizationDomainValidationConnection, type OrganizationDomainValidationEdge, OrganizationDomainValidationFilteringField, OrganizationDomainValidationSortEnum, type OrganizationDomainValidationSortInput, type OrganizationEdge, OrganizationFilteringField, type OrganizationLabelsArgs, type OrganizationManagedOrganizationsArgs, type OrganizationNotification, OrganizationNotificationAction, type OrganizationNotificationConnection, type OrganizationNotificationEdge, type OrganizationNotificationEvent, type OrganizationNotificationEventConnection, type OrganizationNotificationEventEdge, OrganizationNotificationEventFilteringField, OrganizationNotificationEventSortEnum, type OrganizationNotificationEventSortInput, OrganizationNotificationFilteringField, OrganizationNotificationSortEnum, type OrganizationNotificationSortInput, type OrganizationOrganizationAddressesArgs, type OrganizationOrganizationBrandsArgs, type OrganizationOrganizationDomainsArgs, type OrganizationOrganizationUsersArgs, type OrganizationQuota, type OrganizationQuotaConnection, type OrganizationQuotaEdge, OrganizationQuotaFilteringField, OrganizationQuotaSortEnum, type OrganizationQuotaSortInput, type OrganizationSecret, OrganizationSecretAlgorithm, type OrganizationSecretConnection, type OrganizationSecretEdge, OrganizationSecretFilteringField, OrganizationSecretSortEnum, type OrganizationSecretSortInput, OrganizationSecretType, OrganizationSortEnum, type OrganizationSortInput, OrganizationType, type OrganizationUser, OrganizationUserAction, type OrganizationUserConnection, type OrganizationUserEdge, OrganizationUserFilteringField, type OrganizationUserInvitationsArgs, type OrganizationUserNestedFilteringUserField, OrganizationUserRole, OrganizationUserSortEnum, type OrganizationUserSortInput, type PageInfo, type PaginationInput, type PaymentProvider, type PaymentProviderConnection, type PaymentProviderEdge, type PaymentProviderEvent, type PaymentProviderEventConnection, type PaymentProviderEventEdge, PaymentProviderEventFilteringField, PaymentProviderEventSortEnum, type PaymentProviderEventSortInput, PaymentProviderFilteringField, type PaymentProviderInvoice, type PaymentProviderInvoiceConnection, type PaymentProviderInvoiceEdge, PaymentProviderInvoiceFilteringField, PaymentProviderInvoiceSortEnum, type PaymentProviderInvoiceSortInput, PaymentProviderInvoiceState, type PaymentProviderMethod, type PaymentProviderMethodConnection, type PaymentProviderMethodEdge, PaymentProviderMethodFilteringField, PaymentProviderMethodSortEnum, type PaymentProviderMethodSortInput, PaymentProviderMethodState, type PaymentProviderOrganization, type PaymentProviderOrganizationConnection, type PaymentProviderOrganizationEdge, PaymentProviderOrganizationFilteringField, type PaymentProviderOrganizationPaymentProviderInvoicesArgs, type PaymentProviderOrganizationPaymentProviderMethodsArgs, PaymentProviderOrganizationSortEnum, type PaymentProviderOrganizationSortInput, type PaymentProviderPaymentProviderEventsArgs, type PaymentProviderPaymentProviderOrganizationsArgs, PaymentProviderSortEnum, type PaymentProviderSortInput, PricingAggregationStrategy, type PricingCatalog, type PricingCatalogConnection, type PricingCatalogEdge, PricingCatalogFilteringField, type PricingCatalogRulesArgs, PricingCatalogSortEnum, type PricingCatalogSortInput, type PricingConfigurationApp, type PricingConfigurationAppConnection, type PricingConfigurationAppEdge, PricingConfigurationAppFilteringField, PricingConfigurationAppSortEnum, type PricingConfigurationAppSortInput, type PricingConfigurationOrganization, type PricingConfigurationOrganizationConnection, type PricingConfigurationOrganizationEdge, PricingConfigurationOrganizationFilteringField, PricingConfigurationOrganizationSortEnum, type PricingConfigurationOrganizationSortInput, type PricingConfigurationStudioPlan, type PricingConfigurationStudioPlanConnection, type PricingConfigurationStudioPlanEdge, PricingConfigurationStudioPlanFilteringField, PricingConfigurationStudioPlanSortEnum, type PricingConfigurationStudioPlanSortInput, type PricingGroup, type PricingGroupAssignment, type PricingGroupAssignmentConnection, type PricingGroupAssignmentEdge, PricingGroupAssignmentFilteringField, PricingGroupAssignmentSortEnum, type PricingGroupAssignmentSortInput, PricingGroupAssignmentType, type PricingGroupAssignmentsArgs, type PricingGroupConnection, type PricingGroupEdge, PricingGroupFilteringField, PricingGroupSortEnum, type PricingGroupSortInput, PricingHierarchyLevel, PricingLayer, type PricingRule, PricingRuleAction, type PricingRuleConnection, type PricingRuleConstraint, type PricingRuleConstraintConnection, type PricingRuleConstraintEdge, PricingRuleConstraintFilteringField, PricingRuleConstraintSortEnum, type PricingRuleConstraintSortInput, type PricingRuleConstraintsArgs, type PricingRuleEdge, PricingRuleFilteringField, PricingRuleSortEnum, type PricingRuleSortInput, PricingRuleState, type PricingRuleTarget, type PricingRuleTargetConnection, type PricingRuleTargetEdge, PricingRuleTargetFilteringField, PricingRuleTargetSortEnum, type PricingRuleTargetSortInput, PricingType, type Provider, type ProviderApp, type ProviderAppConnection, type ProviderAppEdge, ProviderAppFilteringField, type ProviderAppMeta, type ProviderAppMetaConnection, type ProviderAppMetaEdge, ProviderAppMetaFilteringField, type ProviderAppMetaOid4Vc, type ProviderAppMetaOid4VcConnection, type ProviderAppMetaOid4VcEdge, ProviderAppMetaOid4VcFilteringField, ProviderAppMetaOid4VcSortEnum, type ProviderAppMetaOid4VcSortInput, ProviderAppMetaOid4VcSpecType, ProviderAppMetaSortEnum, type ProviderAppMetaSortInput, ProviderAppMetaType, ProviderAppMetaTypeOid4VcClientIdentifierPrefix, type ProviderAppScopesArgs, ProviderAppSortEnum, type ProviderAppSortInput, type ProviderAppsArgs, ProviderCategoryType, type ProviderConnection, type ProviderCredentialRequestStatesArgs, type ProviderCredentialRequestsArgs, type ProviderEdge, type ProviderEntity, ProviderFilteringField, type ProviderForOrganization, type ProviderForOrganizationConnection, type ProviderForOrganizationEdge, type ProviderLabel, type ProviderLabelConnection, type ProviderLabelEdge, ProviderLabelFilteringField, ProviderLabelSortEnum, type ProviderLabelSortInput, type ProviderLocale, type ProviderLocaleArgs, type ProviderLocaleConfigsArgs, type ProviderLocaleConnection, type ProviderLocaleEdge, ProviderLocaleFilteringField, ProviderLocaleSortEnum, type ProviderLocaleSortInput, type ProviderSchemesArgs, ProviderSortEnum, type ProviderSortInput, ProviderType, type Query, type QueryFindAppArgs, type QueryFindAppLocaleArgs, type QueryFindAppPrerequisiteArgs, type QueryFindAppPrerequisiteLocaleArgs, type QueryFindAppPrerequisiteStateArgs, type QueryFindAppPrerequisiteStateLocaleArgs, type QueryFindAttributeArgs, type QueryFindAttributeLabelArgs, type QueryFindAttributeLocaleArgs, type QueryFindAttributeMetaArgs, type QueryFindAttributeMetaDatakeeperArgs, type QueryFindAttributeMetaDigidentityArgs, type QueryFindAttributeMetaMdocArgs, type QueryFindAttributeMetaNectArgs, type QueryFindAttributeMetaNlWalletArgs, type QueryFindAttributeMetaOid4VcmdocArgs, type QueryFindAttributeMetaOid4VcsdjwtArgs, type QueryFindAttributeMetaReadIdArgs, type QueryFindAttributeMetaTruidArgs, type QueryFindAttributeMetaYiviArgs, type QueryFindAttributeMetaYotiArgs, type QueryFindAttributeRequestArgs, type QueryFindAttributeRequestLocaleArgs, type QueryFindAttributeRequestMetaArgs, type QueryFindAttributeRequestMetaDatakeeperArgs, type QueryFindAttributeRequestMetaOid4VcmdocArgs, type QueryFindAttributeRequestMetaOid4VcsdjwtArgs, type QueryFindAttributeRequestMetaYiviArgs, type QueryFindAttributeRequestMetaYotiArgs, type QueryFindAuthenticationActivityArgs, type QueryFindAuthenticationArgs, type QueryFindAuthenticationBrandArgs, type QueryFindAuthenticationDomainArgs, type QueryFindAuthenticationLabelArgs, type QueryFindAuthenticationProviderArgs, type QueryFindAuthenticationProviderConfigurationArgs, type QueryFindAuthenticationProviderConfigurationNlWalletArgs, type QueryFindAuthenticationScopeArgs, type QueryFindBillingArgs, type QueryFindBillingMethodArgs, type QueryFindBillingPlanArgs, type QueryFindBillingWalletArgs, type QueryFindBillingWalletTransactionArgs, type QueryFindBillingWalletTransactionMetaArgs, type QueryFindBillingWalletTransactionMetaFlowArgs, type QueryFindBillingWalletTransactionMetaFlowAttributeArgs, type QueryFindBillingWalletTransactionMetaPlanArgs, type QueryFindBillingWalletTransactionMetaWalletArgs, type QueryFindCredentialArgs, type QueryFindCredentialLabelArgs, type QueryFindCredentialLocaleArgs, type QueryFindCredentialMetaArgs, type QueryFindCredentialMetaDatakeeperArgs, type QueryFindCredentialMetaDigidentityArgs, type QueryFindCredentialMetaMdocArgs, type QueryFindCredentialMetaNectArgs, type QueryFindCredentialMetaNlWalletArgs, type QueryFindCredentialMetaOid4VcmdocArgs, type QueryFindCredentialMetaOid4VcsdjwtArgs, type QueryFindCredentialMetaReadIdArgs, type QueryFindCredentialMetaTruidArgs, type QueryFindCredentialMetaYiviArgs, type QueryFindCredentialMetaYotiArgs, type QueryFindCredentialRequestArgs, type QueryFindCredentialRequestLocaleArgs, type QueryFindCredentialRequestMetaArgs, type QueryFindCredentialRequestMetaDatakeeperArgs, type QueryFindCredentialRequestMetaOid4VcmdocArgs, type QueryFindCredentialRequestMetaOid4VcsdjwtArgs, type QueryFindCredentialRequestMetaYiviArgs, type QueryFindCredentialRequestMetaYotiArgs, type QueryFindCredentialRequestStateArgs, type QueryFindCredentialRequestStateLocaleArgs, type QueryFindCredentialRequestWorkflowArgs, type QueryFindDisclosureActivityArgs, type QueryFindDisclosureArgs, type QueryFindDisclosureAttributeArgs, type QueryFindDisclosureBrandArgs, type QueryFindDisclosureCredentialArgs, type QueryFindDisclosureDomainArgs, type QueryFindDisclosureGroupArgs, type QueryFindDisclosureLabelArgs, type QueryFindDisclosureMappingArgs, type QueryFindDisclosureProviderArgs, type QueryFindDisclosureProviderConfigurationArgs, type QueryFindDisclosureProviderConfigurationNlWalletArgs, type QueryFindGlobalOAuthMethodsArgs, type QueryFindIssuanceActivityArgs, type QueryFindIssuanceArgs, type QueryFindIssuanceAttributeArgs, type QueryFindIssuanceBrandArgs, type QueryFindIssuanceCredentialArgs, type QueryFindIssuanceCredentialMetaArgs, type QueryFindIssuanceCredentialMetaDatakeeperArgs, type QueryFindIssuanceCredentialMetaYiviArgs, type QueryFindIssuanceDomainArgs, type QueryFindIssuanceLabelArgs, type QueryFindIssuanceMappingArgs, type QueryFindIssuanceProviderArgs, type QueryFindIssuerArgs, type QueryFindIssuerLabelArgs, type QueryFindIssuerLocaleArgs, type QueryFindIssuerMetaArgs, type QueryFindIssuerMetaDatakeeperArgs, type QueryFindIssuerMetaMdocArgs, type QueryFindIssuerMetaOid4VcmdocArgs, type QueryFindIssuerMetaOid4VcsdjwtArgs, type QueryFindIssuerMetaYiviArgs, type QueryFindLabelArgs, type QueryFindLocaleConfigArgs, type QueryFindMaintenanceArgs, type QueryFindManyAppLocalesArgs, type QueryFindManyAppPrerequisiteArgs, type QueryFindManyAppPrerequisiteLocalesArgs, type QueryFindManyAppPrerequisiteStateArgs, type QueryFindManyAppPrerequisiteStateLocalesArgs, type QueryFindManyAppsArgs, type QueryFindManyAttributeLabelsArgs, type QueryFindManyAttributeLocalesArgs, type QueryFindManyAttributeMetaArgs, type QueryFindManyAttributeMetaDatakeeperArgs, type QueryFindManyAttributeMetaDigidentityArgs, type QueryFindManyAttributeMetaMdocArgs, type QueryFindManyAttributeMetaNectArgs, type QueryFindManyAttributeMetaNlWalletArgs, type QueryFindManyAttributeMetaOid4VcmdocArgs, type QueryFindManyAttributeMetaOid4VcsdjwtArgs, type QueryFindManyAttributeMetaReadIdArgs, type QueryFindManyAttributeMetaTruidArgs, type QueryFindManyAttributeMetaYiviArgs, type QueryFindManyAttributeMetaYotiArgs, type QueryFindManyAttributeRequestArgs, type QueryFindManyAttributeRequestLocalesArgs, type QueryFindManyAttributeRequestMetaArgs, type QueryFindManyAttributeRequestMetaDatakeeperArgs, type QueryFindManyAttributeRequestMetaOid4VcmdocArgs, type QueryFindManyAttributeRequestMetaOid4VcsdjwtArgs, type QueryFindManyAttributeRequestMetaYiviArgs, type QueryFindManyAttributeRequestMetaYotiArgs, type QueryFindManyAttributesArgs, type QueryFindManyAuthenticationActivitiesArgs, type QueryFindManyAuthenticationBrandsArgs, type QueryFindManyAuthenticationDomainsArgs, type QueryFindManyAuthenticationLabelsArgs, type QueryFindManyAuthenticationProviderConfigurationNlWalletsArgs, type QueryFindManyAuthenticationProviderConfigurationsArgs, type QueryFindManyAuthenticationProvidersArgs, type QueryFindManyAuthenticationScopesArgs, type QueryFindManyAuthenticationsArgs, type QueryFindManyBillingMethodsArgs, type QueryFindManyBillingPlansArgs, type QueryFindManyBillingWalletTransactionMetaFlowAttributesArgs, type QueryFindManyBillingWalletTransactionMetaFlowsArgs, type QueryFindManyBillingWalletTransactionMetaPlansArgs, type QueryFindManyBillingWalletTransactionMetaWalletsArgs, type QueryFindManyBillingWalletTransactionMetasArgs, type QueryFindManyBillingWalletTransactionsArgs, type QueryFindManyBillingWalletsArgs, type QueryFindManyBillingsArgs, type QueryFindManyCredentialLabelsArgs, type QueryFindManyCredentialLocalesArgs, type QueryFindManyCredentialMetaArgs, type QueryFindManyCredentialMetaDatakeeperArgs, type QueryFindManyCredentialMetaDigidentityArgs, type QueryFindManyCredentialMetaMdocArgs, type QueryFindManyCredentialMetaNectArgs, type QueryFindManyCredentialMetaNlWalletArgs, type QueryFindManyCredentialMetaOid4VcmdocArgs, type QueryFindManyCredentialMetaOid4VcsdjwtArgs, type QueryFindManyCredentialMetaReadIdArgs, type QueryFindManyCredentialMetaTruidArgs, type QueryFindManyCredentialMetaYiviArgs, type QueryFindManyCredentialMetaYotiArgs, type QueryFindManyCredentialRequestArgs, type QueryFindManyCredentialRequestLocalesArgs, type QueryFindManyCredentialRequestMetaArgs, type QueryFindManyCredentialRequestMetaDatakeeperArgs, type QueryFindManyCredentialRequestMetaOid4VcmdocArgs, type QueryFindManyCredentialRequestMetaOid4VcsdjwtArgs, type QueryFindManyCredentialRequestMetaYiviArgs, type QueryFindManyCredentialRequestMetaYotiArgs, type QueryFindManyCredentialRequestStateArgs, type QueryFindManyCredentialRequestStateLocalesArgs, type QueryFindManyCredentialRequestWorkflowArgs, type QueryFindManyCredentialsArgs, type QueryFindManyDisclosureActivitiesArgs, type QueryFindManyDisclosureAttributesArgs, type QueryFindManyDisclosureBrandsArgs, type QueryFindManyDisclosureCredentialsArgs, type QueryFindManyDisclosureDomainsArgs, type QueryFindManyDisclosureGroupsArgs, type QueryFindManyDisclosureLabelsArgs, type QueryFindManyDisclosureMappingsArgs, type QueryFindManyDisclosureProviderConfigurationNlWalletsArgs, type QueryFindManyDisclosureProviderConfigurationsArgs, type QueryFindManyDisclosureProvidersArgs, type QueryFindManyDisclosuresArgs, type QueryFindManyIssuanceActivitiesArgs, type QueryFindManyIssuanceAttributesArgs, type QueryFindManyIssuanceBrandsArgs, type QueryFindManyIssuanceCredentialMetaArgs, type QueryFindManyIssuanceCredentialMetaDatakeeperArgs, type QueryFindManyIssuanceCredentialMetaYiviArgs, type QueryFindManyIssuanceCredentialsArgs, type QueryFindManyIssuanceDomainsArgs, type QueryFindManyIssuanceLabelsArgs, type QueryFindManyIssuanceMappingsArgs, type QueryFindManyIssuanceProvidersArgs, type QueryFindManyIssuancesArgs, type QueryFindManyIssuerLabelsArgs, type QueryFindManyIssuerLocalesArgs, type QueryFindManyIssuerMetaArgs, type QueryFindManyIssuerMetaDatakeeperArgs, type QueryFindManyIssuerMetaMdocArgs, type QueryFindManyIssuerMetaOid4VcmdocArgs, type QueryFindManyIssuerMetaOid4VcsdjwtArgs, type QueryFindManyIssuerMetaYiviArgs, type QueryFindManyIssuersArgs, type QueryFindManyLabelsArgs, type QueryFindManyLocaleConfigsArgs, type QueryFindManyMaintenancesArgs, type QueryFindManyMappingIssuanceAttributesArgs, type QueryFindManyMappingIssuanceLinksArgs, type QueryFindManyMappingIssuancesArgs, type QueryFindManyMappingVerificationAttributesArgs, type QueryFindManyMappingVerificationClaimsArgs, type QueryFindManyMappingVerificationLinksArgs, type QueryFindManyMappingVerificationsArgs, type QueryFindManyOAuthProvidersArgs, type QueryFindManyOrganizationAddressesArgs, type QueryFindManyOrganizationAlertDeprecationsArgs, type QueryFindManyOrganizationAlertsArgs, type QueryFindManyOrganizationAppArgs, type QueryFindManyOrganizationAppMetaArgs, type QueryFindManyOrganizationAppMetaDatakeeperArgs, type QueryFindManyOrganizationAppMetaKiwaArgs, type QueryFindManyOrganizationAppMetaOid4vcArgs, type QueryFindManyOrganizationAppMetaYotiArgs, type QueryFindManyOrganizationAppPrerequisiteArgs, type QueryFindManyOrganizationAppPrerequisiteWorkflowArgs, type QueryFindManyOrganizationBrandLabelsArgs, type QueryFindManyOrganizationBrandsArgs, type QueryFindManyOrganizationClientsArgs, type QueryFindManyOrganizationDomainLabelsArgs, type QueryFindManyOrganizationDomainOAuthProvidersArgs, type QueryFindManyOrganizationDomainValidationsArgs, type QueryFindManyOrganizationDomainsArgs, type QueryFindManyOrganizationNotificationEventsArgs, type QueryFindManyOrganizationNotificationsArgs, type QueryFindManyOrganizationQuotasArgs, type QueryFindManyOrganizationSecretsArgs, type QueryFindManyOrganizationUsersArgs, type QueryFindManyOrganizationsArgs, type QueryFindManyOrganizationsWithStudioPlanArgs, type QueryFindManyPaymentProviderEventsArgs, type QueryFindManyPaymentProviderInvoicesArgs, type QueryFindManyPaymentProviderMethodsArgs, type QueryFindManyPaymentProviderOrganizationsArgs, type QueryFindManyPaymentProvidersArgs, type QueryFindManyPricingCatalogsArgs, type QueryFindManyPricingConfigurationAppsArgs, type QueryFindManyPricingConfigurationOrganizationsArgs, type QueryFindManyPricingConfigurationStudioPlansArgs, type QueryFindManyPricingGroupAssignmentsArgs, type QueryFindManyPricingGroupsArgs, type QueryFindManyPricingRuleConstraintsArgs, type QueryFindManyPricingRuleTargetsArgs, type QueryFindManyPricingRulesArgs, type QueryFindManyProviderAppMetaArgs, type QueryFindManyProviderAppMetaOid4VcArgs, type QueryFindManyProviderAppsArgs, type QueryFindManyProviderLabelsArgs, type QueryFindManyProviderLocalesArgs, type QueryFindManyProvidersArgs, type QueryFindManyProvidersForOrganizationArgs, type QueryFindManySchemeLabelsArgs, type QueryFindManySchemeLocalesArgs, type QueryFindManySchemesArgs, type QueryFindManyScopeClaimsArgs, type QueryFindManyScopeLocalesArgs, type QueryFindManyScopeResourcesArgs, type QueryFindManyScopesArgs, type QueryFindManySignatureActivitiesArgs, type QueryFindManySignatureAttributesArgs, type QueryFindManySignatureBrandsArgs, type QueryFindManySignatureCredentialsArgs, type QueryFindManySignatureDomainsArgs, type QueryFindManySignatureGroupsArgs, type QueryFindManySignatureLabelsArgs, type QueryFindManySignatureMappingsArgs, type QueryFindManySignatureProviderConfigurationNlWalletsArgs, type QueryFindManySignatureProviderConfigurationsArgs, type QueryFindManySignatureProvidersArgs, type QueryFindManySignaturesArgs, type QueryFindManyStudioPlanControlOverridesArgs, type QueryFindManyStudioPlanControlsArgs, type QueryFindManyStudioPlanIntervalsArgs, type QueryFindManyStudioPlanOrganizationsArgs, type QueryFindManyStudioPlansArgs, type QueryFindManyUserInvitationsArgs, type QueryFindManyUsersArgs, type QueryFindMappingIssuanceArgs, type QueryFindMappingIssuanceAttributeArgs, type QueryFindMappingIssuanceLinkArgs, type QueryFindMappingVerificationArgs, type QueryFindMappingVerificationAttributeArgs, type QueryFindMappingVerificationClaimArgs, type QueryFindMappingVerificationLinkArgs, type QueryFindOAuthMethodsByOrganizationDomainArgs, type QueryFindOAuthProviderArgs, type QueryFindOrganizationAddressArgs, type QueryFindOrganizationAlertArgs, type QueryFindOrganizationAlertDeprecationArgs, type QueryFindOrganizationAppArgs, type QueryFindOrganizationAppMetaArgs, type QueryFindOrganizationAppMetaDatakeeperArgs, type QueryFindOrganizationAppMetaKiwaArgs, type QueryFindOrganizationAppMetaOid4vcArgs, type QueryFindOrganizationAppMetaYotiArgs, type QueryFindOrganizationAppPrerequisiteArgs, type QueryFindOrganizationAppPrerequisiteWorkflowArgs, type QueryFindOrganizationArgs, type QueryFindOrganizationBrandArgs, type QueryFindOrganizationBrandLabelArgs, type QueryFindOrganizationClientArgs, type QueryFindOrganizationDomainArgs, type QueryFindOrganizationDomainLabelArgs, type QueryFindOrganizationDomainOAuthProviderArgs, type QueryFindOrganizationDomainValidationArgs, type QueryFindOrganizationNotificationArgs, type QueryFindOrganizationNotificationEventArgs, type QueryFindOrganizationQuotaArgs, type QueryFindOrganizationSecretArgs, type QueryFindOrganizationUserArgs, type QueryFindPaymentProviderArgs, type QueryFindPaymentProviderEventArgs, type QueryFindPaymentProviderInvoiceArgs, type QueryFindPaymentProviderMethodArgs, type QueryFindPaymentProviderOrganizationArgs, type QueryFindPricingCatalogArgs, type QueryFindPricingConfigurationAppArgs, type QueryFindPricingConfigurationOrganizationArgs, type QueryFindPricingConfigurationStudioPlanArgs, type QueryFindPricingGroupArgs, type QueryFindPricingGroupAssignmentArgs, type QueryFindPricingRuleArgs, type QueryFindPricingRuleConstraintArgs, type QueryFindPricingRuleTargetArgs, type QueryFindProviderAppArgs, type QueryFindProviderAppMetaArgs, type QueryFindProviderAppMetaOid4VcArgs, type QueryFindProviderArgs, type QueryFindProviderLabelArgs, type QueryFindProviderLocaleArgs, type QueryFindSchemeArgs, type QueryFindSchemeLabelArgs, type QueryFindSchemeLocaleArgs, type QueryFindScopeArgs, type QueryFindScopeClaimArgs, type QueryFindScopeLocaleArgs, type QueryFindScopeResourceArgs, type QueryFindSignatureActivityArgs, type QueryFindSignatureArgs, type QueryFindSignatureAttributeArgs, type QueryFindSignatureBrandArgs, type QueryFindSignatureCredentialArgs, type QueryFindSignatureDomainArgs, type QueryFindSignatureGroupArgs, type QueryFindSignatureLabelArgs, type QueryFindSignatureMappingArgs, type QueryFindSignatureProviderArgs, type QueryFindSignatureProviderConfigurationArgs, type QueryFindSignatureProviderConfigurationNlWalletArgs, type QueryFindStudioPlanArgs, type QueryFindStudioPlanControlArgs, type QueryFindStudioPlanControlOverrideArgs, type QueryFindStudioPlanIntervalArgs, type QueryFindStudioPlanOrganizationArgs, type QueryFindUserArgs, type QueryFindUserInvitationArgs, type QueryGetPaymentProviderInvoiceReceiptArgs, type QueryJsonSchemaArgs, type RegisterByOpenIdTokenInput, type RegisterByPasswordInput, type RenewAccessTokenInput, type Scalars, type Scheme, SchemeCategoryType, type SchemeConnection, type SchemeEdge, type SchemeEntity, type SchemeEntityDeep, SchemeFilteringField, type SchemeIssuersArgs, type SchemeLabel, type SchemeLabelConnection, type SchemeLabelEdge, SchemeLabelFilteringField, SchemeLabelSortEnum, type SchemeLabelSortInput, type SchemeLocale, type SchemeLocaleArgs, type SchemeLocaleConnection, type SchemeLocaleEdge, SchemeLocaleFilteringField, SchemeLocaleSortEnum, type SchemeLocaleSortInput, SchemeSortEnum, type SchemeSortInput, SchemeType, type Scope, ScopeCategoryType, type ScopeClaim, type ScopeClaimConnection, type ScopeClaimEdge, ScopeClaimFilteringField, ScopeClaimSortEnum, type ScopeClaimSortInput, type ScopeClaimsArgs, type ScopeConnection, type ScopeEdge, ScopeFilteringField, type ScopeLocale, type ScopeLocaleArgs, type ScopeLocaleConnection, type ScopeLocaleEdge, ScopeLocaleFilteringField, ScopeLocaleSortEnum, type ScopeLocaleSortInput, type ScopeResource, type ScopeResourceConnection, type ScopeResourceEdge, ScopeResourceFilteringField, ScopeResourceSortEnum, type ScopeResourceSortInput, type ScopeResourcesArgs, ScopeSortEnum, type ScopeSortInput, type SetupBillingMethodInput, type SetupBillingMethodOutput, type Signature, SignatureAction, type SignatureActivity, type SignatureActivityConnection, type SignatureActivityEdge, SignatureActivityFilteringField, SignatureActivitySortEnum, type SignatureActivitySortInput, type SignatureAttribute, type SignatureAttributeConnection, type SignatureAttributeEdge, SignatureAttributeFilteringField, SignatureAttributeSortEnum, type SignatureAttributeSortInput, type SignatureBrand, type SignatureBrandConnection, type SignatureBrandEdge, SignatureBrandFilteringField, SignatureBrandSortEnum, type SignatureBrandSortInput, type SignatureConnection, type SignatureCredential, type SignatureCredentialConnection, type SignatureCredentialEdge, SignatureCredentialFilteringField, type SignatureCredentialSignatureAttributesArgs, SignatureCredentialSortEnum, type SignatureCredentialSortInput, type SignatureDomain, type SignatureDomainConnection, type SignatureDomainEdge, SignatureDomainFilteringField, SignatureDomainSortEnum, type SignatureDomainSortInput, type SignatureEdge, SignatureFilteringField, type SignatureGroup, type SignatureGroupConnection, type SignatureGroupEdge, SignatureGroupFilteringField, type SignatureGroupSignatureCredentialsArgs, SignatureGroupSortEnum, type SignatureGroupSortInput, type SignatureLabel, type SignatureLabelConnection, type SignatureLabelEdge, SignatureLabelFilteringField, SignatureLabelSortEnum, type SignatureLabelSortInput, type SignatureMapping, type SignatureMappingConnection, type SignatureMappingEdge, SignatureMappingFilteringField, SignatureMappingSortEnum, type SignatureMappingSortInput, type SignatureNestedFilteringSignatureBrandField, type SignatureNestedFilteringSignatureLabelField, type SignatureProvider, type SignatureProviderConfiguration, type SignatureProviderConfigurationConnection, type SignatureProviderConfigurationEdge, SignatureProviderConfigurationFilteringField, type SignatureProviderConfigurationNlWallet, type SignatureProviderConfigurationNlWalletConnection, type SignatureProviderConfigurationNlWalletEdge, SignatureProviderConfigurationNlWalletFilteringField, SignatureProviderConfigurationNlWalletSortEnum, type SignatureProviderConfigurationNlWalletSortInput, SignatureProviderConfigurationSortEnum, type SignatureProviderConfigurationSortInput, type SignatureProviderConnection, type SignatureProviderEdge, SignatureProviderFilteringField, type SignatureProviderSignatureGroupsArgs, SignatureProviderSortEnum, type SignatureProviderSortInput, type SignatureSignatureBrandsArgs, type SignatureSignatureDomainsArgs, type SignatureSignatureLabelsArgs, type SignatureSignatureMappingsArgs, type SignatureSignatureProvidersArgs, SignatureSortEnum, type SignatureSortInput, SignatureState, State, type StudioControlCompact, type StudioPlan, StudioPlanAction, type StudioPlanConnection, type StudioPlanControl, type StudioPlanControlArgs, type StudioPlanControlConnection, type StudioPlanControlEdge, StudioPlanControlFilteringField, type StudioPlanControlOverride, type StudioPlanControlOverrideConnection, type StudioPlanControlOverrideEdge, StudioPlanControlOverrideFilteringField, StudioPlanControlOverrideSortEnum, type StudioPlanControlOverrideSortInput, StudioPlanControlSortEnum, type StudioPlanControlSortInput, type StudioPlanEdge, StudioPlanFilteringField, type StudioPlanInterval, type StudioPlanIntervalConnection, type StudioPlanIntervalEdge, StudioPlanIntervalFilteringField, StudioPlanIntervalSortEnum, type StudioPlanIntervalSortInput, type StudioPlanOrganization, type StudioPlanOrganizationConnection, type StudioPlanOrganizationEdge, StudioPlanOrganizationFilteringField, StudioPlanOrganizationSortEnum, type StudioPlanOrganizationSortInput, StudioPlanSortEnum, type StudioPlanSortInput, StudioPlanState, type StudioPlanStudioPlanControlsArgs, type StudioPlanStudioPlanIntervalsArgs, type StudioPlanStudioPlanOrganizationsArgs, type TransitionOrganizationTypeInput, UnknownError, type UpdateAppInput, type UpdateAppLocaleInput, type UpdateAppPrerequisiteInput, type UpdateAppPrerequisiteLocaleInput, type UpdateAppPrerequisiteStateInput, type UpdateAppPrerequisiteStateLocaleInput, type UpdateAttributeInput, type UpdateAttributeLocaleInput, type UpdateAttributeMetaDatakeeperInput, type UpdateAttributeMetaDigidentityInput, type UpdateAttributeMetaMdocInput, type UpdateAttributeMetaNectInput, type UpdateAttributeMetaNlWalletInput, type UpdateAttributeMetaOid4VcmdocInput, type UpdateAttributeMetaOid4VcsdjwtInput, type UpdateAttributeMetaReadIdInput, type UpdateAttributeMetaTruidInput, type UpdateAttributeMetaYiviInput, type UpdateAttributeMetaYotiInput, type UpdateAttributeRequestInput, type UpdateAttributeRequestLocaleInput, type UpdateAttributeRequestMetaDatakeeperInput, type UpdateAttributeRequestMetaOid4VcmdocInput, type UpdateAttributeRequestMetaOid4VcsdjwtInput, type UpdateAttributeRequestMetaYiviInput, type UpdateAttributeRequestMetaYotiInput, type UpdateAuthenticationBrandInput, type UpdateAuthenticationDomainInput, type UpdateAuthenticationInput, type UpdateAuthenticationProviderConfigurationNlWalletInput, type UpdateAuthenticationProviderInput, type UpdateBillingMethodInput, type UpdateBillingPlanInput, type UpdateBillingWalletInput, type UpdateCredentialInput, type UpdateCredentialLocaleInput, type UpdateCredentialMetaDatakeeperInput, type UpdateCredentialMetaDigidentityInput, type UpdateCredentialMetaMdocInput, type UpdateCredentialMetaNectInput, type UpdateCredentialMetaNlWalletInput, type UpdateCredentialMetaOid4VcmdocInput, type UpdateCredentialMetaOid4VcsdjwtInput, type UpdateCredentialMetaReadIdInput, type UpdateCredentialMetaTruidInput, type UpdateCredentialMetaYiviInput, type UpdateCredentialMetaYotiInput, type UpdateCredentialRequestInput, type UpdateCredentialRequestLocaleInput, type UpdateCredentialRequestMetaDatakeeperInput, type UpdateCredentialRequestMetaOid4VcmdocInput, type UpdateCredentialRequestMetaOid4VcsdjwtInput, type UpdateCredentialRequestMetaYiviInput, type UpdateCredentialRequestMetaYotiInput, type UpdateCredentialRequestStateInput, type UpdateCredentialRequestStateLocaleInput, type UpdateDisclosureBrandInput, type UpdateDisclosureDomainInput, type UpdateDisclosureGroupInput, type UpdateDisclosureInput, type UpdateDisclosureProviderConfigurationNlWalletInput, type UpdateDisclosureProviderInput, type UpdateIssuanceBrandInput, type UpdateIssuanceCredentialMetaDatakeeperInput, type UpdateIssuanceCredentialMetaYiviInput, type UpdateIssuanceDomainInput, type UpdateIssuanceInput, type UpdateIssuanceProviderInput, type UpdateIssuerInput, type UpdateIssuerLocaleInput, type UpdateIssuerMetaDatakeeperInput, type UpdateIssuerMetaMdocInput, type UpdateIssuerMetaOid4VcmdocInput, type UpdateIssuerMetaOid4VcsdjwtInput, type UpdateIssuerMetaYiviInput, type UpdateLabelInput, type UpdateLocaleConfigInput, type UpdateMaintenanceInput, type UpdateMappingIssuanceAttributeInput, type UpdateMappingIssuanceInput, type UpdateMappingVerificationAttributeInput, type UpdateMappingVerificationClaimInput, type UpdateMappingVerificationInput, type UpdateMappingVerificationLinkInput, type UpdateOAuthProviderInput, type UpdateOrganizationAddressInput, type UpdateOrganizationAlertDeprecationInput, type UpdateOrganizationAlertInput, type UpdateOrganizationAppMetaDatakeeperInput, type UpdateOrganizationAppMetaKiwaInput, type UpdateOrganizationAppMetaOid4vcInput, type UpdateOrganizationAppMetaYotiInput, type UpdateOrganizationBrandInput, type UpdateOrganizationClientInput, type UpdateOrganizationDomainInput, type UpdateOrganizationInput, type UpdateOrganizationNotificationInput, type UpdateOrganizationQuotaInput, type UpdateOrganizationSecretInput, type UpdateOrganizationUserInput, type UpdatePasswordUserInput, type UpdatePricingCatalogInput, type UpdatePricingConfigurationAppInput, type UpdatePricingConfigurationOrganizationInput, type UpdatePricingConfigurationStudioPlanInput, type UpdatePricingGroupInput, type UpdatePricingRuleConstraintInput, type UpdatePricingRuleInput, type UpdatePricingRuleTargetInput, type UpdateProviderAppMetaOid4VcInput, type UpdateProviderInput, type UpdateProviderLocaleInput, type UpdateSchemeInput, type UpdateSchemeLocaleInput, type UpdateScopeClaimInput, type UpdateScopeInput, type UpdateScopeLocaleInput, type UpdateScopeResourceInput, type UpdateSignatureBrandInput, type UpdateSignatureDomainInput, type UpdateSignatureGroupInput, type UpdateSignatureInput, type UpdateSignatureProviderConfigurationNlWalletInput, type UpdateSignatureProviderInput, type UpdateStudioPlanControlInput, type UpdateStudioPlanControlOverrideInput, type UpdateStudioPlanInput, type UpdateStudioPlanIntervalInput, type UpdateUserInput, type UpdateUserInvitationInput, type UseMappingVerificationAttributeInput, type UseMappingVerificationClaimInput, type UseMappingVerificationInput, type UseMappingVerificationLinkInput, type UseUserResetInput, type User, type UserConnection, type UserEdge, UserFilteringField, type UserInvitation, type UserInvitationConnection, type UserInvitationEdge, UserInvitationFilteringField, UserInvitationSortEnum, type UserInvitationSortInput, UserInvitationState, type UserOrganizationUsersArgs, UserSortEnum, type UserSortInput, type UserToken, type ValidateUserInvitationInput, type ValidateUserInvitationTokenInput, type ValidateUserResetInput, assert, assertArray, assertBoolean, assertDate, assertFunction, assertJsonValue, assertNumber, assertObject, assertString, assertUUID, assertUrlString, createVeridGraphQLClient, getAttribute, getAttributes, getAttributesWithHierarchy, getCredential, getCredentials, getIssuer, getIssuers, getProvider, getProviders, getScheme, getSchemes };
|
|
27966
|
+
export { type AcceptUserInvitationAndRegisterByPasswordInput, type AcceptUserInvitationByOpenIdTokenInput, type AcceptUserInvitationByPasswordInput, type AcceptUserInvitationTokenInput, Action, type ActionAppInput, type ActionAttributeInput, type ActionAuthenticationInput, type ActionBillingWalletChargeInput, type ActionBillingWalletGiveCreditInput, type ActionBillingWalletInput, type ActionCredentialInput, type ActionCredentialRequestInput, type ActionDisclosureInput, type ActionIssuanceInput, type ActionIssuerInput, type ActionMaintenanceInput, type ActionMappingIssuanceInput, type ActionMappingVerificationInput, type ActionOAuthProviderInput, type ActionOrganizationAlertInput, type ActionOrganizationAppInput, type ActionOrganizationAppPrerequisiteInput, type ActionOrganizationBrandInput, type ActionOrganizationBrandRejectInput, type ActionOrganizationDomainInput, type ActionOrganizationInput, type ActionOrganizationNotificationInput, type ActionOrganizationUserInput, type ActionPasswordUserInput, type ActionPricingRuleInput, type ActionProviderInput, type ActionSchemeInput, type ActionScopeInput, type ActionSignatureInput, type ActionStudioPlanInput, AlertSeverity, AlertState, AlertType, type App, type AppConnection, type AppEdge, AppFilteringField, type AppLocale, type AppLocaleArgs, type AppLocaleConnection, type AppLocaleEdge, AppLocaleFilteringField, AppLocaleSortEnum, type AppLocaleSortInput, type AppOrganizationAppsArgs, type AppPrerequisite, type AppPrerequisiteAppPrerequisiteStatesArgs, type AppPrerequisiteConnection, type AppPrerequisiteEdge, AppPrerequisiteFilteringField, type AppPrerequisiteLocale, type AppPrerequisiteLocaleArgs, type AppPrerequisiteLocaleConnection, type AppPrerequisiteLocaleEdge, AppPrerequisiteLocaleFilteringField, AppPrerequisiteLocaleSortEnum, type AppPrerequisiteLocaleSortInput, type AppPrerequisiteOrganizationAppPrerequisitesArgs, AppPrerequisiteSortEnum, type AppPrerequisiteSortInput, type AppPrerequisiteState, type AppPrerequisiteStateConnection, type AppPrerequisiteStateEdge, AppPrerequisiteStateFilteringField, type AppPrerequisiteStateLocale, type AppPrerequisiteStateLocaleArgs, type AppPrerequisiteStateLocaleConnection, type AppPrerequisiteStateLocaleEdge, AppPrerequisiteStateLocaleFilteringField, AppPrerequisiteStateLocaleSortEnum, type AppPrerequisiteStateLocaleSortInput, type AppPrerequisiteStateOrganizationAppPrerequisiteWorkflowsArgs, type AppPrerequisiteStateOrganizationAppPrerequisitesArgs, AppPrerequisiteStateSortEnum, type AppPrerequisiteStateSortInput, type AppPrerequisiteStateTransitionFromArgs, type AppPrerequisiteStateTransitionToArgs, AppPrerequisiteStates, AppPrerequisites, type AppPrerequisitesArgs, type AppProviderAppsArgs, AppSortEnum, type AppSortInput, type Attribute, AttributeCategoryType, type AttributeConnection, type AttributeEdge, type AttributeEntity, type AttributeEntityDeep, type AttributeEntityEnriched, AttributeFilteringField, type AttributeLabel, type AttributeLabelConnection, type AttributeLabelEdge, AttributeLabelFilteringField, AttributeLabelSortEnum, type AttributeLabelSortInput, type AttributeLocale, type AttributeLocaleArgs, type AttributeLocaleConnection, type AttributeLocaleEdge, AttributeLocaleFilteringField, AttributeLocaleSortEnum, type AttributeLocaleSortInput, type AttributeMeta, type AttributeMetaConnection, type AttributeMetaDatakeeper, type AttributeMetaDatakeeperConnection, type AttributeMetaDatakeeperEdge, AttributeMetaDatakeeperFilteringField, AttributeMetaDatakeeperSortEnum, type AttributeMetaDatakeeperSortInput, type AttributeMetaDigidentity, type AttributeMetaDigidentityConnection, type AttributeMetaDigidentityEdge, AttributeMetaDigidentityFilteringField, AttributeMetaDigidentitySortEnum, type AttributeMetaDigidentitySortInput, type AttributeMetaEdge, AttributeMetaFilteringField, type AttributeMetaMdoc, type AttributeMetaMdocConnection, type AttributeMetaMdocEdge, AttributeMetaMdocFilteringField, AttributeMetaMdocSortEnum, type AttributeMetaMdocSortInput, type AttributeMetaNect, type AttributeMetaNectConnection, type AttributeMetaNectEdge, AttributeMetaNectFilteringField, AttributeMetaNectSortEnum, type AttributeMetaNectSortInput, type AttributeMetaNlWallet, type AttributeMetaNlWalletConnection, type AttributeMetaNlWalletEdge, AttributeMetaNlWalletFilteringField, AttributeMetaNlWalletSortEnum, type AttributeMetaNlWalletSortInput, type AttributeMetaOid4Vcmdoc, type AttributeMetaOid4VcmdocConnection, type AttributeMetaOid4VcmdocEdge, AttributeMetaOid4VcmdocFilteringField, AttributeMetaOid4VcmdocSortEnum, type AttributeMetaOid4VcmdocSortInput, type AttributeMetaOid4Vcsdjwt, type AttributeMetaOid4VcsdjwtConnection, type AttributeMetaOid4VcsdjwtEdge, AttributeMetaOid4VcsdjwtFilteringField, AttributeMetaOid4VcsdjwtSortEnum, type AttributeMetaOid4VcsdjwtSortInput, type AttributeMetaReadId, type AttributeMetaReadIdConnection, type AttributeMetaReadIdEdge, AttributeMetaReadIdFilteringField, AttributeMetaReadIdSortEnum, type AttributeMetaReadIdSortInput, AttributeMetaSortEnum, type AttributeMetaSortInput, type AttributeMetaTruid, type AttributeMetaTruidConnection, type AttributeMetaTruidEdge, AttributeMetaTruidFilteringField, AttributeMetaTruidSortEnum, type AttributeMetaTruidSortInput, AttributeMetaType, type AttributeMetaYivi, type AttributeMetaYiviConnection, type AttributeMetaYiviEdge, AttributeMetaYiviFilteringField, AttributeMetaYiviSortEnum, type AttributeMetaYiviSortInput, type AttributeMetaYoti, type AttributeMetaYotiConnection, type AttributeMetaYotiEdge, AttributeMetaYotiFilteringField, AttributeMetaYotiSortEnum, type AttributeMetaYotiSortInput, type AttributeNestedFilteringAttributeMetaField, type AttributeNestedFilteringCredentialField, type AttributeRequest, type AttributeRequestConnection, type AttributeRequestEdge, AttributeRequestFilteringField, type AttributeRequestLocale, type AttributeRequestLocaleArgs, type AttributeRequestLocaleConnection, type AttributeRequestLocaleEdge, AttributeRequestLocaleFilteringField, AttributeRequestLocaleSortEnum, type AttributeRequestLocaleSortInput, type AttributeRequestMeta, type AttributeRequestMetaConnection, type AttributeRequestMetaDatakeeper, type AttributeRequestMetaDatakeeperConnection, type AttributeRequestMetaDatakeeperEdge, AttributeRequestMetaDatakeeperFilteringField, AttributeRequestMetaDatakeeperSortEnum, type AttributeRequestMetaDatakeeperSortInput, type AttributeRequestMetaEdge, AttributeRequestMetaFilteringField, type AttributeRequestMetaOid4Vcmdoc, type AttributeRequestMetaOid4VcmdocConnection, type AttributeRequestMetaOid4VcmdocEdge, AttributeRequestMetaOid4VcmdocFilteringField, AttributeRequestMetaOid4VcmdocSortEnum, type AttributeRequestMetaOid4VcmdocSortInput, type AttributeRequestMetaOid4Vcsdjwt, type AttributeRequestMetaOid4VcsdjwtConnection, type AttributeRequestMetaOid4VcsdjwtEdge, AttributeRequestMetaOid4VcsdjwtFilteringField, AttributeRequestMetaOid4VcsdjwtSortEnum, type AttributeRequestMetaOid4VcsdjwtSortInput, AttributeRequestMetaSortEnum, type AttributeRequestMetaSortInput, AttributeRequestMetaType, type AttributeRequestMetaYivi, type AttributeRequestMetaYiviConnection, type AttributeRequestMetaYiviEdge, AttributeRequestMetaYiviFilteringField, AttributeRequestMetaYiviSortEnum, type AttributeRequestMetaYiviSortInput, type AttributeRequestMetaYoti, type AttributeRequestMetaYotiConnection, type AttributeRequestMetaYotiEdge, AttributeRequestMetaYotiFilteringField, AttributeRequestMetaYotiSortEnum, type AttributeRequestMetaYotiSortInput, AttributeRequestSortEnum, type AttributeRequestSortInput, AttributeSortEnum, type AttributeSortInput, type Authentication, AuthenticationAction, type AuthenticationActivity, type AuthenticationActivityConnection, type AuthenticationActivityEdge, AuthenticationActivityFilteringField, AuthenticationActivitySortEnum, type AuthenticationActivitySortInput, type AuthenticationAuthenticationBrandsArgs, type AuthenticationAuthenticationDomainsArgs, type AuthenticationAuthenticationLabelsArgs, type AuthenticationAuthenticationProvidersArgs, type AuthenticationAuthenticationSecretsArgs, type AuthenticationBrand, type AuthenticationBrandConnection, type AuthenticationBrandEdge, AuthenticationBrandFilteringField, AuthenticationBrandSortEnum, type AuthenticationBrandSortInput, type AuthenticationConnection, type AuthenticationDomain, type AuthenticationDomainConnection, type AuthenticationDomainEdge, AuthenticationDomainFilteringField, AuthenticationDomainSortEnum, type AuthenticationDomainSortInput, type AuthenticationEdge, AuthenticationFilteringField, type AuthenticationLabel, type AuthenticationLabelConnection, type AuthenticationLabelEdge, AuthenticationLabelFilteringField, AuthenticationLabelSortEnum, type AuthenticationLabelSortInput, type AuthenticationNestedFilteringAuthenticationBrandField, type AuthenticationNestedFilteringAuthenticationLabelField, type AuthenticationProvider, type AuthenticationProviderAuthenticationScopesArgs, type AuthenticationProviderConfiguration, type AuthenticationProviderConfigurationConnection, type AuthenticationProviderConfigurationEdge, AuthenticationProviderConfigurationFilteringField, type AuthenticationProviderConfigurationNlWallet, type AuthenticationProviderConfigurationNlWalletConnection, type AuthenticationProviderConfigurationNlWalletEdge, AuthenticationProviderConfigurationNlWalletFilteringField, AuthenticationProviderConfigurationNlWalletSortEnum, type AuthenticationProviderConfigurationNlWalletSortInput, AuthenticationProviderConfigurationSortEnum, type AuthenticationProviderConfigurationSortInput, type AuthenticationProviderConnection, type AuthenticationProviderEdge, AuthenticationProviderFilteringField, AuthenticationProviderSortEnum, type AuthenticationProviderSortInput, type AuthenticationScope, type AuthenticationScopeConnection, type AuthenticationScopeEdge, AuthenticationScopeFilteringField, AuthenticationScopeSortEnum, type AuthenticationScopeSortInput, type AuthenticationSecret, type AuthenticationSecretConnection, type AuthenticationSecretEdge, AuthenticationSecretFilteringField, AuthenticationSecretSortEnum, type AuthenticationSecretSortInput, AuthenticationSortEnum, type AuthenticationSortInput, AuthenticationState, type Billing, type BillingBillingMethodsArgs, type BillingBillingPlansArgs, type BillingBillingWalletsArgs, type BillingConnection, type BillingEdge, BillingFilteringField, type BillingMethod, type BillingMethodConnection, type BillingMethodEdge, BillingMethodFilteringField, BillingMethodSortEnum, type BillingMethodSortInput, type BillingPlan, type BillingPlanConnection, type BillingPlanEdge, BillingPlanFilteringField, BillingPlanSortEnum, type BillingPlanSortInput, BillingPlanState, BillingSortEnum, type BillingSortInput, type BillingWallet, BillingWalletAction, type BillingWalletBillingWalletTransactionsArgs, type BillingWalletConnection, type BillingWalletEdge, BillingWalletFilteringField, BillingWalletPaymentType, BillingWalletSortEnum, type BillingWalletSortInput, type BillingWalletTransaction, type BillingWalletTransactionConnection, type BillingWalletTransactionEdge, BillingWalletTransactionFilteringField, type BillingWalletTransactionMeta, type BillingWalletTransactionMetaConnection, type BillingWalletTransactionMetaEdge, BillingWalletTransactionMetaFilteringField, type BillingWalletTransactionMetaFlow, type BillingWalletTransactionMetaFlowAttribute, type BillingWalletTransactionMetaFlowAttributeConnection, type BillingWalletTransactionMetaFlowAttributeEdge, BillingWalletTransactionMetaFlowAttributeFilteringField, BillingWalletTransactionMetaFlowAttributeSortEnum, type BillingWalletTransactionMetaFlowAttributeSortInput, type BillingWalletTransactionMetaFlowAttributesArgs, type BillingWalletTransactionMetaFlowConnection, type BillingWalletTransactionMetaFlowEdge, BillingWalletTransactionMetaFlowFilteringField, BillingWalletTransactionMetaFlowSortEnum, type BillingWalletTransactionMetaFlowSortInput, type BillingWalletTransactionMetaNestedFilteringBillingWalletTransactionField, type BillingWalletTransactionMetaPlan, type BillingWalletTransactionMetaPlanConnection, type BillingWalletTransactionMetaPlanEdge, BillingWalletTransactionMetaPlanFilteringField, BillingWalletTransactionMetaPlanSortEnum, type BillingWalletTransactionMetaPlanSortInput, BillingWalletTransactionMetaSortEnum, type BillingWalletTransactionMetaSortInput, BillingWalletTransactionMetaType, type BillingWalletTransactionMetaWallet, type BillingWalletTransactionMetaWalletConnection, type BillingWalletTransactionMetaWalletEdge, BillingWalletTransactionMetaWalletFilteringField, type BillingWalletTransactionMetaWalletNestedFilteringBillingWalletTransactionMetaField, BillingWalletTransactionMetaWalletSortEnum, type BillingWalletTransactionMetaWalletSortInput, BillingWalletTransactionSortEnum, type BillingWalletTransactionSortInput, BillingWalletTransactionState, CatalogModelType, type ConfigBillingMethodOutput, type Constants, type CreateAppInput, type CreateAppLocaleInput, type CreateAppPrerequisiteInput, type CreateAppPrerequisiteLocaleInput, type CreateAppPrerequisiteStateInput, type CreateAppPrerequisiteStateLocaleInput, type CreateAttributeInput, type CreateAttributeLabelInput, type CreateAttributeLocaleInput, type CreateAttributeMetaDatakeeperInput, type CreateAttributeMetaDigidentityInput, type CreateAttributeMetaMdocInput, type CreateAttributeMetaNectInput, type CreateAttributeMetaNlWalletInput, type CreateAttributeMetaOid4VcmdocInput, type CreateAttributeMetaOid4VcsdjwtInput, type CreateAttributeMetaReadIdInput, type CreateAttributeMetaTruidInput, type CreateAttributeMetaYiviInput, type CreateAttributeMetaYotiInput, type CreateAttributeRequestInput, type CreateAttributeRequestLocaleInput, type CreateAttributeRequestMetaDatakeeperInput, type CreateAttributeRequestMetaOid4VcmdocInput, type CreateAttributeRequestMetaOid4VcsdjwtInput, type CreateAttributeRequestMetaYiviInput, type CreateAttributeRequestMetaYotiInput, type CreateAuthenticationBrandInput, type CreateAuthenticationDomainInput, type CreateAuthenticationInput, type CreateAuthenticationLabelInput, type CreateAuthenticationProviderConfigurationNlWalletInput, type CreateAuthenticationProviderInput, type CreateAuthenticationScopeInput, type CreateAuthenticationSecretInput, type CreateBillingPlanInput, type CreateBillingWalletInput, type CreateCredentialInput, type CreateCredentialLabelInput, type CreateCredentialLocaleInput, type CreateCredentialMetaDatakeeperInput, type CreateCredentialMetaDigidentityInput, type CreateCredentialMetaMdocInput, type CreateCredentialMetaNectInput, type CreateCredentialMetaNlWalletInput, type CreateCredentialMetaOid4VcmdocInput, type CreateCredentialMetaOid4VcsdjwtInput, type CreateCredentialMetaReadIdInput, type CreateCredentialMetaTruidInput, type CreateCredentialMetaYiviInput, type CreateCredentialMetaYotiInput, type CreateCredentialRequestInput, type CreateCredentialRequestLocaleInput, type CreateCredentialRequestMetaDatakeeperInput, type CreateCredentialRequestMetaOid4VcmdocInput, type CreateCredentialRequestMetaOid4VcsdjwtInput, type CreateCredentialRequestMetaYiviInput, type CreateCredentialRequestMetaYotiInput, type CreateCredentialRequestStateInput, type CreateCredentialRequestStateLocaleInput, type CreateDisclosureAttributeInput, type CreateDisclosureBrandInput, type CreateDisclosureCredentialInput, type CreateDisclosureDomainInput, type CreateDisclosureGroupInput, type CreateDisclosureInput, type CreateDisclosureLabelInput, type CreateDisclosureMappingInput, type CreateDisclosureProviderByAttributesInput, CreateDisclosureProviderByAttributesMode, type CreateDisclosureProviderConfigurationNlWalletInput, type CreateDisclosureProviderInput, type CreateDisclosureSecretInput, type CreateIssuanceAttributeInput, type CreateIssuanceBrandInput, type CreateIssuanceCredentialInput, type CreateIssuanceCredentialMetaDatakeeperInput, type CreateIssuanceCredentialMetaOid4vcInput, type CreateIssuanceCredentialMetaYiviInput, type CreateIssuanceDomainInput, type CreateIssuanceInput, type CreateIssuanceLabelInput, type CreateIssuanceMappingInput, type CreateIssuanceProviderByAttributesInput, type CreateIssuanceProviderConfigurationNlWalletInput, type CreateIssuanceProviderInput, type CreateIssuanceSecretInput, type CreateIssuerInput, type CreateIssuerLabelInput, type CreateIssuerLocaleInput, type CreateIssuerMetaDatakeeperInput, type CreateIssuerMetaMdocInput, type CreateIssuerMetaOid4VcMdocKeyProfileInput, type CreateIssuerMetaOid4VcSdJwtKeyProfileInput, type CreateIssuerMetaOid4VcmdocInput, type CreateIssuerMetaOid4VcsdjwtInput, type CreateIssuerMetaYiviInput, type CreateLabelInput, type CreateLocaleConfigInput, type CreateMaintenanceInput, type CreateManyMappingIssuanceAttributeInput, type CreateManyMappingIssuanceLinkInput, type CreateManyMappingIssuanceLinksByAttributesInput, type CreateManyMappingVerificationAttributeInput, type CreateManyMappingVerificationLinkInput, type CreateManyMappingVerificationLinksByAttributesInput, type CreateManyOrganizationNotificationEventInput, type CreateManyOrganizationQuotaInput, type CreateManyStudioPlanControlInput, type CreateMappingIssuanceAttributeInput, type CreateMappingIssuanceClaimInput, type CreateMappingIssuanceInput, type CreateMappingIssuanceLinkInput, type CreateMappingVerificationAttributeInput, type CreateMappingVerificationClaimInput, type CreateMappingVerificationInput, type CreateMappingVerificationLinkInput, type CreateOAuthProviderInput, type CreateOrganizationAddressInput, type CreateOrganizationAlertDeprecationInput, type CreateOrganizationAlertInput, type CreateOrganizationAppInput, type CreateOrganizationAppMetaDatakeeperInput, type CreateOrganizationAppMetaKiwaInput, type CreateOrganizationAppMetaOid4vcInput, type CreateOrganizationAppMetaYotiInput, type CreateOrganizationAppPrerequisiteInput, type CreateOrganizationBrandInput, type CreateOrganizationBrandLabelInput, type CreateOrganizationClientInput, type CreateOrganizationDomainInput, type CreateOrganizationDomainLabelInput, type CreateOrganizationDomainOAuthProviderInput, type CreateOrganizationInput, type CreateOrganizationNotificationEventInput, type CreateOrganizationNotificationInput, type CreateOrganizationQuotaInput, type CreateOrganizationSecretInput, type CreateOrganizationUserInput, type CreatePricingCatalogInput, type CreatePricingConfigurationAppInput, type CreatePricingConfigurationOrganizationInput, type CreatePricingConfigurationStudioPlanInput, type CreatePricingGroupAssignmentInput, type CreatePricingGroupInput, type CreatePricingRuleConstraintInput, type CreatePricingRuleInput, type CreatePricingRuleTargetInput, type CreateProviderAppInput, type CreateProviderAppMetaOid4VcInput, type CreateProviderInput, type CreateProviderLabelInput, type CreateProviderLocaleInput, type CreateSchemeInput, type CreateSchemeLabelInput, type CreateSchemeLocaleInput, type CreateScopeClaimInput, type CreateScopeInput, type CreateScopeLocaleInput, type CreateScopeResourceInput, type CreateSignatureAttributeInput, type CreateSignatureBrandInput, type CreateSignatureCredentialInput, type CreateSignatureDomainInput, type CreateSignatureGroupInput, type CreateSignatureInput, type CreateSignatureLabelInput, type CreateSignatureMappingInput, type CreateSignatureProviderByAttributesInput, CreateSignatureProviderByAttributesMode, type CreateSignatureProviderConfigurationNlWalletInput, type CreateSignatureProviderInput, type CreateSignatureSecretInput, type CreateStudioPlanControlInput, type CreateStudioPlanControlOverrideInput, type CreateStudioPlanInput, type CreateStudioPlanIntervalInput, type CreateStudioPlanOrganizationInput, type CreateUserInput, type CreateUserInvitationInput, type CreateUserResetInput, type Credential, type CredentialAttributesArgs, CredentialCategoryType, type CredentialConnection, type CredentialEdge, type CredentialEntity, type CredentialEntityDeep, CredentialFilteringField, type CredentialLabel, type CredentialLabelConnection, type CredentialLabelEdge, CredentialLabelFilteringField, CredentialLabelSortEnum, type CredentialLabelSortInput, type CredentialLocale, type CredentialLocaleArgs, type CredentialLocaleConnection, type CredentialLocaleEdge, CredentialLocaleFilteringField, CredentialLocaleSortEnum, type CredentialLocaleSortInput, type CredentialMeta, type CredentialMetaConnection, type CredentialMetaDatakeeper, type CredentialMetaDatakeeperConnection, type CredentialMetaDatakeeperEdge, CredentialMetaDatakeeperFilteringField, CredentialMetaDatakeeperSortEnum, type CredentialMetaDatakeeperSortInput, type CredentialMetaDigidentity, type CredentialMetaDigidentityConnection, type CredentialMetaDigidentityEdge, CredentialMetaDigidentityFilteringField, CredentialMetaDigidentitySortEnum, type CredentialMetaDigidentitySortInput, type CredentialMetaEdge, CredentialMetaFilteringField, type CredentialMetaMdoc, type CredentialMetaMdocConnection, type CredentialMetaMdocEdge, CredentialMetaMdocFilteringField, CredentialMetaMdocSortEnum, type CredentialMetaMdocSortInput, type CredentialMetaNect, type CredentialMetaNectConnection, type CredentialMetaNectEdge, CredentialMetaNectFilteringField, CredentialMetaNectSortEnum, type CredentialMetaNectSortInput, type CredentialMetaNlWallet, type CredentialMetaNlWalletConnection, type CredentialMetaNlWalletEdge, CredentialMetaNlWalletFilteringField, CredentialMetaNlWalletSortEnum, type CredentialMetaNlWalletSortInput, type CredentialMetaOid4Vcmdoc, type CredentialMetaOid4VcmdocConnection, type CredentialMetaOid4VcmdocEdge, CredentialMetaOid4VcmdocFilteringField, CredentialMetaOid4VcmdocSortEnum, type CredentialMetaOid4VcmdocSortInput, type CredentialMetaOid4Vcsdjwt, type CredentialMetaOid4VcsdjwtConnection, type CredentialMetaOid4VcsdjwtEdge, CredentialMetaOid4VcsdjwtFilteringField, CredentialMetaOid4VcsdjwtSortEnum, type CredentialMetaOid4VcsdjwtSortInput, type CredentialMetaReadId, type CredentialMetaReadIdConnection, CredentialMetaReadIdDocumentType, type CredentialMetaReadIdEdge, CredentialMetaReadIdFilteringField, CredentialMetaReadIdSortEnum, type CredentialMetaReadIdSortInput, CredentialMetaSortEnum, type CredentialMetaSortInput, type CredentialMetaTruid, type CredentialMetaTruidConnection, type CredentialMetaTruidEdge, CredentialMetaTruidFilteringField, CredentialMetaTruidSortEnum, type CredentialMetaTruidSortInput, CredentialMetaType, type CredentialMetaYivi, type CredentialMetaYiviConnection, type CredentialMetaYiviEdge, CredentialMetaYiviFilteringField, CredentialMetaYiviSortEnum, type CredentialMetaYiviSortInput, type CredentialMetaYoti, type CredentialMetaYotiConnection, type CredentialMetaYotiEdge, CredentialMetaYotiFilteringField, CredentialMetaYotiSortEnum, type CredentialMetaYotiSortInput, type CredentialNestedFilteringAttributesField, type CredentialNestedFilteringCredentialMetaField, type CredentialNestedFilteringIssuerField, type CredentialRequest, type CredentialRequestAttributeRequestsArgs, type CredentialRequestConnection, type CredentialRequestEdge, CredentialRequestFilteringField, type CredentialRequestLocale, type CredentialRequestLocaleArgs, type CredentialRequestLocaleConnection, type CredentialRequestLocaleEdge, CredentialRequestLocaleFilteringField, CredentialRequestLocaleSortEnum, type CredentialRequestLocaleSortInput, type CredentialRequestMeta, type CredentialRequestMetaConnection, type CredentialRequestMetaDatakeeper, type CredentialRequestMetaDatakeeperConnection, type CredentialRequestMetaDatakeeperEdge, CredentialRequestMetaDatakeeperFilteringField, CredentialRequestMetaDatakeeperSortEnum, type CredentialRequestMetaDatakeeperSortInput, type CredentialRequestMetaEdge, CredentialRequestMetaFilteringField, type CredentialRequestMetaOid4Vcmdoc, type CredentialRequestMetaOid4VcmdocConnection, type CredentialRequestMetaOid4VcmdocEdge, CredentialRequestMetaOid4VcmdocFilteringField, CredentialRequestMetaOid4VcmdocSortEnum, type CredentialRequestMetaOid4VcmdocSortInput, type CredentialRequestMetaOid4Vcsdjwt, type CredentialRequestMetaOid4VcsdjwtConnection, type CredentialRequestMetaOid4VcsdjwtEdge, CredentialRequestMetaOid4VcsdjwtFilteringField, CredentialRequestMetaOid4VcsdjwtSortEnum, type CredentialRequestMetaOid4VcsdjwtSortInput, CredentialRequestMetaSortEnum, type CredentialRequestMetaSortInput, CredentialRequestMetaType, type CredentialRequestMetaYivi, type CredentialRequestMetaYiviConnection, type CredentialRequestMetaYiviEdge, CredentialRequestMetaYiviFilteringField, CredentialRequestMetaYiviSortEnum, type CredentialRequestMetaYiviSortInput, type CredentialRequestMetaYoti, CredentialRequestMetaYotiCategoryType, type CredentialRequestMetaYotiConnection, type CredentialRequestMetaYotiEdge, CredentialRequestMetaYotiFilteringField, CredentialRequestMetaYotiSortEnum, type CredentialRequestMetaYotiSortInput, CredentialRequestSortEnum, type CredentialRequestSortInput, type CredentialRequestState, type CredentialRequestStateConnection, type CredentialRequestStateCredentialRequestWorkflowsArgs, type CredentialRequestStateEdge, CredentialRequestStateFilteringField, type CredentialRequestStateLocale, type CredentialRequestStateLocaleArgs, type CredentialRequestStateLocaleConnection, type CredentialRequestStateLocaleEdge, CredentialRequestStateLocaleFilteringField, CredentialRequestStateLocaleSortEnum, type CredentialRequestStateLocaleSortInput, CredentialRequestStateSortEnum, type CredentialRequestStateSortInput, type CredentialRequestStateTransitionFromArgs, type CredentialRequestStateTransitionToArgs, CredentialRequestStates, type CredentialRequestWorkflow, type CredentialRequestWorkflowConnection, type CredentialRequestWorkflowEdge, CredentialRequestWorkflowFilteringField, CredentialRequestWorkflowSortEnum, type CredentialRequestWorkflowSortInput, CredentialSortEnum, type CredentialSortInput, Currency, CurrencyCode, CurrencyUnit, type Disclosure, DisclosureAction, type DisclosureActivity, type DisclosureActivityConnection, type DisclosureActivityEdge, DisclosureActivityFilteringField, DisclosureActivitySortEnum, type DisclosureActivitySortInput, type DisclosureAttribute, type DisclosureAttributeConnection, type DisclosureAttributeEdge, DisclosureAttributeFilteringField, DisclosureAttributeSortEnum, type DisclosureAttributeSortInput, type DisclosureBrand, type DisclosureBrandConnection, type DisclosureBrandEdge, DisclosureBrandFilteringField, DisclosureBrandSortEnum, type DisclosureBrandSortInput, type DisclosureConnection, type DisclosureCredential, type DisclosureCredentialConnection, type DisclosureCredentialDisclosureAttributesArgs, type DisclosureCredentialEdge, DisclosureCredentialFilteringField, DisclosureCredentialSortEnum, type DisclosureCredentialSortInput, type DisclosureDisclosureBrandsArgs, type DisclosureDisclosureDomainsArgs, type DisclosureDisclosureLabelsArgs, type DisclosureDisclosureMappingsArgs, type DisclosureDisclosureProvidersArgs, type DisclosureDisclosureSecretsArgs, type DisclosureDomain, type DisclosureDomainConnection, type DisclosureDomainEdge, DisclosureDomainFilteringField, DisclosureDomainSortEnum, type DisclosureDomainSortInput, type DisclosureEdge, DisclosureFilteringField, type DisclosureGroup, type DisclosureGroupConnection, type DisclosureGroupDisclosureCredentialsArgs, type DisclosureGroupEdge, DisclosureGroupFilteringField, DisclosureGroupSortEnum, type DisclosureGroupSortInput, type DisclosureLabel, type DisclosureLabelConnection, type DisclosureLabelEdge, DisclosureLabelFilteringField, DisclosureLabelSortEnum, type DisclosureLabelSortInput, type DisclosureMapping, type DisclosureMappingConnection, type DisclosureMappingEdge, DisclosureMappingFilteringField, DisclosureMappingSortEnum, type DisclosureMappingSortInput, type DisclosureNestedFilteringDisclosureBrandField, type DisclosureNestedFilteringDisclosureLabelField, type DisclosureProvider, type DisclosureProviderConfiguration, type DisclosureProviderConfigurationConnection, type DisclosureProviderConfigurationEdge, DisclosureProviderConfigurationFilteringField, type DisclosureProviderConfigurationNlWallet, type DisclosureProviderConfigurationNlWalletConnection, type DisclosureProviderConfigurationNlWalletEdge, DisclosureProviderConfigurationNlWalletFilteringField, DisclosureProviderConfigurationNlWalletSortEnum, type DisclosureProviderConfigurationNlWalletSortInput, DisclosureProviderConfigurationSortEnum, type DisclosureProviderConfigurationSortInput, type DisclosureProviderConnection, type DisclosureProviderDisclosureGroupsArgs, type DisclosureProviderEdge, DisclosureProviderFilteringField, DisclosureProviderSortEnum, type DisclosureProviderSortInput, type DisclosureSecret, type DisclosureSecretConnection, type DisclosureSecretEdge, DisclosureSecretFilteringField, DisclosureSecretSortEnum, type DisclosureSecretSortInput, DisclosureSortEnum, type DisclosureSortInput, DisclosureState, type DuplicateAuthenticationInput, type DuplicateDisclosureInput, type DuplicateIssuanceInput, type DuplicateSignatureInput, type DuplicateStudioPlanInput, type Exact, FilteringConnector, FilteringMode, FilteringType, type FindGlobalOAuthMethodsInput, type FindManyAppLocaleFilter, type FindManyAppLocaleInput, type FindManyAppPrerequisiteLocaleFilter, type FindManyAppPrerequisiteLocaleInput, type FindManyAppPrerequisiteStateFilter, type FindManyAppPrerequisiteStateInput, type FindManyAppPrerequisiteStateLocaleFilter, type FindManyAppPrerequisiteStateLocaleInput, type FindManyAppPrerequisitesFilter, type FindManyAppPrerequisitesInput, type FindManyAppsFilter, type FindManyAppsInput, type FindManyAttributeLabelsFilter, type FindManyAttributeLabelsInput, type FindManyAttributeLocaleFilter, type FindManyAttributeLocaleInput, type FindManyAttributeMetaDatakeeperFilter, type FindManyAttributeMetaDatakeeperInput, type FindManyAttributeMetaDigidentityFilter, type FindManyAttributeMetaDigidentityInput, type FindManyAttributeMetaFilter, type FindManyAttributeMetaInput, type FindManyAttributeMetaMdocFilter, type FindManyAttributeMetaMdocInput, type FindManyAttributeMetaNectFilter, type FindManyAttributeMetaNectInput, type FindManyAttributeMetaNlWalletFilter, type FindManyAttributeMetaNlWalletInput, type FindManyAttributeMetaOid4VcmdocFilter, type FindManyAttributeMetaOid4VcmdocInput, type FindManyAttributeMetaOid4VcsdjwtFilter, type FindManyAttributeMetaOid4VcsdjwtInput, type FindManyAttributeMetaReadIdFilter, type FindManyAttributeMetaReadIdInput, type FindManyAttributeMetaTruidFilter, type FindManyAttributeMetaTruidInput, type FindManyAttributeMetaYiviFilter, type FindManyAttributeMetaYiviInput, type FindManyAttributeMetaYotiFilter, type FindManyAttributeMetaYotiInput, type FindManyAttributeRequestLocaleFilter, type FindManyAttributeRequestLocaleInput, type FindManyAttributeRequestMetaDatakeeperFilter, type FindManyAttributeRequestMetaDatakeeperInput, type FindManyAttributeRequestMetaFilter, type FindManyAttributeRequestMetaInput, type FindManyAttributeRequestMetaOid4VcmdocFilter, type FindManyAttributeRequestMetaOid4VcmdocInput, type FindManyAttributeRequestMetaOid4VcsdjwtFilter, type FindManyAttributeRequestMetaOid4VcsdjwtInput, type FindManyAttributeRequestMetaYiviFilter, type FindManyAttributeRequestMetaYiviInput, type FindManyAttributeRequestMetaYotiFilter, type FindManyAttributeRequestMetaYotiInput, type FindManyAttributeRequestsFilter, type FindManyAttributeRequestsInput, type FindManyAttributesFilter, type FindManyAttributesInput, type FindManyAttributesNestedFilter, type FindManyAuthenticationActivitiesFilter, type FindManyAuthenticationActivitiesInput, type FindManyAuthenticationBrandsFilter, type FindManyAuthenticationBrandsInput, type FindManyAuthenticationDomainsFilter, type FindManyAuthenticationDomainsInput, type FindManyAuthenticationLabelsFilter, type FindManyAuthenticationLabelsInput, type FindManyAuthenticationProviderConfigurationNlWalletsFilter, type FindManyAuthenticationProviderConfigurationNlWalletsInput, type FindManyAuthenticationProviderConfigurationsFilter, type FindManyAuthenticationProviderConfigurationsInput, type FindManyAuthenticationProvidersFilter, type FindManyAuthenticationProvidersInput, type FindManyAuthenticationScopesFilter, type FindManyAuthenticationScopesInput, type FindManyAuthenticationSecretsFilter, type FindManyAuthenticationSecretsInput, type FindManyAuthenticationsFilter, type FindManyAuthenticationsInput, type FindManyAuthenticationsNestedFilter, type FindManyBillingMethodsFilter, type FindManyBillingMethodsInput, type FindManyBillingPlansFilter, type FindManyBillingPlansInput, type FindManyBillingWalletTransactionMetaFlowAttributesFilter, type FindManyBillingWalletTransactionMetaFlowAttributesInput, type FindManyBillingWalletTransactionMetaFlowsFilter, type FindManyBillingWalletTransactionMetaFlowsInput, type FindManyBillingWalletTransactionMetaNestedFilter, type FindManyBillingWalletTransactionMetaPlansFilter, type FindManyBillingWalletTransactionMetaPlansInput, type FindManyBillingWalletTransactionMetaWalletsFilter, type FindManyBillingWalletTransactionMetaWalletsInput, type FindManyBillingWalletTransactionMetaWalletsNestedFilter, type FindManyBillingWalletTransactionMetasFilter, type FindManyBillingWalletTransactionMetasInput, type FindManyBillingWalletTransactionsFilter, type FindManyBillingWalletTransactionsInput, type FindManyBillingWalletsFilter, type FindManyBillingWalletsInput, type FindManyBillingsFilter, type FindManyBillingsInput, type FindManyCredentialLabelsFilter, type FindManyCredentialLabelsInput, type FindManyCredentialLocaleFilter, type FindManyCredentialLocaleInput, type FindManyCredentialMetaDatakeeperFilter, type FindManyCredentialMetaDatakeeperInput, type FindManyCredentialMetaDigidentityFilter, type FindManyCredentialMetaDigidentityInput, type FindManyCredentialMetaFilter, type FindManyCredentialMetaInput, type FindManyCredentialMetaMdocFilter, type FindManyCredentialMetaMdocInput, type FindManyCredentialMetaNectFilter, type FindManyCredentialMetaNectInput, type FindManyCredentialMetaNlWalletFilter, type FindManyCredentialMetaNlWalletInput, type FindManyCredentialMetaOid4VcmdocFilter, type FindManyCredentialMetaOid4VcmdocInput, type FindManyCredentialMetaOid4VcsdjwtFilter, type FindManyCredentialMetaOid4VcsdjwtInput, type FindManyCredentialMetaReadIdFilter, type FindManyCredentialMetaReadIdInput, type FindManyCredentialMetaTruidFilter, type FindManyCredentialMetaTruidInput, type FindManyCredentialMetaYiviFilter, type FindManyCredentialMetaYiviInput, type FindManyCredentialMetaYotiFilter, type FindManyCredentialMetaYotiInput, type FindManyCredentialRequestLocaleFilter, type FindManyCredentialRequestLocaleInput, type FindManyCredentialRequestMetaDatakeeperFilter, type FindManyCredentialRequestMetaDatakeeperInput, type FindManyCredentialRequestMetaFilter, type FindManyCredentialRequestMetaInput, type FindManyCredentialRequestMetaOid4VcmdocFilter, type FindManyCredentialRequestMetaOid4VcmdocInput, type FindManyCredentialRequestMetaOid4VcsdjwtFilter, type FindManyCredentialRequestMetaOid4VcsdjwtInput, type FindManyCredentialRequestMetaYiviFilter, type FindManyCredentialRequestMetaYiviInput, type FindManyCredentialRequestMetaYotiFilter, type FindManyCredentialRequestMetaYotiInput, type FindManyCredentialRequestStateFilter, type FindManyCredentialRequestStateInput, type FindManyCredentialRequestStateLocaleFilter, type FindManyCredentialRequestStateLocaleInput, type FindManyCredentialRequestWorkflowFilter, type FindManyCredentialRequestWorkflowInput, type FindManyCredentialRequestsFilter, type FindManyCredentialRequestsInput, type FindManyCredentialsFilter, type FindManyCredentialsInput, type FindManyCredentialsNestedFilter, type FindManyDisclosureActivitiesFilter, type FindManyDisclosureActivitiesInput, type FindManyDisclosureAttributesFilter, type FindManyDisclosureAttributesInput, type FindManyDisclosureBrandsFilter, type FindManyDisclosureBrandsInput, type FindManyDisclosureCredentialsFilter, type FindManyDisclosureCredentialsInput, type FindManyDisclosureDomainsFilter, type FindManyDisclosureDomainsInput, type FindManyDisclosureGroupsFilter, type FindManyDisclosureGroupsInput, type FindManyDisclosureLabelsFilter, type FindManyDisclosureLabelsInput, type FindManyDisclosureMappingsFilter, type FindManyDisclosureMappingsInput, type FindManyDisclosureProviderConfigurationNlWalletsFilter, type FindManyDisclosureProviderConfigurationNlWalletsInput, type FindManyDisclosureProviderConfigurationsFilter, type FindManyDisclosureProviderConfigurationsInput, type FindManyDisclosureProvidersFilter, type FindManyDisclosureProvidersInput, type FindManyDisclosureSecretsFilter, type FindManyDisclosureSecretsInput, type FindManyDisclosuresFilter, type FindManyDisclosuresInput, type FindManyDisclosuresNestedFilter, type FindManyIssuanceActivitiesFilter, type FindManyIssuanceActivitiesInput, type FindManyIssuanceAttributesFilter, type FindManyIssuanceAttributesInput, type FindManyIssuanceBrandsFilter, type FindManyIssuanceBrandsInput, type FindManyIssuanceCredentialMetaDatakeeperFilter, type FindManyIssuanceCredentialMetaDatakeeperInput, type FindManyIssuanceCredentialMetaFilter, type FindManyIssuanceCredentialMetaInput, type FindManyIssuanceCredentialMetaOid4vcFilter, type FindManyIssuanceCredentialMetaOid4vcInput, type FindManyIssuanceCredentialMetaYiviFilter, type FindManyIssuanceCredentialMetaYiviInput, type FindManyIssuanceCredentialsFilter, type FindManyIssuanceCredentialsInput, type FindManyIssuanceDomainsFilter, type FindManyIssuanceDomainsInput, type FindManyIssuanceLabelsFilter, type FindManyIssuanceLabelsInput, type FindManyIssuanceMappingsFilter, type FindManyIssuanceMappingsInput, type FindManyIssuanceProviderConfigurationNlWalletsFilter, type FindManyIssuanceProviderConfigurationNlWalletsInput, type FindManyIssuanceProviderConfigurationsFilter, type FindManyIssuanceProviderConfigurationsInput, type FindManyIssuanceProvidersFilter, type FindManyIssuanceProvidersInput, type FindManyIssuanceSecretsFilter, type FindManyIssuanceSecretsInput, type FindManyIssuancesFilter, type FindManyIssuancesInput, type FindManyIssuancesNestedFilter, type FindManyIssuerLabelsFilter, type FindManyIssuerLabelsInput, type FindManyIssuerLocaleFilter, type FindManyIssuerLocaleInput, type FindManyIssuerMetaDatakeeperFilter, type FindManyIssuerMetaDatakeeperInput, type FindManyIssuerMetaFilter, type FindManyIssuerMetaInput, type FindManyIssuerMetaMdocFilter, type FindManyIssuerMetaMdocInput, type FindManyIssuerMetaOid4VcMdocKeyProfileFilter, type FindManyIssuerMetaOid4VcMdocKeyProfileInput, type FindManyIssuerMetaOid4VcSdJwtKeyProfileFilter, type FindManyIssuerMetaOid4VcSdJwtKeyProfileInput, type FindManyIssuerMetaOid4VcmdocFilter, type FindManyIssuerMetaOid4VcmdocInput, type FindManyIssuerMetaOid4VcsdjwtFilter, type FindManyIssuerMetaOid4VcsdjwtInput, type FindManyIssuerMetaYiviFilter, type FindManyIssuerMetaYiviInput, type FindManyIssuersFilter, type FindManyIssuersInput, type FindManyIssuersNestedFilter, type FindManyLabelsFilter, type FindManyLabelsInput, type FindManyLocaleConfigsFilter, type FindManyLocaleConfigsInput, type FindManyMaintenancesFilter, type FindManyMaintenancesInput, type FindManyMappingIssuanceAttributesFilter, type FindManyMappingIssuanceAttributesInput, type FindManyMappingIssuanceClaimsFilter, type FindManyMappingIssuanceClaimsInput, type FindManyMappingIssuanceLinksFilter, type FindManyMappingIssuanceLinksInput, type FindManyMappingIssuancesFilter, type FindManyMappingIssuancesInput, type FindManyMappingVerificationAttributesFilter, type FindManyMappingVerificationAttributesInput, type FindManyMappingVerificationClaimsFilter, type FindManyMappingVerificationClaimsInput, type FindManyMappingVerificationLinksFilter, type FindManyMappingVerificationLinksInput, type FindManyMappingVerificationsFilter, type FindManyMappingVerificationsInput, type FindManyOAuthProvidersFilter, type FindManyOAuthProvidersInput, type FindManyOrganizationAddressesFilter, type FindManyOrganizationAddressesInput, type FindManyOrganizationAlertDeprecationsFilter, type FindManyOrganizationAlertDeprecationsInput, type FindManyOrganizationAlertsFilter, type FindManyOrganizationAlertsInput, type FindManyOrganizationAppMetaDatakeeperFilter, type FindManyOrganizationAppMetaDatakeeperInput, type FindManyOrganizationAppMetaFilter, type FindManyOrganizationAppMetaInput, type FindManyOrganizationAppMetaKiwaFilter, type FindManyOrganizationAppMetaKiwaInput, type FindManyOrganizationAppMetaOid4vcFilter, type FindManyOrganizationAppMetaOid4vcInput, type FindManyOrganizationAppMetaYotiFilter, type FindManyOrganizationAppMetaYotiInput, type FindManyOrganizationAppPrerequisiteFilter, type FindManyOrganizationAppPrerequisiteInput, type FindManyOrganizationAppPrerequisiteWorkflowFilter, type FindManyOrganizationAppPrerequisiteWorkflowInput, type FindManyOrganizationAppsFilter, type FindManyOrganizationAppsInput, type FindManyOrganizationAppsNestedFilter, type FindManyOrganizationBrandLabelsFilter, type FindManyOrganizationBrandLabelsInput, type FindManyOrganizationBrandsFilter, type FindManyOrganizationBrandsInput, type FindManyOrganizationBrandsNestedFilter, type FindManyOrganizationClientsFilter, type FindManyOrganizationClientsInput, type FindManyOrganizationDomainLabelsFilter, type FindManyOrganizationDomainLabelsInput, type FindManyOrganizationDomainOAuthProvidersFilter, type FindManyOrganizationDomainOAuthProvidersInput, type FindManyOrganizationDomainValidationsFilter, type FindManyOrganizationDomainValidationsInput, type FindManyOrganizationDomainsFilter, type FindManyOrganizationDomainsInput, type FindManyOrganizationDomainsNestedFilter, type FindManyOrganizationNotificationEventsFilter, type FindManyOrganizationNotificationEventsInput, type FindManyOrganizationNotificationsFilter, type FindManyOrganizationNotificationsInput, type FindManyOrganizationQuotasFilter, type FindManyOrganizationQuotasInput, type FindManyOrganizationSecretsFilter, type FindManyOrganizationSecretsInput, type FindManyOrganizationUsersFilter, type FindManyOrganizationUsersInput, type FindManyOrganizationUsersNestedFilter, type FindManyOrganizationsFilter, type FindManyOrganizationsInput, type FindManyPaymentProviderEventsFilter, type FindManyPaymentProviderEventsInput, type FindManyPaymentProviderInvoicesFilter, type FindManyPaymentProviderInvoicesInput, type FindManyPaymentProviderMethodsFilter, type FindManyPaymentProviderMethodsInput, type FindManyPaymentProviderOrganizationsFilter, type FindManyPaymentProviderOrganizationsInput, type FindManyPaymentProvidersFilter, type FindManyPaymentProvidersInput, type FindManyPricingCatalogsFilter, type FindManyPricingCatalogsInput, type FindManyPricingConfigurationAppsFilter, type FindManyPricingConfigurationAppsInput, type FindManyPricingConfigurationOrganizationsFilter, type FindManyPricingConfigurationOrganizationsInput, type FindManyPricingConfigurationStudioPlansFilter, type FindManyPricingConfigurationStudioPlansInput, type FindManyPricingGroupAssignmentsFilter, type FindManyPricingGroupAssignmentsInput, type FindManyPricingGroupsFilter, type FindManyPricingGroupsInput, type FindManyPricingRuleConstraintsFilter, type FindManyPricingRuleConstraintsInput, type FindManyPricingRuleTargetsFilter, type FindManyPricingRuleTargetsInput, type FindManyPricingRulesFilter, type FindManyPricingRulesInput, type FindManyProviderAppMetaFilter, type FindManyProviderAppMetaInput, type FindManyProviderAppMetaOid4VcFilter, type FindManyProviderAppMetaOid4VcInput, type FindManyProviderAppsFilter, type FindManyProviderAppsInput, type FindManyProviderLabelsFilter, type FindManyProviderLabelsInput, type FindManyProviderLocaleFilter, type FindManyProviderLocaleInput, type FindManyProvidersFilter, type FindManyProvidersForOrganizationInput, type FindManyProvidersInput, type FindManySchemeLabelsFilter, type FindManySchemeLabelsInput, type FindManySchemeLocaleFilter, type FindManySchemeLocaleInput, type FindManySchemesFilter, type FindManySchemesInput, type FindManyScopeClaimsFilter, type FindManyScopeClaimsInput, type FindManyScopeLocaleFilter, type FindManyScopeLocaleInput, type FindManyScopeResourcesFilter, type FindManyScopeResourcesInput, type FindManyScopesFilter, type FindManyScopesInput, type FindManySignatureActivitiesFilter, type FindManySignatureActivitiesInput, type FindManySignatureAttributesFilter, type FindManySignatureAttributesInput, type FindManySignatureBrandsFilter, type FindManySignatureBrandsInput, type FindManySignatureCredentialsFilter, type FindManySignatureCredentialsInput, type FindManySignatureDomainsFilter, type FindManySignatureDomainsInput, type FindManySignatureGroupsFilter, type FindManySignatureGroupsInput, type FindManySignatureLabelsFilter, type FindManySignatureLabelsInput, type FindManySignatureMappingsFilter, type FindManySignatureMappingsInput, type FindManySignatureProviderConfigurationNlWalletsFilter, type FindManySignatureProviderConfigurationNlWalletsInput, type FindManySignatureProviderConfigurationsFilter, type FindManySignatureProviderConfigurationsInput, type FindManySignatureProvidersFilter, type FindManySignatureProvidersInput, type FindManySignatureSecretsFilter, type FindManySignatureSecretsInput, type FindManySignaturesFilter, type FindManySignaturesInput, type FindManySignaturesNestedFilter, type FindManyStudioPlanControlOverridesFilter, type FindManyStudioPlanControlOverridesInput, type FindManyStudioPlanControlsFilter, type FindManyStudioPlanControlsInput, type FindManyStudioPlanIntervalsFilter, type FindManyStudioPlanIntervalsInput, type FindManyStudioPlanOrganizationsFilter, type FindManyStudioPlanOrganizationsInput, type FindManyStudioPlansFilter, type FindManyStudioPlansInput, type FindManyUserInvitationsFilter, type FindManyUserInvitationsInput, type FindManyUsersFilter, type FindManyUsersInput, type FindOAuthMethodsByOrganizationDomainInput, FlowType, type GraphQLClientOptions, IdentityModel, type Incremental, type InputMaybe, Interval, InvalidArgumentError, InvalidAssertionError, InvalidResponseError, type Issuance, IssuanceAction, type IssuanceActivity, type IssuanceActivityConnection, type IssuanceActivityEdge, IssuanceActivityFilteringField, IssuanceActivitySortEnum, type IssuanceActivitySortInput, type IssuanceAttribute, type IssuanceAttributeConnection, type IssuanceAttributeEdge, IssuanceAttributeFilteringField, IssuanceAttributeSortEnum, type IssuanceAttributeSortInput, type IssuanceBrand, type IssuanceBrandConnection, type IssuanceBrandEdge, IssuanceBrandFilteringField, IssuanceBrandSortEnum, type IssuanceBrandSortInput, type IssuanceConnection, type IssuanceCredential, type IssuanceCredentialConnection, type IssuanceCredentialEdge, IssuanceCredentialFilteringField, type IssuanceCredentialIssuanceAttributesArgs, type IssuanceCredentialMeta, type IssuanceCredentialMetaConnection, type IssuanceCredentialMetaDatakeeper, type IssuanceCredentialMetaDatakeeperConnection, type IssuanceCredentialMetaDatakeeperEdge, IssuanceCredentialMetaDatakeeperFilteringField, IssuanceCredentialMetaDatakeeperSortEnum, type IssuanceCredentialMetaDatakeeperSortInput, type IssuanceCredentialMetaEdge, IssuanceCredentialMetaFilteringField, type IssuanceCredentialMetaOid4vc, type IssuanceCredentialMetaOid4vcConnection, type IssuanceCredentialMetaOid4vcEdge, IssuanceCredentialMetaOid4vcFilteringField, IssuanceCredentialMetaOid4vcSortEnum, type IssuanceCredentialMetaOid4vcSortInput, IssuanceCredentialMetaSortEnum, type IssuanceCredentialMetaSortInput, IssuanceCredentialMetaType, type IssuanceCredentialMetaYivi, type IssuanceCredentialMetaYiviConnection, type IssuanceCredentialMetaYiviEdge, IssuanceCredentialMetaYiviFilteringField, IssuanceCredentialMetaYiviSortEnum, type IssuanceCredentialMetaYiviSortInput, IssuanceCredentialSortEnum, type IssuanceCredentialSortInput, type IssuanceDomain, type IssuanceDomainConnection, type IssuanceDomainEdge, IssuanceDomainFilteringField, IssuanceDomainSortEnum, type IssuanceDomainSortInput, type IssuanceEdge, IssuanceFilteringField, type IssuanceIssuanceBrandsArgs, type IssuanceIssuanceDomainsArgs, type IssuanceIssuanceLabelsArgs, type IssuanceIssuanceMappingsArgs, type IssuanceIssuanceProvidersArgs, type IssuanceIssuanceSecretsArgs, type IssuanceLabel, type IssuanceLabelConnection, type IssuanceLabelEdge, IssuanceLabelFilteringField, IssuanceLabelSortEnum, type IssuanceLabelSortInput, type IssuanceMapping, type IssuanceMappingConnection, type IssuanceMappingEdge, IssuanceMappingFilteringField, IssuanceMappingSortEnum, type IssuanceMappingSortInput, type IssuanceNestedFilteringIssuanceBrandField, type IssuanceNestedFilteringIssuanceLabelField, type IssuanceProvider, type IssuanceProviderConfiguration, type IssuanceProviderConfigurationConnection, type IssuanceProviderConfigurationEdge, IssuanceProviderConfigurationFilteringField, type IssuanceProviderConfigurationNlWallet, type IssuanceProviderConfigurationNlWalletConnection, type IssuanceProviderConfigurationNlWalletEdge, IssuanceProviderConfigurationNlWalletFilteringField, IssuanceProviderConfigurationNlWalletSortEnum, type IssuanceProviderConfigurationNlWalletSortInput, IssuanceProviderConfigurationSortEnum, type IssuanceProviderConfigurationSortInput, IssuanceProviderConfigurationType, type IssuanceProviderConnection, type IssuanceProviderEdge, IssuanceProviderFilteringField, type IssuanceProviderIssuanceCredentialsArgs, IssuanceProviderSortEnum, type IssuanceProviderSortInput, type IssuanceSecret, type IssuanceSecretConnection, type IssuanceSecretEdge, IssuanceSecretFilteringField, IssuanceSecretSortEnum, type IssuanceSecretSortInput, IssuanceSortEnum, type IssuanceSortInput, IssuanceState, type Issuer, IssuerCategoryType, type IssuerConnection, type IssuerCredentialsArgs, type IssuerEdge, type IssuerEntity, type IssuerEntityDeep, IssuerFilteringField, type IssuerLabel, type IssuerLabelConnection, type IssuerLabelEdge, IssuerLabelFilteringField, IssuerLabelSortEnum, type IssuerLabelSortInput, type IssuerLocale, type IssuerLocaleArgs, type IssuerLocaleConnection, type IssuerLocaleEdge, IssuerLocaleFilteringField, IssuerLocaleSortEnum, type IssuerLocaleSortInput, type IssuerMeta, type IssuerMetaConnection, type IssuerMetaDatakeeper, type IssuerMetaDatakeeperConnection, type IssuerMetaDatakeeperEdge, IssuerMetaDatakeeperFilteringField, IssuerMetaDatakeeperSortEnum, type IssuerMetaDatakeeperSortInput, type IssuerMetaEdge, IssuerMetaFilteringField, type IssuerMetaMdoc, type IssuerMetaMdocConnection, type IssuerMetaMdocEdge, IssuerMetaMdocFilteringField, IssuerMetaMdocSortEnum, type IssuerMetaMdocSortInput, type IssuerMetaOid4VcMdocKeyProfile, type IssuerMetaOid4VcMdocKeyProfileConnection, type IssuerMetaOid4VcMdocKeyProfileEdge, IssuerMetaOid4VcMdocKeyProfileFilteringField, IssuerMetaOid4VcMdocKeyProfileSortEnum, type IssuerMetaOid4VcMdocKeyProfileSortInput, type IssuerMetaOid4VcSdJwtKeyProfile, type IssuerMetaOid4VcSdJwtKeyProfileConnection, type IssuerMetaOid4VcSdJwtKeyProfileEdge, IssuerMetaOid4VcSdJwtKeyProfileFilteringField, IssuerMetaOid4VcSdJwtKeyProfileSortEnum, type IssuerMetaOid4VcSdJwtKeyProfileSortInput, type IssuerMetaOid4Vcmdoc, type IssuerMetaOid4VcmdocConnection, type IssuerMetaOid4VcmdocEdge, IssuerMetaOid4VcmdocFilteringField, IssuerMetaOid4VcmdocSortEnum, type IssuerMetaOid4VcmdocSortInput, type IssuerMetaOid4Vcsdjwt, type IssuerMetaOid4VcsdjwtConnection, type IssuerMetaOid4VcsdjwtEdge, IssuerMetaOid4VcsdjwtFilteringField, IssuerMetaOid4VcsdjwtSortEnum, type IssuerMetaOid4VcsdjwtSortInput, IssuerMetaSortEnum, type IssuerMetaSortInput, IssuerMetaType, type IssuerMetaYivi, type IssuerMetaYiviConnection, type IssuerMetaYiviEdge, IssuerMetaYiviFilteringField, IssuerMetaYiviSortEnum, type IssuerMetaYiviSortInput, type IssuerNestedFilteringCredentialsField, type IssuerNestedFilteringIssuerMetaField, type IssuerNestedFilteringSchemeField, IssuerSortEnum, type IssuerSortInput, IssuerType, type Label, type LabelAttributeLabelsArgs, type LabelAuthenticationLabelsArgs, type LabelConnection, type LabelCredentialLabelsArgs, type LabelDisclosureLabelsArgs, type LabelEdge, LabelFilteringField, type LabelIssuanceLabelsArgs, type LabelIssuerLabelsArgs, type LabelOrganizationBrandLabelsArgs, type LabelOrganizationDomainLabelsArgs, type LabelProviderLabelsArgs, type LabelSchemeLabelsArgs, LabelScope, type LabelSignatureLabelsArgs, LabelSortEnum, type LabelSortInput, type LocaleConfig, type LocaleConfigConnection, type LocaleConfigEdge, LocaleConfigFilteringField, LocaleConfigSortEnum, type LocaleConfigSortInput, type LocaleEntity, type LoginByClientCredentialsInput, type LoginByOpenIdTokenInput, type LoginByPasswordInput, type Maintenance, MaintenanceAction, type MaintenanceConnection, type MaintenanceEdge, MaintenanceFilteringField, MaintenanceSortEnum, type MaintenanceSortInput, MaintenanceState, type MakeEmpty, type MakeMaybe, type MakeOptional, type MappingIssuance, MappingIssuanceAction, type MappingIssuanceAttribute, type MappingIssuanceAttributeConnection, type MappingIssuanceAttributeEdge, MappingIssuanceAttributeFilteringField, type MappingIssuanceAttributeMappingIssuanceClaimsArgs, MappingIssuanceAttributeSortEnum, type MappingIssuanceAttributeSortInput, type MappingIssuanceClaim, type MappingIssuanceClaimConnection, type MappingIssuanceClaimEdge, MappingIssuanceClaimFilteringField, MappingIssuanceClaimSortEnum, type MappingIssuanceClaimSortInput, type MappingIssuanceConnection, type MappingIssuanceEdge, MappingIssuanceFilteringField, type MappingIssuanceIssuanceMappingsArgs, type MappingIssuanceLink, type MappingIssuanceLinkConnection, type MappingIssuanceLinkEdge, MappingIssuanceLinkFilteringField, type MappingIssuanceLinkMappingIssuanceAttributesArgs, MappingIssuanceLinkSortEnum, type MappingIssuanceLinkSortInput, type MappingIssuanceMappingIssuanceAttributesArgs, type MappingIssuanceMappingIssuanceLinksArgs, MappingIssuanceSortEnum, type MappingIssuanceSortInput, MappingIssuanceState, type MappingVerification, MappingVerificationAction, type MappingVerificationAttribute, type MappingVerificationAttributeConnection, type MappingVerificationAttributeEdge, MappingVerificationAttributeFilteringField, MappingVerificationAttributeSortEnum, type MappingVerificationAttributeSortInput, type MappingVerificationClaim, type MappingVerificationClaimConnection, type MappingVerificationClaimEdge, MappingVerificationClaimFilteringField, type MappingVerificationClaimMappingVerificationLinksArgs, MappingVerificationClaimSortEnum, type MappingVerificationClaimSortInput, type MappingVerificationConnection, type MappingVerificationDisclosureMappingsArgs, type MappingVerificationEdge, MappingVerificationFilteringField, type MappingVerificationLink, type MappingVerificationLinkConnection, type MappingVerificationLinkEdge, MappingVerificationLinkFilteringField, type MappingVerificationLinkMappingVerificationAttributesArgs, MappingVerificationLinkSortEnum, type MappingVerificationLinkSortInput, type MappingVerificationMappingVerificationAttributesArgs, type MappingVerificationMappingVerificationClaimsArgs, type MappingVerificationMappingVerificationLinksArgs, MappingVerificationSortEnum, type MappingVerificationSortInput, MappingVerificationState, type Maybe, type Model, type Money, type MoveDisclosureCredentialInput, type MoveDisclosureCredentialOptionsInput, type MoveSignatureCredentialInput, type MoveSignatureCredentialOptionsInput, type Mutation, type MutationAcceptUserInvitationAndRegisterByPasswordArgs, type MutationAcceptUserInvitationByOpenIdTokenArgs, type MutationAcceptUserInvitationByPasswordArgs, type MutationActionAppArgs, type MutationActionAttributeArgs, type MutationActionAuthenticationArgs, type MutationActionBillingWalletArgs, type MutationActionCredentialArgs, type MutationActionCredentialRequestArgs, type MutationActionDisclosureArgs, type MutationActionIssuanceArgs, type MutationActionIssuerArgs, type MutationActionMaintenanceArgs, type MutationActionMappingIssuanceArgs, type MutationActionMappingVerificationArgs, type MutationActionOAuthProviderArgs, type MutationActionOrganizationAlertArgs, type MutationActionOrganizationAppArgs, type MutationActionOrganizationAppPrerequisiteArgs, type MutationActionOrganizationArgs, type MutationActionOrganizationBrandArgs, type MutationActionOrganizationDomainArgs, type MutationActionOrganizationNotificationArgs, type MutationActionOrganizationUserArgs, type MutationActionPricingRuleArgs, type MutationActionProviderArgs, type MutationActionSchemeArgs, type MutationActionScopeArgs, type MutationActionSignatureArgs, type MutationActionStudioPlanArgs, type MutationCreateAppArgs, type MutationCreateAppLocaleArgs, type MutationCreateAppPrerequisiteArgs, type MutationCreateAppPrerequisiteLocaleArgs, type MutationCreateAppPrerequisiteStateArgs, type MutationCreateAppPrerequisiteStateLocaleArgs, type MutationCreateAttributeArgs, type MutationCreateAttributeLabelArgs, type MutationCreateAttributeLocaleArgs, type MutationCreateAttributeMetaDatakeeperArgs, type MutationCreateAttributeMetaDigidentityArgs, type MutationCreateAttributeMetaMdocArgs, type MutationCreateAttributeMetaNectArgs, type MutationCreateAttributeMetaNlWalletArgs, type MutationCreateAttributeMetaOid4VcmdocArgs, type MutationCreateAttributeMetaOid4VcsdjwtArgs, type MutationCreateAttributeMetaReadIdArgs, type MutationCreateAttributeMetaTruidArgs, type MutationCreateAttributeMetaYiviArgs, type MutationCreateAttributeMetaYotiArgs, type MutationCreateAttributeRequestArgs, type MutationCreateAttributeRequestLocaleArgs, type MutationCreateAttributeRequestMetaDatakeeperArgs, type MutationCreateAttributeRequestMetaOid4VcmdocArgs, type MutationCreateAttributeRequestMetaOid4VcsdjwtArgs, type MutationCreateAttributeRequestMetaYiviArgs, type MutationCreateAttributeRequestMetaYotiArgs, type MutationCreateAuthenticationArgs, type MutationCreateAuthenticationBrandArgs, type MutationCreateAuthenticationDomainArgs, type MutationCreateAuthenticationLabelArgs, type MutationCreateAuthenticationProviderArgs, type MutationCreateAuthenticationProviderConfigurationNlWalletArgs, type MutationCreateAuthenticationScopeArgs, type MutationCreateAuthenticationSecretArgs, type MutationCreateBillingPlanArgs, type MutationCreateBillingWalletArgs, type MutationCreateCredentialArgs, type MutationCreateCredentialLabelArgs, type MutationCreateCredentialLocaleArgs, type MutationCreateCredentialMetaDatakeeperArgs, type MutationCreateCredentialMetaDigidentityArgs, type MutationCreateCredentialMetaMdocArgs, type MutationCreateCredentialMetaNectArgs, type MutationCreateCredentialMetaNlWalletArgs, type MutationCreateCredentialMetaOid4VcmdocArgs, type MutationCreateCredentialMetaOid4VcsdjwtArgs, type MutationCreateCredentialMetaReadIdArgs, type MutationCreateCredentialMetaTruidArgs, type MutationCreateCredentialMetaYiviArgs, type MutationCreateCredentialMetaYotiArgs, type MutationCreateCredentialRequestArgs, type MutationCreateCredentialRequestLocaleArgs, type MutationCreateCredentialRequestMetaDatakeeperArgs, type MutationCreateCredentialRequestMetaOid4VcmdocArgs, type MutationCreateCredentialRequestMetaOid4VcsdjwtArgs, type MutationCreateCredentialRequestMetaYiviArgs, type MutationCreateCredentialRequestMetaYotiArgs, type MutationCreateCredentialRequestStateArgs, type MutationCreateCredentialRequestStateLocaleArgs, type MutationCreateDisclosureArgs, type MutationCreateDisclosureAttributeArgs, type MutationCreateDisclosureBrandArgs, type MutationCreateDisclosureCredentialArgs, type MutationCreateDisclosureDomainArgs, type MutationCreateDisclosureGroupArgs, type MutationCreateDisclosureLabelArgs, type MutationCreateDisclosureMappingArgs, type MutationCreateDisclosureProviderArgs, type MutationCreateDisclosureProviderByAttributesArgs, type MutationCreateDisclosureProviderConfigurationNlWalletArgs, type MutationCreateDisclosureSecretArgs, type MutationCreateIssuanceArgs, type MutationCreateIssuanceAttributeArgs, type MutationCreateIssuanceBrandArgs, type MutationCreateIssuanceCredentialArgs, type MutationCreateIssuanceCredentialMetaDatakeeperArgs, type MutationCreateIssuanceCredentialMetaOid4vcArgs, type MutationCreateIssuanceCredentialMetaYiviArgs, type MutationCreateIssuanceDomainArgs, type MutationCreateIssuanceLabelArgs, type MutationCreateIssuanceMappingArgs, type MutationCreateIssuanceProviderArgs, type MutationCreateIssuanceProviderByAttributesArgs, type MutationCreateIssuanceProviderConfigurationNlWalletArgs, type MutationCreateIssuanceSecretArgs, type MutationCreateIssuerArgs, type MutationCreateIssuerLabelArgs, type MutationCreateIssuerLocaleArgs, type MutationCreateIssuerMetaDatakeeperArgs, type MutationCreateIssuerMetaMdocArgs, type MutationCreateIssuerMetaOid4VcMdocKeyProfileArgs, type MutationCreateIssuerMetaOid4VcSdJwtKeyProfileArgs, type MutationCreateIssuerMetaOid4VcmdocArgs, type MutationCreateIssuerMetaOid4VcsdjwtArgs, type MutationCreateIssuerMetaYiviArgs, type MutationCreateLabelArgs, type MutationCreateLocaleConfigArgs, type MutationCreateMaintenanceArgs, type MutationCreateManagedOrganizationArgs, type MutationCreateManyMappingIssuanceAttributesArgs, type MutationCreateManyMappingIssuanceLinksArgs, type MutationCreateManyMappingIssuanceLinksByAttributesArgs, type MutationCreateManyMappingVerificationAttributesArgs, type MutationCreateManyMappingVerificationLinksArgs, type MutationCreateManyMappingVerificationLinksByAttributesArgs, type MutationCreateManyOrganizationNotificationEventsArgs, type MutationCreateManyStudioPlanControlsArgs, type MutationCreateMappingIssuanceArgs, type MutationCreateMappingIssuanceAttributeArgs, type MutationCreateMappingIssuanceClaimArgs, type MutationCreateMappingIssuanceLinkArgs, type MutationCreateMappingVerificationArgs, type MutationCreateMappingVerificationAttributeArgs, type MutationCreateMappingVerificationClaimArgs, type MutationCreateMappingVerificationLinkArgs, type MutationCreateOAuthProviderArgs, type MutationCreateOrganizationAddressArgs, type MutationCreateOrganizationAlertArgs, type MutationCreateOrganizationAlertDeprecationArgs, type MutationCreateOrganizationAppArgs, type MutationCreateOrganizationAppMetaDatakeeperArgs, type MutationCreateOrganizationAppMetaKiwaArgs, type MutationCreateOrganizationAppMetaOid4vcArgs, type MutationCreateOrganizationAppMetaYotiArgs, type MutationCreateOrganizationAppPrerequisiteArgs, type MutationCreateOrganizationArgs, type MutationCreateOrganizationBrandArgs, type MutationCreateOrganizationBrandLabelArgs, type MutationCreateOrganizationClientArgs, type MutationCreateOrganizationDomainArgs, type MutationCreateOrganizationDomainLabelArgs, type MutationCreateOrganizationDomainOAuthProviderArgs, type MutationCreateOrganizationNotificationArgs, type MutationCreateOrganizationNotificationEventArgs, type MutationCreateOrganizationSecretArgs, type MutationCreateOrganizationUserArgs, type MutationCreatePricingCatalogArgs, type MutationCreatePricingConfigurationAppArgs, type MutationCreatePricingConfigurationOrganizationArgs, type MutationCreatePricingConfigurationStudioPlanArgs, type MutationCreatePricingGroupArgs, type MutationCreatePricingGroupAssignmentArgs, type MutationCreatePricingRuleArgs, type MutationCreatePricingRuleConstraintArgs, type MutationCreatePricingRuleTargetArgs, type MutationCreateProviderAppArgs, type MutationCreateProviderAppMetaOid4VcArgs, type MutationCreateProviderArgs, type MutationCreateProviderLabelArgs, type MutationCreateProviderLocaleArgs, type MutationCreateSchemeArgs, type MutationCreateSchemeLabelArgs, type MutationCreateSchemeLocaleArgs, type MutationCreateScopeArgs, type MutationCreateScopeClaimArgs, type MutationCreateScopeLocaleArgs, type MutationCreateScopeResourceArgs, type MutationCreateSignatureArgs, type MutationCreateSignatureAttributeArgs, type MutationCreateSignatureBrandArgs, type MutationCreateSignatureCredentialArgs, type MutationCreateSignatureDomainArgs, type MutationCreateSignatureGroupArgs, type MutationCreateSignatureLabelArgs, type MutationCreateSignatureMappingArgs, type MutationCreateSignatureProviderArgs, type MutationCreateSignatureProviderByAttributesArgs, type MutationCreateSignatureProviderConfigurationNlWalletArgs, type MutationCreateSignatureSecretArgs, type MutationCreateStudioPlanArgs, type MutationCreateStudioPlanControlArgs, type MutationCreateStudioPlanControlOverrideArgs, type MutationCreateStudioPlanIntervalArgs, type MutationCreateStudioPlanOrganizationArgs, type MutationCreateUserArgs, type MutationCreateUserInvitationArgs, type MutationCreateUserInvitationTokenArgs, type MutationCreateUserResetArgs, type MutationDeleteAppArgs, type MutationDeleteAppLocaleArgs, type MutationDeleteAppPrerequisiteArgs, type MutationDeleteAppPrerequisiteLocaleArgs, type MutationDeleteAppPrerequisiteStateArgs, type MutationDeleteAppPrerequisiteStateLocaleArgs, type MutationDeleteAttributeArgs, type MutationDeleteAttributeLabelArgs, type MutationDeleteAttributeLocaleArgs, type MutationDeleteAttributeMetaDatakeeperArgs, type MutationDeleteAttributeMetaDigidentityArgs, type MutationDeleteAttributeMetaMdocArgs, type MutationDeleteAttributeMetaNectArgs, type MutationDeleteAttributeMetaNlWalletArgs, type MutationDeleteAttributeMetaOid4VcmdocArgs, type MutationDeleteAttributeMetaOid4VcsdjwtArgs, type MutationDeleteAttributeMetaReadIdArgs, type MutationDeleteAttributeMetaTruidArgs, type MutationDeleteAttributeMetaYiviArgs, type MutationDeleteAttributeMetaYotiArgs, type MutationDeleteAttributeRequestArgs, type MutationDeleteAttributeRequestLocaleArgs, type MutationDeleteAttributeRequestMetaDatakeeperArgs, type MutationDeleteAttributeRequestMetaOid4VcmdocArgs, type MutationDeleteAttributeRequestMetaOid4VcsdjwtArgs, type MutationDeleteAttributeRequestMetaYiviArgs, type MutationDeleteAttributeRequestMetaYotiArgs, type MutationDeleteAuthenticationArgs, type MutationDeleteAuthenticationBrandArgs, type MutationDeleteAuthenticationDomainArgs, type MutationDeleteAuthenticationLabelArgs, type MutationDeleteAuthenticationProviderArgs, type MutationDeleteAuthenticationProviderConfigurationNlWalletArgs, type MutationDeleteAuthenticationScopeArgs, type MutationDeleteAuthenticationSecretArgs, type MutationDeleteBillingPlanArgs, type MutationDeleteCredentialArgs, type MutationDeleteCredentialLabelArgs, type MutationDeleteCredentialLocaleArgs, type MutationDeleteCredentialMetaDatakeeperArgs, type MutationDeleteCredentialMetaDigidentityArgs, type MutationDeleteCredentialMetaMdocArgs, type MutationDeleteCredentialMetaNectArgs, type MutationDeleteCredentialMetaNlWalletArgs, type MutationDeleteCredentialMetaOid4VcmdocArgs, type MutationDeleteCredentialMetaOid4VcsdjwtArgs, type MutationDeleteCredentialMetaReadIdArgs, type MutationDeleteCredentialMetaTruidArgs, type MutationDeleteCredentialMetaYiviArgs, type MutationDeleteCredentialMetaYotiArgs, type MutationDeleteCredentialRequestArgs, type MutationDeleteCredentialRequestLocaleArgs, type MutationDeleteCredentialRequestMetaDatakeeperArgs, type MutationDeleteCredentialRequestMetaOid4VcmdocArgs, type MutationDeleteCredentialRequestMetaOid4VcsdjwtArgs, type MutationDeleteCredentialRequestMetaYiviArgs, type MutationDeleteCredentialRequestMetaYotiArgs, type MutationDeleteCredentialRequestStateArgs, type MutationDeleteCredentialRequestStateLocaleArgs, type MutationDeleteDisclosureArgs, type MutationDeleteDisclosureAttributeArgs, type MutationDeleteDisclosureBrandArgs, type MutationDeleteDisclosureCredentialArgs, type MutationDeleteDisclosureDomainArgs, type MutationDeleteDisclosureGroupArgs, type MutationDeleteDisclosureLabelArgs, type MutationDeleteDisclosureMappingArgs, type MutationDeleteDisclosureProviderArgs, type MutationDeleteDisclosureProviderConfigurationNlWalletArgs, type MutationDeleteDisclosureSecretArgs, type MutationDeleteIssuanceArgs, type MutationDeleteIssuanceAttributeArgs, type MutationDeleteIssuanceBrandArgs, type MutationDeleteIssuanceCredentialArgs, type MutationDeleteIssuanceCredentialMetaDatakeeperArgs, type MutationDeleteIssuanceCredentialMetaOid4vcArgs, type MutationDeleteIssuanceCredentialMetaYiviArgs, type MutationDeleteIssuanceDomainArgs, type MutationDeleteIssuanceLabelArgs, type MutationDeleteIssuanceMappingArgs, type MutationDeleteIssuanceProviderArgs, type MutationDeleteIssuanceProviderConfigurationNlWalletArgs, type MutationDeleteIssuanceSecretArgs, type MutationDeleteIssuerArgs, type MutationDeleteIssuerLabelArgs, type MutationDeleteIssuerLocaleArgs, type MutationDeleteIssuerMetaDatakeeperArgs, type MutationDeleteIssuerMetaMdocArgs, type MutationDeleteIssuerMetaOid4VcMdocKeyProfileArgs, type MutationDeleteIssuerMetaOid4VcSdJwtKeyProfileArgs, type MutationDeleteIssuerMetaOid4VcmdocArgs, type MutationDeleteIssuerMetaOid4VcsdjwtArgs, type MutationDeleteIssuerMetaYiviArgs, type MutationDeleteLabelArgs, type MutationDeleteLocaleConfigArgs, type MutationDeleteMaintenanceArgs, type MutationDeleteMappingIssuanceArgs, type MutationDeleteMappingIssuanceAttributeArgs, type MutationDeleteMappingIssuanceClaimArgs, type MutationDeleteMappingIssuanceLinkArgs, type MutationDeleteMappingVerificationArgs, type MutationDeleteMappingVerificationAttributeArgs, type MutationDeleteMappingVerificationClaimArgs, type MutationDeleteMappingVerificationLinkArgs, type MutationDeleteOAuthProviderArgs, type MutationDeleteOrganizationAddressArgs, type MutationDeleteOrganizationAlertArgs, type MutationDeleteOrganizationAlertDeprecationArgs, type MutationDeleteOrganizationAppArgs, type MutationDeleteOrganizationAppMetaDatakeeperArgs, type MutationDeleteOrganizationAppMetaKiwaArgs, type MutationDeleteOrganizationAppMetaOid4vcArgs, type MutationDeleteOrganizationAppMetaYotiArgs, type MutationDeleteOrganizationAppPrerequisiteArgs, type MutationDeleteOrganizationArgs, type MutationDeleteOrganizationBrandArgs, type MutationDeleteOrganizationBrandLabelArgs, type MutationDeleteOrganizationClientArgs, type MutationDeleteOrganizationDomainArgs, type MutationDeleteOrganizationDomainLabelArgs, type MutationDeleteOrganizationDomainOAuthProviderArgs, type MutationDeleteOrganizationNotificationArgs, type MutationDeleteOrganizationNotificationEventArgs, type MutationDeleteOrganizationSecretArgs, type MutationDeleteOrganizationUserArgs, type MutationDeletePricingCatalogArgs, type MutationDeletePricingConfigurationAppArgs, type MutationDeletePricingConfigurationOrganizationArgs, type MutationDeletePricingConfigurationStudioPlanArgs, type MutationDeletePricingGroupArgs, type MutationDeletePricingGroupAssignmentArgs, type MutationDeletePricingRuleArgs, type MutationDeletePricingRuleConstraintArgs, type MutationDeletePricingRuleTargetArgs, type MutationDeleteProviderAppArgs, type MutationDeleteProviderAppMetaOid4VcArgs, type MutationDeleteProviderArgs, type MutationDeleteProviderLabelArgs, type MutationDeleteProviderLocaleArgs, type MutationDeleteSchemeArgs, type MutationDeleteSchemeLabelArgs, type MutationDeleteSchemeLocaleArgs, type MutationDeleteScopeArgs, type MutationDeleteScopeClaimArgs, type MutationDeleteScopeLocaleArgs, type MutationDeleteScopeResourceArgs, type MutationDeleteSignatureArgs, type MutationDeleteSignatureAttributeArgs, type MutationDeleteSignatureBrandArgs, type MutationDeleteSignatureCredentialArgs, type MutationDeleteSignatureDomainArgs, type MutationDeleteSignatureGroupArgs, type MutationDeleteSignatureLabelArgs, type MutationDeleteSignatureMappingArgs, type MutationDeleteSignatureProviderArgs, type MutationDeleteSignatureProviderConfigurationNlWalletArgs, type MutationDeleteSignatureSecretArgs, type MutationDeleteStudioPlanArgs, type MutationDeleteStudioPlanControlArgs, type MutationDeleteStudioPlanControlOverrideArgs, type MutationDeleteStudioPlanIntervalArgs, type MutationDeleteStudioPlanOrganizationArgs, type MutationDeleteUserArgs, type MutationDeleteUserInvitationArgs, type MutationDuplicateAuthenticationArgs, type MutationDuplicateDisclosureArgs, type MutationDuplicateIssuanceArgs, type MutationDuplicateSignatureArgs, type MutationDuplicateStudioPlanArgs, type MutationLoginByClientCredentialsArgs, type MutationLoginByOpenIdTokenArgs, type MutationLoginByPasswordArgs, type MutationMoveDisclosureCredentialArgs, type MutationMoveSignatureCredentialArgs, type MutationRegisterByOpenIdTokenArgs, type MutationRegisterByPasswordArgs, type MutationRenewAccessTokenArgs, type MutationResendUserInvitationArgs, type MutationSetupBillingMethodArgs, type MutationTransitionOrganizationTypeArgs, type MutationUpdateAppArgs, type MutationUpdateAppLocaleArgs, type MutationUpdateAppPrerequisiteArgs, type MutationUpdateAppPrerequisiteLocaleArgs, type MutationUpdateAppPrerequisiteStateArgs, type MutationUpdateAppPrerequisiteStateLocaleArgs, type MutationUpdateAttributeArgs, type MutationUpdateAttributeLocaleArgs, type MutationUpdateAttributeMetaDatakeeperArgs, type MutationUpdateAttributeMetaDigidentityArgs, type MutationUpdateAttributeMetaMdocArgs, type MutationUpdateAttributeMetaNectArgs, type MutationUpdateAttributeMetaNlWalletArgs, type MutationUpdateAttributeMetaOid4VcmdocArgs, type MutationUpdateAttributeMetaOid4VcsdjwtArgs, type MutationUpdateAttributeMetaReadIdArgs, type MutationUpdateAttributeMetaTruidArgs, type MutationUpdateAttributeMetaYiviArgs, type MutationUpdateAttributeMetaYotiArgs, type MutationUpdateAttributeRequestArgs, type MutationUpdateAttributeRequestLocaleArgs, type MutationUpdateAttributeRequestMetaDatakeeperArgs, type MutationUpdateAttributeRequestMetaOid4VcmdocArgs, type MutationUpdateAttributeRequestMetaOid4VcsdjwtArgs, type MutationUpdateAttributeRequestMetaYiviArgs, type MutationUpdateAttributeRequestMetaYotiArgs, type MutationUpdateAuthenticationArgs, type MutationUpdateAuthenticationBrandArgs, type MutationUpdateAuthenticationDomainArgs, type MutationUpdateAuthenticationProviderArgs, type MutationUpdateAuthenticationProviderConfigurationNlWalletArgs, type MutationUpdateBillingMethodArgs, type MutationUpdateBillingPlanArgs, type MutationUpdateBillingWalletArgs, type MutationUpdateCredentialArgs, type MutationUpdateCredentialLocaleArgs, type MutationUpdateCredentialMetaDatakeeperArgs, type MutationUpdateCredentialMetaDigidentityArgs, type MutationUpdateCredentialMetaMdocArgs, type MutationUpdateCredentialMetaNectArgs, type MutationUpdateCredentialMetaNlWalletArgs, type MutationUpdateCredentialMetaOid4VcmdocArgs, type MutationUpdateCredentialMetaOid4VcsdjwtArgs, type MutationUpdateCredentialMetaReadIdArgs, type MutationUpdateCredentialMetaTruidArgs, type MutationUpdateCredentialMetaYiviArgs, type MutationUpdateCredentialMetaYotiArgs, type MutationUpdateCredentialRequestArgs, type MutationUpdateCredentialRequestLocaleArgs, type MutationUpdateCredentialRequestMetaDatakeeperArgs, type MutationUpdateCredentialRequestMetaOid4VcmdocArgs, type MutationUpdateCredentialRequestMetaOid4VcsdjwtArgs, type MutationUpdateCredentialRequestMetaYiviArgs, type MutationUpdateCredentialRequestMetaYotiArgs, type MutationUpdateCredentialRequestStateArgs, type MutationUpdateCredentialRequestStateLocaleArgs, type MutationUpdateDisclosureArgs, type MutationUpdateDisclosureBrandArgs, type MutationUpdateDisclosureDomainArgs, type MutationUpdateDisclosureGroupArgs, type MutationUpdateDisclosureProviderArgs, type MutationUpdateDisclosureProviderConfigurationNlWalletArgs, type MutationUpdateIssuanceArgs, type MutationUpdateIssuanceBrandArgs, type MutationUpdateIssuanceCredentialMetaDatakeeperArgs, type MutationUpdateIssuanceCredentialMetaOid4vcArgs, type MutationUpdateIssuanceCredentialMetaYiviArgs, type MutationUpdateIssuanceDomainArgs, type MutationUpdateIssuanceProviderArgs, type MutationUpdateIssuanceProviderConfigurationNlWalletArgs, type MutationUpdateIssuerArgs, type MutationUpdateIssuerLocaleArgs, type MutationUpdateIssuerMetaDatakeeperArgs, type MutationUpdateIssuerMetaMdocArgs, type MutationUpdateIssuerMetaOid4VcMdocKeyProfileArgs, type MutationUpdateIssuerMetaOid4VcSdJwtKeyProfileArgs, type MutationUpdateIssuerMetaOid4VcmdocArgs, type MutationUpdateIssuerMetaOid4VcsdjwtArgs, type MutationUpdateIssuerMetaYiviArgs, type MutationUpdateLabelArgs, type MutationUpdateLocaleConfigArgs, type MutationUpdateMaintenanceArgs, type MutationUpdateMappingIssuanceArgs, type MutationUpdateMappingIssuanceAttributeArgs, type MutationUpdateMappingIssuanceClaimArgs, type MutationUpdateMappingVerificationArgs, type MutationUpdateMappingVerificationAttributeArgs, type MutationUpdateMappingVerificationClaimArgs, type MutationUpdateMappingVerificationLinkArgs, type MutationUpdateOAuthProviderArgs, type MutationUpdateOrganizationAddressArgs, type MutationUpdateOrganizationAlertArgs, type MutationUpdateOrganizationAlertDeprecationArgs, type MutationUpdateOrganizationAppMetaDatakeeperArgs, type MutationUpdateOrganizationAppMetaKiwaArgs, type MutationUpdateOrganizationAppMetaOid4vcArgs, type MutationUpdateOrganizationAppMetaYotiArgs, type MutationUpdateOrganizationArgs, type MutationUpdateOrganizationBrandArgs, type MutationUpdateOrganizationClientArgs, type MutationUpdateOrganizationDomainArgs, type MutationUpdateOrganizationNotificationArgs, type MutationUpdateOrganizationSecretArgs, type MutationUpdateOrganizationUserArgs, type MutationUpdatePasswordUserArgs, type MutationUpdatePricingCatalogArgs, type MutationUpdatePricingConfigurationAppArgs, type MutationUpdatePricingConfigurationOrganizationArgs, type MutationUpdatePricingConfigurationStudioPlanArgs, type MutationUpdatePricingGroupArgs, type MutationUpdatePricingRuleArgs, type MutationUpdatePricingRuleConstraintArgs, type MutationUpdatePricingRuleTargetArgs, type MutationUpdateProviderAppMetaOid4VcArgs, type MutationUpdateProviderArgs, type MutationUpdateProviderLocaleArgs, type MutationUpdateSchemeArgs, type MutationUpdateSchemeLocaleArgs, type MutationUpdateScopeArgs, type MutationUpdateScopeClaimArgs, type MutationUpdateScopeLocaleArgs, type MutationUpdateScopeResourceArgs, type MutationUpdateSignatureArgs, type MutationUpdateSignatureBrandArgs, type MutationUpdateSignatureDomainArgs, type MutationUpdateSignatureGroupArgs, type MutationUpdateSignatureProviderArgs, type MutationUpdateSignatureProviderConfigurationNlWalletArgs, type MutationUpdateStudioPlanArgs, type MutationUpdateStudioPlanControlArgs, type MutationUpdateStudioPlanControlOverrideArgs, type MutationUpdateStudioPlanIntervalArgs, type MutationUpdateUserArgs, type MutationUpdateUserInvitationArgs, type MutationUseUserInvitationTokenArgs, type MutationUseUserResetArgs, type MutationValidateUserInvitationArgs, type MutationValidateUserInvitationTokenArgs, type MutationValidateUserResetArgs, NestedFilteringType, OAuthFlowType, type OAuthMethod, type OAuthProvider, OAuthProviderAction, type OAuthProviderConnection, type OAuthProviderEdge, OAuthProviderFilteringField, type OAuthProviderOrganizationDomainOAuthProvidersArgs, OAuthProviderSortEnum, type OAuthProviderSortInput, OAuthProviderState, OperationFailedError, OrderDirection, type Organization, OrganizationAction, type OrganizationAddress, type OrganizationAddressConnection, type OrganizationAddressEdge, OrganizationAddressFilteringField, OrganizationAddressSortEnum, type OrganizationAddressSortInput, type OrganizationAlert, OrganizationAlertAction, type OrganizationAlertConnection, type OrganizationAlertDeprecation, type OrganizationAlertDeprecationConnection, type OrganizationAlertDeprecationEdge, OrganizationAlertDeprecationFilteringField, OrganizationAlertDeprecationSortEnum, type OrganizationAlertDeprecationSortInput, type OrganizationAlertEdge, OrganizationAlertFilteringField, OrganizationAlertSortEnum, type OrganizationAlertSortInput, type OrganizationApp, OrganizationAppAction, type OrganizationAppConnection, type OrganizationAppEdge, OrganizationAppFilteringField, type OrganizationAppMeta, type OrganizationAppMetaConnection, type OrganizationAppMetaDatakeeper, type OrganizationAppMetaDatakeeperConnection, type OrganizationAppMetaDatakeeperEdge, OrganizationAppMetaDatakeeperFilteringField, OrganizationAppMetaDatakeeperSortEnum, type OrganizationAppMetaDatakeeperSortInput, type OrganizationAppMetaEdge, OrganizationAppMetaFilteringField, type OrganizationAppMetaKiwa, type OrganizationAppMetaKiwaConnection, type OrganizationAppMetaKiwaEdge, OrganizationAppMetaKiwaFilteringField, OrganizationAppMetaKiwaSortEnum, type OrganizationAppMetaKiwaSortInput, type OrganizationAppMetaOid4vc, type OrganizationAppMetaOid4vcConnection, type OrganizationAppMetaOid4vcEdge, OrganizationAppMetaOid4vcFilteringField, OrganizationAppMetaOid4vcSortEnum, type OrganizationAppMetaOid4vcSortInput, OrganizationAppMetaSortEnum, type OrganizationAppMetaSortInput, OrganizationAppMetaType, type OrganizationAppMetaYoti, type OrganizationAppMetaYotiConnection, type OrganizationAppMetaYotiEdge, OrganizationAppMetaYotiFilteringField, OrganizationAppMetaYotiSortEnum, type OrganizationAppMetaYotiSortInput, type OrganizationAppNestedFilteringAppField, type OrganizationAppOrganizationAppPrerequisitesArgs, type OrganizationAppPrerequisite, type OrganizationAppPrerequisiteConnection, type OrganizationAppPrerequisiteEdge, OrganizationAppPrerequisiteFilteringField, OrganizationAppPrerequisiteSortEnum, type OrganizationAppPrerequisiteSortInput, type OrganizationAppPrerequisiteWorkflow, type OrganizationAppPrerequisiteWorkflowConnection, type OrganizationAppPrerequisiteWorkflowEdge, OrganizationAppPrerequisiteWorkflowFilteringField, OrganizationAppPrerequisiteWorkflowSortEnum, type OrganizationAppPrerequisiteWorkflowSortInput, type OrganizationAppPrerequisiteWorkflowsArgs, OrganizationAppProduct, OrganizationAppSortEnum, type OrganizationAppSortInput, OrganizationAppState, type OrganizationBrand, OrganizationBrandAction, type OrganizationBrandConnection, type OrganizationBrandEdge, OrganizationBrandFilteringField, type OrganizationBrandLabel, type OrganizationBrandLabelConnection, type OrganizationBrandLabelEdge, OrganizationBrandLabelFilteringField, OrganizationBrandLabelSortEnum, type OrganizationBrandLabelSortInput, type OrganizationBrandNestedFilteringOrganizationBrandLabelField, type OrganizationBrandOrganizationBrandLabelsArgs, OrganizationBrandSortEnum, type OrganizationBrandSortInput, OrganizationBrandState, type OrganizationClient, type OrganizationClientConnection, type OrganizationClientEdge, OrganizationClientFilteringField, OrganizationClientSortEnum, type OrganizationClientSortInput, type OrganizationConnection, type OrganizationDomain, OrganizationDomainAction, type OrganizationDomainActionRejectInput, type OrganizationDomainConnection, type OrganizationDomainEdge, OrganizationDomainFilteringField, type OrganizationDomainLabel, type OrganizationDomainLabelConnection, type OrganizationDomainLabelEdge, OrganizationDomainLabelFilteringField, OrganizationDomainLabelSortEnum, type OrganizationDomainLabelSortInput, type OrganizationDomainNestedFilteringOrganizationDomainLabelField, type OrganizationDomainOAuthProvider, type OrganizationDomainOAuthProviderConnection, type OrganizationDomainOAuthProviderEdge, OrganizationDomainOAuthProviderFilteringField, OrganizationDomainOAuthProviderSortEnum, type OrganizationDomainOAuthProviderSortInput, type OrganizationDomainOrganizationDomainLabelsArgs, OrganizationDomainSortEnum, type OrganizationDomainSortInput, OrganizationDomainState, type OrganizationDomainValidation, type OrganizationDomainValidationConnection, type OrganizationDomainValidationEdge, OrganizationDomainValidationFilteringField, OrganizationDomainValidationSortEnum, type OrganizationDomainValidationSortInput, type OrganizationEdge, OrganizationFilteringField, type OrganizationLabelsArgs, type OrganizationManagedOrganizationsArgs, type OrganizationNotification, OrganizationNotificationAction, type OrganizationNotificationConnection, type OrganizationNotificationEdge, type OrganizationNotificationEvent, type OrganizationNotificationEventConnection, type OrganizationNotificationEventEdge, OrganizationNotificationEventFilteringField, OrganizationNotificationEventSortEnum, type OrganizationNotificationEventSortInput, OrganizationNotificationFilteringField, OrganizationNotificationSortEnum, type OrganizationNotificationSortInput, type OrganizationOrganizationAddressesArgs, type OrganizationOrganizationBrandsArgs, type OrganizationOrganizationDomainsArgs, type OrganizationOrganizationUsersArgs, type OrganizationQuota, type OrganizationQuotaConnection, type OrganizationQuotaEdge, OrganizationQuotaFilteringField, OrganizationQuotaSortEnum, type OrganizationQuotaSortInput, type OrganizationSecret, OrganizationSecretAlgorithm, type OrganizationSecretConnection, type OrganizationSecretEdge, OrganizationSecretFilteringField, OrganizationSecretSortEnum, type OrganizationSecretSortInput, OrganizationSecretType, OrganizationSortEnum, type OrganizationSortInput, OrganizationType, type OrganizationUser, OrganizationUserAction, type OrganizationUserConnection, type OrganizationUserEdge, OrganizationUserFilteringField, type OrganizationUserInvitationsArgs, type OrganizationUserNestedFilteringUserField, OrganizationUserRole, OrganizationUserSortEnum, type OrganizationUserSortInput, type PageInfo, type PaginationInput, type PaymentProvider, type PaymentProviderConnection, type PaymentProviderEdge, type PaymentProviderEvent, type PaymentProviderEventConnection, type PaymentProviderEventEdge, PaymentProviderEventFilteringField, PaymentProviderEventSortEnum, type PaymentProviderEventSortInput, PaymentProviderFilteringField, type PaymentProviderInvoice, type PaymentProviderInvoiceConnection, type PaymentProviderInvoiceEdge, PaymentProviderInvoiceFilteringField, PaymentProviderInvoiceSortEnum, type PaymentProviderInvoiceSortInput, PaymentProviderInvoiceState, type PaymentProviderMethod, type PaymentProviderMethodConnection, type PaymentProviderMethodEdge, PaymentProviderMethodFilteringField, PaymentProviderMethodSortEnum, type PaymentProviderMethodSortInput, PaymentProviderMethodState, type PaymentProviderOrganization, type PaymentProviderOrganizationConnection, type PaymentProviderOrganizationEdge, PaymentProviderOrganizationFilteringField, type PaymentProviderOrganizationPaymentProviderInvoicesArgs, type PaymentProviderOrganizationPaymentProviderMethodsArgs, PaymentProviderOrganizationSortEnum, type PaymentProviderOrganizationSortInput, type PaymentProviderPaymentProviderEventsArgs, type PaymentProviderPaymentProviderOrganizationsArgs, PaymentProviderSortEnum, type PaymentProviderSortInput, PricingAggregationStrategy, type PricingCatalog, type PricingCatalogConnection, type PricingCatalogEdge, PricingCatalogFilteringField, type PricingCatalogRulesArgs, PricingCatalogSortEnum, type PricingCatalogSortInput, type PricingConfigurationApp, type PricingConfigurationAppConnection, type PricingConfigurationAppEdge, PricingConfigurationAppFilteringField, PricingConfigurationAppSortEnum, type PricingConfigurationAppSortInput, type PricingConfigurationOrganization, type PricingConfigurationOrganizationConnection, type PricingConfigurationOrganizationEdge, PricingConfigurationOrganizationFilteringField, PricingConfigurationOrganizationSortEnum, type PricingConfigurationOrganizationSortInput, type PricingConfigurationStudioPlan, type PricingConfigurationStudioPlanConnection, type PricingConfigurationStudioPlanEdge, PricingConfigurationStudioPlanFilteringField, PricingConfigurationStudioPlanSortEnum, type PricingConfigurationStudioPlanSortInput, type PricingGroup, type PricingGroupAssignment, type PricingGroupAssignmentConnection, type PricingGroupAssignmentEdge, PricingGroupAssignmentFilteringField, PricingGroupAssignmentSortEnum, type PricingGroupAssignmentSortInput, PricingGroupAssignmentType, type PricingGroupAssignmentsArgs, type PricingGroupConnection, type PricingGroupEdge, PricingGroupFilteringField, PricingGroupSortEnum, type PricingGroupSortInput, PricingHierarchyLevel, PricingLayer, type PricingRule, PricingRuleAction, type PricingRuleConnection, type PricingRuleConstraint, type PricingRuleConstraintConnection, type PricingRuleConstraintEdge, PricingRuleConstraintFilteringField, PricingRuleConstraintSortEnum, type PricingRuleConstraintSortInput, type PricingRuleConstraintsArgs, type PricingRuleEdge, PricingRuleFilteringField, PricingRuleSortEnum, type PricingRuleSortInput, PricingRuleState, type PricingRuleTarget, type PricingRuleTargetConnection, type PricingRuleTargetEdge, PricingRuleTargetFilteringField, PricingRuleTargetSortEnum, type PricingRuleTargetSortInput, PricingType, type Provider, type ProviderApp, type ProviderAppConnection, type ProviderAppEdge, ProviderAppFilteringField, type ProviderAppMeta, type ProviderAppMetaConnection, type ProviderAppMetaEdge, ProviderAppMetaFilteringField, type ProviderAppMetaOid4Vc, type ProviderAppMetaOid4VcConnection, type ProviderAppMetaOid4VcEdge, ProviderAppMetaOid4VcFilteringField, ProviderAppMetaOid4VcIssuanceSpecType, ProviderAppMetaOid4VcSortEnum, type ProviderAppMetaOid4VcSortInput, ProviderAppMetaOid4VcVerificationSpecType, ProviderAppMetaSortEnum, type ProviderAppMetaSortInput, ProviderAppMetaType, ProviderAppMetaTypeOid4VcClientIdentifierPrefix, type ProviderAppScopesArgs, ProviderAppSortEnum, type ProviderAppSortInput, type ProviderAppsArgs, ProviderCategoryType, type ProviderConnection, type ProviderCredentialRequestStatesArgs, type ProviderCredentialRequestsArgs, type ProviderEdge, type ProviderEntity, ProviderFilteringField, type ProviderForOrganization, type ProviderForOrganizationConnection, type ProviderForOrganizationEdge, type ProviderLabel, type ProviderLabelConnection, type ProviderLabelEdge, ProviderLabelFilteringField, ProviderLabelSortEnum, type ProviderLabelSortInput, type ProviderLocale, type ProviderLocaleArgs, type ProviderLocaleConfigsArgs, type ProviderLocaleConnection, type ProviderLocaleEdge, ProviderLocaleFilteringField, ProviderLocaleSortEnum, type ProviderLocaleSortInput, type ProviderSchemesArgs, ProviderSortEnum, type ProviderSortInput, ProviderType, type Query, type QueryFindAppArgs, type QueryFindAppLocaleArgs, type QueryFindAppPrerequisiteArgs, type QueryFindAppPrerequisiteLocaleArgs, type QueryFindAppPrerequisiteStateArgs, type QueryFindAppPrerequisiteStateLocaleArgs, type QueryFindAttributeArgs, type QueryFindAttributeLabelArgs, type QueryFindAttributeLocaleArgs, type QueryFindAttributeMetaArgs, type QueryFindAttributeMetaDatakeeperArgs, type QueryFindAttributeMetaDigidentityArgs, type QueryFindAttributeMetaMdocArgs, type QueryFindAttributeMetaNectArgs, type QueryFindAttributeMetaNlWalletArgs, type QueryFindAttributeMetaOid4VcmdocArgs, type QueryFindAttributeMetaOid4VcsdjwtArgs, type QueryFindAttributeMetaReadIdArgs, type QueryFindAttributeMetaTruidArgs, type QueryFindAttributeMetaYiviArgs, type QueryFindAttributeMetaYotiArgs, type QueryFindAttributeRequestArgs, type QueryFindAttributeRequestLocaleArgs, type QueryFindAttributeRequestMetaArgs, type QueryFindAttributeRequestMetaDatakeeperArgs, type QueryFindAttributeRequestMetaOid4VcmdocArgs, type QueryFindAttributeRequestMetaOid4VcsdjwtArgs, type QueryFindAttributeRequestMetaYiviArgs, type QueryFindAttributeRequestMetaYotiArgs, type QueryFindAuthenticationActivityArgs, type QueryFindAuthenticationArgs, type QueryFindAuthenticationBrandArgs, type QueryFindAuthenticationDomainArgs, type QueryFindAuthenticationLabelArgs, type QueryFindAuthenticationProviderArgs, type QueryFindAuthenticationProviderConfigurationArgs, type QueryFindAuthenticationProviderConfigurationNlWalletArgs, type QueryFindAuthenticationScopeArgs, type QueryFindAuthenticationSecretArgs, type QueryFindBillingArgs, type QueryFindBillingMethodArgs, type QueryFindBillingPlanArgs, type QueryFindBillingWalletArgs, type QueryFindBillingWalletTransactionArgs, type QueryFindBillingWalletTransactionMetaArgs, type QueryFindBillingWalletTransactionMetaFlowArgs, type QueryFindBillingWalletTransactionMetaFlowAttributeArgs, type QueryFindBillingWalletTransactionMetaPlanArgs, type QueryFindBillingWalletTransactionMetaWalletArgs, type QueryFindCredentialArgs, type QueryFindCredentialLabelArgs, type QueryFindCredentialLocaleArgs, type QueryFindCredentialMetaArgs, type QueryFindCredentialMetaDatakeeperArgs, type QueryFindCredentialMetaDigidentityArgs, type QueryFindCredentialMetaMdocArgs, type QueryFindCredentialMetaNectArgs, type QueryFindCredentialMetaNlWalletArgs, type QueryFindCredentialMetaOid4VcmdocArgs, type QueryFindCredentialMetaOid4VcsdjwtArgs, type QueryFindCredentialMetaReadIdArgs, type QueryFindCredentialMetaTruidArgs, type QueryFindCredentialMetaYiviArgs, type QueryFindCredentialMetaYotiArgs, type QueryFindCredentialRequestArgs, type QueryFindCredentialRequestLocaleArgs, type QueryFindCredentialRequestMetaArgs, type QueryFindCredentialRequestMetaDatakeeperArgs, type QueryFindCredentialRequestMetaOid4VcmdocArgs, type QueryFindCredentialRequestMetaOid4VcsdjwtArgs, type QueryFindCredentialRequestMetaYiviArgs, type QueryFindCredentialRequestMetaYotiArgs, type QueryFindCredentialRequestStateArgs, type QueryFindCredentialRequestStateLocaleArgs, type QueryFindCredentialRequestWorkflowArgs, type QueryFindDisclosureActivityArgs, type QueryFindDisclosureArgs, type QueryFindDisclosureAttributeArgs, type QueryFindDisclosureBrandArgs, type QueryFindDisclosureCredentialArgs, type QueryFindDisclosureDomainArgs, type QueryFindDisclosureGroupArgs, type QueryFindDisclosureLabelArgs, type QueryFindDisclosureMappingArgs, type QueryFindDisclosureProviderArgs, type QueryFindDisclosureProviderConfigurationArgs, type QueryFindDisclosureProviderConfigurationNlWalletArgs, type QueryFindDisclosureSecretArgs, type QueryFindGlobalOAuthMethodsArgs, type QueryFindIssuanceActivityArgs, type QueryFindIssuanceArgs, type QueryFindIssuanceAttributeArgs, type QueryFindIssuanceBrandArgs, type QueryFindIssuanceCredentialArgs, type QueryFindIssuanceCredentialMetaArgs, type QueryFindIssuanceCredentialMetaDatakeeperArgs, type QueryFindIssuanceCredentialMetaOid4vcArgs, type QueryFindIssuanceCredentialMetaYiviArgs, type QueryFindIssuanceDomainArgs, type QueryFindIssuanceLabelArgs, type QueryFindIssuanceMappingArgs, type QueryFindIssuanceProviderArgs, type QueryFindIssuanceProviderConfigurationArgs, type QueryFindIssuanceProviderConfigurationNlWalletArgs, type QueryFindIssuanceSecretArgs, type QueryFindIssuerArgs, type QueryFindIssuerLabelArgs, type QueryFindIssuerLocaleArgs, type QueryFindIssuerMetaArgs, type QueryFindIssuerMetaDatakeeperArgs, type QueryFindIssuerMetaMdocArgs, type QueryFindIssuerMetaOid4VcMdocKeyProfileArgs, type QueryFindIssuerMetaOid4VcSdJwtKeyProfileArgs, type QueryFindIssuerMetaOid4VcmdocArgs, type QueryFindIssuerMetaOid4VcsdjwtArgs, type QueryFindIssuerMetaYiviArgs, type QueryFindLabelArgs, type QueryFindLocaleConfigArgs, type QueryFindMaintenanceArgs, type QueryFindManyAppLocalesArgs, type QueryFindManyAppPrerequisiteArgs, type QueryFindManyAppPrerequisiteLocalesArgs, type QueryFindManyAppPrerequisiteStateArgs, type QueryFindManyAppPrerequisiteStateLocalesArgs, type QueryFindManyAppsArgs, type QueryFindManyAttributeLabelsArgs, type QueryFindManyAttributeLocalesArgs, type QueryFindManyAttributeMetaArgs, type QueryFindManyAttributeMetaDatakeeperArgs, type QueryFindManyAttributeMetaDigidentityArgs, type QueryFindManyAttributeMetaMdocArgs, type QueryFindManyAttributeMetaNectArgs, type QueryFindManyAttributeMetaNlWalletArgs, type QueryFindManyAttributeMetaOid4VcmdocArgs, type QueryFindManyAttributeMetaOid4VcsdjwtArgs, type QueryFindManyAttributeMetaReadIdArgs, type QueryFindManyAttributeMetaTruidArgs, type QueryFindManyAttributeMetaYiviArgs, type QueryFindManyAttributeMetaYotiArgs, type QueryFindManyAttributeRequestArgs, type QueryFindManyAttributeRequestLocalesArgs, type QueryFindManyAttributeRequestMetaArgs, type QueryFindManyAttributeRequestMetaDatakeeperArgs, type QueryFindManyAttributeRequestMetaOid4VcmdocArgs, type QueryFindManyAttributeRequestMetaOid4VcsdjwtArgs, type QueryFindManyAttributeRequestMetaYiviArgs, type QueryFindManyAttributeRequestMetaYotiArgs, type QueryFindManyAttributesArgs, type QueryFindManyAuthenticationActivitiesArgs, type QueryFindManyAuthenticationBrandsArgs, type QueryFindManyAuthenticationDomainsArgs, type QueryFindManyAuthenticationLabelsArgs, type QueryFindManyAuthenticationProviderConfigurationNlWalletsArgs, type QueryFindManyAuthenticationProviderConfigurationsArgs, type QueryFindManyAuthenticationProvidersArgs, type QueryFindManyAuthenticationScopesArgs, type QueryFindManyAuthenticationSecretsArgs, type QueryFindManyAuthenticationsArgs, type QueryFindManyBillingMethodsArgs, type QueryFindManyBillingPlansArgs, type QueryFindManyBillingWalletTransactionMetaFlowAttributesArgs, type QueryFindManyBillingWalletTransactionMetaFlowsArgs, type QueryFindManyBillingWalletTransactionMetaPlansArgs, type QueryFindManyBillingWalletTransactionMetaWalletsArgs, type QueryFindManyBillingWalletTransactionMetasArgs, type QueryFindManyBillingWalletTransactionsArgs, type QueryFindManyBillingWalletsArgs, type QueryFindManyBillingsArgs, type QueryFindManyCredentialLabelsArgs, type QueryFindManyCredentialLocalesArgs, type QueryFindManyCredentialMetaArgs, type QueryFindManyCredentialMetaDatakeeperArgs, type QueryFindManyCredentialMetaDigidentityArgs, type QueryFindManyCredentialMetaMdocArgs, type QueryFindManyCredentialMetaNectArgs, type QueryFindManyCredentialMetaNlWalletArgs, type QueryFindManyCredentialMetaOid4VcmdocArgs, type QueryFindManyCredentialMetaOid4VcsdjwtArgs, type QueryFindManyCredentialMetaReadIdArgs, type QueryFindManyCredentialMetaTruidArgs, type QueryFindManyCredentialMetaYiviArgs, type QueryFindManyCredentialMetaYotiArgs, type QueryFindManyCredentialRequestArgs, type QueryFindManyCredentialRequestLocalesArgs, type QueryFindManyCredentialRequestMetaArgs, type QueryFindManyCredentialRequestMetaDatakeeperArgs, type QueryFindManyCredentialRequestMetaOid4VcmdocArgs, type QueryFindManyCredentialRequestMetaOid4VcsdjwtArgs, type QueryFindManyCredentialRequestMetaYiviArgs, type QueryFindManyCredentialRequestMetaYotiArgs, type QueryFindManyCredentialRequestStateArgs, type QueryFindManyCredentialRequestStateLocalesArgs, type QueryFindManyCredentialRequestWorkflowArgs, type QueryFindManyCredentialsArgs, type QueryFindManyDisclosureActivitiesArgs, type QueryFindManyDisclosureAttributesArgs, type QueryFindManyDisclosureBrandsArgs, type QueryFindManyDisclosureCredentialsArgs, type QueryFindManyDisclosureDomainsArgs, type QueryFindManyDisclosureGroupsArgs, type QueryFindManyDisclosureLabelsArgs, type QueryFindManyDisclosureMappingsArgs, type QueryFindManyDisclosureProviderConfigurationNlWalletsArgs, type QueryFindManyDisclosureProviderConfigurationsArgs, type QueryFindManyDisclosureProvidersArgs, type QueryFindManyDisclosureSecretsArgs, type QueryFindManyDisclosuresArgs, type QueryFindManyIssuanceActivitiesArgs, type QueryFindManyIssuanceAttributesArgs, type QueryFindManyIssuanceBrandsArgs, type QueryFindManyIssuanceCredentialMetaArgs, type QueryFindManyIssuanceCredentialMetaDatakeeperArgs, type QueryFindManyIssuanceCredentialMetaOid4vcArgs, type QueryFindManyIssuanceCredentialMetaYiviArgs, type QueryFindManyIssuanceCredentialsArgs, type QueryFindManyIssuanceDomainsArgs, type QueryFindManyIssuanceLabelsArgs, type QueryFindManyIssuanceMappingsArgs, type QueryFindManyIssuanceProviderConfigurationNlWalletsArgs, type QueryFindManyIssuanceProviderConfigurationsArgs, type QueryFindManyIssuanceProvidersArgs, type QueryFindManyIssuanceSecretsArgs, type QueryFindManyIssuancesArgs, type QueryFindManyIssuerLabelsArgs, type QueryFindManyIssuerLocalesArgs, type QueryFindManyIssuerMetaArgs, type QueryFindManyIssuerMetaDatakeeperArgs, type QueryFindManyIssuerMetaMdocArgs, type QueryFindManyIssuerMetaOid4VcMdocKeyProfileArgs, type QueryFindManyIssuerMetaOid4VcSdJwtKeyProfileArgs, type QueryFindManyIssuerMetaOid4VcmdocArgs, type QueryFindManyIssuerMetaOid4VcsdjwtArgs, type QueryFindManyIssuerMetaYiviArgs, type QueryFindManyIssuersArgs, type QueryFindManyLabelsArgs, type QueryFindManyLocaleConfigsArgs, type QueryFindManyMaintenancesArgs, type QueryFindManyMappingIssuanceAttributesArgs, type QueryFindManyMappingIssuanceClaimsArgs, type QueryFindManyMappingIssuanceLinksArgs, type QueryFindManyMappingIssuancesArgs, type QueryFindManyMappingVerificationAttributesArgs, type QueryFindManyMappingVerificationClaimsArgs, type QueryFindManyMappingVerificationLinksArgs, type QueryFindManyMappingVerificationsArgs, type QueryFindManyOAuthProvidersArgs, type QueryFindManyOrganizationAddressesArgs, type QueryFindManyOrganizationAlertDeprecationsArgs, type QueryFindManyOrganizationAlertsArgs, type QueryFindManyOrganizationAppArgs, type QueryFindManyOrganizationAppMetaArgs, type QueryFindManyOrganizationAppMetaDatakeeperArgs, type QueryFindManyOrganizationAppMetaKiwaArgs, type QueryFindManyOrganizationAppMetaOid4vcArgs, type QueryFindManyOrganizationAppMetaYotiArgs, type QueryFindManyOrganizationAppPrerequisiteArgs, type QueryFindManyOrganizationAppPrerequisiteWorkflowArgs, type QueryFindManyOrganizationBrandLabelsArgs, type QueryFindManyOrganizationBrandsArgs, type QueryFindManyOrganizationClientsArgs, type QueryFindManyOrganizationDomainLabelsArgs, type QueryFindManyOrganizationDomainOAuthProvidersArgs, type QueryFindManyOrganizationDomainValidationsArgs, type QueryFindManyOrganizationDomainsArgs, type QueryFindManyOrganizationNotificationEventsArgs, type QueryFindManyOrganizationNotificationsArgs, type QueryFindManyOrganizationQuotasArgs, type QueryFindManyOrganizationSecretsArgs, type QueryFindManyOrganizationUsersArgs, type QueryFindManyOrganizationsArgs, type QueryFindManyOrganizationsWithStudioPlanArgs, type QueryFindManyPaymentProviderEventsArgs, type QueryFindManyPaymentProviderInvoicesArgs, type QueryFindManyPaymentProviderMethodsArgs, type QueryFindManyPaymentProviderOrganizationsArgs, type QueryFindManyPaymentProvidersArgs, type QueryFindManyPricingCatalogsArgs, type QueryFindManyPricingConfigurationAppsArgs, type QueryFindManyPricingConfigurationOrganizationsArgs, type QueryFindManyPricingConfigurationStudioPlansArgs, type QueryFindManyPricingGroupAssignmentsArgs, type QueryFindManyPricingGroupsArgs, type QueryFindManyPricingRuleConstraintsArgs, type QueryFindManyPricingRuleTargetsArgs, type QueryFindManyPricingRulesArgs, type QueryFindManyProviderAppMetaArgs, type QueryFindManyProviderAppMetaOid4VcArgs, type QueryFindManyProviderAppsArgs, type QueryFindManyProviderLabelsArgs, type QueryFindManyProviderLocalesArgs, type QueryFindManyProvidersArgs, type QueryFindManyProvidersForOrganizationArgs, type QueryFindManySchemeLabelsArgs, type QueryFindManySchemeLocalesArgs, type QueryFindManySchemesArgs, type QueryFindManyScopeClaimsArgs, type QueryFindManyScopeLocalesArgs, type QueryFindManyScopeResourcesArgs, type QueryFindManyScopesArgs, type QueryFindManySignatureActivitiesArgs, type QueryFindManySignatureAttributesArgs, type QueryFindManySignatureBrandsArgs, type QueryFindManySignatureCredentialsArgs, type QueryFindManySignatureDomainsArgs, type QueryFindManySignatureGroupsArgs, type QueryFindManySignatureLabelsArgs, type QueryFindManySignatureMappingsArgs, type QueryFindManySignatureProviderConfigurationNlWalletsArgs, type QueryFindManySignatureProviderConfigurationsArgs, type QueryFindManySignatureProvidersArgs, type QueryFindManySignatureSecretsArgs, type QueryFindManySignaturesArgs, type QueryFindManyStudioPlanControlOverridesArgs, type QueryFindManyStudioPlanControlsArgs, type QueryFindManyStudioPlanIntervalsArgs, type QueryFindManyStudioPlanOrganizationsArgs, type QueryFindManyStudioPlansArgs, type QueryFindManyUserInvitationsArgs, type QueryFindManyUsersArgs, type QueryFindMappingIssuanceArgs, type QueryFindMappingIssuanceAttributeArgs, type QueryFindMappingIssuanceClaimArgs, type QueryFindMappingIssuanceLinkArgs, type QueryFindMappingVerificationArgs, type QueryFindMappingVerificationAttributeArgs, type QueryFindMappingVerificationClaimArgs, type QueryFindMappingVerificationLinkArgs, type QueryFindOAuthMethodsByOrganizationDomainArgs, type QueryFindOAuthProviderArgs, type QueryFindOrganizationAddressArgs, type QueryFindOrganizationAlertArgs, type QueryFindOrganizationAlertDeprecationArgs, type QueryFindOrganizationAppArgs, type QueryFindOrganizationAppMetaArgs, type QueryFindOrganizationAppMetaDatakeeperArgs, type QueryFindOrganizationAppMetaKiwaArgs, type QueryFindOrganizationAppMetaOid4vcArgs, type QueryFindOrganizationAppMetaYotiArgs, type QueryFindOrganizationAppPrerequisiteArgs, type QueryFindOrganizationAppPrerequisiteWorkflowArgs, type QueryFindOrganizationArgs, type QueryFindOrganizationBrandArgs, type QueryFindOrganizationBrandLabelArgs, type QueryFindOrganizationClientArgs, type QueryFindOrganizationDomainArgs, type QueryFindOrganizationDomainLabelArgs, type QueryFindOrganizationDomainOAuthProviderArgs, type QueryFindOrganizationDomainValidationArgs, type QueryFindOrganizationNotificationArgs, type QueryFindOrganizationNotificationEventArgs, type QueryFindOrganizationQuotaArgs, type QueryFindOrganizationSecretArgs, type QueryFindOrganizationUserArgs, type QueryFindPaymentProviderArgs, type QueryFindPaymentProviderEventArgs, type QueryFindPaymentProviderInvoiceArgs, type QueryFindPaymentProviderMethodArgs, type QueryFindPaymentProviderOrganizationArgs, type QueryFindPricingCatalogArgs, type QueryFindPricingConfigurationAppArgs, type QueryFindPricingConfigurationOrganizationArgs, type QueryFindPricingConfigurationStudioPlanArgs, type QueryFindPricingGroupArgs, type QueryFindPricingGroupAssignmentArgs, type QueryFindPricingRuleArgs, type QueryFindPricingRuleConstraintArgs, type QueryFindPricingRuleTargetArgs, type QueryFindProviderAppArgs, type QueryFindProviderAppMetaArgs, type QueryFindProviderAppMetaOid4VcArgs, type QueryFindProviderArgs, type QueryFindProviderLabelArgs, type QueryFindProviderLocaleArgs, type QueryFindSchemeArgs, type QueryFindSchemeLabelArgs, type QueryFindSchemeLocaleArgs, type QueryFindScopeArgs, type QueryFindScopeClaimArgs, type QueryFindScopeLocaleArgs, type QueryFindScopeResourceArgs, type QueryFindSignatureActivityArgs, type QueryFindSignatureArgs, type QueryFindSignatureAttributeArgs, type QueryFindSignatureBrandArgs, type QueryFindSignatureCredentialArgs, type QueryFindSignatureDomainArgs, type QueryFindSignatureGroupArgs, type QueryFindSignatureLabelArgs, type QueryFindSignatureMappingArgs, type QueryFindSignatureProviderArgs, type QueryFindSignatureProviderConfigurationArgs, type QueryFindSignatureProviderConfigurationNlWalletArgs, type QueryFindSignatureSecretArgs, type QueryFindStudioPlanArgs, type QueryFindStudioPlanControlArgs, type QueryFindStudioPlanControlOverrideArgs, type QueryFindStudioPlanIntervalArgs, type QueryFindStudioPlanOrganizationArgs, type QueryFindUserArgs, type QueryFindUserInvitationArgs, type QueryGetPaymentProviderInvoiceReceiptArgs, type QueryJsonSchemaArgs, type RegisterByOpenIdTokenInput, type RegisterByPasswordInput, type RenewAccessTokenInput, type Scalars, type Scheme, SchemeCategoryType, type SchemeConnection, type SchemeEdge, type SchemeEntity, type SchemeEntityDeep, SchemeFilteringField, type SchemeIssuersArgs, type SchemeLabel, type SchemeLabelConnection, type SchemeLabelEdge, SchemeLabelFilteringField, SchemeLabelSortEnum, type SchemeLabelSortInput, type SchemeLocale, type SchemeLocaleArgs, type SchemeLocaleConnection, type SchemeLocaleEdge, SchemeLocaleFilteringField, SchemeLocaleSortEnum, type SchemeLocaleSortInput, SchemeSortEnum, type SchemeSortInput, SchemeType, type Scope, ScopeCategoryType, type ScopeClaim, type ScopeClaimConnection, type ScopeClaimEdge, ScopeClaimFilteringField, ScopeClaimSortEnum, type ScopeClaimSortInput, type ScopeClaimsArgs, type ScopeConnection, type ScopeEdge, ScopeFilteringField, type ScopeLocale, type ScopeLocaleArgs, type ScopeLocaleConnection, type ScopeLocaleEdge, ScopeLocaleFilteringField, ScopeLocaleSortEnum, type ScopeLocaleSortInput, type ScopeResource, type ScopeResourceConnection, type ScopeResourceEdge, ScopeResourceFilteringField, ScopeResourceSortEnum, type ScopeResourceSortInput, type ScopeResourcesArgs, ScopeSortEnum, type ScopeSortInput, type SetupBillingMethodInput, type SetupBillingMethodOutput, type Signature, SignatureAction, type SignatureActivity, type SignatureActivityConnection, type SignatureActivityEdge, SignatureActivityFilteringField, SignatureActivitySortEnum, type SignatureActivitySortInput, type SignatureAttribute, type SignatureAttributeConnection, type SignatureAttributeEdge, SignatureAttributeFilteringField, SignatureAttributeSortEnum, type SignatureAttributeSortInput, type SignatureBrand, type SignatureBrandConnection, type SignatureBrandEdge, SignatureBrandFilteringField, SignatureBrandSortEnum, type SignatureBrandSortInput, type SignatureConnection, type SignatureCredential, type SignatureCredentialConnection, type SignatureCredentialEdge, SignatureCredentialFilteringField, type SignatureCredentialSignatureAttributesArgs, SignatureCredentialSortEnum, type SignatureCredentialSortInput, type SignatureDomain, type SignatureDomainConnection, type SignatureDomainEdge, SignatureDomainFilteringField, SignatureDomainSortEnum, type SignatureDomainSortInput, type SignatureEdge, SignatureFilteringField, type SignatureGroup, type SignatureGroupConnection, type SignatureGroupEdge, SignatureGroupFilteringField, type SignatureGroupSignatureCredentialsArgs, SignatureGroupSortEnum, type SignatureGroupSortInput, type SignatureLabel, type SignatureLabelConnection, type SignatureLabelEdge, SignatureLabelFilteringField, SignatureLabelSortEnum, type SignatureLabelSortInput, type SignatureMapping, type SignatureMappingConnection, type SignatureMappingEdge, SignatureMappingFilteringField, SignatureMappingSortEnum, type SignatureMappingSortInput, type SignatureNestedFilteringSignatureBrandField, type SignatureNestedFilteringSignatureLabelField, type SignatureProvider, type SignatureProviderConfiguration, type SignatureProviderConfigurationConnection, type SignatureProviderConfigurationEdge, SignatureProviderConfigurationFilteringField, type SignatureProviderConfigurationNlWallet, type SignatureProviderConfigurationNlWalletConnection, type SignatureProviderConfigurationNlWalletEdge, SignatureProviderConfigurationNlWalletFilteringField, SignatureProviderConfigurationNlWalletSortEnum, type SignatureProviderConfigurationNlWalletSortInput, SignatureProviderConfigurationSortEnum, type SignatureProviderConfigurationSortInput, type SignatureProviderConnection, type SignatureProviderEdge, SignatureProviderFilteringField, type SignatureProviderSignatureGroupsArgs, SignatureProviderSortEnum, type SignatureProviderSortInput, type SignatureSecret, type SignatureSecretConnection, type SignatureSecretEdge, SignatureSecretFilteringField, SignatureSecretSortEnum, type SignatureSecretSortInput, type SignatureSignatureBrandsArgs, type SignatureSignatureDomainsArgs, type SignatureSignatureLabelsArgs, type SignatureSignatureMappingsArgs, type SignatureSignatureProvidersArgs, type SignatureSignatureSecretsArgs, SignatureSortEnum, type SignatureSortInput, SignatureState, State, type StudioControlCompact, type StudioPlan, StudioPlanAction, type StudioPlanConnection, type StudioPlanControl, type StudioPlanControlArgs, type StudioPlanControlConnection, type StudioPlanControlEdge, StudioPlanControlFilteringField, type StudioPlanControlOverride, type StudioPlanControlOverrideConnection, type StudioPlanControlOverrideEdge, StudioPlanControlOverrideFilteringField, StudioPlanControlOverrideSortEnum, type StudioPlanControlOverrideSortInput, StudioPlanControlSortEnum, type StudioPlanControlSortInput, type StudioPlanEdge, StudioPlanFilteringField, type StudioPlanInterval, type StudioPlanIntervalConnection, type StudioPlanIntervalEdge, StudioPlanIntervalFilteringField, StudioPlanIntervalSortEnum, type StudioPlanIntervalSortInput, type StudioPlanOrganization, type StudioPlanOrganizationConnection, type StudioPlanOrganizationEdge, StudioPlanOrganizationFilteringField, StudioPlanOrganizationSortEnum, type StudioPlanOrganizationSortInput, StudioPlanSortEnum, type StudioPlanSortInput, StudioPlanState, type StudioPlanStudioPlanControlsArgs, type StudioPlanStudioPlanIntervalsArgs, type StudioPlanStudioPlanOrganizationsArgs, type TransitionOrganizationTypeInput, UnknownError, type UpdateAppInput, type UpdateAppLocaleInput, type UpdateAppPrerequisiteInput, type UpdateAppPrerequisiteLocaleInput, type UpdateAppPrerequisiteStateInput, type UpdateAppPrerequisiteStateLocaleInput, type UpdateAttributeInput, type UpdateAttributeLocaleInput, type UpdateAttributeMetaDatakeeperInput, type UpdateAttributeMetaDigidentityInput, type UpdateAttributeMetaMdocInput, type UpdateAttributeMetaNectInput, type UpdateAttributeMetaNlWalletInput, type UpdateAttributeMetaOid4VcmdocInput, type UpdateAttributeMetaOid4VcsdjwtInput, type UpdateAttributeMetaReadIdInput, type UpdateAttributeMetaTruidInput, type UpdateAttributeMetaYiviInput, type UpdateAttributeMetaYotiInput, type UpdateAttributeRequestInput, type UpdateAttributeRequestLocaleInput, type UpdateAttributeRequestMetaDatakeeperInput, type UpdateAttributeRequestMetaOid4VcmdocInput, type UpdateAttributeRequestMetaOid4VcsdjwtInput, type UpdateAttributeRequestMetaYiviInput, type UpdateAttributeRequestMetaYotiInput, type UpdateAuthenticationBrandInput, type UpdateAuthenticationDomainInput, type UpdateAuthenticationInput, type UpdateAuthenticationProviderConfigurationNlWalletInput, type UpdateAuthenticationProviderInput, type UpdateBillingMethodInput, type UpdateBillingPlanInput, type UpdateBillingWalletInput, type UpdateCredentialInput, type UpdateCredentialLocaleInput, type UpdateCredentialMetaDatakeeperInput, type UpdateCredentialMetaDigidentityInput, type UpdateCredentialMetaMdocInput, type UpdateCredentialMetaNectInput, type UpdateCredentialMetaNlWalletInput, type UpdateCredentialMetaOid4VcmdocInput, type UpdateCredentialMetaOid4VcsdjwtInput, type UpdateCredentialMetaReadIdInput, type UpdateCredentialMetaTruidInput, type UpdateCredentialMetaYiviInput, type UpdateCredentialMetaYotiInput, type UpdateCredentialRequestInput, type UpdateCredentialRequestLocaleInput, type UpdateCredentialRequestMetaDatakeeperInput, type UpdateCredentialRequestMetaOid4VcmdocInput, type UpdateCredentialRequestMetaOid4VcsdjwtInput, type UpdateCredentialRequestMetaYiviInput, type UpdateCredentialRequestMetaYotiInput, type UpdateCredentialRequestStateInput, type UpdateCredentialRequestStateLocaleInput, type UpdateDisclosureBrandInput, type UpdateDisclosureDomainInput, type UpdateDisclosureGroupInput, type UpdateDisclosureInput, type UpdateDisclosureProviderConfigurationNlWalletInput, type UpdateDisclosureProviderInput, type UpdateIssuanceBrandInput, type UpdateIssuanceCredentialMetaDatakeeperInput, type UpdateIssuanceCredentialMetaOid4vcInput, type UpdateIssuanceCredentialMetaYiviInput, type UpdateIssuanceDomainInput, type UpdateIssuanceInput, type UpdateIssuanceProviderConfigurationNlWalletInput, type UpdateIssuanceProviderInput, type UpdateIssuerInput, type UpdateIssuerLocaleInput, type UpdateIssuerMetaDatakeeperInput, type UpdateIssuerMetaMdocInput, type UpdateIssuerMetaOid4VcMdocKeyProfileInput, type UpdateIssuerMetaOid4VcSdJwtKeyProfileInput, type UpdateIssuerMetaOid4VcmdocInput, type UpdateIssuerMetaOid4VcsdjwtInput, type UpdateIssuerMetaYiviInput, type UpdateLabelInput, type UpdateLocaleConfigInput, type UpdateMaintenanceInput, type UpdateMappingIssuanceAttributeInput, type UpdateMappingIssuanceClaimInput, type UpdateMappingIssuanceInput, type UpdateMappingVerificationAttributeInput, type UpdateMappingVerificationClaimInput, type UpdateMappingVerificationInput, type UpdateMappingVerificationLinkInput, type UpdateOAuthProviderInput, type UpdateOrganizationAddressInput, type UpdateOrganizationAlertDeprecationInput, type UpdateOrganizationAlertInput, type UpdateOrganizationAppMetaDatakeeperInput, type UpdateOrganizationAppMetaKiwaInput, type UpdateOrganizationAppMetaOid4vcInput, type UpdateOrganizationAppMetaYotiInput, type UpdateOrganizationBrandInput, type UpdateOrganizationClientInput, type UpdateOrganizationDomainInput, type UpdateOrganizationInput, type UpdateOrganizationNotificationInput, type UpdateOrganizationQuotaInput, type UpdateOrganizationSecretInput, type UpdateOrganizationUserInput, type UpdatePasswordUserInput, type UpdatePricingCatalogInput, type UpdatePricingConfigurationAppInput, type UpdatePricingConfigurationOrganizationInput, type UpdatePricingConfigurationStudioPlanInput, type UpdatePricingGroupInput, type UpdatePricingRuleConstraintInput, type UpdatePricingRuleInput, type UpdatePricingRuleTargetInput, type UpdateProviderAppMetaOid4VcInput, type UpdateProviderInput, type UpdateProviderLocaleInput, type UpdateSchemeInput, type UpdateSchemeLocaleInput, type UpdateScopeClaimInput, type UpdateScopeInput, type UpdateScopeLocaleInput, type UpdateScopeResourceInput, type UpdateSignatureBrandInput, type UpdateSignatureDomainInput, type UpdateSignatureGroupInput, type UpdateSignatureInput, type UpdateSignatureProviderConfigurationNlWalletInput, type UpdateSignatureProviderInput, type UpdateStudioPlanControlInput, type UpdateStudioPlanControlOverrideInput, type UpdateStudioPlanInput, type UpdateStudioPlanIntervalInput, type UpdateUserInput, type UpdateUserInvitationInput, type UseMappingVerificationAttributeInput, type UseMappingVerificationClaimInput, type UseMappingVerificationInput, type UseMappingVerificationLinkInput, type UseUserResetInput, type User, type UserConnection, type UserEdge, UserFilteringField, type UserInvitation, type UserInvitationConnection, type UserInvitationEdge, UserInvitationFilteringField, UserInvitationSortEnum, type UserInvitationSortInput, UserInvitationState, type UserOrganizationUsersArgs, UserSortEnum, type UserSortInput, type UserToken, type ValidateUserInvitationInput, type ValidateUserInvitationTokenInput, type ValidateUserResetInput, assert, assertArray, assertBoolean, assertDate, assertFunction, assertJsonValue, assertNumber, assertObject, assertString, assertUUID, assertUrlString, createVeridGraphQLClient, getAttribute, getAttributes, getAttributesWithHierarchy, getCredential, getCredentials, getIssuer, getIssuers, getProvider, getProviders, getScheme, getSchemes };
|