gastromemories-api-client
Advanced tools
Comparing version 1.0.17 to 1.0.18
@@ -98,3 +98,3 @@ export declare class ImagesClient { | ||
tastinessScore?: number; | ||
imageId?: string; | ||
image?: ImageDto; | ||
constructor(data?: ICreateMemoryCommand); | ||
@@ -112,3 +112,3 @@ init(_data?: any): void; | ||
tastinessScore?: number; | ||
imageId?: string; | ||
image?: ImageDto; | ||
} | ||
@@ -115,0 +115,0 @@ export declare class MemoryImageUploadUrlDto implements IMemoryImageUploadUrlDto { |
@@ -686,3 +686,3 @@ "use strict"; | ||
this.tastinessScore = _data["tastinessScore"]; | ||
this.imageId = _data["imageId"]; | ||
this.image = _data["image"] ? ImageDto.fromJS(_data["image"]) : undefined; | ||
} | ||
@@ -710,3 +710,3 @@ }; | ||
data["tastinessScore"] = this.tastinessScore; | ||
data["imageId"] = this.imageId; | ||
data["image"] = this.image ? this.image.toJSON() : undefined; | ||
return data; | ||
@@ -713,0 +713,0 @@ }; |
@@ -664,3 +664,3 @@ //---------------------- | ||
tastinessScore?: number; | ||
imageId?: string; | ||
image?: ImageDto; | ||
@@ -688,3 +688,3 @@ constructor(data?: ICreateMemoryCommand) { | ||
this.tastinessScore = _data["tastinessScore"]; | ||
this.imageId = _data["imageId"]; | ||
this.image = _data["image"] ? ImageDto.fromJS(_data["image"]) : <any>undefined; | ||
} | ||
@@ -712,3 +712,3 @@ } | ||
data["tastinessScore"] = this.tastinessScore; | ||
data["imageId"] = this.imageId; | ||
data["image"] = this.image ? this.image.toJSON() : <any>undefined; | ||
return data; | ||
@@ -725,3 +725,3 @@ } | ||
tastinessScore?: number; | ||
imageId?: string; | ||
image?: ImageDto; | ||
} | ||
@@ -728,0 +728,0 @@ |
{ | ||
"name": "gastromemories-api-client", | ||
"version": "1.0.17", | ||
"version": "1.0.18", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
93559