@cheqd/studio 3.3.0 → 3.4.0-develop.2
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/app.d.ts.map +1 -1
- package/dist/app.js +7 -0
- package/dist/app.js.map +1 -1
- package/dist/controllers/api/accreditation.d.ts +227 -0
- package/dist/controllers/api/accreditation.d.ts.map +1 -0
- package/dist/controllers/api/accreditation.js +667 -0
- package/dist/controllers/api/accreditation.js.map +1 -0
- package/dist/controllers/validator/index.d.ts +1 -1
- package/dist/controllers/validator/index.d.ts.map +1 -1
- package/dist/controllers/validator/index.js +1 -1
- package/dist/controllers/validator/index.js.map +1 -1
- package/dist/helpers/helpers.d.ts +3 -0
- package/dist/helpers/helpers.d.ts.map +1 -1
- package/dist/helpers/helpers.js +17 -0
- package/dist/helpers/helpers.js.map +1 -1
- package/dist/middleware/auth/routes/api/accreditation-auth.d.ts +5 -0
- package/dist/middleware/auth/routes/api/accreditation-auth.d.ts.map +1 -0
- package/dist/middleware/auth/routes/api/accreditation-auth.js +21 -0
- package/dist/middleware/auth/routes/api/accreditation-auth.js.map +1 -0
- package/dist/middleware/authentication.d.ts.map +1 -1
- package/dist/middleware/authentication.js +2 -0
- package/dist/middleware/authentication.js.map +1 -1
- package/dist/services/api/accreditation.d.ts +11 -0
- package/dist/services/api/accreditation.d.ts.map +1 -0
- package/dist/services/api/accreditation.js +116 -0
- package/dist/services/api/accreditation.js.map +1 -0
- package/dist/services/api/credentials.d.ts +1 -1
- package/dist/services/api/credentials.d.ts.map +1 -1
- package/dist/services/api/credentials.js +10 -2
- package/dist/services/api/credentials.js.map +1 -1
- package/dist/services/connectors/resource.d.ts +22 -0
- package/dist/services/connectors/resource.d.ts.map +1 -0
- package/dist/services/connectors/resource.js +38 -0
- package/dist/services/connectors/resource.js.map +1 -0
- package/dist/services/w3c-credential.d.ts +1 -0
- package/dist/services/w3c-credential.d.ts.map +1 -1
- package/dist/services/w3c-credential.js +2 -0
- package/dist/services/w3c-credential.js.map +1 -1
- package/dist/static/swagger-api.json +616 -0
- package/dist/types/accreditation.d.ts +84 -0
- package/dist/types/accreditation.d.ts.map +1 -0
- package/dist/types/accreditation.js +23 -0
- package/dist/types/accreditation.js.map +1 -0
- package/dist/types/constants.d.ts.map +1 -1
- package/dist/types/constants.js +1 -1
- package/dist/types/constants.js.map +1 -1
- package/dist/types/credential.d.ts +10 -4
- package/dist/types/credential.d.ts.map +1 -1
- package/dist/types/credential.js +5 -1
- package/dist/types/credential.js.map +1 -1
- package/dist/types/swagger-api-types.d.ts +233 -0
- package/dist/types/swagger-api-types.d.ts.map +1 -1
- package/dist/types/swagger-api-types.js +233 -0
- package/dist/types/swagger-api-types.js.map +1 -1
- package/package.json +21 -21
|
@@ -131,6 +131,11 @@
|
|
|
131
131
|
* documentPresence: Physical,
|
|
132
132
|
* licenseNumber: 123AB4567
|
|
133
133
|
* }
|
|
134
|
+
* connector:
|
|
135
|
+
* type: string
|
|
136
|
+
* enum:
|
|
137
|
+
* - verida
|
|
138
|
+
* - resource
|
|
134
139
|
* required:
|
|
135
140
|
* - issuerDid
|
|
136
141
|
* - subjectDid
|
|
@@ -323,6 +328,227 @@
|
|
|
323
328
|
* id: did:cheqd:testnet:7bf81a20-633c-4cc7-bc4a-5a45801005e0#key-1
|
|
324
329
|
* publicKeyBase58: BTJiso1S4iSiReP6wGksSneGfiKHxz9SYcm2KknpqBJt
|
|
325
330
|
* type: Ed25519VerificationKey2018
|
|
331
|
+
* AccreditationIssueRequest:
|
|
332
|
+
* description: Input fields for the creating a Verifiable Accreditation.
|
|
333
|
+
* type: object
|
|
334
|
+
* additionalProperties: false
|
|
335
|
+
* properties:
|
|
336
|
+
* issuerDid:
|
|
337
|
+
* description: DID of the Verifiable Accreditation issuer. This needs to be a `did:cheqd` DID.
|
|
338
|
+
* type: string
|
|
339
|
+
* example: did:cheqd:testnet:7bf81a20-633c-4cc7-bc4a-5a45801005e0
|
|
340
|
+
* subjectDid:
|
|
341
|
+
* description: DID of the Verifiable Accreditation holder/subject. This needs to be a `did:cheqd` DID.
|
|
342
|
+
* type: string
|
|
343
|
+
* example: did:cheqd:testnet:z6MkhaXgBZDvotDkL5257faiztiGiC2QtKLGpbnnEGta2doK
|
|
344
|
+
* schemas:
|
|
345
|
+
* description: The list of schemas the subject DID is accredited for.
|
|
346
|
+
* type: array
|
|
347
|
+
* items:
|
|
348
|
+
* $ref: '#/components/schemas/SchemaUrl'
|
|
349
|
+
* accreditationName:
|
|
350
|
+
* description: Unique name of the Verifiable Accreditation.
|
|
351
|
+
* type: string
|
|
352
|
+
* attributes:
|
|
353
|
+
* description: JSON object containing the attributes to be included in the Accreditation.
|
|
354
|
+
* type: object
|
|
355
|
+
* '@context':
|
|
356
|
+
* description: Optional properties to be included in the `@context` property of the Accreditation.
|
|
357
|
+
* type: array
|
|
358
|
+
* items:
|
|
359
|
+
* type: string
|
|
360
|
+
* example: [https://schema.org/schema.jsonld, https://veramo.io/contexts/profile/v1]
|
|
361
|
+
* parentAccreditation:
|
|
362
|
+
* description: DID URL of the parent Verifiable Accreditation, required for accredit/attest operation.
|
|
363
|
+
* type: string
|
|
364
|
+
* rootAuthorization:
|
|
365
|
+
* description: DID URL of the root Verifiable Accreditation, required for accredit/attest operation.
|
|
366
|
+
* type: string
|
|
367
|
+
* trustFramework:
|
|
368
|
+
* description: Name or Type of the Trust Framework, required for authorize operation.
|
|
369
|
+
* type: string
|
|
370
|
+
* trustFrameworkId:
|
|
371
|
+
* description: Url of the Trust Framework, required for authorize operation.
|
|
372
|
+
* type: string
|
|
373
|
+
* type:
|
|
374
|
+
* description: Optional properties to be included in the `type` property of the Accreditation.
|
|
375
|
+
* type: array
|
|
376
|
+
* items:
|
|
377
|
+
* type: string
|
|
378
|
+
* example: [Person]
|
|
379
|
+
* expirationDate:
|
|
380
|
+
* description: Optional expiration date according to the <a href=https://www.w3.org/TR/vc-data-model/#expiration> VC Data Model specification</a>.
|
|
381
|
+
* type: string
|
|
382
|
+
* format: date-time
|
|
383
|
+
* example: 2023-06-08T13:49:28.000Z
|
|
384
|
+
* format:
|
|
385
|
+
* description: Format of the Verifiable Accreditation. Defaults to VC-JWT.
|
|
386
|
+
* type: string
|
|
387
|
+
* enum:
|
|
388
|
+
* - jwt
|
|
389
|
+
* - jsonld
|
|
390
|
+
* example: jwt
|
|
391
|
+
* credentialStatus:
|
|
392
|
+
* description: Optional `credentialStatus` properties for VC revocation or suspension. Takes `statusListName` and `statusListPurpose` as inputs.
|
|
393
|
+
* type: object
|
|
394
|
+
* required:
|
|
395
|
+
* - statusPurpose
|
|
396
|
+
* - statusListName
|
|
397
|
+
* properties:
|
|
398
|
+
* statusPurpose:
|
|
399
|
+
* type: string
|
|
400
|
+
* enum:
|
|
401
|
+
* - revocation
|
|
402
|
+
* - suspension
|
|
403
|
+
* statusListName:
|
|
404
|
+
* type: string
|
|
405
|
+
* statusListIndex:
|
|
406
|
+
* type: number
|
|
407
|
+
* statusListVersion:
|
|
408
|
+
* type: string
|
|
409
|
+
* format: date-time
|
|
410
|
+
* statusListRangeStart:
|
|
411
|
+
* type: number
|
|
412
|
+
* statusListRangeEnd:
|
|
413
|
+
* type: number
|
|
414
|
+
* indexNotIn:
|
|
415
|
+
* type: number
|
|
416
|
+
* example:
|
|
417
|
+
* statusPurpose: revocation
|
|
418
|
+
* statusListName: employee-credentials
|
|
419
|
+
* termsOfUse:
|
|
420
|
+
* description: Terms of use can be utilized by an issuer or a holder to communicate the terms under which a verifiable credential was issued.
|
|
421
|
+
* type: array
|
|
422
|
+
* items:
|
|
423
|
+
* type: object
|
|
424
|
+
* example: {
|
|
425
|
+
* type: IssuerPolicy,
|
|
426
|
+
* id: http://example.com/policies/credential/4,
|
|
427
|
+
* profile: http://example.com/profiles/credential,
|
|
428
|
+
* prohibition: [{
|
|
429
|
+
* assigner: https://example.edu/issuers/14,
|
|
430
|
+
* assignee: AllVerifiers,
|
|
431
|
+
* target: http://example.edu/credentials/3732,
|
|
432
|
+
* action: [ "Archival" ]
|
|
433
|
+
* }]
|
|
434
|
+
* }
|
|
435
|
+
* refreshService:
|
|
436
|
+
* description: RefreshService property MUST be one or more refresh services that provides enough information to the recipient's software such that the recipient can refresh the verifiable credential.
|
|
437
|
+
* type: array
|
|
438
|
+
* items:
|
|
439
|
+
* type: object
|
|
440
|
+
* example: {
|
|
441
|
+
* type: ManualRefreshService2018,
|
|
442
|
+
* id: https://example.edu/refresh/3732
|
|
443
|
+
* }
|
|
444
|
+
* evidence:
|
|
445
|
+
* description: Evidence property MUST be one or more evidence schemes providing enough information for a verifier to determine whether the evidence gathered by the issuer meets its confidence requirements for relying on the credential.
|
|
446
|
+
* type: array
|
|
447
|
+
* items:
|
|
448
|
+
* type: object
|
|
449
|
+
* example: {
|
|
450
|
+
* type: ["DocumentVerification"],
|
|
451
|
+
* id: https://example.edu/evidence/f2aeec97-fc0d-42bf-8ca7-0548192d4231,
|
|
452
|
+
* verifier: "https://example.edu/issuers/14",
|
|
453
|
+
* evidenceDocument: DriversLicense,
|
|
454
|
+
* subjectPresence: Physical,
|
|
455
|
+
* documentPresence: Physical,
|
|
456
|
+
* licenseNumber: 123AB4567
|
|
457
|
+
* }
|
|
458
|
+
* connector:
|
|
459
|
+
* type: string
|
|
460
|
+
* enum:
|
|
461
|
+
* - verida
|
|
462
|
+
* - resource
|
|
463
|
+
* required:
|
|
464
|
+
* - issuerDid
|
|
465
|
+
* - subjectDid
|
|
466
|
+
* - schemas
|
|
467
|
+
* - accreditationName
|
|
468
|
+
* example:
|
|
469
|
+
* issuerDid: did:cheqd:testnet:7bf81a20-633c-4cc7-bc4a-5a45801005e0
|
|
470
|
+
* subjectDid: did:cheqd:testnet:2582fe17-9b25-45e4-8104-1cfca430f0c3
|
|
471
|
+
* schemas:
|
|
472
|
+
* - type: MuseumPassCredential
|
|
473
|
+
* url: https://resolver.cheqd.net/1.0/identifiers/did:cheqd:testnet:0a5b94d0-a417-48ed-a6f5-4abc9e95888d?resourceName=MuseumPassCredentialSchema&resourceType=JsonSchemaValidator2018
|
|
474
|
+
* format: jwt
|
|
475
|
+
* accreditationName: authorizeAccreditation
|
|
476
|
+
* trustFramework: https://learn.cheqd.io/governance/start
|
|
477
|
+
* trustFrameworkId: cheqd Governance Framework
|
|
478
|
+
* parentAccreditation: did:cheqd:testnet:15b74787-6e48-4fd5-8020-eab24e990578?resourceName=accreditAccreditation&resourceType=VerifiableAccreditationToAccredit
|
|
479
|
+
* rootAuthorization: did:cheqd:testnet:5RpEg66jhhbmASWPXJRWrA?resourceName=authorizeAccreditation&resourceType=VerifiableAuthorisationForTrustChain
|
|
480
|
+
* credentialStatus:
|
|
481
|
+
* statusPurpose: revocation
|
|
482
|
+
* statusListName: employee-credentials
|
|
483
|
+
* statusListIndex: 10
|
|
484
|
+
* AccreditationVerifyRequest:
|
|
485
|
+
* type: object
|
|
486
|
+
* properties:
|
|
487
|
+
* subjectDid:
|
|
488
|
+
* description: DID of the Verifiable Accreditation holder/subject. This needs to be a `did:key` DID.
|
|
489
|
+
* type: string
|
|
490
|
+
* example: did:cheqd:testnet:5efa5126-c070-420f-a9c2-d22ae6eefb92
|
|
491
|
+
* didUrl:
|
|
492
|
+
* description: Verifiable Accreditation to be verified as a VC-JWT string or a JSON object.
|
|
493
|
+
* type: string
|
|
494
|
+
* example: did:cheqd:testnet:7c2b990c-3d05-4ebf-91af-f4f4d0091d2e?resourceName=cheqd-issuer-logo&resourceType=CredentialArtwork
|
|
495
|
+
* did:
|
|
496
|
+
* type: string
|
|
497
|
+
* example: did:cheqd:testnet:7c2b990c-3d05-4ebf-91af-f4f4d0091d2e
|
|
498
|
+
* resourceId:
|
|
499
|
+
* type: string
|
|
500
|
+
* example: 398cee0a-efac-4643-9f4c-74c48c72a14b
|
|
501
|
+
* resourceName:
|
|
502
|
+
* type: string
|
|
503
|
+
* example: cheqd-issuer-logo
|
|
504
|
+
* resourceType:
|
|
505
|
+
* type: string
|
|
506
|
+
* example: CredentialArtwork
|
|
507
|
+
* schemas:
|
|
508
|
+
* description: The list of schemas the subject DID is accredited for.
|
|
509
|
+
* type: array
|
|
510
|
+
* items:
|
|
511
|
+
* $ref: '#/components/schemas/SchemaUrl'
|
|
512
|
+
* policies:
|
|
513
|
+
* description: Custom verification policies to execute when verifying Accreditation.
|
|
514
|
+
* type: object
|
|
515
|
+
* properties:
|
|
516
|
+
* issuanceDate:
|
|
517
|
+
* description: Policy to skip the `issuanceDate` (`nbf`) timestamp check when set to `false`.
|
|
518
|
+
* type: boolean
|
|
519
|
+
* default: true
|
|
520
|
+
* expirationDate:
|
|
521
|
+
* description: Policy to skip the `expirationDate` (`exp`) timestamp check when set to `false`.
|
|
522
|
+
* type: boolean
|
|
523
|
+
* default: true
|
|
524
|
+
* audience:
|
|
525
|
+
* description: Policy to skip the audience check when set to `false`.
|
|
526
|
+
* type: boolean
|
|
527
|
+
* default: false
|
|
528
|
+
* required:
|
|
529
|
+
* - subjectDid
|
|
530
|
+
* AccreditationRevokeRequest:
|
|
531
|
+
* type: object
|
|
532
|
+
* properties:
|
|
533
|
+
* didUrl:
|
|
534
|
+
* description: Verifiable Accreditation to be verified as a VC-JWT string or a JSON object.
|
|
535
|
+
* type: string
|
|
536
|
+
* example: did:cheqd:testnet:7c2b990c-3d05-4ebf-91af-f4f4d0091d2e?resourceName=cheqd-issuer-logo&resourceType=CredentialArtwork
|
|
537
|
+
* did:
|
|
538
|
+
* type: string
|
|
539
|
+
* example: did:cheqd:testnet:7c2b990c-3d05-4ebf-91af-f4f4d0091d2e
|
|
540
|
+
* resourceId:
|
|
541
|
+
* type: string
|
|
542
|
+
* example: 398cee0a-efac-4643-9f4c-74c48c72a14b
|
|
543
|
+
* resourceName:
|
|
544
|
+
* type: string
|
|
545
|
+
* example: cheqd-issuer-logo
|
|
546
|
+
* resourceType:
|
|
547
|
+
* type: string
|
|
548
|
+
* example: CredentialArtwork
|
|
549
|
+
* symmetricKey:
|
|
550
|
+
* description: The symmetric key used to encrypt the StatusList2021 DID-Linked Resource. Required if the StatusList2021 DID-Linked Resource is encrypted.
|
|
551
|
+
* type: string
|
|
326
552
|
* PresentationCreateRequest:
|
|
327
553
|
* type: object
|
|
328
554
|
* required:
|
|
@@ -1346,6 +1572,13 @@
|
|
|
1346
1572
|
* type: string
|
|
1347
1573
|
* primaryEmail:
|
|
1348
1574
|
* type: string
|
|
1575
|
+
* SchemaUrl:
|
|
1576
|
+
* type: object
|
|
1577
|
+
* properties:
|
|
1578
|
+
* type:
|
|
1579
|
+
* type: string
|
|
1580
|
+
* url:
|
|
1581
|
+
* type: string
|
|
1349
1582
|
* InvalidRequest:
|
|
1350
1583
|
* description: A problem with the input fields has occurred. Additional state information plus metadata may be available in the response body.
|
|
1351
1584
|
* type: object
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"swagger-api-types.js","sourceRoot":"","sources":["../../src/types/swagger-api-types.ts"],"names":[],"mappings":";AAAA
|
|
1
|
+
{"version":3,"file":"swagger-api-types.js","sourceRoot":"","sources":["../../src/types/swagger-api-types.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAikDG"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cheqd/studio",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.0-develop.2",
|
|
4
4
|
"description": "cheqd Studio Backend",
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -54,11 +54,11 @@
|
|
|
54
54
|
],
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@cheqd/did-provider-cheqd": "^4.2.0",
|
|
57
|
-
"@cheqd/sdk": "^4.0.
|
|
57
|
+
"@cheqd/sdk": "^4.0.4",
|
|
58
58
|
"@cheqd/ts-proto": "^3.4.4",
|
|
59
59
|
"@cosmjs/amino": "^0.32.4",
|
|
60
60
|
"@cosmjs/encoding": "^0.32.4",
|
|
61
|
-
"@logto/express": "^2.3.
|
|
61
|
+
"@logto/express": "^2.3.16",
|
|
62
62
|
"@stablelib/ed25519": "^1.0.3",
|
|
63
63
|
"@veramo/core": "^6.0.0",
|
|
64
64
|
"@veramo/credential-ld": "^6.0.0",
|
|
@@ -76,27 +76,27 @@
|
|
|
76
76
|
"@verida/types": "^3.0.2",
|
|
77
77
|
"@verida/vda-did-resolver": "^3.0.3",
|
|
78
78
|
"bcrypt": "^5.1.1",
|
|
79
|
-
"bs58": "^
|
|
79
|
+
"bs58": "^6.0.0",
|
|
80
80
|
"cookie-parser": "^1.4.6",
|
|
81
81
|
"copyfiles": "^2.4.1",
|
|
82
82
|
"cors": "^2.8.5",
|
|
83
83
|
"cross-env": "^7.0.3",
|
|
84
84
|
"did-resolver": "^4.1.0",
|
|
85
85
|
"dotenv": "^16.4.5",
|
|
86
|
-
"express": "^4.
|
|
86
|
+
"express": "^4.21.0",
|
|
87
87
|
"express-session": "^1.18.0",
|
|
88
88
|
"express-validator": "^7.2.0",
|
|
89
|
-
"helmet": "^7.
|
|
89
|
+
"helmet": "^7.2.0",
|
|
90
90
|
"http-status-codes": "^2.3.0",
|
|
91
91
|
"js-sha3": "^0.9.3",
|
|
92
92
|
"json-stringify-safe": "^5.0.1",
|
|
93
93
|
"jsonwebtoken": "^9.0.2",
|
|
94
94
|
"jwt-decode": "^4.0.0",
|
|
95
|
-
"loglevel": "^1.9.
|
|
96
|
-
"multiformats": "^13.
|
|
95
|
+
"loglevel": "^1.9.2",
|
|
96
|
+
"multiformats": "^13.3.0",
|
|
97
97
|
"node-cache": "^5.1.2",
|
|
98
|
-
"pg": "^8.
|
|
99
|
-
"pg-connection-string": "^2.
|
|
98
|
+
"pg": "^8.13.0",
|
|
99
|
+
"pg-connection-string": "^2.7.0",
|
|
100
100
|
"secp256k1": "^5.0.0",
|
|
101
101
|
"sqlite3": "^5.1.7",
|
|
102
102
|
"stripe": "^14.25.0",
|
|
@@ -107,11 +107,11 @@
|
|
|
107
107
|
"uri-js": "^4.4.1"
|
|
108
108
|
},
|
|
109
109
|
"devDependencies": {
|
|
110
|
-
"@playwright/test": "^1.
|
|
110
|
+
"@playwright/test": "^1.47.2",
|
|
111
111
|
"@semantic-release/changelog": "^6.0.3",
|
|
112
112
|
"@semantic-release/commit-analyzer": "^13.0.0",
|
|
113
113
|
"@semantic-release/git": "^10.0.1",
|
|
114
|
-
"@semantic-release/github": "^10.3.
|
|
114
|
+
"@semantic-release/github": "^10.3.5",
|
|
115
115
|
"@semantic-release/npm": "^12.0.1",
|
|
116
116
|
"@semantic-release/release-notes-generator": "^14.0.1",
|
|
117
117
|
"@types/bcrypt": "^5.0.2",
|
|
@@ -123,29 +123,29 @@
|
|
|
123
123
|
"@types/express-session": "^1.18.0",
|
|
124
124
|
"@types/helmet": "^4.0.0",
|
|
125
125
|
"@types/json-stringify-safe": "^5.0.3",
|
|
126
|
-
"@types/jsonwebtoken": "^9.0.
|
|
127
|
-
"@types/node": "^20.16.
|
|
126
|
+
"@types/jsonwebtoken": "^9.0.7",
|
|
127
|
+
"@types/node": "^20.16.10",
|
|
128
128
|
"@types/secp256k1": "^4.0.6",
|
|
129
129
|
"@types/swagger-jsdoc": "^6.0.4",
|
|
130
130
|
"@types/swagger-ui-express": "^4.1.6",
|
|
131
131
|
"@types/uuid": "^10.0.0",
|
|
132
|
-
"@types/validator": "^13.12.
|
|
133
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
134
|
-
"@typescript-eslint/parser": "^8.
|
|
132
|
+
"@types/validator": "^13.12.2",
|
|
133
|
+
"@typescript-eslint/eslint-plugin": "^8.8.0",
|
|
134
|
+
"@typescript-eslint/parser": "^8.8.0",
|
|
135
135
|
"buffer": "6.0.3",
|
|
136
136
|
"conventional-changelog-conventionalcommits": "^8.0.0",
|
|
137
|
-
"eslint": "^8.57.
|
|
137
|
+
"eslint": "^8.57.1",
|
|
138
138
|
"eslint-config-prettier": "^9.1.0",
|
|
139
139
|
"eslint-config-typescript": "^3.0.0",
|
|
140
140
|
"jest": "^29.7.0",
|
|
141
141
|
"prettier": "^3.3.3",
|
|
142
|
-
"semantic-release": "^24.1.
|
|
142
|
+
"semantic-release": "^24.1.2",
|
|
143
143
|
"swagger-jsdoc": "^6.2.8",
|
|
144
144
|
"ts-jest": "^29.2.5",
|
|
145
145
|
"ts-loader": "^9.5.1",
|
|
146
146
|
"ts-node": "^10.9.2",
|
|
147
|
-
"tsx": "^4.19.
|
|
148
|
-
"typescript": "^5.
|
|
147
|
+
"tsx": "^4.19.1",
|
|
148
|
+
"typescript": "^5.6.2",
|
|
149
149
|
"uint8arrays": "^5.1.0"
|
|
150
150
|
},
|
|
151
151
|
"publishConfig": {
|