reach-api-sdk 1.0.126 → 1.0.127
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/reach-sdk.d.ts
CHANGED
|
@@ -21388,6 +21388,10 @@ type PermissionPatch = {
|
|
|
21388
21388
|
* Gets or sets a value indicating whether a venue manager has view advanced settings permissions.
|
|
21389
21389
|
*/
|
|
21390
21390
|
venueManagerEditAdvancedSettings?: boolean;
|
|
21391
|
+
/**
|
|
21392
|
+
* Gets or sets a value indicating whether a venue manager can add 3rd party booking links.
|
|
21393
|
+
*/
|
|
21394
|
+
venueManagerAllowBookingLinks?: boolean;
|
|
21391
21395
|
};
|
|
21392
21396
|
|
|
21393
21397
|
/**
|
package/package.json
CHANGED
|
@@ -107217,6 +107217,10 @@ components:
|
|
|
107217
107217
|
type: boolean
|
|
107218
107218
|
description: Gets or sets a value indicating whether a venue manager has view advanced settings permissions.
|
|
107219
107219
|
default: false
|
|
107220
|
+
venueManagerAllowBookingLinks:
|
|
107221
|
+
type: boolean
|
|
107222
|
+
description: Gets or sets a value indicating whether a venue manager can add 3rd party booking links.
|
|
107223
|
+
default: false
|
|
107220
107224
|
additionalProperties: false
|
|
107221
107225
|
description: Post model for permission updates.
|
|
107222
107226
|
PermissionPost:
|
|
@@ -59,4 +59,8 @@ export type PermissionPatch = {
|
|
|
59
59
|
* Gets or sets a value indicating whether a venue manager has view advanced settings permissions.
|
|
60
60
|
*/
|
|
61
61
|
venueManagerEditAdvancedSettings?: boolean;
|
|
62
|
+
/**
|
|
63
|
+
* Gets or sets a value indicating whether a venue manager can add 3rd party booking links.
|
|
64
|
+
*/
|
|
65
|
+
venueManagerAllowBookingLinks?: boolean;
|
|
62
66
|
};
|