@platfformx/proto-contracts 1.2.14 → 1.2.15

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.
@@ -17,7 +17,6 @@ export interface DeleteFilesRequest {
17
17
  folder?: string | undefined;
18
18
  }
19
19
  export interface DeleteFilesResponse {
20
- success: boolean;
21
20
  deletedUrls: string[];
22
21
  }
23
22
  export declare const S3_SERVICE_V1_PACKAGE_NAME = "s3_service.v1";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platfformx/proto-contracts",
3
- "version": "1.2.14",
3
+ "version": "1.2.15",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -29,6 +29,5 @@ message DeleteFilesRequest {
29
29
  }
30
30
 
31
31
  message DeleteFilesResponse {
32
- bool success = 1;
33
- repeated string deleted_urls = 2;
32
+ repeated string deleted_urls = 1;
34
33
  }