@platfformx/proto-contracts 1.2.28 → 1.2.29

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.
@@ -58,7 +58,6 @@ export interface ProductResponse {
58
58
  updatedAt: string;
59
59
  tags?: string | undefined;
60
60
  popularityScore: number;
61
- createdAtTimestamp: number;
62
61
  }
63
62
  export declare const PRODUCT_V1_PACKAGE_NAME = "product.v1";
64
63
  export interface ProductServiceClient {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platfformx/proto-contracts",
3
- "version": "1.2.28",
3
+ "version": "1.2.29",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -83,6 +83,5 @@ message ProductResponse{
83
83
 
84
84
  optional string tags = 14;
85
85
  int32 popularity_score = 15;
86
- int64 created_at_timestamp = 16;
87
86
  }
88
87