chart2music
Advanced tools
Comparing version 1.9.0 to 1.10.0
@@ -0,4 +1,8 @@ | ||
declare enum AudioNotificationType { | ||
Annotation = "Annotation" | ||
} | ||
interface AudioEngine { | ||
masterGain: number; | ||
playDataPoint(frequency: number, panning: number, duration: number): void; | ||
playNotification?(notificationType: AudioNotificationType, panning?: number, duration?: number): void; | ||
} | ||
@@ -10,2 +14,3 @@ | ||
custom?: unknown; | ||
type?: "annotation"; | ||
} | ||
@@ -64,2 +69,3 @@ interface SimpleDataPoint extends DataPoint { | ||
options?: c2mOptions; | ||
info?: c2mInfo; | ||
}; | ||
@@ -115,2 +121,10 @@ type dataSet = { | ||
}; | ||
type c2mInfoMarker = { | ||
x: number; | ||
label: string; | ||
}; | ||
type c2mInfo = { | ||
notes?: string[]; | ||
annotations?: c2mInfoMarker[]; | ||
}; | ||
type c2mGolangReturn = { | ||
@@ -165,2 +179,3 @@ err: null | string; | ||
private _announcePointLabelFirst; | ||
private _info; | ||
constructor(input: SonifyTypes); | ||
@@ -167,0 +182,0 @@ get currentPoint(): SupportedDataPointType; |
{ | ||
"name": "chart2music", | ||
"version": "1.9.0", | ||
"version": "1.10.0", | ||
"main": "dist/index.js", | ||
@@ -53,16 +53,16 @@ "module": "dist/index.mjs", | ||
"@types/jest": "^29.2.1", | ||
"@typescript-eslint/eslint-plugin": "5.53.0", | ||
"@typescript-eslint/parser": "5.53.0", | ||
"@typescript-eslint/eslint-plugin": "5.55.0", | ||
"@typescript-eslint/parser": "5.55.0", | ||
"concurrently": "7.6.0", | ||
"depcheck": "^1.4.3", | ||
"eslint": "8.35.0", | ||
"eslint-config-prettier": "8.6.0", | ||
"eslint-plugin-jsdoc": "40.0.0", | ||
"eslint": "8.36.0", | ||
"eslint-config-prettier": "8.7.0", | ||
"eslint-plugin-jsdoc": "40.1.0", | ||
"http-server": "14.1.1", | ||
"husky": "8.0.3", | ||
"jest": "28.1.3", | ||
"jest-environment-jsdom": "29.4.3", | ||
"lint-staged": "13.1.2", | ||
"jest-environment-jsdom": "29.5.0", | ||
"lint-staged": "13.2.0", | ||
"prettier": "2.8.4", | ||
"rimraf": "4.1.2", | ||
"rimraf": "4.4.0", | ||
"rollup": "2.79.1", | ||
@@ -69,0 +69,0 @@ "rollup-plugin-dts": "4.2.3", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
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
198789
4664