@eo-sdk/client 10.0.0 → 10.1.0-rc.1
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/app/eo-client/about-state/about-state.component.d.ts.map +1 -1
- package/app/eo-client/dashboard/widgets/info-inbox-widget/info-inbox-setup/info-inbox-setup.component.d.ts.map +1 -1
- package/app/eo-client/dashboard/widgets/info-intray-widget/info-intray-setup/info-intray-setup.component.d.ts.map +1 -1
- package/app/eo-framework/actions/actions/signature-action/signature/signature.component.d.ts +13 -61
- package/app/eo-framework/actions/actions/signature-action/signature/signature.component.d.ts.map +1 -1
- package/app/eo-framework/app-shell/app-bar/app-bar.component.d.ts +5 -0
- package/app/eo-framework/app-shell/app-bar/app-bar.component.d.ts.map +1 -1
- package/app/eo-framework/app-shell/app-bar/side-bar/side-bar.component.d.ts +3 -7
- package/app/eo-framework/app-shell/app-bar/side-bar/side-bar.component.d.ts.map +1 -1
- package/app/eo-framework/form-elements/datetime-range/datetime-range.component.d.ts +2 -0
- package/app/eo-framework/form-elements/datetime-range/datetime-range.component.d.ts.map +1 -1
- package/app/eo-framework/frame/frame.component.d.ts +5 -0
- package/app/eo-framework/frame/frame.component.d.ts.map +1 -1
- package/app/eo-framework/ui/indexdata-summary/indexdata-summary.component.d.ts.map +1 -1
- package/assets/_default/i18n/de.json +3 -0
- package/assets/_default/i18n/en.json +3 -0
- package/esm2020/app/eo-client/about-state/about-state.component.mjs +3 -3
- package/esm2020/app/eo-client/dashboard/widgets/iframe-widget/iframe-setup/iframe-setup.component.mjs +4 -4
- package/esm2020/app/eo-client/dashboard/widgets/info-inbox-widget/info-inbox-setup/info-inbox-setup.component.mjs +16 -12
- package/esm2020/app/eo-client/dashboard/widgets/info-intray-widget/info-intray-setup/info-intray-setup.component.mjs +16 -13
- package/esm2020/app/eo-framework/actions/actions/signature-action/signature/signature.component.mjs +52 -31
- package/esm2020/app/eo-framework/app-shell/app-bar/app-bar.component.mjs +14 -3
- package/esm2020/app/eo-framework/app-shell/app-bar/side-bar/side-bar.component.mjs +6 -20
- package/esm2020/app/eo-framework/form-elements/datetime-range/datetime-range.component.mjs +8 -4
- package/esm2020/app/eo-framework/frame/frame.component.mjs +19 -1
- package/esm2020/app/eo-framework/object-details/object-details.component.mjs +3 -3
- package/esm2020/app/eo-framework/ui/indexdata-summary/indexdata-summary.component.mjs +5 -4
- package/esm2020/app/eo-framework/ui/signature-tab/signature-tab.component.mjs +3 -3
- package/esm2020/projects/eo-sdk/core/lib/service/signing/signing.service.mjs +33 -3
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.mjs +32 -2
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.mjs.map +1 -1
- package/fesm2015/eo-sdk-client.mjs +113 -67
- package/fesm2015/eo-sdk-client.mjs.map +1 -1
- package/fesm2020/eo-sdk-client-projects-eo-sdk-core.mjs +32 -2
- package/fesm2020/eo-sdk-client-projects-eo-sdk-core.mjs.map +1 -1
- package/fesm2020/eo-sdk-client.mjs +116 -71
- package/fesm2020/eo-sdk-client.mjs.map +1 -1
- package/package.json +2 -2
- package/projects/eo-sdk/core/lib/service/signing/signing.service.d.ts +7 -54
- package/projects/eo-sdk/core/lib/service/signing/signing.service.d.ts.map +1 -1
|
@@ -6149,6 +6149,14 @@ class SigningService {
|
|
|
6149
6149
|
const uri = `/request/${id}`;
|
|
6150
6150
|
return this.canSign ? this.backend.post(uri, signingData, '/signing') : of(null);
|
|
6151
6151
|
}
|
|
6152
|
+
/**
|
|
6153
|
+
* Gives the setup informations about the configured signing preferences
|
|
6154
|
+
* @returns Observable<any>
|
|
6155
|
+
*/
|
|
6156
|
+
getInfo() {
|
|
6157
|
+
const uri = `/info`;
|
|
6158
|
+
return this.canSign ? this.backend.get(uri, '/signing') : of(null);
|
|
6159
|
+
}
|
|
6152
6160
|
/**
|
|
6153
6161
|
* Cancels the signing process of a DMS Object
|
|
6154
6162
|
* @param id the id of the dms object
|
|
@@ -6159,8 +6167,8 @@ class SigningService {
|
|
|
6159
6167
|
const uri = `/cancel/${id}?comment=${comment}`;
|
|
6160
6168
|
return this.backend.put(uri, null, '/signing');
|
|
6161
6169
|
}
|
|
6162
|
-
getLocalizedSigningForm() {
|
|
6163
|
-
|
|
6170
|
+
getLocalizedSigningForm(phoneRequired = false) {
|
|
6171
|
+
let form = {
|
|
6164
6172
|
'size': 'small',
|
|
6165
6173
|
'readonly': false,
|
|
6166
6174
|
'name': 'yuvsigners',
|
|
@@ -6226,6 +6234,28 @@ class SigningService {
|
|
|
6226
6234
|
}
|
|
6227
6235
|
]
|
|
6228
6236
|
};
|
|
6237
|
+
if (phoneRequired) {
|
|
6238
|
+
form.elements.push({
|
|
6239
|
+
'size': 'small',
|
|
6240
|
+
'multiline': false,
|
|
6241
|
+
'readonly': false,
|
|
6242
|
+
'name': 'yuvsignerphone',
|
|
6243
|
+
'qname': 'yuvsigning.yuvsigners.yuvsignerphone',
|
|
6244
|
+
'hitname': 'yuvsigning.yuvsigners.yuvsignerphone',
|
|
6245
|
+
'label': this.translate.instant('eo.action.signature.yuvsigners.yuvsignerphone'),
|
|
6246
|
+
'type': 'STRING',
|
|
6247
|
+
'indexname': 'str_yuvsignerphone',
|
|
6248
|
+
'autocomplete': true,
|
|
6249
|
+
'selectedforenrichment': false,
|
|
6250
|
+
'maxlen': 100,
|
|
6251
|
+
'minlen': 0,
|
|
6252
|
+
'required': true,
|
|
6253
|
+
'sortable': true,
|
|
6254
|
+
'searchable': true,
|
|
6255
|
+
'description': '+49 17643521'
|
|
6256
|
+
});
|
|
6257
|
+
}
|
|
6258
|
+
return form;
|
|
6229
6259
|
}
|
|
6230
6260
|
signatureRequested(item) {
|
|
6231
6261
|
return !!item.data.yuvsigstatus;
|