@idunion/tl-sdk 0.0.24 → 0.0.25
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 +12 -0
- package/api.js +6 -1
- package/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -861,7 +861,19 @@ export interface Tlr {
|
|
|
861
861
|
* @memberof Tlr
|
|
862
862
|
*/
|
|
863
863
|
'tlName': string;
|
|
864
|
+
/**
|
|
865
|
+
* Denotes the Trust List record trust status. - Unverified record is created manually without presenting an onboarding VC - Verified record is created upon onboarding VC presentation - Trusted record is created upon onboarding VC presentation that was issued by an Issuer that is verified by IDunion SCE
|
|
866
|
+
* @type {string}
|
|
867
|
+
* @memberof Tlr
|
|
868
|
+
*/
|
|
869
|
+
'status': TlrStatusEnum;
|
|
864
870
|
}
|
|
871
|
+
export declare const TlrStatusEnum: {
|
|
872
|
+
readonly Unverified: "unverified";
|
|
873
|
+
readonly Verified: "verified";
|
|
874
|
+
readonly Trusted: "trusted";
|
|
875
|
+
};
|
|
876
|
+
export type TlrStatusEnum = typeof TlrStatusEnum[keyof typeof TlrStatusEnum];
|
|
865
877
|
/**
|
|
866
878
|
*
|
|
867
879
|
* @export
|
package/api.js
CHANGED
|
@@ -25,7 +25,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
25
25
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
26
26
|
};
|
|
27
27
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
-
exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.OnboardingStatusStatusEnum = exports.HealthStatusStatusEnum = exports.CredentialMetadataStatusEnum = exports.CredentialMetadataInteractionEnum = void 0;
|
|
28
|
+
exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.TlrStatusEnum = exports.OnboardingStatusStatusEnum = exports.HealthStatusStatusEnum = exports.CredentialMetadataStatusEnum = exports.CredentialMetadataInteractionEnum = void 0;
|
|
29
29
|
const axios_1 = __importDefault(require("axios"));
|
|
30
30
|
// Some imports not used depending on template conditions
|
|
31
31
|
// @ts-ignore
|
|
@@ -53,6 +53,11 @@ exports.OnboardingStatusStatusEnum = {
|
|
|
53
53
|
Completed: 'completed',
|
|
54
54
|
Error: 'error'
|
|
55
55
|
};
|
|
56
|
+
exports.TlrStatusEnum = {
|
|
57
|
+
Unverified: 'unverified',
|
|
58
|
+
Verified: 'verified',
|
|
59
|
+
Trusted: 'trusted'
|
|
60
|
+
};
|
|
56
61
|
/**
|
|
57
62
|
* DefaultApi - axios parameter creator
|
|
58
63
|
* @export
|