@cheqd/studio 3.13.1-develop.1 → 3.14.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.
Files changed (73) hide show
  1. package/dist/app.d.ts.map +1 -1
  2. package/dist/app.js +4 -1
  3. package/dist/app.js.map +1 -1
  4. package/dist/controllers/api/account.d.ts +2 -2
  5. package/dist/controllers/api/account.js +2 -2
  6. package/dist/controllers/api/accreditation.d.ts.map +1 -1
  7. package/dist/controllers/api/accreditation.js +1 -0
  8. package/dist/controllers/api/accreditation.js.map +1 -1
  9. package/dist/controllers/api/credential.d.ts +166 -16
  10. package/dist/controllers/api/credential.d.ts.map +1 -1
  11. package/dist/controllers/api/credential.js +221 -97
  12. package/dist/controllers/api/credential.js.map +1 -1
  13. package/dist/controllers/validator/credential-status.d.ts +1 -1
  14. package/dist/controllers/validator/credential-status.d.ts.map +1 -1
  15. package/dist/controllers/validator/validator.d.ts +2 -1
  16. package/dist/controllers/validator/validator.d.ts.map +1 -1
  17. package/dist/database/entities/issued-credential.entity.d.ts +42 -0
  18. package/dist/database/entities/issued-credential.entity.d.ts.map +1 -0
  19. package/dist/database/entities/issued-credential.entity.js +131 -0
  20. package/dist/database/entities/issued-credential.entity.js.map +1 -0
  21. package/dist/database/migrations/1760533089289-studio-migrations.d.ts +7 -0
  22. package/dist/database/migrations/1760533089289-studio-migrations.d.ts.map +1 -0
  23. package/dist/database/migrations/1760533089289-studio-migrations.js +35 -0
  24. package/dist/database/migrations/1760533089289-studio-migrations.js.map +1 -0
  25. package/dist/database/migrations/1760533089389-MigrateStudioCredentials.d.ts +20 -0
  26. package/dist/database/migrations/1760533089389-MigrateStudioCredentials.d.ts.map +1 -0
  27. package/dist/database/migrations/1760533089389-MigrateStudioCredentials.js +202 -0
  28. package/dist/database/migrations/1760533089389-MigrateStudioCredentials.js.map +1 -0
  29. package/dist/database/migrations/1760533089589-MigrateDockCredentials.d.ts +24 -0
  30. package/dist/database/migrations/1760533089589-MigrateDockCredentials.d.ts.map +1 -0
  31. package/dist/database/migrations/1760533089589-MigrateDockCredentials.js +205 -0
  32. package/dist/database/migrations/1760533089589-MigrateDockCredentials.js.map +1 -0
  33. package/dist/database/types/types.d.ts.map +1 -1
  34. package/dist/database/types/types.js +11 -0
  35. package/dist/database/types/types.js.map +1 -1
  36. package/dist/middleware/auth/routes/api/credential-auth.d.ts.map +1 -1
  37. package/dist/middleware/auth/routes/api/credential-auth.js +7 -0
  38. package/dist/middleware/auth/routes/api/credential-auth.js.map +1 -1
  39. package/dist/services/api/credentials.d.ts +40 -1
  40. package/dist/services/api/credentials.d.ts.map +1 -1
  41. package/dist/services/api/credentials.js +371 -7
  42. package/dist/services/api/credentials.js.map +1 -1
  43. package/dist/services/connectors/resource.d.ts +6 -1
  44. package/dist/services/connectors/resource.d.ts.map +1 -1
  45. package/dist/services/connectors/resource.js +7 -0
  46. package/dist/services/connectors/resource.js.map +1 -1
  47. package/dist/services/identity/abstract.d.ts +3 -1
  48. package/dist/services/identity/abstract.d.ts.map +1 -1
  49. package/dist/services/identity/abstract.js +6 -0
  50. package/dist/services/identity/abstract.js.map +1 -1
  51. package/dist/services/identity/index.d.ts +3 -1
  52. package/dist/services/identity/index.d.ts.map +1 -1
  53. package/dist/services/identity/index.js.map +1 -1
  54. package/dist/services/identity/providers/dock/identity.d.ts +1 -0
  55. package/dist/services/identity/providers/dock/identity.d.ts.map +1 -1
  56. package/dist/services/identity/providers/dock/identity.js +51 -15
  57. package/dist/services/identity/providers/dock/identity.js.map +1 -1
  58. package/dist/services/identity/providers/studio/postgres.d.ts +1 -0
  59. package/dist/services/identity/providers/studio/postgres.d.ts.map +1 -1
  60. package/dist/services/identity/providers/studio/postgres.js +38 -2
  61. package/dist/services/identity/providers/studio/postgres.js.map +1 -1
  62. package/dist/static/swagger-api.json +457 -47
  63. package/dist/types/credential-status.d.ts +7 -0
  64. package/dist/types/credential-status.d.ts.map +1 -1
  65. package/dist/types/credential.d.ts +57 -1
  66. package/dist/types/credential.d.ts.map +1 -1
  67. package/dist/types/swagger-api-types.d.ts +143 -20
  68. package/dist/types/swagger-api-types.d.ts.map +1 -1
  69. package/dist/types/swagger-api-types.js +143 -20
  70. package/dist/types/swagger-api-types.js.map +1 -1
  71. package/dist/types/validation.d.ts +0 -6
  72. package/dist/types/validation.d.ts.map +1 -1
  73. package/package.json +2 -2
@@ -27,6 +27,7 @@ export interface CredentialRequest {
27
27
  connector?: CredentialConnectors;
28
28
  providerId?: string;
29
29
  credentialId?: string;
30
+ category?: 'credential' | 'accreditation';
30
31
  [x: string]: any;
31
32
  }
32
33
  export type AdditionalData = {
@@ -80,7 +81,23 @@ export type ListCredentialQueryParams = {
80
81
  export type ListCredentialRequestOptions = {
81
82
  page?: number;
82
83
  limit?: number;
83
- filter?: any;
84
+ providerId?: string;
85
+ issuerId?: string;
86
+ subjectId?: string;
87
+ status?: 'issued' | 'suspended' | 'revoked';
88
+ format?: string;
89
+ createdAt?: string;
90
+ category?: string;
91
+ };
92
+ export type UpdateIssuedCredentialRequestBody = {
93
+ providerCredentialId?: string;
94
+ status?: 'issued' | 'suspended' | 'revoked';
95
+ providerMetadata?: Record<string, any>;
96
+ };
97
+ export type UpdateIssuedCredentialResponseBody = {
98
+ success: boolean;
99
+ data?: any;
100
+ error?: string;
84
101
  };
85
102
  export type ListCredentialResponse = {
86
103
  credentials: {
@@ -96,4 +113,43 @@ export type ListCredentialResponse = {
96
113
  }[];
97
114
  total: number;
98
115
  };
116
+ export interface GetIssuedCredentialOptions {
117
+ includeCredential?: boolean;
118
+ syncStatus?: boolean;
119
+ providerId?: string;
120
+ }
121
+ export interface IssuedCredentialCreateOptions {
122
+ providerId: string;
123
+ providerCredentialId?: string;
124
+ issuerId?: string;
125
+ subjectId?: string;
126
+ format: 'jwt' | 'jsonld' | 'sd-jwt-vc' | 'anoncreds';
127
+ type: string[];
128
+ status?: 'issued' | 'suspended' | 'revoked';
129
+ statusUpdatedAt?: Date;
130
+ issuedAt: Date;
131
+ expiresAt?: Date;
132
+ credentialStatus?: Record<string, any>;
133
+ metadata?: Record<string, any>;
134
+ category?: 'credential' | 'accreditation';
135
+ }
136
+ export interface IssuedCredentialResponse {
137
+ issuedCredentialId: string;
138
+ providerId: string;
139
+ providerCredentialId?: string;
140
+ issuerId?: string;
141
+ subjectId?: string;
142
+ format: string;
143
+ category?: string;
144
+ type: string[];
145
+ status: string;
146
+ statusUpdatedAt?: string;
147
+ issuedAt: string;
148
+ expiresAt?: string;
149
+ credentialStatus?: Record<string, any>;
150
+ providerMetadata?: Record<string, any>;
151
+ credential?: VerifiableCredential;
152
+ createdAt?: string;
153
+ updatedAt?: string;
154
+ }
99
155
  //# sourceMappingURL=credential.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"credential.d.ts","sourceRoot":"","sources":["../../src/types/credential.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"credential.d.ts","sourceRoot":"","sources":["../../src/types/credential.ts"],"names":[],"mappings":"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"}
@@ -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
- * type: object
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4wDG"}
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
- * type: object
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4wDG"}
1
+ {"version":3,"file":"swagger-api-types.js","sourceRoot":"","sources":["../../src/types/swagger-api-types.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAu4DG"}
@@ -19,10 +19,4 @@ export type JSONLDProofType = {
19
19
  proofValue?: string;
20
20
  jws?: string;
21
21
  };
22
- export type CheqdCredentialStatus = {
23
- id: string;
24
- type: string;
25
- statusPurpose: string;
26
- statusListIndex: string;
27
- };
28
22
  //# sourceMappingURL=validation.d.ts.map
@@ -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;AACF,MAAM,MAAM,qBAAqB,GAAG;IACnC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,aAAa,EAAE,MAAM,CAAC;IACtB,eAAe,EAAE,MAAM,CAAC;CACxB,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.13.1-develop.1",
3
+ "version": "3.14.0-develop.2",
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.0",
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",