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
1,428 changes: 789 additions & 639 deletions build/Docframe.cs

Large diffs are not rendered by default.

1,690 changes: 1,214 additions & 476 deletions build/Docframe.d.ts

Large diffs are not rendered by default.

20,290 changes: 13,206 additions & 7,084 deletions build/Docframe.js

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions build/docframe.proto
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,10 @@ repeated ProtoDocumentElement _children = 1;

string url = 2;
repeated string comChannelUUIDs = 3;
string paragraphFormatUUID = 4;
string paragraphFormatInternalName = 5;
string urlCode = 6;
bool bindUrlCode = 7;
}
enum ProtoNumberType {
ARABIC = 0;
Expand Down
168 changes: 168 additions & 0 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

52 changes: 44 additions & 8 deletions docframepb/docframe.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module github.com/documatrix/docframe-types

go 1.26
go 1.26.3

require (
github.com/iancoleman/strcase v0.3.0
github.com/sirupsen/logrus v1.9.4
google.golang.org/protobuf v1.36.11
)

require golang.org/x/sys v0.42.0 // indirect
require golang.org/x/sys v0.44.0 // indirect
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ github.com/sirupsen/logrus v1.9.4 h1:TsZE7l11zFCLZnZ+teH4Umoq5BhEIfIzfRDZ1Uzql2w
github.com/sirupsen/logrus v1.9.4/go.mod h1:ftWc9WdOfJ0a92nsE2jF5u5ZwH8Bv2zdeOC42RjbV2g=
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
golang.org/x/sys v0.42.0 h1:omrd2nAlyT5ESRdCLYdm3+fMfNFE/+Rf4bDIQImRJeo=
golang.org/x/sys v0.42.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
golang.org/x/sys v0.44.0 h1:ildZl3J4uzeKP07r2F++Op7E9B29JRUy+a27EibtBTQ=
golang.org/x/sys v0.44.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
google.golang.org/protobuf v1.36.11 h1:fV6ZwhNocDyBLK0dj+fg8ektcVegBBuEolpbTQyBNVE=
google.golang.org/protobuf v1.36.11/go.mod h1:HTf+CrKn2C3g5S8VImy6tdcUvCska2kB7j23XfzDpco=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
Expand Down
Loading