@triveria/wallet 0.0.282 → 0.0.284
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 +5 -4
- package/api.js +6 -5
- package/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -1181,6 +1181,7 @@ export declare const WmpRequestType: {
|
|
|
1181
1181
|
export type WmpRequestType = typeof WmpRequestType[keyof typeof WmpRequestType];
|
|
1182
1182
|
export declare const XadesSignatureType: {
|
|
1183
1183
|
readonly Tsl: "tsl";
|
|
1184
|
+
readonly Xml: "xml";
|
|
1184
1185
|
};
|
|
1185
1186
|
export type XadesSignatureType = typeof XadesSignatureType[keyof typeof XadesSignatureType];
|
|
1186
1187
|
/**
|
|
@@ -1436,7 +1437,7 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
1436
1437
|
*/
|
|
1437
1438
|
pdfCredentialTwinGet: (credentialId: string, walletId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1438
1439
|
/**
|
|
1439
|
-
* Uploads a PDF that will be signed and embedded with the verifiable credential when it will be issued. Can be used only for credentials in Draft state.
|
|
1440
|
+
* Uploads a PDF that will be signed and embedded with the verifiable credential when it will be issued. Can be used only for credentials in Draft state. Maximum size of the PDF document is 50 MB.
|
|
1440
1441
|
* @param {string} credentialId Verifiable Credential Identifier
|
|
1441
1442
|
* @param {string} walletId
|
|
1442
1443
|
* @param {File} [pdf]
|
|
@@ -1962,7 +1963,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
1962
1963
|
*/
|
|
1963
1964
|
pdfCredentialTwinGet(credentialId: string, walletId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
1964
1965
|
/**
|
|
1965
|
-
* Uploads a PDF that will be signed and embedded with the verifiable credential when it will be issued. Can be used only for credentials in Draft state.
|
|
1966
|
+
* Uploads a PDF that will be signed and embedded with the verifiable credential when it will be issued. Can be used only for credentials in Draft state. Maximum size of the PDF document is 50 MB.
|
|
1966
1967
|
* @param {string} credentialId Verifiable Credential Identifier
|
|
1967
1968
|
* @param {string} walletId
|
|
1968
1969
|
* @param {File} [pdf]
|
|
@@ -2490,7 +2491,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2490
2491
|
*/
|
|
2491
2492
|
pdfCredentialTwinGet(credentialId: string, walletId: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
2492
2493
|
/**
|
|
2493
|
-
* Uploads a PDF that will be signed and embedded with the verifiable credential when it will be issued. Can be used only for credentials in Draft state.
|
|
2494
|
+
* Uploads a PDF that will be signed and embedded with the verifiable credential when it will be issued. Can be used only for credentials in Draft state. Maximum size of the PDF document is 50 MB.
|
|
2494
2495
|
* @param {string} credentialId Verifiable Credential Identifier
|
|
2495
2496
|
* @param {string} walletId
|
|
2496
2497
|
* @param {File} [pdf]
|
|
@@ -3018,7 +3019,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3018
3019
|
*/
|
|
3019
3020
|
pdfCredentialTwinGet(credentialId: string, walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
|
|
3020
3021
|
/**
|
|
3021
|
-
* Uploads a PDF that will be signed and embedded with the verifiable credential when it will be issued. Can be used only for credentials in Draft state.
|
|
3022
|
+
* Uploads a PDF that will be signed and embedded with the verifiable credential when it will be issued. Can be used only for credentials in Draft state. Maximum size of the PDF document is 50 MB.
|
|
3022
3023
|
* @param {string} credentialId Verifiable Credential Identifier
|
|
3023
3024
|
* @param {string} walletId
|
|
3024
3025
|
* @param {File} [pdf]
|
package/api.js
CHANGED
|
@@ -192,7 +192,8 @@ exports.WmpRequestType = {
|
|
|
192
192
|
CredentialVerificationRequest: 'credentialVerificationRequest'
|
|
193
193
|
};
|
|
194
194
|
exports.XadesSignatureType = {
|
|
195
|
-
Tsl: 'tsl'
|
|
195
|
+
Tsl: 'tsl',
|
|
196
|
+
Xml: 'xml'
|
|
196
197
|
};
|
|
197
198
|
/**
|
|
198
199
|
* DefaultApi - axios parameter creator
|
|
@@ -1354,7 +1355,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1354
1355
|
};
|
|
1355
1356
|
}),
|
|
1356
1357
|
/**
|
|
1357
|
-
* Uploads a PDF that will be signed and embedded with the verifiable credential when it will be issued. Can be used only for credentials in Draft state.
|
|
1358
|
+
* Uploads a PDF that will be signed and embedded with the verifiable credential when it will be issued. Can be used only for credentials in Draft state. Maximum size of the PDF document is 50 MB.
|
|
1358
1359
|
* @param {string} credentialId Verifiable Credential Identifier
|
|
1359
1360
|
* @param {string} walletId
|
|
1360
1361
|
* @param {File} [pdf]
|
|
@@ -3116,7 +3117,7 @@ const DefaultApiFp = function (configuration) {
|
|
|
3116
3117
|
});
|
|
3117
3118
|
},
|
|
3118
3119
|
/**
|
|
3119
|
-
* Uploads a PDF that will be signed and embedded with the verifiable credential when it will be issued. Can be used only for credentials in Draft state.
|
|
3120
|
+
* Uploads a PDF that will be signed and embedded with the verifiable credential when it will be issued. Can be used only for credentials in Draft state. Maximum size of the PDF document is 50 MB.
|
|
3120
3121
|
* @param {string} credentialId Verifiable Credential Identifier
|
|
3121
3122
|
* @param {string} walletId
|
|
3122
3123
|
* @param {File} [pdf]
|
|
@@ -3978,7 +3979,7 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
3978
3979
|
return localVarFp.pdfCredentialTwinGet(credentialId, walletId, options).then((request) => request(axios, basePath));
|
|
3979
3980
|
},
|
|
3980
3981
|
/**
|
|
3981
|
-
* Uploads a PDF that will be signed and embedded with the verifiable credential when it will be issued. Can be used only for credentials in Draft state.
|
|
3982
|
+
* Uploads a PDF that will be signed and embedded with the verifiable credential when it will be issued. Can be used only for credentials in Draft state. Maximum size of the PDF document is 50 MB.
|
|
3982
3983
|
* @param {string} credentialId Verifiable Credential Identifier
|
|
3983
3984
|
* @param {string} walletId
|
|
3984
3985
|
* @param {File} [pdf]
|
|
@@ -4634,7 +4635,7 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
4634
4635
|
return (0, exports.DefaultApiFp)(this.configuration).pdfCredentialTwinGet(credentialId, walletId, options).then((request) => request(this.axios, this.basePath));
|
|
4635
4636
|
}
|
|
4636
4637
|
/**
|
|
4637
|
-
* Uploads a PDF that will be signed and embedded with the verifiable credential when it will be issued. Can be used only for credentials in Draft state.
|
|
4638
|
+
* Uploads a PDF that will be signed and embedded with the verifiable credential when it will be issued. Can be used only for credentials in Draft state. Maximum size of the PDF document is 50 MB.
|
|
4638
4639
|
* @param {string} credentialId Verifiable Credential Identifier
|
|
4639
4640
|
* @param {string} walletId
|
|
4640
4641
|
* @param {File} [pdf]
|