taxtank-core 0.30.34 → 0.30.36

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.
@@ -5,6 +5,7 @@ export declare class HoldingSaleForm extends AbstractForm<HoldingSale> implement
5
5
  private holding;
6
6
  constructor(sale: HoldingSale, holding: Holding, type: HoldingType);
7
7
  listenEvents(): void;
8
+ submit(): HoldingSale;
8
9
  private listenQuantityChanges;
9
10
  private listenPriceChanges;
10
11
  private updateGainFields;
@@ -1,5 +1,6 @@
1
1
  export declare enum HoldingMessagesEnum {
2
2
  CREATED = "Holding created successfully",
3
3
  UPDATED = "Holding updated successfully",
4
+ CONFIRM_DELETE = "Are you sure you want to delete this holding?",
4
5
  DELETED = "Holding deleted successfully"
5
6
  }
@@ -1,5 +1,6 @@
1
1
  export declare enum HoldingSaleMessagesEnum {
2
2
  CREATED = "Holding sold successfully",
3
3
  UPDATED = "Sale updated successfully",
4
+ CONFIRM_DELETE = "Are you sure you want to delete this holding sale?",
4
5
  DELETED = "Sale deleted successfully"
5
6
  }
@@ -1,5 +1,6 @@
1
1
  export declare enum HoldingTypeMessagesEnum {
2
2
  CREATED = "Holding type created successfully",
3
3
  UPDATED = "Holding type updated successfully",
4
+ CONFIRM_DELETE = "Are you sure you want to delete this holding type?",
4
5
  DELETED = "Holding type deleted successfully"
5
6
  }
@@ -5,7 +5,7 @@ export interface VideoSource {
5
5
  name: string;
6
6
  src: string;
7
7
  webContentLink: string;
8
- videoMediaMetaFields: {
8
+ videoMediaMetadata: {
9
9
  width: number;
10
10
  height: number;
11
11
  durationMillis: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.30.34",
3
+ "version": "0.30.36",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/compiler": "^15.1.5",