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