@factoringplus/pl-components-pack-v3 1.6.0-pre-01-signing → 1.6.0-pre-02-signing
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/dist/components/data/pl-signing/index.d.ts +2 -0
- package/dist/components/data/pl-signing/pl-signing.vue.d.ts +2 -0
- package/dist/pl-components-pack-v3.es.js +1060 -1055
- package/dist/pl-components-pack-v3.umd.js +21 -21
- package/dist/utils/callSignError.d.ts +2 -0
- package/package.json +1 -1
- package/dist/services/SigningService/index.d.ts +0 -52
- package/dist/services/SigningService/types/index.d.ts +0 -40
package/package.json
CHANGED
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
import { IFiles, ParsedCertificate, TagTranslation, ISignedFile, IValidatorError } from './types';
|
|
2
|
-
|
|
3
|
-
export declare const PlSigningService: import('../../install-function').SFCInstallWithContext<import('vue').DefineComponent<{
|
|
4
|
-
certificatesThumbprint: {
|
|
5
|
-
type: import('vue').PropType<string[]>;
|
|
6
|
-
default: () => any[];
|
|
7
|
-
};
|
|
8
|
-
loadingAdding: {
|
|
9
|
-
type: import('vue').PropType<boolean>;
|
|
10
|
-
default: boolean;
|
|
11
|
-
};
|
|
12
|
-
loadingSigning: {
|
|
13
|
-
type: import('vue').PropType<boolean>;
|
|
14
|
-
default: boolean;
|
|
15
|
-
};
|
|
16
|
-
}, {
|
|
17
|
-
addEs: (testFile: IFiles) => Promise<void>;
|
|
18
|
-
addSign: (files: IFiles[]) => void;
|
|
19
|
-
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
20
|
-
"update:modelValue": (...args: any[]) => void;
|
|
21
|
-
"system-setup-error": (...args: any[]) => void;
|
|
22
|
-
"click-action": (...args: any[]) => void;
|
|
23
|
-
"error-action": (...args: any[]) => void;
|
|
24
|
-
"no-files": (...args: any[]) => void;
|
|
25
|
-
"signing-end": (...args: any[]) => void;
|
|
26
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
27
|
-
certificatesThumbprint: {
|
|
28
|
-
type: import('vue').PropType<string[]>;
|
|
29
|
-
default: () => any[];
|
|
30
|
-
};
|
|
31
|
-
loadingAdding: {
|
|
32
|
-
type: import('vue').PropType<boolean>;
|
|
33
|
-
default: boolean;
|
|
34
|
-
};
|
|
35
|
-
loadingSigning: {
|
|
36
|
-
type: import('vue').PropType<boolean>;
|
|
37
|
-
default: boolean;
|
|
38
|
-
};
|
|
39
|
-
}>> & {
|
|
40
|
-
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
41
|
-
"onSystem-setup-error"?: (...args: any[]) => any;
|
|
42
|
-
"onClick-action"?: (...args: any[]) => any;
|
|
43
|
-
"onError-action"?: (...args: any[]) => any;
|
|
44
|
-
"onNo-files"?: (...args: any[]) => any;
|
|
45
|
-
"onSigning-end"?: (...args: any[]) => any;
|
|
46
|
-
}, {
|
|
47
|
-
certificatesThumbprint: string[];
|
|
48
|
-
loadingAdding: boolean;
|
|
49
|
-
loadingSigning: boolean;
|
|
50
|
-
}, {}>>;
|
|
51
|
-
export default PlSigningService;
|
|
52
|
-
export type { IFiles, ParsedCertificate, TagTranslation, ISignedFile, IValidatorError };
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
export declare interface IFiles {
|
|
2
|
-
attachmentId: string;
|
|
3
|
-
fileDigestAlgorithmOid: string;
|
|
4
|
-
fileDigest: string;
|
|
5
|
-
}
|
|
6
|
-
export declare interface ParsedCertificate {
|
|
7
|
-
value?: ParsedCertificate;
|
|
8
|
-
label: string;
|
|
9
|
-
description: string;
|
|
10
|
-
optionText: string;
|
|
11
|
-
companyInn: string;
|
|
12
|
-
companyName: string;
|
|
13
|
-
fio: string;
|
|
14
|
-
owner: string;
|
|
15
|
-
tooltipText: string;
|
|
16
|
-
thumbprint: string;
|
|
17
|
-
validFrom: string;
|
|
18
|
-
validTo: string;
|
|
19
|
-
isInnUL: boolean;
|
|
20
|
-
inn: string;
|
|
21
|
-
role: string;
|
|
22
|
-
}
|
|
23
|
-
export declare interface TagTranslation {
|
|
24
|
-
description: string;
|
|
25
|
-
title: string;
|
|
26
|
-
isTranslated: boolean;
|
|
27
|
-
}
|
|
28
|
-
export declare interface ISignedFile {
|
|
29
|
-
attachmentId: string;
|
|
30
|
-
signaturePem: string;
|
|
31
|
-
}
|
|
32
|
-
export declare interface IValidatorError {
|
|
33
|
-
data: {
|
|
34
|
-
code: string;
|
|
35
|
-
errors: {
|
|
36
|
-
errorMessage: string;
|
|
37
|
-
propertyName: string;
|
|
38
|
-
}[];
|
|
39
|
-
};
|
|
40
|
-
}
|