@triveria/wallet 0.0.252 → 0.0.254
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 +6 -4
- package/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -37,10 +37,12 @@ export interface AuthOffer {
|
|
|
37
37
|
}
|
|
38
38
|
export interface CSRCreateRequest {
|
|
39
39
|
'organizationName': string;
|
|
40
|
+
'organizationWebsite': string;
|
|
41
|
+
'streetAddress': string;
|
|
40
42
|
'locality': string;
|
|
43
|
+
'postalCode': string;
|
|
41
44
|
'province'?: string;
|
|
42
45
|
'country': string;
|
|
43
|
-
'email'?: string;
|
|
44
46
|
}
|
|
45
47
|
export interface CSRCreateResponse {
|
|
46
48
|
'csr': string;
|
|
@@ -1704,7 +1706,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
1704
1706
|
* @param {*} [options] Override http request option.
|
|
1705
1707
|
* @throws {RequiredError}
|
|
1706
1708
|
*/
|
|
1707
|
-
issuerXadesSign(walletId: string, xml: File, xadesSignatureType: XadesSignatureType, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
1709
|
+
issuerXadesSign(walletId: string, xml: File, xadesSignatureType: XadesSignatureType, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1708
1710
|
/**
|
|
1709
1711
|
* Returns a signed PDF contained in the verifiable credential containing the credential VP added as an attachment in incremental update.
|
|
1710
1712
|
* @param {string} credentialId Verifiable Credential Identifier
|
|
@@ -2168,7 +2170,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2168
2170
|
* @param {*} [options] Override http request option.
|
|
2169
2171
|
* @throws {RequiredError}
|
|
2170
2172
|
*/
|
|
2171
|
-
issuerXadesSign(walletId: string, xml: File, xadesSignatureType: XadesSignatureType, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2173
|
+
issuerXadesSign(walletId: string, xml: File, xadesSignatureType: XadesSignatureType, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
2172
2174
|
/**
|
|
2173
2175
|
* Returns a signed PDF contained in the verifiable credential containing the credential VP added as an attachment in incremental update.
|
|
2174
2176
|
* @param {string} credentialId Verifiable Credential Identifier
|
|
@@ -2632,7 +2634,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
2632
2634
|
* @param {*} [options] Override http request option.
|
|
2633
2635
|
* @throws {RequiredError}
|
|
2634
2636
|
*/
|
|
2635
|
-
issuerXadesSign(walletId: string, xml: File, xadesSignatureType: XadesSignatureType, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
2637
|
+
issuerXadesSign(walletId: string, xml: File, xadesSignatureType: XadesSignatureType, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
2636
2638
|
/**
|
|
2637
2639
|
* Returns a signed PDF contained in the verifiable credential containing the credential VP added as an attachment in incremental update.
|
|
2638
2640
|
* @param {string} credentialId Verifiable Credential Identifier
|