Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>ru.kontur.diadoc</groupId>
<artifactId>diadocsdk</artifactId>
<version>5.4.0</version>
<version>5.5.0</version>

<packaging>jar</packaging>

Expand Down
2 changes: 2 additions & 0 deletions proto/Docflow/DocflowV3.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import "Docflow/ResolutionDocflowV3.proto";
import "OuterDocflows/OuterDocflowStatus.proto";
import "TtGisFixationCancellationStatus.proto";
import "DocflowStatusV3.proto";
import "Docflow/OutOfWorkflowUniversalMessageDocflow.proto";

package Diadoc.Api.Proto.Docflow;

Expand Down Expand Up @@ -38,6 +39,7 @@ message SenderTitleDocflow
optional Timestamp DeliveredAt = 4;
optional RoamingNotification RoamingNotification = 5;
required Documents.SenderSignatureStatus SenderSignatureStatus = 6;
optional OutOfWorkflowUniversalMessageDocflow OutOfWorkflowUniversalMessageDocflow = 7;
}

message ConfirmationDocflow
Expand Down
2 changes: 2 additions & 0 deletions proto/Docflow/DocflowV4.proto
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import "DocumentId.proto";
import "Docflow/UniversalMessageAttachmentDocflow.proto";
import "Docflow/DocflowV3.proto";
import "Docflow/LastEvent.proto";
import "Docflow/OutOfWorkflowUniversalMessageDocflow.proto";

package Diadoc.Api.Proto.Docflow;

Expand Down Expand Up @@ -41,6 +42,7 @@ message ParticipantResponseDocflowV4
optional Timestamp DeliveredAt = 6;
required Documents.RecipientResponseStatus ResponseStatus = 7;
optional ConfirmationDocflowV4 Confirmation = 8;
optional OutOfWorkflowUniversalMessageDocflow OutOfWorkflowUniversalMessageDocflow = 9;
}

message SignatureRejectionDocflowV4
Expand Down
8 changes: 8 additions & 0 deletions proto/Docflow/OutOfWorkflowUniversalMessageDocflow.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import "Docflow/UniversalMessageAttachmentDocflow.proto";

package Diadoc.Api.Proto.Docflow;

message OutOfWorkflowUniversalMessageDocflow
{
repeated UniversalMessageAttachmentDocflow Messages = 1;
}
1 change: 1 addition & 0 deletions proto/UniversalMessage.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ message UniversalMessageInfo {
optional UniversalMessageCodeGroup CodeGroup = 1 [default = UnknownUniversalMessageCodeGroup];
repeated UniversalMessageEvent Events = 2;
required UniversalMessageCreator UniversalMessageCreator = 3;
optional bool IsOutOfWorkflow = 4 [default = false];
}

message UniversalMessageEvent {
Expand Down
465 changes: 341 additions & 124 deletions src/main/java/Diadoc/Api/Proto/Docflow/DocflowV3Protos.java

Large diffs are not rendered by default.

399 changes: 308 additions & 91 deletions src/main/java/Diadoc/Api/Proto/Docflow/DocflowV4Protos.java

Large diffs are not rendered by default.

Loading