@seatsio/seatsio-types 0.3.0 → 0.3.1
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.
- package/dist/index.d.ts +1 -1
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -301,7 +301,7 @@ export interface EventManagerConfigOptions extends CommonConfigOptions, Extracte
|
|
|
301
301
|
* Show the technical label, if one of the label components was overridden via the Displayed Label field in Designer.
|
|
302
302
|
* @default false
|
|
303
303
|
*/
|
|
304
|
-
|
|
304
|
+
showTechnicalLabel?: boolean;
|
|
305
305
|
};
|
|
306
306
|
viewSettingsDefaults?: {
|
|
307
307
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seatsio/seatsio-types",
|
|
3
3
|
"description": "Type definitions for Seats.io",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"files": [
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"scripts": {
|
|
17
17
|
"build": "tsc",
|
|
18
|
+
"test": "yarn tsc src/index.test.ts",
|
|
18
19
|
"watch": "tsc --watch",
|
|
19
20
|
"bump-version": "node scripts/bumpVersion.mjs"
|
|
20
21
|
}
|