@inceptionbg/main 2.0.38 → 2.0.40
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/index.d.ts +9 -9
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -100,12 +100,12 @@ interface IFileSignatory {
|
|
|
100
100
|
email?: string;
|
|
101
101
|
phoneNumber?: string;
|
|
102
102
|
personalIdentityNumber?: string;
|
|
103
|
-
signatureAppearance?:
|
|
103
|
+
signatureAppearance?: ISignatureAppearance;
|
|
104
104
|
visualizationProfile?: ISimpleObject;
|
|
105
105
|
signatureType?: ISignatureType;
|
|
106
106
|
}
|
|
107
107
|
type ISignatureType = 'ESIG' | 'ESEAL';
|
|
108
|
-
interface
|
|
108
|
+
interface ISignatureAppearance {
|
|
109
109
|
pageNumber?: string;
|
|
110
110
|
x?: string;
|
|
111
111
|
y?: string;
|
|
@@ -1579,17 +1579,17 @@ interface Props$4 {
|
|
|
1579
1579
|
declare const FileSignAppPortal: FC<Props$4>;
|
|
1580
1580
|
|
|
1581
1581
|
interface Props$3 {
|
|
1582
|
-
|
|
1583
|
-
|
|
1582
|
+
fileDownloadUrl: string;
|
|
1583
|
+
signatoryUuid: string;
|
|
1584
1584
|
signatories?: IFileSignatory[];
|
|
1585
1585
|
onClose: () => void;
|
|
1586
|
-
|
|
1586
|
+
setFormData: Dispatch<SetStateAction<IFileSignatory>>;
|
|
1587
1587
|
}
|
|
1588
|
-
declare const
|
|
1588
|
+
declare const PDFSignBox: FC<Props$3>;
|
|
1589
1589
|
|
|
1590
1590
|
interface Props$2 {
|
|
1591
|
-
formData:
|
|
1592
|
-
setFormData:
|
|
1591
|
+
formData: any;
|
|
1592
|
+
setFormData: (formData: any) => void;
|
|
1593
1593
|
fileDownloadUrl?: string;
|
|
1594
1594
|
signatories?: IFileSignatory[];
|
|
1595
1595
|
}
|
|
@@ -1612,4 +1612,4 @@ interface Props {
|
|
|
1612
1612
|
}
|
|
1613
1613
|
declare const IndexDataSearch: FC<Props>;
|
|
1614
1614
|
|
|
1615
|
-
export { ApprovalStatus, AxiosTokenHandler, Constraints, DocumentApprovalFetchOption, DocumentFetchOption, DocumentFileFetchOptions, DocumentFileSignDialog, DocumentIndicies, DocumentSendFetchOption, DocumentStatuses, ErrorContext, FileSignAppPortal, FilesDropzone, Header, IApproval, IApprovalSearch, IApprovalStep, IApprovalStepSearch, IBankAccount, IBankAccountSearch, IBusinessActivity, ICondition, IConditionIndexData, IConstraint, IContactPerson, ICountry, ICurrency, IDocument, IDocumentAny, IDocumentApproval, IDocumentApprovalStep, IDocumentApprovalVote, IDocumentFile, IDocumentFileParams, IDocumentIndex, IDocumentSearch, IDocumentSend, IDocumentSendSearch, IDocumentType, IEnv, IFile, IFileSignData, IFileSignatory, IFileType, IFileUpload, IInvoice, IInvoiceItem, ILatestApprovalProcess, IModule, IModuleId, IMunicipality, INote, INoteSearch, IOrganization, IOrganizationFetchOption, IOrganizationSearch, IOrganizationSettings, IPartner, IPartnerGroup, IPartnerType, IPartnersSearch, IPhaseGroup, IPhaseGroupSearch, IPlace, IPrivileges, IRole, IRolePrivilege, IRoute, ISidebarItem, ISignatureType, IToken, IUploadDocumentType, IUser, IUserSettings, IVoteSearch, IndexDataSearch, LoginPage, MainPageWrapper, ModuleIds, NoAccessInfo, NoMatchPage, OrganizationStatus, OrganizationStatuses,
|
|
1615
|
+
export { ApprovalStatus, AxiosTokenHandler, Constraints, DocumentApprovalFetchOption, DocumentFetchOption, DocumentFileFetchOptions, DocumentFileSignDialog, DocumentIndicies, DocumentSendFetchOption, DocumentStatuses, ErrorContext, FileSignAppPortal, FilesDropzone, Header, IApproval, IApprovalSearch, IApprovalStep, IApprovalStepSearch, IBankAccount, IBankAccountSearch, IBusinessActivity, ICondition, IConditionIndexData, IConstraint, IContactPerson, ICountry, ICurrency, IDocument, IDocumentAny, IDocumentApproval, IDocumentApprovalStep, IDocumentApprovalVote, IDocumentFile, IDocumentFileParams, IDocumentIndex, IDocumentSearch, IDocumentSend, IDocumentSendSearch, IDocumentType, IEnv, IFile, IFileSignData, IFileSignatory, IFileType, IFileUpload, IInvoice, IInvoiceItem, ILatestApprovalProcess, IModule, IModuleId, IMunicipality, INote, INoteSearch, IOrganization, IOrganizationFetchOption, IOrganizationSearch, IOrganizationSettings, IPartner, IPartnerGroup, IPartnerType, IPartnersSearch, IPhaseGroup, IPhaseGroupSearch, IPlace, IPrivileges, IRole, IRolePrivilege, IRoute, ISidebarItem, ISignatureType, IToken, IUploadDocumentType, IUser, IUserSettings, IVoteSearch, IndexDataSearch, LoginPage, MainPageWrapper, ModuleIds, NoAccessInfo, NoMatchPage, OrganizationStatus, OrganizationStatuses, PDFSignBox, PartnerGroupType, RolePrivilegeGroup, Router, SelectOrgPage, Sidebar, SignatureLocation, UserFetchOption, UserOrgContext, UserOrgProvider, decodeToken, envVars, getUser, login, logout, modules };
|