@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.cjs
CHANGED
|
@@ -204,6 +204,17 @@ function concat(...buffers) {
|
|
|
204
204
|
}
|
|
205
205
|
return buf2;
|
|
206
206
|
}
|
|
207
|
+
function encode(string) {
|
|
208
|
+
const bytes = new Uint8Array(string.length);
|
|
209
|
+
for (let i = 0; i < string.length; i++) {
|
|
210
|
+
const code = string.charCodeAt(i);
|
|
211
|
+
if (code > 127) {
|
|
212
|
+
throw new TypeError("non-ASCII string encountered in encode()");
|
|
213
|
+
}
|
|
214
|
+
bytes[i] = code;
|
|
215
|
+
}
|
|
216
|
+
return bytes;
|
|
217
|
+
}
|
|
207
218
|
|
|
208
219
|
// ../../node_modules/jose/dist/webapi/lib/base64.js
|
|
209
220
|
function decodeBase64(encoded) {
|
|
@@ -229,7 +240,7 @@ function decode(input) {
|
|
|
229
240
|
if (encoded instanceof Uint8Array) {
|
|
230
241
|
encoded = decoder.decode(encoded);
|
|
231
242
|
}
|
|
232
|
-
encoded = encoded.replace(/-/g, "+").replace(/_/g, "/")
|
|
243
|
+
encoded = encoded.replace(/-/g, "+").replace(/_/g, "/");
|
|
233
244
|
try {
|
|
234
245
|
return decodeBase64(encoded);
|
|
235
246
|
} catch {
|
|
@@ -237,102 +248,17 @@ function decode(input) {
|
|
|
237
248
|
}
|
|
238
249
|
}
|
|
239
250
|
|
|
240
|
-
// ../../node_modules/jose/dist/webapi/util/errors.js
|
|
241
|
-
var JOSEError = class extends Error {
|
|
242
|
-
static code = "ERR_JOSE_GENERIC";
|
|
243
|
-
code = "ERR_JOSE_GENERIC";
|
|
244
|
-
constructor(message2, options) {
|
|
245
|
-
super(message2, options);
|
|
246
|
-
this.name = this.constructor.name;
|
|
247
|
-
Error.captureStackTrace?.(this, this.constructor);
|
|
248
|
-
}
|
|
249
|
-
};
|
|
250
|
-
var JWTClaimValidationFailed = class extends JOSEError {
|
|
251
|
-
static code = "ERR_JWT_CLAIM_VALIDATION_FAILED";
|
|
252
|
-
code = "ERR_JWT_CLAIM_VALIDATION_FAILED";
|
|
253
|
-
claim;
|
|
254
|
-
reason;
|
|
255
|
-
payload;
|
|
256
|
-
constructor(message2, payload, claim = "unspecified", reason = "unspecified") {
|
|
257
|
-
super(message2, { cause: { claim, reason, payload } });
|
|
258
|
-
this.claim = claim;
|
|
259
|
-
this.reason = reason;
|
|
260
|
-
this.payload = payload;
|
|
261
|
-
}
|
|
262
|
-
};
|
|
263
|
-
var JWTExpired = class extends JOSEError {
|
|
264
|
-
static code = "ERR_JWT_EXPIRED";
|
|
265
|
-
code = "ERR_JWT_EXPIRED";
|
|
266
|
-
claim;
|
|
267
|
-
reason;
|
|
268
|
-
payload;
|
|
269
|
-
constructor(message2, payload, claim = "unspecified", reason = "unspecified") {
|
|
270
|
-
super(message2, { cause: { claim, reason, payload } });
|
|
271
|
-
this.claim = claim;
|
|
272
|
-
this.reason = reason;
|
|
273
|
-
this.payload = payload;
|
|
274
|
-
}
|
|
275
|
-
};
|
|
276
|
-
var JOSEAlgNotAllowed = class extends JOSEError {
|
|
277
|
-
static code = "ERR_JOSE_ALG_NOT_ALLOWED";
|
|
278
|
-
code = "ERR_JOSE_ALG_NOT_ALLOWED";
|
|
279
|
-
};
|
|
280
|
-
var JOSENotSupported = class extends JOSEError {
|
|
281
|
-
static code = "ERR_JOSE_NOT_SUPPORTED";
|
|
282
|
-
code = "ERR_JOSE_NOT_SUPPORTED";
|
|
283
|
-
};
|
|
284
|
-
var JWSInvalid = class extends JOSEError {
|
|
285
|
-
static code = "ERR_JWS_INVALID";
|
|
286
|
-
code = "ERR_JWS_INVALID";
|
|
287
|
-
};
|
|
288
|
-
var JWTInvalid = class extends JOSEError {
|
|
289
|
-
static code = "ERR_JWT_INVALID";
|
|
290
|
-
code = "ERR_JWT_INVALID";
|
|
291
|
-
};
|
|
292
|
-
var JWKSInvalid = class extends JOSEError {
|
|
293
|
-
static code = "ERR_JWKS_INVALID";
|
|
294
|
-
code = "ERR_JWKS_INVALID";
|
|
295
|
-
};
|
|
296
|
-
var JWKSNoMatchingKey = class extends JOSEError {
|
|
297
|
-
static code = "ERR_JWKS_NO_MATCHING_KEY";
|
|
298
|
-
code = "ERR_JWKS_NO_MATCHING_KEY";
|
|
299
|
-
constructor(message2 = "no applicable key found in the JSON Web Key Set", options) {
|
|
300
|
-
super(message2, options);
|
|
301
|
-
}
|
|
302
|
-
};
|
|
303
|
-
var JWKSMultipleMatchingKeys = class extends JOSEError {
|
|
304
|
-
[Symbol.asyncIterator];
|
|
305
|
-
static code = "ERR_JWKS_MULTIPLE_MATCHING_KEYS";
|
|
306
|
-
code = "ERR_JWKS_MULTIPLE_MATCHING_KEYS";
|
|
307
|
-
constructor(message2 = "multiple matching keys found in the JSON Web Key Set", options) {
|
|
308
|
-
super(message2, options);
|
|
309
|
-
}
|
|
310
|
-
};
|
|
311
|
-
var JWKSTimeout = class extends JOSEError {
|
|
312
|
-
static code = "ERR_JWKS_TIMEOUT";
|
|
313
|
-
code = "ERR_JWKS_TIMEOUT";
|
|
314
|
-
constructor(message2 = "request timed out", options) {
|
|
315
|
-
super(message2, options);
|
|
316
|
-
}
|
|
317
|
-
};
|
|
318
|
-
var JWSSignatureVerificationFailed = class extends JOSEError {
|
|
319
|
-
static code = "ERR_JWS_SIGNATURE_VERIFICATION_FAILED";
|
|
320
|
-
code = "ERR_JWS_SIGNATURE_VERIFICATION_FAILED";
|
|
321
|
-
constructor(message2 = "signature verification failed", options) {
|
|
322
|
-
super(message2, options);
|
|
323
|
-
}
|
|
324
|
-
};
|
|
325
|
-
|
|
326
251
|
// ../../node_modules/jose/dist/webapi/lib/crypto_key.js
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
}
|
|
330
|
-
function isAlgorithm(algorithm, name) {
|
|
331
|
-
return algorithm.name === name;
|
|
332
|
-
}
|
|
252
|
+
var unusable = (name, prop = "algorithm.name") => new TypeError(`CryptoKey does not support this operation, its ${prop} must be ${name}`);
|
|
253
|
+
var isAlgorithm = (algorithm, name) => algorithm.name === name;
|
|
333
254
|
function getHashLength(hash) {
|
|
334
255
|
return parseInt(hash.name.slice(4), 10);
|
|
335
256
|
}
|
|
257
|
+
function checkHashLength(algorithm, expected) {
|
|
258
|
+
const actual = getHashLength(algorithm.hash);
|
|
259
|
+
if (actual !== expected)
|
|
260
|
+
throw unusable(`SHA-${expected}`, "algorithm.hash");
|
|
261
|
+
}
|
|
336
262
|
function getNamedCurve(alg) {
|
|
337
263
|
switch (alg) {
|
|
338
264
|
case "ES256":
|
|
@@ -357,10 +283,7 @@ function checkSigCryptoKey(key, alg, usage) {
|
|
|
357
283
|
case "HS512": {
|
|
358
284
|
if (!isAlgorithm(key.algorithm, "HMAC"))
|
|
359
285
|
throw unusable("HMAC");
|
|
360
|
-
|
|
361
|
-
const actual = getHashLength(key.algorithm.hash);
|
|
362
|
-
if (actual !== expected)
|
|
363
|
-
throw unusable(`SHA-${expected}`, "algorithm.hash");
|
|
286
|
+
checkHashLength(key.algorithm, parseInt(alg.slice(2), 10));
|
|
364
287
|
break;
|
|
365
288
|
}
|
|
366
289
|
case "RS256":
|
|
@@ -368,10 +291,7 @@ function checkSigCryptoKey(key, alg, usage) {
|
|
|
368
291
|
case "RS512": {
|
|
369
292
|
if (!isAlgorithm(key.algorithm, "RSASSA-PKCS1-v1_5"))
|
|
370
293
|
throw unusable("RSASSA-PKCS1-v1_5");
|
|
371
|
-
|
|
372
|
-
const actual = getHashLength(key.algorithm.hash);
|
|
373
|
-
if (actual !== expected)
|
|
374
|
-
throw unusable(`SHA-${expected}`, "algorithm.hash");
|
|
294
|
+
checkHashLength(key.algorithm, parseInt(alg.slice(2), 10));
|
|
375
295
|
break;
|
|
376
296
|
}
|
|
377
297
|
case "PS256":
|
|
@@ -379,10 +299,7 @@ function checkSigCryptoKey(key, alg, usage) {
|
|
|
379
299
|
case "PS512": {
|
|
380
300
|
if (!isAlgorithm(key.algorithm, "RSA-PSS"))
|
|
381
301
|
throw unusable("RSA-PSS");
|
|
382
|
-
|
|
383
|
-
const actual = getHashLength(key.algorithm.hash);
|
|
384
|
-
if (actual !== expected)
|
|
385
|
-
throw unusable(`SHA-${expected}`, "algorithm.hash");
|
|
302
|
+
checkHashLength(key.algorithm, parseInt(alg.slice(2), 10));
|
|
386
303
|
break;
|
|
387
304
|
}
|
|
388
305
|
case "Ed25519":
|
|
@@ -437,26 +354,133 @@ function message(msg, actual, ...types) {
|
|
|
437
354
|
}
|
|
438
355
|
return msg;
|
|
439
356
|
}
|
|
440
|
-
var
|
|
441
|
-
|
|
357
|
+
var invalidKeyInput = (actual, ...types) => message("Key must be ", actual, ...types);
|
|
358
|
+
var withAlg = (alg, actual, ...types) => message(`Key for the ${alg} algorithm must be `, actual, ...types);
|
|
359
|
+
|
|
360
|
+
// ../../node_modules/jose/dist/webapi/util/errors.js
|
|
361
|
+
var JOSEError = class extends Error {
|
|
362
|
+
static code = "ERR_JOSE_GENERIC";
|
|
363
|
+
code = "ERR_JOSE_GENERIC";
|
|
364
|
+
constructor(message2, options) {
|
|
365
|
+
super(message2, options);
|
|
366
|
+
this.name = this.constructor.name;
|
|
367
|
+
Error.captureStackTrace?.(this, this.constructor);
|
|
368
|
+
}
|
|
369
|
+
};
|
|
370
|
+
var JWTClaimValidationFailed = class extends JOSEError {
|
|
371
|
+
static code = "ERR_JWT_CLAIM_VALIDATION_FAILED";
|
|
372
|
+
code = "ERR_JWT_CLAIM_VALIDATION_FAILED";
|
|
373
|
+
claim;
|
|
374
|
+
reason;
|
|
375
|
+
payload;
|
|
376
|
+
constructor(message2, payload, claim = "unspecified", reason = "unspecified") {
|
|
377
|
+
super(message2, { cause: { claim, reason, payload } });
|
|
378
|
+
this.claim = claim;
|
|
379
|
+
this.reason = reason;
|
|
380
|
+
this.payload = payload;
|
|
381
|
+
}
|
|
382
|
+
};
|
|
383
|
+
var JWTExpired = class extends JOSEError {
|
|
384
|
+
static code = "ERR_JWT_EXPIRED";
|
|
385
|
+
code = "ERR_JWT_EXPIRED";
|
|
386
|
+
claim;
|
|
387
|
+
reason;
|
|
388
|
+
payload;
|
|
389
|
+
constructor(message2, payload, claim = "unspecified", reason = "unspecified") {
|
|
390
|
+
super(message2, { cause: { claim, reason, payload } });
|
|
391
|
+
this.claim = claim;
|
|
392
|
+
this.reason = reason;
|
|
393
|
+
this.payload = payload;
|
|
394
|
+
}
|
|
395
|
+
};
|
|
396
|
+
var JOSEAlgNotAllowed = class extends JOSEError {
|
|
397
|
+
static code = "ERR_JOSE_ALG_NOT_ALLOWED";
|
|
398
|
+
code = "ERR_JOSE_ALG_NOT_ALLOWED";
|
|
399
|
+
};
|
|
400
|
+
var JOSENotSupported = class extends JOSEError {
|
|
401
|
+
static code = "ERR_JOSE_NOT_SUPPORTED";
|
|
402
|
+
code = "ERR_JOSE_NOT_SUPPORTED";
|
|
403
|
+
};
|
|
404
|
+
var JWSInvalid = class extends JOSEError {
|
|
405
|
+
static code = "ERR_JWS_INVALID";
|
|
406
|
+
code = "ERR_JWS_INVALID";
|
|
407
|
+
};
|
|
408
|
+
var JWTInvalid = class extends JOSEError {
|
|
409
|
+
static code = "ERR_JWT_INVALID";
|
|
410
|
+
code = "ERR_JWT_INVALID";
|
|
411
|
+
};
|
|
412
|
+
var JWKSInvalid = class extends JOSEError {
|
|
413
|
+
static code = "ERR_JWKS_INVALID";
|
|
414
|
+
code = "ERR_JWKS_INVALID";
|
|
415
|
+
};
|
|
416
|
+
var JWKSNoMatchingKey = class extends JOSEError {
|
|
417
|
+
static code = "ERR_JWKS_NO_MATCHING_KEY";
|
|
418
|
+
code = "ERR_JWKS_NO_MATCHING_KEY";
|
|
419
|
+
constructor(message2 = "no applicable key found in the JSON Web Key Set", options) {
|
|
420
|
+
super(message2, options);
|
|
421
|
+
}
|
|
422
|
+
};
|
|
423
|
+
var JWKSMultipleMatchingKeys = class extends JOSEError {
|
|
424
|
+
[Symbol.asyncIterator];
|
|
425
|
+
static code = "ERR_JWKS_MULTIPLE_MATCHING_KEYS";
|
|
426
|
+
code = "ERR_JWKS_MULTIPLE_MATCHING_KEYS";
|
|
427
|
+
constructor(message2 = "multiple matching keys found in the JSON Web Key Set", options) {
|
|
428
|
+
super(message2, options);
|
|
429
|
+
}
|
|
430
|
+
};
|
|
431
|
+
var JWKSTimeout = class extends JOSEError {
|
|
432
|
+
static code = "ERR_JWKS_TIMEOUT";
|
|
433
|
+
code = "ERR_JWKS_TIMEOUT";
|
|
434
|
+
constructor(message2 = "request timed out", options) {
|
|
435
|
+
super(message2, options);
|
|
436
|
+
}
|
|
437
|
+
};
|
|
438
|
+
var JWSSignatureVerificationFailed = class extends JOSEError {
|
|
439
|
+
static code = "ERR_JWS_SIGNATURE_VERIFICATION_FAILED";
|
|
440
|
+
code = "ERR_JWS_SIGNATURE_VERIFICATION_FAILED";
|
|
441
|
+
constructor(message2 = "signature verification failed", options) {
|
|
442
|
+
super(message2, options);
|
|
443
|
+
}
|
|
442
444
|
};
|
|
443
|
-
function withAlg(alg, actual, ...types) {
|
|
444
|
-
return message(`Key for the ${alg} algorithm must be `, actual, ...types);
|
|
445
|
-
}
|
|
446
445
|
|
|
447
446
|
// ../../node_modules/jose/dist/webapi/lib/is_key_like.js
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
}
|
|
454
|
-
|
|
455
|
-
|
|
447
|
+
var isCryptoKey = (key) => {
|
|
448
|
+
if (key?.[Symbol.toStringTag] === "CryptoKey")
|
|
449
|
+
return true;
|
|
450
|
+
try {
|
|
451
|
+
return key instanceof CryptoKey;
|
|
452
|
+
} catch {
|
|
453
|
+
return false;
|
|
454
|
+
}
|
|
456
455
|
};
|
|
456
|
+
var isKeyObject = (key) => key?.[Symbol.toStringTag] === "KeyObject";
|
|
457
|
+
var isKeyLike = (key) => isCryptoKey(key) || isKeyObject(key);
|
|
458
|
+
|
|
459
|
+
// ../../node_modules/jose/dist/webapi/lib/helpers.js
|
|
460
|
+
function decodeBase64url(value, label, ErrorClass) {
|
|
461
|
+
try {
|
|
462
|
+
return decode(value);
|
|
463
|
+
} catch {
|
|
464
|
+
throw new ErrorClass(`Failed to base64url decode the ${label}`);
|
|
465
|
+
}
|
|
466
|
+
}
|
|
457
467
|
|
|
458
|
-
// ../../node_modules/jose/dist/webapi/lib/
|
|
459
|
-
var
|
|
468
|
+
// ../../node_modules/jose/dist/webapi/lib/type_checks.js
|
|
469
|
+
var isObjectLike = (value) => typeof value === "object" && value !== null;
|
|
470
|
+
function isObject(input) {
|
|
471
|
+
if (!isObjectLike(input) || Object.prototype.toString.call(input) !== "[object Object]") {
|
|
472
|
+
return false;
|
|
473
|
+
}
|
|
474
|
+
if (Object.getPrototypeOf(input) === null) {
|
|
475
|
+
return true;
|
|
476
|
+
}
|
|
477
|
+
let proto = input;
|
|
478
|
+
while (Object.getPrototypeOf(proto) !== null) {
|
|
479
|
+
proto = Object.getPrototypeOf(proto);
|
|
480
|
+
}
|
|
481
|
+
return Object.getPrototypeOf(input) === proto;
|
|
482
|
+
}
|
|
483
|
+
function isDisjoint(...headers) {
|
|
460
484
|
const sources = headers.filter(Boolean);
|
|
461
485
|
if (sources.length === 0 || sources.length === 1) {
|
|
462
486
|
return true;
|
|
@@ -476,37 +500,74 @@ var is_disjoint_default = (...headers) => {
|
|
|
476
500
|
}
|
|
477
501
|
}
|
|
478
502
|
return true;
|
|
479
|
-
};
|
|
480
|
-
|
|
481
|
-
// ../../node_modules/jose/dist/webapi/lib/is_object.js
|
|
482
|
-
function isObjectLike(value) {
|
|
483
|
-
return typeof value === "object" && value !== null;
|
|
484
503
|
}
|
|
485
|
-
var
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
if (Object.getPrototypeOf(input) === null) {
|
|
490
|
-
return true;
|
|
491
|
-
}
|
|
492
|
-
let proto = input;
|
|
493
|
-
while (Object.getPrototypeOf(proto) !== null) {
|
|
494
|
-
proto = Object.getPrototypeOf(proto);
|
|
495
|
-
}
|
|
496
|
-
return Object.getPrototypeOf(input) === proto;
|
|
497
|
-
};
|
|
504
|
+
var isJWK = (key) => isObject(key) && typeof key.kty === "string";
|
|
505
|
+
var isPrivateJWK = (key) => key.kty !== "oct" && (key.kty === "AKP" && typeof key.priv === "string" || typeof key.d === "string");
|
|
506
|
+
var isPublicJWK = (key) => key.kty !== "oct" && key.d === void 0 && key.priv === void 0;
|
|
507
|
+
var isSecretJWK = (key) => key.kty === "oct" && typeof key.k === "string";
|
|
498
508
|
|
|
499
|
-
// ../../node_modules/jose/dist/webapi/lib/
|
|
500
|
-
|
|
509
|
+
// ../../node_modules/jose/dist/webapi/lib/signing.js
|
|
510
|
+
function checkKeyLength(alg, key) {
|
|
501
511
|
if (alg.startsWith("RS") || alg.startsWith("PS")) {
|
|
502
512
|
const { modulusLength } = key.algorithm;
|
|
503
513
|
if (typeof modulusLength !== "number" || modulusLength < 2048) {
|
|
504
514
|
throw new TypeError(`${alg} requires key modulusLength to be 2048 bits or larger`);
|
|
505
515
|
}
|
|
506
516
|
}
|
|
507
|
-
}
|
|
517
|
+
}
|
|
518
|
+
function subtleAlgorithm(alg, algorithm) {
|
|
519
|
+
const hash = `SHA-${alg.slice(-3)}`;
|
|
520
|
+
switch (alg) {
|
|
521
|
+
case "HS256":
|
|
522
|
+
case "HS384":
|
|
523
|
+
case "HS512":
|
|
524
|
+
return { hash, name: "HMAC" };
|
|
525
|
+
case "PS256":
|
|
526
|
+
case "PS384":
|
|
527
|
+
case "PS512":
|
|
528
|
+
return { hash, name: "RSA-PSS", saltLength: parseInt(alg.slice(-3), 10) >> 3 };
|
|
529
|
+
case "RS256":
|
|
530
|
+
case "RS384":
|
|
531
|
+
case "RS512":
|
|
532
|
+
return { hash, name: "RSASSA-PKCS1-v1_5" };
|
|
533
|
+
case "ES256":
|
|
534
|
+
case "ES384":
|
|
535
|
+
case "ES512":
|
|
536
|
+
return { hash, name: "ECDSA", namedCurve: algorithm.namedCurve };
|
|
537
|
+
case "Ed25519":
|
|
538
|
+
case "EdDSA":
|
|
539
|
+
return { name: "Ed25519" };
|
|
540
|
+
case "ML-DSA-44":
|
|
541
|
+
case "ML-DSA-65":
|
|
542
|
+
case "ML-DSA-87":
|
|
543
|
+
return { name: alg };
|
|
544
|
+
default:
|
|
545
|
+
throw new JOSENotSupported(`alg ${alg} is not supported either by JOSE or your javascript runtime`);
|
|
546
|
+
}
|
|
547
|
+
}
|
|
548
|
+
async function getSigKey(alg, key, usage) {
|
|
549
|
+
if (key instanceof Uint8Array) {
|
|
550
|
+
if (!alg.startsWith("HS")) {
|
|
551
|
+
throw new TypeError(invalidKeyInput(key, "CryptoKey", "KeyObject", "JSON Web Key"));
|
|
552
|
+
}
|
|
553
|
+
return crypto.subtle.importKey("raw", key, { hash: `SHA-${alg.slice(-3)}`, name: "HMAC" }, false, [usage]);
|
|
554
|
+
}
|
|
555
|
+
checkSigCryptoKey(key, alg, usage);
|
|
556
|
+
return key;
|
|
557
|
+
}
|
|
558
|
+
async function verify(alg, key, signature, data) {
|
|
559
|
+
const cryptoKey = await getSigKey(alg, key, "verify");
|
|
560
|
+
checkKeyLength(alg, cryptoKey);
|
|
561
|
+
const algorithm = subtleAlgorithm(alg, cryptoKey.algorithm);
|
|
562
|
+
try {
|
|
563
|
+
return await crypto.subtle.verify(algorithm, cryptoKey, signature, data);
|
|
564
|
+
} catch {
|
|
565
|
+
return false;
|
|
566
|
+
}
|
|
567
|
+
}
|
|
508
568
|
|
|
509
569
|
// ../../node_modules/jose/dist/webapi/lib/jwk_to_key.js
|
|
570
|
+
var unsupportedAlg = 'Invalid or unsupported JWK "alg" (Algorithm) Parameter value';
|
|
510
571
|
function subtleMapping(jwk) {
|
|
511
572
|
let algorithm;
|
|
512
573
|
let keyUsages;
|
|
@@ -520,7 +581,7 @@ function subtleMapping(jwk) {
|
|
|
520
581
|
keyUsages = jwk.priv ? ["sign"] : ["verify"];
|
|
521
582
|
break;
|
|
522
583
|
default:
|
|
523
|
-
throw new JOSENotSupported(
|
|
584
|
+
throw new JOSENotSupported(unsupportedAlg);
|
|
524
585
|
}
|
|
525
586
|
break;
|
|
526
587
|
}
|
|
@@ -549,22 +610,19 @@ function subtleMapping(jwk) {
|
|
|
549
610
|
keyUsages = jwk.d ? ["decrypt", "unwrapKey"] : ["encrypt", "wrapKey"];
|
|
550
611
|
break;
|
|
551
612
|
default:
|
|
552
|
-
throw new JOSENotSupported(
|
|
613
|
+
throw new JOSENotSupported(unsupportedAlg);
|
|
553
614
|
}
|
|
554
615
|
break;
|
|
555
616
|
}
|
|
556
617
|
case "EC": {
|
|
557
618
|
switch (jwk.alg) {
|
|
558
619
|
case "ES256":
|
|
559
|
-
algorithm = { name: "ECDSA", namedCurve: "P-256" };
|
|
560
|
-
keyUsages = jwk.d ? ["sign"] : ["verify"];
|
|
561
|
-
break;
|
|
562
620
|
case "ES384":
|
|
563
|
-
algorithm = { name: "ECDSA", namedCurve: "P-384" };
|
|
564
|
-
keyUsages = jwk.d ? ["sign"] : ["verify"];
|
|
565
|
-
break;
|
|
566
621
|
case "ES512":
|
|
567
|
-
algorithm = {
|
|
622
|
+
algorithm = {
|
|
623
|
+
name: "ECDSA",
|
|
624
|
+
namedCurve: { ES256: "P-256", ES384: "P-384", ES512: "P-521" }[jwk.alg]
|
|
625
|
+
};
|
|
568
626
|
keyUsages = jwk.d ? ["sign"] : ["verify"];
|
|
569
627
|
break;
|
|
570
628
|
case "ECDH-ES":
|
|
@@ -575,7 +633,7 @@ function subtleMapping(jwk) {
|
|
|
575
633
|
keyUsages = jwk.d ? ["deriveBits"] : [];
|
|
576
634
|
break;
|
|
577
635
|
default:
|
|
578
|
-
throw new JOSENotSupported(
|
|
636
|
+
throw new JOSENotSupported(unsupportedAlg);
|
|
579
637
|
}
|
|
580
638
|
break;
|
|
581
639
|
}
|
|
@@ -594,7 +652,7 @@ function subtleMapping(jwk) {
|
|
|
594
652
|
keyUsages = jwk.d ? ["deriveBits"] : [];
|
|
595
653
|
break;
|
|
596
654
|
default:
|
|
597
|
-
throw new JOSENotSupported(
|
|
655
|
+
throw new JOSENotSupported(unsupportedAlg);
|
|
598
656
|
}
|
|
599
657
|
break;
|
|
600
658
|
}
|
|
@@ -603,7 +661,7 @@ function subtleMapping(jwk) {
|
|
|
603
661
|
}
|
|
604
662
|
return { algorithm, keyUsages };
|
|
605
663
|
}
|
|
606
|
-
|
|
664
|
+
async function jwkToKey(jwk) {
|
|
607
665
|
if (!jwk.alg) {
|
|
608
666
|
throw new TypeError('"alg" argument is required when "jwk.alg" is not present');
|
|
609
667
|
}
|
|
@@ -614,101 +672,10 @@ var jwk_to_key_default = async (jwk) => {
|
|
|
614
672
|
}
|
|
615
673
|
delete keyData.use;
|
|
616
674
|
return crypto.subtle.importKey("jwk", keyData, algorithm, jwk.ext ?? (jwk.d || jwk.priv ? false : true), jwk.key_ops ?? keyUsages);
|
|
617
|
-
};
|
|
618
|
-
|
|
619
|
-
// ../../node_modules/jose/dist/webapi/key/import.js
|
|
620
|
-
async function importJWK(jwk, alg, options) {
|
|
621
|
-
if (!is_object_default(jwk)) {
|
|
622
|
-
throw new TypeError("JWK must be an object");
|
|
623
|
-
}
|
|
624
|
-
let ext;
|
|
625
|
-
alg ??= jwk.alg;
|
|
626
|
-
ext ??= jwk.ext;
|
|
627
|
-
switch (jwk.kty) {
|
|
628
|
-
case "oct":
|
|
629
|
-
if (typeof jwk.k !== "string" || !jwk.k) {
|
|
630
|
-
throw new TypeError('missing "k" (Key Value) Parameter value');
|
|
631
|
-
}
|
|
632
|
-
return decode(jwk.k);
|
|
633
|
-
case "RSA":
|
|
634
|
-
if ("oth" in jwk && jwk.oth !== void 0) {
|
|
635
|
-
throw new JOSENotSupported('RSA JWK "oth" (Other Primes Info) Parameter value is not supported');
|
|
636
|
-
}
|
|
637
|
-
return jwk_to_key_default({ ...jwk, alg, ext });
|
|
638
|
-
case "AKP": {
|
|
639
|
-
if (typeof jwk.alg !== "string" || !jwk.alg) {
|
|
640
|
-
throw new TypeError('missing "alg" (Algorithm) Parameter value');
|
|
641
|
-
}
|
|
642
|
-
if (alg !== void 0 && alg !== jwk.alg) {
|
|
643
|
-
throw new TypeError("JWK alg and alg option value mismatch");
|
|
644
|
-
}
|
|
645
|
-
return jwk_to_key_default({ ...jwk, ext });
|
|
646
|
-
}
|
|
647
|
-
case "EC":
|
|
648
|
-
case "OKP":
|
|
649
|
-
return jwk_to_key_default({ ...jwk, alg, ext });
|
|
650
|
-
default:
|
|
651
|
-
throw new JOSENotSupported('Unsupported "kty" (Key Type) Parameter value');
|
|
652
|
-
}
|
|
653
|
-
}
|
|
654
|
-
|
|
655
|
-
// ../../node_modules/jose/dist/webapi/lib/validate_crit.js
|
|
656
|
-
var validate_crit_default = (Err, recognizedDefault, recognizedOption, protectedHeader, joseHeader) => {
|
|
657
|
-
if (joseHeader.crit !== void 0 && protectedHeader?.crit === void 0) {
|
|
658
|
-
throw new Err('"crit" (Critical) Header Parameter MUST be integrity protected');
|
|
659
|
-
}
|
|
660
|
-
if (!protectedHeader || protectedHeader.crit === void 0) {
|
|
661
|
-
return /* @__PURE__ */ new Set();
|
|
662
|
-
}
|
|
663
|
-
if (!Array.isArray(protectedHeader.crit) || protectedHeader.crit.length === 0 || protectedHeader.crit.some((input) => typeof input !== "string" || input.length === 0)) {
|
|
664
|
-
throw new Err('"crit" (Critical) Header Parameter MUST be an array of non-empty strings when present');
|
|
665
|
-
}
|
|
666
|
-
let recognized;
|
|
667
|
-
if (recognizedOption !== void 0) {
|
|
668
|
-
recognized = new Map([...Object.entries(recognizedOption), ...recognizedDefault.entries()]);
|
|
669
|
-
} else {
|
|
670
|
-
recognized = recognizedDefault;
|
|
671
|
-
}
|
|
672
|
-
for (const parameter of protectedHeader.crit) {
|
|
673
|
-
if (!recognized.has(parameter)) {
|
|
674
|
-
throw new JOSENotSupported(`Extension Header Parameter "${parameter}" is not recognized`);
|
|
675
|
-
}
|
|
676
|
-
if (joseHeader[parameter] === void 0) {
|
|
677
|
-
throw new Err(`Extension Header Parameter "${parameter}" is missing`);
|
|
678
|
-
}
|
|
679
|
-
if (recognized.get(parameter) && protectedHeader[parameter] === void 0) {
|
|
680
|
-
throw new Err(`Extension Header Parameter "${parameter}" MUST be integrity protected`);
|
|
681
|
-
}
|
|
682
|
-
}
|
|
683
|
-
return new Set(protectedHeader.crit);
|
|
684
|
-
};
|
|
685
|
-
|
|
686
|
-
// ../../node_modules/jose/dist/webapi/lib/validate_algorithms.js
|
|
687
|
-
var validate_algorithms_default = (option, algorithms) => {
|
|
688
|
-
if (algorithms !== void 0 && (!Array.isArray(algorithms) || algorithms.some((s) => typeof s !== "string"))) {
|
|
689
|
-
throw new TypeError(`"${option}" option must be an array of strings`);
|
|
690
|
-
}
|
|
691
|
-
if (!algorithms) {
|
|
692
|
-
return void 0;
|
|
693
|
-
}
|
|
694
|
-
return new Set(algorithms);
|
|
695
|
-
};
|
|
696
|
-
|
|
697
|
-
// ../../node_modules/jose/dist/webapi/lib/is_jwk.js
|
|
698
|
-
function isJWK(key) {
|
|
699
|
-
return is_object_default(key) && typeof key.kty === "string";
|
|
700
|
-
}
|
|
701
|
-
function isPrivateJWK(key) {
|
|
702
|
-
return key.kty !== "oct" && (key.kty === "AKP" && typeof key.priv === "string" || typeof key.d === "string");
|
|
703
|
-
}
|
|
704
|
-
function isPublicJWK(key) {
|
|
705
|
-
return key.kty !== "oct" && typeof key.d === "undefined" && typeof key.priv === "undefined";
|
|
706
|
-
}
|
|
707
|
-
function isSecretJWK(key) {
|
|
708
|
-
return key.kty === "oct" && typeof key.k === "string";
|
|
709
675
|
}
|
|
710
676
|
|
|
711
677
|
// ../../node_modules/jose/dist/webapi/lib/normalize_key.js
|
|
678
|
+
var unusableForAlg = "given KeyObject instance cannot be used for this algorithm";
|
|
712
679
|
var cache;
|
|
713
680
|
var handleJWK = async (key, jwk, alg, freeze = false) => {
|
|
714
681
|
cache ||= /* @__PURE__ */ new WeakMap();
|
|
@@ -716,7 +683,7 @@ var handleJWK = async (key, jwk, alg, freeze = false) => {
|
|
|
716
683
|
if (cached?.[alg]) {
|
|
717
684
|
return cached[alg];
|
|
718
685
|
}
|
|
719
|
-
const cryptoKey = await
|
|
686
|
+
const cryptoKey = await jwkToKey({ ...jwk, alg });
|
|
720
687
|
if (freeze)
|
|
721
688
|
Object.freeze(key);
|
|
722
689
|
if (!cached) {
|
|
@@ -743,13 +710,13 @@ var handleKeyObject = (keyObject, alg) => {
|
|
|
743
710
|
case "ECDH-ES+A256KW":
|
|
744
711
|
break;
|
|
745
712
|
default:
|
|
746
|
-
throw new TypeError(
|
|
713
|
+
throw new TypeError(unusableForAlg);
|
|
747
714
|
}
|
|
748
715
|
cryptoKey = keyObject.toCryptoKey(keyObject.asymmetricKeyType, extractable, isPublic ? [] : ["deriveBits"]);
|
|
749
716
|
}
|
|
750
717
|
if (keyObject.asymmetricKeyType === "ed25519") {
|
|
751
718
|
if (alg !== "EdDSA" && alg !== "Ed25519") {
|
|
752
|
-
throw new TypeError(
|
|
719
|
+
throw new TypeError(unusableForAlg);
|
|
753
720
|
}
|
|
754
721
|
cryptoKey = keyObject.toCryptoKey(keyObject.asymmetricKeyType, extractable, [
|
|
755
722
|
isPublic ? "verify" : "sign"
|
|
@@ -760,7 +727,7 @@ var handleKeyObject = (keyObject, alg) => {
|
|
|
760
727
|
case "ml-dsa-65":
|
|
761
728
|
case "ml-dsa-87": {
|
|
762
729
|
if (alg !== keyObject.asymmetricKeyType.toUpperCase()) {
|
|
763
|
-
throw new TypeError(
|
|
730
|
+
throw new TypeError(unusableForAlg);
|
|
764
731
|
}
|
|
765
732
|
cryptoKey = keyObject.toCryptoKey(keyObject.asymmetricKeyType, extractable, [
|
|
766
733
|
isPublic ? "verify" : "sign"
|
|
@@ -789,7 +756,7 @@ var handleKeyObject = (keyObject, alg) => {
|
|
|
789
756
|
hash = "SHA-512";
|
|
790
757
|
break;
|
|
791
758
|
default:
|
|
792
|
-
throw new TypeError(
|
|
759
|
+
throw new TypeError(unusableForAlg);
|
|
793
760
|
}
|
|
794
761
|
if (alg.startsWith("RSA-OAEP")) {
|
|
795
762
|
return keyObject.toCryptoKey({
|
|
@@ -810,21 +777,10 @@ var handleKeyObject = (keyObject, alg) => {
|
|
|
810
777
|
]);
|
|
811
778
|
const namedCurve = nist.get(keyObject.asymmetricKeyDetails?.namedCurve);
|
|
812
779
|
if (!namedCurve) {
|
|
813
|
-
throw new TypeError(
|
|
780
|
+
throw new TypeError(unusableForAlg);
|
|
814
781
|
}
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
name: "ECDSA",
|
|
818
|
-
namedCurve
|
|
819
|
-
}, extractable, [isPublic ? "verify" : "sign"]);
|
|
820
|
-
}
|
|
821
|
-
if (alg === "ES384" && namedCurve === "P-384") {
|
|
822
|
-
cryptoKey = keyObject.toCryptoKey({
|
|
823
|
-
name: "ECDSA",
|
|
824
|
-
namedCurve
|
|
825
|
-
}, extractable, [isPublic ? "verify" : "sign"]);
|
|
826
|
-
}
|
|
827
|
-
if (alg === "ES512" && namedCurve === "P-521") {
|
|
782
|
+
const expectedCurve = { ES256: "P-256", ES384: "P-384", ES512: "P-521" };
|
|
783
|
+
if (expectedCurve[alg] && namedCurve === expectedCurve[alg]) {
|
|
828
784
|
cryptoKey = keyObject.toCryptoKey({
|
|
829
785
|
name: "ECDSA",
|
|
830
786
|
namedCurve
|
|
@@ -838,7 +794,7 @@ var handleKeyObject = (keyObject, alg) => {
|
|
|
838
794
|
}
|
|
839
795
|
}
|
|
840
796
|
if (!cryptoKey) {
|
|
841
|
-
throw new TypeError(
|
|
797
|
+
throw new TypeError(unusableForAlg);
|
|
842
798
|
}
|
|
843
799
|
if (!cached) {
|
|
844
800
|
cache.set(keyObject, { [alg]: cryptoKey });
|
|
@@ -847,7 +803,7 @@ var handleKeyObject = (keyObject, alg) => {
|
|
|
847
803
|
}
|
|
848
804
|
return cryptoKey;
|
|
849
805
|
};
|
|
850
|
-
|
|
806
|
+
async function normalizeKey(key, alg) {
|
|
851
807
|
if (key instanceof Uint8Array) {
|
|
852
808
|
return key;
|
|
853
809
|
}
|
|
@@ -877,7 +833,85 @@ var normalize_key_default = async (key, alg) => {
|
|
|
877
833
|
return handleJWK(key, key, alg, true);
|
|
878
834
|
}
|
|
879
835
|
throw new Error("unreachable");
|
|
880
|
-
}
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
// ../../node_modules/jose/dist/webapi/key/import.js
|
|
839
|
+
async function importJWK(jwk, alg, options) {
|
|
840
|
+
if (!isObject(jwk)) {
|
|
841
|
+
throw new TypeError("JWK must be an object");
|
|
842
|
+
}
|
|
843
|
+
let ext;
|
|
844
|
+
alg ??= jwk.alg;
|
|
845
|
+
ext ??= jwk.ext;
|
|
846
|
+
switch (jwk.kty) {
|
|
847
|
+
case "oct":
|
|
848
|
+
if (typeof jwk.k !== "string" || !jwk.k) {
|
|
849
|
+
throw new TypeError('missing "k" (Key Value) Parameter value');
|
|
850
|
+
}
|
|
851
|
+
return decode(jwk.k);
|
|
852
|
+
case "RSA":
|
|
853
|
+
if ("oth" in jwk && jwk.oth !== void 0) {
|
|
854
|
+
throw new JOSENotSupported('RSA JWK "oth" (Other Primes Info) Parameter value is not supported');
|
|
855
|
+
}
|
|
856
|
+
return jwkToKey({ ...jwk, alg, ext });
|
|
857
|
+
case "AKP": {
|
|
858
|
+
if (typeof jwk.alg !== "string" || !jwk.alg) {
|
|
859
|
+
throw new TypeError('missing "alg" (Algorithm) Parameter value');
|
|
860
|
+
}
|
|
861
|
+
if (alg !== void 0 && alg !== jwk.alg) {
|
|
862
|
+
throw new TypeError("JWK alg and alg option value mismatch");
|
|
863
|
+
}
|
|
864
|
+
return jwkToKey({ ...jwk, ext });
|
|
865
|
+
}
|
|
866
|
+
case "EC":
|
|
867
|
+
case "OKP":
|
|
868
|
+
return jwkToKey({ ...jwk, alg, ext });
|
|
869
|
+
default:
|
|
870
|
+
throw new JOSENotSupported('Unsupported "kty" (Key Type) Parameter value');
|
|
871
|
+
}
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
// ../../node_modules/jose/dist/webapi/lib/validate_crit.js
|
|
875
|
+
function validateCrit(Err, recognizedDefault, recognizedOption, protectedHeader, joseHeader) {
|
|
876
|
+
if (joseHeader.crit !== void 0 && protectedHeader?.crit === void 0) {
|
|
877
|
+
throw new Err('"crit" (Critical) Header Parameter MUST be integrity protected');
|
|
878
|
+
}
|
|
879
|
+
if (!protectedHeader || protectedHeader.crit === void 0) {
|
|
880
|
+
return /* @__PURE__ */ new Set();
|
|
881
|
+
}
|
|
882
|
+
if (!Array.isArray(protectedHeader.crit) || protectedHeader.crit.length === 0 || protectedHeader.crit.some((input) => typeof input !== "string" || input.length === 0)) {
|
|
883
|
+
throw new Err('"crit" (Critical) Header Parameter MUST be an array of non-empty strings when present');
|
|
884
|
+
}
|
|
885
|
+
let recognized;
|
|
886
|
+
if (recognizedOption !== void 0) {
|
|
887
|
+
recognized = new Map([...Object.entries(recognizedOption), ...recognizedDefault.entries()]);
|
|
888
|
+
} else {
|
|
889
|
+
recognized = recognizedDefault;
|
|
890
|
+
}
|
|
891
|
+
for (const parameter of protectedHeader.crit) {
|
|
892
|
+
if (!recognized.has(parameter)) {
|
|
893
|
+
throw new JOSENotSupported(`Extension Header Parameter "${parameter}" is not recognized`);
|
|
894
|
+
}
|
|
895
|
+
if (joseHeader[parameter] === void 0) {
|
|
896
|
+
throw new Err(`Extension Header Parameter "${parameter}" is missing`);
|
|
897
|
+
}
|
|
898
|
+
if (recognized.get(parameter) && protectedHeader[parameter] === void 0) {
|
|
899
|
+
throw new Err(`Extension Header Parameter "${parameter}" MUST be integrity protected`);
|
|
900
|
+
}
|
|
901
|
+
}
|
|
902
|
+
return new Set(protectedHeader.crit);
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
// ../../node_modules/jose/dist/webapi/lib/validate_algorithms.js
|
|
906
|
+
function validateAlgorithms(option, algorithms) {
|
|
907
|
+
if (algorithms !== void 0 && (!Array.isArray(algorithms) || algorithms.some((s) => typeof s !== "string"))) {
|
|
908
|
+
throw new TypeError(`"${option}" option must be an array of strings`);
|
|
909
|
+
}
|
|
910
|
+
if (!algorithms) {
|
|
911
|
+
return void 0;
|
|
912
|
+
}
|
|
913
|
+
return new Set(algorithms);
|
|
914
|
+
}
|
|
881
915
|
|
|
882
916
|
// ../../node_modules/jose/dist/webapi/lib/check_key_type.js
|
|
883
917
|
var tag = (key) => key?.[Symbol.toStringTag];
|
|
@@ -940,7 +974,7 @@ var symmetricTypeCheck = (alg, key, usage) => {
|
|
|
940
974
|
return;
|
|
941
975
|
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`);
|
|
942
976
|
}
|
|
943
|
-
if (!
|
|
977
|
+
if (!isKeyLike(key)) {
|
|
944
978
|
throw new TypeError(withAlg(alg, key, "CryptoKey", "KeyObject", "JSON Web Key", "Uint8Array"));
|
|
945
979
|
}
|
|
946
980
|
if (key.type !== "secret") {
|
|
@@ -954,15 +988,15 @@ var asymmetricTypeCheck = (alg, key, usage) => {
|
|
|
954
988
|
case "sign":
|
|
955
989
|
if (isPrivateJWK(key) && jwkMatchesOp(alg, key, usage))
|
|
956
990
|
return;
|
|
957
|
-
throw new TypeError(`JSON Web Key for this operation be a private JWK`);
|
|
991
|
+
throw new TypeError(`JSON Web Key for this operation must be a private JWK`);
|
|
958
992
|
case "encrypt":
|
|
959
993
|
case "verify":
|
|
960
994
|
if (isPublicJWK(key) && jwkMatchesOp(alg, key, usage))
|
|
961
995
|
return;
|
|
962
|
-
throw new TypeError(`JSON Web Key for this operation be a public JWK`);
|
|
996
|
+
throw new TypeError(`JSON Web Key for this operation must be a public JWK`);
|
|
963
997
|
}
|
|
964
998
|
}
|
|
965
|
-
if (!
|
|
999
|
+
if (!isKeyLike(key)) {
|
|
966
1000
|
throw new TypeError(withAlg(alg, key, "CryptoKey", "KeyObject", "JSON Web Key"));
|
|
967
1001
|
}
|
|
968
1002
|
if (key.type === "secret") {
|
|
@@ -985,74 +1019,23 @@ var asymmetricTypeCheck = (alg, key, usage) => {
|
|
|
985
1019
|
}
|
|
986
1020
|
}
|
|
987
1021
|
};
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
// ../../node_modules/jose/dist/webapi/lib/subtle_dsa.js
|
|
998
|
-
var subtle_dsa_default = (alg, algorithm) => {
|
|
999
|
-
const hash = `SHA-${alg.slice(-3)}`;
|
|
1000
|
-
switch (alg) {
|
|
1001
|
-
case "HS256":
|
|
1002
|
-
case "HS384":
|
|
1003
|
-
case "HS512":
|
|
1004
|
-
return { hash, name: "HMAC" };
|
|
1005
|
-
case "PS256":
|
|
1006
|
-
case "PS384":
|
|
1007
|
-
case "PS512":
|
|
1008
|
-
return { hash, name: "RSA-PSS", saltLength: parseInt(alg.slice(-3), 10) >> 3 };
|
|
1009
|
-
case "RS256":
|
|
1010
|
-
case "RS384":
|
|
1011
|
-
case "RS512":
|
|
1012
|
-
return { hash, name: "RSASSA-PKCS1-v1_5" };
|
|
1013
|
-
case "ES256":
|
|
1014
|
-
case "ES384":
|
|
1015
|
-
case "ES512":
|
|
1016
|
-
return { hash, name: "ECDSA", namedCurve: algorithm.namedCurve };
|
|
1017
|
-
case "Ed25519":
|
|
1018
|
-
case "EdDSA":
|
|
1019
|
-
return { name: "Ed25519" };
|
|
1020
|
-
case "ML-DSA-44":
|
|
1021
|
-
case "ML-DSA-65":
|
|
1022
|
-
case "ML-DSA-87":
|
|
1023
|
-
return { name: alg };
|
|
1022
|
+
function checkKeyType(alg, key, usage) {
|
|
1023
|
+
switch (alg.substring(0, 2)) {
|
|
1024
|
+
case "A1":
|
|
1025
|
+
case "A2":
|
|
1026
|
+
case "di":
|
|
1027
|
+
case "HS":
|
|
1028
|
+
case "PB":
|
|
1029
|
+
symmetricTypeCheck(alg, key, usage);
|
|
1030
|
+
break;
|
|
1024
1031
|
default:
|
|
1025
|
-
|
|
1026
|
-
}
|
|
1027
|
-
};
|
|
1028
|
-
|
|
1029
|
-
// ../../node_modules/jose/dist/webapi/lib/get_sign_verify_key.js
|
|
1030
|
-
var get_sign_verify_key_default = async (alg, key, usage) => {
|
|
1031
|
-
if (key instanceof Uint8Array) {
|
|
1032
|
-
if (!alg.startsWith("HS")) {
|
|
1033
|
-
throw new TypeError(invalid_key_input_default(key, "CryptoKey", "KeyObject", "JSON Web Key"));
|
|
1034
|
-
}
|
|
1035
|
-
return crypto.subtle.importKey("raw", key, { hash: `SHA-${alg.slice(-3)}`, name: "HMAC" }, false, [usage]);
|
|
1032
|
+
asymmetricTypeCheck(alg, key, usage);
|
|
1036
1033
|
}
|
|
1037
|
-
|
|
1038
|
-
return key;
|
|
1039
|
-
};
|
|
1040
|
-
|
|
1041
|
-
// ../../node_modules/jose/dist/webapi/lib/verify.js
|
|
1042
|
-
var verify_default = async (alg, key, signature, data) => {
|
|
1043
|
-
const cryptoKey = await get_sign_verify_key_default(alg, key, "verify");
|
|
1044
|
-
check_key_length_default(alg, cryptoKey);
|
|
1045
|
-
const algorithm = subtle_dsa_default(alg, cryptoKey.algorithm);
|
|
1046
|
-
try {
|
|
1047
|
-
return await crypto.subtle.verify(algorithm, cryptoKey, signature, data);
|
|
1048
|
-
} catch {
|
|
1049
|
-
return false;
|
|
1050
|
-
}
|
|
1051
|
-
};
|
|
1034
|
+
}
|
|
1052
1035
|
|
|
1053
1036
|
// ../../node_modules/jose/dist/webapi/jws/flattened/verify.js
|
|
1054
1037
|
async function flattenedVerify(jws, key, options) {
|
|
1055
|
-
if (!
|
|
1038
|
+
if (!isObject(jws)) {
|
|
1056
1039
|
throw new JWSInvalid("Flattened JWS must be an object");
|
|
1057
1040
|
}
|
|
1058
1041
|
if (jws.protected === void 0 && jws.header === void 0) {
|
|
@@ -1067,7 +1050,7 @@ async function flattenedVerify(jws, key, options) {
|
|
|
1067
1050
|
if (typeof jws.signature !== "string") {
|
|
1068
1051
|
throw new JWSInvalid("JWS Signature missing or incorrect type");
|
|
1069
1052
|
}
|
|
1070
|
-
if (jws.header !== void 0 && !
|
|
1053
|
+
if (jws.header !== void 0 && !isObject(jws.header)) {
|
|
1071
1054
|
throw new JWSInvalid("JWS Unprotected Header incorrect type");
|
|
1072
1055
|
}
|
|
1073
1056
|
let parsedProt = {};
|
|
@@ -1079,14 +1062,14 @@ async function flattenedVerify(jws, key, options) {
|
|
|
1079
1062
|
throw new JWSInvalid("JWS Protected Header is invalid");
|
|
1080
1063
|
}
|
|
1081
1064
|
}
|
|
1082
|
-
if (!
|
|
1065
|
+
if (!isDisjoint(parsedProt, jws.header)) {
|
|
1083
1066
|
throw new JWSInvalid("JWS Protected and JWS Unprotected Header Parameter names must be disjoint");
|
|
1084
1067
|
}
|
|
1085
1068
|
const joseHeader = {
|
|
1086
1069
|
...parsedProt,
|
|
1087
1070
|
...jws.header
|
|
1088
1071
|
};
|
|
1089
|
-
const extensions =
|
|
1072
|
+
const extensions = validateCrit(JWSInvalid, /* @__PURE__ */ new Map([["b64", true]]), options?.crit, parsedProt, joseHeader);
|
|
1090
1073
|
let b64 = true;
|
|
1091
1074
|
if (extensions.has("b64")) {
|
|
1092
1075
|
b64 = parsedProt.b64;
|
|
@@ -1098,7 +1081,7 @@ async function flattenedVerify(jws, key, options) {
|
|
|
1098
1081
|
if (typeof alg !== "string" || !alg) {
|
|
1099
1082
|
throw new JWSInvalid('JWS "alg" (Algorithm) Header Parameter missing or invalid');
|
|
1100
1083
|
}
|
|
1101
|
-
const algorithms = options &&
|
|
1084
|
+
const algorithms = options && validateAlgorithms("algorithms", options.algorithms);
|
|
1102
1085
|
if (algorithms && !algorithms.has(alg)) {
|
|
1103
1086
|
throw new JOSEAlgNotAllowed('"alg" (Algorithm) Header Parameter value not allowed');
|
|
1104
1087
|
}
|
|
@@ -1114,26 +1097,17 @@ async function flattenedVerify(jws, key, options) {
|
|
|
1114
1097
|
key = await key(parsedProt, jws);
|
|
1115
1098
|
resolvedKey = true;
|
|
1116
1099
|
}
|
|
1117
|
-
|
|
1118
|
-
const data = concat(
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
} catch {
|
|
1123
|
-
throw new JWSInvalid("Failed to base64url decode the signature");
|
|
1124
|
-
}
|
|
1125
|
-
const k = await normalize_key_default(key, alg);
|
|
1126
|
-
const verified = await verify_default(alg, k, signature, data);
|
|
1100
|
+
checkKeyType(alg, key, "verify");
|
|
1101
|
+
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);
|
|
1102
|
+
const signature = decodeBase64url(jws.signature, "signature", JWSInvalid);
|
|
1103
|
+
const k = await normalizeKey(key, alg);
|
|
1104
|
+
const verified = await verify(alg, k, signature, data);
|
|
1127
1105
|
if (!verified) {
|
|
1128
1106
|
throw new JWSSignatureVerificationFailed();
|
|
1129
1107
|
}
|
|
1130
1108
|
let payload;
|
|
1131
1109
|
if (b64) {
|
|
1132
|
-
|
|
1133
|
-
payload = decode(jws.payload);
|
|
1134
|
-
} catch {
|
|
1135
|
-
throw new JWSInvalid("Failed to base64url decode the payload");
|
|
1136
|
-
}
|
|
1110
|
+
payload = decodeBase64url(jws.payload, "payload", JWSInvalid);
|
|
1137
1111
|
} else if (typeof jws.payload === "string") {
|
|
1138
1112
|
payload = encoder.encode(jws.payload);
|
|
1139
1113
|
} else {
|
|
@@ -1172,17 +1146,15 @@ async function compactVerify(jws, key, options) {
|
|
|
1172
1146
|
return result;
|
|
1173
1147
|
}
|
|
1174
1148
|
|
|
1175
|
-
// ../../node_modules/jose/dist/webapi/lib/
|
|
1176
|
-
var
|
|
1177
|
-
|
|
1178
|
-
// ../../node_modules/jose/dist/webapi/lib/secs.js
|
|
1149
|
+
// ../../node_modules/jose/dist/webapi/lib/jwt_claims_set.js
|
|
1150
|
+
var epoch = (date) => Math.floor(date.getTime() / 1e3);
|
|
1179
1151
|
var minute = 60;
|
|
1180
1152
|
var hour = minute * 60;
|
|
1181
1153
|
var day = hour * 24;
|
|
1182
1154
|
var week = day * 7;
|
|
1183
1155
|
var year = day * 365.25;
|
|
1184
1156
|
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;
|
|
1185
|
-
|
|
1157
|
+
function secs(str) {
|
|
1186
1158
|
const matched = REGEX.exec(str);
|
|
1187
1159
|
if (!matched || matched[4] && matched[1]) {
|
|
1188
1160
|
throw new TypeError("Invalid time period format");
|
|
@@ -1230,9 +1202,7 @@ var secs_default = (str) => {
|
|
|
1230
1202
|
return -numericDate;
|
|
1231
1203
|
}
|
|
1232
1204
|
return numericDate;
|
|
1233
|
-
}
|
|
1234
|
-
|
|
1235
|
-
// ../../node_modules/jose/dist/webapi/lib/jwt_claims_set.js
|
|
1205
|
+
}
|
|
1236
1206
|
var normalizeTyp = (value) => {
|
|
1237
1207
|
if (value.includes("/")) {
|
|
1238
1208
|
return value.toLowerCase();
|
|
@@ -1254,7 +1224,7 @@ function validateClaimsSet(protectedHeader, encodedPayload, options = {}) {
|
|
|
1254
1224
|
payload = JSON.parse(decoder.decode(encodedPayload));
|
|
1255
1225
|
} catch {
|
|
1256
1226
|
}
|
|
1257
|
-
if (!
|
|
1227
|
+
if (!isObject(payload)) {
|
|
1258
1228
|
throw new JWTInvalid("JWT Claims Set must be a top-level JSON object");
|
|
1259
1229
|
}
|
|
1260
1230
|
const { typ } = options;
|
|
@@ -1288,7 +1258,7 @@ function validateClaimsSet(protectedHeader, encodedPayload, options = {}) {
|
|
|
1288
1258
|
let tolerance;
|
|
1289
1259
|
switch (typeof options.clockTolerance) {
|
|
1290
1260
|
case "string":
|
|
1291
|
-
tolerance =
|
|
1261
|
+
tolerance = secs(options.clockTolerance);
|
|
1292
1262
|
break;
|
|
1293
1263
|
case "number":
|
|
1294
1264
|
tolerance = options.clockTolerance;
|
|
@@ -1300,7 +1270,7 @@ function validateClaimsSet(protectedHeader, encodedPayload, options = {}) {
|
|
|
1300
1270
|
throw new TypeError("Invalid clockTolerance option type");
|
|
1301
1271
|
}
|
|
1302
1272
|
const { currentDate } = options;
|
|
1303
|
-
const now =
|
|
1273
|
+
const now = epoch(currentDate || /* @__PURE__ */ new Date());
|
|
1304
1274
|
if ((payload.iat !== void 0 || maxTokenAge) && typeof payload.iat !== "number") {
|
|
1305
1275
|
throw new JWTClaimValidationFailed('"iat" claim must be a number', payload, "iat", "invalid");
|
|
1306
1276
|
}
|
|
@@ -1322,7 +1292,7 @@ function validateClaimsSet(protectedHeader, encodedPayload, options = {}) {
|
|
|
1322
1292
|
}
|
|
1323
1293
|
if (maxTokenAge) {
|
|
1324
1294
|
const age = now - payload.iat;
|
|
1325
|
-
const max = typeof maxTokenAge === "number" ? maxTokenAge :
|
|
1295
|
+
const max = typeof maxTokenAge === "number" ? maxTokenAge : secs(maxTokenAge);
|
|
1326
1296
|
if (age - tolerance > max) {
|
|
1327
1297
|
throw new JWTExpired('"iat" claim timestamp check failed (too far in the past)', payload, "iat", "check_failed");
|
|
1328
1298
|
}
|
|
@@ -1367,7 +1337,7 @@ function isJWKSLike(jwks) {
|
|
|
1367
1337
|
return jwks && typeof jwks === "object" && Array.isArray(jwks.keys) && jwks.keys.every(isJWKLike);
|
|
1368
1338
|
}
|
|
1369
1339
|
function isJWKLike(key) {
|
|
1370
|
-
return
|
|
1340
|
+
return isObject(key);
|
|
1371
1341
|
}
|
|
1372
1342
|
var LocalJWKSet = class {
|
|
1373
1343
|
#jwks;
|
|
@@ -1469,10 +1439,10 @@ function isCloudflareWorkers() {
|
|
|
1469
1439
|
var USER_AGENT;
|
|
1470
1440
|
if (typeof navigator === "undefined" || !navigator.userAgent?.startsWith?.("Mozilla/5.0 ")) {
|
|
1471
1441
|
const NAME = "jose";
|
|
1472
|
-
const VERSION = "v6.1
|
|
1442
|
+
const VERSION = "v6.2.1";
|
|
1473
1443
|
USER_AGENT = `${NAME}/${VERSION}`;
|
|
1474
1444
|
}
|
|
1475
|
-
var customFetch = Symbol();
|
|
1445
|
+
var customFetch = /* @__PURE__ */ Symbol();
|
|
1476
1446
|
async function fetchJwks(url, headers, signal2, fetchImpl = fetch) {
|
|
1477
1447
|
const response = await fetchImpl(url, {
|
|
1478
1448
|
method: "GET",
|
|
@@ -1494,7 +1464,7 @@ async function fetchJwks(url, headers, signal2, fetchImpl = fetch) {
|
|
|
1494
1464
|
throw new JOSEError("Failed to parse the JSON Web Key Set HTTP response as JSON");
|
|
1495
1465
|
}
|
|
1496
1466
|
}
|
|
1497
|
-
var jwksCache = Symbol();
|
|
1467
|
+
var jwksCache = /* @__PURE__ */ Symbol();
|
|
1498
1468
|
function isFreshJwksCache(input, cacheMaxAge) {
|
|
1499
1469
|
if (typeof input !== "object" || input === null) {
|
|
1500
1470
|
return false;
|
|
@@ -1502,7 +1472,7 @@ function isFreshJwksCache(input, cacheMaxAge) {
|
|
|
1502
1472
|
if (!("uat" in input) || typeof input.uat !== "number" || Date.now() - input.uat >= cacheMaxAge) {
|
|
1503
1473
|
return false;
|
|
1504
1474
|
}
|
|
1505
|
-
if (!("jwks" in input) || !
|
|
1475
|
+
if (!("jwks" in input) || !isObject(input.jwks) || !Array.isArray(input.jwks.keys) || !Array.prototype.every.call(input.jwks.keys, isObject)) {
|
|
1506
1476
|
return false;
|
|
1507
1477
|
}
|
|
1508
1478
|
return true;
|
|
@@ -1629,7 +1599,7 @@ function createRemoteJWKSet(url, options) {
|
|
|
1629
1599
|
var USER_AGENT2;
|
|
1630
1600
|
if (typeof navigator === "undefined" || !navigator.userAgent?.startsWith?.("Mozilla/5.0 ")) {
|
|
1631
1601
|
const NAME = "oauth4webapi";
|
|
1632
|
-
const VERSION = "v3.8.
|
|
1602
|
+
const VERSION = "v3.8.5";
|
|
1633
1603
|
USER_AGENT2 = `${NAME}/${VERSION}`;
|
|
1634
1604
|
}
|
|
1635
1605
|
function looseInstanceOf(input, expected) {
|
|
@@ -1649,10 +1619,10 @@ function CodedTypeError(message2, code, cause) {
|
|
|
1649
1619
|
Object.assign(err, { code });
|
|
1650
1620
|
return err;
|
|
1651
1621
|
}
|
|
1652
|
-
var clockSkew = Symbol();
|
|
1653
|
-
var clockTolerance = Symbol();
|
|
1654
|
-
var customFetch2 = Symbol();
|
|
1655
|
-
var jweDecrypt = Symbol();
|
|
1622
|
+
var clockSkew = /* @__PURE__ */ Symbol();
|
|
1623
|
+
var clockTolerance = /* @__PURE__ */ Symbol();
|
|
1624
|
+
var customFetch2 = /* @__PURE__ */ Symbol();
|
|
1625
|
+
var jweDecrypt = /* @__PURE__ */ Symbol();
|
|
1656
1626
|
var encoder2 = new TextEncoder();
|
|
1657
1627
|
var decoder2 = new TextDecoder();
|
|
1658
1628
|
function buf(input) {
|
|
@@ -2002,11 +1972,11 @@ var WWWAuthenticateChallengeError = class extends Error {
|
|
|
2002
1972
|
}
|
|
2003
1973
|
};
|
|
2004
1974
|
var tokenMatch = "[a-zA-Z0-9!#$%&\\'\\*\\+\\-\\.\\^_`\\|~]+";
|
|
2005
|
-
var token68Match = "[a-zA-Z0-9\\-\\._\\~\\+\\/]
|
|
2006
|
-
var quotedMatch = '"((?:[^"\\\\]
|
|
1975
|
+
var token68Match = "[a-zA-Z0-9\\-\\._\\~\\+\\/]+={0,2}";
|
|
1976
|
+
var quotedMatch = '"((?:[^"\\\\]|\\\\[\\s\\S])*)"';
|
|
2007
1977
|
var quotedParamMatcher = "(" + tokenMatch + ")\\s*=\\s*" + quotedMatch;
|
|
2008
1978
|
var paramMatcher = "(" + tokenMatch + ")\\s*=\\s*(" + tokenMatch + ")";
|
|
2009
|
-
var schemeRE = new RegExp("^[,\\s]*(" + tokenMatch + ")
|
|
1979
|
+
var schemeRE = new RegExp("^[,\\s]*(" + tokenMatch + ")");
|
|
2010
1980
|
var quotedParamRE = new RegExp("^[,\\s]*" + quotedParamMatcher + "[,\\s]*(.*)");
|
|
2011
1981
|
var unquotedParamRE = new RegExp("^[,\\s]*" + paramMatcher + "[,\\s]*(.*)");
|
|
2012
1982
|
var token68ParamRE = new RegExp("^(" + token68Match + ")(?:$|[,\\s])(.*)");
|
|
@@ -2023,39 +1993,49 @@ function parseWwwAuthenticateChallenges(response) {
|
|
|
2023
1993
|
while (rest) {
|
|
2024
1994
|
let match = rest.match(schemeRE);
|
|
2025
1995
|
const scheme = match?.["1"].toLowerCase();
|
|
2026
|
-
rest = match?.["2"];
|
|
2027
1996
|
if (!scheme) {
|
|
2028
1997
|
return void 0;
|
|
2029
1998
|
}
|
|
1999
|
+
const afterScheme = rest.substring(match[0].length);
|
|
2000
|
+
if (afterScheme && !afterScheme.match(/^[\s,]/)) {
|
|
2001
|
+
return void 0;
|
|
2002
|
+
}
|
|
2003
|
+
const spaceMatch = afterScheme.match(/^\s+(.*)$/);
|
|
2004
|
+
const hasParameters = !!spaceMatch;
|
|
2005
|
+
rest = spaceMatch ? spaceMatch[1] : void 0;
|
|
2030
2006
|
const parameters = {};
|
|
2031
2007
|
let token68;
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2008
|
+
if (hasParameters) {
|
|
2009
|
+
while (rest) {
|
|
2010
|
+
let key;
|
|
2011
|
+
let value;
|
|
2012
|
+
if (match = rest.match(quotedParamRE)) {
|
|
2013
|
+
[, key, value, rest] = match;
|
|
2014
|
+
if (value.includes("\\")) {
|
|
2015
|
+
try {
|
|
2016
|
+
value = JSON.parse(`"${value}"`);
|
|
2017
|
+
} catch {
|
|
2018
|
+
}
|
|
2041
2019
|
}
|
|
2020
|
+
parameters[key.toLowerCase()] = value;
|
|
2021
|
+
continue;
|
|
2042
2022
|
}
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2023
|
+
if (match = rest.match(unquotedParamRE)) {
|
|
2024
|
+
[, key, value, rest] = match;
|
|
2025
|
+
parameters[key.toLowerCase()] = value;
|
|
2026
|
+
continue;
|
|
2027
|
+
}
|
|
2028
|
+
if (match = rest.match(token68ParamRE)) {
|
|
2029
|
+
if (Object.keys(parameters).length) {
|
|
2030
|
+
break;
|
|
2031
|
+
}
|
|
2032
|
+
[, token68, rest] = match;
|
|
2053
2033
|
break;
|
|
2054
2034
|
}
|
|
2055
|
-
|
|
2056
|
-
break;
|
|
2035
|
+
return void 0;
|
|
2057
2036
|
}
|
|
2058
|
-
|
|
2037
|
+
} else {
|
|
2038
|
+
rest = afterScheme || void 0;
|
|
2059
2039
|
}
|
|
2060
2040
|
const challenge = { scheme, parameters };
|
|
2061
2041
|
if (token68) {
|
|
@@ -2235,7 +2215,7 @@ function brand(searchParams) {
|
|
|
2235
2215
|
branded.add(searchParams);
|
|
2236
2216
|
return searchParams;
|
|
2237
2217
|
}
|
|
2238
|
-
var nopkce = Symbol();
|
|
2218
|
+
var nopkce = /* @__PURE__ */ Symbol();
|
|
2239
2219
|
async function authorizationCodeGrantRequest(as, client, clientAuthentication, callbackParameters, redirectUri, codeVerifier, options) {
|
|
2240
2220
|
assertAs(as);
|
|
2241
2221
|
assertClient(client);
|
|
@@ -2452,8 +2432,8 @@ function getURLSearchParameter(parameters, name) {
|
|
|
2452
2432
|
}
|
|
2453
2433
|
return value;
|
|
2454
2434
|
}
|
|
2455
|
-
var skipStateCheck = Symbol();
|
|
2456
|
-
var expectNoState = Symbol();
|
|
2435
|
+
var skipStateCheck = /* @__PURE__ */ Symbol();
|
|
2436
|
+
var expectNoState = /* @__PURE__ */ Symbol();
|
|
2457
2437
|
function validateAuthResponse(as, client, parameters, expectedState) {
|
|
2458
2438
|
assertAs(as);
|
|
2459
2439
|
assertClient(client);
|
|
@@ -2521,8 +2501,8 @@ async function getResponseJsonBody(response, check = assertApplicationJson) {
|
|
|
2521
2501
|
}
|
|
2522
2502
|
return json;
|
|
2523
2503
|
}
|
|
2524
|
-
var _nodiscoverycheck = Symbol();
|
|
2525
|
-
var _expectedIssuer = Symbol();
|
|
2504
|
+
var _nodiscoverycheck = /* @__PURE__ */ Symbol();
|
|
2505
|
+
var _expectedIssuer = /* @__PURE__ */ Symbol();
|
|
2526
2506
|
|
|
2527
2507
|
// ../../libs/core/src/oauth/provider/oauth4webapi.ts
|
|
2528
2508
|
var OAuth4WebApiProvider = class {
|
|
@@ -3245,6 +3225,17 @@ var AttributeFilteringField = /* @__PURE__ */ ((AttributeFilteringField2) => {
|
|
|
3245
3225
|
AttributeFilteringField2["Uuid"] = "uuid";
|
|
3246
3226
|
return AttributeFilteringField2;
|
|
3247
3227
|
})(AttributeFilteringField || {});
|
|
3228
|
+
var AttributeLabelFilteringField = /* @__PURE__ */ ((AttributeLabelFilteringField2) => {
|
|
3229
|
+
AttributeLabelFilteringField2["AttributeUuid"] = "attributeUuid";
|
|
3230
|
+
AttributeLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
3231
|
+
AttributeLabelFilteringField2["Uuid"] = "uuid";
|
|
3232
|
+
return AttributeLabelFilteringField2;
|
|
3233
|
+
})(AttributeLabelFilteringField || {});
|
|
3234
|
+
var AttributeLabelSortEnum = /* @__PURE__ */ ((AttributeLabelSortEnum2) => {
|
|
3235
|
+
AttributeLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
3236
|
+
AttributeLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
3237
|
+
return AttributeLabelSortEnum2;
|
|
3238
|
+
})(AttributeLabelSortEnum || {});
|
|
3248
3239
|
var AttributeLocaleFilteringField = /* @__PURE__ */ ((AttributeLocaleFilteringField2) => {
|
|
3249
3240
|
AttributeLocaleFilteringField2["AttributeUuid"] = "attributeUuid";
|
|
3250
3241
|
AttributeLocaleFilteringField2["Locale"] = "locale";
|
|
@@ -3406,6 +3397,25 @@ var AttributeRequestMetaFilteringField = /* @__PURE__ */ ((AttributeRequestMetaF
|
|
|
3406
3397
|
AttributeRequestMetaFilteringField2["AttributeRequestUuid"] = "attributeRequestUuid";
|
|
3407
3398
|
return AttributeRequestMetaFilteringField2;
|
|
3408
3399
|
})(AttributeRequestMetaFilteringField || {});
|
|
3400
|
+
var AttributeRequestMetaOid4VcmdocFilteringField = /* @__PURE__ */ ((AttributeRequestMetaOid4VcmdocFilteringField2) => {
|
|
3401
|
+
AttributeRequestMetaOid4VcmdocFilteringField2["AttributeRequestMetaUuid"] = "attributeRequestMetaUuid";
|
|
3402
|
+
AttributeRequestMetaOid4VcmdocFilteringField2["DataElementIdentifier"] = "dataElementIdentifier";
|
|
3403
|
+
AttributeRequestMetaOid4VcmdocFilteringField2["Namespace"] = "namespace";
|
|
3404
|
+
return AttributeRequestMetaOid4VcmdocFilteringField2;
|
|
3405
|
+
})(AttributeRequestMetaOid4VcmdocFilteringField || {});
|
|
3406
|
+
var AttributeRequestMetaOid4VcmdocSortEnum = /* @__PURE__ */ ((AttributeRequestMetaOid4VcmdocSortEnum2) => {
|
|
3407
|
+
AttributeRequestMetaOid4VcmdocSortEnum2["CreatedAt"] = "createdAt";
|
|
3408
|
+
return AttributeRequestMetaOid4VcmdocSortEnum2;
|
|
3409
|
+
})(AttributeRequestMetaOid4VcmdocSortEnum || {});
|
|
3410
|
+
var AttributeRequestMetaOid4VcsdjwtFilteringField = /* @__PURE__ */ ((AttributeRequestMetaOid4VcsdjwtFilteringField2) => {
|
|
3411
|
+
AttributeRequestMetaOid4VcsdjwtFilteringField2["AttributeRequestMetaUuid"] = "attributeRequestMetaUuid";
|
|
3412
|
+
AttributeRequestMetaOid4VcsdjwtFilteringField2["JsonPath"] = "jsonPath";
|
|
3413
|
+
return AttributeRequestMetaOid4VcsdjwtFilteringField2;
|
|
3414
|
+
})(AttributeRequestMetaOid4VcsdjwtFilteringField || {});
|
|
3415
|
+
var AttributeRequestMetaOid4VcsdjwtSortEnum = /* @__PURE__ */ ((AttributeRequestMetaOid4VcsdjwtSortEnum2) => {
|
|
3416
|
+
AttributeRequestMetaOid4VcsdjwtSortEnum2["CreatedAt"] = "createdAt";
|
|
3417
|
+
return AttributeRequestMetaOid4VcsdjwtSortEnum2;
|
|
3418
|
+
})(AttributeRequestMetaOid4VcsdjwtSortEnum || {});
|
|
3409
3419
|
var AttributeRequestMetaSortEnum = /* @__PURE__ */ ((AttributeRequestMetaSortEnum2) => {
|
|
3410
3420
|
AttributeRequestMetaSortEnum2["CreatedAt"] = "createdAt";
|
|
3411
3421
|
return AttributeRequestMetaSortEnum2;
|
|
@@ -3413,6 +3423,8 @@ var AttributeRequestMetaSortEnum = /* @__PURE__ */ ((AttributeRequestMetaSortEnu
|
|
|
3413
3423
|
var AttributeRequestMetaType = /* @__PURE__ */ ((AttributeRequestMetaType2) => {
|
|
3414
3424
|
AttributeRequestMetaType2["Datakeeper"] = "DATAKEEPER";
|
|
3415
3425
|
AttributeRequestMetaType2["None"] = "NONE";
|
|
3426
|
+
AttributeRequestMetaType2["Oid4VcMdoc"] = "OID4VC_MDOC";
|
|
3427
|
+
AttributeRequestMetaType2["Oid4VcSdJwt"] = "OID4VC_SD_JWT";
|
|
3416
3428
|
AttributeRequestMetaType2["Yivi"] = "YIVI";
|
|
3417
3429
|
AttributeRequestMetaType2["Yoti"] = "YOTI";
|
|
3418
3430
|
return AttributeRequestMetaType2;
|
|
@@ -3448,6 +3460,121 @@ var AttributeSortEnum = /* @__PURE__ */ ((AttributeSortEnum2) => {
|
|
|
3448
3460
|
AttributeSortEnum2["State"] = "state";
|
|
3449
3461
|
return AttributeSortEnum2;
|
|
3450
3462
|
})(AttributeSortEnum || {});
|
|
3463
|
+
var AuthenticationAction = /* @__PURE__ */ ((AuthenticationAction2) => {
|
|
3464
|
+
AuthenticationAction2["Activate"] = "ACTIVATE";
|
|
3465
|
+
AuthenticationAction2["Deactivate"] = "DEACTIVATE";
|
|
3466
|
+
return AuthenticationAction2;
|
|
3467
|
+
})(AuthenticationAction || {});
|
|
3468
|
+
var AuthenticationActivityFilteringField = /* @__PURE__ */ ((AuthenticationActivityFilteringField2) => {
|
|
3469
|
+
AuthenticationActivityFilteringField2["AuthenticationUuid"] = "authenticationUuid";
|
|
3470
|
+
AuthenticationActivityFilteringField2["CreatedAt"] = "createdAt";
|
|
3471
|
+
AuthenticationActivityFilteringField2["EventUrn"] = "eventURN";
|
|
3472
|
+
AuthenticationActivityFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
3473
|
+
AuthenticationActivityFilteringField2["RequestUuid"] = "requestUuid";
|
|
3474
|
+
return AuthenticationActivityFilteringField2;
|
|
3475
|
+
})(AuthenticationActivityFilteringField || {});
|
|
3476
|
+
var AuthenticationActivitySortEnum = /* @__PURE__ */ ((AuthenticationActivitySortEnum2) => {
|
|
3477
|
+
AuthenticationActivitySortEnum2["CreatedAt"] = "createdAt";
|
|
3478
|
+
AuthenticationActivitySortEnum2["EventUrn"] = "eventUrn";
|
|
3479
|
+
return AuthenticationActivitySortEnum2;
|
|
3480
|
+
})(AuthenticationActivitySortEnum || {});
|
|
3481
|
+
var AuthenticationBrandFilteringField = /* @__PURE__ */ ((AuthenticationBrandFilteringField2) => {
|
|
3482
|
+
AuthenticationBrandFilteringField2["AuthenticationUuid"] = "authenticationUuid";
|
|
3483
|
+
AuthenticationBrandFilteringField2["OrganizationBrandUuid"] = "organizationBrandUuid";
|
|
3484
|
+
AuthenticationBrandFilteringField2["RedirectPath"] = "redirectPath";
|
|
3485
|
+
AuthenticationBrandFilteringField2["Uuid"] = "uuid";
|
|
3486
|
+
return AuthenticationBrandFilteringField2;
|
|
3487
|
+
})(AuthenticationBrandFilteringField || {});
|
|
3488
|
+
var AuthenticationBrandSortEnum = /* @__PURE__ */ ((AuthenticationBrandSortEnum2) => {
|
|
3489
|
+
AuthenticationBrandSortEnum2["CreatedAt"] = "createdAt";
|
|
3490
|
+
AuthenticationBrandSortEnum2["RedirectPath"] = "redirectPath";
|
|
3491
|
+
AuthenticationBrandSortEnum2["UpdatedAt"] = "updatedAt";
|
|
3492
|
+
return AuthenticationBrandSortEnum2;
|
|
3493
|
+
})(AuthenticationBrandSortEnum || {});
|
|
3494
|
+
var AuthenticationDomainFilteringField = /* @__PURE__ */ ((AuthenticationDomainFilteringField2) => {
|
|
3495
|
+
AuthenticationDomainFilteringField2["AuthenticationUuid"] = "authenticationUuid";
|
|
3496
|
+
AuthenticationDomainFilteringField2["OrganizationDomainUuid"] = "organizationDomainUuid";
|
|
3497
|
+
AuthenticationDomainFilteringField2["RedirectPath"] = "redirectPath";
|
|
3498
|
+
AuthenticationDomainFilteringField2["Uuid"] = "uuid";
|
|
3499
|
+
return AuthenticationDomainFilteringField2;
|
|
3500
|
+
})(AuthenticationDomainFilteringField || {});
|
|
3501
|
+
var AuthenticationDomainSortEnum = /* @__PURE__ */ ((AuthenticationDomainSortEnum2) => {
|
|
3502
|
+
AuthenticationDomainSortEnum2["CreatedAt"] = "createdAt";
|
|
3503
|
+
AuthenticationDomainSortEnum2["RedirectPath"] = "redirectPath";
|
|
3504
|
+
AuthenticationDomainSortEnum2["UpdatedAt"] = "updatedAt";
|
|
3505
|
+
return AuthenticationDomainSortEnum2;
|
|
3506
|
+
})(AuthenticationDomainSortEnum || {});
|
|
3507
|
+
var AuthenticationFilteringField = /* @__PURE__ */ ((AuthenticationFilteringField2) => {
|
|
3508
|
+
AuthenticationFilteringField2["Name"] = "name";
|
|
3509
|
+
AuthenticationFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
3510
|
+
AuthenticationFilteringField2["State"] = "state";
|
|
3511
|
+
AuthenticationFilteringField2["Uuid"] = "uuid";
|
|
3512
|
+
return AuthenticationFilteringField2;
|
|
3513
|
+
})(AuthenticationFilteringField || {});
|
|
3514
|
+
var AuthenticationLabelFilteringField = /* @__PURE__ */ ((AuthenticationLabelFilteringField2) => {
|
|
3515
|
+
AuthenticationLabelFilteringField2["AuthenticationUuid"] = "authenticationUuid";
|
|
3516
|
+
AuthenticationLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
3517
|
+
AuthenticationLabelFilteringField2["Uuid"] = "uuid";
|
|
3518
|
+
return AuthenticationLabelFilteringField2;
|
|
3519
|
+
})(AuthenticationLabelFilteringField || {});
|
|
3520
|
+
var AuthenticationLabelSortEnum = /* @__PURE__ */ ((AuthenticationLabelSortEnum2) => {
|
|
3521
|
+
AuthenticationLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
3522
|
+
AuthenticationLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
3523
|
+
return AuthenticationLabelSortEnum2;
|
|
3524
|
+
})(AuthenticationLabelSortEnum || {});
|
|
3525
|
+
var AuthenticationProviderConfigurationFilteringField = /* @__PURE__ */ ((AuthenticationProviderConfigurationFilteringField2) => {
|
|
3526
|
+
AuthenticationProviderConfigurationFilteringField2["AuthenticationProviderUuid"] = "authenticationProviderUuid";
|
|
3527
|
+
return AuthenticationProviderConfigurationFilteringField2;
|
|
3528
|
+
})(AuthenticationProviderConfigurationFilteringField || {});
|
|
3529
|
+
var AuthenticationProviderConfigurationNlWalletFilteringField = /* @__PURE__ */ ((AuthenticationProviderConfigurationNlWalletFilteringField2) => {
|
|
3530
|
+
AuthenticationProviderConfigurationNlWalletFilteringField2["AuthenticationProviderConfigurationUuid"] = "authenticationProviderConfigurationUuid";
|
|
3531
|
+
AuthenticationProviderConfigurationNlWalletFilteringField2["Intent"] = "intent";
|
|
3532
|
+
return AuthenticationProviderConfigurationNlWalletFilteringField2;
|
|
3533
|
+
})(AuthenticationProviderConfigurationNlWalletFilteringField || {});
|
|
3534
|
+
var AuthenticationProviderConfigurationNlWalletSortEnum = /* @__PURE__ */ ((AuthenticationProviderConfigurationNlWalletSortEnum2) => {
|
|
3535
|
+
AuthenticationProviderConfigurationNlWalletSortEnum2["CreatedAt"] = "createdAt";
|
|
3536
|
+
return AuthenticationProviderConfigurationNlWalletSortEnum2;
|
|
3537
|
+
})(AuthenticationProviderConfigurationNlWalletSortEnum || {});
|
|
3538
|
+
var AuthenticationProviderConfigurationSortEnum = /* @__PURE__ */ ((AuthenticationProviderConfigurationSortEnum2) => {
|
|
3539
|
+
AuthenticationProviderConfigurationSortEnum2["CreatedAt"] = "createdAt";
|
|
3540
|
+
return AuthenticationProviderConfigurationSortEnum2;
|
|
3541
|
+
})(AuthenticationProviderConfigurationSortEnum || {});
|
|
3542
|
+
var AuthenticationProviderFilteringField = /* @__PURE__ */ ((AuthenticationProviderFilteringField2) => {
|
|
3543
|
+
AuthenticationProviderFilteringField2["AuthenticationUuid"] = "authenticationUuid";
|
|
3544
|
+
AuthenticationProviderFilteringField2["ProviderAppUuid"] = "providerAppUuid";
|
|
3545
|
+
AuthenticationProviderFilteringField2["Uuid"] = "uuid";
|
|
3546
|
+
return AuthenticationProviderFilteringField2;
|
|
3547
|
+
})(AuthenticationProviderFilteringField || {});
|
|
3548
|
+
var AuthenticationProviderSortEnum = /* @__PURE__ */ ((AuthenticationProviderSortEnum2) => {
|
|
3549
|
+
AuthenticationProviderSortEnum2["CreatedAt"] = "createdAt";
|
|
3550
|
+
AuthenticationProviderSortEnum2["ProviderAppUuid"] = "providerAppUuid";
|
|
3551
|
+
AuthenticationProviderSortEnum2["UpdatedAt"] = "updatedAt";
|
|
3552
|
+
return AuthenticationProviderSortEnum2;
|
|
3553
|
+
})(AuthenticationProviderSortEnum || {});
|
|
3554
|
+
var AuthenticationScopeFilteringField = /* @__PURE__ */ ((AuthenticationScopeFilteringField2) => {
|
|
3555
|
+
AuthenticationScopeFilteringField2["AuthenticationProviderUuid"] = "authenticationProviderUuid";
|
|
3556
|
+
AuthenticationScopeFilteringField2["ScopeUuid"] = "scopeUuid";
|
|
3557
|
+
AuthenticationScopeFilteringField2["Uuid"] = "uuid";
|
|
3558
|
+
return AuthenticationScopeFilteringField2;
|
|
3559
|
+
})(AuthenticationScopeFilteringField || {});
|
|
3560
|
+
var AuthenticationScopeSortEnum = /* @__PURE__ */ ((AuthenticationScopeSortEnum2) => {
|
|
3561
|
+
AuthenticationScopeSortEnum2["CreatedAt"] = "createdAt";
|
|
3562
|
+
AuthenticationScopeSortEnum2["ScopeUuid"] = "scopeUuid";
|
|
3563
|
+
AuthenticationScopeSortEnum2["UpdatedAt"] = "updatedAt";
|
|
3564
|
+
return AuthenticationScopeSortEnum2;
|
|
3565
|
+
})(AuthenticationScopeSortEnum || {});
|
|
3566
|
+
var AuthenticationSortEnum = /* @__PURE__ */ ((AuthenticationSortEnum2) => {
|
|
3567
|
+
AuthenticationSortEnum2["CreatedAt"] = "createdAt";
|
|
3568
|
+
AuthenticationSortEnum2["Name"] = "name";
|
|
3569
|
+
AuthenticationSortEnum2["State"] = "state";
|
|
3570
|
+
AuthenticationSortEnum2["UpdatedAt"] = "updatedAt";
|
|
3571
|
+
return AuthenticationSortEnum2;
|
|
3572
|
+
})(AuthenticationSortEnum || {});
|
|
3573
|
+
var AuthenticationState = /* @__PURE__ */ ((AuthenticationState2) => {
|
|
3574
|
+
AuthenticationState2["Active"] = "ACTIVE";
|
|
3575
|
+
AuthenticationState2["Inactive"] = "INACTIVE";
|
|
3576
|
+
return AuthenticationState2;
|
|
3577
|
+
})(AuthenticationState || {});
|
|
3451
3578
|
var BillingFilteringField = /* @__PURE__ */ ((BillingFilteringField2) => {
|
|
3452
3579
|
BillingFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
3453
3580
|
BillingFilteringField2["Uuid"] = "uuid";
|
|
@@ -3641,20 +3768,30 @@ var BillingWalletTransactionState = /* @__PURE__ */ ((BillingWalletTransactionSt
|
|
|
3641
3768
|
BillingWalletTransactionState2["Succeeded"] = "SUCCEEDED";
|
|
3642
3769
|
return BillingWalletTransactionState2;
|
|
3643
3770
|
})(BillingWalletTransactionState || {});
|
|
3644
|
-
var
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
|
|
3651
|
-
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
|
|
3655
|
-
|
|
3656
|
-
|
|
3657
|
-
|
|
3771
|
+
var CatalogModelType = /* @__PURE__ */ ((CatalogModelType2) => {
|
|
3772
|
+
CatalogModelType2["App"] = "APP";
|
|
3773
|
+
CatalogModelType2["Attribute"] = "ATTRIBUTE";
|
|
3774
|
+
CatalogModelType2["Credential"] = "CREDENTIAL";
|
|
3775
|
+
CatalogModelType2["Issuer"] = "ISSUER";
|
|
3776
|
+
CatalogModelType2["Provider"] = "PROVIDER";
|
|
3777
|
+
CatalogModelType2["Scheme"] = "SCHEME";
|
|
3778
|
+
CatalogModelType2["Scope"] = "SCOPE";
|
|
3779
|
+
return CatalogModelType2;
|
|
3780
|
+
})(CatalogModelType || {});
|
|
3781
|
+
var CreateDisclosureProviderByAttributesMode = /* @__PURE__ */ ((CreateDisclosureProviderByAttributesMode2) => {
|
|
3782
|
+
CreateDisclosureProviderByAttributesMode2["Conjunction"] = "Conjunction";
|
|
3783
|
+
CreateDisclosureProviderByAttributesMode2["ConjunctionMerge"] = "ConjunctionMerge";
|
|
3784
|
+
CreateDisclosureProviderByAttributesMode2["Disjunction"] = "Disjunction";
|
|
3785
|
+
CreateDisclosureProviderByAttributesMode2["DisjunctionMerge"] = "DisjunctionMerge";
|
|
3786
|
+
return CreateDisclosureProviderByAttributesMode2;
|
|
3787
|
+
})(CreateDisclosureProviderByAttributesMode || {});
|
|
3788
|
+
var CreateSignatureProviderByAttributesMode = /* @__PURE__ */ ((CreateSignatureProviderByAttributesMode2) => {
|
|
3789
|
+
CreateSignatureProviderByAttributesMode2["Conjunction"] = "Conjunction";
|
|
3790
|
+
CreateSignatureProviderByAttributesMode2["ConjunctionMerge"] = "ConjunctionMerge";
|
|
3791
|
+
CreateSignatureProviderByAttributesMode2["Disjunction"] = "Disjunction";
|
|
3792
|
+
CreateSignatureProviderByAttributesMode2["DisjunctionMerge"] = "DisjunctionMerge";
|
|
3793
|
+
return CreateSignatureProviderByAttributesMode2;
|
|
3794
|
+
})(CreateSignatureProviderByAttributesMode || {});
|
|
3658
3795
|
var CredentialCategoryType = /* @__PURE__ */ ((CredentialCategoryType2) => {
|
|
3659
3796
|
CredentialCategoryType2["Development"] = "DEVELOPMENT";
|
|
3660
3797
|
CredentialCategoryType2["Production"] = "PRODUCTION";
|
|
@@ -3672,6 +3809,17 @@ var CredentialFilteringField = /* @__PURE__ */ ((CredentialFilteringField2) => {
|
|
|
3672
3809
|
CredentialFilteringField2["Uuid"] = "uuid";
|
|
3673
3810
|
return CredentialFilteringField2;
|
|
3674
3811
|
})(CredentialFilteringField || {});
|
|
3812
|
+
var CredentialLabelFilteringField = /* @__PURE__ */ ((CredentialLabelFilteringField2) => {
|
|
3813
|
+
CredentialLabelFilteringField2["CredentialUuid"] = "credentialUuid";
|
|
3814
|
+
CredentialLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
3815
|
+
CredentialLabelFilteringField2["Uuid"] = "uuid";
|
|
3816
|
+
return CredentialLabelFilteringField2;
|
|
3817
|
+
})(CredentialLabelFilteringField || {});
|
|
3818
|
+
var CredentialLabelSortEnum = /* @__PURE__ */ ((CredentialLabelSortEnum2) => {
|
|
3819
|
+
CredentialLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
3820
|
+
CredentialLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
3821
|
+
return CredentialLabelSortEnum2;
|
|
3822
|
+
})(CredentialLabelSortEnum || {});
|
|
3675
3823
|
var CredentialLocaleFilteringField = /* @__PURE__ */ ((CredentialLocaleFilteringField2) => {
|
|
3676
3824
|
CredentialLocaleFilteringField2["CredentialUuid"] = "credentialUuid";
|
|
3677
3825
|
CredentialLocaleFilteringField2["Locale"] = "locale";
|
|
@@ -3845,6 +3993,24 @@ var CredentialRequestMetaFilteringField = /* @__PURE__ */ ((CredentialRequestMet
|
|
|
3845
3993
|
CredentialRequestMetaFilteringField2["CredentialRequestUuid"] = "credentialRequestUuid";
|
|
3846
3994
|
return CredentialRequestMetaFilteringField2;
|
|
3847
3995
|
})(CredentialRequestMetaFilteringField || {});
|
|
3996
|
+
var CredentialRequestMetaOid4VcmdocFilteringField = /* @__PURE__ */ ((CredentialRequestMetaOid4VcmdocFilteringField2) => {
|
|
3997
|
+
CredentialRequestMetaOid4VcmdocFilteringField2["CredentialRequestMetaUuid"] = "credentialRequestMetaUuid";
|
|
3998
|
+
CredentialRequestMetaOid4VcmdocFilteringField2["DocType"] = "docType";
|
|
3999
|
+
return CredentialRequestMetaOid4VcmdocFilteringField2;
|
|
4000
|
+
})(CredentialRequestMetaOid4VcmdocFilteringField || {});
|
|
4001
|
+
var CredentialRequestMetaOid4VcmdocSortEnum = /* @__PURE__ */ ((CredentialRequestMetaOid4VcmdocSortEnum2) => {
|
|
4002
|
+
CredentialRequestMetaOid4VcmdocSortEnum2["CreatedAt"] = "createdAt";
|
|
4003
|
+
return CredentialRequestMetaOid4VcmdocSortEnum2;
|
|
4004
|
+
})(CredentialRequestMetaOid4VcmdocSortEnum || {});
|
|
4005
|
+
var CredentialRequestMetaOid4VcsdjwtFilteringField = /* @__PURE__ */ ((CredentialRequestMetaOid4VcsdjwtFilteringField2) => {
|
|
4006
|
+
CredentialRequestMetaOid4VcsdjwtFilteringField2["CredentialRequestMetaUuid"] = "credentialRequestMetaUuid";
|
|
4007
|
+
CredentialRequestMetaOid4VcsdjwtFilteringField2["Type"] = "type";
|
|
4008
|
+
return CredentialRequestMetaOid4VcsdjwtFilteringField2;
|
|
4009
|
+
})(CredentialRequestMetaOid4VcsdjwtFilteringField || {});
|
|
4010
|
+
var CredentialRequestMetaOid4VcsdjwtSortEnum = /* @__PURE__ */ ((CredentialRequestMetaOid4VcsdjwtSortEnum2) => {
|
|
4011
|
+
CredentialRequestMetaOid4VcsdjwtSortEnum2["CreatedAt"] = "createdAt";
|
|
4012
|
+
return CredentialRequestMetaOid4VcsdjwtSortEnum2;
|
|
4013
|
+
})(CredentialRequestMetaOid4VcsdjwtSortEnum || {});
|
|
3848
4014
|
var CredentialRequestMetaSortEnum = /* @__PURE__ */ ((CredentialRequestMetaSortEnum2) => {
|
|
3849
4015
|
CredentialRequestMetaSortEnum2["CreatedAt"] = "createdAt";
|
|
3850
4016
|
return CredentialRequestMetaSortEnum2;
|
|
@@ -3852,6 +4018,8 @@ var CredentialRequestMetaSortEnum = /* @__PURE__ */ ((CredentialRequestMetaSortE
|
|
|
3852
4018
|
var CredentialRequestMetaType = /* @__PURE__ */ ((CredentialRequestMetaType2) => {
|
|
3853
4019
|
CredentialRequestMetaType2["Datakeeper"] = "DATAKEEPER";
|
|
3854
4020
|
CredentialRequestMetaType2["None"] = "NONE";
|
|
4021
|
+
CredentialRequestMetaType2["Oid4VcMdoc"] = "OID4VC_MDOC";
|
|
4022
|
+
CredentialRequestMetaType2["Oid4VcSdJwt"] = "OID4VC_SD_JWT";
|
|
3855
4023
|
CredentialRequestMetaType2["Yivi"] = "YIVI";
|
|
3856
4024
|
CredentialRequestMetaType2["Yoti"] = "YOTI";
|
|
3857
4025
|
return CredentialRequestMetaType2;
|
|
@@ -4130,6 +4298,160 @@ var CurrencyUnit = /* @__PURE__ */ ((CurrencyUnit2) => {
|
|
|
4130
4298
|
CurrencyUnit2["Unity"] = "UNITY";
|
|
4131
4299
|
return CurrencyUnit2;
|
|
4132
4300
|
})(CurrencyUnit || {});
|
|
4301
|
+
var DisclosureAction = /* @__PURE__ */ ((DisclosureAction2) => {
|
|
4302
|
+
DisclosureAction2["Activate"] = "ACTIVATE";
|
|
4303
|
+
DisclosureAction2["Deactivate"] = "DEACTIVATE";
|
|
4304
|
+
return DisclosureAction2;
|
|
4305
|
+
})(DisclosureAction || {});
|
|
4306
|
+
var DisclosureActivityFilteringField = /* @__PURE__ */ ((DisclosureActivityFilteringField2) => {
|
|
4307
|
+
DisclosureActivityFilteringField2["CreatedAt"] = "createdAt";
|
|
4308
|
+
DisclosureActivityFilteringField2["DisclosureUuid"] = "disclosureUuid";
|
|
4309
|
+
DisclosureActivityFilteringField2["EventUrn"] = "eventURN";
|
|
4310
|
+
DisclosureActivityFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
4311
|
+
DisclosureActivityFilteringField2["RequestUuid"] = "requestUuid";
|
|
4312
|
+
return DisclosureActivityFilteringField2;
|
|
4313
|
+
})(DisclosureActivityFilteringField || {});
|
|
4314
|
+
var DisclosureActivitySortEnum = /* @__PURE__ */ ((DisclosureActivitySortEnum2) => {
|
|
4315
|
+
DisclosureActivitySortEnum2["CreatedAt"] = "createdAt";
|
|
4316
|
+
DisclosureActivitySortEnum2["EventUrn"] = "eventUrn";
|
|
4317
|
+
return DisclosureActivitySortEnum2;
|
|
4318
|
+
})(DisclosureActivitySortEnum || {});
|
|
4319
|
+
var DisclosureAttributeFilteringField = /* @__PURE__ */ ((DisclosureAttributeFilteringField2) => {
|
|
4320
|
+
DisclosureAttributeFilteringField2["AttributeUuid"] = "attributeUuid";
|
|
4321
|
+
DisclosureAttributeFilteringField2["DisclosureCredentialUuid"] = "disclosureCredentialUuid";
|
|
4322
|
+
DisclosureAttributeFilteringField2["Uuid"] = "uuid";
|
|
4323
|
+
return DisclosureAttributeFilteringField2;
|
|
4324
|
+
})(DisclosureAttributeFilteringField || {});
|
|
4325
|
+
var DisclosureAttributeSortEnum = /* @__PURE__ */ ((DisclosureAttributeSortEnum2) => {
|
|
4326
|
+
DisclosureAttributeSortEnum2["AttributeUuid"] = "attributeUuid";
|
|
4327
|
+
DisclosureAttributeSortEnum2["CreatedAt"] = "createdAt";
|
|
4328
|
+
DisclosureAttributeSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4329
|
+
return DisclosureAttributeSortEnum2;
|
|
4330
|
+
})(DisclosureAttributeSortEnum || {});
|
|
4331
|
+
var DisclosureBrandFilteringField = /* @__PURE__ */ ((DisclosureBrandFilteringField2) => {
|
|
4332
|
+
DisclosureBrandFilteringField2["DisclosureUuid"] = "disclosureUuid";
|
|
4333
|
+
DisclosureBrandFilteringField2["OrganizationBrandUuid"] = "organizationBrandUuid";
|
|
4334
|
+
DisclosureBrandFilteringField2["RedirectPath"] = "redirectPath";
|
|
4335
|
+
DisclosureBrandFilteringField2["Uuid"] = "uuid";
|
|
4336
|
+
return DisclosureBrandFilteringField2;
|
|
4337
|
+
})(DisclosureBrandFilteringField || {});
|
|
4338
|
+
var DisclosureBrandSortEnum = /* @__PURE__ */ ((DisclosureBrandSortEnum2) => {
|
|
4339
|
+
DisclosureBrandSortEnum2["CreatedAt"] = "createdAt";
|
|
4340
|
+
DisclosureBrandSortEnum2["RedirectPath"] = "redirectPath";
|
|
4341
|
+
DisclosureBrandSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4342
|
+
return DisclosureBrandSortEnum2;
|
|
4343
|
+
})(DisclosureBrandSortEnum || {});
|
|
4344
|
+
var DisclosureCredentialFilteringField = /* @__PURE__ */ ((DisclosureCredentialFilteringField2) => {
|
|
4345
|
+
DisclosureCredentialFilteringField2["CredentialUuid"] = "credentialUuid";
|
|
4346
|
+
DisclosureCredentialFilteringField2["DisclosureGroupUuid"] = "disclosureGroupUuid";
|
|
4347
|
+
DisclosureCredentialFilteringField2["IssuerUuid"] = "issuerUuid";
|
|
4348
|
+
DisclosureCredentialFilteringField2["SchemeUuid"] = "schemeUuid";
|
|
4349
|
+
DisclosureCredentialFilteringField2["Uuid"] = "uuid";
|
|
4350
|
+
return DisclosureCredentialFilteringField2;
|
|
4351
|
+
})(DisclosureCredentialFilteringField || {});
|
|
4352
|
+
var DisclosureCredentialSortEnum = /* @__PURE__ */ ((DisclosureCredentialSortEnum2) => {
|
|
4353
|
+
DisclosureCredentialSortEnum2["CreatedAt"] = "createdAt";
|
|
4354
|
+
DisclosureCredentialSortEnum2["CredentialUuid"] = "credentialUuid";
|
|
4355
|
+
DisclosureCredentialSortEnum2["IssuerUuid"] = "issuerUuid";
|
|
4356
|
+
DisclosureCredentialSortEnum2["SchemeUuid"] = "schemeUuid";
|
|
4357
|
+
DisclosureCredentialSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4358
|
+
return DisclosureCredentialSortEnum2;
|
|
4359
|
+
})(DisclosureCredentialSortEnum || {});
|
|
4360
|
+
var DisclosureDomainFilteringField = /* @__PURE__ */ ((DisclosureDomainFilteringField2) => {
|
|
4361
|
+
DisclosureDomainFilteringField2["DisclosureUuid"] = "disclosureUuid";
|
|
4362
|
+
DisclosureDomainFilteringField2["OrganizationDomainUuid"] = "organizationDomainUuid";
|
|
4363
|
+
DisclosureDomainFilteringField2["RedirectPath"] = "redirectPath";
|
|
4364
|
+
DisclosureDomainFilteringField2["Uuid"] = "uuid";
|
|
4365
|
+
return DisclosureDomainFilteringField2;
|
|
4366
|
+
})(DisclosureDomainFilteringField || {});
|
|
4367
|
+
var DisclosureDomainSortEnum = /* @__PURE__ */ ((DisclosureDomainSortEnum2) => {
|
|
4368
|
+
DisclosureDomainSortEnum2["CreatedAt"] = "createdAt";
|
|
4369
|
+
DisclosureDomainSortEnum2["RedirectPath"] = "redirectPath";
|
|
4370
|
+
DisclosureDomainSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4371
|
+
return DisclosureDomainSortEnum2;
|
|
4372
|
+
})(DisclosureDomainSortEnum || {});
|
|
4373
|
+
var DisclosureFilteringField = /* @__PURE__ */ ((DisclosureFilteringField2) => {
|
|
4374
|
+
DisclosureFilteringField2["Name"] = "name";
|
|
4375
|
+
DisclosureFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
4376
|
+
DisclosureFilteringField2["State"] = "state";
|
|
4377
|
+
DisclosureFilteringField2["Uuid"] = "uuid";
|
|
4378
|
+
return DisclosureFilteringField2;
|
|
4379
|
+
})(DisclosureFilteringField || {});
|
|
4380
|
+
var DisclosureGroupFilteringField = /* @__PURE__ */ ((DisclosureGroupFilteringField2) => {
|
|
4381
|
+
DisclosureGroupFilteringField2["DisclosureProviderUuid"] = "disclosureProviderUuid";
|
|
4382
|
+
DisclosureGroupFilteringField2["Name"] = "name";
|
|
4383
|
+
DisclosureGroupFilteringField2["Uuid"] = "uuid";
|
|
4384
|
+
return DisclosureGroupFilteringField2;
|
|
4385
|
+
})(DisclosureGroupFilteringField || {});
|
|
4386
|
+
var DisclosureGroupSortEnum = /* @__PURE__ */ ((DisclosureGroupSortEnum2) => {
|
|
4387
|
+
DisclosureGroupSortEnum2["CreatedAt"] = "createdAt";
|
|
4388
|
+
DisclosureGroupSortEnum2["Name"] = "name";
|
|
4389
|
+
DisclosureGroupSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4390
|
+
return DisclosureGroupSortEnum2;
|
|
4391
|
+
})(DisclosureGroupSortEnum || {});
|
|
4392
|
+
var DisclosureLabelFilteringField = /* @__PURE__ */ ((DisclosureLabelFilteringField2) => {
|
|
4393
|
+
DisclosureLabelFilteringField2["DisclosureUuid"] = "disclosureUuid";
|
|
4394
|
+
DisclosureLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
4395
|
+
DisclosureLabelFilteringField2["Uuid"] = "uuid";
|
|
4396
|
+
return DisclosureLabelFilteringField2;
|
|
4397
|
+
})(DisclosureLabelFilteringField || {});
|
|
4398
|
+
var DisclosureLabelSortEnum = /* @__PURE__ */ ((DisclosureLabelSortEnum2) => {
|
|
4399
|
+
DisclosureLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
4400
|
+
DisclosureLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4401
|
+
return DisclosureLabelSortEnum2;
|
|
4402
|
+
})(DisclosureLabelSortEnum || {});
|
|
4403
|
+
var DisclosureMappingFilteringField = /* @__PURE__ */ ((DisclosureMappingFilteringField2) => {
|
|
4404
|
+
DisclosureMappingFilteringField2["DisclosureUuid"] = "disclosureUuid";
|
|
4405
|
+
DisclosureMappingFilteringField2["MappingVerificationUuid"] = "mappingVerificationUuid";
|
|
4406
|
+
DisclosureMappingFilteringField2["Uuid"] = "uuid";
|
|
4407
|
+
return DisclosureMappingFilteringField2;
|
|
4408
|
+
})(DisclosureMappingFilteringField || {});
|
|
4409
|
+
var DisclosureMappingSortEnum = /* @__PURE__ */ ((DisclosureMappingSortEnum2) => {
|
|
4410
|
+
DisclosureMappingSortEnum2["CreatedAt"] = "createdAt";
|
|
4411
|
+
DisclosureMappingSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4412
|
+
return DisclosureMappingSortEnum2;
|
|
4413
|
+
})(DisclosureMappingSortEnum || {});
|
|
4414
|
+
var DisclosureProviderConfigurationFilteringField = /* @__PURE__ */ ((DisclosureProviderConfigurationFilteringField2) => {
|
|
4415
|
+
DisclosureProviderConfigurationFilteringField2["DisclosureProviderUuid"] = "disclosureProviderUuid";
|
|
4416
|
+
return DisclosureProviderConfigurationFilteringField2;
|
|
4417
|
+
})(DisclosureProviderConfigurationFilteringField || {});
|
|
4418
|
+
var DisclosureProviderConfigurationNlWalletFilteringField = /* @__PURE__ */ ((DisclosureProviderConfigurationNlWalletFilteringField2) => {
|
|
4419
|
+
DisclosureProviderConfigurationNlWalletFilteringField2["DisclosureProviderConfigurationUuid"] = "disclosureProviderConfigurationUuid";
|
|
4420
|
+
DisclosureProviderConfigurationNlWalletFilteringField2["Intent"] = "intent";
|
|
4421
|
+
return DisclosureProviderConfigurationNlWalletFilteringField2;
|
|
4422
|
+
})(DisclosureProviderConfigurationNlWalletFilteringField || {});
|
|
4423
|
+
var DisclosureProviderConfigurationNlWalletSortEnum = /* @__PURE__ */ ((DisclosureProviderConfigurationNlWalletSortEnum2) => {
|
|
4424
|
+
DisclosureProviderConfigurationNlWalletSortEnum2["CreatedAt"] = "createdAt";
|
|
4425
|
+
return DisclosureProviderConfigurationNlWalletSortEnum2;
|
|
4426
|
+
})(DisclosureProviderConfigurationNlWalletSortEnum || {});
|
|
4427
|
+
var DisclosureProviderConfigurationSortEnum = /* @__PURE__ */ ((DisclosureProviderConfigurationSortEnum2) => {
|
|
4428
|
+
DisclosureProviderConfigurationSortEnum2["CreatedAt"] = "createdAt";
|
|
4429
|
+
return DisclosureProviderConfigurationSortEnum2;
|
|
4430
|
+
})(DisclosureProviderConfigurationSortEnum || {});
|
|
4431
|
+
var DisclosureProviderFilteringField = /* @__PURE__ */ ((DisclosureProviderFilteringField2) => {
|
|
4432
|
+
DisclosureProviderFilteringField2["DisclosureUuid"] = "disclosureUuid";
|
|
4433
|
+
DisclosureProviderFilteringField2["ProviderAppUuid"] = "providerAppUuid";
|
|
4434
|
+
DisclosureProviderFilteringField2["Uuid"] = "uuid";
|
|
4435
|
+
return DisclosureProviderFilteringField2;
|
|
4436
|
+
})(DisclosureProviderFilteringField || {});
|
|
4437
|
+
var DisclosureProviderSortEnum = /* @__PURE__ */ ((DisclosureProviderSortEnum2) => {
|
|
4438
|
+
DisclosureProviderSortEnum2["CreatedAt"] = "createdAt";
|
|
4439
|
+
DisclosureProviderSortEnum2["ProviderAppUuid"] = "providerAppUuid";
|
|
4440
|
+
DisclosureProviderSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4441
|
+
return DisclosureProviderSortEnum2;
|
|
4442
|
+
})(DisclosureProviderSortEnum || {});
|
|
4443
|
+
var DisclosureSortEnum = /* @__PURE__ */ ((DisclosureSortEnum2) => {
|
|
4444
|
+
DisclosureSortEnum2["CreatedAt"] = "createdAt";
|
|
4445
|
+
DisclosureSortEnum2["Name"] = "name";
|
|
4446
|
+
DisclosureSortEnum2["State"] = "state";
|
|
4447
|
+
DisclosureSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4448
|
+
return DisclosureSortEnum2;
|
|
4449
|
+
})(DisclosureSortEnum || {});
|
|
4450
|
+
var DisclosureState = /* @__PURE__ */ ((DisclosureState2) => {
|
|
4451
|
+
DisclosureState2["Active"] = "ACTIVE";
|
|
4452
|
+
DisclosureState2["Inactive"] = "INACTIVE";
|
|
4453
|
+
return DisclosureState2;
|
|
4454
|
+
})(DisclosureState || {});
|
|
4133
4455
|
var FilteringConnector = /* @__PURE__ */ ((FilteringConnector2) => {
|
|
4134
4456
|
FilteringConnector2["Conjunction"] = "CONJUNCTION";
|
|
4135
4457
|
FilteringConnector2["Disjunction"] = "DISJUNCTION";
|
|
@@ -4150,548 +4472,6 @@ var FilteringType = /* @__PURE__ */ ((FilteringType2) => {
|
|
|
4150
4472
|
FilteringType2["Some"] = "SOME";
|
|
4151
4473
|
return FilteringType2;
|
|
4152
4474
|
})(FilteringType || {});
|
|
4153
|
-
var FlowAuthenticationAction = /* @__PURE__ */ ((FlowAuthenticationAction2) => {
|
|
4154
|
-
FlowAuthenticationAction2["Activate"] = "ACTIVATE";
|
|
4155
|
-
FlowAuthenticationAction2["Deactivate"] = "DEACTIVATE";
|
|
4156
|
-
return FlowAuthenticationAction2;
|
|
4157
|
-
})(FlowAuthenticationAction || {});
|
|
4158
|
-
var FlowAuthenticationBrandFilteringField = /* @__PURE__ */ ((FlowAuthenticationBrandFilteringField2) => {
|
|
4159
|
-
FlowAuthenticationBrandFilteringField2["FlowAuthenticationUuid"] = "flowAuthenticationUuid";
|
|
4160
|
-
FlowAuthenticationBrandFilteringField2["OrganizationBrandUuid"] = "organizationBrandUuid";
|
|
4161
|
-
FlowAuthenticationBrandFilteringField2["RedirectPath"] = "redirectPath";
|
|
4162
|
-
FlowAuthenticationBrandFilteringField2["Uuid"] = "uuid";
|
|
4163
|
-
return FlowAuthenticationBrandFilteringField2;
|
|
4164
|
-
})(FlowAuthenticationBrandFilteringField || {});
|
|
4165
|
-
var FlowAuthenticationBrandSortEnum = /* @__PURE__ */ ((FlowAuthenticationBrandSortEnum2) => {
|
|
4166
|
-
FlowAuthenticationBrandSortEnum2["CreatedAt"] = "createdAt";
|
|
4167
|
-
FlowAuthenticationBrandSortEnum2["RedirectPath"] = "redirectPath";
|
|
4168
|
-
FlowAuthenticationBrandSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4169
|
-
return FlowAuthenticationBrandSortEnum2;
|
|
4170
|
-
})(FlowAuthenticationBrandSortEnum || {});
|
|
4171
|
-
var FlowAuthenticationDomainFilteringField = /* @__PURE__ */ ((FlowAuthenticationDomainFilteringField2) => {
|
|
4172
|
-
FlowAuthenticationDomainFilteringField2["FlowAuthenticationUuid"] = "flowAuthenticationUuid";
|
|
4173
|
-
FlowAuthenticationDomainFilteringField2["OrganizationDomainUuid"] = "organizationDomainUuid";
|
|
4174
|
-
FlowAuthenticationDomainFilteringField2["RedirectPath"] = "redirectPath";
|
|
4175
|
-
FlowAuthenticationDomainFilteringField2["Uuid"] = "uuid";
|
|
4176
|
-
return FlowAuthenticationDomainFilteringField2;
|
|
4177
|
-
})(FlowAuthenticationDomainFilteringField || {});
|
|
4178
|
-
var FlowAuthenticationDomainSortEnum = /* @__PURE__ */ ((FlowAuthenticationDomainSortEnum2) => {
|
|
4179
|
-
FlowAuthenticationDomainSortEnum2["CreatedAt"] = "createdAt";
|
|
4180
|
-
FlowAuthenticationDomainSortEnum2["RedirectPath"] = "redirectPath";
|
|
4181
|
-
FlowAuthenticationDomainSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4182
|
-
return FlowAuthenticationDomainSortEnum2;
|
|
4183
|
-
})(FlowAuthenticationDomainSortEnum || {});
|
|
4184
|
-
var FlowAuthenticationFilteringField = /* @__PURE__ */ ((FlowAuthenticationFilteringField2) => {
|
|
4185
|
-
FlowAuthenticationFilteringField2["Name"] = "name";
|
|
4186
|
-
FlowAuthenticationFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
4187
|
-
FlowAuthenticationFilteringField2["State"] = "state";
|
|
4188
|
-
FlowAuthenticationFilteringField2["Uuid"] = "uuid";
|
|
4189
|
-
return FlowAuthenticationFilteringField2;
|
|
4190
|
-
})(FlowAuthenticationFilteringField || {});
|
|
4191
|
-
var FlowAuthenticationLabelFilteringField = /* @__PURE__ */ ((FlowAuthenticationLabelFilteringField2) => {
|
|
4192
|
-
FlowAuthenticationLabelFilteringField2["FlowAuthenticationUuid"] = "flowAuthenticationUuid";
|
|
4193
|
-
FlowAuthenticationLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
4194
|
-
FlowAuthenticationLabelFilteringField2["Uuid"] = "uuid";
|
|
4195
|
-
return FlowAuthenticationLabelFilteringField2;
|
|
4196
|
-
})(FlowAuthenticationLabelFilteringField || {});
|
|
4197
|
-
var FlowAuthenticationLabelSortEnum = /* @__PURE__ */ ((FlowAuthenticationLabelSortEnum2) => {
|
|
4198
|
-
FlowAuthenticationLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
4199
|
-
FlowAuthenticationLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4200
|
-
return FlowAuthenticationLabelSortEnum2;
|
|
4201
|
-
})(FlowAuthenticationLabelSortEnum || {});
|
|
4202
|
-
var FlowAuthenticationProviderConfigurationFilteringField = /* @__PURE__ */ ((FlowAuthenticationProviderConfigurationFilteringField2) => {
|
|
4203
|
-
FlowAuthenticationProviderConfigurationFilteringField2["FlowAuthenticationProviderUuid"] = "flowAuthenticationProviderUuid";
|
|
4204
|
-
return FlowAuthenticationProviderConfigurationFilteringField2;
|
|
4205
|
-
})(FlowAuthenticationProviderConfigurationFilteringField || {});
|
|
4206
|
-
var FlowAuthenticationProviderConfigurationNlWalletFilteringField = /* @__PURE__ */ ((FlowAuthenticationProviderConfigurationNlWalletFilteringField2) => {
|
|
4207
|
-
FlowAuthenticationProviderConfigurationNlWalletFilteringField2["FlowAuthenticationProviderConfigurationUuid"] = "flowAuthenticationProviderConfigurationUuid";
|
|
4208
|
-
FlowAuthenticationProviderConfigurationNlWalletFilteringField2["Intent"] = "intent";
|
|
4209
|
-
return FlowAuthenticationProviderConfigurationNlWalletFilteringField2;
|
|
4210
|
-
})(FlowAuthenticationProviderConfigurationNlWalletFilteringField || {});
|
|
4211
|
-
var FlowAuthenticationProviderConfigurationNlWalletSortEnum = /* @__PURE__ */ ((FlowAuthenticationProviderConfigurationNlWalletSortEnum2) => {
|
|
4212
|
-
FlowAuthenticationProviderConfigurationNlWalletSortEnum2["CreatedAt"] = "createdAt";
|
|
4213
|
-
return FlowAuthenticationProviderConfigurationNlWalletSortEnum2;
|
|
4214
|
-
})(FlowAuthenticationProviderConfigurationNlWalletSortEnum || {});
|
|
4215
|
-
var FlowAuthenticationProviderConfigurationSortEnum = /* @__PURE__ */ ((FlowAuthenticationProviderConfigurationSortEnum2) => {
|
|
4216
|
-
FlowAuthenticationProviderConfigurationSortEnum2["CreatedAt"] = "createdAt";
|
|
4217
|
-
return FlowAuthenticationProviderConfigurationSortEnum2;
|
|
4218
|
-
})(FlowAuthenticationProviderConfigurationSortEnum || {});
|
|
4219
|
-
var FlowAuthenticationProviderFilteringField = /* @__PURE__ */ ((FlowAuthenticationProviderFilteringField2) => {
|
|
4220
|
-
FlowAuthenticationProviderFilteringField2["FlowAuthenticationUuid"] = "flowAuthenticationUuid";
|
|
4221
|
-
FlowAuthenticationProviderFilteringField2["ProviderAppUuid"] = "providerAppUuid";
|
|
4222
|
-
FlowAuthenticationProviderFilteringField2["Uuid"] = "uuid";
|
|
4223
|
-
return FlowAuthenticationProviderFilteringField2;
|
|
4224
|
-
})(FlowAuthenticationProviderFilteringField || {});
|
|
4225
|
-
var FlowAuthenticationProviderSortEnum = /* @__PURE__ */ ((FlowAuthenticationProviderSortEnum2) => {
|
|
4226
|
-
FlowAuthenticationProviderSortEnum2["CreatedAt"] = "createdAt";
|
|
4227
|
-
FlowAuthenticationProviderSortEnum2["ProviderAppUuid"] = "providerAppUuid";
|
|
4228
|
-
FlowAuthenticationProviderSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4229
|
-
return FlowAuthenticationProviderSortEnum2;
|
|
4230
|
-
})(FlowAuthenticationProviderSortEnum || {});
|
|
4231
|
-
var FlowAuthenticationScopeFilteringField = /* @__PURE__ */ ((FlowAuthenticationScopeFilteringField2) => {
|
|
4232
|
-
FlowAuthenticationScopeFilteringField2["FlowAuthenticationProviderUuid"] = "flowAuthenticationProviderUuid";
|
|
4233
|
-
FlowAuthenticationScopeFilteringField2["ScopeUuid"] = "scopeUuid";
|
|
4234
|
-
FlowAuthenticationScopeFilteringField2["Uuid"] = "uuid";
|
|
4235
|
-
return FlowAuthenticationScopeFilteringField2;
|
|
4236
|
-
})(FlowAuthenticationScopeFilteringField || {});
|
|
4237
|
-
var FlowAuthenticationScopeSortEnum = /* @__PURE__ */ ((FlowAuthenticationScopeSortEnum2) => {
|
|
4238
|
-
FlowAuthenticationScopeSortEnum2["CreatedAt"] = "createdAt";
|
|
4239
|
-
FlowAuthenticationScopeSortEnum2["ScopeUuid"] = "scopeUuid";
|
|
4240
|
-
FlowAuthenticationScopeSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4241
|
-
return FlowAuthenticationScopeSortEnum2;
|
|
4242
|
-
})(FlowAuthenticationScopeSortEnum || {});
|
|
4243
|
-
var FlowAuthenticationSortEnum = /* @__PURE__ */ ((FlowAuthenticationSortEnum2) => {
|
|
4244
|
-
FlowAuthenticationSortEnum2["CreatedAt"] = "createdAt";
|
|
4245
|
-
FlowAuthenticationSortEnum2["Name"] = "name";
|
|
4246
|
-
FlowAuthenticationSortEnum2["State"] = "state";
|
|
4247
|
-
FlowAuthenticationSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4248
|
-
return FlowAuthenticationSortEnum2;
|
|
4249
|
-
})(FlowAuthenticationSortEnum || {});
|
|
4250
|
-
var FlowAuthenticationState = /* @__PURE__ */ ((FlowAuthenticationState2) => {
|
|
4251
|
-
FlowAuthenticationState2["Active"] = "ACTIVE";
|
|
4252
|
-
FlowAuthenticationState2["Inactive"] = "INACTIVE";
|
|
4253
|
-
return FlowAuthenticationState2;
|
|
4254
|
-
})(FlowAuthenticationState || {});
|
|
4255
|
-
var FlowDisclosureAction = /* @__PURE__ */ ((FlowDisclosureAction2) => {
|
|
4256
|
-
FlowDisclosureAction2["Activate"] = "ACTIVATE";
|
|
4257
|
-
FlowDisclosureAction2["Deactivate"] = "DEACTIVATE";
|
|
4258
|
-
return FlowDisclosureAction2;
|
|
4259
|
-
})(FlowDisclosureAction || {});
|
|
4260
|
-
var FlowDisclosureAttributeFilteringField = /* @__PURE__ */ ((FlowDisclosureAttributeFilteringField2) => {
|
|
4261
|
-
FlowDisclosureAttributeFilteringField2["AttributeUuid"] = "attributeUuid";
|
|
4262
|
-
FlowDisclosureAttributeFilteringField2["FlowDisclosureCredentialUuid"] = "flowDisclosureCredentialUuid";
|
|
4263
|
-
FlowDisclosureAttributeFilteringField2["Uuid"] = "uuid";
|
|
4264
|
-
return FlowDisclosureAttributeFilteringField2;
|
|
4265
|
-
})(FlowDisclosureAttributeFilteringField || {});
|
|
4266
|
-
var FlowDisclosureAttributeSortEnum = /* @__PURE__ */ ((FlowDisclosureAttributeSortEnum2) => {
|
|
4267
|
-
FlowDisclosureAttributeSortEnum2["AttributeUuid"] = "attributeUuid";
|
|
4268
|
-
FlowDisclosureAttributeSortEnum2["CreatedAt"] = "createdAt";
|
|
4269
|
-
FlowDisclosureAttributeSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4270
|
-
return FlowDisclosureAttributeSortEnum2;
|
|
4271
|
-
})(FlowDisclosureAttributeSortEnum || {});
|
|
4272
|
-
var FlowDisclosureBrandFilteringField = /* @__PURE__ */ ((FlowDisclosureBrandFilteringField2) => {
|
|
4273
|
-
FlowDisclosureBrandFilteringField2["FlowDisclosureUuid"] = "flowDisclosureUuid";
|
|
4274
|
-
FlowDisclosureBrandFilteringField2["OrganizationBrandUuid"] = "organizationBrandUuid";
|
|
4275
|
-
FlowDisclosureBrandFilteringField2["RedirectPath"] = "redirectPath";
|
|
4276
|
-
FlowDisclosureBrandFilteringField2["Uuid"] = "uuid";
|
|
4277
|
-
return FlowDisclosureBrandFilteringField2;
|
|
4278
|
-
})(FlowDisclosureBrandFilteringField || {});
|
|
4279
|
-
var FlowDisclosureBrandSortEnum = /* @__PURE__ */ ((FlowDisclosureBrandSortEnum2) => {
|
|
4280
|
-
FlowDisclosureBrandSortEnum2["CreatedAt"] = "createdAt";
|
|
4281
|
-
FlowDisclosureBrandSortEnum2["RedirectPath"] = "redirectPath";
|
|
4282
|
-
FlowDisclosureBrandSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4283
|
-
return FlowDisclosureBrandSortEnum2;
|
|
4284
|
-
})(FlowDisclosureBrandSortEnum || {});
|
|
4285
|
-
var FlowDisclosureCredentialFilteringField = /* @__PURE__ */ ((FlowDisclosureCredentialFilteringField2) => {
|
|
4286
|
-
FlowDisclosureCredentialFilteringField2["CredentialUuid"] = "credentialUuid";
|
|
4287
|
-
FlowDisclosureCredentialFilteringField2["FlowDisclosureGroupUuid"] = "flowDisclosureGroupUuid";
|
|
4288
|
-
FlowDisclosureCredentialFilteringField2["IssuerUuid"] = "issuerUuid";
|
|
4289
|
-
FlowDisclosureCredentialFilteringField2["SchemeUuid"] = "schemeUuid";
|
|
4290
|
-
FlowDisclosureCredentialFilteringField2["Uuid"] = "uuid";
|
|
4291
|
-
return FlowDisclosureCredentialFilteringField2;
|
|
4292
|
-
})(FlowDisclosureCredentialFilteringField || {});
|
|
4293
|
-
var FlowDisclosureCredentialSortEnum = /* @__PURE__ */ ((FlowDisclosureCredentialSortEnum2) => {
|
|
4294
|
-
FlowDisclosureCredentialSortEnum2["CreatedAt"] = "createdAt";
|
|
4295
|
-
FlowDisclosureCredentialSortEnum2["CredentialUuid"] = "credentialUuid";
|
|
4296
|
-
FlowDisclosureCredentialSortEnum2["IssuerUuid"] = "issuerUuid";
|
|
4297
|
-
FlowDisclosureCredentialSortEnum2["SchemeUuid"] = "schemeUuid";
|
|
4298
|
-
FlowDisclosureCredentialSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4299
|
-
return FlowDisclosureCredentialSortEnum2;
|
|
4300
|
-
})(FlowDisclosureCredentialSortEnum || {});
|
|
4301
|
-
var FlowDisclosureDomainFilteringField = /* @__PURE__ */ ((FlowDisclosureDomainFilteringField2) => {
|
|
4302
|
-
FlowDisclosureDomainFilteringField2["FlowDisclosureUuid"] = "flowDisclosureUuid";
|
|
4303
|
-
FlowDisclosureDomainFilteringField2["OrganizationDomainUuid"] = "organizationDomainUuid";
|
|
4304
|
-
FlowDisclosureDomainFilteringField2["RedirectPath"] = "redirectPath";
|
|
4305
|
-
FlowDisclosureDomainFilteringField2["Uuid"] = "uuid";
|
|
4306
|
-
return FlowDisclosureDomainFilteringField2;
|
|
4307
|
-
})(FlowDisclosureDomainFilteringField || {});
|
|
4308
|
-
var FlowDisclosureDomainSortEnum = /* @__PURE__ */ ((FlowDisclosureDomainSortEnum2) => {
|
|
4309
|
-
FlowDisclosureDomainSortEnum2["CreatedAt"] = "createdAt";
|
|
4310
|
-
FlowDisclosureDomainSortEnum2["RedirectPath"] = "redirectPath";
|
|
4311
|
-
FlowDisclosureDomainSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4312
|
-
return FlowDisclosureDomainSortEnum2;
|
|
4313
|
-
})(FlowDisclosureDomainSortEnum || {});
|
|
4314
|
-
var FlowDisclosureFilteringField = /* @__PURE__ */ ((FlowDisclosureFilteringField2) => {
|
|
4315
|
-
FlowDisclosureFilteringField2["Name"] = "name";
|
|
4316
|
-
FlowDisclosureFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
4317
|
-
FlowDisclosureFilteringField2["State"] = "state";
|
|
4318
|
-
FlowDisclosureFilteringField2["Uuid"] = "uuid";
|
|
4319
|
-
return FlowDisclosureFilteringField2;
|
|
4320
|
-
})(FlowDisclosureFilteringField || {});
|
|
4321
|
-
var FlowDisclosureGroupFilteringField = /* @__PURE__ */ ((FlowDisclosureGroupFilteringField2) => {
|
|
4322
|
-
FlowDisclosureGroupFilteringField2["FlowDisclosureProviderUuid"] = "flowDisclosureProviderUuid";
|
|
4323
|
-
FlowDisclosureGroupFilteringField2["Name"] = "name";
|
|
4324
|
-
FlowDisclosureGroupFilteringField2["Uuid"] = "uuid";
|
|
4325
|
-
return FlowDisclosureGroupFilteringField2;
|
|
4326
|
-
})(FlowDisclosureGroupFilteringField || {});
|
|
4327
|
-
var FlowDisclosureGroupSortEnum = /* @__PURE__ */ ((FlowDisclosureGroupSortEnum2) => {
|
|
4328
|
-
FlowDisclosureGroupSortEnum2["CreatedAt"] = "createdAt";
|
|
4329
|
-
FlowDisclosureGroupSortEnum2["Name"] = "name";
|
|
4330
|
-
FlowDisclosureGroupSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4331
|
-
return FlowDisclosureGroupSortEnum2;
|
|
4332
|
-
})(FlowDisclosureGroupSortEnum || {});
|
|
4333
|
-
var FlowDisclosureLabelFilteringField = /* @__PURE__ */ ((FlowDisclosureLabelFilteringField2) => {
|
|
4334
|
-
FlowDisclosureLabelFilteringField2["FlowDisclosureUuid"] = "flowDisclosureUuid";
|
|
4335
|
-
FlowDisclosureLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
4336
|
-
FlowDisclosureLabelFilteringField2["Uuid"] = "uuid";
|
|
4337
|
-
return FlowDisclosureLabelFilteringField2;
|
|
4338
|
-
})(FlowDisclosureLabelFilteringField || {});
|
|
4339
|
-
var FlowDisclosureLabelSortEnum = /* @__PURE__ */ ((FlowDisclosureLabelSortEnum2) => {
|
|
4340
|
-
FlowDisclosureLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
4341
|
-
FlowDisclosureLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4342
|
-
return FlowDisclosureLabelSortEnum2;
|
|
4343
|
-
})(FlowDisclosureLabelSortEnum || {});
|
|
4344
|
-
var FlowDisclosureMappingFilteringField = /* @__PURE__ */ ((FlowDisclosureMappingFilteringField2) => {
|
|
4345
|
-
FlowDisclosureMappingFilteringField2["FlowDisclosureUuid"] = "flowDisclosureUuid";
|
|
4346
|
-
FlowDisclosureMappingFilteringField2["MappingVerificationUuid"] = "mappingVerificationUuid";
|
|
4347
|
-
FlowDisclosureMappingFilteringField2["Uuid"] = "uuid";
|
|
4348
|
-
return FlowDisclosureMappingFilteringField2;
|
|
4349
|
-
})(FlowDisclosureMappingFilteringField || {});
|
|
4350
|
-
var FlowDisclosureMappingSortEnum = /* @__PURE__ */ ((FlowDisclosureMappingSortEnum2) => {
|
|
4351
|
-
FlowDisclosureMappingSortEnum2["CreatedAt"] = "createdAt";
|
|
4352
|
-
FlowDisclosureMappingSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4353
|
-
return FlowDisclosureMappingSortEnum2;
|
|
4354
|
-
})(FlowDisclosureMappingSortEnum || {});
|
|
4355
|
-
var FlowDisclosureProviderConfigurationFilteringField = /* @__PURE__ */ ((FlowDisclosureProviderConfigurationFilteringField2) => {
|
|
4356
|
-
FlowDisclosureProviderConfigurationFilteringField2["FlowDisclosureProviderUuid"] = "flowDisclosureProviderUuid";
|
|
4357
|
-
return FlowDisclosureProviderConfigurationFilteringField2;
|
|
4358
|
-
})(FlowDisclosureProviderConfigurationFilteringField || {});
|
|
4359
|
-
var FlowDisclosureProviderConfigurationNlWalletFilteringField = /* @__PURE__ */ ((FlowDisclosureProviderConfigurationNlWalletFilteringField2) => {
|
|
4360
|
-
FlowDisclosureProviderConfigurationNlWalletFilteringField2["FlowDisclosureProviderConfigurationUuid"] = "flowDisclosureProviderConfigurationUuid";
|
|
4361
|
-
FlowDisclosureProviderConfigurationNlWalletFilteringField2["Intent"] = "intent";
|
|
4362
|
-
return FlowDisclosureProviderConfigurationNlWalletFilteringField2;
|
|
4363
|
-
})(FlowDisclosureProviderConfigurationNlWalletFilteringField || {});
|
|
4364
|
-
var FlowDisclosureProviderConfigurationNlWalletSortEnum = /* @__PURE__ */ ((FlowDisclosureProviderConfigurationNlWalletSortEnum2) => {
|
|
4365
|
-
FlowDisclosureProviderConfigurationNlWalletSortEnum2["CreatedAt"] = "createdAt";
|
|
4366
|
-
return FlowDisclosureProviderConfigurationNlWalletSortEnum2;
|
|
4367
|
-
})(FlowDisclosureProviderConfigurationNlWalletSortEnum || {});
|
|
4368
|
-
var FlowDisclosureProviderConfigurationSortEnum = /* @__PURE__ */ ((FlowDisclosureProviderConfigurationSortEnum2) => {
|
|
4369
|
-
FlowDisclosureProviderConfigurationSortEnum2["CreatedAt"] = "createdAt";
|
|
4370
|
-
return FlowDisclosureProviderConfigurationSortEnum2;
|
|
4371
|
-
})(FlowDisclosureProviderConfigurationSortEnum || {});
|
|
4372
|
-
var FlowDisclosureProviderFilteringField = /* @__PURE__ */ ((FlowDisclosureProviderFilteringField2) => {
|
|
4373
|
-
FlowDisclosureProviderFilteringField2["FlowDisclosureUuid"] = "flowDisclosureUuid";
|
|
4374
|
-
FlowDisclosureProviderFilteringField2["ProviderAppUuid"] = "providerAppUuid";
|
|
4375
|
-
FlowDisclosureProviderFilteringField2["Uuid"] = "uuid";
|
|
4376
|
-
return FlowDisclosureProviderFilteringField2;
|
|
4377
|
-
})(FlowDisclosureProviderFilteringField || {});
|
|
4378
|
-
var FlowDisclosureProviderSortEnum = /* @__PURE__ */ ((FlowDisclosureProviderSortEnum2) => {
|
|
4379
|
-
FlowDisclosureProviderSortEnum2["CreatedAt"] = "createdAt";
|
|
4380
|
-
FlowDisclosureProviderSortEnum2["ProviderAppUuid"] = "providerAppUuid";
|
|
4381
|
-
FlowDisclosureProviderSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4382
|
-
return FlowDisclosureProviderSortEnum2;
|
|
4383
|
-
})(FlowDisclosureProviderSortEnum || {});
|
|
4384
|
-
var FlowDisclosureSortEnum = /* @__PURE__ */ ((FlowDisclosureSortEnum2) => {
|
|
4385
|
-
FlowDisclosureSortEnum2["CreatedAt"] = "createdAt";
|
|
4386
|
-
FlowDisclosureSortEnum2["Name"] = "name";
|
|
4387
|
-
FlowDisclosureSortEnum2["State"] = "state";
|
|
4388
|
-
FlowDisclosureSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4389
|
-
return FlowDisclosureSortEnum2;
|
|
4390
|
-
})(FlowDisclosureSortEnum || {});
|
|
4391
|
-
var FlowDisclosureState = /* @__PURE__ */ ((FlowDisclosureState2) => {
|
|
4392
|
-
FlowDisclosureState2["Active"] = "ACTIVE";
|
|
4393
|
-
FlowDisclosureState2["Inactive"] = "INACTIVE";
|
|
4394
|
-
return FlowDisclosureState2;
|
|
4395
|
-
})(FlowDisclosureState || {});
|
|
4396
|
-
var FlowEventFilteringField = /* @__PURE__ */ ((FlowEventFilteringField2) => {
|
|
4397
|
-
FlowEventFilteringField2["CreatedAt"] = "createdAt";
|
|
4398
|
-
FlowEventFilteringField2["EventUrn"] = "eventURN";
|
|
4399
|
-
FlowEventFilteringField2["FlowType"] = "flowType";
|
|
4400
|
-
FlowEventFilteringField2["FlowUuid"] = "flowUuid";
|
|
4401
|
-
FlowEventFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
4402
|
-
FlowEventFilteringField2["RequestUuid"] = "requestUuid";
|
|
4403
|
-
return FlowEventFilteringField2;
|
|
4404
|
-
})(FlowEventFilteringField || {});
|
|
4405
|
-
var FlowEventSortEnum = /* @__PURE__ */ ((FlowEventSortEnum2) => {
|
|
4406
|
-
FlowEventSortEnum2["CreatedAt"] = "createdAt";
|
|
4407
|
-
FlowEventSortEnum2["EventUrn"] = "eventUrn";
|
|
4408
|
-
return FlowEventSortEnum2;
|
|
4409
|
-
})(FlowEventSortEnum || {});
|
|
4410
|
-
var FlowIssuanceAction = /* @__PURE__ */ ((FlowIssuanceAction2) => {
|
|
4411
|
-
FlowIssuanceAction2["Activate"] = "ACTIVATE";
|
|
4412
|
-
FlowIssuanceAction2["Deactivate"] = "DEACTIVATE";
|
|
4413
|
-
return FlowIssuanceAction2;
|
|
4414
|
-
})(FlowIssuanceAction || {});
|
|
4415
|
-
var FlowIssuanceAttributeFilteringField = /* @__PURE__ */ ((FlowIssuanceAttributeFilteringField2) => {
|
|
4416
|
-
FlowIssuanceAttributeFilteringField2["AttributeUrn"] = "attributeURN";
|
|
4417
|
-
FlowIssuanceAttributeFilteringField2["FlowIssuanceCredentialUuid"] = "flowIssuanceCredentialUuid";
|
|
4418
|
-
FlowIssuanceAttributeFilteringField2["Uuid"] = "uuid";
|
|
4419
|
-
return FlowIssuanceAttributeFilteringField2;
|
|
4420
|
-
})(FlowIssuanceAttributeFilteringField || {});
|
|
4421
|
-
var FlowIssuanceAttributeSortEnum = /* @__PURE__ */ ((FlowIssuanceAttributeSortEnum2) => {
|
|
4422
|
-
FlowIssuanceAttributeSortEnum2["AttributeUrn"] = "attributeURN";
|
|
4423
|
-
FlowIssuanceAttributeSortEnum2["CreatedAt"] = "createdAt";
|
|
4424
|
-
FlowIssuanceAttributeSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4425
|
-
return FlowIssuanceAttributeSortEnum2;
|
|
4426
|
-
})(FlowIssuanceAttributeSortEnum || {});
|
|
4427
|
-
var FlowIssuanceBrandFilteringField = /* @__PURE__ */ ((FlowIssuanceBrandFilteringField2) => {
|
|
4428
|
-
FlowIssuanceBrandFilteringField2["FlowIssuanceUuid"] = "flowIssuanceUuid";
|
|
4429
|
-
FlowIssuanceBrandFilteringField2["OrganizationBrandUuid"] = "organizationBrandUuid";
|
|
4430
|
-
FlowIssuanceBrandFilteringField2["RedirectPath"] = "redirectPath";
|
|
4431
|
-
FlowIssuanceBrandFilteringField2["Uuid"] = "uuid";
|
|
4432
|
-
return FlowIssuanceBrandFilteringField2;
|
|
4433
|
-
})(FlowIssuanceBrandFilteringField || {});
|
|
4434
|
-
var FlowIssuanceBrandSortEnum = /* @__PURE__ */ ((FlowIssuanceBrandSortEnum2) => {
|
|
4435
|
-
FlowIssuanceBrandSortEnum2["CreatedAt"] = "createdAt";
|
|
4436
|
-
FlowIssuanceBrandSortEnum2["RedirectPath"] = "redirectPath";
|
|
4437
|
-
FlowIssuanceBrandSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4438
|
-
return FlowIssuanceBrandSortEnum2;
|
|
4439
|
-
})(FlowIssuanceBrandSortEnum || {});
|
|
4440
|
-
var FlowIssuanceCredentialFilteringField = /* @__PURE__ */ ((FlowIssuanceCredentialFilteringField2) => {
|
|
4441
|
-
FlowIssuanceCredentialFilteringField2["CredentialUrn"] = "credentialURN";
|
|
4442
|
-
FlowIssuanceCredentialFilteringField2["FlowIssuanceProviderUuid"] = "flowIssuanceProviderUuid";
|
|
4443
|
-
FlowIssuanceCredentialFilteringField2["IssuerUrn"] = "issuerURN";
|
|
4444
|
-
FlowIssuanceCredentialFilteringField2["MetaType"] = "metaType";
|
|
4445
|
-
FlowIssuanceCredentialFilteringField2["SchemeUrn"] = "schemeURN";
|
|
4446
|
-
FlowIssuanceCredentialFilteringField2["Uuid"] = "uuid";
|
|
4447
|
-
return FlowIssuanceCredentialFilteringField2;
|
|
4448
|
-
})(FlowIssuanceCredentialFilteringField || {});
|
|
4449
|
-
var FlowIssuanceCredentialMetaDatakeeperFilteringField = /* @__PURE__ */ ((FlowIssuanceCredentialMetaDatakeeperFilteringField2) => {
|
|
4450
|
-
FlowIssuanceCredentialMetaDatakeeperFilteringField2["Context"] = "context";
|
|
4451
|
-
FlowIssuanceCredentialMetaDatakeeperFilteringField2["FlowIssuanceCredentialMetaUuid"] = "flowIssuanceCredentialMetaUuid";
|
|
4452
|
-
return FlowIssuanceCredentialMetaDatakeeperFilteringField2;
|
|
4453
|
-
})(FlowIssuanceCredentialMetaDatakeeperFilteringField || {});
|
|
4454
|
-
var FlowIssuanceCredentialMetaDatakeeperSortEnum = /* @__PURE__ */ ((FlowIssuanceCredentialMetaDatakeeperSortEnum2) => {
|
|
4455
|
-
FlowIssuanceCredentialMetaDatakeeperSortEnum2["CreatedAt"] = "createdAt";
|
|
4456
|
-
return FlowIssuanceCredentialMetaDatakeeperSortEnum2;
|
|
4457
|
-
})(FlowIssuanceCredentialMetaDatakeeperSortEnum || {});
|
|
4458
|
-
var FlowIssuanceCredentialMetaFilteringField = /* @__PURE__ */ ((FlowIssuanceCredentialMetaFilteringField2) => {
|
|
4459
|
-
FlowIssuanceCredentialMetaFilteringField2["FlowIssuanceCredentialUuid"] = "flowIssuanceCredentialUuid";
|
|
4460
|
-
return FlowIssuanceCredentialMetaFilteringField2;
|
|
4461
|
-
})(FlowIssuanceCredentialMetaFilteringField || {});
|
|
4462
|
-
var FlowIssuanceCredentialMetaSortEnum = /* @__PURE__ */ ((FlowIssuanceCredentialMetaSortEnum2) => {
|
|
4463
|
-
FlowIssuanceCredentialMetaSortEnum2["CreatedAt"] = "createdAt";
|
|
4464
|
-
return FlowIssuanceCredentialMetaSortEnum2;
|
|
4465
|
-
})(FlowIssuanceCredentialMetaSortEnum || {});
|
|
4466
|
-
var FlowIssuanceCredentialMetaType = /* @__PURE__ */ ((FlowIssuanceCredentialMetaType2) => {
|
|
4467
|
-
FlowIssuanceCredentialMetaType2["Datakeeper"] = "DATAKEEPER";
|
|
4468
|
-
FlowIssuanceCredentialMetaType2["None"] = "NONE";
|
|
4469
|
-
FlowIssuanceCredentialMetaType2["Yivi"] = "YIVI";
|
|
4470
|
-
return FlowIssuanceCredentialMetaType2;
|
|
4471
|
-
})(FlowIssuanceCredentialMetaType || {});
|
|
4472
|
-
var FlowIssuanceCredentialMetaYiviFilteringField = /* @__PURE__ */ ((FlowIssuanceCredentialMetaYiviFilteringField2) => {
|
|
4473
|
-
FlowIssuanceCredentialMetaYiviFilteringField2["FlowIssuanceCredentialMetaUuid"] = "flowIssuanceCredentialMetaUuid";
|
|
4474
|
-
return FlowIssuanceCredentialMetaYiviFilteringField2;
|
|
4475
|
-
})(FlowIssuanceCredentialMetaYiviFilteringField || {});
|
|
4476
|
-
var FlowIssuanceCredentialMetaYiviSortEnum = /* @__PURE__ */ ((FlowIssuanceCredentialMetaYiviSortEnum2) => {
|
|
4477
|
-
FlowIssuanceCredentialMetaYiviSortEnum2["CreatedAt"] = "createdAt";
|
|
4478
|
-
return FlowIssuanceCredentialMetaYiviSortEnum2;
|
|
4479
|
-
})(FlowIssuanceCredentialMetaYiviSortEnum || {});
|
|
4480
|
-
var FlowIssuanceCredentialSortEnum = /* @__PURE__ */ ((FlowIssuanceCredentialSortEnum2) => {
|
|
4481
|
-
FlowIssuanceCredentialSortEnum2["CreatedAt"] = "createdAt";
|
|
4482
|
-
FlowIssuanceCredentialSortEnum2["CredentialUrn"] = "credentialURN";
|
|
4483
|
-
FlowIssuanceCredentialSortEnum2["IssuerUrn"] = "issuerURN";
|
|
4484
|
-
FlowIssuanceCredentialSortEnum2["SchemeUrn"] = "schemeURN";
|
|
4485
|
-
FlowIssuanceCredentialSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4486
|
-
return FlowIssuanceCredentialSortEnum2;
|
|
4487
|
-
})(FlowIssuanceCredentialSortEnum || {});
|
|
4488
|
-
var FlowIssuanceDomainFilteringField = /* @__PURE__ */ ((FlowIssuanceDomainFilteringField2) => {
|
|
4489
|
-
FlowIssuanceDomainFilteringField2["FlowIssuanceUuid"] = "flowIssuanceUuid";
|
|
4490
|
-
FlowIssuanceDomainFilteringField2["OrganizationDomainUuid"] = "organizationDomainUuid";
|
|
4491
|
-
FlowIssuanceDomainFilteringField2["RedirectPath"] = "redirectPath";
|
|
4492
|
-
FlowIssuanceDomainFilteringField2["Uuid"] = "uuid";
|
|
4493
|
-
return FlowIssuanceDomainFilteringField2;
|
|
4494
|
-
})(FlowIssuanceDomainFilteringField || {});
|
|
4495
|
-
var FlowIssuanceDomainSortEnum = /* @__PURE__ */ ((FlowIssuanceDomainSortEnum2) => {
|
|
4496
|
-
FlowIssuanceDomainSortEnum2["CreatedAt"] = "createdAt";
|
|
4497
|
-
FlowIssuanceDomainSortEnum2["RedirectPath"] = "redirectPath";
|
|
4498
|
-
FlowIssuanceDomainSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4499
|
-
return FlowIssuanceDomainSortEnum2;
|
|
4500
|
-
})(FlowIssuanceDomainSortEnum || {});
|
|
4501
|
-
var FlowIssuanceFilteringField = /* @__PURE__ */ ((FlowIssuanceFilteringField2) => {
|
|
4502
|
-
FlowIssuanceFilteringField2["Name"] = "name";
|
|
4503
|
-
FlowIssuanceFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
4504
|
-
FlowIssuanceFilteringField2["State"] = "state";
|
|
4505
|
-
FlowIssuanceFilteringField2["Uuid"] = "uuid";
|
|
4506
|
-
return FlowIssuanceFilteringField2;
|
|
4507
|
-
})(FlowIssuanceFilteringField || {});
|
|
4508
|
-
var FlowIssuanceLabelFilteringField = /* @__PURE__ */ ((FlowIssuanceLabelFilteringField2) => {
|
|
4509
|
-
FlowIssuanceLabelFilteringField2["FlowIssuanceUuid"] = "flowIssuanceUuid";
|
|
4510
|
-
FlowIssuanceLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
4511
|
-
FlowIssuanceLabelFilteringField2["Uuid"] = "uuid";
|
|
4512
|
-
return FlowIssuanceLabelFilteringField2;
|
|
4513
|
-
})(FlowIssuanceLabelFilteringField || {});
|
|
4514
|
-
var FlowIssuanceLabelSortEnum = /* @__PURE__ */ ((FlowIssuanceLabelSortEnum2) => {
|
|
4515
|
-
FlowIssuanceLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
4516
|
-
FlowIssuanceLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4517
|
-
return FlowIssuanceLabelSortEnum2;
|
|
4518
|
-
})(FlowIssuanceLabelSortEnum || {});
|
|
4519
|
-
var FlowIssuanceMappingFilteringField = /* @__PURE__ */ ((FlowIssuanceMappingFilteringField2) => {
|
|
4520
|
-
FlowIssuanceMappingFilteringField2["FlowIssuanceUuid"] = "flowIssuanceUuid";
|
|
4521
|
-
FlowIssuanceMappingFilteringField2["MappingIssuanceUuid"] = "mappingIssuanceUuid";
|
|
4522
|
-
FlowIssuanceMappingFilteringField2["Uuid"] = "uuid";
|
|
4523
|
-
return FlowIssuanceMappingFilteringField2;
|
|
4524
|
-
})(FlowIssuanceMappingFilteringField || {});
|
|
4525
|
-
var FlowIssuanceMappingSortEnum = /* @__PURE__ */ ((FlowIssuanceMappingSortEnum2) => {
|
|
4526
|
-
FlowIssuanceMappingSortEnum2["CreatedAt"] = "createdAt";
|
|
4527
|
-
FlowIssuanceMappingSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4528
|
-
return FlowIssuanceMappingSortEnum2;
|
|
4529
|
-
})(FlowIssuanceMappingSortEnum || {});
|
|
4530
|
-
var FlowIssuanceProviderFilteringField = /* @__PURE__ */ ((FlowIssuanceProviderFilteringField2) => {
|
|
4531
|
-
FlowIssuanceProviderFilteringField2["FlowIssuanceUuid"] = "flowIssuanceUuid";
|
|
4532
|
-
FlowIssuanceProviderFilteringField2["ProviderAppUuid"] = "providerAppUuid";
|
|
4533
|
-
FlowIssuanceProviderFilteringField2["Uuid"] = "uuid";
|
|
4534
|
-
return FlowIssuanceProviderFilteringField2;
|
|
4535
|
-
})(FlowIssuanceProviderFilteringField || {});
|
|
4536
|
-
var FlowIssuanceProviderSortEnum = /* @__PURE__ */ ((FlowIssuanceProviderSortEnum2) => {
|
|
4537
|
-
FlowIssuanceProviderSortEnum2["CreatedAt"] = "createdAt";
|
|
4538
|
-
FlowIssuanceProviderSortEnum2["ProviderAppUuid"] = "providerAppUuid";
|
|
4539
|
-
FlowIssuanceProviderSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4540
|
-
return FlowIssuanceProviderSortEnum2;
|
|
4541
|
-
})(FlowIssuanceProviderSortEnum || {});
|
|
4542
|
-
var FlowIssuanceSortEnum = /* @__PURE__ */ ((FlowIssuanceSortEnum2) => {
|
|
4543
|
-
FlowIssuanceSortEnum2["CreatedAt"] = "createdAt";
|
|
4544
|
-
FlowIssuanceSortEnum2["Name"] = "name";
|
|
4545
|
-
FlowIssuanceSortEnum2["State"] = "state";
|
|
4546
|
-
FlowIssuanceSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4547
|
-
return FlowIssuanceSortEnum2;
|
|
4548
|
-
})(FlowIssuanceSortEnum || {});
|
|
4549
|
-
var FlowIssuanceState = /* @__PURE__ */ ((FlowIssuanceState2) => {
|
|
4550
|
-
FlowIssuanceState2["Active"] = "ACTIVE";
|
|
4551
|
-
FlowIssuanceState2["Inactive"] = "INACTIVE";
|
|
4552
|
-
return FlowIssuanceState2;
|
|
4553
|
-
})(FlowIssuanceState || {});
|
|
4554
|
-
var FlowSignatureAction = /* @__PURE__ */ ((FlowSignatureAction2) => {
|
|
4555
|
-
FlowSignatureAction2["Activate"] = "ACTIVATE";
|
|
4556
|
-
FlowSignatureAction2["Deactivate"] = "DEACTIVATE";
|
|
4557
|
-
return FlowSignatureAction2;
|
|
4558
|
-
})(FlowSignatureAction || {});
|
|
4559
|
-
var FlowSignatureAttributeFilteringField = /* @__PURE__ */ ((FlowSignatureAttributeFilteringField2) => {
|
|
4560
|
-
FlowSignatureAttributeFilteringField2["AttributeUuid"] = "attributeUuid";
|
|
4561
|
-
FlowSignatureAttributeFilteringField2["FlowSignatureCredentialUuid"] = "flowSignatureCredentialUuid";
|
|
4562
|
-
FlowSignatureAttributeFilteringField2["Uuid"] = "uuid";
|
|
4563
|
-
return FlowSignatureAttributeFilteringField2;
|
|
4564
|
-
})(FlowSignatureAttributeFilteringField || {});
|
|
4565
|
-
var FlowSignatureAttributeSortEnum = /* @__PURE__ */ ((FlowSignatureAttributeSortEnum2) => {
|
|
4566
|
-
FlowSignatureAttributeSortEnum2["AttributeUuid"] = "attributeUuid";
|
|
4567
|
-
FlowSignatureAttributeSortEnum2["CreatedAt"] = "createdAt";
|
|
4568
|
-
FlowSignatureAttributeSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4569
|
-
return FlowSignatureAttributeSortEnum2;
|
|
4570
|
-
})(FlowSignatureAttributeSortEnum || {});
|
|
4571
|
-
var FlowSignatureBrandFilteringField = /* @__PURE__ */ ((FlowSignatureBrandFilteringField2) => {
|
|
4572
|
-
FlowSignatureBrandFilteringField2["FlowSignatureUuid"] = "flowSignatureUuid";
|
|
4573
|
-
FlowSignatureBrandFilteringField2["OrganizationBrandUuid"] = "organizationBrandUuid";
|
|
4574
|
-
FlowSignatureBrandFilteringField2["RedirectPath"] = "redirectPath";
|
|
4575
|
-
FlowSignatureBrandFilteringField2["Uuid"] = "uuid";
|
|
4576
|
-
return FlowSignatureBrandFilteringField2;
|
|
4577
|
-
})(FlowSignatureBrandFilteringField || {});
|
|
4578
|
-
var FlowSignatureBrandSortEnum = /* @__PURE__ */ ((FlowSignatureBrandSortEnum2) => {
|
|
4579
|
-
FlowSignatureBrandSortEnum2["CreatedAt"] = "createdAt";
|
|
4580
|
-
FlowSignatureBrandSortEnum2["RedirectPath"] = "redirectPath";
|
|
4581
|
-
FlowSignatureBrandSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4582
|
-
return FlowSignatureBrandSortEnum2;
|
|
4583
|
-
})(FlowSignatureBrandSortEnum || {});
|
|
4584
|
-
var FlowSignatureCredentialFilteringField = /* @__PURE__ */ ((FlowSignatureCredentialFilteringField2) => {
|
|
4585
|
-
FlowSignatureCredentialFilteringField2["CredentialUuid"] = "credentialUuid";
|
|
4586
|
-
FlowSignatureCredentialFilteringField2["FlowSignatureGroupUuid"] = "flowSignatureGroupUuid";
|
|
4587
|
-
FlowSignatureCredentialFilteringField2["IssuerUuid"] = "issuerUuid";
|
|
4588
|
-
FlowSignatureCredentialFilteringField2["SchemeUuid"] = "schemeUuid";
|
|
4589
|
-
FlowSignatureCredentialFilteringField2["Uuid"] = "uuid";
|
|
4590
|
-
return FlowSignatureCredentialFilteringField2;
|
|
4591
|
-
})(FlowSignatureCredentialFilteringField || {});
|
|
4592
|
-
var FlowSignatureCredentialSortEnum = /* @__PURE__ */ ((FlowSignatureCredentialSortEnum2) => {
|
|
4593
|
-
FlowSignatureCredentialSortEnum2["CreatedAt"] = "createdAt";
|
|
4594
|
-
FlowSignatureCredentialSortEnum2["CredentialUuid"] = "credentialUuid";
|
|
4595
|
-
FlowSignatureCredentialSortEnum2["IssuerUuid"] = "issuerUuid";
|
|
4596
|
-
FlowSignatureCredentialSortEnum2["SchemeUuid"] = "schemeUuid";
|
|
4597
|
-
FlowSignatureCredentialSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4598
|
-
return FlowSignatureCredentialSortEnum2;
|
|
4599
|
-
})(FlowSignatureCredentialSortEnum || {});
|
|
4600
|
-
var FlowSignatureDomainFilteringField = /* @__PURE__ */ ((FlowSignatureDomainFilteringField2) => {
|
|
4601
|
-
FlowSignatureDomainFilteringField2["FlowSignatureUuid"] = "flowSignatureUuid";
|
|
4602
|
-
FlowSignatureDomainFilteringField2["OrganizationDomainUuid"] = "organizationDomainUuid";
|
|
4603
|
-
FlowSignatureDomainFilteringField2["RedirectPath"] = "redirectPath";
|
|
4604
|
-
FlowSignatureDomainFilteringField2["Uuid"] = "uuid";
|
|
4605
|
-
return FlowSignatureDomainFilteringField2;
|
|
4606
|
-
})(FlowSignatureDomainFilteringField || {});
|
|
4607
|
-
var FlowSignatureDomainSortEnum = /* @__PURE__ */ ((FlowSignatureDomainSortEnum2) => {
|
|
4608
|
-
FlowSignatureDomainSortEnum2["CreatedAt"] = "createdAt";
|
|
4609
|
-
FlowSignatureDomainSortEnum2["RedirectPath"] = "redirectPath";
|
|
4610
|
-
FlowSignatureDomainSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4611
|
-
return FlowSignatureDomainSortEnum2;
|
|
4612
|
-
})(FlowSignatureDomainSortEnum || {});
|
|
4613
|
-
var FlowSignatureFilteringField = /* @__PURE__ */ ((FlowSignatureFilteringField2) => {
|
|
4614
|
-
FlowSignatureFilteringField2["Name"] = "name";
|
|
4615
|
-
FlowSignatureFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
4616
|
-
FlowSignatureFilteringField2["State"] = "state";
|
|
4617
|
-
FlowSignatureFilteringField2["Uuid"] = "uuid";
|
|
4618
|
-
return FlowSignatureFilteringField2;
|
|
4619
|
-
})(FlowSignatureFilteringField || {});
|
|
4620
|
-
var FlowSignatureGroupFilteringField = /* @__PURE__ */ ((FlowSignatureGroupFilteringField2) => {
|
|
4621
|
-
FlowSignatureGroupFilteringField2["FlowSignatureProviderUuid"] = "flowSignatureProviderUuid";
|
|
4622
|
-
FlowSignatureGroupFilteringField2["Name"] = "name";
|
|
4623
|
-
FlowSignatureGroupFilteringField2["Uuid"] = "uuid";
|
|
4624
|
-
return FlowSignatureGroupFilteringField2;
|
|
4625
|
-
})(FlowSignatureGroupFilteringField || {});
|
|
4626
|
-
var FlowSignatureGroupSortEnum = /* @__PURE__ */ ((FlowSignatureGroupSortEnum2) => {
|
|
4627
|
-
FlowSignatureGroupSortEnum2["CreatedAt"] = "createdAt";
|
|
4628
|
-
FlowSignatureGroupSortEnum2["Name"] = "name";
|
|
4629
|
-
FlowSignatureGroupSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4630
|
-
return FlowSignatureGroupSortEnum2;
|
|
4631
|
-
})(FlowSignatureGroupSortEnum || {});
|
|
4632
|
-
var FlowSignatureLabelFilteringField = /* @__PURE__ */ ((FlowSignatureLabelFilteringField2) => {
|
|
4633
|
-
FlowSignatureLabelFilteringField2["FlowSignatureUuid"] = "flowSignatureUuid";
|
|
4634
|
-
FlowSignatureLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
4635
|
-
FlowSignatureLabelFilteringField2["Uuid"] = "uuid";
|
|
4636
|
-
return FlowSignatureLabelFilteringField2;
|
|
4637
|
-
})(FlowSignatureLabelFilteringField || {});
|
|
4638
|
-
var FlowSignatureLabelSortEnum = /* @__PURE__ */ ((FlowSignatureLabelSortEnum2) => {
|
|
4639
|
-
FlowSignatureLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
4640
|
-
FlowSignatureLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4641
|
-
return FlowSignatureLabelSortEnum2;
|
|
4642
|
-
})(FlowSignatureLabelSortEnum || {});
|
|
4643
|
-
var FlowSignatureMappingFilteringField = /* @__PURE__ */ ((FlowSignatureMappingFilteringField2) => {
|
|
4644
|
-
FlowSignatureMappingFilteringField2["FlowSignatureUuid"] = "flowSignatureUuid";
|
|
4645
|
-
FlowSignatureMappingFilteringField2["MappingVerificationUuid"] = "mappingVerificationUuid";
|
|
4646
|
-
FlowSignatureMappingFilteringField2["Uuid"] = "uuid";
|
|
4647
|
-
return FlowSignatureMappingFilteringField2;
|
|
4648
|
-
})(FlowSignatureMappingFilteringField || {});
|
|
4649
|
-
var FlowSignatureMappingSortEnum = /* @__PURE__ */ ((FlowSignatureMappingSortEnum2) => {
|
|
4650
|
-
FlowSignatureMappingSortEnum2["CreatedAt"] = "createdAt";
|
|
4651
|
-
FlowSignatureMappingSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4652
|
-
return FlowSignatureMappingSortEnum2;
|
|
4653
|
-
})(FlowSignatureMappingSortEnum || {});
|
|
4654
|
-
var FlowSignatureProviderConfigurationFilteringField = /* @__PURE__ */ ((FlowSignatureProviderConfigurationFilteringField2) => {
|
|
4655
|
-
FlowSignatureProviderConfigurationFilteringField2["FlowSignatureProviderUuid"] = "flowSignatureProviderUuid";
|
|
4656
|
-
return FlowSignatureProviderConfigurationFilteringField2;
|
|
4657
|
-
})(FlowSignatureProviderConfigurationFilteringField || {});
|
|
4658
|
-
var FlowSignatureProviderConfigurationNlWalletFilteringField = /* @__PURE__ */ ((FlowSignatureProviderConfigurationNlWalletFilteringField2) => {
|
|
4659
|
-
FlowSignatureProviderConfigurationNlWalletFilteringField2["FlowSignatureProviderConfigurationUuid"] = "flowSignatureProviderConfigurationUuid";
|
|
4660
|
-
FlowSignatureProviderConfigurationNlWalletFilteringField2["Intent"] = "intent";
|
|
4661
|
-
return FlowSignatureProviderConfigurationNlWalletFilteringField2;
|
|
4662
|
-
})(FlowSignatureProviderConfigurationNlWalletFilteringField || {});
|
|
4663
|
-
var FlowSignatureProviderConfigurationNlWalletSortEnum = /* @__PURE__ */ ((FlowSignatureProviderConfigurationNlWalletSortEnum2) => {
|
|
4664
|
-
FlowSignatureProviderConfigurationNlWalletSortEnum2["CreatedAt"] = "createdAt";
|
|
4665
|
-
return FlowSignatureProviderConfigurationNlWalletSortEnum2;
|
|
4666
|
-
})(FlowSignatureProviderConfigurationNlWalletSortEnum || {});
|
|
4667
|
-
var FlowSignatureProviderConfigurationSortEnum = /* @__PURE__ */ ((FlowSignatureProviderConfigurationSortEnum2) => {
|
|
4668
|
-
FlowSignatureProviderConfigurationSortEnum2["CreatedAt"] = "createdAt";
|
|
4669
|
-
return FlowSignatureProviderConfigurationSortEnum2;
|
|
4670
|
-
})(FlowSignatureProviderConfigurationSortEnum || {});
|
|
4671
|
-
var FlowSignatureProviderFilteringField = /* @__PURE__ */ ((FlowSignatureProviderFilteringField2) => {
|
|
4672
|
-
FlowSignatureProviderFilteringField2["FlowSignatureUuid"] = "flowSignatureUuid";
|
|
4673
|
-
FlowSignatureProviderFilteringField2["ProviderUuid"] = "providerUuid";
|
|
4674
|
-
FlowSignatureProviderFilteringField2["Uuid"] = "uuid";
|
|
4675
|
-
return FlowSignatureProviderFilteringField2;
|
|
4676
|
-
})(FlowSignatureProviderFilteringField || {});
|
|
4677
|
-
var FlowSignatureProviderSortEnum = /* @__PURE__ */ ((FlowSignatureProviderSortEnum2) => {
|
|
4678
|
-
FlowSignatureProviderSortEnum2["CreatedAt"] = "createdAt";
|
|
4679
|
-
FlowSignatureProviderSortEnum2["ProviderUuid"] = "providerUuid";
|
|
4680
|
-
FlowSignatureProviderSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4681
|
-
return FlowSignatureProviderSortEnum2;
|
|
4682
|
-
})(FlowSignatureProviderSortEnum || {});
|
|
4683
|
-
var FlowSignatureSortEnum = /* @__PURE__ */ ((FlowSignatureSortEnum2) => {
|
|
4684
|
-
FlowSignatureSortEnum2["CreatedAt"] = "createdAt";
|
|
4685
|
-
FlowSignatureSortEnum2["Name"] = "name";
|
|
4686
|
-
FlowSignatureSortEnum2["State"] = "state";
|
|
4687
|
-
FlowSignatureSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4688
|
-
return FlowSignatureSortEnum2;
|
|
4689
|
-
})(FlowSignatureSortEnum || {});
|
|
4690
|
-
var FlowSignatureState = /* @__PURE__ */ ((FlowSignatureState2) => {
|
|
4691
|
-
FlowSignatureState2["Active"] = "ACTIVE";
|
|
4692
|
-
FlowSignatureState2["Inactive"] = "INACTIVE";
|
|
4693
|
-
return FlowSignatureState2;
|
|
4694
|
-
})(FlowSignatureState || {});
|
|
4695
4475
|
var FlowType = /* @__PURE__ */ ((FlowType2) => {
|
|
4696
4476
|
FlowType2["Authentication"] = "AUTHENTICATION";
|
|
4697
4477
|
FlowType2["Disclosure"] = "DISCLOSURE";
|
|
@@ -4699,39 +4479,6 @@ var FlowType = /* @__PURE__ */ ((FlowType2) => {
|
|
|
4699
4479
|
FlowType2["Signature"] = "SIGNATURE";
|
|
4700
4480
|
return FlowType2;
|
|
4701
4481
|
})(FlowType || {});
|
|
4702
|
-
var IdentityAttributeLabelFilteringField = /* @__PURE__ */ ((IdentityAttributeLabelFilteringField2) => {
|
|
4703
|
-
IdentityAttributeLabelFilteringField2["AttributeUuid"] = "attributeUuid";
|
|
4704
|
-
IdentityAttributeLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
4705
|
-
IdentityAttributeLabelFilteringField2["Uuid"] = "uuid";
|
|
4706
|
-
return IdentityAttributeLabelFilteringField2;
|
|
4707
|
-
})(IdentityAttributeLabelFilteringField || {});
|
|
4708
|
-
var IdentityAttributeLabelSortEnum = /* @__PURE__ */ ((IdentityAttributeLabelSortEnum2) => {
|
|
4709
|
-
IdentityAttributeLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
4710
|
-
IdentityAttributeLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4711
|
-
return IdentityAttributeLabelSortEnum2;
|
|
4712
|
-
})(IdentityAttributeLabelSortEnum || {});
|
|
4713
|
-
var IdentityCredentialLabelFilteringField = /* @__PURE__ */ ((IdentityCredentialLabelFilteringField2) => {
|
|
4714
|
-
IdentityCredentialLabelFilteringField2["CredentialUuid"] = "credentialUuid";
|
|
4715
|
-
IdentityCredentialLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
4716
|
-
IdentityCredentialLabelFilteringField2["Uuid"] = "uuid";
|
|
4717
|
-
return IdentityCredentialLabelFilteringField2;
|
|
4718
|
-
})(IdentityCredentialLabelFilteringField || {});
|
|
4719
|
-
var IdentityCredentialLabelSortEnum = /* @__PURE__ */ ((IdentityCredentialLabelSortEnum2) => {
|
|
4720
|
-
IdentityCredentialLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
4721
|
-
IdentityCredentialLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4722
|
-
return IdentityCredentialLabelSortEnum2;
|
|
4723
|
-
})(IdentityCredentialLabelSortEnum || {});
|
|
4724
|
-
var IdentityIssuerLabelFilteringField = /* @__PURE__ */ ((IdentityIssuerLabelFilteringField2) => {
|
|
4725
|
-
IdentityIssuerLabelFilteringField2["IssuerUuid"] = "issuerUuid";
|
|
4726
|
-
IdentityIssuerLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
4727
|
-
IdentityIssuerLabelFilteringField2["Uuid"] = "uuid";
|
|
4728
|
-
return IdentityIssuerLabelFilteringField2;
|
|
4729
|
-
})(IdentityIssuerLabelFilteringField || {});
|
|
4730
|
-
var IdentityIssuerLabelSortEnum = /* @__PURE__ */ ((IdentityIssuerLabelSortEnum2) => {
|
|
4731
|
-
IdentityIssuerLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
4732
|
-
IdentityIssuerLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4733
|
-
return IdentityIssuerLabelSortEnum2;
|
|
4734
|
-
})(IdentityIssuerLabelSortEnum || {});
|
|
4735
4482
|
var IdentityModel = /* @__PURE__ */ ((IdentityModel2) => {
|
|
4736
4483
|
IdentityModel2["App"] = "APP";
|
|
4737
4484
|
IdentityModel2["Attribute"] = "ATTRIBUTE";
|
|
@@ -4742,38 +4489,6 @@ var IdentityModel = /* @__PURE__ */ ((IdentityModel2) => {
|
|
|
4742
4489
|
IdentityModel2["Scope"] = "SCOPE";
|
|
4743
4490
|
return IdentityModel2;
|
|
4744
4491
|
})(IdentityModel || {});
|
|
4745
|
-
var IdentityModelType = /* @__PURE__ */ ((IdentityModelType2) => {
|
|
4746
|
-
IdentityModelType2["App"] = "APP";
|
|
4747
|
-
IdentityModelType2["Attribute"] = "ATTRIBUTE";
|
|
4748
|
-
IdentityModelType2["Credential"] = "CREDENTIAL";
|
|
4749
|
-
IdentityModelType2["Issuer"] = "ISSUER";
|
|
4750
|
-
IdentityModelType2["Provider"] = "PROVIDER";
|
|
4751
|
-
IdentityModelType2["Scheme"] = "SCHEME";
|
|
4752
|
-
IdentityModelType2["Scope"] = "SCOPE";
|
|
4753
|
-
return IdentityModelType2;
|
|
4754
|
-
})(IdentityModelType || {});
|
|
4755
|
-
var IdentityProviderLabelFilteringField = /* @__PURE__ */ ((IdentityProviderLabelFilteringField2) => {
|
|
4756
|
-
IdentityProviderLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
4757
|
-
IdentityProviderLabelFilteringField2["ProviderUuid"] = "providerUuid";
|
|
4758
|
-
IdentityProviderLabelFilteringField2["Uuid"] = "uuid";
|
|
4759
|
-
return IdentityProviderLabelFilteringField2;
|
|
4760
|
-
})(IdentityProviderLabelFilteringField || {});
|
|
4761
|
-
var IdentityProviderLabelSortEnum = /* @__PURE__ */ ((IdentityProviderLabelSortEnum2) => {
|
|
4762
|
-
IdentityProviderLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
4763
|
-
IdentityProviderLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4764
|
-
return IdentityProviderLabelSortEnum2;
|
|
4765
|
-
})(IdentityProviderLabelSortEnum || {});
|
|
4766
|
-
var IdentitySchemeLabelFilteringField = /* @__PURE__ */ ((IdentitySchemeLabelFilteringField2) => {
|
|
4767
|
-
IdentitySchemeLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
4768
|
-
IdentitySchemeLabelFilteringField2["SchemeUuid"] = "schemeUuid";
|
|
4769
|
-
IdentitySchemeLabelFilteringField2["Uuid"] = "uuid";
|
|
4770
|
-
return IdentitySchemeLabelFilteringField2;
|
|
4771
|
-
})(IdentitySchemeLabelFilteringField || {});
|
|
4772
|
-
var IdentitySchemeLabelSortEnum = /* @__PURE__ */ ((IdentitySchemeLabelSortEnum2) => {
|
|
4773
|
-
IdentitySchemeLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
4774
|
-
IdentitySchemeLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4775
|
-
return IdentitySchemeLabelSortEnum2;
|
|
4776
|
-
})(IdentitySchemeLabelSortEnum || {});
|
|
4777
4492
|
var Interval = /* @__PURE__ */ ((Interval2) => {
|
|
4778
4493
|
Interval2["Monthly"] = "MONTHLY";
|
|
4779
4494
|
Interval2["None"] = "NONE";
|
|
@@ -4781,6 +4496,163 @@ var Interval = /* @__PURE__ */ ((Interval2) => {
|
|
|
4781
4496
|
Interval2["Yearly"] = "YEARLY";
|
|
4782
4497
|
return Interval2;
|
|
4783
4498
|
})(Interval || {});
|
|
4499
|
+
var IssuanceAction = /* @__PURE__ */ ((IssuanceAction2) => {
|
|
4500
|
+
IssuanceAction2["Activate"] = "ACTIVATE";
|
|
4501
|
+
IssuanceAction2["Deactivate"] = "DEACTIVATE";
|
|
4502
|
+
return IssuanceAction2;
|
|
4503
|
+
})(IssuanceAction || {});
|
|
4504
|
+
var IssuanceActivityFilteringField = /* @__PURE__ */ ((IssuanceActivityFilteringField2) => {
|
|
4505
|
+
IssuanceActivityFilteringField2["CreatedAt"] = "createdAt";
|
|
4506
|
+
IssuanceActivityFilteringField2["EventUrn"] = "eventURN";
|
|
4507
|
+
IssuanceActivityFilteringField2["IssuanceUuid"] = "issuanceUuid";
|
|
4508
|
+
IssuanceActivityFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
4509
|
+
IssuanceActivityFilteringField2["RequestUuid"] = "requestUuid";
|
|
4510
|
+
return IssuanceActivityFilteringField2;
|
|
4511
|
+
})(IssuanceActivityFilteringField || {});
|
|
4512
|
+
var IssuanceActivitySortEnum = /* @__PURE__ */ ((IssuanceActivitySortEnum2) => {
|
|
4513
|
+
IssuanceActivitySortEnum2["CreatedAt"] = "createdAt";
|
|
4514
|
+
IssuanceActivitySortEnum2["EventUrn"] = "eventUrn";
|
|
4515
|
+
return IssuanceActivitySortEnum2;
|
|
4516
|
+
})(IssuanceActivitySortEnum || {});
|
|
4517
|
+
var IssuanceAttributeFilteringField = /* @__PURE__ */ ((IssuanceAttributeFilteringField2) => {
|
|
4518
|
+
IssuanceAttributeFilteringField2["AttributeUrn"] = "attributeURN";
|
|
4519
|
+
IssuanceAttributeFilteringField2["IssuanceCredentialUuid"] = "issuanceCredentialUuid";
|
|
4520
|
+
IssuanceAttributeFilteringField2["Uuid"] = "uuid";
|
|
4521
|
+
return IssuanceAttributeFilteringField2;
|
|
4522
|
+
})(IssuanceAttributeFilteringField || {});
|
|
4523
|
+
var IssuanceAttributeSortEnum = /* @__PURE__ */ ((IssuanceAttributeSortEnum2) => {
|
|
4524
|
+
IssuanceAttributeSortEnum2["AttributeUrn"] = "attributeURN";
|
|
4525
|
+
IssuanceAttributeSortEnum2["CreatedAt"] = "createdAt";
|
|
4526
|
+
IssuanceAttributeSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4527
|
+
return IssuanceAttributeSortEnum2;
|
|
4528
|
+
})(IssuanceAttributeSortEnum || {});
|
|
4529
|
+
var IssuanceBrandFilteringField = /* @__PURE__ */ ((IssuanceBrandFilteringField2) => {
|
|
4530
|
+
IssuanceBrandFilteringField2["IssuanceUuid"] = "issuanceUuid";
|
|
4531
|
+
IssuanceBrandFilteringField2["OrganizationBrandUuid"] = "organizationBrandUuid";
|
|
4532
|
+
IssuanceBrandFilteringField2["RedirectPath"] = "redirectPath";
|
|
4533
|
+
IssuanceBrandFilteringField2["Uuid"] = "uuid";
|
|
4534
|
+
return IssuanceBrandFilteringField2;
|
|
4535
|
+
})(IssuanceBrandFilteringField || {});
|
|
4536
|
+
var IssuanceBrandSortEnum = /* @__PURE__ */ ((IssuanceBrandSortEnum2) => {
|
|
4537
|
+
IssuanceBrandSortEnum2["CreatedAt"] = "createdAt";
|
|
4538
|
+
IssuanceBrandSortEnum2["RedirectPath"] = "redirectPath";
|
|
4539
|
+
IssuanceBrandSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4540
|
+
return IssuanceBrandSortEnum2;
|
|
4541
|
+
})(IssuanceBrandSortEnum || {});
|
|
4542
|
+
var IssuanceCredentialFilteringField = /* @__PURE__ */ ((IssuanceCredentialFilteringField2) => {
|
|
4543
|
+
IssuanceCredentialFilteringField2["CredentialUrn"] = "credentialURN";
|
|
4544
|
+
IssuanceCredentialFilteringField2["IssuanceProviderUuid"] = "issuanceProviderUuid";
|
|
4545
|
+
IssuanceCredentialFilteringField2["IssuerUrn"] = "issuerURN";
|
|
4546
|
+
IssuanceCredentialFilteringField2["MetaType"] = "metaType";
|
|
4547
|
+
IssuanceCredentialFilteringField2["SchemeUrn"] = "schemeURN";
|
|
4548
|
+
IssuanceCredentialFilteringField2["Uuid"] = "uuid";
|
|
4549
|
+
return IssuanceCredentialFilteringField2;
|
|
4550
|
+
})(IssuanceCredentialFilteringField || {});
|
|
4551
|
+
var IssuanceCredentialMetaDatakeeperFilteringField = /* @__PURE__ */ ((IssuanceCredentialMetaDatakeeperFilteringField2) => {
|
|
4552
|
+
IssuanceCredentialMetaDatakeeperFilteringField2["Context"] = "context";
|
|
4553
|
+
IssuanceCredentialMetaDatakeeperFilteringField2["IssuanceCredentialMetaUuid"] = "issuanceCredentialMetaUuid";
|
|
4554
|
+
return IssuanceCredentialMetaDatakeeperFilteringField2;
|
|
4555
|
+
})(IssuanceCredentialMetaDatakeeperFilteringField || {});
|
|
4556
|
+
var IssuanceCredentialMetaDatakeeperSortEnum = /* @__PURE__ */ ((IssuanceCredentialMetaDatakeeperSortEnum2) => {
|
|
4557
|
+
IssuanceCredentialMetaDatakeeperSortEnum2["CreatedAt"] = "createdAt";
|
|
4558
|
+
return IssuanceCredentialMetaDatakeeperSortEnum2;
|
|
4559
|
+
})(IssuanceCredentialMetaDatakeeperSortEnum || {});
|
|
4560
|
+
var IssuanceCredentialMetaFilteringField = /* @__PURE__ */ ((IssuanceCredentialMetaFilteringField2) => {
|
|
4561
|
+
IssuanceCredentialMetaFilteringField2["IssuanceCredentialUuid"] = "issuanceCredentialUuid";
|
|
4562
|
+
return IssuanceCredentialMetaFilteringField2;
|
|
4563
|
+
})(IssuanceCredentialMetaFilteringField || {});
|
|
4564
|
+
var IssuanceCredentialMetaSortEnum = /* @__PURE__ */ ((IssuanceCredentialMetaSortEnum2) => {
|
|
4565
|
+
IssuanceCredentialMetaSortEnum2["CreatedAt"] = "createdAt";
|
|
4566
|
+
return IssuanceCredentialMetaSortEnum2;
|
|
4567
|
+
})(IssuanceCredentialMetaSortEnum || {});
|
|
4568
|
+
var IssuanceCredentialMetaType = /* @__PURE__ */ ((IssuanceCredentialMetaType2) => {
|
|
4569
|
+
IssuanceCredentialMetaType2["Datakeeper"] = "DATAKEEPER";
|
|
4570
|
+
IssuanceCredentialMetaType2["None"] = "NONE";
|
|
4571
|
+
IssuanceCredentialMetaType2["Yivi"] = "YIVI";
|
|
4572
|
+
return IssuanceCredentialMetaType2;
|
|
4573
|
+
})(IssuanceCredentialMetaType || {});
|
|
4574
|
+
var IssuanceCredentialMetaYiviFilteringField = /* @__PURE__ */ ((IssuanceCredentialMetaYiviFilteringField2) => {
|
|
4575
|
+
IssuanceCredentialMetaYiviFilteringField2["IssuanceCredentialMetaUuid"] = "issuanceCredentialMetaUuid";
|
|
4576
|
+
return IssuanceCredentialMetaYiviFilteringField2;
|
|
4577
|
+
})(IssuanceCredentialMetaYiviFilteringField || {});
|
|
4578
|
+
var IssuanceCredentialMetaYiviSortEnum = /* @__PURE__ */ ((IssuanceCredentialMetaYiviSortEnum2) => {
|
|
4579
|
+
IssuanceCredentialMetaYiviSortEnum2["CreatedAt"] = "createdAt";
|
|
4580
|
+
return IssuanceCredentialMetaYiviSortEnum2;
|
|
4581
|
+
})(IssuanceCredentialMetaYiviSortEnum || {});
|
|
4582
|
+
var IssuanceCredentialSortEnum = /* @__PURE__ */ ((IssuanceCredentialSortEnum2) => {
|
|
4583
|
+
IssuanceCredentialSortEnum2["CreatedAt"] = "createdAt";
|
|
4584
|
+
IssuanceCredentialSortEnum2["CredentialUrn"] = "credentialURN";
|
|
4585
|
+
IssuanceCredentialSortEnum2["IssuerUrn"] = "issuerURN";
|
|
4586
|
+
IssuanceCredentialSortEnum2["SchemeUrn"] = "schemeURN";
|
|
4587
|
+
IssuanceCredentialSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4588
|
+
return IssuanceCredentialSortEnum2;
|
|
4589
|
+
})(IssuanceCredentialSortEnum || {});
|
|
4590
|
+
var IssuanceDomainFilteringField = /* @__PURE__ */ ((IssuanceDomainFilteringField2) => {
|
|
4591
|
+
IssuanceDomainFilteringField2["IssuanceUuid"] = "issuanceUuid";
|
|
4592
|
+
IssuanceDomainFilteringField2["OrganizationDomainUuid"] = "organizationDomainUuid";
|
|
4593
|
+
IssuanceDomainFilteringField2["RedirectPath"] = "redirectPath";
|
|
4594
|
+
IssuanceDomainFilteringField2["Uuid"] = "uuid";
|
|
4595
|
+
return IssuanceDomainFilteringField2;
|
|
4596
|
+
})(IssuanceDomainFilteringField || {});
|
|
4597
|
+
var IssuanceDomainSortEnum = /* @__PURE__ */ ((IssuanceDomainSortEnum2) => {
|
|
4598
|
+
IssuanceDomainSortEnum2["CreatedAt"] = "createdAt";
|
|
4599
|
+
IssuanceDomainSortEnum2["RedirectPath"] = "redirectPath";
|
|
4600
|
+
IssuanceDomainSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4601
|
+
return IssuanceDomainSortEnum2;
|
|
4602
|
+
})(IssuanceDomainSortEnum || {});
|
|
4603
|
+
var IssuanceFilteringField = /* @__PURE__ */ ((IssuanceFilteringField2) => {
|
|
4604
|
+
IssuanceFilteringField2["Name"] = "name";
|
|
4605
|
+
IssuanceFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
4606
|
+
IssuanceFilteringField2["State"] = "state";
|
|
4607
|
+
IssuanceFilteringField2["Uuid"] = "uuid";
|
|
4608
|
+
return IssuanceFilteringField2;
|
|
4609
|
+
})(IssuanceFilteringField || {});
|
|
4610
|
+
var IssuanceLabelFilteringField = /* @__PURE__ */ ((IssuanceLabelFilteringField2) => {
|
|
4611
|
+
IssuanceLabelFilteringField2["IssuanceUuid"] = "issuanceUuid";
|
|
4612
|
+
IssuanceLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
4613
|
+
IssuanceLabelFilteringField2["Uuid"] = "uuid";
|
|
4614
|
+
return IssuanceLabelFilteringField2;
|
|
4615
|
+
})(IssuanceLabelFilteringField || {});
|
|
4616
|
+
var IssuanceLabelSortEnum = /* @__PURE__ */ ((IssuanceLabelSortEnum2) => {
|
|
4617
|
+
IssuanceLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
4618
|
+
IssuanceLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4619
|
+
return IssuanceLabelSortEnum2;
|
|
4620
|
+
})(IssuanceLabelSortEnum || {});
|
|
4621
|
+
var IssuanceMappingFilteringField = /* @__PURE__ */ ((IssuanceMappingFilteringField2) => {
|
|
4622
|
+
IssuanceMappingFilteringField2["IssuanceUuid"] = "issuanceUuid";
|
|
4623
|
+
IssuanceMappingFilteringField2["MappingIssuanceUuid"] = "mappingIssuanceUuid";
|
|
4624
|
+
IssuanceMappingFilteringField2["Uuid"] = "uuid";
|
|
4625
|
+
return IssuanceMappingFilteringField2;
|
|
4626
|
+
})(IssuanceMappingFilteringField || {});
|
|
4627
|
+
var IssuanceMappingSortEnum = /* @__PURE__ */ ((IssuanceMappingSortEnum2) => {
|
|
4628
|
+
IssuanceMappingSortEnum2["CreatedAt"] = "createdAt";
|
|
4629
|
+
IssuanceMappingSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4630
|
+
return IssuanceMappingSortEnum2;
|
|
4631
|
+
})(IssuanceMappingSortEnum || {});
|
|
4632
|
+
var IssuanceProviderFilteringField = /* @__PURE__ */ ((IssuanceProviderFilteringField2) => {
|
|
4633
|
+
IssuanceProviderFilteringField2["IssuanceUuid"] = "issuanceUuid";
|
|
4634
|
+
IssuanceProviderFilteringField2["ProviderAppUuid"] = "providerAppUuid";
|
|
4635
|
+
IssuanceProviderFilteringField2["Uuid"] = "uuid";
|
|
4636
|
+
return IssuanceProviderFilteringField2;
|
|
4637
|
+
})(IssuanceProviderFilteringField || {});
|
|
4638
|
+
var IssuanceProviderSortEnum = /* @__PURE__ */ ((IssuanceProviderSortEnum2) => {
|
|
4639
|
+
IssuanceProviderSortEnum2["CreatedAt"] = "createdAt";
|
|
4640
|
+
IssuanceProviderSortEnum2["ProviderAppUuid"] = "providerAppUuid";
|
|
4641
|
+
IssuanceProviderSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4642
|
+
return IssuanceProviderSortEnum2;
|
|
4643
|
+
})(IssuanceProviderSortEnum || {});
|
|
4644
|
+
var IssuanceSortEnum = /* @__PURE__ */ ((IssuanceSortEnum2) => {
|
|
4645
|
+
IssuanceSortEnum2["CreatedAt"] = "createdAt";
|
|
4646
|
+
IssuanceSortEnum2["Name"] = "name";
|
|
4647
|
+
IssuanceSortEnum2["State"] = "state";
|
|
4648
|
+
IssuanceSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4649
|
+
return IssuanceSortEnum2;
|
|
4650
|
+
})(IssuanceSortEnum || {});
|
|
4651
|
+
var IssuanceState = /* @__PURE__ */ ((IssuanceState2) => {
|
|
4652
|
+
IssuanceState2["Active"] = "ACTIVE";
|
|
4653
|
+
IssuanceState2["Inactive"] = "INACTIVE";
|
|
4654
|
+
return IssuanceState2;
|
|
4655
|
+
})(IssuanceState || {});
|
|
4784
4656
|
var IssuerCategoryType = /* @__PURE__ */ ((IssuerCategoryType2) => {
|
|
4785
4657
|
IssuerCategoryType2["Development"] = "DEVELOPMENT";
|
|
4786
4658
|
IssuerCategoryType2["Production"] = "PRODUCTION";
|
|
@@ -4799,6 +4671,17 @@ var IssuerFilteringField = /* @__PURE__ */ ((IssuerFilteringField2) => {
|
|
|
4799
4671
|
IssuerFilteringField2["Uuid"] = "uuid";
|
|
4800
4672
|
return IssuerFilteringField2;
|
|
4801
4673
|
})(IssuerFilteringField || {});
|
|
4674
|
+
var IssuerLabelFilteringField = /* @__PURE__ */ ((IssuerLabelFilteringField2) => {
|
|
4675
|
+
IssuerLabelFilteringField2["IssuerUuid"] = "issuerUuid";
|
|
4676
|
+
IssuerLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
4677
|
+
IssuerLabelFilteringField2["Uuid"] = "uuid";
|
|
4678
|
+
return IssuerLabelFilteringField2;
|
|
4679
|
+
})(IssuerLabelFilteringField || {});
|
|
4680
|
+
var IssuerLabelSortEnum = /* @__PURE__ */ ((IssuerLabelSortEnum2) => {
|
|
4681
|
+
IssuerLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
4682
|
+
IssuerLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
4683
|
+
return IssuerLabelSortEnum2;
|
|
4684
|
+
})(IssuerLabelSortEnum || {});
|
|
4802
4685
|
var IssuerLocaleFilteringField = /* @__PURE__ */ ((IssuerLocaleFilteringField2) => {
|
|
4803
4686
|
IssuerLocaleFilteringField2["IssuerUuid"] = "issuerUuid";
|
|
4804
4687
|
IssuerLocaleFilteringField2["Locale"] = "locale";
|
|
@@ -4889,7 +4772,7 @@ var LabelFilteringField = /* @__PURE__ */ ((LabelFilteringField2) => {
|
|
|
4889
4772
|
return LabelFilteringField2;
|
|
4890
4773
|
})(LabelFilteringField || {});
|
|
4891
4774
|
var LabelScope = /* @__PURE__ */ ((LabelScope2) => {
|
|
4892
|
-
LabelScope2["
|
|
4775
|
+
LabelScope2["Catalog"] = "CATALOG";
|
|
4893
4776
|
LabelScope2["Platform"] = "PLATFORM";
|
|
4894
4777
|
return LabelScope2;
|
|
4895
4778
|
})(LabelScope || {});
|
|
@@ -5192,6 +5075,16 @@ var OrganizationAppMetaKiwaSortEnum = /* @__PURE__ */ ((OrganizationAppMetaKiwaS
|
|
|
5192
5075
|
OrganizationAppMetaKiwaSortEnum2["UpdatedAt"] = "updatedAt";
|
|
5193
5076
|
return OrganizationAppMetaKiwaSortEnum2;
|
|
5194
5077
|
})(OrganizationAppMetaKiwaSortEnum || {});
|
|
5078
|
+
var OrganizationAppMetaOid4vcFilteringField = /* @__PURE__ */ ((OrganizationAppMetaOid4vcFilteringField2) => {
|
|
5079
|
+
OrganizationAppMetaOid4vcFilteringField2["OrganizationAppMetaUuid"] = "organizationAppMetaUuid";
|
|
5080
|
+
OrganizationAppMetaOid4vcFilteringField2["Uuid"] = "uuid";
|
|
5081
|
+
return OrganizationAppMetaOid4vcFilteringField2;
|
|
5082
|
+
})(OrganizationAppMetaOid4vcFilteringField || {});
|
|
5083
|
+
var OrganizationAppMetaOid4vcSortEnum = /* @__PURE__ */ ((OrganizationAppMetaOid4vcSortEnum2) => {
|
|
5084
|
+
OrganizationAppMetaOid4vcSortEnum2["CreatedAt"] = "createdAt";
|
|
5085
|
+
OrganizationAppMetaOid4vcSortEnum2["UpdatedAt"] = "updatedAt";
|
|
5086
|
+
return OrganizationAppMetaOid4vcSortEnum2;
|
|
5087
|
+
})(OrganizationAppMetaOid4vcSortEnum || {});
|
|
5195
5088
|
var OrganizationAppMetaSortEnum = /* @__PURE__ */ ((OrganizationAppMetaSortEnum2) => {
|
|
5196
5089
|
OrganizationAppMetaSortEnum2["CreatedAt"] = "createdAt";
|
|
5197
5090
|
return OrganizationAppMetaSortEnum2;
|
|
@@ -5200,6 +5093,7 @@ var OrganizationAppMetaType = /* @__PURE__ */ ((OrganizationAppMetaType2) => {
|
|
|
5200
5093
|
OrganizationAppMetaType2["Datakeeper"] = "DATAKEEPER";
|
|
5201
5094
|
OrganizationAppMetaType2["Kiwa"] = "KIWA";
|
|
5202
5095
|
OrganizationAppMetaType2["None"] = "NONE";
|
|
5096
|
+
OrganizationAppMetaType2["Oid4Vc"] = "OID4VC";
|
|
5203
5097
|
OrganizationAppMetaType2["Yoti"] = "YOTI";
|
|
5204
5098
|
return OrganizationAppMetaType2;
|
|
5205
5099
|
})(OrganizationAppMetaType || {});
|
|
@@ -5695,6 +5589,7 @@ var PricingLayer = /* @__PURE__ */ ((PricingLayer2) => {
|
|
|
5695
5589
|
var PricingRuleAction = /* @__PURE__ */ ((PricingRuleAction2) => {
|
|
5696
5590
|
PricingRuleAction2["Activate"] = "ACTIVATE";
|
|
5697
5591
|
PricingRuleAction2["Deactivate"] = "DEACTIVATE";
|
|
5592
|
+
PricingRuleAction2["PendingDeprecate"] = "PENDING_DEPRECATE";
|
|
5698
5593
|
return PricingRuleAction2;
|
|
5699
5594
|
})(PricingRuleAction || {});
|
|
5700
5595
|
var PricingRuleConstraintFilteringField = /* @__PURE__ */ ((PricingRuleConstraintFilteringField2) => {
|
|
@@ -5730,7 +5625,9 @@ var PricingRuleSortEnum = /* @__PURE__ */ ((PricingRuleSortEnum2) => {
|
|
|
5730
5625
|
})(PricingRuleSortEnum || {});
|
|
5731
5626
|
var PricingRuleState = /* @__PURE__ */ ((PricingRuleState2) => {
|
|
5732
5627
|
PricingRuleState2["Active"] = "ACTIVE";
|
|
5628
|
+
PricingRuleState2["Draft"] = "DRAFT";
|
|
5733
5629
|
PricingRuleState2["Inactive"] = "INACTIVE";
|
|
5630
|
+
PricingRuleState2["PendingDeprecation"] = "PENDING_DEPRECATION";
|
|
5734
5631
|
return PricingRuleState2;
|
|
5735
5632
|
})(PricingRuleState || {});
|
|
5736
5633
|
var PricingRuleTargetFilteringField = /* @__PURE__ */ ((PricingRuleTargetFilteringField2) => {
|
|
@@ -5821,6 +5718,17 @@ var ProviderFilteringField = /* @__PURE__ */ ((ProviderFilteringField2) => {
|
|
|
5821
5718
|
ProviderFilteringField2["Uuid"] = "uuid";
|
|
5822
5719
|
return ProviderFilteringField2;
|
|
5823
5720
|
})(ProviderFilteringField || {});
|
|
5721
|
+
var ProviderLabelFilteringField = /* @__PURE__ */ ((ProviderLabelFilteringField2) => {
|
|
5722
|
+
ProviderLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
5723
|
+
ProviderLabelFilteringField2["ProviderUuid"] = "providerUuid";
|
|
5724
|
+
ProviderLabelFilteringField2["Uuid"] = "uuid";
|
|
5725
|
+
return ProviderLabelFilteringField2;
|
|
5726
|
+
})(ProviderLabelFilteringField || {});
|
|
5727
|
+
var ProviderLabelSortEnum = /* @__PURE__ */ ((ProviderLabelSortEnum2) => {
|
|
5728
|
+
ProviderLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
5729
|
+
ProviderLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
5730
|
+
return ProviderLabelSortEnum2;
|
|
5731
|
+
})(ProviderLabelSortEnum || {});
|
|
5824
5732
|
var ProviderLocaleFilteringField = /* @__PURE__ */ ((ProviderLocaleFilteringField2) => {
|
|
5825
5733
|
ProviderLocaleFilteringField2["Locale"] = "locale";
|
|
5826
5734
|
ProviderLocaleFilteringField2["ProviderUuid"] = "providerUuid";
|
|
@@ -5857,6 +5765,17 @@ var SchemeFilteringField = /* @__PURE__ */ ((SchemeFilteringField2) => {
|
|
|
5857
5765
|
SchemeFilteringField2["Uuid"] = "uuid";
|
|
5858
5766
|
return SchemeFilteringField2;
|
|
5859
5767
|
})(SchemeFilteringField || {});
|
|
5768
|
+
var SchemeLabelFilteringField = /* @__PURE__ */ ((SchemeLabelFilteringField2) => {
|
|
5769
|
+
SchemeLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
5770
|
+
SchemeLabelFilteringField2["SchemeUuid"] = "schemeUuid";
|
|
5771
|
+
SchemeLabelFilteringField2["Uuid"] = "uuid";
|
|
5772
|
+
return SchemeLabelFilteringField2;
|
|
5773
|
+
})(SchemeLabelFilteringField || {});
|
|
5774
|
+
var SchemeLabelSortEnum = /* @__PURE__ */ ((SchemeLabelSortEnum2) => {
|
|
5775
|
+
SchemeLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
5776
|
+
SchemeLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
5777
|
+
return SchemeLabelSortEnum2;
|
|
5778
|
+
})(SchemeLabelSortEnum || {});
|
|
5860
5779
|
var SchemeLocaleFilteringField = /* @__PURE__ */ ((SchemeLocaleFilteringField2) => {
|
|
5861
5780
|
SchemeLocaleFilteringField2["Locale"] = "locale";
|
|
5862
5781
|
SchemeLocaleFilteringField2["SchemeUuid"] = "schemeUuid";
|
|
@@ -5931,6 +5850,160 @@ var ScopeSortEnum = /* @__PURE__ */ ((ScopeSortEnum2) => {
|
|
|
5931
5850
|
ScopeSortEnum2["State"] = "state";
|
|
5932
5851
|
return ScopeSortEnum2;
|
|
5933
5852
|
})(ScopeSortEnum || {});
|
|
5853
|
+
var SignatureAction = /* @__PURE__ */ ((SignatureAction2) => {
|
|
5854
|
+
SignatureAction2["Activate"] = "ACTIVATE";
|
|
5855
|
+
SignatureAction2["Deactivate"] = "DEACTIVATE";
|
|
5856
|
+
return SignatureAction2;
|
|
5857
|
+
})(SignatureAction || {});
|
|
5858
|
+
var SignatureActivityFilteringField = /* @__PURE__ */ ((SignatureActivityFilteringField2) => {
|
|
5859
|
+
SignatureActivityFilteringField2["CreatedAt"] = "createdAt";
|
|
5860
|
+
SignatureActivityFilteringField2["EventUrn"] = "eventURN";
|
|
5861
|
+
SignatureActivityFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
5862
|
+
SignatureActivityFilteringField2["RequestUuid"] = "requestUuid";
|
|
5863
|
+
SignatureActivityFilteringField2["SignatureUuid"] = "signatureUuid";
|
|
5864
|
+
return SignatureActivityFilteringField2;
|
|
5865
|
+
})(SignatureActivityFilteringField || {});
|
|
5866
|
+
var SignatureActivitySortEnum = /* @__PURE__ */ ((SignatureActivitySortEnum2) => {
|
|
5867
|
+
SignatureActivitySortEnum2["CreatedAt"] = "createdAt";
|
|
5868
|
+
SignatureActivitySortEnum2["EventUrn"] = "eventUrn";
|
|
5869
|
+
return SignatureActivitySortEnum2;
|
|
5870
|
+
})(SignatureActivitySortEnum || {});
|
|
5871
|
+
var SignatureAttributeFilteringField = /* @__PURE__ */ ((SignatureAttributeFilteringField2) => {
|
|
5872
|
+
SignatureAttributeFilteringField2["AttributeUuid"] = "attributeUuid";
|
|
5873
|
+
SignatureAttributeFilteringField2["SignatureCredentialUuid"] = "signatureCredentialUuid";
|
|
5874
|
+
SignatureAttributeFilteringField2["Uuid"] = "uuid";
|
|
5875
|
+
return SignatureAttributeFilteringField2;
|
|
5876
|
+
})(SignatureAttributeFilteringField || {});
|
|
5877
|
+
var SignatureAttributeSortEnum = /* @__PURE__ */ ((SignatureAttributeSortEnum2) => {
|
|
5878
|
+
SignatureAttributeSortEnum2["AttributeUuid"] = "attributeUuid";
|
|
5879
|
+
SignatureAttributeSortEnum2["CreatedAt"] = "createdAt";
|
|
5880
|
+
SignatureAttributeSortEnum2["UpdatedAt"] = "updatedAt";
|
|
5881
|
+
return SignatureAttributeSortEnum2;
|
|
5882
|
+
})(SignatureAttributeSortEnum || {});
|
|
5883
|
+
var SignatureBrandFilteringField = /* @__PURE__ */ ((SignatureBrandFilteringField2) => {
|
|
5884
|
+
SignatureBrandFilteringField2["OrganizationBrandUuid"] = "organizationBrandUuid";
|
|
5885
|
+
SignatureBrandFilteringField2["RedirectPath"] = "redirectPath";
|
|
5886
|
+
SignatureBrandFilteringField2["SignatureUuid"] = "signatureUuid";
|
|
5887
|
+
SignatureBrandFilteringField2["Uuid"] = "uuid";
|
|
5888
|
+
return SignatureBrandFilteringField2;
|
|
5889
|
+
})(SignatureBrandFilteringField || {});
|
|
5890
|
+
var SignatureBrandSortEnum = /* @__PURE__ */ ((SignatureBrandSortEnum2) => {
|
|
5891
|
+
SignatureBrandSortEnum2["CreatedAt"] = "createdAt";
|
|
5892
|
+
SignatureBrandSortEnum2["RedirectPath"] = "redirectPath";
|
|
5893
|
+
SignatureBrandSortEnum2["UpdatedAt"] = "updatedAt";
|
|
5894
|
+
return SignatureBrandSortEnum2;
|
|
5895
|
+
})(SignatureBrandSortEnum || {});
|
|
5896
|
+
var SignatureCredentialFilteringField = /* @__PURE__ */ ((SignatureCredentialFilteringField2) => {
|
|
5897
|
+
SignatureCredentialFilteringField2["CredentialUuid"] = "credentialUuid";
|
|
5898
|
+
SignatureCredentialFilteringField2["IssuerUuid"] = "issuerUuid";
|
|
5899
|
+
SignatureCredentialFilteringField2["SchemeUuid"] = "schemeUuid";
|
|
5900
|
+
SignatureCredentialFilteringField2["SignatureGroupUuid"] = "signatureGroupUuid";
|
|
5901
|
+
SignatureCredentialFilteringField2["Uuid"] = "uuid";
|
|
5902
|
+
return SignatureCredentialFilteringField2;
|
|
5903
|
+
})(SignatureCredentialFilteringField || {});
|
|
5904
|
+
var SignatureCredentialSortEnum = /* @__PURE__ */ ((SignatureCredentialSortEnum2) => {
|
|
5905
|
+
SignatureCredentialSortEnum2["CreatedAt"] = "createdAt";
|
|
5906
|
+
SignatureCredentialSortEnum2["CredentialUuid"] = "credentialUuid";
|
|
5907
|
+
SignatureCredentialSortEnum2["IssuerUuid"] = "issuerUuid";
|
|
5908
|
+
SignatureCredentialSortEnum2["SchemeUuid"] = "schemeUuid";
|
|
5909
|
+
SignatureCredentialSortEnum2["UpdatedAt"] = "updatedAt";
|
|
5910
|
+
return SignatureCredentialSortEnum2;
|
|
5911
|
+
})(SignatureCredentialSortEnum || {});
|
|
5912
|
+
var SignatureDomainFilteringField = /* @__PURE__ */ ((SignatureDomainFilteringField2) => {
|
|
5913
|
+
SignatureDomainFilteringField2["OrganizationDomainUuid"] = "organizationDomainUuid";
|
|
5914
|
+
SignatureDomainFilteringField2["RedirectPath"] = "redirectPath";
|
|
5915
|
+
SignatureDomainFilteringField2["SignatureUuid"] = "signatureUuid";
|
|
5916
|
+
SignatureDomainFilteringField2["Uuid"] = "uuid";
|
|
5917
|
+
return SignatureDomainFilteringField2;
|
|
5918
|
+
})(SignatureDomainFilteringField || {});
|
|
5919
|
+
var SignatureDomainSortEnum = /* @__PURE__ */ ((SignatureDomainSortEnum2) => {
|
|
5920
|
+
SignatureDomainSortEnum2["CreatedAt"] = "createdAt";
|
|
5921
|
+
SignatureDomainSortEnum2["RedirectPath"] = "redirectPath";
|
|
5922
|
+
SignatureDomainSortEnum2["UpdatedAt"] = "updatedAt";
|
|
5923
|
+
return SignatureDomainSortEnum2;
|
|
5924
|
+
})(SignatureDomainSortEnum || {});
|
|
5925
|
+
var SignatureFilteringField = /* @__PURE__ */ ((SignatureFilteringField2) => {
|
|
5926
|
+
SignatureFilteringField2["Name"] = "name";
|
|
5927
|
+
SignatureFilteringField2["OrganizationUuid"] = "organizationUuid";
|
|
5928
|
+
SignatureFilteringField2["State"] = "state";
|
|
5929
|
+
SignatureFilteringField2["Uuid"] = "uuid";
|
|
5930
|
+
return SignatureFilteringField2;
|
|
5931
|
+
})(SignatureFilteringField || {});
|
|
5932
|
+
var SignatureGroupFilteringField = /* @__PURE__ */ ((SignatureGroupFilteringField2) => {
|
|
5933
|
+
SignatureGroupFilteringField2["Name"] = "name";
|
|
5934
|
+
SignatureGroupFilteringField2["SignatureProviderUuid"] = "signatureProviderUuid";
|
|
5935
|
+
SignatureGroupFilteringField2["Uuid"] = "uuid";
|
|
5936
|
+
return SignatureGroupFilteringField2;
|
|
5937
|
+
})(SignatureGroupFilteringField || {});
|
|
5938
|
+
var SignatureGroupSortEnum = /* @__PURE__ */ ((SignatureGroupSortEnum2) => {
|
|
5939
|
+
SignatureGroupSortEnum2["CreatedAt"] = "createdAt";
|
|
5940
|
+
SignatureGroupSortEnum2["Name"] = "name";
|
|
5941
|
+
SignatureGroupSortEnum2["UpdatedAt"] = "updatedAt";
|
|
5942
|
+
return SignatureGroupSortEnum2;
|
|
5943
|
+
})(SignatureGroupSortEnum || {});
|
|
5944
|
+
var SignatureLabelFilteringField = /* @__PURE__ */ ((SignatureLabelFilteringField2) => {
|
|
5945
|
+
SignatureLabelFilteringField2["LabelUuid"] = "labelUuid";
|
|
5946
|
+
SignatureLabelFilteringField2["SignatureUuid"] = "signatureUuid";
|
|
5947
|
+
SignatureLabelFilteringField2["Uuid"] = "uuid";
|
|
5948
|
+
return SignatureLabelFilteringField2;
|
|
5949
|
+
})(SignatureLabelFilteringField || {});
|
|
5950
|
+
var SignatureLabelSortEnum = /* @__PURE__ */ ((SignatureLabelSortEnum2) => {
|
|
5951
|
+
SignatureLabelSortEnum2["CreatedAt"] = "createdAt";
|
|
5952
|
+
SignatureLabelSortEnum2["UpdatedAt"] = "updatedAt";
|
|
5953
|
+
return SignatureLabelSortEnum2;
|
|
5954
|
+
})(SignatureLabelSortEnum || {});
|
|
5955
|
+
var SignatureMappingFilteringField = /* @__PURE__ */ ((SignatureMappingFilteringField2) => {
|
|
5956
|
+
SignatureMappingFilteringField2["MappingVerificationUuid"] = "mappingVerificationUuid";
|
|
5957
|
+
SignatureMappingFilteringField2["SignatureUuid"] = "signatureUuid";
|
|
5958
|
+
SignatureMappingFilteringField2["Uuid"] = "uuid";
|
|
5959
|
+
return SignatureMappingFilteringField2;
|
|
5960
|
+
})(SignatureMappingFilteringField || {});
|
|
5961
|
+
var SignatureMappingSortEnum = /* @__PURE__ */ ((SignatureMappingSortEnum2) => {
|
|
5962
|
+
SignatureMappingSortEnum2["CreatedAt"] = "createdAt";
|
|
5963
|
+
SignatureMappingSortEnum2["UpdatedAt"] = "updatedAt";
|
|
5964
|
+
return SignatureMappingSortEnum2;
|
|
5965
|
+
})(SignatureMappingSortEnum || {});
|
|
5966
|
+
var SignatureProviderConfigurationFilteringField = /* @__PURE__ */ ((SignatureProviderConfigurationFilteringField2) => {
|
|
5967
|
+
SignatureProviderConfigurationFilteringField2["SignatureProviderUuid"] = "signatureProviderUuid";
|
|
5968
|
+
return SignatureProviderConfigurationFilteringField2;
|
|
5969
|
+
})(SignatureProviderConfigurationFilteringField || {});
|
|
5970
|
+
var SignatureProviderConfigurationNlWalletFilteringField = /* @__PURE__ */ ((SignatureProviderConfigurationNlWalletFilteringField2) => {
|
|
5971
|
+
SignatureProviderConfigurationNlWalletFilteringField2["Intent"] = "intent";
|
|
5972
|
+
SignatureProviderConfigurationNlWalletFilteringField2["SignatureProviderConfigurationUuid"] = "signatureProviderConfigurationUuid";
|
|
5973
|
+
return SignatureProviderConfigurationNlWalletFilteringField2;
|
|
5974
|
+
})(SignatureProviderConfigurationNlWalletFilteringField || {});
|
|
5975
|
+
var SignatureProviderConfigurationNlWalletSortEnum = /* @__PURE__ */ ((SignatureProviderConfigurationNlWalletSortEnum2) => {
|
|
5976
|
+
SignatureProviderConfigurationNlWalletSortEnum2["CreatedAt"] = "createdAt";
|
|
5977
|
+
return SignatureProviderConfigurationNlWalletSortEnum2;
|
|
5978
|
+
})(SignatureProviderConfigurationNlWalletSortEnum || {});
|
|
5979
|
+
var SignatureProviderConfigurationSortEnum = /* @__PURE__ */ ((SignatureProviderConfigurationSortEnum2) => {
|
|
5980
|
+
SignatureProviderConfigurationSortEnum2["CreatedAt"] = "createdAt";
|
|
5981
|
+
return SignatureProviderConfigurationSortEnum2;
|
|
5982
|
+
})(SignatureProviderConfigurationSortEnum || {});
|
|
5983
|
+
var SignatureProviderFilteringField = /* @__PURE__ */ ((SignatureProviderFilteringField2) => {
|
|
5984
|
+
SignatureProviderFilteringField2["ProviderUuid"] = "providerUuid";
|
|
5985
|
+
SignatureProviderFilteringField2["SignatureUuid"] = "signatureUuid";
|
|
5986
|
+
SignatureProviderFilteringField2["Uuid"] = "uuid";
|
|
5987
|
+
return SignatureProviderFilteringField2;
|
|
5988
|
+
})(SignatureProviderFilteringField || {});
|
|
5989
|
+
var SignatureProviderSortEnum = /* @__PURE__ */ ((SignatureProviderSortEnum2) => {
|
|
5990
|
+
SignatureProviderSortEnum2["CreatedAt"] = "createdAt";
|
|
5991
|
+
SignatureProviderSortEnum2["ProviderUuid"] = "providerUuid";
|
|
5992
|
+
SignatureProviderSortEnum2["UpdatedAt"] = "updatedAt";
|
|
5993
|
+
return SignatureProviderSortEnum2;
|
|
5994
|
+
})(SignatureProviderSortEnum || {});
|
|
5995
|
+
var SignatureSortEnum = /* @__PURE__ */ ((SignatureSortEnum2) => {
|
|
5996
|
+
SignatureSortEnum2["CreatedAt"] = "createdAt";
|
|
5997
|
+
SignatureSortEnum2["Name"] = "name";
|
|
5998
|
+
SignatureSortEnum2["State"] = "state";
|
|
5999
|
+
SignatureSortEnum2["UpdatedAt"] = "updatedAt";
|
|
6000
|
+
return SignatureSortEnum2;
|
|
6001
|
+
})(SignatureSortEnum || {});
|
|
6002
|
+
var SignatureState = /* @__PURE__ */ ((SignatureState2) => {
|
|
6003
|
+
SignatureState2["Active"] = "ACTIVE";
|
|
6004
|
+
SignatureState2["Inactive"] = "INACTIVE";
|
|
6005
|
+
return SignatureState2;
|
|
6006
|
+
})(SignatureState || {});
|
|
5934
6007
|
var State = /* @__PURE__ */ ((State2) => {
|
|
5935
6008
|
State2["Active"] = "ACTIVE";
|
|
5936
6009
|
State2["Deprecated"] = "DEPRECATED";
|
|
@@ -6317,6 +6390,8 @@ exports.AppPrerequisites = AppPrerequisites;
|
|
|
6317
6390
|
exports.AppSortEnum = AppSortEnum;
|
|
6318
6391
|
exports.AttributeCategoryType = AttributeCategoryType;
|
|
6319
6392
|
exports.AttributeFilteringField = AttributeFilteringField;
|
|
6393
|
+
exports.AttributeLabelFilteringField = AttributeLabelFilteringField;
|
|
6394
|
+
exports.AttributeLabelSortEnum = AttributeLabelSortEnum;
|
|
6320
6395
|
exports.AttributeLocaleFilteringField = AttributeLocaleFilteringField;
|
|
6321
6396
|
exports.AttributeLocaleSortEnum = AttributeLocaleSortEnum;
|
|
6322
6397
|
exports.AttributeMetaDatakeeperFilteringField = AttributeMetaDatakeeperFilteringField;
|
|
@@ -6350,6 +6425,10 @@ exports.AttributeRequestLocaleSortEnum = AttributeRequestLocaleSortEnum;
|
|
|
6350
6425
|
exports.AttributeRequestMetaDatakeeperFilteringField = AttributeRequestMetaDatakeeperFilteringField;
|
|
6351
6426
|
exports.AttributeRequestMetaDatakeeperSortEnum = AttributeRequestMetaDatakeeperSortEnum;
|
|
6352
6427
|
exports.AttributeRequestMetaFilteringField = AttributeRequestMetaFilteringField;
|
|
6428
|
+
exports.AttributeRequestMetaOid4VcmdocFilteringField = AttributeRequestMetaOid4VcmdocFilteringField;
|
|
6429
|
+
exports.AttributeRequestMetaOid4VcmdocSortEnum = AttributeRequestMetaOid4VcmdocSortEnum;
|
|
6430
|
+
exports.AttributeRequestMetaOid4VcsdjwtFilteringField = AttributeRequestMetaOid4VcsdjwtFilteringField;
|
|
6431
|
+
exports.AttributeRequestMetaOid4VcsdjwtSortEnum = AttributeRequestMetaOid4VcsdjwtSortEnum;
|
|
6353
6432
|
exports.AttributeRequestMetaSortEnum = AttributeRequestMetaSortEnum;
|
|
6354
6433
|
exports.AttributeRequestMetaType = AttributeRequestMetaType;
|
|
6355
6434
|
exports.AttributeRequestMetaYiviFilteringField = AttributeRequestMetaYiviFilteringField;
|
|
@@ -6358,6 +6437,26 @@ exports.AttributeRequestMetaYotiFilteringField = AttributeRequestMetaYotiFilteri
|
|
|
6358
6437
|
exports.AttributeRequestMetaYotiSortEnum = AttributeRequestMetaYotiSortEnum;
|
|
6359
6438
|
exports.AttributeRequestSortEnum = AttributeRequestSortEnum;
|
|
6360
6439
|
exports.AttributeSortEnum = AttributeSortEnum;
|
|
6440
|
+
exports.AuthenticationAction = AuthenticationAction;
|
|
6441
|
+
exports.AuthenticationActivityFilteringField = AuthenticationActivityFilteringField;
|
|
6442
|
+
exports.AuthenticationActivitySortEnum = AuthenticationActivitySortEnum;
|
|
6443
|
+
exports.AuthenticationBrandFilteringField = AuthenticationBrandFilteringField;
|
|
6444
|
+
exports.AuthenticationBrandSortEnum = AuthenticationBrandSortEnum;
|
|
6445
|
+
exports.AuthenticationDomainFilteringField = AuthenticationDomainFilteringField;
|
|
6446
|
+
exports.AuthenticationDomainSortEnum = AuthenticationDomainSortEnum;
|
|
6447
|
+
exports.AuthenticationFilteringField = AuthenticationFilteringField;
|
|
6448
|
+
exports.AuthenticationLabelFilteringField = AuthenticationLabelFilteringField;
|
|
6449
|
+
exports.AuthenticationLabelSortEnum = AuthenticationLabelSortEnum;
|
|
6450
|
+
exports.AuthenticationProviderConfigurationFilteringField = AuthenticationProviderConfigurationFilteringField;
|
|
6451
|
+
exports.AuthenticationProviderConfigurationNlWalletFilteringField = AuthenticationProviderConfigurationNlWalletFilteringField;
|
|
6452
|
+
exports.AuthenticationProviderConfigurationNlWalletSortEnum = AuthenticationProviderConfigurationNlWalletSortEnum;
|
|
6453
|
+
exports.AuthenticationProviderConfigurationSortEnum = AuthenticationProviderConfigurationSortEnum;
|
|
6454
|
+
exports.AuthenticationProviderFilteringField = AuthenticationProviderFilteringField;
|
|
6455
|
+
exports.AuthenticationProviderSortEnum = AuthenticationProviderSortEnum;
|
|
6456
|
+
exports.AuthenticationScopeFilteringField = AuthenticationScopeFilteringField;
|
|
6457
|
+
exports.AuthenticationScopeSortEnum = AuthenticationScopeSortEnum;
|
|
6458
|
+
exports.AuthenticationSortEnum = AuthenticationSortEnum;
|
|
6459
|
+
exports.AuthenticationState = AuthenticationState;
|
|
6361
6460
|
exports.BillingFilteringField = BillingFilteringField;
|
|
6362
6461
|
exports.BillingMethodFilteringField = BillingMethodFilteringField;
|
|
6363
6462
|
exports.BillingMethodSortEnum = BillingMethodSortEnum;
|
|
@@ -6383,10 +6482,13 @@ exports.BillingWalletTransactionMetaWalletFilteringField = BillingWalletTransact
|
|
|
6383
6482
|
exports.BillingWalletTransactionMetaWalletSortEnum = BillingWalletTransactionMetaWalletSortEnum;
|
|
6384
6483
|
exports.BillingWalletTransactionSortEnum = BillingWalletTransactionSortEnum;
|
|
6385
6484
|
exports.BillingWalletTransactionState = BillingWalletTransactionState;
|
|
6386
|
-
exports.
|
|
6387
|
-
exports.
|
|
6485
|
+
exports.CatalogModelType = CatalogModelType;
|
|
6486
|
+
exports.CreateDisclosureProviderByAttributesMode = CreateDisclosureProviderByAttributesMode;
|
|
6487
|
+
exports.CreateSignatureProviderByAttributesMode = CreateSignatureProviderByAttributesMode;
|
|
6388
6488
|
exports.CredentialCategoryType = CredentialCategoryType;
|
|
6389
6489
|
exports.CredentialFilteringField = CredentialFilteringField;
|
|
6490
|
+
exports.CredentialLabelFilteringField = CredentialLabelFilteringField;
|
|
6491
|
+
exports.CredentialLabelSortEnum = CredentialLabelSortEnum;
|
|
6390
6492
|
exports.CredentialLocaleFilteringField = CredentialLocaleFilteringField;
|
|
6391
6493
|
exports.CredentialLocaleSortEnum = CredentialLocaleSortEnum;
|
|
6392
6494
|
exports.CredentialMetaDatakeeperFilteringField = CredentialMetaDatakeeperFilteringField;
|
|
@@ -6421,6 +6523,10 @@ exports.CredentialRequestLocaleSortEnum = CredentialRequestLocaleSortEnum;
|
|
|
6421
6523
|
exports.CredentialRequestMetaDatakeeperFilteringField = CredentialRequestMetaDatakeeperFilteringField;
|
|
6422
6524
|
exports.CredentialRequestMetaDatakeeperSortEnum = CredentialRequestMetaDatakeeperSortEnum;
|
|
6423
6525
|
exports.CredentialRequestMetaFilteringField = CredentialRequestMetaFilteringField;
|
|
6526
|
+
exports.CredentialRequestMetaOid4VcmdocFilteringField = CredentialRequestMetaOid4VcmdocFilteringField;
|
|
6527
|
+
exports.CredentialRequestMetaOid4VcmdocSortEnum = CredentialRequestMetaOid4VcmdocSortEnum;
|
|
6528
|
+
exports.CredentialRequestMetaOid4VcsdjwtFilteringField = CredentialRequestMetaOid4VcsdjwtFilteringField;
|
|
6529
|
+
exports.CredentialRequestMetaOid4VcsdjwtSortEnum = CredentialRequestMetaOid4VcsdjwtSortEnum;
|
|
6424
6530
|
exports.CredentialRequestMetaSortEnum = CredentialRequestMetaSortEnum;
|
|
6425
6531
|
exports.CredentialRequestMetaType = CredentialRequestMetaType;
|
|
6426
6532
|
exports.CredentialRequestMetaYiviFilteringField = CredentialRequestMetaYiviFilteringField;
|
|
@@ -6440,121 +6546,72 @@ exports.CredentialSortEnum = CredentialSortEnum;
|
|
|
6440
6546
|
exports.Currency = Currency;
|
|
6441
6547
|
exports.CurrencyCode = CurrencyCode;
|
|
6442
6548
|
exports.CurrencyUnit = CurrencyUnit;
|
|
6549
|
+
exports.DisclosureAction = DisclosureAction;
|
|
6550
|
+
exports.DisclosureActivityFilteringField = DisclosureActivityFilteringField;
|
|
6551
|
+
exports.DisclosureActivitySortEnum = DisclosureActivitySortEnum;
|
|
6552
|
+
exports.DisclosureAttributeFilteringField = DisclosureAttributeFilteringField;
|
|
6553
|
+
exports.DisclosureAttributeSortEnum = DisclosureAttributeSortEnum;
|
|
6554
|
+
exports.DisclosureBrandFilteringField = DisclosureBrandFilteringField;
|
|
6555
|
+
exports.DisclosureBrandSortEnum = DisclosureBrandSortEnum;
|
|
6556
|
+
exports.DisclosureCredentialFilteringField = DisclosureCredentialFilteringField;
|
|
6557
|
+
exports.DisclosureCredentialSortEnum = DisclosureCredentialSortEnum;
|
|
6558
|
+
exports.DisclosureDomainFilteringField = DisclosureDomainFilteringField;
|
|
6559
|
+
exports.DisclosureDomainSortEnum = DisclosureDomainSortEnum;
|
|
6560
|
+
exports.DisclosureFilteringField = DisclosureFilteringField;
|
|
6561
|
+
exports.DisclosureGroupFilteringField = DisclosureGroupFilteringField;
|
|
6562
|
+
exports.DisclosureGroupSortEnum = DisclosureGroupSortEnum;
|
|
6563
|
+
exports.DisclosureLabelFilteringField = DisclosureLabelFilteringField;
|
|
6564
|
+
exports.DisclosureLabelSortEnum = DisclosureLabelSortEnum;
|
|
6565
|
+
exports.DisclosureMappingFilteringField = DisclosureMappingFilteringField;
|
|
6566
|
+
exports.DisclosureMappingSortEnum = DisclosureMappingSortEnum;
|
|
6567
|
+
exports.DisclosureProviderConfigurationFilteringField = DisclosureProviderConfigurationFilteringField;
|
|
6568
|
+
exports.DisclosureProviderConfigurationNlWalletFilteringField = DisclosureProviderConfigurationNlWalletFilteringField;
|
|
6569
|
+
exports.DisclosureProviderConfigurationNlWalletSortEnum = DisclosureProviderConfigurationNlWalletSortEnum;
|
|
6570
|
+
exports.DisclosureProviderConfigurationSortEnum = DisclosureProviderConfigurationSortEnum;
|
|
6571
|
+
exports.DisclosureProviderFilteringField = DisclosureProviderFilteringField;
|
|
6572
|
+
exports.DisclosureProviderSortEnum = DisclosureProviderSortEnum;
|
|
6573
|
+
exports.DisclosureSortEnum = DisclosureSortEnum;
|
|
6574
|
+
exports.DisclosureState = DisclosureState;
|
|
6443
6575
|
exports.FilteringConnector = FilteringConnector;
|
|
6444
6576
|
exports.FilteringMode = FilteringMode;
|
|
6445
6577
|
exports.FilteringType = FilteringType;
|
|
6446
|
-
exports.FlowAuthenticationAction = FlowAuthenticationAction;
|
|
6447
|
-
exports.FlowAuthenticationBrandFilteringField = FlowAuthenticationBrandFilteringField;
|
|
6448
|
-
exports.FlowAuthenticationBrandSortEnum = FlowAuthenticationBrandSortEnum;
|
|
6449
|
-
exports.FlowAuthenticationDomainFilteringField = FlowAuthenticationDomainFilteringField;
|
|
6450
|
-
exports.FlowAuthenticationDomainSortEnum = FlowAuthenticationDomainSortEnum;
|
|
6451
|
-
exports.FlowAuthenticationFilteringField = FlowAuthenticationFilteringField;
|
|
6452
|
-
exports.FlowAuthenticationLabelFilteringField = FlowAuthenticationLabelFilteringField;
|
|
6453
|
-
exports.FlowAuthenticationLabelSortEnum = FlowAuthenticationLabelSortEnum;
|
|
6454
|
-
exports.FlowAuthenticationProviderConfigurationFilteringField = FlowAuthenticationProviderConfigurationFilteringField;
|
|
6455
|
-
exports.FlowAuthenticationProviderConfigurationNlWalletFilteringField = FlowAuthenticationProviderConfigurationNlWalletFilteringField;
|
|
6456
|
-
exports.FlowAuthenticationProviderConfigurationNlWalletSortEnum = FlowAuthenticationProviderConfigurationNlWalletSortEnum;
|
|
6457
|
-
exports.FlowAuthenticationProviderConfigurationSortEnum = FlowAuthenticationProviderConfigurationSortEnum;
|
|
6458
|
-
exports.FlowAuthenticationProviderFilteringField = FlowAuthenticationProviderFilteringField;
|
|
6459
|
-
exports.FlowAuthenticationProviderSortEnum = FlowAuthenticationProviderSortEnum;
|
|
6460
|
-
exports.FlowAuthenticationScopeFilteringField = FlowAuthenticationScopeFilteringField;
|
|
6461
|
-
exports.FlowAuthenticationScopeSortEnum = FlowAuthenticationScopeSortEnum;
|
|
6462
|
-
exports.FlowAuthenticationSortEnum = FlowAuthenticationSortEnum;
|
|
6463
|
-
exports.FlowAuthenticationState = FlowAuthenticationState;
|
|
6464
|
-
exports.FlowDisclosureAction = FlowDisclosureAction;
|
|
6465
|
-
exports.FlowDisclosureAttributeFilteringField = FlowDisclosureAttributeFilteringField;
|
|
6466
|
-
exports.FlowDisclosureAttributeSortEnum = FlowDisclosureAttributeSortEnum;
|
|
6467
|
-
exports.FlowDisclosureBrandFilteringField = FlowDisclosureBrandFilteringField;
|
|
6468
|
-
exports.FlowDisclosureBrandSortEnum = FlowDisclosureBrandSortEnum;
|
|
6469
|
-
exports.FlowDisclosureCredentialFilteringField = FlowDisclosureCredentialFilteringField;
|
|
6470
|
-
exports.FlowDisclosureCredentialSortEnum = FlowDisclosureCredentialSortEnum;
|
|
6471
|
-
exports.FlowDisclosureDomainFilteringField = FlowDisclosureDomainFilteringField;
|
|
6472
|
-
exports.FlowDisclosureDomainSortEnum = FlowDisclosureDomainSortEnum;
|
|
6473
|
-
exports.FlowDisclosureFilteringField = FlowDisclosureFilteringField;
|
|
6474
|
-
exports.FlowDisclosureGroupFilteringField = FlowDisclosureGroupFilteringField;
|
|
6475
|
-
exports.FlowDisclosureGroupSortEnum = FlowDisclosureGroupSortEnum;
|
|
6476
|
-
exports.FlowDisclosureLabelFilteringField = FlowDisclosureLabelFilteringField;
|
|
6477
|
-
exports.FlowDisclosureLabelSortEnum = FlowDisclosureLabelSortEnum;
|
|
6478
|
-
exports.FlowDisclosureMappingFilteringField = FlowDisclosureMappingFilteringField;
|
|
6479
|
-
exports.FlowDisclosureMappingSortEnum = FlowDisclosureMappingSortEnum;
|
|
6480
|
-
exports.FlowDisclosureProviderConfigurationFilteringField = FlowDisclosureProviderConfigurationFilteringField;
|
|
6481
|
-
exports.FlowDisclosureProviderConfigurationNlWalletFilteringField = FlowDisclosureProviderConfigurationNlWalletFilteringField;
|
|
6482
|
-
exports.FlowDisclosureProviderConfigurationNlWalletSortEnum = FlowDisclosureProviderConfigurationNlWalletSortEnum;
|
|
6483
|
-
exports.FlowDisclosureProviderConfigurationSortEnum = FlowDisclosureProviderConfigurationSortEnum;
|
|
6484
|
-
exports.FlowDisclosureProviderFilteringField = FlowDisclosureProviderFilteringField;
|
|
6485
|
-
exports.FlowDisclosureProviderSortEnum = FlowDisclosureProviderSortEnum;
|
|
6486
|
-
exports.FlowDisclosureSortEnum = FlowDisclosureSortEnum;
|
|
6487
|
-
exports.FlowDisclosureState = FlowDisclosureState;
|
|
6488
|
-
exports.FlowEventFilteringField = FlowEventFilteringField;
|
|
6489
|
-
exports.FlowEventSortEnum = FlowEventSortEnum;
|
|
6490
|
-
exports.FlowIssuanceAction = FlowIssuanceAction;
|
|
6491
|
-
exports.FlowIssuanceAttributeFilteringField = FlowIssuanceAttributeFilteringField;
|
|
6492
|
-
exports.FlowIssuanceAttributeSortEnum = FlowIssuanceAttributeSortEnum;
|
|
6493
|
-
exports.FlowIssuanceBrandFilteringField = FlowIssuanceBrandFilteringField;
|
|
6494
|
-
exports.FlowIssuanceBrandSortEnum = FlowIssuanceBrandSortEnum;
|
|
6495
|
-
exports.FlowIssuanceCredentialFilteringField = FlowIssuanceCredentialFilteringField;
|
|
6496
|
-
exports.FlowIssuanceCredentialMetaDatakeeperFilteringField = FlowIssuanceCredentialMetaDatakeeperFilteringField;
|
|
6497
|
-
exports.FlowIssuanceCredentialMetaDatakeeperSortEnum = FlowIssuanceCredentialMetaDatakeeperSortEnum;
|
|
6498
|
-
exports.FlowIssuanceCredentialMetaFilteringField = FlowIssuanceCredentialMetaFilteringField;
|
|
6499
|
-
exports.FlowIssuanceCredentialMetaSortEnum = FlowIssuanceCredentialMetaSortEnum;
|
|
6500
|
-
exports.FlowIssuanceCredentialMetaType = FlowIssuanceCredentialMetaType;
|
|
6501
|
-
exports.FlowIssuanceCredentialMetaYiviFilteringField = FlowIssuanceCredentialMetaYiviFilteringField;
|
|
6502
|
-
exports.FlowIssuanceCredentialMetaYiviSortEnum = FlowIssuanceCredentialMetaYiviSortEnum;
|
|
6503
|
-
exports.FlowIssuanceCredentialSortEnum = FlowIssuanceCredentialSortEnum;
|
|
6504
|
-
exports.FlowIssuanceDomainFilteringField = FlowIssuanceDomainFilteringField;
|
|
6505
|
-
exports.FlowIssuanceDomainSortEnum = FlowIssuanceDomainSortEnum;
|
|
6506
|
-
exports.FlowIssuanceFilteringField = FlowIssuanceFilteringField;
|
|
6507
|
-
exports.FlowIssuanceLabelFilteringField = FlowIssuanceLabelFilteringField;
|
|
6508
|
-
exports.FlowIssuanceLabelSortEnum = FlowIssuanceLabelSortEnum;
|
|
6509
|
-
exports.FlowIssuanceMappingFilteringField = FlowIssuanceMappingFilteringField;
|
|
6510
|
-
exports.FlowIssuanceMappingSortEnum = FlowIssuanceMappingSortEnum;
|
|
6511
|
-
exports.FlowIssuanceProviderFilteringField = FlowIssuanceProviderFilteringField;
|
|
6512
|
-
exports.FlowIssuanceProviderSortEnum = FlowIssuanceProviderSortEnum;
|
|
6513
|
-
exports.FlowIssuanceSortEnum = FlowIssuanceSortEnum;
|
|
6514
|
-
exports.FlowIssuanceState = FlowIssuanceState;
|
|
6515
|
-
exports.FlowSignatureAction = FlowSignatureAction;
|
|
6516
|
-
exports.FlowSignatureAttributeFilteringField = FlowSignatureAttributeFilteringField;
|
|
6517
|
-
exports.FlowSignatureAttributeSortEnum = FlowSignatureAttributeSortEnum;
|
|
6518
|
-
exports.FlowSignatureBrandFilteringField = FlowSignatureBrandFilteringField;
|
|
6519
|
-
exports.FlowSignatureBrandSortEnum = FlowSignatureBrandSortEnum;
|
|
6520
|
-
exports.FlowSignatureCredentialFilteringField = FlowSignatureCredentialFilteringField;
|
|
6521
|
-
exports.FlowSignatureCredentialSortEnum = FlowSignatureCredentialSortEnum;
|
|
6522
|
-
exports.FlowSignatureDomainFilteringField = FlowSignatureDomainFilteringField;
|
|
6523
|
-
exports.FlowSignatureDomainSortEnum = FlowSignatureDomainSortEnum;
|
|
6524
|
-
exports.FlowSignatureFilteringField = FlowSignatureFilteringField;
|
|
6525
|
-
exports.FlowSignatureGroupFilteringField = FlowSignatureGroupFilteringField;
|
|
6526
|
-
exports.FlowSignatureGroupSortEnum = FlowSignatureGroupSortEnum;
|
|
6527
|
-
exports.FlowSignatureLabelFilteringField = FlowSignatureLabelFilteringField;
|
|
6528
|
-
exports.FlowSignatureLabelSortEnum = FlowSignatureLabelSortEnum;
|
|
6529
|
-
exports.FlowSignatureMappingFilteringField = FlowSignatureMappingFilteringField;
|
|
6530
|
-
exports.FlowSignatureMappingSortEnum = FlowSignatureMappingSortEnum;
|
|
6531
|
-
exports.FlowSignatureProviderConfigurationFilteringField = FlowSignatureProviderConfigurationFilteringField;
|
|
6532
|
-
exports.FlowSignatureProviderConfigurationNlWalletFilteringField = FlowSignatureProviderConfigurationNlWalletFilteringField;
|
|
6533
|
-
exports.FlowSignatureProviderConfigurationNlWalletSortEnum = FlowSignatureProviderConfigurationNlWalletSortEnum;
|
|
6534
|
-
exports.FlowSignatureProviderConfigurationSortEnum = FlowSignatureProviderConfigurationSortEnum;
|
|
6535
|
-
exports.FlowSignatureProviderFilteringField = FlowSignatureProviderFilteringField;
|
|
6536
|
-
exports.FlowSignatureProviderSortEnum = FlowSignatureProviderSortEnum;
|
|
6537
|
-
exports.FlowSignatureSortEnum = FlowSignatureSortEnum;
|
|
6538
|
-
exports.FlowSignatureState = FlowSignatureState;
|
|
6539
6578
|
exports.FlowType = FlowType;
|
|
6540
|
-
exports.IdentityAttributeLabelFilteringField = IdentityAttributeLabelFilteringField;
|
|
6541
|
-
exports.IdentityAttributeLabelSortEnum = IdentityAttributeLabelSortEnum;
|
|
6542
|
-
exports.IdentityCredentialLabelFilteringField = IdentityCredentialLabelFilteringField;
|
|
6543
|
-
exports.IdentityCredentialLabelSortEnum = IdentityCredentialLabelSortEnum;
|
|
6544
|
-
exports.IdentityIssuerLabelFilteringField = IdentityIssuerLabelFilteringField;
|
|
6545
|
-
exports.IdentityIssuerLabelSortEnum = IdentityIssuerLabelSortEnum;
|
|
6546
6579
|
exports.IdentityModel = IdentityModel;
|
|
6547
|
-
exports.IdentityModelType = IdentityModelType;
|
|
6548
|
-
exports.IdentityProviderLabelFilteringField = IdentityProviderLabelFilteringField;
|
|
6549
|
-
exports.IdentityProviderLabelSortEnum = IdentityProviderLabelSortEnum;
|
|
6550
|
-
exports.IdentitySchemeLabelFilteringField = IdentitySchemeLabelFilteringField;
|
|
6551
|
-
exports.IdentitySchemeLabelSortEnum = IdentitySchemeLabelSortEnum;
|
|
6552
6580
|
exports.Interval = Interval;
|
|
6553
6581
|
exports.InvalidArgumentError = InvalidArgumentError;
|
|
6554
6582
|
exports.InvalidAssertionError = InvalidAssertionError;
|
|
6555
6583
|
exports.InvalidResponseError = InvalidResponseError;
|
|
6584
|
+
exports.IssuanceAction = IssuanceAction;
|
|
6585
|
+
exports.IssuanceActivityFilteringField = IssuanceActivityFilteringField;
|
|
6586
|
+
exports.IssuanceActivitySortEnum = IssuanceActivitySortEnum;
|
|
6587
|
+
exports.IssuanceAttributeFilteringField = IssuanceAttributeFilteringField;
|
|
6588
|
+
exports.IssuanceAttributeSortEnum = IssuanceAttributeSortEnum;
|
|
6589
|
+
exports.IssuanceBrandFilteringField = IssuanceBrandFilteringField;
|
|
6590
|
+
exports.IssuanceBrandSortEnum = IssuanceBrandSortEnum;
|
|
6591
|
+
exports.IssuanceCredentialFilteringField = IssuanceCredentialFilteringField;
|
|
6592
|
+
exports.IssuanceCredentialMetaDatakeeperFilteringField = IssuanceCredentialMetaDatakeeperFilteringField;
|
|
6593
|
+
exports.IssuanceCredentialMetaDatakeeperSortEnum = IssuanceCredentialMetaDatakeeperSortEnum;
|
|
6594
|
+
exports.IssuanceCredentialMetaFilteringField = IssuanceCredentialMetaFilteringField;
|
|
6595
|
+
exports.IssuanceCredentialMetaSortEnum = IssuanceCredentialMetaSortEnum;
|
|
6596
|
+
exports.IssuanceCredentialMetaType = IssuanceCredentialMetaType;
|
|
6597
|
+
exports.IssuanceCredentialMetaYiviFilteringField = IssuanceCredentialMetaYiviFilteringField;
|
|
6598
|
+
exports.IssuanceCredentialMetaYiviSortEnum = IssuanceCredentialMetaYiviSortEnum;
|
|
6599
|
+
exports.IssuanceCredentialSortEnum = IssuanceCredentialSortEnum;
|
|
6600
|
+
exports.IssuanceDomainFilteringField = IssuanceDomainFilteringField;
|
|
6601
|
+
exports.IssuanceDomainSortEnum = IssuanceDomainSortEnum;
|
|
6602
|
+
exports.IssuanceFilteringField = IssuanceFilteringField;
|
|
6603
|
+
exports.IssuanceLabelFilteringField = IssuanceLabelFilteringField;
|
|
6604
|
+
exports.IssuanceLabelSortEnum = IssuanceLabelSortEnum;
|
|
6605
|
+
exports.IssuanceMappingFilteringField = IssuanceMappingFilteringField;
|
|
6606
|
+
exports.IssuanceMappingSortEnum = IssuanceMappingSortEnum;
|
|
6607
|
+
exports.IssuanceProviderFilteringField = IssuanceProviderFilteringField;
|
|
6608
|
+
exports.IssuanceProviderSortEnum = IssuanceProviderSortEnum;
|
|
6609
|
+
exports.IssuanceSortEnum = IssuanceSortEnum;
|
|
6610
|
+
exports.IssuanceState = IssuanceState;
|
|
6556
6611
|
exports.IssuerCategoryType = IssuerCategoryType;
|
|
6557
6612
|
exports.IssuerFilteringField = IssuerFilteringField;
|
|
6613
|
+
exports.IssuerLabelFilteringField = IssuerLabelFilteringField;
|
|
6614
|
+
exports.IssuerLabelSortEnum = IssuerLabelSortEnum;
|
|
6558
6615
|
exports.IssuerLocaleFilteringField = IssuerLocaleFilteringField;
|
|
6559
6616
|
exports.IssuerLocaleSortEnum = IssuerLocaleSortEnum;
|
|
6560
6617
|
exports.IssuerMetaDatakeeperFilteringField = IssuerMetaDatakeeperFilteringField;
|
|
@@ -6622,6 +6679,8 @@ exports.OrganizationAppMetaDatakeeperSortEnum = OrganizationAppMetaDatakeeperSor
|
|
|
6622
6679
|
exports.OrganizationAppMetaFilteringField = OrganizationAppMetaFilteringField;
|
|
6623
6680
|
exports.OrganizationAppMetaKiwaFilteringField = OrganizationAppMetaKiwaFilteringField;
|
|
6624
6681
|
exports.OrganizationAppMetaKiwaSortEnum = OrganizationAppMetaKiwaSortEnum;
|
|
6682
|
+
exports.OrganizationAppMetaOid4vcFilteringField = OrganizationAppMetaOid4vcFilteringField;
|
|
6683
|
+
exports.OrganizationAppMetaOid4vcSortEnum = OrganizationAppMetaOid4vcSortEnum;
|
|
6625
6684
|
exports.OrganizationAppMetaSortEnum = OrganizationAppMetaSortEnum;
|
|
6626
6685
|
exports.OrganizationAppMetaType = OrganizationAppMetaType;
|
|
6627
6686
|
exports.OrganizationAppMetaYotiFilteringField = OrganizationAppMetaYotiFilteringField;
|
|
@@ -6717,12 +6776,16 @@ exports.ProviderAppMetaTypeOid4VcClientIdentifierPrefix = ProviderAppMetaTypeOid
|
|
|
6717
6776
|
exports.ProviderAppSortEnum = ProviderAppSortEnum;
|
|
6718
6777
|
exports.ProviderCategoryType = ProviderCategoryType;
|
|
6719
6778
|
exports.ProviderFilteringField = ProviderFilteringField;
|
|
6779
|
+
exports.ProviderLabelFilteringField = ProviderLabelFilteringField;
|
|
6780
|
+
exports.ProviderLabelSortEnum = ProviderLabelSortEnum;
|
|
6720
6781
|
exports.ProviderLocaleFilteringField = ProviderLocaleFilteringField;
|
|
6721
6782
|
exports.ProviderLocaleSortEnum = ProviderLocaleSortEnum;
|
|
6722
6783
|
exports.ProviderSortEnum = ProviderSortEnum;
|
|
6723
6784
|
exports.ProviderType = ProviderType;
|
|
6724
6785
|
exports.SchemeCategoryType = SchemeCategoryType;
|
|
6725
6786
|
exports.SchemeFilteringField = SchemeFilteringField;
|
|
6787
|
+
exports.SchemeLabelFilteringField = SchemeLabelFilteringField;
|
|
6788
|
+
exports.SchemeLabelSortEnum = SchemeLabelSortEnum;
|
|
6726
6789
|
exports.SchemeLocaleFilteringField = SchemeLocaleFilteringField;
|
|
6727
6790
|
exports.SchemeLocaleSortEnum = SchemeLocaleSortEnum;
|
|
6728
6791
|
exports.SchemeSortEnum = SchemeSortEnum;
|
|
@@ -6736,6 +6799,32 @@ exports.ScopeLocaleSortEnum = ScopeLocaleSortEnum;
|
|
|
6736
6799
|
exports.ScopeResourceFilteringField = ScopeResourceFilteringField;
|
|
6737
6800
|
exports.ScopeResourceSortEnum = ScopeResourceSortEnum;
|
|
6738
6801
|
exports.ScopeSortEnum = ScopeSortEnum;
|
|
6802
|
+
exports.SignatureAction = SignatureAction;
|
|
6803
|
+
exports.SignatureActivityFilteringField = SignatureActivityFilteringField;
|
|
6804
|
+
exports.SignatureActivitySortEnum = SignatureActivitySortEnum;
|
|
6805
|
+
exports.SignatureAttributeFilteringField = SignatureAttributeFilteringField;
|
|
6806
|
+
exports.SignatureAttributeSortEnum = SignatureAttributeSortEnum;
|
|
6807
|
+
exports.SignatureBrandFilteringField = SignatureBrandFilteringField;
|
|
6808
|
+
exports.SignatureBrandSortEnum = SignatureBrandSortEnum;
|
|
6809
|
+
exports.SignatureCredentialFilteringField = SignatureCredentialFilteringField;
|
|
6810
|
+
exports.SignatureCredentialSortEnum = SignatureCredentialSortEnum;
|
|
6811
|
+
exports.SignatureDomainFilteringField = SignatureDomainFilteringField;
|
|
6812
|
+
exports.SignatureDomainSortEnum = SignatureDomainSortEnum;
|
|
6813
|
+
exports.SignatureFilteringField = SignatureFilteringField;
|
|
6814
|
+
exports.SignatureGroupFilteringField = SignatureGroupFilteringField;
|
|
6815
|
+
exports.SignatureGroupSortEnum = SignatureGroupSortEnum;
|
|
6816
|
+
exports.SignatureLabelFilteringField = SignatureLabelFilteringField;
|
|
6817
|
+
exports.SignatureLabelSortEnum = SignatureLabelSortEnum;
|
|
6818
|
+
exports.SignatureMappingFilteringField = SignatureMappingFilteringField;
|
|
6819
|
+
exports.SignatureMappingSortEnum = SignatureMappingSortEnum;
|
|
6820
|
+
exports.SignatureProviderConfigurationFilteringField = SignatureProviderConfigurationFilteringField;
|
|
6821
|
+
exports.SignatureProviderConfigurationNlWalletFilteringField = SignatureProviderConfigurationNlWalletFilteringField;
|
|
6822
|
+
exports.SignatureProviderConfigurationNlWalletSortEnum = SignatureProviderConfigurationNlWalletSortEnum;
|
|
6823
|
+
exports.SignatureProviderConfigurationSortEnum = SignatureProviderConfigurationSortEnum;
|
|
6824
|
+
exports.SignatureProviderFilteringField = SignatureProviderFilteringField;
|
|
6825
|
+
exports.SignatureProviderSortEnum = SignatureProviderSortEnum;
|
|
6826
|
+
exports.SignatureSortEnum = SignatureSortEnum;
|
|
6827
|
+
exports.SignatureState = SignatureState;
|
|
6739
6828
|
exports.State = State;
|
|
6740
6829
|
exports.StudioPlanAction = StudioPlanAction;
|
|
6741
6830
|
exports.StudioPlanControlFilteringField = StudioPlanControlFilteringField;
|