easywork-common-lib 1.0.415 → 1.0.416
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.
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import "struct.proto";
|
|
2
|
-
|
|
3
1
|
// drive/proto/drive.proto
|
|
4
2
|
syntax = "proto3";
|
|
5
3
|
|
|
6
4
|
package drive;
|
|
7
5
|
|
|
6
|
+
import "google/protobuf/struct.proto";
|
|
7
|
+
|
|
8
8
|
message FolderObject {
|
|
9
9
|
string name = 1; // Nombre de la carpeta
|
|
10
|
-
google.protobuf.Struct metadata = 2; //
|
|
10
|
+
google.protobuf.Struct metadata = 2; // Campo metadata como objeto dinámico
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
message FolderData {
|
|
@@ -28,7 +28,7 @@ message CreateFolderRequest {
|
|
|
28
28
|
string name = 1;
|
|
29
29
|
string parentId = 2; // Opcional, puede ser nulo si es una carpeta raíz
|
|
30
30
|
repeated OwnerEntity ownersData = 3;
|
|
31
|
-
google.protobuf.Struct metadata =
|
|
31
|
+
google.protobuf.Struct metadata = 4; // Campo metadata como objeto dinámico
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
// Create Bulk Folder
|
package/package.json
CHANGED
package/scripts/bump.sh
CHANGED
|
File without changes
|
|
File without changes
|