@idunion/tl-sdk 0.0.65 → 0.0.67
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/api.d.ts +16 -0
- package/api.js +4 -4
- package/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -204,6 +204,14 @@ export interface Tl {
|
|
|
204
204
|
* Name of the organization operating the Trust List.
|
|
205
205
|
*/
|
|
206
206
|
'organization'?: string;
|
|
207
|
+
/**
|
|
208
|
+
* Unix timestamp in microseconds when the record was first created.
|
|
209
|
+
*/
|
|
210
|
+
'createdTs': number;
|
|
211
|
+
/**
|
|
212
|
+
* Unix timestamp in microseconds when the record was last updated.
|
|
213
|
+
*/
|
|
214
|
+
'updatedTs': number;
|
|
207
215
|
}
|
|
208
216
|
export interface TlList {
|
|
209
217
|
'items'?: Array<Tl>;
|
|
@@ -293,6 +301,14 @@ export interface Tlr {
|
|
|
293
301
|
'accreditedFor'?: Array<AccreditedFor>;
|
|
294
302
|
'onboardingCredentials': Array<OnboardingCredential>;
|
|
295
303
|
'isRoot': boolean;
|
|
304
|
+
/**
|
|
305
|
+
* Unix timestamp in microseconds when the record was first created.
|
|
306
|
+
*/
|
|
307
|
+
'createdTs': number;
|
|
308
|
+
/**
|
|
309
|
+
* Unix timestamp in microseconds when the record was last updated.
|
|
310
|
+
*/
|
|
311
|
+
'updatedTs': number;
|
|
296
312
|
}
|
|
297
313
|
export declare const TlrStatusEnum: {
|
|
298
314
|
readonly Onboarded: "onboarded";
|
package/api.js
CHANGED
|
@@ -35,12 +35,12 @@ const base_1 = require("./base");
|
|
|
35
35
|
exports.HealthStatusStatusEnum = {
|
|
36
36
|
Ok: 'ok',
|
|
37
37
|
Limited: 'limited',
|
|
38
|
-
Critical: 'critical'
|
|
38
|
+
Critical: 'critical',
|
|
39
39
|
};
|
|
40
40
|
exports.OnboardingStatusStatusEnum = {
|
|
41
41
|
InProgress: 'in_progress',
|
|
42
42
|
Completed: 'completed',
|
|
43
|
-
Error: 'error'
|
|
43
|
+
Error: 'error',
|
|
44
44
|
};
|
|
45
45
|
/**
|
|
46
46
|
* Defines the role category of entities registered in the Trust List, aligned with ETSI TS 119-602 and the EU Digital Identity (EUDI) framework: - `QEAA_Provider`: Qualified Electronic Attestation of Attributes provider - `PuBEAA_Provider`: Public Body Electronic Attestation of Attributes provider - `Wallet_Provider`: EUDI-compliant identity wallet solution provider - `PID_Provider`: Person Identification Data provider (e.g. national eID issuer) - `Access_Certificate_Authority`: Issuer of access certificates for wallet interactions - `Registration_Certificates_Provider`: Issuer of registration certificates - `EAA_Provider`: Electronic Attestation of Attributes provider (non-qualified)
|
|
@@ -52,13 +52,13 @@ exports.TlType = {
|
|
|
52
52
|
PidProvider: 'PID_Provider',
|
|
53
53
|
AccessCertificateAuthority: 'Access_Certificate_Authority',
|
|
54
54
|
RegistrationCertificatesProvider: 'Registration_Certificates_Provider',
|
|
55
|
-
EaaProvider: 'EAA_Provider'
|
|
55
|
+
EaaProvider: 'EAA_Provider',
|
|
56
56
|
};
|
|
57
57
|
exports.TlrStatusEnum = {
|
|
58
58
|
Onboarded: 'onboarded',
|
|
59
59
|
Trusted: 'trusted',
|
|
60
60
|
Revoked: 'revoked',
|
|
61
|
-
Expired: 'expired'
|
|
61
|
+
Expired: 'expired',
|
|
62
62
|
};
|
|
63
63
|
/**
|
|
64
64
|
* DefaultApi - axios parameter creator
|