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; // Metadata como objeto dinámico
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 = 2; // Metadata como objeto dinámico
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easywork-common-lib",
3
- "version": "1.0.415",
3
+ "version": "1.0.416",
4
4
  "description": "Librería común de Easywork",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
package/scripts/bump.sh CHANGED
@@ -1,6 +1,6 @@
1
1
  git add .
2
2
  git commit -m "bump version"
3
3
  npm version patch
4
- npm build
4
+ npm run build
5
5
  npm publish
6
6
  git push
File without changes
File without changes