Skip to content

Commit

Permalink
Release alpha.8
Browse files Browse the repository at this point in the history
  • Loading branch information
lecoqlibre committed Jan 31, 2024
1 parent 8955f42 commit c0a5a5d
Show file tree
Hide file tree
Showing 16 changed files with 57 additions and 10 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- None.

## [1.0.0-alpha.8] - 2024-01-31

### Added

- Add `DefinedProduct` support for images url.

## [1.0.0-alpha.7] - 2024-01-13

### Fixed
Expand Down Expand Up @@ -114,6 +120,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial release.

[unreleased]: https://github.com/datafoodconsortium/connector-typescript/compare/v1.0.0-alpha.5...HEAD
[1.0.0-alpha.8]: https://github.com/datafoodconsortium/connector-typescript/compare/v1.0.0-alpha.7...v1.0.0-alpha.8
[1.0.0-alpha.7]: https://github.com/datafoodconsortium/connector-typescript/compare/v1.0.0-alpha.6...v1.0.0-alpha.7
[1.0.0-alpha.6]: https://github.com/datafoodconsortium/connector-typescript/compare/v1.0.0-alpha.5...v1.0.0-alpha.6
[1.0.0-alpha.5]: https://github.com/datafoodconsortium/connector-typescript/compare/v1.0.0-alpha.4...v1.0.0-alpha.5
Expand Down
3 changes: 3 additions & 0 deletions lib/DefinedProduct.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export default abstract class DefinedProduct extends SemanticObject implements I
other?: Semanticable;
name?: string;
description?: string;
images?: string[];
productType?: IProductType;
quantity?: IQuantity;
alcoholPercentage?: number;
Expand Down Expand Up @@ -77,5 +78,7 @@ export default abstract class DefinedProduct extends SemanticObject implements I
setQuantity(quantity: IQuantity): void;
addCatalogItem(catalogItem: ICatalogItem): void;
getCatalogItems(options?: IGetterOptions): Promise<Array<ICatalogItem>>;
addImage(url: string): void;
getImages(): string[];
}
//# sourceMappingURL=DefinedProduct.d.ts.map
2 changes: 1 addition & 1 deletion lib/DefinedProduct.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions lib/DefinedProduct.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/DefinedProduct.js.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions lib/IDefinedProduct.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,7 @@ export default interface IDefinedProduct extends Semanticable, Proposable, Descr
getProductType(): Promise<IProductType | undefined>;
setProductType(productType: IProductType): void;
removeClaim(claim: IClaim): void;
addImage(url: string): void;
getImages(): string[];
}
//# sourceMappingURL=IDefinedProduct.d.ts.map
2 changes: 1 addition & 1 deletion lib/IDefinedProduct.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lib/SuppliedProduct.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export default class SuppliedProduct extends DefinedProduct implements ISupplied
other?: Semanticable;
name?: string;
description?: string;
images?: string[];
productType?: IProductType;
quantity?: IQuantity;
alcoholPercentage?: number;
Expand Down
2 changes: 1 addition & 1 deletion lib/SuppliedProduct.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/SuppliedProduct.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit c0a5a5d

Please sign in to comment.