gastromemories-api-client
Advanced tools
Comparing version 1.0.24 to 1.0.25
@@ -250,3 +250,3 @@ export declare class ImagesClient { | ||
export declare class GetMemoriesWithPaginationFilters implements IGetMemoriesWithPaginationFilters { | ||
tags?: string[] | undefined; | ||
tags?: MemoryTagDto[] | undefined; | ||
search?: string | undefined; | ||
@@ -265,3 +265,3 @@ year?: string | undefined; | ||
export interface IGetMemoriesWithPaginationFilters { | ||
tags?: string[] | undefined; | ||
tags?: MemoryTagDto[] | undefined; | ||
search?: string | undefined; | ||
@@ -268,0 +268,0 @@ year?: string | undefined; |
@@ -1151,3 +1151,3 @@ "use strict"; | ||
var item = _a[_i]; | ||
this.tags.push(item); | ||
this.tags.push(MemoryTagDto.fromJS(item)); | ||
} | ||
@@ -1176,3 +1176,3 @@ } | ||
var item = _a[_i]; | ||
data["tags"].push(item); | ||
data["tags"].push(item.toJSON()); | ||
} | ||
@@ -1179,0 +1179,0 @@ } |
@@ -1238,3 +1238,3 @@ //---------------------- | ||
export class GetMemoriesWithPaginationFilters implements IGetMemoriesWithPaginationFilters { | ||
tags?: string[] | undefined; | ||
tags?: MemoryTagDto[] | undefined; | ||
search?: string | undefined; | ||
@@ -1262,3 +1262,3 @@ year?: string | undefined; | ||
for (let item of _data["tags"]) | ||
this.tags!.push(item); | ||
this.tags!.push(MemoryTagDto.fromJS(item)); | ||
} | ||
@@ -1287,3 +1287,3 @@ this.search = _data["search"]; | ||
for (let item of this.tags) | ||
data["tags"].push(item); | ||
data["tags"].push(item.toJSON()); | ||
} | ||
@@ -1302,3 +1302,3 @@ data["search"] = this.search; | ||
export interface IGetMemoriesWithPaginationFilters { | ||
tags?: string[] | undefined; | ||
tags?: MemoryTagDto[] | undefined; | ||
search?: string | undefined; | ||
@@ -1305,0 +1305,0 @@ year?: string | undefined; |
{ | ||
"name": "gastromemories-api-client", | ||
"version": "1.0.24", | ||
"version": "1.0.25", | ||
"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
127565