@ver-id/graphql-client 0.8.2 → 0.9.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 +1223 -1134
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +11143 -7124
- package/dist/index.d.ts +11143 -7124
- package/dist/index.js +1103 -1030
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Observable, InMemoryCache, ApolloClient, ApolloLink } from '@apollo/client';
|
|
2
|
-
import {
|
|
2
|
+
import { ApolloLink as ApolloLink$1, Observable as Observable$1, HttpLink } from '@apollo/client/core';
|
|
3
3
|
import { ErrorLink } from '@apollo/client/link/error';
|
|
4
4
|
import { CombinedGraphQLErrors } from '@apollo/client/errors';
|
|
5
5
|
|
|
@@ -202,6 +202,17 @@ function concat(...buffers) {
|
|
|
202
202
|
}
|
|
203
203
|
return buf2;
|
|
204
204
|
}
|
|
205
|
+
function encode(string) {
|
|
206
|
+
const bytes = new Uint8Array(string.length);
|
|
207
|
+
for (let i = 0; i < string.length; i++) {
|
|
208
|
+
const code = string.charCodeAt(i);
|
|
209
|
+
if (code > 127) {
|
|
210
|
+
throw new TypeError("non-ASCII string encountered in encode()");
|
|
211
|
+
}
|
|
212
|
+
bytes[i] = code;
|
|
213
|
+
}
|
|
214
|
+
return bytes;
|
|
215
|
+
}
|
|
205
216
|
|
|
206
217
|
// ../../node_modules/jose/dist/webapi/lib/base64.js
|
|
207
218
|
function decodeBase64(encoded) {
|
|
@@ -227,7 +238,7 @@ function decode(input) {
|
|
|
227
238
|
if (encoded instanceof Uint8Array) {
|
|
228
239
|
encoded = decoder.decode(encoded);
|
|
229
240
|
}
|
|
230
|
-
encoded = encoded.replace(/-/g, "+").replace(/_/g, "/")
|
|
241
|
+
encoded = encoded.replace(/-/g, "+").replace(/_/g, "/");
|
|
231
242
|
try {
|
|
232
243
|
return decodeBase64(encoded);
|
|
233
244
|
} catch {
|
|
@@ -235,102 +246,17 @@ function decode(input) {
|
|
|
235
246
|
}
|
|
236
247
|
}
|
|
237
248
|
|
|
238
|
-
// ../../node_modules/jose/dist/webapi/util/errors.js
|
|
239
|
-
var JOSEError = class extends Error {
|
|
240
|
-
static code = "ERR_JOSE_GENERIC";
|
|
241
|
-
code = "ERR_JOSE_GENERIC";
|
|
242
|
-
constructor(message2, options) {
|
|
243
|
-
super(message2, options);
|
|
244
|
-
this.name = this.constructor.name;
|
|
245
|
-
Error.captureStackTrace?.(this, this.constructor);
|
|
246
|
-
}
|
|
247
|
-
};
|
|
248
|
-
var JWTClaimValidationFailed = class extends JOSEError {
|
|
249
|
-
static code = "ERR_JWT_CLAIM_VALIDATION_FAILED";
|
|
250
|
-
code = "ERR_JWT_CLAIM_VALIDATION_FAILED";
|
|
251
|
-
claim;
|
|
252
|
-
reason;
|
|
253
|
-
payload;
|
|
254
|
-
constructor(message2, payload, claim = "unspecified", reason = "unspecified") {
|
|
255
|
-
super(message2, { cause: { claim, reason, payload } });
|
|
256
|
-
this.claim = claim;
|
|
257
|
-
this.reason = reason;
|
|
258
|
-
this.payload = payload;
|
|
259
|
-
}
|
|
260
|
-
};
|
|
261
|
-
var JWTExpired = class extends JOSEError {
|
|
262
|
-
static code = "ERR_JWT_EXPIRED";
|
|
263
|
-
code = "ERR_JWT_EXPIRED";
|
|
264
|
-
claim;
|
|
265
|
-
reason;
|
|
266
|
-
payload;
|
|
267
|
-
constructor(message2, payload, claim = "unspecified", reason = "unspecified") {
|
|
268
|
-
super(message2, { cause: { claim, reason, payload } });
|
|
269
|
-
this.claim = claim;
|
|
270
|
-
this.reason = reason;
|
|
271
|
-
this.payload = payload;
|
|
272
|
-
}
|
|
273
|
-
};
|
|
274
|
-
var JOSEAlgNotAllowed = class extends JOSEError {
|
|
275
|
-
static code = "ERR_JOSE_ALG_NOT_ALLOWED";
|
|
276
|
-
code = "ERR_JOSE_ALG_NOT_ALLOWED";
|
|
277
|
-
};
|
|
278
|
-
var JOSENotSupported = class extends JOSEError {
|
|
279
|
-
static code = "ERR_JOSE_NOT_SUPPORTED";
|
|
280
|
-
code = "ERR_JOSE_NOT_SUPPORTED";
|
|
281
|
-
};
|
|
282
|
-
var JWSInvalid = class extends JOSEError {
|
|
283
|
-
static code = "ERR_JWS_INVALID";
|
|
284
|
-
code = "ERR_JWS_INVALID";
|
|
285
|
-
};
|
|
286
|
-
var JWTInvalid = class extends JOSEError {
|
|
287
|
-
static code = "ERR_JWT_INVALID";
|
|
288
|
-
code = "ERR_JWT_INVALID";
|
|
289
|
-
};
|
|
290
|
-
var JWKSInvalid = class extends JOSEError {
|
|
291
|
-
static code = "ERR_JWKS_INVALID";
|
|
292
|
-
code = "ERR_JWKS_INVALID";
|
|
293
|
-
};
|
|
294
|
-
var JWKSNoMatchingKey = class extends JOSEError {
|
|
295
|
-
static code = "ERR_JWKS_NO_MATCHING_KEY";
|
|
296
|
-
code = "ERR_JWKS_NO_MATCHING_KEY";
|
|
297
|
-
constructor(message2 = "no applicable key found in the JSON Web Key Set", options) {
|
|
298
|
-
super(message2, options);
|
|
299
|
-
}
|
|
300
|
-
};
|
|
301
|
-
var JWKSMultipleMatchingKeys = class extends JOSEError {
|
|
302
|
-
[Symbol.asyncIterator];
|
|
303
|
-
static code = "ERR_JWKS_MULTIPLE_MATCHING_KEYS";
|
|
304
|
-
code = "ERR_JWKS_MULTIPLE_MATCHING_KEYS";
|
|
305
|
-
constructor(message2 = "multiple matching keys found in the JSON Web Key Set", options) {
|
|
306
|
-
super(message2, options);
|
|
307
|
-
}
|
|
308
|
-
};
|
|
309
|
-
var JWKSTimeout = class extends JOSEError {
|
|
310
|
-
static code = "ERR_JWKS_TIMEOUT";
|
|
311
|
-
code = "ERR_JWKS_TIMEOUT";
|
|
312
|
-
constructor(message2 = "request timed out", options) {
|
|
313
|
-
super(message2, options);
|
|
314
|
-
}
|
|
315
|
-
};
|
|
316
|
-
var JWSSignatureVerificationFailed = class extends JOSEError {
|
|
317
|
-
static code = "ERR_JWS_SIGNATURE_VERIFICATION_FAILED";
|
|
318
|
-
code = "ERR_JWS_SIGNATURE_VERIFICATION_FAILED";
|
|
319
|
-
constructor(message2 = "signature verification failed", options) {
|
|
320
|
-
super(message2, options);
|
|
321
|
-
}
|
|
322
|
-
};
|
|
323
|
-
|
|
324
249
|
// ../../node_modules/jose/dist/webapi/lib/crypto_key.js
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
}
|
|
328
|
-
function isAlgorithm(algorithm, name) {
|
|
329
|
-
return algorithm.name === name;
|
|
330
|
-
}
|
|
250
|
+
var unusable = (name, prop = "algorithm.name") => new TypeError(`CryptoKey does not support this operation, its ${prop} must be ${name}`);
|
|
251
|
+
var isAlgorithm = (algorithm, name) => algorithm.name === name;
|
|
331
252
|
function getHashLength(hash) {
|
|
332
253
|
return parseInt(hash.name.slice(4), 10);
|
|
333
254
|
}
|
|
255
|
+
function checkHashLength(algorithm, expected) {
|
|
256
|
+
const actual = getHashLength(algorithm.hash);
|
|
257
|
+
if (actual !== expected)
|
|
258
|
+
throw unusable(`SHA-${expected}`, "algorithm.hash");
|
|
259
|
+
}
|
|
334
260
|
function getNamedCurve(alg) {
|
|
335
261
|
switch (alg) {
|
|
336
262
|
case "ES256":
|
|
@@ -355,10 +281,7 @@ function checkSigCryptoKey(key, alg, usage) {
|
|
|
355
281
|
case "HS512": {
|
|
356
282
|
if (!isAlgorithm(key.algorithm, "HMAC"))
|
|
357
283
|
throw unusable("HMAC");
|
|
358
|
-
|
|
359
|
-
const actual = getHashLength(key.algorithm.hash);
|
|
360
|
-
if (actual !== expected)
|
|
361
|
-
throw unusable(`SHA-${expected}`, "algorithm.hash");
|
|
284
|
+
checkHashLength(key.algorithm, parseInt(alg.slice(2), 10));
|
|
362
285
|
break;
|
|
363
286
|
}
|
|
364
287
|
case "RS256":
|
|
@@ -366,10 +289,7 @@ function checkSigCryptoKey(key, alg, usage) {
|
|
|
366
289
|
case "RS512": {
|
|
367
290
|
if (!isAlgorithm(key.algorithm, "RSASSA-PKCS1-v1_5"))
|
|
368
291
|
throw unusable("RSASSA-PKCS1-v1_5");
|
|
369
|
-
|
|
370
|
-
const actual = getHashLength(key.algorithm.hash);
|
|
371
|
-
if (actual !== expected)
|
|
372
|
-
throw unusable(`SHA-${expected}`, "algorithm.hash");
|
|
292
|
+
checkHashLength(key.algorithm, parseInt(alg.slice(2), 10));
|
|
373
293
|
break;
|
|
374
294
|
}
|
|
375
295
|
case "PS256":
|
|
@@ -377,10 +297,7 @@ function checkSigCryptoKey(key, alg, usage) {
|
|
|
377
297
|
case "PS512": {
|
|
378
298
|
if (!isAlgorithm(key.algorithm, "RSA-PSS"))
|
|
379
299
|
throw unusable("RSA-PSS");
|
|
380
|
-
|
|
381
|
-
const actual = getHashLength(key.algorithm.hash);
|
|
382
|
-
if (actual !== expected)
|
|
383
|
-
throw unusable(`SHA-${expected}`, "algorithm.hash");
|
|
300
|
+
checkHashLength(key.algorithm, parseInt(alg.slice(2), 10));
|
|
384
301
|
break;
|
|
385
302
|
}
|
|
386
303
|
case "Ed25519":
|
|
@@ -435,26 +352,133 @@ function message(msg, actual, ...types) {
|
|
|
435
352
|
}
|
|
436
353
|
return msg;
|
|
437
354
|
}
|
|
438
|
-
var
|
|
439
|
-
|
|
355
|
+
var invalidKeyInput = (actual, ...types) => message("Key must be ", actual, ...types);
|
|
356
|
+
var withAlg = (alg, actual, ...types) => message(`Key for the ${alg} algorithm must be `, actual, ...types);
|
|
357
|
+
|
|
358
|
+
// ../../node_modules/jose/dist/webapi/util/errors.js
|
|
359
|
+
var JOSEError = class extends Error {
|
|
360
|
+
static code = "ERR_JOSE_GENERIC";
|
|
361
|
+
code = "ERR_JOSE_GENERIC";
|
|
362
|
+
constructor(message2, options) {
|
|
363
|
+
super(message2, options);
|
|
364
|
+
this.name = this.constructor.name;
|
|
365
|
+
Error.captureStackTrace?.(this, this.constructor);
|
|
366
|
+
}
|
|
367
|
+
};
|
|
368
|
+
var JWTClaimValidationFailed = class extends JOSEError {
|
|
369
|
+
static code = "ERR_JWT_CLAIM_VALIDATION_FAILED";
|
|
370
|
+
code = "ERR_JWT_CLAIM_VALIDATION_FAILED";
|
|
371
|
+
claim;
|
|
372
|
+
reason;
|
|
373
|
+
payload;
|
|
374
|
+
constructor(message2, payload, claim = "unspecified", reason = "unspecified") {
|
|
375
|
+
super(message2, { cause: { claim, reason, payload } });
|
|
376
|
+
this.claim = claim;
|
|
377
|
+
this.reason = reason;
|
|
378
|
+
this.payload = payload;
|
|
379
|
+
}
|
|
380
|
+
};
|
|
381
|
+
var JWTExpired = class extends JOSEError {
|
|
382
|
+
static code = "ERR_JWT_EXPIRED";
|
|
383
|
+
code = "ERR_JWT_EXPIRED";
|
|
384
|
+
claim;
|
|
385
|
+
reason;
|
|
386
|
+
payload;
|
|
387
|
+
constructor(message2, payload, claim = "unspecified", reason = "unspecified") {
|
|
388
|
+
super(message2, { cause: { claim, reason, payload } });
|
|
389
|
+
this.claim = claim;
|
|
390
|
+
this.reason = reason;
|
|
391
|
+
this.payload = payload;
|
|
392
|
+
}
|
|
393
|
+
};
|
|
394
|
+
var JOSEAlgNotAllowed = class extends JOSEError {
|
|
395
|
+
static code = "ERR_JOSE_ALG_NOT_ALLOWED";
|
|
396
|
+
code = "ERR_JOSE_ALG_NOT_ALLOWED";
|
|
397
|
+
};
|
|
398
|
+
var JOSENotSupported = class extends JOSEError {
|
|
399
|
+
static code = "ERR_JOSE_NOT_SUPPORTED";
|
|
400
|
+
code = "ERR_JOSE_NOT_SUPPORTED";
|
|
401
|
+
};
|
|
402
|
+
var JWSInvalid = class extends JOSEError {
|
|
403
|
+
static code = "ERR_JWS_INVALID";
|
|
404
|
+
code = "ERR_JWS_INVALID";
|
|
405
|
+
};
|
|
406
|
+
var JWTInvalid = class extends JOSEError {
|
|
407
|
+
static code = "ERR_JWT_INVALID";
|
|
408
|
+
code = "ERR_JWT_INVALID";
|
|
409
|
+
};
|
|
410
|
+
var JWKSInvalid = class extends JOSEError {
|
|
411
|
+
static code = "ERR_JWKS_INVALID";
|
|
412
|
+
code = "ERR_JWKS_INVALID";
|
|
413
|
+
};
|
|
414
|
+
var JWKSNoMatchingKey = class extends JOSEError {
|
|
415
|
+
static code = "ERR_JWKS_NO_MATCHING_KEY";
|
|
416
|
+
code = "ERR_JWKS_NO_MATCHING_KEY";
|
|
417
|
+
constructor(message2 = "no applicable key found in the JSON Web Key Set", options) {
|
|
418
|
+
super(message2, options);
|
|
419
|
+
}
|
|
420
|
+
};
|
|
421
|
+
var JWKSMultipleMatchingKeys = class extends JOSEError {
|
|
422
|
+
[Symbol.asyncIterator];
|
|
423
|
+
static code = "ERR_JWKS_MULTIPLE_MATCHING_KEYS";
|
|
424
|
+
code = "ERR_JWKS_MULTIPLE_MATCHING_KEYS";
|
|
425
|
+
constructor(message2 = "multiple matching keys found in the JSON Web Key Set", options) {
|
|
426
|
+
super(message2, options);
|
|
427
|
+
}
|
|
428
|
+
};
|
|
429
|
+
var JWKSTimeout = class extends JOSEError {
|
|
430
|
+
static code = "ERR_JWKS_TIMEOUT";
|
|
431
|
+
code = "ERR_JWKS_TIMEOUT";
|
|
432
|
+
constructor(message2 = "request timed out", options) {
|
|
433
|
+
super(message2, options);
|
|
434
|
+
}
|
|
435
|
+
};
|
|
436
|
+
var JWSSignatureVerificationFailed = class extends JOSEError {
|
|
437
|
+
static code = "ERR_JWS_SIGNATURE_VERIFICATION_FAILED";
|
|
438
|
+
code = "ERR_JWS_SIGNATURE_VERIFICATION_FAILED";
|
|
439
|
+
constructor(message2 = "signature verification failed", options) {
|
|
440
|
+
super(message2, options);
|
|
441
|
+
}
|
|
440
442
|
};
|
|
441
|
-
function withAlg(alg, actual, ...types) {
|
|
442
|
-
return message(`Key for the ${alg} algorithm must be `, actual, ...types);
|
|
443
|
-
}
|
|
444
443
|
|
|
445
444
|
// ../../node_modules/jose/dist/webapi/lib/is_key_like.js
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
}
|
|
452
|
-
|
|
453
|
-
|
|
445
|
+
var isCryptoKey = (key) => {
|
|
446
|
+
if (key?.[Symbol.toStringTag] === "CryptoKey")
|
|
447
|
+
return true;
|
|
448
|
+
try {
|
|
449
|
+
return key instanceof CryptoKey;
|
|
450
|
+
} catch {
|
|
451
|
+
return false;
|
|
452
|
+
}
|
|
454
453
|
};
|
|
454
|
+
var isKeyObject = (key) => key?.[Symbol.toStringTag] === "KeyObject";
|
|
455
|
+
var isKeyLike = (key) => isCryptoKey(key) || isKeyObject(key);
|
|
456
|
+
|
|
457
|
+
// ../../node_modules/jose/dist/webapi/lib/helpers.js
|
|
458
|
+
function decodeBase64url(value, label, ErrorClass) {
|
|
459
|
+
try {
|
|
460
|
+
return decode(value);
|
|
461
|
+
} catch {
|
|
462
|
+
throw new ErrorClass(`Failed to base64url decode the ${label}`);
|
|
463
|
+
}
|
|
464
|
+
}
|
|
455
465
|
|
|
456
|
-
// ../../node_modules/jose/dist/webapi/lib/
|
|
457
|
-
var
|
|
466
|
+
// ../../node_modules/jose/dist/webapi/lib/type_checks.js
|
|
467
|
+
var isObjectLike = (value) => typeof value === "object" && value !== null;
|
|
468
|
+
function isObject(input) {
|
|
469
|
+
if (!isObjectLike(input) || Object.prototype.toString.call(input) !== "[object Object]") {
|
|
470
|
+
return false;
|
|
471
|
+
}
|
|
472
|
+
if (Object.getPrototypeOf(input) === null) {
|
|
473
|
+
return true;
|
|
474
|
+
}
|
|
475
|
+
let proto = input;
|
|
476
|
+
while (Object.getPrototypeOf(proto) !== null) {
|
|
477
|
+
proto = Object.getPrototypeOf(proto);
|
|
478
|
+
}
|
|
479
|
+
return Object.getPrototypeOf(input) === proto;
|
|
480
|
+
}
|
|
481
|
+
function isDisjoint(...headers) {
|
|
458
482
|
const sources = headers.filter(Boolean);
|
|
459
483
|
if (sources.length === 0 || sources.length === 1) {
|
|
460
484
|
return true;
|
|
@@ -474,37 +498,74 @@ var is_disjoint_default = (...headers) => {
|
|
|
474
498
|
}
|
|
475
499
|
}
|
|
476
500
|
return true;
|
|
477
|
-
};
|
|
478
|
-
|
|
479
|
-
// ../../node_modules/jose/dist/webapi/lib/is_object.js
|
|
480
|
-
function isObjectLike(value) {
|
|
481
|
-
return typeof value === "object" && value !== null;
|
|
482
501
|
}
|
|
483
|
-
var
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
if (Object.getPrototypeOf(input) === null) {
|
|
488
|
-
return true;
|
|
489
|
-
}
|
|
490
|
-
let proto = input;
|
|
491
|
-
while (Object.getPrototypeOf(proto) !== null) {
|
|
492
|
-
proto = Object.getPrototypeOf(proto);
|
|
493
|
-
}
|
|
494
|
-
return Object.getPrototypeOf(input) === proto;
|
|
495
|
-
};
|
|
502
|
+
var isJWK = (key) => isObject(key) && typeof key.kty === "string";
|
|
503
|
+
var isPrivateJWK = (key) => key.kty !== "oct" && (key.kty === "AKP" && typeof key.priv === "string" || typeof key.d === "string");
|
|
504
|
+
var isPublicJWK = (key) => key.kty !== "oct" && key.d === void 0 && key.priv === void 0;
|
|
505
|
+
var isSecretJWK = (key) => key.kty === "oct" && typeof key.k === "string";
|
|
496
506
|
|
|
497
|
-
// ../../node_modules/jose/dist/webapi/lib/
|
|
498
|
-
|
|
507
|
+
// ../../node_modules/jose/dist/webapi/lib/signing.js
|
|
508
|
+
function checkKeyLength(alg, key) {
|
|
499
509
|
if (alg.startsWith("RS") || alg.startsWith("PS")) {
|
|
500
510
|
const { modulusLength } = key.algorithm;
|
|
501
511
|
if (typeof modulusLength !== "number" || modulusLength < 2048) {
|
|
502
512
|
throw new TypeError(`${alg} requires key modulusLength to be 2048 bits or larger`);
|
|
503
513
|
}
|
|
504
514
|
}
|
|
505
|
-
}
|
|
515
|
+
}
|
|
516
|
+
function subtleAlgorithm(alg, algorithm) {
|
|
517
|
+
const hash = `SHA-${alg.slice(-3)}`;
|
|
518
|
+
switch (alg) {
|
|
519
|
+
case "HS256":
|
|
520
|
+
case "HS384":
|
|
521
|
+
case "HS512":
|
|
522
|
+
return { hash, name: "HMAC" };
|
|
523
|
+
case "PS256":
|
|
524
|
+
case "PS384":
|
|
525
|
+
case "PS512":
|
|
526
|
+
return { hash, name: "RSA-PSS", saltLength: parseInt(alg.slice(-3), 10) >> 3 };
|
|
527
|
+
case "RS256":
|
|
528
|
+
case "RS384":
|
|
529
|
+
case "RS512":
|
|
530
|
+
return { hash, name: "RSASSA-PKCS1-v1_5" };
|
|
531
|
+
case "ES256":
|
|
532
|
+
case "ES384":
|
|
533
|
+
case "ES512":
|
|
534
|
+
return { hash, name: "ECDSA", namedCurve: algorithm.namedCurve };
|
|
535
|
+
case "Ed25519":
|
|
536
|
+
case "EdDSA":
|
|
537
|
+
return { name: "Ed25519" };
|
|
538
|
+
case "ML-DSA-44":
|
|
539
|
+
case "ML-DSA-65":
|
|
540
|
+
case "ML-DSA-87":
|
|
541
|
+
return { name: alg };
|
|
542
|
+
default:
|
|
543
|
+
throw new JOSENotSupported(`alg ${alg} is not supported either by JOSE or your javascript runtime`);
|
|
544
|
+
}
|
|
545
|
+
}
|
|
546
|
+
async function getSigKey(alg, key, usage) {
|
|
547
|
+
if (key instanceof Uint8Array) {
|
|
548
|
+
if (!alg.startsWith("HS")) {
|
|
549
|
+
throw new TypeError(invalidKeyInput(key, "CryptoKey", "KeyObject", "JSON Web Key"));
|
|
550
|
+
}
|
|
551
|
+
return crypto.subtle.importKey("raw", key, { hash: `SHA-${alg.slice(-3)}`, name: "HMAC" }, false, [usage]);
|
|
552
|
+
}
|
|
553
|
+
checkSigCryptoKey(key, alg, usage);
|
|
554
|
+
return key;
|
|
555
|
+
}
|
|
556
|
+
async function verify(alg, key, signature, data) {
|
|
557
|
+
const cryptoKey = await getSigKey(alg, key, "verify");
|
|
558
|
+
checkKeyLength(alg, cryptoKey);
|
|
559
|
+
const algorithm = subtleAlgorithm(alg, cryptoKey.algorithm);
|
|
560
|
+
try {
|
|
561
|
+
return await crypto.subtle.verify(algorithm, cryptoKey, signature, data);
|
|
562
|
+
} catch {
|
|
563
|
+
return false;
|
|
564
|
+
}
|
|
565
|
+
}
|
|
506
566
|
|
|
507
567
|
// ../../node_modules/jose/dist/webapi/lib/jwk_to_key.js
|
|
568
|
+
var unsupportedAlg = 'Invalid or unsupported JWK "alg" (Algorithm) Parameter value';
|
|
508
569
|
function subtleMapping(jwk) {
|
|
509
570
|
let algorithm;
|
|
510
571
|
let keyUsages;
|
|
@@ -518,7 +579,7 @@ function subtleMapping(jwk) {
|
|
|
518
579
|
keyUsages = jwk.priv ? ["sign"] : ["verify"];
|
|
519
580
|
break;
|
|
520
581
|
default:
|
|
521
|
-
throw new JOSENotSupported(
|
|
582
|
+
throw new JOSENotSupported(unsupportedAlg);
|
|
522
583
|
}
|
|
523
584
|
break;
|
|
524
585
|
}
|
|
@@ -547,22 +608,19 @@ function subtleMapping(jwk) {
|
|
|
547
608
|
keyUsages = jwk.d ? ["decrypt", "unwrapKey"] : ["encrypt", "wrapKey"];
|
|
548
609
|
break;
|
|
549
610
|
default:
|
|
550
|
-
throw new JOSENotSupported(
|
|
611
|
+
throw new JOSENotSupported(unsupportedAlg);
|
|
551
612
|
}
|
|
552
613
|
break;
|
|
553
614
|
}
|
|
554
615
|
case "EC": {
|
|
555
616
|
switch (jwk.alg) {
|
|
556
617
|
case "ES256":
|
|
557
|
-
algorithm = { name: "ECDSA", namedCurve: "P-256" };
|
|
558
|
-
keyUsages = jwk.d ? ["sign"] : ["verify"];
|
|
559
|
-
break;
|
|
560
618
|
case "ES384":
|
|
561
|
-
algorithm = { name: "ECDSA", namedCurve: "P-384" };
|
|
562
|
-
keyUsages = jwk.d ? ["sign"] : ["verify"];
|
|
563
|
-
break;
|
|
564
619
|
case "ES512":
|
|
565
|
-
algorithm = {
|
|
620
|
+
algorithm = {
|
|
621
|
+
name: "ECDSA",
|
|
622
|
+
namedCurve: { ES256: "P-256", ES384: "P-384", ES512: "P-521" }[jwk.alg]
|
|
623
|
+
};
|
|
566
624
|
keyUsages = jwk.d ? ["sign"] : ["verify"];
|
|
567
625
|
break;
|
|
568
626
|
case "ECDH-ES":
|
|
@@ -573,7 +631,7 @@ function subtleMapping(jwk) {
|
|
|
573
631
|
keyUsages = jwk.d ? ["deriveBits"] : [];
|
|
574
632
|
break;
|
|
575
633
|
default:
|
|
576
|
-
throw new JOSENotSupported(
|
|
634
|
+
throw new JOSENotSupported(unsupportedAlg);
|
|
577
635
|
}
|
|
578
636
|
break;
|
|
579
637
|
}
|
|
@@ -592,7 +650,7 @@ function subtleMapping(jwk) {
|
|
|
592
650
|
keyUsages = jwk.d ? ["deriveBits"] : [];
|
|
593
651
|
break;
|
|
594
652
|
default:
|
|
595
|
-
throw new JOSENotSupported(
|
|
653
|
+
throw new JOSENotSupported(unsupportedAlg);
|
|
596
654
|
}
|
|
597
655
|
break;
|
|
598
656
|
}
|
|
@@ -601,7 +659,7 @@ function subtleMapping(jwk) {
|
|
|
601
659
|
}
|
|
602
660
|
return { algorithm, keyUsages };
|
|
603
661
|
}
|
|
604
|
-
|
|
662
|
+
async function jwkToKey(jwk) {
|
|
605
663
|
if (!jwk.alg) {
|
|
606
664
|
throw new TypeError('"alg" argument is required when "jwk.alg" is not present');
|
|
607
665
|
}
|
|
@@ -612,101 +670,10 @@ var jwk_to_key_default = async (jwk) => {
|
|
|
612
670
|
}
|
|
613
671
|
delete keyData.use;
|
|
614
672
|
return crypto.subtle.importKey("jwk", keyData, algorithm, jwk.ext ?? (jwk.d || jwk.priv ? false : true), jwk.key_ops ?? keyUsages);
|
|
615
|
-
};
|
|
616
|
-
|
|
617
|
-
// ../../node_modules/jose/dist/webapi/key/import.js
|
|
618
|
-
async function importJWK(jwk, alg, options) {
|
|
619
|
-
if (!is_object_default(jwk)) {
|
|
620
|
-
throw new TypeError("JWK must be an object");
|
|
621
|
-
}
|
|
622
|
-
let ext;
|
|
623
|
-
alg ??= jwk.alg;
|
|
624
|
-
ext ??= jwk.ext;
|
|
625
|
-
switch (jwk.kty) {
|
|
626
|
-
case "oct":
|
|
627
|
-
if (typeof jwk.k !== "string" || !jwk.k) {
|
|
628
|
-
throw new TypeError('missing "k" (Key Value) Parameter value');
|
|
629
|
-
}
|
|
630
|
-
return decode(jwk.k);
|
|
631
|
-
case "RSA":
|
|
632
|
-
if ("oth" in jwk && jwk.oth !== void 0) {
|
|
633
|
-
throw new JOSENotSupported('RSA JWK "oth" (Other Primes Info) Parameter value is not supported');
|
|
634
|
-
}
|
|
635
|
-
return jwk_to_key_default({ ...jwk, alg, ext });
|
|
636
|
-
case "AKP": {
|
|
637
|
-
if (typeof jwk.alg !== "string" || !jwk.alg) {
|
|
638
|
-
throw new TypeError('missing "alg" (Algorithm) Parameter value');
|
|
639
|
-
}
|
|
640
|
-
if (alg !== void 0 && alg !== jwk.alg) {
|
|
641
|
-
throw new TypeError("JWK alg and alg option value mismatch");
|
|
642
|
-
}
|
|
643
|
-
return jwk_to_key_default({ ...jwk, ext });
|
|
644
|
-
}
|
|
645
|
-
case "EC":
|
|
646
|
-
case "OKP":
|
|
647
|
-
return jwk_to_key_default({ ...jwk, alg, ext });
|
|
648
|
-
default:
|
|
649
|
-
throw new JOSENotSupported('Unsupported "kty" (Key Type) Parameter value');
|
|
650
|
-
}
|
|
651
|
-
}
|
|
652
|
-
|
|
653
|
-
// ../../node_modules/jose/dist/webapi/lib/validate_crit.js
|
|
654
|
-
var validate_crit_default = (Err, recognizedDefault, recognizedOption, protectedHeader, joseHeader) => {
|
|
655
|
-
if (joseHeader.crit !== void 0 && protectedHeader?.crit === void 0) {
|
|
656
|
-
throw new Err('"crit" (Critical) Header Parameter MUST be integrity protected');
|
|
657
|
-
}
|
|
658
|
-
if (!protectedHeader || protectedHeader.crit === void 0) {
|
|
659
|
-
return /* @__PURE__ */ new Set();
|
|
660
|
-
}
|
|
661
|
-
if (!Array.isArray(protectedHeader.crit) || protectedHeader.crit.length === 0 || protectedHeader.crit.some((input) => typeof input !== "string" || input.length === 0)) {
|
|
662
|
-
throw new Err('"crit" (Critical) Header Parameter MUST be an array of non-empty strings when present');
|
|
663
|
-
}
|
|
664
|
-
let recognized;
|
|
665
|
-
if (recognizedOption !== void 0) {
|
|
666
|
-
recognized = new Map([...Object.entries(recognizedOption), ...recognizedDefault.entries()]);
|
|
667
|
-
} else {
|
|
668
|
-
recognized = recognizedDefault;
|
|
669
|
-
}
|
|
670
|
-
for (const parameter of protectedHeader.crit) {
|
|
671
|
-
if (!recognized.has(parameter)) {
|
|
672
|
-
throw new JOSENotSupported(`Extension Header Parameter "${parameter}" is not recognized`);
|
|
673
|
-
}
|
|
674
|
-
if (joseHeader[parameter] === void 0) {
|
|
675
|
-
throw new Err(`Extension Header Parameter "${parameter}" is missing`);
|
|
676
|
-
}
|
|
677
|
-
if (recognized.get(parameter) && protectedHeader[parameter] === void 0) {
|
|
678
|
-
throw new Err(`Extension Header Parameter "${parameter}" MUST be integrity protected`);
|
|
679
|
-
}
|
|
680
|
-
}
|
|
681
|
-
return new Set(protectedHeader.crit);
|
|
682
|
-
};
|
|
683
|
-
|
|
684
|
-
// ../../node_modules/jose/dist/webapi/lib/validate_algorithms.js
|
|
685
|
-
var validate_algorithms_default = (option, algorithms) => {
|
|
686
|
-
if (algorithms !== void 0 && (!Array.isArray(algorithms) || algorithms.some((s) => typeof s !== "string"))) {
|
|
687
|
-
throw new TypeError(`"${option}" option must be an array of strings`);
|
|
688
|
-
}
|
|
689
|
-
if (!algorithms) {
|
|
690
|
-
return void 0;
|
|
691
|
-
}
|
|
692
|
-
return new Set(algorithms);
|
|
693
|
-
};
|
|
694
|
-
|
|
695
|
-
// ../../node_modules/jose/dist/webapi/lib/is_jwk.js
|
|
696
|
-
function isJWK(key) {
|
|
697
|
-
return is_object_default(key) && typeof key.kty === "string";
|
|
698
|
-
}
|
|
699
|
-
function isPrivateJWK(key) {
|
|
700
|
-
return key.kty !== "oct" && (key.kty === "AKP" && typeof key.priv === "string" || typeof key.d === "string");
|
|
701
|
-
}
|
|
702
|
-
function isPublicJWK(key) {
|
|
703
|
-
return key.kty !== "oct" && typeof key.d === "undefined" && typeof key.priv === "undefined";
|
|
704
|
-
}
|
|
705
|
-
function isSecretJWK(key) {
|
|
706
|
-
return key.kty === "oct" && typeof key.k === "string";
|
|
707
673
|
}
|
|
708
674
|
|
|
709
675
|
// ../../node_modules/jose/dist/webapi/lib/normalize_key.js
|
|
676
|
+
var unusableForAlg = "given KeyObject instance cannot be used for this algorithm";
|
|
710
677
|
var cache;
|
|
711
678
|
var handleJWK = async (key, jwk, alg, freeze = false) => {
|
|
712
679
|
cache ||= /* @__PURE__ */ new WeakMap();
|
|
@@ -714,7 +681,7 @@ var handleJWK = async (key, jwk, alg, freeze = false) => {
|
|
|
714
681
|
if (cached?.[alg]) {
|
|
715
682
|
return cached[alg];
|
|
716
683
|
}
|
|
717
|
-
const cryptoKey = await
|
|
684
|
+
const cryptoKey = await jwkToKey({ ...jwk, alg });
|
|
718
685
|
if (freeze)
|
|
719
686
|
Object.freeze(key);
|
|
720
687
|
if (!cached) {
|
|
@@ -741,13 +708,13 @@ var handleKeyObject = (keyObject, alg) => {
|
|
|
741
708
|
case "ECDH-ES+A256KW":
|
|
742
709
|
break;
|
|
743
710
|
default:
|
|
744
|
-
throw new TypeError(
|
|
711
|
+
throw new TypeError(unusableForAlg);
|
|
745
712
|
}
|
|
746
713
|
cryptoKey = keyObject.toCryptoKey(keyObject.asymmetricKeyType, extractable, isPublic ? [] : ["deriveBits"]);
|
|
747
714
|
}
|
|
748
715
|
if (keyObject.asymmetricKeyType === "ed25519") {
|
|
749
716
|
if (alg !== "EdDSA" && alg !== "Ed25519") {
|
|
750
|
-
throw new TypeError(
|
|
717
|
+
throw new TypeError(unusableForAlg);
|
|
751
718
|
}
|
|
752
719
|
cryptoKey = keyObject.toCryptoKey(keyObject.asymmetricKeyType, extractable, [
|
|
753
720
|
isPublic ? "verify" : "sign"
|
|
@@ -758,7 +725,7 @@ var handleKeyObject = (keyObject, alg) => {
|
|
|
758
725
|
case "ml-dsa-65":
|
|
759
726
|
case "ml-dsa-87": {
|
|
760
727
|
if (alg !== keyObject.asymmetricKeyType.toUpperCase()) {
|
|
761
|
-
throw new TypeError(
|
|
728
|
+
throw new TypeError(unusableForAlg);
|
|
762
729
|
}
|
|
763
730
|
cryptoKey = keyObject.toCryptoKey(keyObject.asymmetricKeyType, extractable, [
|
|
764
731
|
isPublic ? "verify" : "sign"
|
|
@@ -787,7 +754,7 @@ var handleKeyObject = (keyObject, alg) => {
|
|
|
787
754
|
hash = "SHA-512";
|
|
788
755
|
break;
|
|
789
756
|
default:
|
|
790
|
-
throw new TypeError(
|
|
757
|
+
throw new TypeError(unusableForAlg);
|
|
791
758
|
}
|
|
792
759
|
if (alg.startsWith("RSA-OAEP")) {
|
|
793
760
|
return keyObject.toCryptoKey({
|
|
@@ -808,21 +775,10 @@ var handleKeyObject = (keyObject, alg) => {
|
|
|
808
775
|
]);
|
|
809
776
|
const namedCurve = nist.get(keyObject.asymmetricKeyDetails?.namedCurve);
|
|
810
777
|
if (!namedCurve) {
|
|
811
|
-
throw new TypeError(
|
|
778
|
+
throw new TypeError(unusableForAlg);
|
|
812
779
|
}
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
name: "ECDSA",
|
|
816
|
-
namedCurve
|
|
817
|
-
}, extractable, [isPublic ? "verify" : "sign"]);
|
|
818
|
-
}
|
|
819
|
-
if (alg === "ES384" && namedCurve === "P-384") {
|
|
820
|
-
cryptoKey = keyObject.toCryptoKey({
|
|
821
|
-
name: "ECDSA",
|
|
822
|
-
namedCurve
|
|
823
|
-
}, extractable, [isPublic ? "verify" : "sign"]);
|
|
824
|
-
}
|
|
825
|
-
if (alg === "ES512" && namedCurve === "P-521") {
|
|
780
|
+
const expectedCurve = { ES256: "P-256", ES384: "P-384", ES512: "P-521" };
|
|
781
|
+
if (expectedCurve[alg] && namedCurve === expectedCurve[alg]) {
|
|
826
782
|
cryptoKey = keyObject.toCryptoKey({
|
|
827
783
|
name: "ECDSA",
|
|
828
784
|
namedCurve
|
|
@@ -836,7 +792,7 @@ var handleKeyObject = (keyObject, alg) => {
|
|
|
836
792
|
}
|
|
837
793
|
}
|
|
838
794
|
if (!cryptoKey) {
|
|
839
|
-
throw new TypeError(
|
|
795
|
+
throw new TypeError(unusableForAlg);
|
|
840
796
|
}
|
|
841
797
|
if (!cached) {
|
|
842
798
|
cache.set(keyObject, { [alg]: cryptoKey });
|
|
@@ -845,7 +801,7 @@ var handleKeyObject = (keyObject, alg) => {
|
|
|
845
801
|
}
|
|
846
802
|
return cryptoKey;
|
|
847
803
|
};
|
|
848
|
-
|
|
804
|
+
async function normalizeKey(key, alg) {
|
|
849
805
|
if (key instanceof Uint8Array) {
|
|
850
806
|
return key;
|
|
851
807
|
}
|
|
@@ -875,7 +831,85 @@ var normalize_key_default = async (key, alg) => {
|
|
|
875
831
|
return handleJWK(key, key, alg, true);
|
|
876
832
|
}
|
|
877
833
|
throw new Error("unreachable");
|
|
878
|
-
}
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
// ../../node_modules/jose/dist/webapi/key/import.js
|
|
837
|
+
async function importJWK(jwk, alg, options) {
|
|
838
|
+
if (!isObject(jwk)) {
|
|
839
|
+
throw new TypeError("JWK must be an object");
|
|
840
|
+
}
|
|
841
|
+
let ext;
|
|
842
|
+
alg ??= jwk.alg;
|
|
843
|
+
ext ??= jwk.ext;
|
|
844
|
+
switch (jwk.kty) {
|
|
845
|
+
case "oct":
|
|
846
|
+
if (typeof jwk.k !== "string" || !jwk.k) {
|
|
847
|
+
throw new TypeError('missing "k" (Key Value) Parameter value');
|
|
848
|
+
}
|
|
849
|
+
return decode(jwk.k);
|
|
850
|
+
case "RSA":
|
|
851
|
+
if ("oth" in jwk && jwk.oth !== void 0) {
|
|
852
|
+
throw new JOSENotSupported('RSA JWK "oth" (Other Primes Info) Parameter value is not supported');
|
|
853
|
+
}
|
|
854
|
+
return jwkToKey({ ...jwk, alg, ext });
|
|
855
|
+
case "AKP": {
|
|
856
|
+
if (typeof jwk.alg !== "string" || !jwk.alg) {
|
|
857
|
+
throw new TypeError('missing "alg" (Algorithm) Parameter value');
|
|
858
|
+
}
|
|
859
|
+
if (alg !== void 0 && alg !== jwk.alg) {
|
|
860
|
+
throw new TypeError("JWK alg and alg option value mismatch");
|
|
861
|
+
}
|
|
862
|
+
return jwkToKey({ ...jwk, ext });
|
|
863
|
+
}
|
|
864
|
+
case "EC":
|
|
865
|
+
case "OKP":
|
|
866
|
+
return jwkToKey({ ...jwk, alg, ext });
|
|
867
|
+
default:
|
|
868
|
+
throw new JOSENotSupported('Unsupported "kty" (Key Type) Parameter value');
|
|
869
|
+
}
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
// ../../node_modules/jose/dist/webapi/lib/validate_crit.js
|
|
873
|
+
function validateCrit(Err, recognizedDefault, recognizedOption, protectedHeader, joseHeader) {
|
|
874
|
+
if (joseHeader.crit !== void 0 && protectedHeader?.crit === void 0) {
|
|
875
|
+
throw new Err('"crit" (Critical) Header Parameter MUST be integrity protected');
|
|
876
|
+
}
|
|
877
|
+
if (!protectedHeader || protectedHeader.crit === void 0) {
|
|
878
|
+
return /* @__PURE__ */ new Set();
|
|
879
|
+
}
|
|
880
|
+
if (!Array.isArray(protectedHeader.crit) || protectedHeader.crit.length === 0 || protectedHeader.crit.some((input) => typeof input !== "string" || input.length === 0)) {
|
|
881
|
+
throw new Err('"crit" (Critical) Header Parameter MUST be an array of non-empty strings when present');
|
|
882
|
+
}
|
|
883
|
+
let recognized;
|
|
884
|
+
if (recognizedOption !== void 0) {
|
|
885
|
+
recognized = new Map([...Object.entries(recognizedOption), ...recognizedDefault.entries()]);
|
|
886
|
+
} else {
|
|
887
|
+
recognized = recognizedDefault;
|
|
888
|
+
}
|
|
889
|
+
for (const parameter of protectedHeader.crit) {
|
|
890
|
+
if (!recognized.has(parameter)) {
|
|
891
|
+
throw new JOSENotSupported(`Extension Header Parameter "${parameter}" is not recognized`);
|
|
892
|
+
}
|
|
893
|
+
if (joseHeader[parameter] === void 0) {
|
|
894
|
+
throw new Err(`Extension Header Parameter "${parameter}" is missing`);
|
|
895
|
+
}
|
|
896
|
+
if (recognized.get(parameter) && protectedHeader[parameter] === void 0) {
|
|
897
|
+
throw new Err(`Extension Header Parameter "${parameter}" MUST be integrity protected`);
|
|
898
|
+
}
|
|
899
|
+
}
|
|
900
|
+
return new Set(protectedHeader.crit);
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
// ../../node_modules/jose/dist/webapi/lib/validate_algorithms.js
|
|
904
|
+
function validateAlgorithms(option, algorithms) {
|
|
905
|
+
if (algorithms !== void 0 && (!Array.isArray(algorithms) || algorithms.some((s) => typeof s !== "string"))) {
|
|
906
|
+
throw new TypeError(`"${option}" option must be an array of strings`);
|
|
907
|
+
}
|
|
908
|
+
if (!algorithms) {
|
|
909
|
+
return void 0;
|
|
910
|
+
}
|
|
911
|
+
return new Set(algorithms);
|
|
912
|
+
}
|
|
879
913
|
|
|
880
914
|
// ../../node_modules/jose/dist/webapi/lib/check_key_type.js
|
|
881
915
|
var tag = (key) => key?.[Symbol.toStringTag];
|
|
@@ -938,7 +972,7 @@ var symmetricTypeCheck = (alg, key, usage) => {
|
|
|
938
972
|
return;
|
|
939
973
|
throw new TypeError(`JSON Web Key for symmetric algorithms must have JWK "kty" (Key Type) equal to "oct" and the JWK "k" (Key Value) present`);
|
|
940
974
|
}
|
|
941
|
-
if (!
|
|
975
|
+
if (!isKeyLike(key)) {
|
|
942
976
|
throw new TypeError(withAlg(alg, key, "CryptoKey", "KeyObject", "JSON Web Key", "Uint8Array"));
|
|
943
977
|
}
|
|
944
978
|
if (key.type !== "secret") {
|
|
@@ -952,15 +986,15 @@ var asymmetricTypeCheck = (alg, key, usage) => {
|
|
|
952
986
|
case "sign":
|
|
953
987
|
if (isPrivateJWK(key) && jwkMatchesOp(alg, key, usage))
|
|
954
988
|
return;
|
|
955
|
-
throw new TypeError(`JSON Web Key for this operation be a private JWK`);
|
|
989
|
+
throw new TypeError(`JSON Web Key for this operation must be a private JWK`);
|
|
956
990
|
case "encrypt":
|
|
957
991
|
case "verify":
|
|
958
992
|
if (isPublicJWK(key) && jwkMatchesOp(alg, key, usage))
|
|
959
993
|
return;
|
|
960
|
-
throw new TypeError(`JSON Web Key for this operation be a public JWK`);
|
|
994
|
+
throw new TypeError(`JSON Web Key for this operation must be a public JWK`);
|
|
961
995
|
}
|
|
962
996
|
}
|
|
963
|
-
if (!
|
|
997
|
+
if (!isKeyLike(key)) {
|
|
964
998
|
throw new TypeError(withAlg(alg, key, "CryptoKey", "KeyObject", "JSON Web Key"));
|
|
965
999
|
}
|
|
966
1000
|
if (key.type === "secret") {
|
|
@@ -983,74 +1017,23 @@ var asymmetricTypeCheck = (alg, key, usage) => {
|
|
|
983
1017
|
}
|
|
984
1018
|
}
|
|
985
1019
|
};
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
// ../../node_modules/jose/dist/webapi/lib/subtle_dsa.js
|
|
996
|
-
var subtle_dsa_default = (alg, algorithm) => {
|
|
997
|
-
const hash = `SHA-${alg.slice(-3)}`;
|
|
998
|
-
switch (alg) {
|
|
999
|
-
case "HS256":
|
|
1000
|
-
case "HS384":
|
|
1001
|
-
case "HS512":
|
|
1002
|
-
return { hash, name: "HMAC" };
|
|
1003
|
-
case "PS256":
|
|
1004
|
-
case "PS384":
|
|
1005
|
-
case "PS512":
|
|
1006
|
-
return { hash, name: "RSA-PSS", saltLength: parseInt(alg.slice(-3), 10) >> 3 };
|
|
1007
|
-
case "RS256":
|
|
1008
|
-
case "RS384":
|
|
1009
|
-
case "RS512":
|
|
1010
|
-
return { hash, name: "RSASSA-PKCS1-v1_5" };
|
|
1011
|
-
case "ES256":
|
|
1012
|
-
case "ES384":
|
|
1013
|
-
case "ES512":
|
|
1014
|
-
return { hash, name: "ECDSA", namedCurve: algorithm.namedCurve };
|
|
1015
|
-
case "Ed25519":
|
|
1016
|
-
case "EdDSA":
|
|
1017
|
-
return { name: "Ed25519" };
|
|
1018
|
-
case "ML-DSA-44":
|
|
1019
|
-
case "ML-DSA-65":
|
|
1020
|
-
case "ML-DSA-87":
|
|
1021
|
-
return { name: alg };
|
|
1020
|
+
function checkKeyType(alg, key, usage) {
|
|
1021
|
+
switch (alg.substring(0, 2)) {
|
|
1022
|
+
case "A1":
|
|
1023
|
+
case "A2":
|
|
1024
|
+
case "di":
|
|
1025
|
+
case "HS":
|
|
1026
|
+
case "PB":
|
|
1027
|
+
symmetricTypeCheck(alg, key, usage);
|
|
1028
|
+
break;
|
|
1022
1029
|
default:
|
|
1023
|
-
|
|
1024
|
-
}
|
|
1025
|
-
};
|
|
1026
|
-
|
|
1027
|
-
// ../../node_modules/jose/dist/webapi/lib/get_sign_verify_key.js
|
|
1028
|
-
var get_sign_verify_key_default = async (alg, key, usage) => {
|
|
1029
|
-
if (key instanceof Uint8Array) {
|
|
1030
|
-
if (!alg.startsWith("HS")) {
|
|
1031
|
-
throw new TypeError(invalid_key_input_default(key, "CryptoKey", "KeyObject", "JSON Web Key"));
|
|
1032
|
-
}
|
|
1033
|
-
return crypto.subtle.importKey("raw", key, { hash: `SHA-${alg.slice(-3)}`, name: "HMAC" }, false, [usage]);
|
|
1030
|
+
asymmetricTypeCheck(alg, key, usage);
|
|
1034
1031
|
}
|
|
1035
|
-
|
|
1036
|
-
return key;
|
|
1037
|
-
};
|
|
1038
|
-
|
|
1039
|
-
// ../../node_modules/jose/dist/webapi/lib/verify.js
|
|
1040
|
-
var verify_default = async (alg, key, signature, data) => {
|
|
1041
|
-
const cryptoKey = await get_sign_verify_key_default(alg, key, "verify");
|
|
1042
|
-
check_key_length_default(alg, cryptoKey);
|
|
1043
|
-
const algorithm = subtle_dsa_default(alg, cryptoKey.algorithm);
|
|
1044
|
-
try {
|
|
1045
|
-
return await crypto.subtle.verify(algorithm, cryptoKey, signature, data);
|
|
1046
|
-
} catch {
|
|
1047
|
-
return false;
|
|
1048
|
-
}
|
|
1049
|
-
};
|
|
1032
|
+
}
|
|
1050
1033
|
|
|
1051
1034
|
// ../../node_modules/jose/dist/webapi/jws/flattened/verify.js
|
|
1052
1035
|
async function flattenedVerify(jws, key, options) {
|
|
1053
|
-
if (!
|
|
1036
|
+
if (!isObject(jws)) {
|
|
1054
1037
|
throw new JWSInvalid("Flattened JWS must be an object");
|
|
1055
1038
|
}
|
|
1056
1039
|
if (jws.protected === void 0 && jws.header === void 0) {
|
|
@@ -1065,7 +1048,7 @@ async function flattenedVerify(jws, key, options) {
|
|
|
1065
1048
|
if (typeof jws.signature !== "string") {
|
|
1066
1049
|
throw new JWSInvalid("JWS Signature missing or incorrect type");
|
|
1067
1050
|
}
|
|
1068
|
-
if (jws.header !== void 0 && !
|
|
1051
|
+
if (jws.header !== void 0 && !isObject(jws.header)) {
|
|
1069
1052
|
throw new JWSInvalid("JWS Unprotected Header incorrect type");
|
|
1070
1053
|
}
|
|
1071
1054
|
let parsedProt = {};
|
|
@@ -1077,14 +1060,14 @@ async function flattenedVerify(jws, key, options) {
|
|
|
1077
1060
|
throw new JWSInvalid("JWS Protected Header is invalid");
|
|
1078
1061
|
}
|
|
1079
1062
|
}
|
|
1080
|
-
if (!
|
|
1063
|
+
if (!isDisjoint(parsedProt, jws.header)) {
|
|
1081
1064
|
throw new JWSInvalid("JWS Protected and JWS Unprotected Header Parameter names must be disjoint");
|
|
1082
1065
|
}
|
|
1083
1066
|
const joseHeader = {
|
|
1084
1067
|
...parsedProt,
|
|
1085
1068
|
...jws.header
|
|
1086
1069
|
};
|
|
1087
|
-
const extensions =
|
|
1070
|
+
const extensions = validateCrit(JWSInvalid, /* @__PURE__ */ new Map([["b64", true]]), options?.crit, parsedProt, joseHeader);
|
|
1088
1071
|
let b64 = true;
|
|
1089
1072
|
if (extensions.has("b64")) {
|
|
1090
1073
|
b64 = parsedProt.b64;
|
|
@@ -1096,7 +1079,7 @@ async function flattenedVerify(jws, key, options) {
|
|
|
1096
1079
|
if (typeof alg !== "string" || !alg) {
|
|
1097
1080
|
throw new JWSInvalid('JWS "alg" (Algorithm) Header Parameter missing or invalid');
|
|
1098
1081
|
}
|
|
1099
|
-
const algorithms = options &&
|
|
1082
|
+
const algorithms = options && validateAlgorithms("algorithms", options.algorithms);
|
|
1100
1083
|
if (algorithms && !algorithms.has(alg)) {
|
|
1101
1084
|
throw new JOSEAlgNotAllowed('"alg" (Algorithm) Header Parameter value not allowed');
|
|
1102
1085
|
}
|
|
@@ -1112,26 +1095,17 @@ async function flattenedVerify(jws, key, options) {
|
|
|
1112
1095
|
key = await key(parsedProt, jws);
|
|
1113
1096
|
resolvedKey = true;
|
|
1114
1097
|
}
|
|
1115
|
-
|
|
1116
|
-
const data = concat(
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
} catch {
|
|
1121
|
-
throw new JWSInvalid("Failed to base64url decode the signature");
|
|
1122
|
-
}
|
|
1123
|
-
const k = await normalize_key_default(key, alg);
|
|
1124
|
-
const verified = await verify_default(alg, k, signature, data);
|
|
1098
|
+
checkKeyType(alg, key, "verify");
|
|
1099
|
+
const data = concat(jws.protected !== void 0 ? encode(jws.protected) : new Uint8Array(), encode("."), typeof jws.payload === "string" ? b64 ? encode(jws.payload) : encoder.encode(jws.payload) : jws.payload);
|
|
1100
|
+
const signature = decodeBase64url(jws.signature, "signature", JWSInvalid);
|
|
1101
|
+
const k = await normalizeKey(key, alg);
|
|
1102
|
+
const verified = await verify(alg, k, signature, data);
|
|
1125
1103
|
if (!verified) {
|
|
1126
1104
|
throw new JWSSignatureVerificationFailed();
|
|
1127
1105
|
}
|
|
1128
1106
|
let payload;
|
|
1129
1107
|
if (b64) {
|
|
1130
|
-
|
|
1131
|
-
payload = decode(jws.payload);
|
|
1132
|
-
} catch {
|
|
1133
|
-
throw new JWSInvalid("Failed to base64url decode the payload");
|
|
1134
|
-
}
|
|
1108
|
+
payload = decodeBase64url(jws.payload, "payload", JWSInvalid);
|
|
1135
1109
|
} else if (typeof jws.payload === "string") {
|
|
1136
1110
|
payload = encoder.encode(jws.payload);
|
|
1137
1111
|
} else {
|
|
@@ -1170,17 +1144,15 @@ async function compactVerify(jws, key, options) {
|
|
|
1170
1144
|
return result;
|
|
1171
1145
|
}
|
|
1172
1146
|
|
|
1173
|
-
// ../../node_modules/jose/dist/webapi/lib/
|
|
1174
|
-
var
|
|
1175
|
-
|
|
1176
|
-
// ../../node_modules/jose/dist/webapi/lib/secs.js
|
|
1147
|
+
// ../../node_modules/jose/dist/webapi/lib/jwt_claims_set.js
|
|
1148
|
+
var epoch = (date) => Math.floor(date.getTime() / 1e3);
|
|
1177
1149
|
var minute = 60;
|
|
1178
1150
|
var hour = minute * 60;
|
|
1179
1151
|
var day = hour * 24;
|
|
1180
1152
|
var week = day * 7;
|
|
1181
1153
|
var year = day * 365.25;
|
|
1182
1154
|
var REGEX = /^(\+|\-)? ?(\d+|\d+\.\d+) ?(seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)(?: (ago|from now))?$/i;
|
|
1183
|
-
|
|
1155
|
+
function secs(str) {
|
|
1184
1156
|
const matched = REGEX.exec(str);
|
|
1185
1157
|
if (!matched || matched[4] && matched[1]) {
|
|
1186
1158
|
throw new TypeError("Invalid time period format");
|
|
@@ -1228,9 +1200,7 @@ var secs_default = (str) => {
|
|
|
1228
1200
|
return -numericDate;
|
|
1229
1201
|
}
|
|
1230
1202
|
return numericDate;
|
|
1231
|
-
}
|
|
1232
|
-
|
|
1233
|
-
// ../../node_modules/jose/dist/webapi/lib/jwt_claims_set.js
|
|
1203
|
+
}
|
|
1234
1204
|
var normalizeTyp = (value) => {
|
|
1235
1205
|
if (value.includes("/")) {
|
|
1236
1206
|
return value.toLowerCase();
|
|
@@ -1252,7 +1222,7 @@ function validateClaimsSet(protectedHeader, encodedPayload, options = {}) {
|
|
|
1252
1222
|
payload = JSON.parse(decoder.decode(encodedPayload));
|
|
1253
1223
|
} catch {
|
|
1254
1224
|
}
|
|
1255
|
-
if (!
|
|
1225
|
+
if (!isObject(payload)) {
|
|
1256
1226
|
throw new JWTInvalid("JWT Claims Set must be a top-level JSON object");
|
|
1257
1227
|
}
|
|
1258
1228
|
const { typ } = options;
|
|
@@ -1286,7 +1256,7 @@ function validateClaimsSet(protectedHeader, encodedPayload, options = {}) {
|
|
|
1286
1256
|
let tolerance;
|
|
1287
1257
|
switch (typeof options.clockTolerance) {
|
|
1288
1258
|
case "string":
|
|
1289
|
-
tolerance =
|
|
1259
|
+
tolerance = secs(options.clockTolerance);
|
|
1290
1260
|
break;
|
|
1291
1261
|
case "number":
|
|
1292
1262
|
tolerance = options.clockTolerance;
|
|
@@ -1298,7 +1268,7 @@ function validateClaimsSet(protectedHeader, encodedPayload, options = {}) {
|
|
|
1298
1268
|
throw new TypeError("Invalid clockTolerance option type");
|
|
1299
1269
|
}
|
|
1300
1270
|
const { currentDate } = options;
|
|
1301
|
-
const now =
|
|
1271
|
+
const now = epoch(currentDate || /* @__PURE__ */ new Date());
|
|
1302
1272
|
if ((payload.iat !== void 0 || maxTokenAge) && typeof payload.iat !== "number") {
|
|
1303
1273
|
throw new JWTClaimValidationFailed('"iat" claim must be a number', payload, "iat", "invalid");
|
|
1304
1274
|
}
|
|
@@ -1320,7 +1290,7 @@ function validateClaimsSet(protectedHeader, encodedPayload, options = {}) {
|
|
|
1320
1290
|
}
|
|
1321
1291
|
if (maxTokenAge) {
|
|
1322
1292
|
const age = now - payload.iat;
|
|
1323
|
-
const max = typeof maxTokenAge === "number" ? maxTokenAge :
|
|
1293
|
+
const max = typeof maxTokenAge === "number" ? maxTokenAge : secs(maxTokenAge);
|
|
1324
1294
|
if (age - tolerance > max) {
|
|
1325
1295
|
throw new JWTExpired('"iat" claim timestamp check failed (too far in the past)', payload, "iat", "check_failed");
|
|
1326
1296
|
}
|
|
@@ -1365,7 +1335,7 @@ function isJWKSLike(jwks) {
|
|
|
1365
1335
|
return jwks && typeof jwks === "object" && Array.isArray(jwks.keys) && jwks.keys.every(isJWKLike);
|
|
1366
1336
|
}
|
|
1367
1337
|
function isJWKLike(key) {
|
|
1368
|
-
return
|
|
1338
|
+
return isObject(key);
|
|
1369
1339
|
}
|
|
1370
1340
|
var LocalJWKSet = class {
|
|
1371
1341
|
#jwks;
|
|
@@ -1467,10 +1437,10 @@ function isCloudflareWorkers() {
|
|
|
1467
1437
|
var USER_AGENT;
|
|
1468
1438
|
if (typeof navigator === "undefined" || !navigator.userAgent?.startsWith?.("Mozilla/5.0 ")) {
|
|
1469
1439
|
const NAME = "jose";
|
|
1470
|
-
const VERSION = "v6.1
|
|
1440
|
+
const VERSION = "v6.2.1";
|
|
1471
1441
|
USER_AGENT = `${NAME}/${VERSION}`;
|
|
1472
1442
|
}
|
|
1473
|
-
var customFetch = Symbol();
|
|
1443
|
+
var customFetch = /* @__PURE__ */ Symbol();
|
|
1474
1444
|
async function fetchJwks(url, headers, signal2, fetchImpl = fetch) {
|
|
1475
1445
|
const response = await fetchImpl(url, {
|
|
1476
1446
|
method: "GET",
|
|
@@ -1492,7 +1462,7 @@ async function fetchJwks(url, headers, signal2, fetchImpl = fetch) {
|
|
|
1492
1462
|
throw new JOSEError("Failed to parse the JSON Web Key Set HTTP response as JSON");
|
|
1493
1463
|
}
|
|
1494
1464
|
}
|
|
1495
|
-
var jwksCache = Symbol();
|
|
1465
|
+
var jwksCache = /* @__PURE__ */ Symbol();
|
|
1496
1466
|
function isFreshJwksCache(input, cacheMaxAge) {
|
|
1497
1467
|
if (typeof input !== "object" || input === null) {
|
|
1498
1468
|
return false;
|
|
@@ -1500,7 +1470,7 @@ function isFreshJwksCache(input, cacheMaxAge) {
|
|
|
1500
1470
|
if (!("uat" in input) || typeof input.uat !== "number" || Date.now() - input.uat >= cacheMaxAge) {
|
|
1501
1471
|
return false;
|
|
1502
1472
|
}
|
|
1503
|
-
if (!("jwks" in input) || !
|
|
1473
|
+
if (!("jwks" in input) || !isObject(input.jwks) || !Array.isArray(input.jwks.keys) || !Array.prototype.every.call(input.jwks.keys, isObject)) {
|
|
1504
1474
|
return false;
|
|
1505
1475
|
}
|
|
1506
1476
|
return true;
|
|
@@ -1627,7 +1597,7 @@ function createRemoteJWKSet(url, options) {
|
|
|
1627
1597
|
var USER_AGENT2;
|
|
1628
1598
|
if (typeof navigator === "undefined" || !navigator.userAgent?.startsWith?.("Mozilla/5.0 ")) {
|
|
1629
1599
|
const NAME = "oauth4webapi";
|
|
1630
|
-
const VERSION = "v3.8.
|
|
1600
|
+
const VERSION = "v3.8.5";
|
|
1631
1601
|
USER_AGENT2 = `${NAME}/${VERSION}`;
|
|
1632
1602
|
}
|
|
1633
1603
|
function looseInstanceOf(input, expected) {
|
|
@@ -1647,10 +1617,10 @@ function CodedTypeError(message2, code, cause) {
|
|
|
1647
1617
|
Object.assign(err, { code });
|
|
1648
1618
|
return err;
|
|
1649
1619
|
}
|
|
1650
|
-
var clockSkew = Symbol();
|
|
1651
|
-
var clockTolerance = Symbol();
|
|
1652
|
-
var customFetch2 = Symbol();
|
|
1653
|
-
var jweDecrypt = Symbol();
|
|
1620
|
+
var clockSkew = /* @__PURE__ */ Symbol();
|
|
1621
|
+
var clockTolerance = /* @__PURE__ */ Symbol();
|
|
1622
|
+
var customFetch2 = /* @__PURE__ */ Symbol();
|
|
1623
|
+
var jweDecrypt = /* @__PURE__ */ Symbol();
|
|
1654
1624
|
var encoder2 = new TextEncoder();
|
|
1655
1625
|
var decoder2 = new TextDecoder();
|
|
1656
1626
|
function buf(input) {
|
|
@@ -2000,11 +1970,11 @@ var WWWAuthenticateChallengeError = class extends Error {
|
|
|
2000
1970
|
}
|
|
2001
1971
|
};
|
|
2002
1972
|
var tokenMatch = "[a-zA-Z0-9!#$%&\\'\\*\\+\\-\\.\\^_`\\|~]+";
|
|
2003
|
-
var token68Match = "[a-zA-Z0-9\\-\\._\\~\\+\\/]
|
|
2004
|
-
var quotedMatch = '"((?:[^"\\\\]
|
|
1973
|
+
var token68Match = "[a-zA-Z0-9\\-\\._\\~\\+\\/]+={0,2}";
|
|
1974
|
+
var quotedMatch = '"((?:[^"\\\\]|\\\\[\\s\\S])*)"';
|
|
2005
1975
|
var quotedParamMatcher = "(" + tokenMatch + ")\\s*=\\s*" + quotedMatch;
|
|
2006
1976
|
var paramMatcher = "(" + tokenMatch + ")\\s*=\\s*(" + tokenMatch + ")";
|
|
2007
|
-
var schemeRE = new RegExp("^[,\\s]*(" + tokenMatch + ")
|
|
1977
|
+
var schemeRE = new RegExp("^[,\\s]*(" + tokenMatch + ")");
|
|
2008
1978
|
var quotedParamRE = new RegExp("^[,\\s]*" + quotedParamMatcher + "[,\\s]*(.*)");
|
|
2009
1979
|
var unquotedParamRE = new RegExp("^[,\\s]*" + paramMatcher + "[,\\s]*(.*)");
|
|
2010
1980
|
var token68ParamRE = new RegExp("^(" + token68Match + ")(?:$|[,\\s])(.*)");
|
|
@@ -2021,39 +1991,49 @@ function parseWwwAuthenticateChallenges(response) {
|
|
|
2021
1991
|
while (rest) {
|
|
2022
1992
|
let match = rest.match(schemeRE);
|
|
2023
1993
|
const scheme = match?.["1"].toLowerCase();
|
|
2024
|
-
rest = match?.["2"];
|
|
2025
1994
|
if (!scheme) {
|
|
2026
1995
|
return void 0;
|
|
2027
1996
|
}
|
|
1997
|
+
const afterScheme = rest.substring(match[0].length);
|
|
1998
|
+
if (afterScheme && !afterScheme.match(/^[\s,]/)) {
|
|
1999
|
+
return void 0;
|
|
2000
|
+
}
|
|
2001
|
+
const spaceMatch = afterScheme.match(/^\s+(.*)$/);
|
|
2002
|
+
const hasParameters = !!spaceMatch;
|
|
2003
|
+
rest = spaceMatch ? spaceMatch[1] : void 0;
|
|
2028
2004
|
const parameters = {};
|
|
2029
2005
|
let token68;
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2006
|
+
if (hasParameters) {
|
|
2007
|
+
while (rest) {
|
|
2008
|
+
let key;
|
|
2009
|
+
let value;
|
|
2010
|
+
if (match = rest.match(quotedParamRE)) {
|
|
2011
|
+
[, key, value, rest] = match;
|
|
2012
|
+
if (value.includes("\\")) {
|
|
2013
|
+
try {
|
|
2014
|
+
value = JSON.parse(`"${value}"`);
|
|
2015
|
+
} catch {
|
|
2016
|
+
}
|
|
2039
2017
|
}
|
|
2018
|
+
parameters[key.toLowerCase()] = value;
|
|
2019
|
+
continue;
|
|
2040
2020
|
}
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2021
|
+
if (match = rest.match(unquotedParamRE)) {
|
|
2022
|
+
[, key, value, rest] = match;
|
|
2023
|
+
parameters[key.toLowerCase()] = value;
|
|
2024
|
+
continue;
|
|
2025
|
+
}
|
|
2026
|
+
if (match = rest.match(token68ParamRE)) {
|
|
2027
|
+
if (Object.keys(parameters).length) {
|
|
2028
|
+
break;
|
|
2029
|
+
}
|
|
2030
|
+
[, token68, rest] = match;
|
|
2051
2031
|
break;
|
|
2052
2032
|
}
|
|
2053
|
-
|
|
2054
|
-
break;
|
|
2033
|
+
return void 0;
|
|
2055
2034
|
}
|
|
2056
|
-
|
|
2035
|
+
} else {
|
|
2036
|
+
rest = afterScheme || void 0;
|
|
2057
2037
|
}
|
|
2058
2038
|
const challenge = { scheme, parameters };
|
|
2059
2039
|
if (token68) {
|
|
@@ -2233,7 +2213,7 @@ function brand(searchParams) {
|
|
|
2233
2213
|
branded.add(searchParams);
|
|
2234
2214
|
return searchParams;
|
|
2235
2215
|
}
|
|
2236
|
-
var nopkce = Symbol();
|
|
2216
|
+
var nopkce = /* @__PURE__ */ Symbol();
|
|
2237
2217
|
async function authorizationCodeGrantRequest(as, client, clientAuthentication, callbackParameters, redirectUri, codeVerifier, options) {
|
|
2238
2218
|
assertAs(as);
|
|
2239
2219
|
assertClient(client);
|
|
@@ -2450,8 +2430,8 @@ function getURLSearchParameter(parameters, name) {
|
|
|
2450
2430
|
}
|
|
2451
2431
|
return value;
|
|
2452
2432
|
}
|
|
2453
|
-
var skipStateCheck = Symbol();
|
|
2454
|
-
var expectNoState = Symbol();
|
|
2433
|
+
var skipStateCheck = /* @__PURE__ */ Symbol();
|
|
2434
|
+
var expectNoState = /* @__PURE__ */ Symbol();
|
|
2455
2435
|
function validateAuthResponse(as, client, parameters, expectedState) {
|
|
2456
2436
|
assertAs(as);
|
|
2457
2437
|
assertClient(client);
|
|
@@ -2519,8 +2499,8 @@ async function getResponseJsonBody(response, check = assertApplicationJson) {
|
|
|
2519
2499
|
}
|
|
2520
2500
|
return json;
|
|
2521
2501
|
}
|
|
2522
|
-
var _nodiscoverycheck = Symbol();
|
|
2523
|
-
var _expectedIssuer = Symbol();
|
|
2502
|
+
var _nodiscoverycheck = /* @__PURE__ */ Symbol();
|
|
2503
|
+
var _expectedIssuer = /* @__PURE__ */ Symbol();
|
|
2524
2504
|
|
|
2525
2505
|
// ../../libs/core/src/oauth/provider/oauth4webapi.ts
|
|
2526
2506
|
var OAuth4WebApiProvider = class {
|
|
@@ -3243,6 +3223,17 @@ var AttributeFilteringField = /* @__PURE__ */ ((AttributeFilteringField2) => {
|
|
|
3243
3223
|
AttributeFilteringField2["Uuid"] = "uuid";
|
|
3244
3224
|
return AttributeFilteringField2;
|
|
3245
3225
|
})(AttributeFilteringField || {});
|
|
3226
|
+
var AttributeLabelFilteringField = /* @__PURE__ */ ((AttributeLabelFilteringField2) => {
|
|
3227
|
+
AttributeLabelFilteringField2["AttributeUuid"] = "attributeUuid";
|
|
3228
|
+
AttributeLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
3229
|
+
AttributeLabelFilteringField2["Uuid"] = "uuid";
|
|
3230
|
+
return AttributeLabelFilteringField2;
|
|
3231
|
+
})(AttributeLabelFilteringField || {});
|
|
3232
|
+
var AttributeLabelSortEnum = /* @__PURE__ */ ((AttributeLabelSortEnum2) => {
|
|
3233
|
+
AttributeLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
3234
|
+
AttributeLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
3235
|
+
return AttributeLabelSortEnum2;
|
|
3236
|
+
})(AttributeLabelSortEnum || {});
|
|
3246
3237
|
var AttributeLocaleFilteringField = /* @__PURE__ */ ((AttributeLocaleFilteringField2) => {
|
|
3247
3238
|
AttributeLocaleFilteringField2["AttributeUuid"] = "attributeUuid";
|
|
3248
3239
|
AttributeLocaleFilteringField2["Locale"] = "locale";
|
|
@@ -3404,6 +3395,25 @@ var AttributeRequestMetaFilteringField = /* @__PURE__ */ ((AttributeRequestMetaF
|
|
|
3404
3395
|
AttributeRequestMetaFilteringField2["AttributeRequestUuid"] = "attributeRequestUuid";
|
|
3405
3396
|
return AttributeRequestMetaFilteringField2;
|
|
3406
3397
|
})(AttributeRequestMetaFilteringField || {});
|
|
3398
|
+
var AttributeRequestMetaOid4VcmdocFilteringField = /* @__PURE__ */ ((AttributeRequestMetaOid4VcmdocFilteringField2) => {
|
|
3399
|
+
AttributeRequestMetaOid4VcmdocFilteringField2["AttributeRequestMetaUuid"] = "attributeRequestMetaUuid";
|
|
3400
|
+
AttributeRequestMetaOid4VcmdocFilteringField2["DataElementIdentifier"] = "dataElementIdentifier";
|
|
3401
|
+
AttributeRequestMetaOid4VcmdocFilteringField2["Namespace"] = "namespace";
|
|
3402
|
+
return AttributeRequestMetaOid4VcmdocFilteringField2;
|
|
3403
|
+
})(AttributeRequestMetaOid4VcmdocFilteringField || {});
|
|
3404
|
+
var AttributeRequestMetaOid4VcmdocSortEnum = /* @__PURE__ */ ((AttributeRequestMetaOid4VcmdocSortEnum2) => {
|
|
3405
|
+
AttributeRequestMetaOid4VcmdocSortEnum2["CreatedAt"] = "createdAt";
|
|
3406
|
+
return AttributeRequestMetaOid4VcmdocSortEnum2;
|
|
3407
|
+
})(AttributeRequestMetaOid4VcmdocSortEnum || {});
|
|
3408
|
+
var AttributeRequestMetaOid4VcsdjwtFilteringField = /* @__PURE__ */ ((AttributeRequestMetaOid4VcsdjwtFilteringField2) => {
|
|
3409
|
+
AttributeRequestMetaOid4VcsdjwtFilteringField2["AttributeRequestMetaUuid"] = "attributeRequestMetaUuid";
|
|
3410
|
+
AttributeRequestMetaOid4VcsdjwtFilteringField2["JsonPath"] = "jsonPath";
|
|
3411
|
+
return AttributeRequestMetaOid4VcsdjwtFilteringField2;
|
|
3412
|
+
})(AttributeRequestMetaOid4VcsdjwtFilteringField || {});
|
|
3413
|
+
var AttributeRequestMetaOid4VcsdjwtSortEnum = /* @__PURE__ */ ((AttributeRequestMetaOid4VcsdjwtSortEnum2) => {
|
|
3414
|
+
AttributeRequestMetaOid4VcsdjwtSortEnum2["CreatedAt"] = "createdAt";
|
|
3415
|
+
return AttributeRequestMetaOid4VcsdjwtSortEnum2;
|
|
3416
|
+
})(AttributeRequestMetaOid4VcsdjwtSortEnum || {});
|
|
3407
3417
|
var AttributeRequestMetaSortEnum = /* @__PURE__ */ ((AttributeRequestMetaSortEnum2) => {
|
|
3408
3418
|
AttributeRequestMetaSortEnum2["CreatedAt"] = "createdAt";
|
|
3409
3419
|
return AttributeRequestMetaSortEnum2;
|
|
@@ -3411,6 +3421,8 @@ var AttributeRequestMetaSortEnum = /* @__PURE__ */ ((AttributeRequestMetaSortEnu
|
|
|
3411
3421
|
var AttributeRequestMetaType = /* @__PURE__ */ ((AttributeRequestMetaType2) => {
|
|
3412
3422
|
AttributeRequestMetaType2["Datakeeper"] = "DATAKEEPER";
|
|
3413
3423
|
AttributeRequestMetaType2["None"] = "NONE";
|
|
3424
|
+
AttributeRequestMetaType2["Oid4VcMdoc"] = "OID4VC_MDOC";
|
|
3425
|
+
AttributeRequestMetaType2["Oid4VcSdJwt"] = "OID4VC_SD_JWT";
|
|
3414
3426
|
AttributeRequestMetaType2["Yivi"] = "YIVI";
|
|
3415
3427
|
AttributeRequestMetaType2["Yoti"] = "YOTI";
|
|
3416
3428
|
return AttributeRequestMetaType2;
|
|
@@ -3446,6 +3458,121 @@ var AttributeSortEnum = /* @__PURE__ */ ((AttributeSortEnum2) => {
|
|
|
3446
3458
|
AttributeSortEnum2["State"] = "state";
|
|
3447
3459
|
return AttributeSortEnum2;
|
|
3448
3460
|
})(AttributeSortEnum || {});
|
|
3461
|
+
var AuthenticationAction = /* @__PURE__ */ ((AuthenticationAction2) => {
|
|
3462
|
+
AuthenticationAction2["Activate"] = "ACTIVATE";
|
|
3463
|
+
AuthenticationAction2["Deactivate"] = "DEACTIVATE";
|
|
3464
|
+
return AuthenticationAction2;
|
|
3465
|
+
})(AuthenticationAction || {});
|
|
3466
|
+
var AuthenticationActivityFilteringField = /* @__PURE__ */ ((AuthenticationActivityFilteringField2) => {
|
|
3467
|
+
AuthenticationActivityFilteringField2["AuthenticationUuid"] = "authenticationUuid";
|
|
3468
|
+
AuthenticationActivityFilteringField2["CreatedAt"] = "createdAt";
|
|
3469
|
+
AuthenticationActivityFilteringField2["EventUrn"] = "eventURN";
|
|
3470
|
+
AuthenticationActivityFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
3471
|
+
AuthenticationActivityFilteringField2["RequestUuid"] = "requestUuid";
|
|
3472
|
+
return AuthenticationActivityFilteringField2;
|
|
3473
|
+
})(AuthenticationActivityFilteringField || {});
|
|
3474
|
+
var AuthenticationActivitySortEnum = /* @__PURE__ */ ((AuthenticationActivitySortEnum2) => {
|
|
3475
|
+
AuthenticationActivitySortEnum2["CreatedAt"] = "createdAt";
|
|
3476
|
+
AuthenticationActivitySortEnum2["EventUrn"] = "eventUrn";
|
|
3477
|
+
return AuthenticationActivitySortEnum2;
|
|
3478
|
+
})(AuthenticationActivitySortEnum || {});
|
|
3479
|
+
var AuthenticationBrandFilteringField = /* @__PURE__ */ ((AuthenticationBrandFilteringField2) => {
|
|
3480
|
+
AuthenticationBrandFilteringField2["AuthenticationUuid"] = "authenticationUuid";
|
|
3481
|
+
AuthenticationBrandFilteringField2["OrganizationBrandUuid"] = "organizationBrandUuid";
|
|
3482
|
+
AuthenticationBrandFilteringField2["RedirectPath"] = "redirectPath";
|
|
3483
|
+
AuthenticationBrandFilteringField2["Uuid"] = "uuid";
|
|
3484
|
+
return AuthenticationBrandFilteringField2;
|
|
3485
|
+
})(AuthenticationBrandFilteringField || {});
|
|
3486
|
+
var AuthenticationBrandSortEnum = /* @__PURE__ */ ((AuthenticationBrandSortEnum2) => {
|
|
3487
|
+
AuthenticationBrandSortEnum2["CreatedAt"] = "createdAt";
|
|
3488
|
+
AuthenticationBrandSortEnum2["RedirectPath"] = "redirectPath";
|
|
3489
|
+
AuthenticationBrandSortEnum2["UpdatedAt"] = "updatedAt";
|
|
3490
|
+
return AuthenticationBrandSortEnum2;
|
|
3491
|
+
})(AuthenticationBrandSortEnum || {});
|
|
3492
|
+
var AuthenticationDomainFilteringField = /* @__PURE__ */ ((AuthenticationDomainFilteringField2) => {
|
|
3493
|
+
AuthenticationDomainFilteringField2["AuthenticationUuid"] = "authenticationUuid";
|
|
3494
|
+
AuthenticationDomainFilteringField2["OrganizationDomainUuid"] = "organizationDomainUuid";
|
|
3495
|
+
AuthenticationDomainFilteringField2["RedirectPath"] = "redirectPath";
|
|
3496
|
+
AuthenticationDomainFilteringField2["Uuid"] = "uuid";
|
|
3497
|
+
return AuthenticationDomainFilteringField2;
|
|
3498
|
+
})(AuthenticationDomainFilteringField || {});
|
|
3499
|
+
var AuthenticationDomainSortEnum = /* @__PURE__ */ ((AuthenticationDomainSortEnum2) => {
|
|
3500
|
+
AuthenticationDomainSortEnum2["CreatedAt"] = "createdAt";
|
|
3501
|
+
AuthenticationDomainSortEnum2["RedirectPath"] = "redirectPath";
|
|
3502
|
+
AuthenticationDomainSortEnum2["UpdatedAt"] = "updatedAt";
|
|
3503
|
+
return AuthenticationDomainSortEnum2;
|
|
3504
|
+
})(AuthenticationDomainSortEnum || {});
|
|
3505
|
+
var AuthenticationFilteringField = /* @__PURE__ */ ((AuthenticationFilteringField2) => {
|
|
3506
|
+
AuthenticationFilteringField2["Name"] = "name";
|
|
3507
|
+
AuthenticationFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
3508
|
+
AuthenticationFilteringField2["State"] = "state";
|
|
3509
|
+
AuthenticationFilteringField2["Uuid"] = "uuid";
|
|
3510
|
+
return AuthenticationFilteringField2;
|
|
3511
|
+
})(AuthenticationFilteringField || {});
|
|
3512
|
+
var AuthenticationLabelFilteringField = /* @__PURE__ */ ((AuthenticationLabelFilteringField2) => {
|
|
3513
|
+
AuthenticationLabelFilteringField2["AuthenticationUuid"] = "authenticationUuid";
|
|
3514
|
+
AuthenticationLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
3515
|
+
AuthenticationLabelFilteringField2["Uuid"] = "uuid";
|
|
3516
|
+
return AuthenticationLabelFilteringField2;
|
|
3517
|
+
})(AuthenticationLabelFilteringField || {});
|
|
3518
|
+
var AuthenticationLabelSortEnum = /* @__PURE__ */ ((AuthenticationLabelSortEnum2) => {
|
|
3519
|
+
AuthenticationLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
3520
|
+
AuthenticationLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
3521
|
+
return AuthenticationLabelSortEnum2;
|
|
3522
|
+
})(AuthenticationLabelSortEnum || {});
|
|
3523
|
+
var AuthenticationProviderConfigurationFilteringField = /* @__PURE__ */ ((AuthenticationProviderConfigurationFilteringField2) => {
|
|
3524
|
+
AuthenticationProviderConfigurationFilteringField2["AuthenticationProviderUuid"] = "authenticationProviderUuid";
|
|
3525
|
+
return AuthenticationProviderConfigurationFilteringField2;
|
|
3526
|
+
})(AuthenticationProviderConfigurationFilteringField || {});
|
|
3527
|
+
var AuthenticationProviderConfigurationNlWalletFilteringField = /* @__PURE__ */ ((AuthenticationProviderConfigurationNlWalletFilteringField2) => {
|
|
3528
|
+
AuthenticationProviderConfigurationNlWalletFilteringField2["AuthenticationProviderConfigurationUuid"] = "authenticationProviderConfigurationUuid";
|
|
3529
|
+
AuthenticationProviderConfigurationNlWalletFilteringField2["Intent"] = "intent";
|
|
3530
|
+
return AuthenticationProviderConfigurationNlWalletFilteringField2;
|
|
3531
|
+
})(AuthenticationProviderConfigurationNlWalletFilteringField || {});
|
|
3532
|
+
var AuthenticationProviderConfigurationNlWalletSortEnum = /* @__PURE__ */ ((AuthenticationProviderConfigurationNlWalletSortEnum2) => {
|
|
3533
|
+
AuthenticationProviderConfigurationNlWalletSortEnum2["CreatedAt"] = "createdAt";
|
|
3534
|
+
return AuthenticationProviderConfigurationNlWalletSortEnum2;
|
|
3535
|
+
})(AuthenticationProviderConfigurationNlWalletSortEnum || {});
|
|
3536
|
+
var AuthenticationProviderConfigurationSortEnum = /* @__PURE__ */ ((AuthenticationProviderConfigurationSortEnum2) => {
|
|
3537
|
+
AuthenticationProviderConfigurationSortEnum2["CreatedAt"] = "createdAt";
|
|
3538
|
+
return AuthenticationProviderConfigurationSortEnum2;
|
|
3539
|
+
})(AuthenticationProviderConfigurationSortEnum || {});
|
|
3540
|
+
var AuthenticationProviderFilteringField = /* @__PURE__ */ ((AuthenticationProviderFilteringField2) => {
|
|
3541
|
+
AuthenticationProviderFilteringField2["AuthenticationUuid"] = "authenticationUuid";
|
|
3542
|
+
AuthenticationProviderFilteringField2["ProviderAppUuid"] = "providerAppUuid";
|
|
3543
|
+
AuthenticationProviderFilteringField2["Uuid"] = "uuid";
|
|
3544
|
+
return AuthenticationProviderFilteringField2;
|
|
3545
|
+
})(AuthenticationProviderFilteringField || {});
|
|
3546
|
+
var AuthenticationProviderSortEnum = /* @__PURE__ */ ((AuthenticationProviderSortEnum2) => {
|
|
3547
|
+
AuthenticationProviderSortEnum2["CreatedAt"] = "createdAt";
|
|
3548
|
+
AuthenticationProviderSortEnum2["ProviderAppUuid"] = "providerAppUuid";
|
|
3549
|
+
AuthenticationProviderSortEnum2["UpdatedAt"] = "updatedAt";
|
|
3550
|
+
return AuthenticationProviderSortEnum2;
|
|
3551
|
+
})(AuthenticationProviderSortEnum || {});
|
|
3552
|
+
var AuthenticationScopeFilteringField = /* @__PURE__ */ ((AuthenticationScopeFilteringField2) => {
|
|
3553
|
+
AuthenticationScopeFilteringField2["AuthenticationProviderUuid"] = "authenticationProviderUuid";
|
|
3554
|
+
AuthenticationScopeFilteringField2["ScopeUuid"] = "scopeUuid";
|
|
3555
|
+
AuthenticationScopeFilteringField2["Uuid"] = "uuid";
|
|
3556
|
+
return AuthenticationScopeFilteringField2;
|
|
3557
|
+
})(AuthenticationScopeFilteringField || {});
|
|
3558
|
+
var AuthenticationScopeSortEnum = /* @__PURE__ */ ((AuthenticationScopeSortEnum2) => {
|
|
3559
|
+
AuthenticationScopeSortEnum2["CreatedAt"] = "createdAt";
|
|
3560
|
+
AuthenticationScopeSortEnum2["ScopeUuid"] = "scopeUuid";
|
|
3561
|
+
AuthenticationScopeSortEnum2["UpdatedAt"] = "updatedAt";
|
|
3562
|
+
return AuthenticationScopeSortEnum2;
|
|
3563
|
+
})(AuthenticationScopeSortEnum || {});
|
|
3564
|
+
var AuthenticationSortEnum = /* @__PURE__ */ ((AuthenticationSortEnum2) => {
|
|
3565
|
+
AuthenticationSortEnum2["CreatedAt"] = "createdAt";
|
|
3566
|
+
AuthenticationSortEnum2["Name"] = "name";
|
|
3567
|
+
AuthenticationSortEnum2["State"] = "state";
|
|
3568
|
+
AuthenticationSortEnum2["UpdatedAt"] = "updatedAt";
|
|
3569
|
+
return AuthenticationSortEnum2;
|
|
3570
|
+
})(AuthenticationSortEnum || {});
|
|
3571
|
+
var AuthenticationState = /* @__PURE__ */ ((AuthenticationState2) => {
|
|
3572
|
+
AuthenticationState2["Active"] = "ACTIVE";
|
|
3573
|
+
AuthenticationState2["Inactive"] = "INACTIVE";
|
|
3574
|
+
return AuthenticationState2;
|
|
3575
|
+
})(AuthenticationState || {});
|
|
3449
3576
|
var BillingFilteringField = /* @__PURE__ */ ((BillingFilteringField2) => {
|
|
3450
3577
|
BillingFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
3451
3578
|
BillingFilteringField2["Uuid"] = "uuid";
|
|
@@ -3639,20 +3766,30 @@ var BillingWalletTransactionState = /* @__PURE__ */ ((BillingWalletTransactionSt
|
|
|
3639
3766
|
BillingWalletTransactionState2["Succeeded"] = "SUCCEEDED";
|
|
3640
3767
|
return BillingWalletTransactionState2;
|
|
3641
3768
|
})(BillingWalletTransactionState || {});
|
|
3642
|
-
var
|
|
3643
|
-
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
|
|
3651
|
-
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
|
|
3655
|
-
|
|
3769
|
+
var CatalogModelType = /* @__PURE__ */ ((CatalogModelType2) => {
|
|
3770
|
+
CatalogModelType2["App"] = "APP";
|
|
3771
|
+
CatalogModelType2["Attribute"] = "ATTRIBUTE";
|
|
3772
|
+
CatalogModelType2["Credential"] = "CREDENTIAL";
|
|
3773
|
+
CatalogModelType2["Issuer"] = "ISSUER";
|
|
3774
|
+
CatalogModelType2["Provider"] = "PROVIDER";
|
|
3775
|
+
CatalogModelType2["Scheme"] = "SCHEME";
|
|
3776
|
+
CatalogModelType2["Scope"] = "SCOPE";
|
|
3777
|
+
return CatalogModelType2;
|
|
3778
|
+
})(CatalogModelType || {});
|
|
3779
|
+
var CreateDisclosureProviderByAttributesMode = /* @__PURE__ */ ((CreateDisclosureProviderByAttributesMode2) => {
|
|
3780
|
+
CreateDisclosureProviderByAttributesMode2["Conjunction"] = "Conjunction";
|
|
3781
|
+
CreateDisclosureProviderByAttributesMode2["ConjunctionMerge"] = "ConjunctionMerge";
|
|
3782
|
+
CreateDisclosureProviderByAttributesMode2["Disjunction"] = "Disjunction";
|
|
3783
|
+
CreateDisclosureProviderByAttributesMode2["DisjunctionMerge"] = "DisjunctionMerge";
|
|
3784
|
+
return CreateDisclosureProviderByAttributesMode2;
|
|
3785
|
+
})(CreateDisclosureProviderByAttributesMode || {});
|
|
3786
|
+
var CreateSignatureProviderByAttributesMode = /* @__PURE__ */ ((CreateSignatureProviderByAttributesMode2) => {
|
|
3787
|
+
CreateSignatureProviderByAttributesMode2["Conjunction"] = "Conjunction";
|
|
3788
|
+
CreateSignatureProviderByAttributesMode2["ConjunctionMerge"] = "ConjunctionMerge";
|
|
3789
|
+
CreateSignatureProviderByAttributesMode2["Disjunction"] = "Disjunction";
|
|
3790
|
+
CreateSignatureProviderByAttributesMode2["DisjunctionMerge"] = "DisjunctionMerge";
|
|
3791
|
+
return CreateSignatureProviderByAttributesMode2;
|
|
3792
|
+
})(CreateSignatureProviderByAttributesMode || {});
|
|
3656
3793
|
var CredentialCategoryType = /* @__PURE__ */ ((CredentialCategoryType2) => {
|
|
3657
3794
|
CredentialCategoryType2["Development"] = "DEVELOPMENT";
|
|
3658
3795
|
CredentialCategoryType2["Production"] = "PRODUCTION";
|
|
@@ -3670,6 +3807,17 @@ var CredentialFilteringField = /* @__PURE__ */ ((CredentialFilteringField2) => {
|
|
|
3670
3807
|
CredentialFilteringField2["Uuid"] = "uuid";
|
|
3671
3808
|
return CredentialFilteringField2;
|
|
3672
3809
|
})(CredentialFilteringField || {});
|
|
3810
|
+
var CredentialLabelFilteringField = /* @__PURE__ */ ((CredentialLabelFilteringField2) => {
|
|
3811
|
+
CredentialLabelFilteringField2["CredentialUuid"] = "credentialUuid";
|
|
3812
|
+
CredentialLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
3813
|
+
CredentialLabelFilteringField2["Uuid"] = "uuid";
|
|
3814
|
+
return CredentialLabelFilteringField2;
|
|
3815
|
+
})(CredentialLabelFilteringField || {});
|
|
3816
|
+
var CredentialLabelSortEnum = /* @__PURE__ */ ((CredentialLabelSortEnum2) => {
|
|
3817
|
+
CredentialLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
3818
|
+
CredentialLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
3819
|
+
return CredentialLabelSortEnum2;
|
|
3820
|
+
})(CredentialLabelSortEnum || {});
|
|
3673
3821
|
var CredentialLocaleFilteringField = /* @__PURE__ */ ((CredentialLocaleFilteringField2) => {
|
|
3674
3822
|
CredentialLocaleFilteringField2["CredentialUuid"] = "credentialUuid";
|
|
3675
3823
|
CredentialLocaleFilteringField2["Locale"] = "locale";
|
|
@@ -3843,6 +3991,24 @@ var CredentialRequestMetaFilteringField = /* @__PURE__ */ ((CredentialRequestMet
|
|
|
3843
3991
|
CredentialRequestMetaFilteringField2["CredentialRequestUuid"] = "credentialRequestUuid";
|
|
3844
3992
|
return CredentialRequestMetaFilteringField2;
|
|
3845
3993
|
})(CredentialRequestMetaFilteringField || {});
|
|
3994
|
+
var CredentialRequestMetaOid4VcmdocFilteringField = /* @__PURE__ */ ((CredentialRequestMetaOid4VcmdocFilteringField2) => {
|
|
3995
|
+
CredentialRequestMetaOid4VcmdocFilteringField2["CredentialRequestMetaUuid"] = "credentialRequestMetaUuid";
|
|
3996
|
+
CredentialRequestMetaOid4VcmdocFilteringField2["DocType"] = "docType";
|
|
3997
|
+
return CredentialRequestMetaOid4VcmdocFilteringField2;
|
|
3998
|
+
})(CredentialRequestMetaOid4VcmdocFilteringField || {});
|
|
3999
|
+
var CredentialRequestMetaOid4VcmdocSortEnum = /* @__PURE__ */ ((CredentialRequestMetaOid4VcmdocSortEnum2) => {
|
|
4000
|
+
CredentialRequestMetaOid4VcmdocSortEnum2["CreatedAt"] = "createdAt";
|
|
4001
|
+
return CredentialRequestMetaOid4VcmdocSortEnum2;
|
|
4002
|
+
})(CredentialRequestMetaOid4VcmdocSortEnum || {});
|
|
4003
|
+
var CredentialRequestMetaOid4VcsdjwtFilteringField = /* @__PURE__ */ ((CredentialRequestMetaOid4VcsdjwtFilteringField2) => {
|
|
4004
|
+
CredentialRequestMetaOid4VcsdjwtFilteringField2["CredentialRequestMetaUuid"] = "credentialRequestMetaUuid";
|
|
4005
|
+
CredentialRequestMetaOid4VcsdjwtFilteringField2["Type"] = "type";
|
|
4006
|
+
return CredentialRequestMetaOid4VcsdjwtFilteringField2;
|
|
4007
|
+
})(CredentialRequestMetaOid4VcsdjwtFilteringField || {});
|
|
4008
|
+
var CredentialRequestMetaOid4VcsdjwtSortEnum = /* @__PURE__ */ ((CredentialRequestMetaOid4VcsdjwtSortEnum2) => {
|
|
4009
|
+
CredentialRequestMetaOid4VcsdjwtSortEnum2["CreatedAt"] = "createdAt";
|
|
4010
|
+
return CredentialRequestMetaOid4VcsdjwtSortEnum2;
|
|
4011
|
+
})(CredentialRequestMetaOid4VcsdjwtSortEnum || {});
|
|
3846
4012
|
var CredentialRequestMetaSortEnum = /* @__PURE__ */ ((CredentialRequestMetaSortEnum2) => {
|
|
3847
4013
|
CredentialRequestMetaSortEnum2["CreatedAt"] = "createdAt";
|
|
3848
4014
|
return CredentialRequestMetaSortEnum2;
|
|
@@ -3850,6 +4016,8 @@ var CredentialRequestMetaSortEnum = /* @__PURE__ */ ((CredentialRequestMetaSortE
|
|
|
3850
4016
|
var CredentialRequestMetaType = /* @__PURE__ */ ((CredentialRequestMetaType2) => {
|
|
3851
4017
|
CredentialRequestMetaType2["Datakeeper"] = "DATAKEEPER";
|
|
3852
4018
|
CredentialRequestMetaType2["None"] = "NONE";
|
|
4019
|
+
CredentialRequestMetaType2["Oid4VcMdoc"] = "OID4VC_MDOC";
|
|
4020
|
+
CredentialRequestMetaType2["Oid4VcSdJwt"] = "OID4VC_SD_JWT";
|
|
3853
4021
|
CredentialRequestMetaType2["Yivi"] = "YIVI";
|
|
3854
4022
|
CredentialRequestMetaType2["Yoti"] = "YOTI";
|
|
3855
4023
|
return CredentialRequestMetaType2;
|
|
@@ -4128,6 +4296,160 @@ var CurrencyUnit = /* @__PURE__ */ ((CurrencyUnit2) => {
|
|
|
4128
4296
|
CurrencyUnit2["Unity"] = "UNITY";
|
|
4129
4297
|
return CurrencyUnit2;
|
|
4130
4298
|
})(CurrencyUnit || {});
|
|
4299
|
+
var DisclosureAction = /* @__PURE__ */ ((DisclosureAction2) => {
|
|
4300
|
+
DisclosureAction2["Activate"] = "ACTIVATE";
|
|
4301
|
+
DisclosureAction2["Deactivate"] = "DEACTIVATE";
|
|
4302
|
+
return DisclosureAction2;
|
|
4303
|
+
})(DisclosureAction || {});
|
|
4304
|
+
var DisclosureActivityFilteringField = /* @__PURE__ */ ((DisclosureActivityFilteringField2) => {
|
|
4305
|
+
DisclosureActivityFilteringField2["CreatedAt"] = "createdAt";
|
|
4306
|
+
DisclosureActivityFilteringField2["DisclosureUuid"] = "disclosureUuid";
|
|
4307
|
+
DisclosureActivityFilteringField2["EventUrn"] = "eventURN";
|
|
4308
|
+
DisclosureActivityFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
4309
|
+
DisclosureActivityFilteringField2["RequestUuid"] = "requestUuid";
|
|
4310
|
+
return DisclosureActivityFilteringField2;
|
|
4311
|
+
})(DisclosureActivityFilteringField || {});
|
|
4312
|
+
var DisclosureActivitySortEnum = /* @__PURE__ */ ((DisclosureActivitySortEnum2) => {
|
|
4313
|
+
DisclosureActivitySortEnum2["CreatedAt"] = "createdAt";
|
|
4314
|
+
DisclosureActivitySortEnum2["EventUrn"] = "eventUrn";
|
|
4315
|
+
return DisclosureActivitySortEnum2;
|
|
4316
|
+
})(DisclosureActivitySortEnum || {});
|
|
4317
|
+
var DisclosureAttributeFilteringField = /* @__PURE__ */ ((DisclosureAttributeFilteringField2) => {
|
|
4318
|
+
DisclosureAttributeFilteringField2["AttributeUuid"] = "attributeUuid";
|
|
4319
|
+
DisclosureAttributeFilteringField2["DisclosureCredentialUuid"] = "disclosureCredentialUuid";
|
|
4320
|
+
DisclosureAttributeFilteringField2["Uuid"] = "uuid";
|
|
4321
|
+
return DisclosureAttributeFilteringField2;
|
|
4322
|
+
})(DisclosureAttributeFilteringField || {});
|
|
4323
|
+
var DisclosureAttributeSortEnum = /* @__PURE__ */ ((DisclosureAttributeSortEnum2) => {
|
|
4324
|
+
DisclosureAttributeSortEnum2["AttributeUuid"] = "attributeUuid";
|
|
4325
|
+
DisclosureAttributeSortEnum2["CreatedAt"] = "createdAt";
|
|
4326
|
+
DisclosureAttributeSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4327
|
+
return DisclosureAttributeSortEnum2;
|
|
4328
|
+
})(DisclosureAttributeSortEnum || {});
|
|
4329
|
+
var DisclosureBrandFilteringField = /* @__PURE__ */ ((DisclosureBrandFilteringField2) => {
|
|
4330
|
+
DisclosureBrandFilteringField2["DisclosureUuid"] = "disclosureUuid";
|
|
4331
|
+
DisclosureBrandFilteringField2["OrganizationBrandUuid"] = "organizationBrandUuid";
|
|
4332
|
+
DisclosureBrandFilteringField2["RedirectPath"] = "redirectPath";
|
|
4333
|
+
DisclosureBrandFilteringField2["Uuid"] = "uuid";
|
|
4334
|
+
return DisclosureBrandFilteringField2;
|
|
4335
|
+
})(DisclosureBrandFilteringField || {});
|
|
4336
|
+
var DisclosureBrandSortEnum = /* @__PURE__ */ ((DisclosureBrandSortEnum2) => {
|
|
4337
|
+
DisclosureBrandSortEnum2["CreatedAt"] = "createdAt";
|
|
4338
|
+
DisclosureBrandSortEnum2["RedirectPath"] = "redirectPath";
|
|
4339
|
+
DisclosureBrandSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4340
|
+
return DisclosureBrandSortEnum2;
|
|
4341
|
+
})(DisclosureBrandSortEnum || {});
|
|
4342
|
+
var DisclosureCredentialFilteringField = /* @__PURE__ */ ((DisclosureCredentialFilteringField2) => {
|
|
4343
|
+
DisclosureCredentialFilteringField2["CredentialUuid"] = "credentialUuid";
|
|
4344
|
+
DisclosureCredentialFilteringField2["DisclosureGroupUuid"] = "disclosureGroupUuid";
|
|
4345
|
+
DisclosureCredentialFilteringField2["IssuerUuid"] = "issuerUuid";
|
|
4346
|
+
DisclosureCredentialFilteringField2["SchemeUuid"] = "schemeUuid";
|
|
4347
|
+
DisclosureCredentialFilteringField2["Uuid"] = "uuid";
|
|
4348
|
+
return DisclosureCredentialFilteringField2;
|
|
4349
|
+
})(DisclosureCredentialFilteringField || {});
|
|
4350
|
+
var DisclosureCredentialSortEnum = /* @__PURE__ */ ((DisclosureCredentialSortEnum2) => {
|
|
4351
|
+
DisclosureCredentialSortEnum2["CreatedAt"] = "createdAt";
|
|
4352
|
+
DisclosureCredentialSortEnum2["CredentialUuid"] = "credentialUuid";
|
|
4353
|
+
DisclosureCredentialSortEnum2["IssuerUuid"] = "issuerUuid";
|
|
4354
|
+
DisclosureCredentialSortEnum2["SchemeUuid"] = "schemeUuid";
|
|
4355
|
+
DisclosureCredentialSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4356
|
+
return DisclosureCredentialSortEnum2;
|
|
4357
|
+
})(DisclosureCredentialSortEnum || {});
|
|
4358
|
+
var DisclosureDomainFilteringField = /* @__PURE__ */ ((DisclosureDomainFilteringField2) => {
|
|
4359
|
+
DisclosureDomainFilteringField2["DisclosureUuid"] = "disclosureUuid";
|
|
4360
|
+
DisclosureDomainFilteringField2["OrganizationDomainUuid"] = "organizationDomainUuid";
|
|
4361
|
+
DisclosureDomainFilteringField2["RedirectPath"] = "redirectPath";
|
|
4362
|
+
DisclosureDomainFilteringField2["Uuid"] = "uuid";
|
|
4363
|
+
return DisclosureDomainFilteringField2;
|
|
4364
|
+
})(DisclosureDomainFilteringField || {});
|
|
4365
|
+
var DisclosureDomainSortEnum = /* @__PURE__ */ ((DisclosureDomainSortEnum2) => {
|
|
4366
|
+
DisclosureDomainSortEnum2["CreatedAt"] = "createdAt";
|
|
4367
|
+
DisclosureDomainSortEnum2["RedirectPath"] = "redirectPath";
|
|
4368
|
+
DisclosureDomainSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4369
|
+
return DisclosureDomainSortEnum2;
|
|
4370
|
+
})(DisclosureDomainSortEnum || {});
|
|
4371
|
+
var DisclosureFilteringField = /* @__PURE__ */ ((DisclosureFilteringField2) => {
|
|
4372
|
+
DisclosureFilteringField2["Name"] = "name";
|
|
4373
|
+
DisclosureFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
4374
|
+
DisclosureFilteringField2["State"] = "state";
|
|
4375
|
+
DisclosureFilteringField2["Uuid"] = "uuid";
|
|
4376
|
+
return DisclosureFilteringField2;
|
|
4377
|
+
})(DisclosureFilteringField || {});
|
|
4378
|
+
var DisclosureGroupFilteringField = /* @__PURE__ */ ((DisclosureGroupFilteringField2) => {
|
|
4379
|
+
DisclosureGroupFilteringField2["DisclosureProviderUuid"] = "disclosureProviderUuid";
|
|
4380
|
+
DisclosureGroupFilteringField2["Name"] = "name";
|
|
4381
|
+
DisclosureGroupFilteringField2["Uuid"] = "uuid";
|
|
4382
|
+
return DisclosureGroupFilteringField2;
|
|
4383
|
+
})(DisclosureGroupFilteringField || {});
|
|
4384
|
+
var DisclosureGroupSortEnum = /* @__PURE__ */ ((DisclosureGroupSortEnum2) => {
|
|
4385
|
+
DisclosureGroupSortEnum2["CreatedAt"] = "createdAt";
|
|
4386
|
+
DisclosureGroupSortEnum2["Name"] = "name";
|
|
4387
|
+
DisclosureGroupSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4388
|
+
return DisclosureGroupSortEnum2;
|
|
4389
|
+
})(DisclosureGroupSortEnum || {});
|
|
4390
|
+
var DisclosureLabelFilteringField = /* @__PURE__ */ ((DisclosureLabelFilteringField2) => {
|
|
4391
|
+
DisclosureLabelFilteringField2["DisclosureUuid"] = "disclosureUuid";
|
|
4392
|
+
DisclosureLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
4393
|
+
DisclosureLabelFilteringField2["Uuid"] = "uuid";
|
|
4394
|
+
return DisclosureLabelFilteringField2;
|
|
4395
|
+
})(DisclosureLabelFilteringField || {});
|
|
4396
|
+
var DisclosureLabelSortEnum = /* @__PURE__ */ ((DisclosureLabelSortEnum2) => {
|
|
4397
|
+
DisclosureLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
4398
|
+
DisclosureLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4399
|
+
return DisclosureLabelSortEnum2;
|
|
4400
|
+
})(DisclosureLabelSortEnum || {});
|
|
4401
|
+
var DisclosureMappingFilteringField = /* @__PURE__ */ ((DisclosureMappingFilteringField2) => {
|
|
4402
|
+
DisclosureMappingFilteringField2["DisclosureUuid"] = "disclosureUuid";
|
|
4403
|
+
DisclosureMappingFilteringField2["MappingVerificationUuid"] = "mappingVerificationUuid";
|
|
4404
|
+
DisclosureMappingFilteringField2["Uuid"] = "uuid";
|
|
4405
|
+
return DisclosureMappingFilteringField2;
|
|
4406
|
+
})(DisclosureMappingFilteringField || {});
|
|
4407
|
+
var DisclosureMappingSortEnum = /* @__PURE__ */ ((DisclosureMappingSortEnum2) => {
|
|
4408
|
+
DisclosureMappingSortEnum2["CreatedAt"] = "createdAt";
|
|
4409
|
+
DisclosureMappingSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4410
|
+
return DisclosureMappingSortEnum2;
|
|
4411
|
+
})(DisclosureMappingSortEnum || {});
|
|
4412
|
+
var DisclosureProviderConfigurationFilteringField = /* @__PURE__ */ ((DisclosureProviderConfigurationFilteringField2) => {
|
|
4413
|
+
DisclosureProviderConfigurationFilteringField2["DisclosureProviderUuid"] = "disclosureProviderUuid";
|
|
4414
|
+
return DisclosureProviderConfigurationFilteringField2;
|
|
4415
|
+
})(DisclosureProviderConfigurationFilteringField || {});
|
|
4416
|
+
var DisclosureProviderConfigurationNlWalletFilteringField = /* @__PURE__ */ ((DisclosureProviderConfigurationNlWalletFilteringField2) => {
|
|
4417
|
+
DisclosureProviderConfigurationNlWalletFilteringField2["DisclosureProviderConfigurationUuid"] = "disclosureProviderConfigurationUuid";
|
|
4418
|
+
DisclosureProviderConfigurationNlWalletFilteringField2["Intent"] = "intent";
|
|
4419
|
+
return DisclosureProviderConfigurationNlWalletFilteringField2;
|
|
4420
|
+
})(DisclosureProviderConfigurationNlWalletFilteringField || {});
|
|
4421
|
+
var DisclosureProviderConfigurationNlWalletSortEnum = /* @__PURE__ */ ((DisclosureProviderConfigurationNlWalletSortEnum2) => {
|
|
4422
|
+
DisclosureProviderConfigurationNlWalletSortEnum2["CreatedAt"] = "createdAt";
|
|
4423
|
+
return DisclosureProviderConfigurationNlWalletSortEnum2;
|
|
4424
|
+
})(DisclosureProviderConfigurationNlWalletSortEnum || {});
|
|
4425
|
+
var DisclosureProviderConfigurationSortEnum = /* @__PURE__ */ ((DisclosureProviderConfigurationSortEnum2) => {
|
|
4426
|
+
DisclosureProviderConfigurationSortEnum2["CreatedAt"] = "createdAt";
|
|
4427
|
+
return DisclosureProviderConfigurationSortEnum2;
|
|
4428
|
+
})(DisclosureProviderConfigurationSortEnum || {});
|
|
4429
|
+
var DisclosureProviderFilteringField = /* @__PURE__ */ ((DisclosureProviderFilteringField2) => {
|
|
4430
|
+
DisclosureProviderFilteringField2["DisclosureUuid"] = "disclosureUuid";
|
|
4431
|
+
DisclosureProviderFilteringField2["ProviderAppUuid"] = "providerAppUuid";
|
|
4432
|
+
DisclosureProviderFilteringField2["Uuid"] = "uuid";
|
|
4433
|
+
return DisclosureProviderFilteringField2;
|
|
4434
|
+
})(DisclosureProviderFilteringField || {});
|
|
4435
|
+
var DisclosureProviderSortEnum = /* @__PURE__ */ ((DisclosureProviderSortEnum2) => {
|
|
4436
|
+
DisclosureProviderSortEnum2["CreatedAt"] = "createdAt";
|
|
4437
|
+
DisclosureProviderSortEnum2["ProviderAppUuid"] = "providerAppUuid";
|
|
4438
|
+
DisclosureProviderSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4439
|
+
return DisclosureProviderSortEnum2;
|
|
4440
|
+
})(DisclosureProviderSortEnum || {});
|
|
4441
|
+
var DisclosureSortEnum = /* @__PURE__ */ ((DisclosureSortEnum2) => {
|
|
4442
|
+
DisclosureSortEnum2["CreatedAt"] = "createdAt";
|
|
4443
|
+
DisclosureSortEnum2["Name"] = "name";
|
|
4444
|
+
DisclosureSortEnum2["State"] = "state";
|
|
4445
|
+
DisclosureSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4446
|
+
return DisclosureSortEnum2;
|
|
4447
|
+
})(DisclosureSortEnum || {});
|
|
4448
|
+
var DisclosureState = /* @__PURE__ */ ((DisclosureState2) => {
|
|
4449
|
+
DisclosureState2["Active"] = "ACTIVE";
|
|
4450
|
+
DisclosureState2["Inactive"] = "INACTIVE";
|
|
4451
|
+
return DisclosureState2;
|
|
4452
|
+
})(DisclosureState || {});
|
|
4131
4453
|
var FilteringConnector = /* @__PURE__ */ ((FilteringConnector2) => {
|
|
4132
4454
|
FilteringConnector2["Conjunction"] = "CONJUNCTION";
|
|
4133
4455
|
FilteringConnector2["Disjunction"] = "DISJUNCTION";
|
|
@@ -4148,548 +4470,6 @@ var FilteringType = /* @__PURE__ */ ((FilteringType2) => {
|
|
|
4148
4470
|
FilteringType2["Some"] = "SOME";
|
|
4149
4471
|
return FilteringType2;
|
|
4150
4472
|
})(FilteringType || {});
|
|
4151
|
-
var FlowAuthenticationAction = /* @__PURE__ */ ((FlowAuthenticationAction2) => {
|
|
4152
|
-
FlowAuthenticationAction2["Activate"] = "ACTIVATE";
|
|
4153
|
-
FlowAuthenticationAction2["Deactivate"] = "DEACTIVATE";
|
|
4154
|
-
return FlowAuthenticationAction2;
|
|
4155
|
-
})(FlowAuthenticationAction || {});
|
|
4156
|
-
var FlowAuthenticationBrandFilteringField = /* @__PURE__ */ ((FlowAuthenticationBrandFilteringField2) => {
|
|
4157
|
-
FlowAuthenticationBrandFilteringField2["FlowAuthenticationUuid"] = "flowAuthenticationUuid";
|
|
4158
|
-
FlowAuthenticationBrandFilteringField2["OrganizationBrandUuid"] = "organizationBrandUuid";
|
|
4159
|
-
FlowAuthenticationBrandFilteringField2["RedirectPath"] = "redirectPath";
|
|
4160
|
-
FlowAuthenticationBrandFilteringField2["Uuid"] = "uuid";
|
|
4161
|
-
return FlowAuthenticationBrandFilteringField2;
|
|
4162
|
-
})(FlowAuthenticationBrandFilteringField || {});
|
|
4163
|
-
var FlowAuthenticationBrandSortEnum = /* @__PURE__ */ ((FlowAuthenticationBrandSortEnum2) => {
|
|
4164
|
-
FlowAuthenticationBrandSortEnum2["CreatedAt"] = "createdAt";
|
|
4165
|
-
FlowAuthenticationBrandSortEnum2["RedirectPath"] = "redirectPath";
|
|
4166
|
-
FlowAuthenticationBrandSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4167
|
-
return FlowAuthenticationBrandSortEnum2;
|
|
4168
|
-
})(FlowAuthenticationBrandSortEnum || {});
|
|
4169
|
-
var FlowAuthenticationDomainFilteringField = /* @__PURE__ */ ((FlowAuthenticationDomainFilteringField2) => {
|
|
4170
|
-
FlowAuthenticationDomainFilteringField2["FlowAuthenticationUuid"] = "flowAuthenticationUuid";
|
|
4171
|
-
FlowAuthenticationDomainFilteringField2["OrganizationDomainUuid"] = "organizationDomainUuid";
|
|
4172
|
-
FlowAuthenticationDomainFilteringField2["RedirectPath"] = "redirectPath";
|
|
4173
|
-
FlowAuthenticationDomainFilteringField2["Uuid"] = "uuid";
|
|
4174
|
-
return FlowAuthenticationDomainFilteringField2;
|
|
4175
|
-
})(FlowAuthenticationDomainFilteringField || {});
|
|
4176
|
-
var FlowAuthenticationDomainSortEnum = /* @__PURE__ */ ((FlowAuthenticationDomainSortEnum2) => {
|
|
4177
|
-
FlowAuthenticationDomainSortEnum2["CreatedAt"] = "createdAt";
|
|
4178
|
-
FlowAuthenticationDomainSortEnum2["RedirectPath"] = "redirectPath";
|
|
4179
|
-
FlowAuthenticationDomainSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4180
|
-
return FlowAuthenticationDomainSortEnum2;
|
|
4181
|
-
})(FlowAuthenticationDomainSortEnum || {});
|
|
4182
|
-
var FlowAuthenticationFilteringField = /* @__PURE__ */ ((FlowAuthenticationFilteringField2) => {
|
|
4183
|
-
FlowAuthenticationFilteringField2["Name"] = "name";
|
|
4184
|
-
FlowAuthenticationFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
4185
|
-
FlowAuthenticationFilteringField2["State"] = "state";
|
|
4186
|
-
FlowAuthenticationFilteringField2["Uuid"] = "uuid";
|
|
4187
|
-
return FlowAuthenticationFilteringField2;
|
|
4188
|
-
})(FlowAuthenticationFilteringField || {});
|
|
4189
|
-
var FlowAuthenticationLabelFilteringField = /* @__PURE__ */ ((FlowAuthenticationLabelFilteringField2) => {
|
|
4190
|
-
FlowAuthenticationLabelFilteringField2["FlowAuthenticationUuid"] = "flowAuthenticationUuid";
|
|
4191
|
-
FlowAuthenticationLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
4192
|
-
FlowAuthenticationLabelFilteringField2["Uuid"] = "uuid";
|
|
4193
|
-
return FlowAuthenticationLabelFilteringField2;
|
|
4194
|
-
})(FlowAuthenticationLabelFilteringField || {});
|
|
4195
|
-
var FlowAuthenticationLabelSortEnum = /* @__PURE__ */ ((FlowAuthenticationLabelSortEnum2) => {
|
|
4196
|
-
FlowAuthenticationLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
4197
|
-
FlowAuthenticationLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4198
|
-
return FlowAuthenticationLabelSortEnum2;
|
|
4199
|
-
})(FlowAuthenticationLabelSortEnum || {});
|
|
4200
|
-
var FlowAuthenticationProviderConfigurationFilteringField = /* @__PURE__ */ ((FlowAuthenticationProviderConfigurationFilteringField2) => {
|
|
4201
|
-
FlowAuthenticationProviderConfigurationFilteringField2["FlowAuthenticationProviderUuid"] = "flowAuthenticationProviderUuid";
|
|
4202
|
-
return FlowAuthenticationProviderConfigurationFilteringField2;
|
|
4203
|
-
})(FlowAuthenticationProviderConfigurationFilteringField || {});
|
|
4204
|
-
var FlowAuthenticationProviderConfigurationNlWalletFilteringField = /* @__PURE__ */ ((FlowAuthenticationProviderConfigurationNlWalletFilteringField2) => {
|
|
4205
|
-
FlowAuthenticationProviderConfigurationNlWalletFilteringField2["FlowAuthenticationProviderConfigurationUuid"] = "flowAuthenticationProviderConfigurationUuid";
|
|
4206
|
-
FlowAuthenticationProviderConfigurationNlWalletFilteringField2["Intent"] = "intent";
|
|
4207
|
-
return FlowAuthenticationProviderConfigurationNlWalletFilteringField2;
|
|
4208
|
-
})(FlowAuthenticationProviderConfigurationNlWalletFilteringField || {});
|
|
4209
|
-
var FlowAuthenticationProviderConfigurationNlWalletSortEnum = /* @__PURE__ */ ((FlowAuthenticationProviderConfigurationNlWalletSortEnum2) => {
|
|
4210
|
-
FlowAuthenticationProviderConfigurationNlWalletSortEnum2["CreatedAt"] = "createdAt";
|
|
4211
|
-
return FlowAuthenticationProviderConfigurationNlWalletSortEnum2;
|
|
4212
|
-
})(FlowAuthenticationProviderConfigurationNlWalletSortEnum || {});
|
|
4213
|
-
var FlowAuthenticationProviderConfigurationSortEnum = /* @__PURE__ */ ((FlowAuthenticationProviderConfigurationSortEnum2) => {
|
|
4214
|
-
FlowAuthenticationProviderConfigurationSortEnum2["CreatedAt"] = "createdAt";
|
|
4215
|
-
return FlowAuthenticationProviderConfigurationSortEnum2;
|
|
4216
|
-
})(FlowAuthenticationProviderConfigurationSortEnum || {});
|
|
4217
|
-
var FlowAuthenticationProviderFilteringField = /* @__PURE__ */ ((FlowAuthenticationProviderFilteringField2) => {
|
|
4218
|
-
FlowAuthenticationProviderFilteringField2["FlowAuthenticationUuid"] = "flowAuthenticationUuid";
|
|
4219
|
-
FlowAuthenticationProviderFilteringField2["ProviderAppUuid"] = "providerAppUuid";
|
|
4220
|
-
FlowAuthenticationProviderFilteringField2["Uuid"] = "uuid";
|
|
4221
|
-
return FlowAuthenticationProviderFilteringField2;
|
|
4222
|
-
})(FlowAuthenticationProviderFilteringField || {});
|
|
4223
|
-
var FlowAuthenticationProviderSortEnum = /* @__PURE__ */ ((FlowAuthenticationProviderSortEnum2) => {
|
|
4224
|
-
FlowAuthenticationProviderSortEnum2["CreatedAt"] = "createdAt";
|
|
4225
|
-
FlowAuthenticationProviderSortEnum2["ProviderAppUuid"] = "providerAppUuid";
|
|
4226
|
-
FlowAuthenticationProviderSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4227
|
-
return FlowAuthenticationProviderSortEnum2;
|
|
4228
|
-
})(FlowAuthenticationProviderSortEnum || {});
|
|
4229
|
-
var FlowAuthenticationScopeFilteringField = /* @__PURE__ */ ((FlowAuthenticationScopeFilteringField2) => {
|
|
4230
|
-
FlowAuthenticationScopeFilteringField2["FlowAuthenticationProviderUuid"] = "flowAuthenticationProviderUuid";
|
|
4231
|
-
FlowAuthenticationScopeFilteringField2["ScopeUuid"] = "scopeUuid";
|
|
4232
|
-
FlowAuthenticationScopeFilteringField2["Uuid"] = "uuid";
|
|
4233
|
-
return FlowAuthenticationScopeFilteringField2;
|
|
4234
|
-
})(FlowAuthenticationScopeFilteringField || {});
|
|
4235
|
-
var FlowAuthenticationScopeSortEnum = /* @__PURE__ */ ((FlowAuthenticationScopeSortEnum2) => {
|
|
4236
|
-
FlowAuthenticationScopeSortEnum2["CreatedAt"] = "createdAt";
|
|
4237
|
-
FlowAuthenticationScopeSortEnum2["ScopeUuid"] = "scopeUuid";
|
|
4238
|
-
FlowAuthenticationScopeSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4239
|
-
return FlowAuthenticationScopeSortEnum2;
|
|
4240
|
-
})(FlowAuthenticationScopeSortEnum || {});
|
|
4241
|
-
var FlowAuthenticationSortEnum = /* @__PURE__ */ ((FlowAuthenticationSortEnum2) => {
|
|
4242
|
-
FlowAuthenticationSortEnum2["CreatedAt"] = "createdAt";
|
|
4243
|
-
FlowAuthenticationSortEnum2["Name"] = "name";
|
|
4244
|
-
FlowAuthenticationSortEnum2["State"] = "state";
|
|
4245
|
-
FlowAuthenticationSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4246
|
-
return FlowAuthenticationSortEnum2;
|
|
4247
|
-
})(FlowAuthenticationSortEnum || {});
|
|
4248
|
-
var FlowAuthenticationState = /* @__PURE__ */ ((FlowAuthenticationState2) => {
|
|
4249
|
-
FlowAuthenticationState2["Active"] = "ACTIVE";
|
|
4250
|
-
FlowAuthenticationState2["Inactive"] = "INACTIVE";
|
|
4251
|
-
return FlowAuthenticationState2;
|
|
4252
|
-
})(FlowAuthenticationState || {});
|
|
4253
|
-
var FlowDisclosureAction = /* @__PURE__ */ ((FlowDisclosureAction2) => {
|
|
4254
|
-
FlowDisclosureAction2["Activate"] = "ACTIVATE";
|
|
4255
|
-
FlowDisclosureAction2["Deactivate"] = "DEACTIVATE";
|
|
4256
|
-
return FlowDisclosureAction2;
|
|
4257
|
-
})(FlowDisclosureAction || {});
|
|
4258
|
-
var FlowDisclosureAttributeFilteringField = /* @__PURE__ */ ((FlowDisclosureAttributeFilteringField2) => {
|
|
4259
|
-
FlowDisclosureAttributeFilteringField2["AttributeUuid"] = "attributeUuid";
|
|
4260
|
-
FlowDisclosureAttributeFilteringField2["FlowDisclosureCredentialUuid"] = "flowDisclosureCredentialUuid";
|
|
4261
|
-
FlowDisclosureAttributeFilteringField2["Uuid"] = "uuid";
|
|
4262
|
-
return FlowDisclosureAttributeFilteringField2;
|
|
4263
|
-
})(FlowDisclosureAttributeFilteringField || {});
|
|
4264
|
-
var FlowDisclosureAttributeSortEnum = /* @__PURE__ */ ((FlowDisclosureAttributeSortEnum2) => {
|
|
4265
|
-
FlowDisclosureAttributeSortEnum2["AttributeUuid"] = "attributeUuid";
|
|
4266
|
-
FlowDisclosureAttributeSortEnum2["CreatedAt"] = "createdAt";
|
|
4267
|
-
FlowDisclosureAttributeSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4268
|
-
return FlowDisclosureAttributeSortEnum2;
|
|
4269
|
-
})(FlowDisclosureAttributeSortEnum || {});
|
|
4270
|
-
var FlowDisclosureBrandFilteringField = /* @__PURE__ */ ((FlowDisclosureBrandFilteringField2) => {
|
|
4271
|
-
FlowDisclosureBrandFilteringField2["FlowDisclosureUuid"] = "flowDisclosureUuid";
|
|
4272
|
-
FlowDisclosureBrandFilteringField2["OrganizationBrandUuid"] = "organizationBrandUuid";
|
|
4273
|
-
FlowDisclosureBrandFilteringField2["RedirectPath"] = "redirectPath";
|
|
4274
|
-
FlowDisclosureBrandFilteringField2["Uuid"] = "uuid";
|
|
4275
|
-
return FlowDisclosureBrandFilteringField2;
|
|
4276
|
-
})(FlowDisclosureBrandFilteringField || {});
|
|
4277
|
-
var FlowDisclosureBrandSortEnum = /* @__PURE__ */ ((FlowDisclosureBrandSortEnum2) => {
|
|
4278
|
-
FlowDisclosureBrandSortEnum2["CreatedAt"] = "createdAt";
|
|
4279
|
-
FlowDisclosureBrandSortEnum2["RedirectPath"] = "redirectPath";
|
|
4280
|
-
FlowDisclosureBrandSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4281
|
-
return FlowDisclosureBrandSortEnum2;
|
|
4282
|
-
})(FlowDisclosureBrandSortEnum || {});
|
|
4283
|
-
var FlowDisclosureCredentialFilteringField = /* @__PURE__ */ ((FlowDisclosureCredentialFilteringField2) => {
|
|
4284
|
-
FlowDisclosureCredentialFilteringField2["CredentialUuid"] = "credentialUuid";
|
|
4285
|
-
FlowDisclosureCredentialFilteringField2["FlowDisclosureGroupUuid"] = "flowDisclosureGroupUuid";
|
|
4286
|
-
FlowDisclosureCredentialFilteringField2["IssuerUuid"] = "issuerUuid";
|
|
4287
|
-
FlowDisclosureCredentialFilteringField2["SchemeUuid"] = "schemeUuid";
|
|
4288
|
-
FlowDisclosureCredentialFilteringField2["Uuid"] = "uuid";
|
|
4289
|
-
return FlowDisclosureCredentialFilteringField2;
|
|
4290
|
-
})(FlowDisclosureCredentialFilteringField || {});
|
|
4291
|
-
var FlowDisclosureCredentialSortEnum = /* @__PURE__ */ ((FlowDisclosureCredentialSortEnum2) => {
|
|
4292
|
-
FlowDisclosureCredentialSortEnum2["CreatedAt"] = "createdAt";
|
|
4293
|
-
FlowDisclosureCredentialSortEnum2["CredentialUuid"] = "credentialUuid";
|
|
4294
|
-
FlowDisclosureCredentialSortEnum2["IssuerUuid"] = "issuerUuid";
|
|
4295
|
-
FlowDisclosureCredentialSortEnum2["SchemeUuid"] = "schemeUuid";
|
|
4296
|
-
FlowDisclosureCredentialSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4297
|
-
return FlowDisclosureCredentialSortEnum2;
|
|
4298
|
-
})(FlowDisclosureCredentialSortEnum || {});
|
|
4299
|
-
var FlowDisclosureDomainFilteringField = /* @__PURE__ */ ((FlowDisclosureDomainFilteringField2) => {
|
|
4300
|
-
FlowDisclosureDomainFilteringField2["FlowDisclosureUuid"] = "flowDisclosureUuid";
|
|
4301
|
-
FlowDisclosureDomainFilteringField2["OrganizationDomainUuid"] = "organizationDomainUuid";
|
|
4302
|
-
FlowDisclosureDomainFilteringField2["RedirectPath"] = "redirectPath";
|
|
4303
|
-
FlowDisclosureDomainFilteringField2["Uuid"] = "uuid";
|
|
4304
|
-
return FlowDisclosureDomainFilteringField2;
|
|
4305
|
-
})(FlowDisclosureDomainFilteringField || {});
|
|
4306
|
-
var FlowDisclosureDomainSortEnum = /* @__PURE__ */ ((FlowDisclosureDomainSortEnum2) => {
|
|
4307
|
-
FlowDisclosureDomainSortEnum2["CreatedAt"] = "createdAt";
|
|
4308
|
-
FlowDisclosureDomainSortEnum2["RedirectPath"] = "redirectPath";
|
|
4309
|
-
FlowDisclosureDomainSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4310
|
-
return FlowDisclosureDomainSortEnum2;
|
|
4311
|
-
})(FlowDisclosureDomainSortEnum || {});
|
|
4312
|
-
var FlowDisclosureFilteringField = /* @__PURE__ */ ((FlowDisclosureFilteringField2) => {
|
|
4313
|
-
FlowDisclosureFilteringField2["Name"] = "name";
|
|
4314
|
-
FlowDisclosureFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
4315
|
-
FlowDisclosureFilteringField2["State"] = "state";
|
|
4316
|
-
FlowDisclosureFilteringField2["Uuid"] = "uuid";
|
|
4317
|
-
return FlowDisclosureFilteringField2;
|
|
4318
|
-
})(FlowDisclosureFilteringField || {});
|
|
4319
|
-
var FlowDisclosureGroupFilteringField = /* @__PURE__ */ ((FlowDisclosureGroupFilteringField2) => {
|
|
4320
|
-
FlowDisclosureGroupFilteringField2["FlowDisclosureProviderUuid"] = "flowDisclosureProviderUuid";
|
|
4321
|
-
FlowDisclosureGroupFilteringField2["Name"] = "name";
|
|
4322
|
-
FlowDisclosureGroupFilteringField2["Uuid"] = "uuid";
|
|
4323
|
-
return FlowDisclosureGroupFilteringField2;
|
|
4324
|
-
})(FlowDisclosureGroupFilteringField || {});
|
|
4325
|
-
var FlowDisclosureGroupSortEnum = /* @__PURE__ */ ((FlowDisclosureGroupSortEnum2) => {
|
|
4326
|
-
FlowDisclosureGroupSortEnum2["CreatedAt"] = "createdAt";
|
|
4327
|
-
FlowDisclosureGroupSortEnum2["Name"] = "name";
|
|
4328
|
-
FlowDisclosureGroupSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4329
|
-
return FlowDisclosureGroupSortEnum2;
|
|
4330
|
-
})(FlowDisclosureGroupSortEnum || {});
|
|
4331
|
-
var FlowDisclosureLabelFilteringField = /* @__PURE__ */ ((FlowDisclosureLabelFilteringField2) => {
|
|
4332
|
-
FlowDisclosureLabelFilteringField2["FlowDisclosureUuid"] = "flowDisclosureUuid";
|
|
4333
|
-
FlowDisclosureLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
4334
|
-
FlowDisclosureLabelFilteringField2["Uuid"] = "uuid";
|
|
4335
|
-
return FlowDisclosureLabelFilteringField2;
|
|
4336
|
-
})(FlowDisclosureLabelFilteringField || {});
|
|
4337
|
-
var FlowDisclosureLabelSortEnum = /* @__PURE__ */ ((FlowDisclosureLabelSortEnum2) => {
|
|
4338
|
-
FlowDisclosureLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
4339
|
-
FlowDisclosureLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4340
|
-
return FlowDisclosureLabelSortEnum2;
|
|
4341
|
-
})(FlowDisclosureLabelSortEnum || {});
|
|
4342
|
-
var FlowDisclosureMappingFilteringField = /* @__PURE__ */ ((FlowDisclosureMappingFilteringField2) => {
|
|
4343
|
-
FlowDisclosureMappingFilteringField2["FlowDisclosureUuid"] = "flowDisclosureUuid";
|
|
4344
|
-
FlowDisclosureMappingFilteringField2["MappingVerificationUuid"] = "mappingVerificationUuid";
|
|
4345
|
-
FlowDisclosureMappingFilteringField2["Uuid"] = "uuid";
|
|
4346
|
-
return FlowDisclosureMappingFilteringField2;
|
|
4347
|
-
})(FlowDisclosureMappingFilteringField || {});
|
|
4348
|
-
var FlowDisclosureMappingSortEnum = /* @__PURE__ */ ((FlowDisclosureMappingSortEnum2) => {
|
|
4349
|
-
FlowDisclosureMappingSortEnum2["CreatedAt"] = "createdAt";
|
|
4350
|
-
FlowDisclosureMappingSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4351
|
-
return FlowDisclosureMappingSortEnum2;
|
|
4352
|
-
})(FlowDisclosureMappingSortEnum || {});
|
|
4353
|
-
var FlowDisclosureProviderConfigurationFilteringField = /* @__PURE__ */ ((FlowDisclosureProviderConfigurationFilteringField2) => {
|
|
4354
|
-
FlowDisclosureProviderConfigurationFilteringField2["FlowDisclosureProviderUuid"] = "flowDisclosureProviderUuid";
|
|
4355
|
-
return FlowDisclosureProviderConfigurationFilteringField2;
|
|
4356
|
-
})(FlowDisclosureProviderConfigurationFilteringField || {});
|
|
4357
|
-
var FlowDisclosureProviderConfigurationNlWalletFilteringField = /* @__PURE__ */ ((FlowDisclosureProviderConfigurationNlWalletFilteringField2) => {
|
|
4358
|
-
FlowDisclosureProviderConfigurationNlWalletFilteringField2["FlowDisclosureProviderConfigurationUuid"] = "flowDisclosureProviderConfigurationUuid";
|
|
4359
|
-
FlowDisclosureProviderConfigurationNlWalletFilteringField2["Intent"] = "intent";
|
|
4360
|
-
return FlowDisclosureProviderConfigurationNlWalletFilteringField2;
|
|
4361
|
-
})(FlowDisclosureProviderConfigurationNlWalletFilteringField || {});
|
|
4362
|
-
var FlowDisclosureProviderConfigurationNlWalletSortEnum = /* @__PURE__ */ ((FlowDisclosureProviderConfigurationNlWalletSortEnum2) => {
|
|
4363
|
-
FlowDisclosureProviderConfigurationNlWalletSortEnum2["CreatedAt"] = "createdAt";
|
|
4364
|
-
return FlowDisclosureProviderConfigurationNlWalletSortEnum2;
|
|
4365
|
-
})(FlowDisclosureProviderConfigurationNlWalletSortEnum || {});
|
|
4366
|
-
var FlowDisclosureProviderConfigurationSortEnum = /* @__PURE__ */ ((FlowDisclosureProviderConfigurationSortEnum2) => {
|
|
4367
|
-
FlowDisclosureProviderConfigurationSortEnum2["CreatedAt"] = "createdAt";
|
|
4368
|
-
return FlowDisclosureProviderConfigurationSortEnum2;
|
|
4369
|
-
})(FlowDisclosureProviderConfigurationSortEnum || {});
|
|
4370
|
-
var FlowDisclosureProviderFilteringField = /* @__PURE__ */ ((FlowDisclosureProviderFilteringField2) => {
|
|
4371
|
-
FlowDisclosureProviderFilteringField2["FlowDisclosureUuid"] = "flowDisclosureUuid";
|
|
4372
|
-
FlowDisclosureProviderFilteringField2["ProviderAppUuid"] = "providerAppUuid";
|
|
4373
|
-
FlowDisclosureProviderFilteringField2["Uuid"] = "uuid";
|
|
4374
|
-
return FlowDisclosureProviderFilteringField2;
|
|
4375
|
-
})(FlowDisclosureProviderFilteringField || {});
|
|
4376
|
-
var FlowDisclosureProviderSortEnum = /* @__PURE__ */ ((FlowDisclosureProviderSortEnum2) => {
|
|
4377
|
-
FlowDisclosureProviderSortEnum2["CreatedAt"] = "createdAt";
|
|
4378
|
-
FlowDisclosureProviderSortEnum2["ProviderAppUuid"] = "providerAppUuid";
|
|
4379
|
-
FlowDisclosureProviderSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4380
|
-
return FlowDisclosureProviderSortEnum2;
|
|
4381
|
-
})(FlowDisclosureProviderSortEnum || {});
|
|
4382
|
-
var FlowDisclosureSortEnum = /* @__PURE__ */ ((FlowDisclosureSortEnum2) => {
|
|
4383
|
-
FlowDisclosureSortEnum2["CreatedAt"] = "createdAt";
|
|
4384
|
-
FlowDisclosureSortEnum2["Name"] = "name";
|
|
4385
|
-
FlowDisclosureSortEnum2["State"] = "state";
|
|
4386
|
-
FlowDisclosureSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4387
|
-
return FlowDisclosureSortEnum2;
|
|
4388
|
-
})(FlowDisclosureSortEnum || {});
|
|
4389
|
-
var FlowDisclosureState = /* @__PURE__ */ ((FlowDisclosureState2) => {
|
|
4390
|
-
FlowDisclosureState2["Active"] = "ACTIVE";
|
|
4391
|
-
FlowDisclosureState2["Inactive"] = "INACTIVE";
|
|
4392
|
-
return FlowDisclosureState2;
|
|
4393
|
-
})(FlowDisclosureState || {});
|
|
4394
|
-
var FlowEventFilteringField = /* @__PURE__ */ ((FlowEventFilteringField2) => {
|
|
4395
|
-
FlowEventFilteringField2["CreatedAt"] = "createdAt";
|
|
4396
|
-
FlowEventFilteringField2["EventUrn"] = "eventURN";
|
|
4397
|
-
FlowEventFilteringField2["FlowType"] = "flowType";
|
|
4398
|
-
FlowEventFilteringField2["FlowUuid"] = "flowUuid";
|
|
4399
|
-
FlowEventFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
4400
|
-
FlowEventFilteringField2["RequestUuid"] = "requestUuid";
|
|
4401
|
-
return FlowEventFilteringField2;
|
|
4402
|
-
})(FlowEventFilteringField || {});
|
|
4403
|
-
var FlowEventSortEnum = /* @__PURE__ */ ((FlowEventSortEnum2) => {
|
|
4404
|
-
FlowEventSortEnum2["CreatedAt"] = "createdAt";
|
|
4405
|
-
FlowEventSortEnum2["EventUrn"] = "eventUrn";
|
|
4406
|
-
return FlowEventSortEnum2;
|
|
4407
|
-
})(FlowEventSortEnum || {});
|
|
4408
|
-
var FlowIssuanceAction = /* @__PURE__ */ ((FlowIssuanceAction2) => {
|
|
4409
|
-
FlowIssuanceAction2["Activate"] = "ACTIVATE";
|
|
4410
|
-
FlowIssuanceAction2["Deactivate"] = "DEACTIVATE";
|
|
4411
|
-
return FlowIssuanceAction2;
|
|
4412
|
-
})(FlowIssuanceAction || {});
|
|
4413
|
-
var FlowIssuanceAttributeFilteringField = /* @__PURE__ */ ((FlowIssuanceAttributeFilteringField2) => {
|
|
4414
|
-
FlowIssuanceAttributeFilteringField2["AttributeUrn"] = "attributeURN";
|
|
4415
|
-
FlowIssuanceAttributeFilteringField2["FlowIssuanceCredentialUuid"] = "flowIssuanceCredentialUuid";
|
|
4416
|
-
FlowIssuanceAttributeFilteringField2["Uuid"] = "uuid";
|
|
4417
|
-
return FlowIssuanceAttributeFilteringField2;
|
|
4418
|
-
})(FlowIssuanceAttributeFilteringField || {});
|
|
4419
|
-
var FlowIssuanceAttributeSortEnum = /* @__PURE__ */ ((FlowIssuanceAttributeSortEnum2) => {
|
|
4420
|
-
FlowIssuanceAttributeSortEnum2["AttributeUrn"] = "attributeURN";
|
|
4421
|
-
FlowIssuanceAttributeSortEnum2["CreatedAt"] = "createdAt";
|
|
4422
|
-
FlowIssuanceAttributeSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4423
|
-
return FlowIssuanceAttributeSortEnum2;
|
|
4424
|
-
})(FlowIssuanceAttributeSortEnum || {});
|
|
4425
|
-
var FlowIssuanceBrandFilteringField = /* @__PURE__ */ ((FlowIssuanceBrandFilteringField2) => {
|
|
4426
|
-
FlowIssuanceBrandFilteringField2["FlowIssuanceUuid"] = "flowIssuanceUuid";
|
|
4427
|
-
FlowIssuanceBrandFilteringField2["OrganizationBrandUuid"] = "organizationBrandUuid";
|
|
4428
|
-
FlowIssuanceBrandFilteringField2["RedirectPath"] = "redirectPath";
|
|
4429
|
-
FlowIssuanceBrandFilteringField2["Uuid"] = "uuid";
|
|
4430
|
-
return FlowIssuanceBrandFilteringField2;
|
|
4431
|
-
})(FlowIssuanceBrandFilteringField || {});
|
|
4432
|
-
var FlowIssuanceBrandSortEnum = /* @__PURE__ */ ((FlowIssuanceBrandSortEnum2) => {
|
|
4433
|
-
FlowIssuanceBrandSortEnum2["CreatedAt"] = "createdAt";
|
|
4434
|
-
FlowIssuanceBrandSortEnum2["RedirectPath"] = "redirectPath";
|
|
4435
|
-
FlowIssuanceBrandSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4436
|
-
return FlowIssuanceBrandSortEnum2;
|
|
4437
|
-
})(FlowIssuanceBrandSortEnum || {});
|
|
4438
|
-
var FlowIssuanceCredentialFilteringField = /* @__PURE__ */ ((FlowIssuanceCredentialFilteringField2) => {
|
|
4439
|
-
FlowIssuanceCredentialFilteringField2["CredentialUrn"] = "credentialURN";
|
|
4440
|
-
FlowIssuanceCredentialFilteringField2["FlowIssuanceProviderUuid"] = "flowIssuanceProviderUuid";
|
|
4441
|
-
FlowIssuanceCredentialFilteringField2["IssuerUrn"] = "issuerURN";
|
|
4442
|
-
FlowIssuanceCredentialFilteringField2["MetaType"] = "metaType";
|
|
4443
|
-
FlowIssuanceCredentialFilteringField2["SchemeUrn"] = "schemeURN";
|
|
4444
|
-
FlowIssuanceCredentialFilteringField2["Uuid"] = "uuid";
|
|
4445
|
-
return FlowIssuanceCredentialFilteringField2;
|
|
4446
|
-
})(FlowIssuanceCredentialFilteringField || {});
|
|
4447
|
-
var FlowIssuanceCredentialMetaDatakeeperFilteringField = /* @__PURE__ */ ((FlowIssuanceCredentialMetaDatakeeperFilteringField2) => {
|
|
4448
|
-
FlowIssuanceCredentialMetaDatakeeperFilteringField2["Context"] = "context";
|
|
4449
|
-
FlowIssuanceCredentialMetaDatakeeperFilteringField2["FlowIssuanceCredentialMetaUuid"] = "flowIssuanceCredentialMetaUuid";
|
|
4450
|
-
return FlowIssuanceCredentialMetaDatakeeperFilteringField2;
|
|
4451
|
-
})(FlowIssuanceCredentialMetaDatakeeperFilteringField || {});
|
|
4452
|
-
var FlowIssuanceCredentialMetaDatakeeperSortEnum = /* @__PURE__ */ ((FlowIssuanceCredentialMetaDatakeeperSortEnum2) => {
|
|
4453
|
-
FlowIssuanceCredentialMetaDatakeeperSortEnum2["CreatedAt"] = "createdAt";
|
|
4454
|
-
return FlowIssuanceCredentialMetaDatakeeperSortEnum2;
|
|
4455
|
-
})(FlowIssuanceCredentialMetaDatakeeperSortEnum || {});
|
|
4456
|
-
var FlowIssuanceCredentialMetaFilteringField = /* @__PURE__ */ ((FlowIssuanceCredentialMetaFilteringField2) => {
|
|
4457
|
-
FlowIssuanceCredentialMetaFilteringField2["FlowIssuanceCredentialUuid"] = "flowIssuanceCredentialUuid";
|
|
4458
|
-
return FlowIssuanceCredentialMetaFilteringField2;
|
|
4459
|
-
})(FlowIssuanceCredentialMetaFilteringField || {});
|
|
4460
|
-
var FlowIssuanceCredentialMetaSortEnum = /* @__PURE__ */ ((FlowIssuanceCredentialMetaSortEnum2) => {
|
|
4461
|
-
FlowIssuanceCredentialMetaSortEnum2["CreatedAt"] = "createdAt";
|
|
4462
|
-
return FlowIssuanceCredentialMetaSortEnum2;
|
|
4463
|
-
})(FlowIssuanceCredentialMetaSortEnum || {});
|
|
4464
|
-
var FlowIssuanceCredentialMetaType = /* @__PURE__ */ ((FlowIssuanceCredentialMetaType2) => {
|
|
4465
|
-
FlowIssuanceCredentialMetaType2["Datakeeper"] = "DATAKEEPER";
|
|
4466
|
-
FlowIssuanceCredentialMetaType2["None"] = "NONE";
|
|
4467
|
-
FlowIssuanceCredentialMetaType2["Yivi"] = "YIVI";
|
|
4468
|
-
return FlowIssuanceCredentialMetaType2;
|
|
4469
|
-
})(FlowIssuanceCredentialMetaType || {});
|
|
4470
|
-
var FlowIssuanceCredentialMetaYiviFilteringField = /* @__PURE__ */ ((FlowIssuanceCredentialMetaYiviFilteringField2) => {
|
|
4471
|
-
FlowIssuanceCredentialMetaYiviFilteringField2["FlowIssuanceCredentialMetaUuid"] = "flowIssuanceCredentialMetaUuid";
|
|
4472
|
-
return FlowIssuanceCredentialMetaYiviFilteringField2;
|
|
4473
|
-
})(FlowIssuanceCredentialMetaYiviFilteringField || {});
|
|
4474
|
-
var FlowIssuanceCredentialMetaYiviSortEnum = /* @__PURE__ */ ((FlowIssuanceCredentialMetaYiviSortEnum2) => {
|
|
4475
|
-
FlowIssuanceCredentialMetaYiviSortEnum2["CreatedAt"] = "createdAt";
|
|
4476
|
-
return FlowIssuanceCredentialMetaYiviSortEnum2;
|
|
4477
|
-
})(FlowIssuanceCredentialMetaYiviSortEnum || {});
|
|
4478
|
-
var FlowIssuanceCredentialSortEnum = /* @__PURE__ */ ((FlowIssuanceCredentialSortEnum2) => {
|
|
4479
|
-
FlowIssuanceCredentialSortEnum2["CreatedAt"] = "createdAt";
|
|
4480
|
-
FlowIssuanceCredentialSortEnum2["CredentialUrn"] = "credentialURN";
|
|
4481
|
-
FlowIssuanceCredentialSortEnum2["IssuerUrn"] = "issuerURN";
|
|
4482
|
-
FlowIssuanceCredentialSortEnum2["SchemeUrn"] = "schemeURN";
|
|
4483
|
-
FlowIssuanceCredentialSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4484
|
-
return FlowIssuanceCredentialSortEnum2;
|
|
4485
|
-
})(FlowIssuanceCredentialSortEnum || {});
|
|
4486
|
-
var FlowIssuanceDomainFilteringField = /* @__PURE__ */ ((FlowIssuanceDomainFilteringField2) => {
|
|
4487
|
-
FlowIssuanceDomainFilteringField2["FlowIssuanceUuid"] = "flowIssuanceUuid";
|
|
4488
|
-
FlowIssuanceDomainFilteringField2["OrganizationDomainUuid"] = "organizationDomainUuid";
|
|
4489
|
-
FlowIssuanceDomainFilteringField2["RedirectPath"] = "redirectPath";
|
|
4490
|
-
FlowIssuanceDomainFilteringField2["Uuid"] = "uuid";
|
|
4491
|
-
return FlowIssuanceDomainFilteringField2;
|
|
4492
|
-
})(FlowIssuanceDomainFilteringField || {});
|
|
4493
|
-
var FlowIssuanceDomainSortEnum = /* @__PURE__ */ ((FlowIssuanceDomainSortEnum2) => {
|
|
4494
|
-
FlowIssuanceDomainSortEnum2["CreatedAt"] = "createdAt";
|
|
4495
|
-
FlowIssuanceDomainSortEnum2["RedirectPath"] = "redirectPath";
|
|
4496
|
-
FlowIssuanceDomainSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4497
|
-
return FlowIssuanceDomainSortEnum2;
|
|
4498
|
-
})(FlowIssuanceDomainSortEnum || {});
|
|
4499
|
-
var FlowIssuanceFilteringField = /* @__PURE__ */ ((FlowIssuanceFilteringField2) => {
|
|
4500
|
-
FlowIssuanceFilteringField2["Name"] = "name";
|
|
4501
|
-
FlowIssuanceFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
4502
|
-
FlowIssuanceFilteringField2["State"] = "state";
|
|
4503
|
-
FlowIssuanceFilteringField2["Uuid"] = "uuid";
|
|
4504
|
-
return FlowIssuanceFilteringField2;
|
|
4505
|
-
})(FlowIssuanceFilteringField || {});
|
|
4506
|
-
var FlowIssuanceLabelFilteringField = /* @__PURE__ */ ((FlowIssuanceLabelFilteringField2) => {
|
|
4507
|
-
FlowIssuanceLabelFilteringField2["FlowIssuanceUuid"] = "flowIssuanceUuid";
|
|
4508
|
-
FlowIssuanceLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
4509
|
-
FlowIssuanceLabelFilteringField2["Uuid"] = "uuid";
|
|
4510
|
-
return FlowIssuanceLabelFilteringField2;
|
|
4511
|
-
})(FlowIssuanceLabelFilteringField || {});
|
|
4512
|
-
var FlowIssuanceLabelSortEnum = /* @__PURE__ */ ((FlowIssuanceLabelSortEnum2) => {
|
|
4513
|
-
FlowIssuanceLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
4514
|
-
FlowIssuanceLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4515
|
-
return FlowIssuanceLabelSortEnum2;
|
|
4516
|
-
})(FlowIssuanceLabelSortEnum || {});
|
|
4517
|
-
var FlowIssuanceMappingFilteringField = /* @__PURE__ */ ((FlowIssuanceMappingFilteringField2) => {
|
|
4518
|
-
FlowIssuanceMappingFilteringField2["FlowIssuanceUuid"] = "flowIssuanceUuid";
|
|
4519
|
-
FlowIssuanceMappingFilteringField2["MappingIssuanceUuid"] = "mappingIssuanceUuid";
|
|
4520
|
-
FlowIssuanceMappingFilteringField2["Uuid"] = "uuid";
|
|
4521
|
-
return FlowIssuanceMappingFilteringField2;
|
|
4522
|
-
})(FlowIssuanceMappingFilteringField || {});
|
|
4523
|
-
var FlowIssuanceMappingSortEnum = /* @__PURE__ */ ((FlowIssuanceMappingSortEnum2) => {
|
|
4524
|
-
FlowIssuanceMappingSortEnum2["CreatedAt"] = "createdAt";
|
|
4525
|
-
FlowIssuanceMappingSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4526
|
-
return FlowIssuanceMappingSortEnum2;
|
|
4527
|
-
})(FlowIssuanceMappingSortEnum || {});
|
|
4528
|
-
var FlowIssuanceProviderFilteringField = /* @__PURE__ */ ((FlowIssuanceProviderFilteringField2) => {
|
|
4529
|
-
FlowIssuanceProviderFilteringField2["FlowIssuanceUuid"] = "flowIssuanceUuid";
|
|
4530
|
-
FlowIssuanceProviderFilteringField2["ProviderAppUuid"] = "providerAppUuid";
|
|
4531
|
-
FlowIssuanceProviderFilteringField2["Uuid"] = "uuid";
|
|
4532
|
-
return FlowIssuanceProviderFilteringField2;
|
|
4533
|
-
})(FlowIssuanceProviderFilteringField || {});
|
|
4534
|
-
var FlowIssuanceProviderSortEnum = /* @__PURE__ */ ((FlowIssuanceProviderSortEnum2) => {
|
|
4535
|
-
FlowIssuanceProviderSortEnum2["CreatedAt"] = "createdAt";
|
|
4536
|
-
FlowIssuanceProviderSortEnum2["ProviderAppUuid"] = "providerAppUuid";
|
|
4537
|
-
FlowIssuanceProviderSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4538
|
-
return FlowIssuanceProviderSortEnum2;
|
|
4539
|
-
})(FlowIssuanceProviderSortEnum || {});
|
|
4540
|
-
var FlowIssuanceSortEnum = /* @__PURE__ */ ((FlowIssuanceSortEnum2) => {
|
|
4541
|
-
FlowIssuanceSortEnum2["CreatedAt"] = "createdAt";
|
|
4542
|
-
FlowIssuanceSortEnum2["Name"] = "name";
|
|
4543
|
-
FlowIssuanceSortEnum2["State"] = "state";
|
|
4544
|
-
FlowIssuanceSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4545
|
-
return FlowIssuanceSortEnum2;
|
|
4546
|
-
})(FlowIssuanceSortEnum || {});
|
|
4547
|
-
var FlowIssuanceState = /* @__PURE__ */ ((FlowIssuanceState2) => {
|
|
4548
|
-
FlowIssuanceState2["Active"] = "ACTIVE";
|
|
4549
|
-
FlowIssuanceState2["Inactive"] = "INACTIVE";
|
|
4550
|
-
return FlowIssuanceState2;
|
|
4551
|
-
})(FlowIssuanceState || {});
|
|
4552
|
-
var FlowSignatureAction = /* @__PURE__ */ ((FlowSignatureAction2) => {
|
|
4553
|
-
FlowSignatureAction2["Activate"] = "ACTIVATE";
|
|
4554
|
-
FlowSignatureAction2["Deactivate"] = "DEACTIVATE";
|
|
4555
|
-
return FlowSignatureAction2;
|
|
4556
|
-
})(FlowSignatureAction || {});
|
|
4557
|
-
var FlowSignatureAttributeFilteringField = /* @__PURE__ */ ((FlowSignatureAttributeFilteringField2) => {
|
|
4558
|
-
FlowSignatureAttributeFilteringField2["AttributeUuid"] = "attributeUuid";
|
|
4559
|
-
FlowSignatureAttributeFilteringField2["FlowSignatureCredentialUuid"] = "flowSignatureCredentialUuid";
|
|
4560
|
-
FlowSignatureAttributeFilteringField2["Uuid"] = "uuid";
|
|
4561
|
-
return FlowSignatureAttributeFilteringField2;
|
|
4562
|
-
})(FlowSignatureAttributeFilteringField || {});
|
|
4563
|
-
var FlowSignatureAttributeSortEnum = /* @__PURE__ */ ((FlowSignatureAttributeSortEnum2) => {
|
|
4564
|
-
FlowSignatureAttributeSortEnum2["AttributeUuid"] = "attributeUuid";
|
|
4565
|
-
FlowSignatureAttributeSortEnum2["CreatedAt"] = "createdAt";
|
|
4566
|
-
FlowSignatureAttributeSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4567
|
-
return FlowSignatureAttributeSortEnum2;
|
|
4568
|
-
})(FlowSignatureAttributeSortEnum || {});
|
|
4569
|
-
var FlowSignatureBrandFilteringField = /* @__PURE__ */ ((FlowSignatureBrandFilteringField2) => {
|
|
4570
|
-
FlowSignatureBrandFilteringField2["FlowSignatureUuid"] = "flowSignatureUuid";
|
|
4571
|
-
FlowSignatureBrandFilteringField2["OrganizationBrandUuid"] = "organizationBrandUuid";
|
|
4572
|
-
FlowSignatureBrandFilteringField2["RedirectPath"] = "redirectPath";
|
|
4573
|
-
FlowSignatureBrandFilteringField2["Uuid"] = "uuid";
|
|
4574
|
-
return FlowSignatureBrandFilteringField2;
|
|
4575
|
-
})(FlowSignatureBrandFilteringField || {});
|
|
4576
|
-
var FlowSignatureBrandSortEnum = /* @__PURE__ */ ((FlowSignatureBrandSortEnum2) => {
|
|
4577
|
-
FlowSignatureBrandSortEnum2["CreatedAt"] = "createdAt";
|
|
4578
|
-
FlowSignatureBrandSortEnum2["RedirectPath"] = "redirectPath";
|
|
4579
|
-
FlowSignatureBrandSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4580
|
-
return FlowSignatureBrandSortEnum2;
|
|
4581
|
-
})(FlowSignatureBrandSortEnum || {});
|
|
4582
|
-
var FlowSignatureCredentialFilteringField = /* @__PURE__ */ ((FlowSignatureCredentialFilteringField2) => {
|
|
4583
|
-
FlowSignatureCredentialFilteringField2["CredentialUuid"] = "credentialUuid";
|
|
4584
|
-
FlowSignatureCredentialFilteringField2["FlowSignatureGroupUuid"] = "flowSignatureGroupUuid";
|
|
4585
|
-
FlowSignatureCredentialFilteringField2["IssuerUuid"] = "issuerUuid";
|
|
4586
|
-
FlowSignatureCredentialFilteringField2["SchemeUuid"] = "schemeUuid";
|
|
4587
|
-
FlowSignatureCredentialFilteringField2["Uuid"] = "uuid";
|
|
4588
|
-
return FlowSignatureCredentialFilteringField2;
|
|
4589
|
-
})(FlowSignatureCredentialFilteringField || {});
|
|
4590
|
-
var FlowSignatureCredentialSortEnum = /* @__PURE__ */ ((FlowSignatureCredentialSortEnum2) => {
|
|
4591
|
-
FlowSignatureCredentialSortEnum2["CreatedAt"] = "createdAt";
|
|
4592
|
-
FlowSignatureCredentialSortEnum2["CredentialUuid"] = "credentialUuid";
|
|
4593
|
-
FlowSignatureCredentialSortEnum2["IssuerUuid"] = "issuerUuid";
|
|
4594
|
-
FlowSignatureCredentialSortEnum2["SchemeUuid"] = "schemeUuid";
|
|
4595
|
-
FlowSignatureCredentialSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4596
|
-
return FlowSignatureCredentialSortEnum2;
|
|
4597
|
-
})(FlowSignatureCredentialSortEnum || {});
|
|
4598
|
-
var FlowSignatureDomainFilteringField = /* @__PURE__ */ ((FlowSignatureDomainFilteringField2) => {
|
|
4599
|
-
FlowSignatureDomainFilteringField2["FlowSignatureUuid"] = "flowSignatureUuid";
|
|
4600
|
-
FlowSignatureDomainFilteringField2["OrganizationDomainUuid"] = "organizationDomainUuid";
|
|
4601
|
-
FlowSignatureDomainFilteringField2["RedirectPath"] = "redirectPath";
|
|
4602
|
-
FlowSignatureDomainFilteringField2["Uuid"] = "uuid";
|
|
4603
|
-
return FlowSignatureDomainFilteringField2;
|
|
4604
|
-
})(FlowSignatureDomainFilteringField || {});
|
|
4605
|
-
var FlowSignatureDomainSortEnum = /* @__PURE__ */ ((FlowSignatureDomainSortEnum2) => {
|
|
4606
|
-
FlowSignatureDomainSortEnum2["CreatedAt"] = "createdAt";
|
|
4607
|
-
FlowSignatureDomainSortEnum2["RedirectPath"] = "redirectPath";
|
|
4608
|
-
FlowSignatureDomainSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4609
|
-
return FlowSignatureDomainSortEnum2;
|
|
4610
|
-
})(FlowSignatureDomainSortEnum || {});
|
|
4611
|
-
var FlowSignatureFilteringField = /* @__PURE__ */ ((FlowSignatureFilteringField2) => {
|
|
4612
|
-
FlowSignatureFilteringField2["Name"] = "name";
|
|
4613
|
-
FlowSignatureFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
4614
|
-
FlowSignatureFilteringField2["State"] = "state";
|
|
4615
|
-
FlowSignatureFilteringField2["Uuid"] = "uuid";
|
|
4616
|
-
return FlowSignatureFilteringField2;
|
|
4617
|
-
})(FlowSignatureFilteringField || {});
|
|
4618
|
-
var FlowSignatureGroupFilteringField = /* @__PURE__ */ ((FlowSignatureGroupFilteringField2) => {
|
|
4619
|
-
FlowSignatureGroupFilteringField2["FlowSignatureProviderUuid"] = "flowSignatureProviderUuid";
|
|
4620
|
-
FlowSignatureGroupFilteringField2["Name"] = "name";
|
|
4621
|
-
FlowSignatureGroupFilteringField2["Uuid"] = "uuid";
|
|
4622
|
-
return FlowSignatureGroupFilteringField2;
|
|
4623
|
-
})(FlowSignatureGroupFilteringField || {});
|
|
4624
|
-
var FlowSignatureGroupSortEnum = /* @__PURE__ */ ((FlowSignatureGroupSortEnum2) => {
|
|
4625
|
-
FlowSignatureGroupSortEnum2["CreatedAt"] = "createdAt";
|
|
4626
|
-
FlowSignatureGroupSortEnum2["Name"] = "name";
|
|
4627
|
-
FlowSignatureGroupSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4628
|
-
return FlowSignatureGroupSortEnum2;
|
|
4629
|
-
})(FlowSignatureGroupSortEnum || {});
|
|
4630
|
-
var FlowSignatureLabelFilteringField = /* @__PURE__ */ ((FlowSignatureLabelFilteringField2) => {
|
|
4631
|
-
FlowSignatureLabelFilteringField2["FlowSignatureUuid"] = "flowSignatureUuid";
|
|
4632
|
-
FlowSignatureLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
4633
|
-
FlowSignatureLabelFilteringField2["Uuid"] = "uuid";
|
|
4634
|
-
return FlowSignatureLabelFilteringField2;
|
|
4635
|
-
})(FlowSignatureLabelFilteringField || {});
|
|
4636
|
-
var FlowSignatureLabelSortEnum = /* @__PURE__ */ ((FlowSignatureLabelSortEnum2) => {
|
|
4637
|
-
FlowSignatureLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
4638
|
-
FlowSignatureLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4639
|
-
return FlowSignatureLabelSortEnum2;
|
|
4640
|
-
})(FlowSignatureLabelSortEnum || {});
|
|
4641
|
-
var FlowSignatureMappingFilteringField = /* @__PURE__ */ ((FlowSignatureMappingFilteringField2) => {
|
|
4642
|
-
FlowSignatureMappingFilteringField2["FlowSignatureUuid"] = "flowSignatureUuid";
|
|
4643
|
-
FlowSignatureMappingFilteringField2["MappingVerificationUuid"] = "mappingVerificationUuid";
|
|
4644
|
-
FlowSignatureMappingFilteringField2["Uuid"] = "uuid";
|
|
4645
|
-
return FlowSignatureMappingFilteringField2;
|
|
4646
|
-
})(FlowSignatureMappingFilteringField || {});
|
|
4647
|
-
var FlowSignatureMappingSortEnum = /* @__PURE__ */ ((FlowSignatureMappingSortEnum2) => {
|
|
4648
|
-
FlowSignatureMappingSortEnum2["CreatedAt"] = "createdAt";
|
|
4649
|
-
FlowSignatureMappingSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4650
|
-
return FlowSignatureMappingSortEnum2;
|
|
4651
|
-
})(FlowSignatureMappingSortEnum || {});
|
|
4652
|
-
var FlowSignatureProviderConfigurationFilteringField = /* @__PURE__ */ ((FlowSignatureProviderConfigurationFilteringField2) => {
|
|
4653
|
-
FlowSignatureProviderConfigurationFilteringField2["FlowSignatureProviderUuid"] = "flowSignatureProviderUuid";
|
|
4654
|
-
return FlowSignatureProviderConfigurationFilteringField2;
|
|
4655
|
-
})(FlowSignatureProviderConfigurationFilteringField || {});
|
|
4656
|
-
var FlowSignatureProviderConfigurationNlWalletFilteringField = /* @__PURE__ */ ((FlowSignatureProviderConfigurationNlWalletFilteringField2) => {
|
|
4657
|
-
FlowSignatureProviderConfigurationNlWalletFilteringField2["FlowSignatureProviderConfigurationUuid"] = "flowSignatureProviderConfigurationUuid";
|
|
4658
|
-
FlowSignatureProviderConfigurationNlWalletFilteringField2["Intent"] = "intent";
|
|
4659
|
-
return FlowSignatureProviderConfigurationNlWalletFilteringField2;
|
|
4660
|
-
})(FlowSignatureProviderConfigurationNlWalletFilteringField || {});
|
|
4661
|
-
var FlowSignatureProviderConfigurationNlWalletSortEnum = /* @__PURE__ */ ((FlowSignatureProviderConfigurationNlWalletSortEnum2) => {
|
|
4662
|
-
FlowSignatureProviderConfigurationNlWalletSortEnum2["CreatedAt"] = "createdAt";
|
|
4663
|
-
return FlowSignatureProviderConfigurationNlWalletSortEnum2;
|
|
4664
|
-
})(FlowSignatureProviderConfigurationNlWalletSortEnum || {});
|
|
4665
|
-
var FlowSignatureProviderConfigurationSortEnum = /* @__PURE__ */ ((FlowSignatureProviderConfigurationSortEnum2) => {
|
|
4666
|
-
FlowSignatureProviderConfigurationSortEnum2["CreatedAt"] = "createdAt";
|
|
4667
|
-
return FlowSignatureProviderConfigurationSortEnum2;
|
|
4668
|
-
})(FlowSignatureProviderConfigurationSortEnum || {});
|
|
4669
|
-
var FlowSignatureProviderFilteringField = /* @__PURE__ */ ((FlowSignatureProviderFilteringField2) => {
|
|
4670
|
-
FlowSignatureProviderFilteringField2["FlowSignatureUuid"] = "flowSignatureUuid";
|
|
4671
|
-
FlowSignatureProviderFilteringField2["ProviderUuid"] = "providerUuid";
|
|
4672
|
-
FlowSignatureProviderFilteringField2["Uuid"] = "uuid";
|
|
4673
|
-
return FlowSignatureProviderFilteringField2;
|
|
4674
|
-
})(FlowSignatureProviderFilteringField || {});
|
|
4675
|
-
var FlowSignatureProviderSortEnum = /* @__PURE__ */ ((FlowSignatureProviderSortEnum2) => {
|
|
4676
|
-
FlowSignatureProviderSortEnum2["CreatedAt"] = "createdAt";
|
|
4677
|
-
FlowSignatureProviderSortEnum2["ProviderUuid"] = "providerUuid";
|
|
4678
|
-
FlowSignatureProviderSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4679
|
-
return FlowSignatureProviderSortEnum2;
|
|
4680
|
-
})(FlowSignatureProviderSortEnum || {});
|
|
4681
|
-
var FlowSignatureSortEnum = /* @__PURE__ */ ((FlowSignatureSortEnum2) => {
|
|
4682
|
-
FlowSignatureSortEnum2["CreatedAt"] = "createdAt";
|
|
4683
|
-
FlowSignatureSortEnum2["Name"] = "name";
|
|
4684
|
-
FlowSignatureSortEnum2["State"] = "state";
|
|
4685
|
-
FlowSignatureSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4686
|
-
return FlowSignatureSortEnum2;
|
|
4687
|
-
})(FlowSignatureSortEnum || {});
|
|
4688
|
-
var FlowSignatureState = /* @__PURE__ */ ((FlowSignatureState2) => {
|
|
4689
|
-
FlowSignatureState2["Active"] = "ACTIVE";
|
|
4690
|
-
FlowSignatureState2["Inactive"] = "INACTIVE";
|
|
4691
|
-
return FlowSignatureState2;
|
|
4692
|
-
})(FlowSignatureState || {});
|
|
4693
4473
|
var FlowType = /* @__PURE__ */ ((FlowType2) => {
|
|
4694
4474
|
FlowType2["Authentication"] = "AUTHENTICATION";
|
|
4695
4475
|
FlowType2["Disclosure"] = "DISCLOSURE";
|
|
@@ -4697,39 +4477,6 @@ var FlowType = /* @__PURE__ */ ((FlowType2) => {
|
|
|
4697
4477
|
FlowType2["Signature"] = "SIGNATURE";
|
|
4698
4478
|
return FlowType2;
|
|
4699
4479
|
})(FlowType || {});
|
|
4700
|
-
var IdentityAttributeLabelFilteringField = /* @__PURE__ */ ((IdentityAttributeLabelFilteringField2) => {
|
|
4701
|
-
IdentityAttributeLabelFilteringField2["AttributeUuid"] = "attributeUuid";
|
|
4702
|
-
IdentityAttributeLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
4703
|
-
IdentityAttributeLabelFilteringField2["Uuid"] = "uuid";
|
|
4704
|
-
return IdentityAttributeLabelFilteringField2;
|
|
4705
|
-
})(IdentityAttributeLabelFilteringField || {});
|
|
4706
|
-
var IdentityAttributeLabelSortEnum = /* @__PURE__ */ ((IdentityAttributeLabelSortEnum2) => {
|
|
4707
|
-
IdentityAttributeLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
4708
|
-
IdentityAttributeLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4709
|
-
return IdentityAttributeLabelSortEnum2;
|
|
4710
|
-
})(IdentityAttributeLabelSortEnum || {});
|
|
4711
|
-
var IdentityCredentialLabelFilteringField = /* @__PURE__ */ ((IdentityCredentialLabelFilteringField2) => {
|
|
4712
|
-
IdentityCredentialLabelFilteringField2["CredentialUuid"] = "credentialUuid";
|
|
4713
|
-
IdentityCredentialLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
4714
|
-
IdentityCredentialLabelFilteringField2["Uuid"] = "uuid";
|
|
4715
|
-
return IdentityCredentialLabelFilteringField2;
|
|
4716
|
-
})(IdentityCredentialLabelFilteringField || {});
|
|
4717
|
-
var IdentityCredentialLabelSortEnum = /* @__PURE__ */ ((IdentityCredentialLabelSortEnum2) => {
|
|
4718
|
-
IdentityCredentialLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
4719
|
-
IdentityCredentialLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4720
|
-
return IdentityCredentialLabelSortEnum2;
|
|
4721
|
-
})(IdentityCredentialLabelSortEnum || {});
|
|
4722
|
-
var IdentityIssuerLabelFilteringField = /* @__PURE__ */ ((IdentityIssuerLabelFilteringField2) => {
|
|
4723
|
-
IdentityIssuerLabelFilteringField2["IssuerUuid"] = "issuerUuid";
|
|
4724
|
-
IdentityIssuerLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
4725
|
-
IdentityIssuerLabelFilteringField2["Uuid"] = "uuid";
|
|
4726
|
-
return IdentityIssuerLabelFilteringField2;
|
|
4727
|
-
})(IdentityIssuerLabelFilteringField || {});
|
|
4728
|
-
var IdentityIssuerLabelSortEnum = /* @__PURE__ */ ((IdentityIssuerLabelSortEnum2) => {
|
|
4729
|
-
IdentityIssuerLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
4730
|
-
IdentityIssuerLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4731
|
-
return IdentityIssuerLabelSortEnum2;
|
|
4732
|
-
})(IdentityIssuerLabelSortEnum || {});
|
|
4733
4480
|
var IdentityModel = /* @__PURE__ */ ((IdentityModel2) => {
|
|
4734
4481
|
IdentityModel2["App"] = "APP";
|
|
4735
4482
|
IdentityModel2["Attribute"] = "ATTRIBUTE";
|
|
@@ -4740,38 +4487,6 @@ var IdentityModel = /* @__PURE__ */ ((IdentityModel2) => {
|
|
|
4740
4487
|
IdentityModel2["Scope"] = "SCOPE";
|
|
4741
4488
|
return IdentityModel2;
|
|
4742
4489
|
})(IdentityModel || {});
|
|
4743
|
-
var IdentityModelType = /* @__PURE__ */ ((IdentityModelType2) => {
|
|
4744
|
-
IdentityModelType2["App"] = "APP";
|
|
4745
|
-
IdentityModelType2["Attribute"] = "ATTRIBUTE";
|
|
4746
|
-
IdentityModelType2["Credential"] = "CREDENTIAL";
|
|
4747
|
-
IdentityModelType2["Issuer"] = "ISSUER";
|
|
4748
|
-
IdentityModelType2["Provider"] = "PROVIDER";
|
|
4749
|
-
IdentityModelType2["Scheme"] = "SCHEME";
|
|
4750
|
-
IdentityModelType2["Scope"] = "SCOPE";
|
|
4751
|
-
return IdentityModelType2;
|
|
4752
|
-
})(IdentityModelType || {});
|
|
4753
|
-
var IdentityProviderLabelFilteringField = /* @__PURE__ */ ((IdentityProviderLabelFilteringField2) => {
|
|
4754
|
-
IdentityProviderLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
4755
|
-
IdentityProviderLabelFilteringField2["ProviderUuid"] = "providerUuid";
|
|
4756
|
-
IdentityProviderLabelFilteringField2["Uuid"] = "uuid";
|
|
4757
|
-
return IdentityProviderLabelFilteringField2;
|
|
4758
|
-
})(IdentityProviderLabelFilteringField || {});
|
|
4759
|
-
var IdentityProviderLabelSortEnum = /* @__PURE__ */ ((IdentityProviderLabelSortEnum2) => {
|
|
4760
|
-
IdentityProviderLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
4761
|
-
IdentityProviderLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4762
|
-
return IdentityProviderLabelSortEnum2;
|
|
4763
|
-
})(IdentityProviderLabelSortEnum || {});
|
|
4764
|
-
var IdentitySchemeLabelFilteringField = /* @__PURE__ */ ((IdentitySchemeLabelFilteringField2) => {
|
|
4765
|
-
IdentitySchemeLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
4766
|
-
IdentitySchemeLabelFilteringField2["SchemeUuid"] = "schemeUuid";
|
|
4767
|
-
IdentitySchemeLabelFilteringField2["Uuid"] = "uuid";
|
|
4768
|
-
return IdentitySchemeLabelFilteringField2;
|
|
4769
|
-
})(IdentitySchemeLabelFilteringField || {});
|
|
4770
|
-
var IdentitySchemeLabelSortEnum = /* @__PURE__ */ ((IdentitySchemeLabelSortEnum2) => {
|
|
4771
|
-
IdentitySchemeLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
4772
|
-
IdentitySchemeLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4773
|
-
return IdentitySchemeLabelSortEnum2;
|
|
4774
|
-
})(IdentitySchemeLabelSortEnum || {});
|
|
4775
4490
|
var Interval = /* @__PURE__ */ ((Interval2) => {
|
|
4776
4491
|
Interval2["Monthly"] = "MONTHLY";
|
|
4777
4492
|
Interval2["None"] = "NONE";
|
|
@@ -4779,6 +4494,163 @@ var Interval = /* @__PURE__ */ ((Interval2) => {
|
|
|
4779
4494
|
Interval2["Yearly"] = "YEARLY";
|
|
4780
4495
|
return Interval2;
|
|
4781
4496
|
})(Interval || {});
|
|
4497
|
+
var IssuanceAction = /* @__PURE__ */ ((IssuanceAction2) => {
|
|
4498
|
+
IssuanceAction2["Activate"] = "ACTIVATE";
|
|
4499
|
+
IssuanceAction2["Deactivate"] = "DEACTIVATE";
|
|
4500
|
+
return IssuanceAction2;
|
|
4501
|
+
})(IssuanceAction || {});
|
|
4502
|
+
var IssuanceActivityFilteringField = /* @__PURE__ */ ((IssuanceActivityFilteringField2) => {
|
|
4503
|
+
IssuanceActivityFilteringField2["CreatedAt"] = "createdAt";
|
|
4504
|
+
IssuanceActivityFilteringField2["EventUrn"] = "eventURN";
|
|
4505
|
+
IssuanceActivityFilteringField2["IssuanceUuid"] = "issuanceUuid";
|
|
4506
|
+
IssuanceActivityFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
4507
|
+
IssuanceActivityFilteringField2["RequestUuid"] = "requestUuid";
|
|
4508
|
+
return IssuanceActivityFilteringField2;
|
|
4509
|
+
})(IssuanceActivityFilteringField || {});
|
|
4510
|
+
var IssuanceActivitySortEnum = /* @__PURE__ */ ((IssuanceActivitySortEnum2) => {
|
|
4511
|
+
IssuanceActivitySortEnum2["CreatedAt"] = "createdAt";
|
|
4512
|
+
IssuanceActivitySortEnum2["EventUrn"] = "eventUrn";
|
|
4513
|
+
return IssuanceActivitySortEnum2;
|
|
4514
|
+
})(IssuanceActivitySortEnum || {});
|
|
4515
|
+
var IssuanceAttributeFilteringField = /* @__PURE__ */ ((IssuanceAttributeFilteringField2) => {
|
|
4516
|
+
IssuanceAttributeFilteringField2["AttributeUrn"] = "attributeURN";
|
|
4517
|
+
IssuanceAttributeFilteringField2["IssuanceCredentialUuid"] = "issuanceCredentialUuid";
|
|
4518
|
+
IssuanceAttributeFilteringField2["Uuid"] = "uuid";
|
|
4519
|
+
return IssuanceAttributeFilteringField2;
|
|
4520
|
+
})(IssuanceAttributeFilteringField || {});
|
|
4521
|
+
var IssuanceAttributeSortEnum = /* @__PURE__ */ ((IssuanceAttributeSortEnum2) => {
|
|
4522
|
+
IssuanceAttributeSortEnum2["AttributeUrn"] = "attributeURN";
|
|
4523
|
+
IssuanceAttributeSortEnum2["CreatedAt"] = "createdAt";
|
|
4524
|
+
IssuanceAttributeSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4525
|
+
return IssuanceAttributeSortEnum2;
|
|
4526
|
+
})(IssuanceAttributeSortEnum || {});
|
|
4527
|
+
var IssuanceBrandFilteringField = /* @__PURE__ */ ((IssuanceBrandFilteringField2) => {
|
|
4528
|
+
IssuanceBrandFilteringField2["IssuanceUuid"] = "issuanceUuid";
|
|
4529
|
+
IssuanceBrandFilteringField2["OrganizationBrandUuid"] = "organizationBrandUuid";
|
|
4530
|
+
IssuanceBrandFilteringField2["RedirectPath"] = "redirectPath";
|
|
4531
|
+
IssuanceBrandFilteringField2["Uuid"] = "uuid";
|
|
4532
|
+
return IssuanceBrandFilteringField2;
|
|
4533
|
+
})(IssuanceBrandFilteringField || {});
|
|
4534
|
+
var IssuanceBrandSortEnum = /* @__PURE__ */ ((IssuanceBrandSortEnum2) => {
|
|
4535
|
+
IssuanceBrandSortEnum2["CreatedAt"] = "createdAt";
|
|
4536
|
+
IssuanceBrandSortEnum2["RedirectPath"] = "redirectPath";
|
|
4537
|
+
IssuanceBrandSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4538
|
+
return IssuanceBrandSortEnum2;
|
|
4539
|
+
})(IssuanceBrandSortEnum || {});
|
|
4540
|
+
var IssuanceCredentialFilteringField = /* @__PURE__ */ ((IssuanceCredentialFilteringField2) => {
|
|
4541
|
+
IssuanceCredentialFilteringField2["CredentialUrn"] = "credentialURN";
|
|
4542
|
+
IssuanceCredentialFilteringField2["IssuanceProviderUuid"] = "issuanceProviderUuid";
|
|
4543
|
+
IssuanceCredentialFilteringField2["IssuerUrn"] = "issuerURN";
|
|
4544
|
+
IssuanceCredentialFilteringField2["MetaType"] = "metaType";
|
|
4545
|
+
IssuanceCredentialFilteringField2["SchemeUrn"] = "schemeURN";
|
|
4546
|
+
IssuanceCredentialFilteringField2["Uuid"] = "uuid";
|
|
4547
|
+
return IssuanceCredentialFilteringField2;
|
|
4548
|
+
})(IssuanceCredentialFilteringField || {});
|
|
4549
|
+
var IssuanceCredentialMetaDatakeeperFilteringField = /* @__PURE__ */ ((IssuanceCredentialMetaDatakeeperFilteringField2) => {
|
|
4550
|
+
IssuanceCredentialMetaDatakeeperFilteringField2["Context"] = "context";
|
|
4551
|
+
IssuanceCredentialMetaDatakeeperFilteringField2["IssuanceCredentialMetaUuid"] = "issuanceCredentialMetaUuid";
|
|
4552
|
+
return IssuanceCredentialMetaDatakeeperFilteringField2;
|
|
4553
|
+
})(IssuanceCredentialMetaDatakeeperFilteringField || {});
|
|
4554
|
+
var IssuanceCredentialMetaDatakeeperSortEnum = /* @__PURE__ */ ((IssuanceCredentialMetaDatakeeperSortEnum2) => {
|
|
4555
|
+
IssuanceCredentialMetaDatakeeperSortEnum2["CreatedAt"] = "createdAt";
|
|
4556
|
+
return IssuanceCredentialMetaDatakeeperSortEnum2;
|
|
4557
|
+
})(IssuanceCredentialMetaDatakeeperSortEnum || {});
|
|
4558
|
+
var IssuanceCredentialMetaFilteringField = /* @__PURE__ */ ((IssuanceCredentialMetaFilteringField2) => {
|
|
4559
|
+
IssuanceCredentialMetaFilteringField2["IssuanceCredentialUuid"] = "issuanceCredentialUuid";
|
|
4560
|
+
return IssuanceCredentialMetaFilteringField2;
|
|
4561
|
+
})(IssuanceCredentialMetaFilteringField || {});
|
|
4562
|
+
var IssuanceCredentialMetaSortEnum = /* @__PURE__ */ ((IssuanceCredentialMetaSortEnum2) => {
|
|
4563
|
+
IssuanceCredentialMetaSortEnum2["CreatedAt"] = "createdAt";
|
|
4564
|
+
return IssuanceCredentialMetaSortEnum2;
|
|
4565
|
+
})(IssuanceCredentialMetaSortEnum || {});
|
|
4566
|
+
var IssuanceCredentialMetaType = /* @__PURE__ */ ((IssuanceCredentialMetaType2) => {
|
|
4567
|
+
IssuanceCredentialMetaType2["Datakeeper"] = "DATAKEEPER";
|
|
4568
|
+
IssuanceCredentialMetaType2["None"] = "NONE";
|
|
4569
|
+
IssuanceCredentialMetaType2["Yivi"] = "YIVI";
|
|
4570
|
+
return IssuanceCredentialMetaType2;
|
|
4571
|
+
})(IssuanceCredentialMetaType || {});
|
|
4572
|
+
var IssuanceCredentialMetaYiviFilteringField = /* @__PURE__ */ ((IssuanceCredentialMetaYiviFilteringField2) => {
|
|
4573
|
+
IssuanceCredentialMetaYiviFilteringField2["IssuanceCredentialMetaUuid"] = "issuanceCredentialMetaUuid";
|
|
4574
|
+
return IssuanceCredentialMetaYiviFilteringField2;
|
|
4575
|
+
})(IssuanceCredentialMetaYiviFilteringField || {});
|
|
4576
|
+
var IssuanceCredentialMetaYiviSortEnum = /* @__PURE__ */ ((IssuanceCredentialMetaYiviSortEnum2) => {
|
|
4577
|
+
IssuanceCredentialMetaYiviSortEnum2["CreatedAt"] = "createdAt";
|
|
4578
|
+
return IssuanceCredentialMetaYiviSortEnum2;
|
|
4579
|
+
})(IssuanceCredentialMetaYiviSortEnum || {});
|
|
4580
|
+
var IssuanceCredentialSortEnum = /* @__PURE__ */ ((IssuanceCredentialSortEnum2) => {
|
|
4581
|
+
IssuanceCredentialSortEnum2["CreatedAt"] = "createdAt";
|
|
4582
|
+
IssuanceCredentialSortEnum2["CredentialUrn"] = "credentialURN";
|
|
4583
|
+
IssuanceCredentialSortEnum2["IssuerUrn"] = "issuerURN";
|
|
4584
|
+
IssuanceCredentialSortEnum2["SchemeUrn"] = "schemeURN";
|
|
4585
|
+
IssuanceCredentialSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4586
|
+
return IssuanceCredentialSortEnum2;
|
|
4587
|
+
})(IssuanceCredentialSortEnum || {});
|
|
4588
|
+
var IssuanceDomainFilteringField = /* @__PURE__ */ ((IssuanceDomainFilteringField2) => {
|
|
4589
|
+
IssuanceDomainFilteringField2["IssuanceUuid"] = "issuanceUuid";
|
|
4590
|
+
IssuanceDomainFilteringField2["OrganizationDomainUuid"] = "organizationDomainUuid";
|
|
4591
|
+
IssuanceDomainFilteringField2["RedirectPath"] = "redirectPath";
|
|
4592
|
+
IssuanceDomainFilteringField2["Uuid"] = "uuid";
|
|
4593
|
+
return IssuanceDomainFilteringField2;
|
|
4594
|
+
})(IssuanceDomainFilteringField || {});
|
|
4595
|
+
var IssuanceDomainSortEnum = /* @__PURE__ */ ((IssuanceDomainSortEnum2) => {
|
|
4596
|
+
IssuanceDomainSortEnum2["CreatedAt"] = "createdAt";
|
|
4597
|
+
IssuanceDomainSortEnum2["RedirectPath"] = "redirectPath";
|
|
4598
|
+
IssuanceDomainSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4599
|
+
return IssuanceDomainSortEnum2;
|
|
4600
|
+
})(IssuanceDomainSortEnum || {});
|
|
4601
|
+
var IssuanceFilteringField = /* @__PURE__ */ ((IssuanceFilteringField2) => {
|
|
4602
|
+
IssuanceFilteringField2["Name"] = "name";
|
|
4603
|
+
IssuanceFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
4604
|
+
IssuanceFilteringField2["State"] = "state";
|
|
4605
|
+
IssuanceFilteringField2["Uuid"] = "uuid";
|
|
4606
|
+
return IssuanceFilteringField2;
|
|
4607
|
+
})(IssuanceFilteringField || {});
|
|
4608
|
+
var IssuanceLabelFilteringField = /* @__PURE__ */ ((IssuanceLabelFilteringField2) => {
|
|
4609
|
+
IssuanceLabelFilteringField2["IssuanceUuid"] = "issuanceUuid";
|
|
4610
|
+
IssuanceLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
4611
|
+
IssuanceLabelFilteringField2["Uuid"] = "uuid";
|
|
4612
|
+
return IssuanceLabelFilteringField2;
|
|
4613
|
+
})(IssuanceLabelFilteringField || {});
|
|
4614
|
+
var IssuanceLabelSortEnum = /* @__PURE__ */ ((IssuanceLabelSortEnum2) => {
|
|
4615
|
+
IssuanceLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
4616
|
+
IssuanceLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4617
|
+
return IssuanceLabelSortEnum2;
|
|
4618
|
+
})(IssuanceLabelSortEnum || {});
|
|
4619
|
+
var IssuanceMappingFilteringField = /* @__PURE__ */ ((IssuanceMappingFilteringField2) => {
|
|
4620
|
+
IssuanceMappingFilteringField2["IssuanceUuid"] = "issuanceUuid";
|
|
4621
|
+
IssuanceMappingFilteringField2["MappingIssuanceUuid"] = "mappingIssuanceUuid";
|
|
4622
|
+
IssuanceMappingFilteringField2["Uuid"] = "uuid";
|
|
4623
|
+
return IssuanceMappingFilteringField2;
|
|
4624
|
+
})(IssuanceMappingFilteringField || {});
|
|
4625
|
+
var IssuanceMappingSortEnum = /* @__PURE__ */ ((IssuanceMappingSortEnum2) => {
|
|
4626
|
+
IssuanceMappingSortEnum2["CreatedAt"] = "createdAt";
|
|
4627
|
+
IssuanceMappingSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4628
|
+
return IssuanceMappingSortEnum2;
|
|
4629
|
+
})(IssuanceMappingSortEnum || {});
|
|
4630
|
+
var IssuanceProviderFilteringField = /* @__PURE__ */ ((IssuanceProviderFilteringField2) => {
|
|
4631
|
+
IssuanceProviderFilteringField2["IssuanceUuid"] = "issuanceUuid";
|
|
4632
|
+
IssuanceProviderFilteringField2["ProviderAppUuid"] = "providerAppUuid";
|
|
4633
|
+
IssuanceProviderFilteringField2["Uuid"] = "uuid";
|
|
4634
|
+
return IssuanceProviderFilteringField2;
|
|
4635
|
+
})(IssuanceProviderFilteringField || {});
|
|
4636
|
+
var IssuanceProviderSortEnum = /* @__PURE__ */ ((IssuanceProviderSortEnum2) => {
|
|
4637
|
+
IssuanceProviderSortEnum2["CreatedAt"] = "createdAt";
|
|
4638
|
+
IssuanceProviderSortEnum2["ProviderAppUuid"] = "providerAppUuid";
|
|
4639
|
+
IssuanceProviderSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4640
|
+
return IssuanceProviderSortEnum2;
|
|
4641
|
+
})(IssuanceProviderSortEnum || {});
|
|
4642
|
+
var IssuanceSortEnum = /* @__PURE__ */ ((IssuanceSortEnum2) => {
|
|
4643
|
+
IssuanceSortEnum2["CreatedAt"] = "createdAt";
|
|
4644
|
+
IssuanceSortEnum2["Name"] = "name";
|
|
4645
|
+
IssuanceSortEnum2["State"] = "state";
|
|
4646
|
+
IssuanceSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4647
|
+
return IssuanceSortEnum2;
|
|
4648
|
+
})(IssuanceSortEnum || {});
|
|
4649
|
+
var IssuanceState = /* @__PURE__ */ ((IssuanceState2) => {
|
|
4650
|
+
IssuanceState2["Active"] = "ACTIVE";
|
|
4651
|
+
IssuanceState2["Inactive"] = "INACTIVE";
|
|
4652
|
+
return IssuanceState2;
|
|
4653
|
+
})(IssuanceState || {});
|
|
4782
4654
|
var IssuerCategoryType = /* @__PURE__ */ ((IssuerCategoryType2) => {
|
|
4783
4655
|
IssuerCategoryType2["Development"] = "DEVELOPMENT";
|
|
4784
4656
|
IssuerCategoryType2["Production"] = "PRODUCTION";
|
|
@@ -4797,6 +4669,17 @@ var IssuerFilteringField = /* @__PURE__ */ ((IssuerFilteringField2) => {
|
|
|
4797
4669
|
IssuerFilteringField2["Uuid"] = "uuid";
|
|
4798
4670
|
return IssuerFilteringField2;
|
|
4799
4671
|
})(IssuerFilteringField || {});
|
|
4672
|
+
var IssuerLabelFilteringField = /* @__PURE__ */ ((IssuerLabelFilteringField2) => {
|
|
4673
|
+
IssuerLabelFilteringField2["IssuerUuid"] = "issuerUuid";
|
|
4674
|
+
IssuerLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
4675
|
+
IssuerLabelFilteringField2["Uuid"] = "uuid";
|
|
4676
|
+
return IssuerLabelFilteringField2;
|
|
4677
|
+
})(IssuerLabelFilteringField || {});
|
|
4678
|
+
var IssuerLabelSortEnum = /* @__PURE__ */ ((IssuerLabelSortEnum2) => {
|
|
4679
|
+
IssuerLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
4680
|
+
IssuerLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4681
|
+
return IssuerLabelSortEnum2;
|
|
4682
|
+
})(IssuerLabelSortEnum || {});
|
|
4800
4683
|
var IssuerLocaleFilteringField = /* @__PURE__ */ ((IssuerLocaleFilteringField2) => {
|
|
4801
4684
|
IssuerLocaleFilteringField2["IssuerUuid"] = "issuerUuid";
|
|
4802
4685
|
IssuerLocaleFilteringField2["Locale"] = "locale";
|
|
@@ -4887,7 +4770,7 @@ var LabelFilteringField = /* @__PURE__ */ ((LabelFilteringField2) => {
|
|
|
4887
4770
|
return LabelFilteringField2;
|
|
4888
4771
|
})(LabelFilteringField || {});
|
|
4889
4772
|
var LabelScope = /* @__PURE__ */ ((LabelScope2) => {
|
|
4890
|
-
LabelScope2["
|
|
4773
|
+
LabelScope2["Catalog"] = "CATALOG";
|
|
4891
4774
|
LabelScope2["Platform"] = "PLATFORM";
|
|
4892
4775
|
return LabelScope2;
|
|
4893
4776
|
})(LabelScope || {});
|
|
@@ -5190,6 +5073,16 @@ var OrganizationAppMetaKiwaSortEnum = /* @__PURE__ */ ((OrganizationAppMetaKiwaS
|
|
|
5190
5073
|
OrganizationAppMetaKiwaSortEnum2["UpdatedAt"] = "updatedAt";
|
|
5191
5074
|
return OrganizationAppMetaKiwaSortEnum2;
|
|
5192
5075
|
})(OrganizationAppMetaKiwaSortEnum || {});
|
|
5076
|
+
var OrganizationAppMetaOid4vcFilteringField = /* @__PURE__ */ ((OrganizationAppMetaOid4vcFilteringField2) => {
|
|
5077
|
+
OrganizationAppMetaOid4vcFilteringField2["OrganizationAppMetaUuid"] = "organizationAppMetaUuid";
|
|
5078
|
+
OrganizationAppMetaOid4vcFilteringField2["Uuid"] = "uuid";
|
|
5079
|
+
return OrganizationAppMetaOid4vcFilteringField2;
|
|
5080
|
+
})(OrganizationAppMetaOid4vcFilteringField || {});
|
|
5081
|
+
var OrganizationAppMetaOid4vcSortEnum = /* @__PURE__ */ ((OrganizationAppMetaOid4vcSortEnum2) => {
|
|
5082
|
+
OrganizationAppMetaOid4vcSortEnum2["CreatedAt"] = "createdAt";
|
|
5083
|
+
OrganizationAppMetaOid4vcSortEnum2["UpdatedAt"] = "updatedAt";
|
|
5084
|
+
return OrganizationAppMetaOid4vcSortEnum2;
|
|
5085
|
+
})(OrganizationAppMetaOid4vcSortEnum || {});
|
|
5193
5086
|
var OrganizationAppMetaSortEnum = /* @__PURE__ */ ((OrganizationAppMetaSortEnum2) => {
|
|
5194
5087
|
OrganizationAppMetaSortEnum2["CreatedAt"] = "createdAt";
|
|
5195
5088
|
return OrganizationAppMetaSortEnum2;
|
|
@@ -5198,6 +5091,7 @@ var OrganizationAppMetaType = /* @__PURE__ */ ((OrganizationAppMetaType2) => {
|
|
|
5198
5091
|
OrganizationAppMetaType2["Datakeeper"] = "DATAKEEPER";
|
|
5199
5092
|
OrganizationAppMetaType2["Kiwa"] = "KIWA";
|
|
5200
5093
|
OrganizationAppMetaType2["None"] = "NONE";
|
|
5094
|
+
OrganizationAppMetaType2["Oid4Vc"] = "OID4VC";
|
|
5201
5095
|
OrganizationAppMetaType2["Yoti"] = "YOTI";
|
|
5202
5096
|
return OrganizationAppMetaType2;
|
|
5203
5097
|
})(OrganizationAppMetaType || {});
|
|
@@ -5693,6 +5587,7 @@ var PricingLayer = /* @__PURE__ */ ((PricingLayer2) => {
|
|
|
5693
5587
|
var PricingRuleAction = /* @__PURE__ */ ((PricingRuleAction2) => {
|
|
5694
5588
|
PricingRuleAction2["Activate"] = "ACTIVATE";
|
|
5695
5589
|
PricingRuleAction2["Deactivate"] = "DEACTIVATE";
|
|
5590
|
+
PricingRuleAction2["PendingDeprecate"] = "PENDING_DEPRECATE";
|
|
5696
5591
|
return PricingRuleAction2;
|
|
5697
5592
|
})(PricingRuleAction || {});
|
|
5698
5593
|
var PricingRuleConstraintFilteringField = /* @__PURE__ */ ((PricingRuleConstraintFilteringField2) => {
|
|
@@ -5728,7 +5623,9 @@ var PricingRuleSortEnum = /* @__PURE__ */ ((PricingRuleSortEnum2) => {
|
|
|
5728
5623
|
})(PricingRuleSortEnum || {});
|
|
5729
5624
|
var PricingRuleState = /* @__PURE__ */ ((PricingRuleState2) => {
|
|
5730
5625
|
PricingRuleState2["Active"] = "ACTIVE";
|
|
5626
|
+
PricingRuleState2["Draft"] = "DRAFT";
|
|
5731
5627
|
PricingRuleState2["Inactive"] = "INACTIVE";
|
|
5628
|
+
PricingRuleState2["PendingDeprecation"] = "PENDING_DEPRECATION";
|
|
5732
5629
|
return PricingRuleState2;
|
|
5733
5630
|
})(PricingRuleState || {});
|
|
5734
5631
|
var PricingRuleTargetFilteringField = /* @__PURE__ */ ((PricingRuleTargetFilteringField2) => {
|
|
@@ -5819,6 +5716,17 @@ var ProviderFilteringField = /* @__PURE__ */ ((ProviderFilteringField2) => {
|
|
|
5819
5716
|
ProviderFilteringField2["Uuid"] = "uuid";
|
|
5820
5717
|
return ProviderFilteringField2;
|
|
5821
5718
|
})(ProviderFilteringField || {});
|
|
5719
|
+
var ProviderLabelFilteringField = /* @__PURE__ */ ((ProviderLabelFilteringField2) => {
|
|
5720
|
+
ProviderLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
5721
|
+
ProviderLabelFilteringField2["ProviderUuid"] = "providerUuid";
|
|
5722
|
+
ProviderLabelFilteringField2["Uuid"] = "uuid";
|
|
5723
|
+
return ProviderLabelFilteringField2;
|
|
5724
|
+
})(ProviderLabelFilteringField || {});
|
|
5725
|
+
var ProviderLabelSortEnum = /* @__PURE__ */ ((ProviderLabelSortEnum2) => {
|
|
5726
|
+
ProviderLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
5727
|
+
ProviderLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
5728
|
+
return ProviderLabelSortEnum2;
|
|
5729
|
+
})(ProviderLabelSortEnum || {});
|
|
5822
5730
|
var ProviderLocaleFilteringField = /* @__PURE__ */ ((ProviderLocaleFilteringField2) => {
|
|
5823
5731
|
ProviderLocaleFilteringField2["Locale"] = "locale";
|
|
5824
5732
|
ProviderLocaleFilteringField2["ProviderUuid"] = "providerUuid";
|
|
@@ -5855,6 +5763,17 @@ var SchemeFilteringField = /* @__PURE__ */ ((SchemeFilteringField2) => {
|
|
|
5855
5763
|
SchemeFilteringField2["Uuid"] = "uuid";
|
|
5856
5764
|
return SchemeFilteringField2;
|
|
5857
5765
|
})(SchemeFilteringField || {});
|
|
5766
|
+
var SchemeLabelFilteringField = /* @__PURE__ */ ((SchemeLabelFilteringField2) => {
|
|
5767
|
+
SchemeLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
5768
|
+
SchemeLabelFilteringField2["SchemeUuid"] = "schemeUuid";
|
|
5769
|
+
SchemeLabelFilteringField2["Uuid"] = "uuid";
|
|
5770
|
+
return SchemeLabelFilteringField2;
|
|
5771
|
+
})(SchemeLabelFilteringField || {});
|
|
5772
|
+
var SchemeLabelSortEnum = /* @__PURE__ */ ((SchemeLabelSortEnum2) => {
|
|
5773
|
+
SchemeLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
5774
|
+
SchemeLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
5775
|
+
return SchemeLabelSortEnum2;
|
|
5776
|
+
})(SchemeLabelSortEnum || {});
|
|
5858
5777
|
var SchemeLocaleFilteringField = /* @__PURE__ */ ((SchemeLocaleFilteringField2) => {
|
|
5859
5778
|
SchemeLocaleFilteringField2["Locale"] = "locale";
|
|
5860
5779
|
SchemeLocaleFilteringField2["SchemeUuid"] = "schemeUuid";
|
|
@@ -5929,6 +5848,160 @@ var ScopeSortEnum = /* @__PURE__ */ ((ScopeSortEnum2) => {
|
|
|
5929
5848
|
ScopeSortEnum2["State"] = "state";
|
|
5930
5849
|
return ScopeSortEnum2;
|
|
5931
5850
|
})(ScopeSortEnum || {});
|
|
5851
|
+
var SignatureAction = /* @__PURE__ */ ((SignatureAction2) => {
|
|
5852
|
+
SignatureAction2["Activate"] = "ACTIVATE";
|
|
5853
|
+
SignatureAction2["Deactivate"] = "DEACTIVATE";
|
|
5854
|
+
return SignatureAction2;
|
|
5855
|
+
})(SignatureAction || {});
|
|
5856
|
+
var SignatureActivityFilteringField = /* @__PURE__ */ ((SignatureActivityFilteringField2) => {
|
|
5857
|
+
SignatureActivityFilteringField2["CreatedAt"] = "createdAt";
|
|
5858
|
+
SignatureActivityFilteringField2["EventUrn"] = "eventURN";
|
|
5859
|
+
SignatureActivityFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
5860
|
+
SignatureActivityFilteringField2["RequestUuid"] = "requestUuid";
|
|
5861
|
+
SignatureActivityFilteringField2["SignatureUuid"] = "signatureUuid";
|
|
5862
|
+
return SignatureActivityFilteringField2;
|
|
5863
|
+
})(SignatureActivityFilteringField || {});
|
|
5864
|
+
var SignatureActivitySortEnum = /* @__PURE__ */ ((SignatureActivitySortEnum2) => {
|
|
5865
|
+
SignatureActivitySortEnum2["CreatedAt"] = "createdAt";
|
|
5866
|
+
SignatureActivitySortEnum2["EventUrn"] = "eventUrn";
|
|
5867
|
+
return SignatureActivitySortEnum2;
|
|
5868
|
+
})(SignatureActivitySortEnum || {});
|
|
5869
|
+
var SignatureAttributeFilteringField = /* @__PURE__ */ ((SignatureAttributeFilteringField2) => {
|
|
5870
|
+
SignatureAttributeFilteringField2["AttributeUuid"] = "attributeUuid";
|
|
5871
|
+
SignatureAttributeFilteringField2["SignatureCredentialUuid"] = "signatureCredentialUuid";
|
|
5872
|
+
SignatureAttributeFilteringField2["Uuid"] = "uuid";
|
|
5873
|
+
return SignatureAttributeFilteringField2;
|
|
5874
|
+
})(SignatureAttributeFilteringField || {});
|
|
5875
|
+
var SignatureAttributeSortEnum = /* @__PURE__ */ ((SignatureAttributeSortEnum2) => {
|
|
5876
|
+
SignatureAttributeSortEnum2["AttributeUuid"] = "attributeUuid";
|
|
5877
|
+
SignatureAttributeSortEnum2["CreatedAt"] = "createdAt";
|
|
5878
|
+
SignatureAttributeSortEnum2["UpdatedAt"] = "updatedAt";
|
|
5879
|
+
return SignatureAttributeSortEnum2;
|
|
5880
|
+
})(SignatureAttributeSortEnum || {});
|
|
5881
|
+
var SignatureBrandFilteringField = /* @__PURE__ */ ((SignatureBrandFilteringField2) => {
|
|
5882
|
+
SignatureBrandFilteringField2["OrganizationBrandUuid"] = "organizationBrandUuid";
|
|
5883
|
+
SignatureBrandFilteringField2["RedirectPath"] = "redirectPath";
|
|
5884
|
+
SignatureBrandFilteringField2["SignatureUuid"] = "signatureUuid";
|
|
5885
|
+
SignatureBrandFilteringField2["Uuid"] = "uuid";
|
|
5886
|
+
return SignatureBrandFilteringField2;
|
|
5887
|
+
})(SignatureBrandFilteringField || {});
|
|
5888
|
+
var SignatureBrandSortEnum = /* @__PURE__ */ ((SignatureBrandSortEnum2) => {
|
|
5889
|
+
SignatureBrandSortEnum2["CreatedAt"] = "createdAt";
|
|
5890
|
+
SignatureBrandSortEnum2["RedirectPath"] = "redirectPath";
|
|
5891
|
+
SignatureBrandSortEnum2["UpdatedAt"] = "updatedAt";
|
|
5892
|
+
return SignatureBrandSortEnum2;
|
|
5893
|
+
})(SignatureBrandSortEnum || {});
|
|
5894
|
+
var SignatureCredentialFilteringField = /* @__PURE__ */ ((SignatureCredentialFilteringField2) => {
|
|
5895
|
+
SignatureCredentialFilteringField2["CredentialUuid"] = "credentialUuid";
|
|
5896
|
+
SignatureCredentialFilteringField2["IssuerUuid"] = "issuerUuid";
|
|
5897
|
+
SignatureCredentialFilteringField2["SchemeUuid"] = "schemeUuid";
|
|
5898
|
+
SignatureCredentialFilteringField2["SignatureGroupUuid"] = "signatureGroupUuid";
|
|
5899
|
+
SignatureCredentialFilteringField2["Uuid"] = "uuid";
|
|
5900
|
+
return SignatureCredentialFilteringField2;
|
|
5901
|
+
})(SignatureCredentialFilteringField || {});
|
|
5902
|
+
var SignatureCredentialSortEnum = /* @__PURE__ */ ((SignatureCredentialSortEnum2) => {
|
|
5903
|
+
SignatureCredentialSortEnum2["CreatedAt"] = "createdAt";
|
|
5904
|
+
SignatureCredentialSortEnum2["CredentialUuid"] = "credentialUuid";
|
|
5905
|
+
SignatureCredentialSortEnum2["IssuerUuid"] = "issuerUuid";
|
|
5906
|
+
SignatureCredentialSortEnum2["SchemeUuid"] = "schemeUuid";
|
|
5907
|
+
SignatureCredentialSortEnum2["UpdatedAt"] = "updatedAt";
|
|
5908
|
+
return SignatureCredentialSortEnum2;
|
|
5909
|
+
})(SignatureCredentialSortEnum || {});
|
|
5910
|
+
var SignatureDomainFilteringField = /* @__PURE__ */ ((SignatureDomainFilteringField2) => {
|
|
5911
|
+
SignatureDomainFilteringField2["OrganizationDomainUuid"] = "organizationDomainUuid";
|
|
5912
|
+
SignatureDomainFilteringField2["RedirectPath"] = "redirectPath";
|
|
5913
|
+
SignatureDomainFilteringField2["SignatureUuid"] = "signatureUuid";
|
|
5914
|
+
SignatureDomainFilteringField2["Uuid"] = "uuid";
|
|
5915
|
+
return SignatureDomainFilteringField2;
|
|
5916
|
+
})(SignatureDomainFilteringField || {});
|
|
5917
|
+
var SignatureDomainSortEnum = /* @__PURE__ */ ((SignatureDomainSortEnum2) => {
|
|
5918
|
+
SignatureDomainSortEnum2["CreatedAt"] = "createdAt";
|
|
5919
|
+
SignatureDomainSortEnum2["RedirectPath"] = "redirectPath";
|
|
5920
|
+
SignatureDomainSortEnum2["UpdatedAt"] = "updatedAt";
|
|
5921
|
+
return SignatureDomainSortEnum2;
|
|
5922
|
+
})(SignatureDomainSortEnum || {});
|
|
5923
|
+
var SignatureFilteringField = /* @__PURE__ */ ((SignatureFilteringField2) => {
|
|
5924
|
+
SignatureFilteringField2["Name"] = "name";
|
|
5925
|
+
SignatureFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
5926
|
+
SignatureFilteringField2["State"] = "state";
|
|
5927
|
+
SignatureFilteringField2["Uuid"] = "uuid";
|
|
5928
|
+
return SignatureFilteringField2;
|
|
5929
|
+
})(SignatureFilteringField || {});
|
|
5930
|
+
var SignatureGroupFilteringField = /* @__PURE__ */ ((SignatureGroupFilteringField2) => {
|
|
5931
|
+
SignatureGroupFilteringField2["Name"] = "name";
|
|
5932
|
+
SignatureGroupFilteringField2["SignatureProviderUuid"] = "signatureProviderUuid";
|
|
5933
|
+
SignatureGroupFilteringField2["Uuid"] = "uuid";
|
|
5934
|
+
return SignatureGroupFilteringField2;
|
|
5935
|
+
})(SignatureGroupFilteringField || {});
|
|
5936
|
+
var SignatureGroupSortEnum = /* @__PURE__ */ ((SignatureGroupSortEnum2) => {
|
|
5937
|
+
SignatureGroupSortEnum2["CreatedAt"] = "createdAt";
|
|
5938
|
+
SignatureGroupSortEnum2["Name"] = "name";
|
|
5939
|
+
SignatureGroupSortEnum2["UpdatedAt"] = "updatedAt";
|
|
5940
|
+
return SignatureGroupSortEnum2;
|
|
5941
|
+
})(SignatureGroupSortEnum || {});
|
|
5942
|
+
var SignatureLabelFilteringField = /* @__PURE__ */ ((SignatureLabelFilteringField2) => {
|
|
5943
|
+
SignatureLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
5944
|
+
SignatureLabelFilteringField2["SignatureUuid"] = "signatureUuid";
|
|
5945
|
+
SignatureLabelFilteringField2["Uuid"] = "uuid";
|
|
5946
|
+
return SignatureLabelFilteringField2;
|
|
5947
|
+
})(SignatureLabelFilteringField || {});
|
|
5948
|
+
var SignatureLabelSortEnum = /* @__PURE__ */ ((SignatureLabelSortEnum2) => {
|
|
5949
|
+
SignatureLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
5950
|
+
SignatureLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
5951
|
+
return SignatureLabelSortEnum2;
|
|
5952
|
+
})(SignatureLabelSortEnum || {});
|
|
5953
|
+
var SignatureMappingFilteringField = /* @__PURE__ */ ((SignatureMappingFilteringField2) => {
|
|
5954
|
+
SignatureMappingFilteringField2["MappingVerificationUuid"] = "mappingVerificationUuid";
|
|
5955
|
+
SignatureMappingFilteringField2["SignatureUuid"] = "signatureUuid";
|
|
5956
|
+
SignatureMappingFilteringField2["Uuid"] = "uuid";
|
|
5957
|
+
return SignatureMappingFilteringField2;
|
|
5958
|
+
})(SignatureMappingFilteringField || {});
|
|
5959
|
+
var SignatureMappingSortEnum = /* @__PURE__ */ ((SignatureMappingSortEnum2) => {
|
|
5960
|
+
SignatureMappingSortEnum2["CreatedAt"] = "createdAt";
|
|
5961
|
+
SignatureMappingSortEnum2["UpdatedAt"] = "updatedAt";
|
|
5962
|
+
return SignatureMappingSortEnum2;
|
|
5963
|
+
})(SignatureMappingSortEnum || {});
|
|
5964
|
+
var SignatureProviderConfigurationFilteringField = /* @__PURE__ */ ((SignatureProviderConfigurationFilteringField2) => {
|
|
5965
|
+
SignatureProviderConfigurationFilteringField2["SignatureProviderUuid"] = "signatureProviderUuid";
|
|
5966
|
+
return SignatureProviderConfigurationFilteringField2;
|
|
5967
|
+
})(SignatureProviderConfigurationFilteringField || {});
|
|
5968
|
+
var SignatureProviderConfigurationNlWalletFilteringField = /* @__PURE__ */ ((SignatureProviderConfigurationNlWalletFilteringField2) => {
|
|
5969
|
+
SignatureProviderConfigurationNlWalletFilteringField2["Intent"] = "intent";
|
|
5970
|
+
SignatureProviderConfigurationNlWalletFilteringField2["SignatureProviderConfigurationUuid"] = "signatureProviderConfigurationUuid";
|
|
5971
|
+
return SignatureProviderConfigurationNlWalletFilteringField2;
|
|
5972
|
+
})(SignatureProviderConfigurationNlWalletFilteringField || {});
|
|
5973
|
+
var SignatureProviderConfigurationNlWalletSortEnum = /* @__PURE__ */ ((SignatureProviderConfigurationNlWalletSortEnum2) => {
|
|
5974
|
+
SignatureProviderConfigurationNlWalletSortEnum2["CreatedAt"] = "createdAt";
|
|
5975
|
+
return SignatureProviderConfigurationNlWalletSortEnum2;
|
|
5976
|
+
})(SignatureProviderConfigurationNlWalletSortEnum || {});
|
|
5977
|
+
var SignatureProviderConfigurationSortEnum = /* @__PURE__ */ ((SignatureProviderConfigurationSortEnum2) => {
|
|
5978
|
+
SignatureProviderConfigurationSortEnum2["CreatedAt"] = "createdAt";
|
|
5979
|
+
return SignatureProviderConfigurationSortEnum2;
|
|
5980
|
+
})(SignatureProviderConfigurationSortEnum || {});
|
|
5981
|
+
var SignatureProviderFilteringField = /* @__PURE__ */ ((SignatureProviderFilteringField2) => {
|
|
5982
|
+
SignatureProviderFilteringField2["ProviderUuid"] = "providerUuid";
|
|
5983
|
+
SignatureProviderFilteringField2["SignatureUuid"] = "signatureUuid";
|
|
5984
|
+
SignatureProviderFilteringField2["Uuid"] = "uuid";
|
|
5985
|
+
return SignatureProviderFilteringField2;
|
|
5986
|
+
})(SignatureProviderFilteringField || {});
|
|
5987
|
+
var SignatureProviderSortEnum = /* @__PURE__ */ ((SignatureProviderSortEnum2) => {
|
|
5988
|
+
SignatureProviderSortEnum2["CreatedAt"] = "createdAt";
|
|
5989
|
+
SignatureProviderSortEnum2["ProviderUuid"] = "providerUuid";
|
|
5990
|
+
SignatureProviderSortEnum2["UpdatedAt"] = "updatedAt";
|
|
5991
|
+
return SignatureProviderSortEnum2;
|
|
5992
|
+
})(SignatureProviderSortEnum || {});
|
|
5993
|
+
var SignatureSortEnum = /* @__PURE__ */ ((SignatureSortEnum2) => {
|
|
5994
|
+
SignatureSortEnum2["CreatedAt"] = "createdAt";
|
|
5995
|
+
SignatureSortEnum2["Name"] = "name";
|
|
5996
|
+
SignatureSortEnum2["State"] = "state";
|
|
5997
|
+
SignatureSortEnum2["UpdatedAt"] = "updatedAt";
|
|
5998
|
+
return SignatureSortEnum2;
|
|
5999
|
+
})(SignatureSortEnum || {});
|
|
6000
|
+
var SignatureState = /* @__PURE__ */ ((SignatureState2) => {
|
|
6001
|
+
SignatureState2["Active"] = "ACTIVE";
|
|
6002
|
+
SignatureState2["Inactive"] = "INACTIVE";
|
|
6003
|
+
return SignatureState2;
|
|
6004
|
+
})(SignatureState || {});
|
|
5932
6005
|
var State = /* @__PURE__ */ ((State2) => {
|
|
5933
6006
|
State2["Active"] = "ACTIVE";
|
|
5934
6007
|
State2["Deprecated"] = "DEPRECATED";
|
|
@@ -6295,6 +6368,6 @@ var getProviders = async (client, providerUuids) => {
|
|
|
6295
6368
|
return convertConnectionToProviderArray(response.data);
|
|
6296
6369
|
};
|
|
6297
6370
|
|
|
6298
|
-
export { Action, AlertSeverity, AlertState, AlertType, AppFilteringField, AppLocaleFilteringField, AppLocaleSortEnum, AppPrerequisiteFilteringField, AppPrerequisiteLocaleFilteringField, AppPrerequisiteLocaleSortEnum, AppPrerequisiteSortEnum, AppPrerequisiteStateFilteringField, AppPrerequisiteStateLocaleFilteringField, AppPrerequisiteStateLocaleSortEnum, AppPrerequisiteStateSortEnum, AppPrerequisiteStates, AppPrerequisites, AppSortEnum, AttributeCategoryType, AttributeFilteringField, AttributeLocaleFilteringField, AttributeLocaleSortEnum, AttributeMetaDatakeeperFilteringField, AttributeMetaDatakeeperSortEnum, AttributeMetaDigidentityFilteringField, AttributeMetaDigidentitySortEnum, AttributeMetaFilteringField, AttributeMetaMdocFilteringField, AttributeMetaMdocSortEnum, AttributeMetaNectFilteringField, AttributeMetaNectSortEnum, AttributeMetaNlWalletFilteringField, AttributeMetaNlWalletSortEnum, AttributeMetaOid4VcmdocFilteringField, AttributeMetaOid4VcmdocSortEnum, AttributeMetaOid4VcsdjwtFilteringField, AttributeMetaOid4VcsdjwtSortEnum, AttributeMetaReadIdFilteringField, AttributeMetaReadIdSortEnum, AttributeMetaSortEnum, AttributeMetaTruidFilteringField, AttributeMetaTruidSortEnum, AttributeMetaType, AttributeMetaYiviFilteringField, AttributeMetaYiviSortEnum, AttributeMetaYotiFilteringField, AttributeMetaYotiSortEnum, AttributeRequestFilteringField, AttributeRequestLocaleFilteringField, AttributeRequestLocaleSortEnum, AttributeRequestMetaDatakeeperFilteringField, AttributeRequestMetaDatakeeperSortEnum, AttributeRequestMetaFilteringField, AttributeRequestMetaSortEnum, AttributeRequestMetaType, AttributeRequestMetaYiviFilteringField, AttributeRequestMetaYiviSortEnum, AttributeRequestMetaYotiFilteringField, AttributeRequestMetaYotiSortEnum, AttributeRequestSortEnum, AttributeSortEnum, BillingFilteringField, BillingMethodFilteringField, BillingMethodSortEnum, BillingPlanFilteringField, BillingPlanSortEnum, BillingPlanState, BillingSortEnum, BillingWalletAction, BillingWalletFilteringField, BillingWalletPaymentType, BillingWalletSortEnum, BillingWalletTransactionFilteringField, BillingWalletTransactionMetaFilteringField, BillingWalletTransactionMetaFlowAttributeFilteringField, BillingWalletTransactionMetaFlowAttributeSortEnum, BillingWalletTransactionMetaFlowFilteringField, BillingWalletTransactionMetaFlowSortEnum, BillingWalletTransactionMetaPlanFilteringField, BillingWalletTransactionMetaPlanSortEnum, BillingWalletTransactionMetaSortEnum, BillingWalletTransactionMetaType, BillingWalletTransactionMetaWalletFilteringField, BillingWalletTransactionMetaWalletSortEnum, BillingWalletTransactionSortEnum, BillingWalletTransactionState, CreateFlowDisclosureProviderByAttributesMode, CreateFlowSignatureProviderByAttributesMode, CredentialCategoryType, CredentialFilteringField, CredentialLocaleFilteringField, CredentialLocaleSortEnum, CredentialMetaDatakeeperFilteringField, CredentialMetaDatakeeperSortEnum, CredentialMetaDigidentityFilteringField, CredentialMetaDigidentitySortEnum, CredentialMetaFilteringField, CredentialMetaMdocFilteringField, CredentialMetaMdocSortEnum, CredentialMetaNectFilteringField, CredentialMetaNectSortEnum, CredentialMetaNlWalletFilteringField, CredentialMetaNlWalletSortEnum, CredentialMetaOid4VcmdocFilteringField, CredentialMetaOid4VcmdocSortEnum, CredentialMetaOid4VcsdjwtFilteringField, CredentialMetaOid4VcsdjwtSortEnum, CredentialMetaReadIdDocumentType, CredentialMetaReadIdFilteringField, CredentialMetaReadIdSortEnum, CredentialMetaSortEnum, CredentialMetaTruidFilteringField, CredentialMetaTruidSortEnum, CredentialMetaType, CredentialMetaYiviFilteringField, CredentialMetaYiviSortEnum, CredentialMetaYotiFilteringField, CredentialMetaYotiSortEnum, CredentialRequestFilteringField, CredentialRequestLocaleFilteringField, CredentialRequestLocaleSortEnum, CredentialRequestMetaDatakeeperFilteringField, CredentialRequestMetaDatakeeperSortEnum, CredentialRequestMetaFilteringField, CredentialRequestMetaSortEnum, CredentialRequestMetaType, CredentialRequestMetaYiviFilteringField, CredentialRequestMetaYiviSortEnum, CredentialRequestMetaYotiCategoryType, CredentialRequestMetaYotiFilteringField, CredentialRequestMetaYotiSortEnum, CredentialRequestSortEnum, CredentialRequestStateFilteringField, CredentialRequestStateLocaleFilteringField, CredentialRequestStateLocaleSortEnum, CredentialRequestStateSortEnum, CredentialRequestStates, CredentialRequestWorkflowFilteringField, CredentialRequestWorkflowSortEnum, CredentialSortEnum, Currency, CurrencyCode, CurrencyUnit, FilteringConnector, FilteringMode, FilteringType, FlowAuthenticationAction, FlowAuthenticationBrandFilteringField, FlowAuthenticationBrandSortEnum, FlowAuthenticationDomainFilteringField, FlowAuthenticationDomainSortEnum, FlowAuthenticationFilteringField, FlowAuthenticationLabelFilteringField, FlowAuthenticationLabelSortEnum, FlowAuthenticationProviderConfigurationFilteringField, FlowAuthenticationProviderConfigurationNlWalletFilteringField, FlowAuthenticationProviderConfigurationNlWalletSortEnum, FlowAuthenticationProviderConfigurationSortEnum, FlowAuthenticationProviderFilteringField, FlowAuthenticationProviderSortEnum, FlowAuthenticationScopeFilteringField, FlowAuthenticationScopeSortEnum, FlowAuthenticationSortEnum, FlowAuthenticationState, FlowDisclosureAction, FlowDisclosureAttributeFilteringField, FlowDisclosureAttributeSortEnum, FlowDisclosureBrandFilteringField, FlowDisclosureBrandSortEnum, FlowDisclosureCredentialFilteringField, FlowDisclosureCredentialSortEnum, FlowDisclosureDomainFilteringField, FlowDisclosureDomainSortEnum, FlowDisclosureFilteringField, FlowDisclosureGroupFilteringField, FlowDisclosureGroupSortEnum, FlowDisclosureLabelFilteringField, FlowDisclosureLabelSortEnum, FlowDisclosureMappingFilteringField, FlowDisclosureMappingSortEnum, FlowDisclosureProviderConfigurationFilteringField, FlowDisclosureProviderConfigurationNlWalletFilteringField, FlowDisclosureProviderConfigurationNlWalletSortEnum, FlowDisclosureProviderConfigurationSortEnum, FlowDisclosureProviderFilteringField, FlowDisclosureProviderSortEnum, FlowDisclosureSortEnum, FlowDisclosureState, FlowEventFilteringField, FlowEventSortEnum, FlowIssuanceAction, FlowIssuanceAttributeFilteringField, FlowIssuanceAttributeSortEnum, FlowIssuanceBrandFilteringField, FlowIssuanceBrandSortEnum, FlowIssuanceCredentialFilteringField, FlowIssuanceCredentialMetaDatakeeperFilteringField, FlowIssuanceCredentialMetaDatakeeperSortEnum, FlowIssuanceCredentialMetaFilteringField, FlowIssuanceCredentialMetaSortEnum, FlowIssuanceCredentialMetaType, FlowIssuanceCredentialMetaYiviFilteringField, FlowIssuanceCredentialMetaYiviSortEnum, FlowIssuanceCredentialSortEnum, FlowIssuanceDomainFilteringField, FlowIssuanceDomainSortEnum, FlowIssuanceFilteringField, FlowIssuanceLabelFilteringField, FlowIssuanceLabelSortEnum, FlowIssuanceMappingFilteringField, FlowIssuanceMappingSortEnum, FlowIssuanceProviderFilteringField, FlowIssuanceProviderSortEnum, FlowIssuanceSortEnum, FlowIssuanceState, FlowSignatureAction, FlowSignatureAttributeFilteringField, FlowSignatureAttributeSortEnum, FlowSignatureBrandFilteringField, FlowSignatureBrandSortEnum, FlowSignatureCredentialFilteringField, FlowSignatureCredentialSortEnum, FlowSignatureDomainFilteringField, FlowSignatureDomainSortEnum, FlowSignatureFilteringField, FlowSignatureGroupFilteringField, FlowSignatureGroupSortEnum, FlowSignatureLabelFilteringField, FlowSignatureLabelSortEnum, FlowSignatureMappingFilteringField, FlowSignatureMappingSortEnum, FlowSignatureProviderConfigurationFilteringField, FlowSignatureProviderConfigurationNlWalletFilteringField, FlowSignatureProviderConfigurationNlWalletSortEnum, FlowSignatureProviderConfigurationSortEnum, FlowSignatureProviderFilteringField, FlowSignatureProviderSortEnum, FlowSignatureSortEnum, FlowSignatureState, FlowType, IdentityAttributeLabelFilteringField, IdentityAttributeLabelSortEnum, IdentityCredentialLabelFilteringField, IdentityCredentialLabelSortEnum, IdentityIssuerLabelFilteringField, IdentityIssuerLabelSortEnum, IdentityModel, IdentityModelType, IdentityProviderLabelFilteringField, IdentityProviderLabelSortEnum, IdentitySchemeLabelFilteringField, IdentitySchemeLabelSortEnum, Interval, InvalidArgumentError, InvalidAssertionError, InvalidResponseError, IssuerCategoryType, IssuerFilteringField, IssuerLocaleFilteringField, IssuerLocaleSortEnum, IssuerMetaDatakeeperFilteringField, IssuerMetaDatakeeperSortEnum, IssuerMetaFilteringField, IssuerMetaMdocFilteringField, IssuerMetaMdocSortEnum, IssuerMetaOid4VcmdocFilteringField, IssuerMetaOid4VcmdocSortEnum, IssuerMetaOid4VcsdjwtFilteringField, IssuerMetaOid4VcsdjwtSortEnum, IssuerMetaSortEnum, IssuerMetaType, IssuerMetaYiviFilteringField, IssuerMetaYiviSortEnum, IssuerSortEnum, IssuerType, LabelFilteringField, LabelScope, LabelSortEnum, LocaleConfigFilteringField, LocaleConfigSortEnum, MaintenanceAction, MaintenanceFilteringField, MaintenanceSortEnum, MaintenanceState, MappingIssuanceAction, MappingIssuanceAttributeFilteringField, MappingIssuanceAttributeSortEnum, MappingIssuanceFilteringField, MappingIssuanceLinkFilteringField, MappingIssuanceLinkSortEnum, MappingIssuanceSortEnum, MappingIssuanceState, MappingVerificationAction, MappingVerificationAttributeFilteringField, MappingVerificationAttributeSortEnum, MappingVerificationClaimFilteringField, MappingVerificationClaimSortEnum, MappingVerificationFilteringField, MappingVerificationLinkFilteringField, MappingVerificationLinkSortEnum, MappingVerificationSortEnum, MappingVerificationState, NestedFilteringType, OAuthFlowType, OAuthProviderAction, OAuthProviderFilteringField, OAuthProviderSortEnum, OAuthProviderState, OperationFailedError, OrderDirection, OrganizationAction, OrganizationAddressFilteringField, OrganizationAddressSortEnum, OrganizationAlertAction, OrganizationAlertDeprecationFilteringField, OrganizationAlertDeprecationSortEnum, OrganizationAlertFilteringField, OrganizationAlertSortEnum, OrganizationAppAction, OrganizationAppFilteringField, OrganizationAppMetaDatakeeperFilteringField, OrganizationAppMetaDatakeeperSortEnum, OrganizationAppMetaFilteringField, OrganizationAppMetaKiwaFilteringField, OrganizationAppMetaKiwaSortEnum, OrganizationAppMetaSortEnum, OrganizationAppMetaType, OrganizationAppMetaYotiFilteringField, OrganizationAppMetaYotiSortEnum, OrganizationAppPrerequisiteFilteringField, OrganizationAppPrerequisiteSortEnum, OrganizationAppPrerequisiteWorkflowFilteringField, OrganizationAppPrerequisiteWorkflowSortEnum, OrganizationAppProduct, OrganizationAppSortEnum, OrganizationAppState, OrganizationBrandAction, OrganizationBrandFilteringField, OrganizationBrandLabelFilteringField, OrganizationBrandLabelSortEnum, OrganizationBrandSortEnum, OrganizationBrandState, OrganizationClientFilteringField, OrganizationClientSortEnum, OrganizationDomainAction, OrganizationDomainFilteringField, OrganizationDomainLabelFilteringField, OrganizationDomainLabelSortEnum, OrganizationDomainOAuthProviderFilteringField, OrganizationDomainOAuthProviderSortEnum, OrganizationDomainSortEnum, OrganizationDomainState, OrganizationDomainValidationFilteringField, OrganizationDomainValidationSortEnum, OrganizationFilteringField, OrganizationNotificationAction, OrganizationNotificationEventFilteringField, OrganizationNotificationEventSortEnum, OrganizationNotificationFilteringField, OrganizationNotificationSortEnum, OrganizationQuotaFilteringField, OrganizationQuotaSortEnum, OrganizationSecretAlgorithm, OrganizationSecretFilteringField, OrganizationSecretSortEnum, OrganizationSecretType, OrganizationSortEnum, OrganizationType, OrganizationUserAction, OrganizationUserFilteringField, OrganizationUserRole, OrganizationUserSortEnum, PaymentProviderEventFilteringField, PaymentProviderEventSortEnum, PaymentProviderFilteringField, PaymentProviderInvoiceFilteringField, PaymentProviderInvoiceSortEnum, PaymentProviderInvoiceState, PaymentProviderMethodFilteringField, PaymentProviderMethodSortEnum, PaymentProviderMethodState, PaymentProviderOrganizationFilteringField, PaymentProviderOrganizationSortEnum, PaymentProviderSortEnum, PricingAggregationStrategy, PricingCatalogFilteringField, PricingCatalogSortEnum, PricingConfigurationAppFilteringField, PricingConfigurationAppSortEnum, PricingConfigurationOrganizationFilteringField, PricingConfigurationOrganizationSortEnum, PricingConfigurationStudioPlanFilteringField, PricingConfigurationStudioPlanSortEnum, PricingGroupAssignmentFilteringField, PricingGroupAssignmentSortEnum, PricingGroupAssignmentType, PricingGroupFilteringField, PricingGroupSortEnum, PricingHierarchyLevel, PricingLayer, PricingRuleAction, PricingRuleConstraintFilteringField, PricingRuleConstraintSortEnum, PricingRuleFilteringField, PricingRuleSortEnum, PricingRuleState, PricingRuleTargetFilteringField, PricingRuleTargetSortEnum, PricingType, ProviderAppFilteringField, ProviderAppMetaFilteringField, ProviderAppMetaOid4VcFilteringField, ProviderAppMetaOid4VcSortEnum, ProviderAppMetaOid4VcSpecType, ProviderAppMetaSortEnum, ProviderAppMetaType, ProviderAppMetaTypeOid4VcClientIdentifierPrefix, ProviderAppSortEnum, ProviderCategoryType, ProviderFilteringField, ProviderLocaleFilteringField, ProviderLocaleSortEnum, ProviderSortEnum, ProviderType, SchemeCategoryType, SchemeFilteringField, SchemeLocaleFilteringField, SchemeLocaleSortEnum, SchemeSortEnum, SchemeType, ScopeCategoryType, ScopeClaimFilteringField, ScopeClaimSortEnum, ScopeFilteringField, ScopeLocaleFilteringField, ScopeLocaleSortEnum, ScopeResourceFilteringField, ScopeResourceSortEnum, ScopeSortEnum, State, StudioPlanAction, StudioPlanControlFilteringField, StudioPlanControlOverrideFilteringField, StudioPlanControlOverrideSortEnum, StudioPlanControlSortEnum, StudioPlanFilteringField, StudioPlanIntervalFilteringField, StudioPlanIntervalSortEnum, StudioPlanOrganizationFilteringField, StudioPlanOrganizationSortEnum, StudioPlanSortEnum, StudioPlanState, UnknownError, UserFilteringField, UserInvitationFilteringField, UserInvitationSortEnum, UserInvitationState, UserSortEnum, assert, assertArray, assertBoolean, assertDate, assertFunction, assertJsonValue, assertNumber, assertObject, assertString, assertUUID, assertUrlString, createVeridGraphQLClient, getAttribute, getAttributes, getAttributesWithHierarchy, getCredential, getCredentials, getIssuer, getIssuers, getProvider, getProviders, getScheme, getSchemes };
|
|
6371
|
+
export { Action, AlertSeverity, AlertState, AlertType, AppFilteringField, AppLocaleFilteringField, AppLocaleSortEnum, AppPrerequisiteFilteringField, AppPrerequisiteLocaleFilteringField, AppPrerequisiteLocaleSortEnum, AppPrerequisiteSortEnum, AppPrerequisiteStateFilteringField, AppPrerequisiteStateLocaleFilteringField, AppPrerequisiteStateLocaleSortEnum, AppPrerequisiteStateSortEnum, AppPrerequisiteStates, AppPrerequisites, AppSortEnum, AttributeCategoryType, AttributeFilteringField, AttributeLabelFilteringField, AttributeLabelSortEnum, AttributeLocaleFilteringField, AttributeLocaleSortEnum, AttributeMetaDatakeeperFilteringField, AttributeMetaDatakeeperSortEnum, AttributeMetaDigidentityFilteringField, AttributeMetaDigidentitySortEnum, AttributeMetaFilteringField, AttributeMetaMdocFilteringField, AttributeMetaMdocSortEnum, AttributeMetaNectFilteringField, AttributeMetaNectSortEnum, AttributeMetaNlWalletFilteringField, AttributeMetaNlWalletSortEnum, AttributeMetaOid4VcmdocFilteringField, AttributeMetaOid4VcmdocSortEnum, AttributeMetaOid4VcsdjwtFilteringField, AttributeMetaOid4VcsdjwtSortEnum, AttributeMetaReadIdFilteringField, AttributeMetaReadIdSortEnum, AttributeMetaSortEnum, AttributeMetaTruidFilteringField, AttributeMetaTruidSortEnum, AttributeMetaType, AttributeMetaYiviFilteringField, AttributeMetaYiviSortEnum, AttributeMetaYotiFilteringField, AttributeMetaYotiSortEnum, AttributeRequestFilteringField, AttributeRequestLocaleFilteringField, AttributeRequestLocaleSortEnum, AttributeRequestMetaDatakeeperFilteringField, AttributeRequestMetaDatakeeperSortEnum, AttributeRequestMetaFilteringField, AttributeRequestMetaOid4VcmdocFilteringField, AttributeRequestMetaOid4VcmdocSortEnum, AttributeRequestMetaOid4VcsdjwtFilteringField, AttributeRequestMetaOid4VcsdjwtSortEnum, AttributeRequestMetaSortEnum, AttributeRequestMetaType, AttributeRequestMetaYiviFilteringField, AttributeRequestMetaYiviSortEnum, AttributeRequestMetaYotiFilteringField, AttributeRequestMetaYotiSortEnum, AttributeRequestSortEnum, AttributeSortEnum, AuthenticationAction, AuthenticationActivityFilteringField, AuthenticationActivitySortEnum, AuthenticationBrandFilteringField, AuthenticationBrandSortEnum, AuthenticationDomainFilteringField, AuthenticationDomainSortEnum, AuthenticationFilteringField, AuthenticationLabelFilteringField, AuthenticationLabelSortEnum, AuthenticationProviderConfigurationFilteringField, AuthenticationProviderConfigurationNlWalletFilteringField, AuthenticationProviderConfigurationNlWalletSortEnum, AuthenticationProviderConfigurationSortEnum, AuthenticationProviderFilteringField, AuthenticationProviderSortEnum, AuthenticationScopeFilteringField, AuthenticationScopeSortEnum, AuthenticationSortEnum, AuthenticationState, BillingFilteringField, BillingMethodFilteringField, BillingMethodSortEnum, BillingPlanFilteringField, BillingPlanSortEnum, BillingPlanState, BillingSortEnum, BillingWalletAction, BillingWalletFilteringField, BillingWalletPaymentType, BillingWalletSortEnum, BillingWalletTransactionFilteringField, BillingWalletTransactionMetaFilteringField, BillingWalletTransactionMetaFlowAttributeFilteringField, BillingWalletTransactionMetaFlowAttributeSortEnum, BillingWalletTransactionMetaFlowFilteringField, BillingWalletTransactionMetaFlowSortEnum, BillingWalletTransactionMetaPlanFilteringField, BillingWalletTransactionMetaPlanSortEnum, BillingWalletTransactionMetaSortEnum, BillingWalletTransactionMetaType, BillingWalletTransactionMetaWalletFilteringField, BillingWalletTransactionMetaWalletSortEnum, BillingWalletTransactionSortEnum, BillingWalletTransactionState, CatalogModelType, CreateDisclosureProviderByAttributesMode, CreateSignatureProviderByAttributesMode, CredentialCategoryType, CredentialFilteringField, CredentialLabelFilteringField, CredentialLabelSortEnum, CredentialLocaleFilteringField, CredentialLocaleSortEnum, CredentialMetaDatakeeperFilteringField, CredentialMetaDatakeeperSortEnum, CredentialMetaDigidentityFilteringField, CredentialMetaDigidentitySortEnum, CredentialMetaFilteringField, CredentialMetaMdocFilteringField, CredentialMetaMdocSortEnum, CredentialMetaNectFilteringField, CredentialMetaNectSortEnum, CredentialMetaNlWalletFilteringField, CredentialMetaNlWalletSortEnum, CredentialMetaOid4VcmdocFilteringField, CredentialMetaOid4VcmdocSortEnum, CredentialMetaOid4VcsdjwtFilteringField, CredentialMetaOid4VcsdjwtSortEnum, CredentialMetaReadIdDocumentType, CredentialMetaReadIdFilteringField, CredentialMetaReadIdSortEnum, CredentialMetaSortEnum, CredentialMetaTruidFilteringField, CredentialMetaTruidSortEnum, CredentialMetaType, CredentialMetaYiviFilteringField, CredentialMetaYiviSortEnum, CredentialMetaYotiFilteringField, CredentialMetaYotiSortEnum, CredentialRequestFilteringField, CredentialRequestLocaleFilteringField, CredentialRequestLocaleSortEnum, CredentialRequestMetaDatakeeperFilteringField, CredentialRequestMetaDatakeeperSortEnum, CredentialRequestMetaFilteringField, CredentialRequestMetaOid4VcmdocFilteringField, CredentialRequestMetaOid4VcmdocSortEnum, CredentialRequestMetaOid4VcsdjwtFilteringField, CredentialRequestMetaOid4VcsdjwtSortEnum, CredentialRequestMetaSortEnum, CredentialRequestMetaType, CredentialRequestMetaYiviFilteringField, CredentialRequestMetaYiviSortEnum, CredentialRequestMetaYotiCategoryType, CredentialRequestMetaYotiFilteringField, CredentialRequestMetaYotiSortEnum, CredentialRequestSortEnum, CredentialRequestStateFilteringField, CredentialRequestStateLocaleFilteringField, CredentialRequestStateLocaleSortEnum, CredentialRequestStateSortEnum, CredentialRequestStates, CredentialRequestWorkflowFilteringField, CredentialRequestWorkflowSortEnum, CredentialSortEnum, Currency, CurrencyCode, CurrencyUnit, DisclosureAction, DisclosureActivityFilteringField, DisclosureActivitySortEnum, DisclosureAttributeFilteringField, DisclosureAttributeSortEnum, DisclosureBrandFilteringField, DisclosureBrandSortEnum, DisclosureCredentialFilteringField, DisclosureCredentialSortEnum, DisclosureDomainFilteringField, DisclosureDomainSortEnum, DisclosureFilteringField, DisclosureGroupFilteringField, DisclosureGroupSortEnum, DisclosureLabelFilteringField, DisclosureLabelSortEnum, DisclosureMappingFilteringField, DisclosureMappingSortEnum, DisclosureProviderConfigurationFilteringField, DisclosureProviderConfigurationNlWalletFilteringField, DisclosureProviderConfigurationNlWalletSortEnum, DisclosureProviderConfigurationSortEnum, DisclosureProviderFilteringField, DisclosureProviderSortEnum, DisclosureSortEnum, DisclosureState, FilteringConnector, FilteringMode, FilteringType, FlowType, IdentityModel, Interval, InvalidArgumentError, InvalidAssertionError, InvalidResponseError, IssuanceAction, IssuanceActivityFilteringField, IssuanceActivitySortEnum, IssuanceAttributeFilteringField, IssuanceAttributeSortEnum, IssuanceBrandFilteringField, IssuanceBrandSortEnum, IssuanceCredentialFilteringField, IssuanceCredentialMetaDatakeeperFilteringField, IssuanceCredentialMetaDatakeeperSortEnum, IssuanceCredentialMetaFilteringField, IssuanceCredentialMetaSortEnum, IssuanceCredentialMetaType, IssuanceCredentialMetaYiviFilteringField, IssuanceCredentialMetaYiviSortEnum, IssuanceCredentialSortEnum, IssuanceDomainFilteringField, IssuanceDomainSortEnum, IssuanceFilteringField, IssuanceLabelFilteringField, IssuanceLabelSortEnum, IssuanceMappingFilteringField, IssuanceMappingSortEnum, IssuanceProviderFilteringField, IssuanceProviderSortEnum, IssuanceSortEnum, IssuanceState, IssuerCategoryType, IssuerFilteringField, IssuerLabelFilteringField, IssuerLabelSortEnum, IssuerLocaleFilteringField, IssuerLocaleSortEnum, IssuerMetaDatakeeperFilteringField, IssuerMetaDatakeeperSortEnum, IssuerMetaFilteringField, IssuerMetaMdocFilteringField, IssuerMetaMdocSortEnum, IssuerMetaOid4VcmdocFilteringField, IssuerMetaOid4VcmdocSortEnum, IssuerMetaOid4VcsdjwtFilteringField, IssuerMetaOid4VcsdjwtSortEnum, IssuerMetaSortEnum, IssuerMetaType, IssuerMetaYiviFilteringField, IssuerMetaYiviSortEnum, IssuerSortEnum, IssuerType, LabelFilteringField, LabelScope, LabelSortEnum, LocaleConfigFilteringField, LocaleConfigSortEnum, MaintenanceAction, MaintenanceFilteringField, MaintenanceSortEnum, MaintenanceState, MappingIssuanceAction, MappingIssuanceAttributeFilteringField, MappingIssuanceAttributeSortEnum, MappingIssuanceFilteringField, MappingIssuanceLinkFilteringField, MappingIssuanceLinkSortEnum, MappingIssuanceSortEnum, MappingIssuanceState, MappingVerificationAction, MappingVerificationAttributeFilteringField, MappingVerificationAttributeSortEnum, MappingVerificationClaimFilteringField, MappingVerificationClaimSortEnum, MappingVerificationFilteringField, MappingVerificationLinkFilteringField, MappingVerificationLinkSortEnum, MappingVerificationSortEnum, MappingVerificationState, NestedFilteringType, OAuthFlowType, OAuthProviderAction, OAuthProviderFilteringField, OAuthProviderSortEnum, OAuthProviderState, OperationFailedError, OrderDirection, OrganizationAction, OrganizationAddressFilteringField, OrganizationAddressSortEnum, OrganizationAlertAction, OrganizationAlertDeprecationFilteringField, OrganizationAlertDeprecationSortEnum, OrganizationAlertFilteringField, OrganizationAlertSortEnum, OrganizationAppAction, OrganizationAppFilteringField, OrganizationAppMetaDatakeeperFilteringField, OrganizationAppMetaDatakeeperSortEnum, OrganizationAppMetaFilteringField, OrganizationAppMetaKiwaFilteringField, OrganizationAppMetaKiwaSortEnum, OrganizationAppMetaOid4vcFilteringField, OrganizationAppMetaOid4vcSortEnum, OrganizationAppMetaSortEnum, OrganizationAppMetaType, OrganizationAppMetaYotiFilteringField, OrganizationAppMetaYotiSortEnum, OrganizationAppPrerequisiteFilteringField, OrganizationAppPrerequisiteSortEnum, OrganizationAppPrerequisiteWorkflowFilteringField, OrganizationAppPrerequisiteWorkflowSortEnum, OrganizationAppProduct, OrganizationAppSortEnum, OrganizationAppState, OrganizationBrandAction, OrganizationBrandFilteringField, OrganizationBrandLabelFilteringField, OrganizationBrandLabelSortEnum, OrganizationBrandSortEnum, OrganizationBrandState, OrganizationClientFilteringField, OrganizationClientSortEnum, OrganizationDomainAction, OrganizationDomainFilteringField, OrganizationDomainLabelFilteringField, OrganizationDomainLabelSortEnum, OrganizationDomainOAuthProviderFilteringField, OrganizationDomainOAuthProviderSortEnum, OrganizationDomainSortEnum, OrganizationDomainState, OrganizationDomainValidationFilteringField, OrganizationDomainValidationSortEnum, OrganizationFilteringField, OrganizationNotificationAction, OrganizationNotificationEventFilteringField, OrganizationNotificationEventSortEnum, OrganizationNotificationFilteringField, OrganizationNotificationSortEnum, OrganizationQuotaFilteringField, OrganizationQuotaSortEnum, OrganizationSecretAlgorithm, OrganizationSecretFilteringField, OrganizationSecretSortEnum, OrganizationSecretType, OrganizationSortEnum, OrganizationType, OrganizationUserAction, OrganizationUserFilteringField, OrganizationUserRole, OrganizationUserSortEnum, PaymentProviderEventFilteringField, PaymentProviderEventSortEnum, PaymentProviderFilteringField, PaymentProviderInvoiceFilteringField, PaymentProviderInvoiceSortEnum, PaymentProviderInvoiceState, PaymentProviderMethodFilteringField, PaymentProviderMethodSortEnum, PaymentProviderMethodState, PaymentProviderOrganizationFilteringField, PaymentProviderOrganizationSortEnum, PaymentProviderSortEnum, PricingAggregationStrategy, PricingCatalogFilteringField, PricingCatalogSortEnum, PricingConfigurationAppFilteringField, PricingConfigurationAppSortEnum, PricingConfigurationOrganizationFilteringField, PricingConfigurationOrganizationSortEnum, PricingConfigurationStudioPlanFilteringField, PricingConfigurationStudioPlanSortEnum, PricingGroupAssignmentFilteringField, PricingGroupAssignmentSortEnum, PricingGroupAssignmentType, PricingGroupFilteringField, PricingGroupSortEnum, PricingHierarchyLevel, PricingLayer, PricingRuleAction, PricingRuleConstraintFilteringField, PricingRuleConstraintSortEnum, PricingRuleFilteringField, PricingRuleSortEnum, PricingRuleState, PricingRuleTargetFilteringField, PricingRuleTargetSortEnum, PricingType, ProviderAppFilteringField, ProviderAppMetaFilteringField, ProviderAppMetaOid4VcFilteringField, ProviderAppMetaOid4VcSortEnum, ProviderAppMetaOid4VcSpecType, ProviderAppMetaSortEnum, ProviderAppMetaType, ProviderAppMetaTypeOid4VcClientIdentifierPrefix, ProviderAppSortEnum, ProviderCategoryType, ProviderFilteringField, ProviderLabelFilteringField, ProviderLabelSortEnum, ProviderLocaleFilteringField, ProviderLocaleSortEnum, ProviderSortEnum, ProviderType, SchemeCategoryType, SchemeFilteringField, SchemeLabelFilteringField, SchemeLabelSortEnum, SchemeLocaleFilteringField, SchemeLocaleSortEnum, SchemeSortEnum, SchemeType, ScopeCategoryType, ScopeClaimFilteringField, ScopeClaimSortEnum, ScopeFilteringField, ScopeLocaleFilteringField, ScopeLocaleSortEnum, ScopeResourceFilteringField, ScopeResourceSortEnum, ScopeSortEnum, SignatureAction, SignatureActivityFilteringField, SignatureActivitySortEnum, SignatureAttributeFilteringField, SignatureAttributeSortEnum, SignatureBrandFilteringField, SignatureBrandSortEnum, SignatureCredentialFilteringField, SignatureCredentialSortEnum, SignatureDomainFilteringField, SignatureDomainSortEnum, SignatureFilteringField, SignatureGroupFilteringField, SignatureGroupSortEnum, SignatureLabelFilteringField, SignatureLabelSortEnum, SignatureMappingFilteringField, SignatureMappingSortEnum, SignatureProviderConfigurationFilteringField, SignatureProviderConfigurationNlWalletFilteringField, SignatureProviderConfigurationNlWalletSortEnum, SignatureProviderConfigurationSortEnum, SignatureProviderFilteringField, SignatureProviderSortEnum, SignatureSortEnum, SignatureState, State, StudioPlanAction, StudioPlanControlFilteringField, StudioPlanControlOverrideFilteringField, StudioPlanControlOverrideSortEnum, StudioPlanControlSortEnum, StudioPlanFilteringField, StudioPlanIntervalFilteringField, StudioPlanIntervalSortEnum, StudioPlanOrganizationFilteringField, StudioPlanOrganizationSortEnum, StudioPlanSortEnum, StudioPlanState, UnknownError, UserFilteringField, UserInvitationFilteringField, UserInvitationSortEnum, UserInvitationState, UserSortEnum, assert, assertArray, assertBoolean, assertDate, assertFunction, assertJsonValue, assertNumber, assertObject, assertString, assertUUID, assertUrlString, createVeridGraphQLClient, getAttribute, getAttributes, getAttributesWithHierarchy, getCredential, getCredentials, getIssuer, getIssuers, getProvider, getProviders, getScheme, getSchemes };
|
|
6299
6372
|
//# sourceMappingURL=index.js.map
|
|
6300
6373
|
//# sourceMappingURL=index.js.map
|