Skip to content

Commit 06c2c46

Browse files
authored
Merge pull request #319 from diadoc/DDCORE-9224-signer-content
DDCORE-9224 SignerContent
2 parents 292b9b5 + 7ee975e commit 06c2c46

File tree

4 files changed

+336
-89
lines changed

4 files changed

+336
-89
lines changed

pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4-
54
<groupId>ru.kontur.diadoc</groupId>
65
<artifactId>diadocsdk</artifactId>
7-
<version>3.24.0</version>
6+
<version>3.24.1</version>
87

98
<packaging>jar</packaging>
109

proto/CloudSign.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import "Content_v2.proto";
33
package Diadoc.Api.Proto;
44

55
message CloudSignRequest {
6-
repeated CloudSignFile Files = 1;
6+
repeated CloudSignFile Files = 1;
77
}
88

99
message CloudSignFile {

proto/Events/DiadocMessage-PostApi.proto

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -446,6 +446,7 @@ message DraftDocumentToPatch {
446446
optional string ToBoxId = 2;
447447
optional Invoicing.Signer Signer = 3;
448448
repeated Invoicing.Signers.ExtendedSigner ExtendedSigner = 4;
449+
optional bytes SignerContent = 5;
449450
}
450451

451452
message ContentToPatch {
@@ -456,12 +457,14 @@ message ContentToPatch {
456457
optional string ToBoxId = 5;
457458
optional Invoicing.Signer Signer = 6;
458459
repeated Invoicing.Signers.ExtendedSigner ExtendedSigner = 7;
460+
optional bytes SignerContent = 8;
459461
}
460462

461463
message DocumentToPatch {
462464
required DocumentId DocumentId = 1;
463465
optional Invoicing.Signer Signer = 2;
464466
repeated Invoicing.Signers.ExtendedSigner ExtendedSigner = 3;
467+
optional bytes SignerContent = 4;
465468
}
466469

467470
message DocumentPatchedContent {

0 commit comments

Comments
 (0)