@cheqd/studio 3.13.1-develop.1 → 3.14.0-develop.1
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 +3 -1
- package/dist/app.js.map +1 -1
- package/dist/controllers/api/account.d.ts +2 -2
- package/dist/controllers/api/account.js +2 -2
- package/dist/controllers/api/accreditation.d.ts.map +1 -1
- package/dist/controllers/api/accreditation.js +1 -0
- package/dist/controllers/api/accreditation.js.map +1 -1
- package/dist/controllers/api/credential.d.ts +104 -16
- package/dist/controllers/api/credential.d.ts.map +1 -1
- package/dist/controllers/api/credential.js +137 -97
- package/dist/controllers/api/credential.js.map +1 -1
- package/dist/controllers/validator/credential-status.d.ts +1 -1
- package/dist/controllers/validator/credential-status.d.ts.map +1 -1
- package/dist/controllers/validator/validator.d.ts +2 -1
- package/dist/controllers/validator/validator.d.ts.map +1 -1
- package/dist/database/entities/issued-credential.entity.d.ts +42 -0
- package/dist/database/entities/issued-credential.entity.d.ts.map +1 -0
- package/dist/database/entities/issued-credential.entity.js +131 -0
- package/dist/database/entities/issued-credential.entity.js.map +1 -0
- package/dist/database/migrations/1760533089289-studio-migrations.d.ts +7 -0
- package/dist/database/migrations/1760533089289-studio-migrations.d.ts.map +1 -0
- package/dist/database/migrations/1760533089289-studio-migrations.js +35 -0
- package/dist/database/migrations/1760533089289-studio-migrations.js.map +1 -0
- package/dist/database/migrations/1760533089389-MigrateStudioCredentials.d.ts +20 -0
- package/dist/database/migrations/1760533089389-MigrateStudioCredentials.d.ts.map +1 -0
- package/dist/database/migrations/1760533089389-MigrateStudioCredentials.js +202 -0
- package/dist/database/migrations/1760533089389-MigrateStudioCredentials.js.map +1 -0
- package/dist/database/migrations/1760533089589-MigrateDockCredentials.d.ts +24 -0
- package/dist/database/migrations/1760533089589-MigrateDockCredentials.d.ts.map +1 -0
- package/dist/database/migrations/1760533089589-MigrateDockCredentials.js +205 -0
- package/dist/database/migrations/1760533089589-MigrateDockCredentials.js.map +1 -0
- package/dist/database/types/types.d.ts.map +1 -1
- package/dist/database/types/types.js +11 -0
- package/dist/database/types/types.js.map +1 -1
- package/dist/middleware/auth/routes/api/credential-auth.d.ts.map +1 -1
- package/dist/middleware/auth/routes/api/credential-auth.js +5 -0
- package/dist/middleware/auth/routes/api/credential-auth.js.map +1 -1
- package/dist/services/api/credentials.d.ts +36 -1
- package/dist/services/api/credentials.d.ts.map +1 -1
- package/dist/services/api/credentials.js +332 -7
- package/dist/services/api/credentials.js.map +1 -1
- package/dist/services/connectors/resource.d.ts +6 -1
- package/dist/services/connectors/resource.d.ts.map +1 -1
- package/dist/services/connectors/resource.js +7 -0
- package/dist/services/connectors/resource.js.map +1 -1
- package/dist/services/identity/abstract.d.ts +3 -1
- package/dist/services/identity/abstract.d.ts.map +1 -1
- package/dist/services/identity/abstract.js +6 -0
- package/dist/services/identity/abstract.js.map +1 -1
- package/dist/services/identity/index.d.ts +3 -1
- package/dist/services/identity/index.d.ts.map +1 -1
- package/dist/services/identity/index.js.map +1 -1
- package/dist/services/identity/providers/dock/identity.d.ts +1 -0
- package/dist/services/identity/providers/dock/identity.d.ts.map +1 -1
- package/dist/services/identity/providers/dock/identity.js +51 -15
- package/dist/services/identity/providers/dock/identity.js.map +1 -1
- package/dist/services/identity/providers/studio/postgres.d.ts +1 -0
- package/dist/services/identity/providers/studio/postgres.d.ts.map +1 -1
- package/dist/services/identity/providers/studio/postgres.js +38 -2
- package/dist/services/identity/providers/studio/postgres.js.map +1 -1
- package/dist/static/swagger-api.json +364 -47
- package/dist/types/credential-status.d.ts +7 -0
- package/dist/types/credential-status.d.ts.map +1 -1
- package/dist/types/credential.d.ts +47 -1
- package/dist/types/credential.d.ts.map +1 -1
- package/dist/types/swagger-api-types.d.ts +143 -20
- package/dist/types/swagger-api-types.d.ts.map +1 -1
- package/dist/types/swagger-api-types.js +143 -20
- package/dist/types/swagger-api-types.js.map +1 -1
- package/dist/types/validation.d.ts +0 -6
- package/dist/types/validation.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -253,6 +253,131 @@
|
|
|
253
253
|
* type:
|
|
254
254
|
* - VerifiableCredential
|
|
255
255
|
* - Person
|
|
256
|
+
* VerifiableCredential:
|
|
257
|
+
* type: object
|
|
258
|
+
* required:
|
|
259
|
+
* - "@context"
|
|
260
|
+
* - type
|
|
261
|
+
* - issuer
|
|
262
|
+
* - issuanceDate
|
|
263
|
+
* - credentialSubject
|
|
264
|
+
* properties:
|
|
265
|
+
* "@context":
|
|
266
|
+
* oneOf:
|
|
267
|
+
* - type: string
|
|
268
|
+
* - type: array
|
|
269
|
+
* items:
|
|
270
|
+
* type: string
|
|
271
|
+
* description: JSON-LD context
|
|
272
|
+
* id:
|
|
273
|
+
* type: string
|
|
274
|
+
* description: Credential identifier
|
|
275
|
+
* type:
|
|
276
|
+
* type: array
|
|
277
|
+
* items:
|
|
278
|
+
* type: string
|
|
279
|
+
* description: Credential types
|
|
280
|
+
* issuer:
|
|
281
|
+
* oneOf:
|
|
282
|
+
* - type: string
|
|
283
|
+
* - type: object
|
|
284
|
+
* properties:
|
|
285
|
+
* id:
|
|
286
|
+
* type: string
|
|
287
|
+
* description: Credential issuer
|
|
288
|
+
* issuanceDate:
|
|
289
|
+
* type: string
|
|
290
|
+
* format: date-time
|
|
291
|
+
* description: Issuance date
|
|
292
|
+
* expirationDate:
|
|
293
|
+
* type: string
|
|
294
|
+
* format: date-time
|
|
295
|
+
* description: Expiration date
|
|
296
|
+
* credentialSubject:
|
|
297
|
+
* type: object
|
|
298
|
+
* additionalProperties: true
|
|
299
|
+
* description: Credential subject claims
|
|
300
|
+
* proof:
|
|
301
|
+
* type: object
|
|
302
|
+
* additionalProperties: true
|
|
303
|
+
* description: Cryptographic proof
|
|
304
|
+
* credentialStatus:
|
|
305
|
+
* type: object
|
|
306
|
+
* additionalProperties: true
|
|
307
|
+
* description: Credential status information
|
|
308
|
+
* IssuedCredentialResponse:
|
|
309
|
+
* type: object
|
|
310
|
+
* required:
|
|
311
|
+
* - issuedCredentialId
|
|
312
|
+
* - providerId
|
|
313
|
+
* - format
|
|
314
|
+
* - type
|
|
315
|
+
* - status
|
|
316
|
+
* - issuedAt
|
|
317
|
+
* properties:
|
|
318
|
+
* issuedCredentialId:
|
|
319
|
+
* type: string
|
|
320
|
+
* description: Unique identifier for the issued credential
|
|
321
|
+
* providerId:
|
|
322
|
+
* type: string
|
|
323
|
+
* description: Provider identifier
|
|
324
|
+
* providerCredentialId:
|
|
325
|
+
* type: string
|
|
326
|
+
* description: Provider-specific credential ID
|
|
327
|
+
* issuerId:
|
|
328
|
+
* type: string
|
|
329
|
+
* description: DID or identifier of the credential issuer
|
|
330
|
+
* subjectId:
|
|
331
|
+
* type: string
|
|
332
|
+
* description: DID or identifier of the credential subject
|
|
333
|
+
* format:
|
|
334
|
+
* type: string
|
|
335
|
+
* description: Credential format (e.g., jwt_vc, jsonld)
|
|
336
|
+
* example: jwt_vc
|
|
337
|
+
* category:
|
|
338
|
+
* type: string
|
|
339
|
+
* description: Credential category
|
|
340
|
+
* enum: [credential, accreditation]
|
|
341
|
+
* type:
|
|
342
|
+
* type: array
|
|
343
|
+
* items:
|
|
344
|
+
* type: string
|
|
345
|
+
* description: Array of credential types
|
|
346
|
+
* example: ["VerifiableCredential"]
|
|
347
|
+
* status:
|
|
348
|
+
* type: string
|
|
349
|
+
* description: Current status of the credential
|
|
350
|
+
* enum: [active, revoked, suspended, expired]
|
|
351
|
+
* statusUpdatedAt:
|
|
352
|
+
* type: string
|
|
353
|
+
* format: date-time
|
|
354
|
+
* description: Timestamp when status was last updated
|
|
355
|
+
* issuedAt:
|
|
356
|
+
* type: string
|
|
357
|
+
* format: date-time
|
|
358
|
+
* description: Timestamp when credential was issued
|
|
359
|
+
* expiresAt:
|
|
360
|
+
* type: string
|
|
361
|
+
* format: date-time
|
|
362
|
+
* description: Timestamp when credential expires
|
|
363
|
+
* credentialStatus:
|
|
364
|
+
* type: object
|
|
365
|
+
* additionalProperties: true
|
|
366
|
+
* description: Credential status configuration
|
|
367
|
+
* providerMetadata:
|
|
368
|
+
* type: object
|
|
369
|
+
* additionalProperties: true
|
|
370
|
+
* description: Provider-specific metadata
|
|
371
|
+
* credential:
|
|
372
|
+
* $ref: '#/components/schemas/VerifiableCredential'
|
|
373
|
+
* createdAt:
|
|
374
|
+
* type: string
|
|
375
|
+
* format: date-time
|
|
376
|
+
* description: Timestamp when record was created
|
|
377
|
+
* updatedAt:
|
|
378
|
+
* type: string
|
|
379
|
+
* format: date-time
|
|
380
|
+
* description: Timestamp when record was last updated
|
|
256
381
|
* ListCredentialResult:
|
|
257
382
|
* type: object
|
|
258
383
|
* properties:
|
|
@@ -261,26 +386,7 @@
|
|
|
261
386
|
* credentials:
|
|
262
387
|
* type: array
|
|
263
388
|
* items:
|
|
264
|
-
*
|
|
265
|
-
* properties:
|
|
266
|
-
* status:
|
|
267
|
-
* type: string
|
|
268
|
-
* providerId:
|
|
269
|
-
* type: string
|
|
270
|
-
* id:
|
|
271
|
-
* type: string
|
|
272
|
-
* issuerDid:
|
|
273
|
-
* type: string
|
|
274
|
-
* subjectDid:
|
|
275
|
-
* type: string
|
|
276
|
-
* type:
|
|
277
|
-
* type: string
|
|
278
|
-
* createdAt:
|
|
279
|
-
* type: string
|
|
280
|
-
* format:
|
|
281
|
-
* type: string
|
|
282
|
-
* credentialStatus:
|
|
283
|
-
* type: object
|
|
389
|
+
* $ref: '#/components/schemas/IssuedCredentialResponse'
|
|
284
390
|
* CredentialRevokeRequest:
|
|
285
391
|
* type: object
|
|
286
392
|
* properties:
|
|
@@ -1725,6 +1831,23 @@
|
|
|
1725
1831
|
* type: string
|
|
1726
1832
|
* primaryEmail:
|
|
1727
1833
|
* type: string
|
|
1834
|
+
* AccountCreateResponse:
|
|
1835
|
+
* type: object
|
|
1836
|
+
* properties:
|
|
1837
|
+
* customerId:
|
|
1838
|
+
* type: string
|
|
1839
|
+
* name:
|
|
1840
|
+
* type: string
|
|
1841
|
+
* email:
|
|
1842
|
+
* type: string
|
|
1843
|
+
* description:
|
|
1844
|
+
* type: string
|
|
1845
|
+
* createdAt:
|
|
1846
|
+
* type: string
|
|
1847
|
+
* updatedAt:
|
|
1848
|
+
* type: string
|
|
1849
|
+
* paymentProviderId:
|
|
1850
|
+
* type: string
|
|
1728
1851
|
* SchemaUrl:
|
|
1729
1852
|
* type: object
|
|
1730
1853
|
* properties:
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"swagger-api-types.d.ts","sourceRoot":"","sources":["../../src/types/swagger-api-types.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"swagger-api-types.d.ts","sourceRoot":"","sources":["../../src/types/swagger-api-types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAu4DG"}
|
|
@@ -254,6 +254,131 @@
|
|
|
254
254
|
* type:
|
|
255
255
|
* - VerifiableCredential
|
|
256
256
|
* - Person
|
|
257
|
+
* VerifiableCredential:
|
|
258
|
+
* type: object
|
|
259
|
+
* required:
|
|
260
|
+
* - "@context"
|
|
261
|
+
* - type
|
|
262
|
+
* - issuer
|
|
263
|
+
* - issuanceDate
|
|
264
|
+
* - credentialSubject
|
|
265
|
+
* properties:
|
|
266
|
+
* "@context":
|
|
267
|
+
* oneOf:
|
|
268
|
+
* - type: string
|
|
269
|
+
* - type: array
|
|
270
|
+
* items:
|
|
271
|
+
* type: string
|
|
272
|
+
* description: JSON-LD context
|
|
273
|
+
* id:
|
|
274
|
+
* type: string
|
|
275
|
+
* description: Credential identifier
|
|
276
|
+
* type:
|
|
277
|
+
* type: array
|
|
278
|
+
* items:
|
|
279
|
+
* type: string
|
|
280
|
+
* description: Credential types
|
|
281
|
+
* issuer:
|
|
282
|
+
* oneOf:
|
|
283
|
+
* - type: string
|
|
284
|
+
* - type: object
|
|
285
|
+
* properties:
|
|
286
|
+
* id:
|
|
287
|
+
* type: string
|
|
288
|
+
* description: Credential issuer
|
|
289
|
+
* issuanceDate:
|
|
290
|
+
* type: string
|
|
291
|
+
* format: date-time
|
|
292
|
+
* description: Issuance date
|
|
293
|
+
* expirationDate:
|
|
294
|
+
* type: string
|
|
295
|
+
* format: date-time
|
|
296
|
+
* description: Expiration date
|
|
297
|
+
* credentialSubject:
|
|
298
|
+
* type: object
|
|
299
|
+
* additionalProperties: true
|
|
300
|
+
* description: Credential subject claims
|
|
301
|
+
* proof:
|
|
302
|
+
* type: object
|
|
303
|
+
* additionalProperties: true
|
|
304
|
+
* description: Cryptographic proof
|
|
305
|
+
* credentialStatus:
|
|
306
|
+
* type: object
|
|
307
|
+
* additionalProperties: true
|
|
308
|
+
* description: Credential status information
|
|
309
|
+
* IssuedCredentialResponse:
|
|
310
|
+
* type: object
|
|
311
|
+
* required:
|
|
312
|
+
* - issuedCredentialId
|
|
313
|
+
* - providerId
|
|
314
|
+
* - format
|
|
315
|
+
* - type
|
|
316
|
+
* - status
|
|
317
|
+
* - issuedAt
|
|
318
|
+
* properties:
|
|
319
|
+
* issuedCredentialId:
|
|
320
|
+
* type: string
|
|
321
|
+
* description: Unique identifier for the issued credential
|
|
322
|
+
* providerId:
|
|
323
|
+
* type: string
|
|
324
|
+
* description: Provider identifier
|
|
325
|
+
* providerCredentialId:
|
|
326
|
+
* type: string
|
|
327
|
+
* description: Provider-specific credential ID
|
|
328
|
+
* issuerId:
|
|
329
|
+
* type: string
|
|
330
|
+
* description: DID or identifier of the credential issuer
|
|
331
|
+
* subjectId:
|
|
332
|
+
* type: string
|
|
333
|
+
* description: DID or identifier of the credential subject
|
|
334
|
+
* format:
|
|
335
|
+
* type: string
|
|
336
|
+
* description: Credential format (e.g., jwt_vc, jsonld)
|
|
337
|
+
* example: jwt_vc
|
|
338
|
+
* category:
|
|
339
|
+
* type: string
|
|
340
|
+
* description: Credential category
|
|
341
|
+
* enum: [credential, accreditation]
|
|
342
|
+
* type:
|
|
343
|
+
* type: array
|
|
344
|
+
* items:
|
|
345
|
+
* type: string
|
|
346
|
+
* description: Array of credential types
|
|
347
|
+
* example: ["VerifiableCredential"]
|
|
348
|
+
* status:
|
|
349
|
+
* type: string
|
|
350
|
+
* description: Current status of the credential
|
|
351
|
+
* enum: [active, revoked, suspended, expired]
|
|
352
|
+
* statusUpdatedAt:
|
|
353
|
+
* type: string
|
|
354
|
+
* format: date-time
|
|
355
|
+
* description: Timestamp when status was last updated
|
|
356
|
+
* issuedAt:
|
|
357
|
+
* type: string
|
|
358
|
+
* format: date-time
|
|
359
|
+
* description: Timestamp when credential was issued
|
|
360
|
+
* expiresAt:
|
|
361
|
+
* type: string
|
|
362
|
+
* format: date-time
|
|
363
|
+
* description: Timestamp when credential expires
|
|
364
|
+
* credentialStatus:
|
|
365
|
+
* type: object
|
|
366
|
+
* additionalProperties: true
|
|
367
|
+
* description: Credential status configuration
|
|
368
|
+
* providerMetadata:
|
|
369
|
+
* type: object
|
|
370
|
+
* additionalProperties: true
|
|
371
|
+
* description: Provider-specific metadata
|
|
372
|
+
* credential:
|
|
373
|
+
* $ref: '#/components/schemas/VerifiableCredential'
|
|
374
|
+
* createdAt:
|
|
375
|
+
* type: string
|
|
376
|
+
* format: date-time
|
|
377
|
+
* description: Timestamp when record was created
|
|
378
|
+
* updatedAt:
|
|
379
|
+
* type: string
|
|
380
|
+
* format: date-time
|
|
381
|
+
* description: Timestamp when record was last updated
|
|
257
382
|
* ListCredentialResult:
|
|
258
383
|
* type: object
|
|
259
384
|
* properties:
|
|
@@ -262,26 +387,7 @@
|
|
|
262
387
|
* credentials:
|
|
263
388
|
* type: array
|
|
264
389
|
* items:
|
|
265
|
-
*
|
|
266
|
-
* properties:
|
|
267
|
-
* status:
|
|
268
|
-
* type: string
|
|
269
|
-
* providerId:
|
|
270
|
-
* type: string
|
|
271
|
-
* id:
|
|
272
|
-
* type: string
|
|
273
|
-
* issuerDid:
|
|
274
|
-
* type: string
|
|
275
|
-
* subjectDid:
|
|
276
|
-
* type: string
|
|
277
|
-
* type:
|
|
278
|
-
* type: string
|
|
279
|
-
* createdAt:
|
|
280
|
-
* type: string
|
|
281
|
-
* format:
|
|
282
|
-
* type: string
|
|
283
|
-
* credentialStatus:
|
|
284
|
-
* type: object
|
|
390
|
+
* $ref: '#/components/schemas/IssuedCredentialResponse'
|
|
285
391
|
* CredentialRevokeRequest:
|
|
286
392
|
* type: object
|
|
287
393
|
* properties:
|
|
@@ -1726,6 +1832,23 @@
|
|
|
1726
1832
|
* type: string
|
|
1727
1833
|
* primaryEmail:
|
|
1728
1834
|
* type: string
|
|
1835
|
+
* AccountCreateResponse:
|
|
1836
|
+
* type: object
|
|
1837
|
+
* properties:
|
|
1838
|
+
* customerId:
|
|
1839
|
+
* type: string
|
|
1840
|
+
* name:
|
|
1841
|
+
* type: string
|
|
1842
|
+
* email:
|
|
1843
|
+
* type: string
|
|
1844
|
+
* description:
|
|
1845
|
+
* type: string
|
|
1846
|
+
* createdAt:
|
|
1847
|
+
* type: string
|
|
1848
|
+
* updatedAt:
|
|
1849
|
+
* type: string
|
|
1850
|
+
* paymentProviderId:
|
|
1851
|
+
* type: string
|
|
1729
1852
|
* SchemaUrl:
|
|
1730
1853
|
* type: object
|
|
1731
1854
|
* properties:
|
|
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAu4DG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../src/types/validation.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,gBAAgB,GAAG;IAC9B,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,eAAe,EAAE,MAAM,EAAE,CAAC;IAC1B,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;IACzB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,GAAG,CAAC,EAAE,MAAM,CAAC;CACb,CAAC
|
|
1
|
+
{"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../src/types/validation.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,gBAAgB,GAAG;IAC9B,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,eAAe,EAAE,MAAM,EAAE,CAAC;IAC1B,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;IACzB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,GAAG,CAAC,EAAE,MAAM,CAAC;CACb,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cheqd/studio",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.14.0-develop.1",
|
|
4
4
|
"description": "cheqd Studio Backend",
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"README.md"
|
|
55
55
|
],
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@cheqd/did-provider-cheqd": "^4.6.
|
|
57
|
+
"@cheqd/did-provider-cheqd": "^4.6.2",
|
|
58
58
|
"@cheqd/sdk": "^5.3.6",
|
|
59
59
|
"@cheqd/ts-proto": "^4.0.2",
|
|
60
60
|
"@cosmjs/amino": "^0.33.1",
|