reach-api-sdk 1.0.171 → 1.0.173
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
|
@@ -23494,6 +23494,10 @@ type Permission = {
|
|
|
23494
23494
|
* Gets or sets a value indicating whether a venue manager has add activities permissions.
|
|
23495
23495
|
*/
|
|
23496
23496
|
venueManagerAddActivities?: boolean;
|
|
23497
|
+
/**
|
|
23498
|
+
* Gets or sets a value indicating whether the user can create an activity from scratch (as opposed to using a template).
|
|
23499
|
+
*/
|
|
23500
|
+
venueManagerNewActivity?: boolean;
|
|
23497
23501
|
/**
|
|
23498
23502
|
* Gets or sets a value indicating whether a venue manager has add templates permissions.
|
|
23499
23503
|
*/
|
|
@@ -23569,6 +23573,10 @@ type PermissionPatch = {
|
|
|
23569
23573
|
* Gets or sets a value indicating whether a venue manager has add activities permissions.
|
|
23570
23574
|
*/
|
|
23571
23575
|
venueManagerAddActivities?: boolean;
|
|
23576
|
+
/**
|
|
23577
|
+
* Gets or sets a value indicating whether the user can create an activity from scratch (as opposed to using a template).
|
|
23578
|
+
*/
|
|
23579
|
+
venueManagerNewActivity?: boolean;
|
|
23572
23580
|
/**
|
|
23573
23581
|
* Gets or sets a value indicating whether a venue manager has add templates permissions.
|
|
23574
23582
|
*/
|
|
@@ -47653,6 +47661,10 @@ type UserPermission = {
|
|
|
47653
47661
|
* Gets or sets a value indicating whether a user has add activities permissions.
|
|
47654
47662
|
*/
|
|
47655
47663
|
addActivities?: boolean;
|
|
47664
|
+
/**
|
|
47665
|
+
* Gets or sets a value indicating whether the user can create an activity from scratch (as opposed to using a template).
|
|
47666
|
+
*/
|
|
47667
|
+
newActivity?: boolean;
|
|
47656
47668
|
/**
|
|
47657
47669
|
* Gets or sets a value indicating whether a user has add templates permissions.
|
|
47658
47670
|
*/
|
|
@@ -47728,6 +47740,10 @@ type UserPermissionPatch = {
|
|
|
47728
47740
|
* Gets or sets a value indicating whether a user has add activities permissions.
|
|
47729
47741
|
*/
|
|
47730
47742
|
addActivities?: boolean;
|
|
47743
|
+
/**
|
|
47744
|
+
* Gets or sets a value indicating whether the user can create an activity from scratch (as opposed to using a template).
|
|
47745
|
+
*/
|
|
47746
|
+
newActivity?: boolean;
|
|
47731
47747
|
/**
|
|
47732
47748
|
* Gets or sets a value indicating whether a user has add templates permissions.
|
|
47733
47749
|
*/
|
package/package.json
CHANGED
|
@@ -125467,6 +125467,10 @@ components:
|
|
|
125467
125467
|
type: boolean
|
|
125468
125468
|
description: Gets or sets a value indicating whether a venue manager has add activities permissions.
|
|
125469
125469
|
default: false
|
|
125470
|
+
venueManagerNewActivity:
|
|
125471
|
+
type: boolean
|
|
125472
|
+
description: Gets or sets a value indicating whether the user can create an activity from scratch (as opposed to using a template).
|
|
125473
|
+
default: false
|
|
125470
125474
|
venueManagerAddTemplates:
|
|
125471
125475
|
type: boolean
|
|
125472
125476
|
description: Gets or sets a value indicating whether a venue manager has add templates permissions.
|
|
@@ -125553,6 +125557,10 @@ components:
|
|
|
125553
125557
|
type: boolean
|
|
125554
125558
|
description: Gets or sets a value indicating whether a venue manager has add activities permissions.
|
|
125555
125559
|
default: false
|
|
125560
|
+
venueManagerNewActivity:
|
|
125561
|
+
type: boolean
|
|
125562
|
+
description: Gets or sets a value indicating whether the user can create an activity from scratch (as opposed to using a template).
|
|
125563
|
+
default: false
|
|
125556
125564
|
venueManagerAddTemplates:
|
|
125557
125565
|
type: boolean
|
|
125558
125566
|
description: Gets or sets a value indicating whether a venue manager has add templates permissions.
|
|
@@ -131896,6 +131904,10 @@ components:
|
|
|
131896
131904
|
type: boolean
|
|
131897
131905
|
description: Gets or sets a value indicating whether a user has add activities permissions.
|
|
131898
131906
|
default: false
|
|
131907
|
+
newActivity:
|
|
131908
|
+
type: boolean
|
|
131909
|
+
description: Gets or sets a value indicating whether the user can create an activity from scratch (as opposed to using a template).
|
|
131910
|
+
default: false
|
|
131899
131911
|
addTemplates:
|
|
131900
131912
|
type: boolean
|
|
131901
131913
|
description: Gets or sets a value indicating whether a user has add templates permissions.
|
|
@@ -131982,6 +131994,10 @@ components:
|
|
|
131982
131994
|
type: boolean
|
|
131983
131995
|
description: Gets or sets a value indicating whether a user has add activities permissions.
|
|
131984
131996
|
default: false
|
|
131997
|
+
newActivity:
|
|
131998
|
+
type: boolean
|
|
131999
|
+
description: Gets or sets a value indicating whether the user can create an activity from scratch (as opposed to using a template).
|
|
132000
|
+
default: false
|
|
131985
132001
|
addTemplates:
|
|
131986
132002
|
type: boolean
|
|
131987
132003
|
description: Gets or sets a value indicating whether a user has add templates permissions.
|
package/src/models/Permission.ts
CHANGED
|
@@ -35,6 +35,10 @@ export type Permission = {
|
|
|
35
35
|
* Gets or sets a value indicating whether a venue manager has add activities permissions.
|
|
36
36
|
*/
|
|
37
37
|
venueManagerAddActivities?: boolean;
|
|
38
|
+
/**
|
|
39
|
+
* Gets or sets a value indicating whether the user can create an activity from scratch (as opposed to using a template).
|
|
40
|
+
*/
|
|
41
|
+
venueManagerNewActivity?: boolean;
|
|
38
42
|
/**
|
|
39
43
|
* Gets or sets a value indicating whether a venue manager has add templates permissions.
|
|
40
44
|
*/
|
|
@@ -19,6 +19,10 @@ export type PermissionPatch = {
|
|
|
19
19
|
* Gets or sets a value indicating whether a venue manager has add activities permissions.
|
|
20
20
|
*/
|
|
21
21
|
venueManagerAddActivities?: boolean;
|
|
22
|
+
/**
|
|
23
|
+
* Gets or sets a value indicating whether the user can create an activity from scratch (as opposed to using a template).
|
|
24
|
+
*/
|
|
25
|
+
venueManagerNewActivity?: boolean;
|
|
22
26
|
/**
|
|
23
27
|
* Gets or sets a value indicating whether a venue manager has add templates permissions.
|
|
24
28
|
*/
|
|
@@ -39,6 +39,10 @@ export type UserPermission = {
|
|
|
39
39
|
* Gets or sets a value indicating whether a user has add activities permissions.
|
|
40
40
|
*/
|
|
41
41
|
addActivities?: boolean;
|
|
42
|
+
/**
|
|
43
|
+
* Gets or sets a value indicating whether the user can create an activity from scratch (as opposed to using a template).
|
|
44
|
+
*/
|
|
45
|
+
newActivity?: boolean;
|
|
42
46
|
/**
|
|
43
47
|
* Gets or sets a value indicating whether a user has add templates permissions.
|
|
44
48
|
*/
|
|
@@ -19,6 +19,10 @@ export type UserPermissionPatch = {
|
|
|
19
19
|
* Gets or sets a value indicating whether a user has add activities permissions.
|
|
20
20
|
*/
|
|
21
21
|
addActivities?: boolean;
|
|
22
|
+
/**
|
|
23
|
+
* Gets or sets a value indicating whether the user can create an activity from scratch (as opposed to using a template).
|
|
24
|
+
*/
|
|
25
|
+
newActivity?: boolean;
|
|
22
26
|
/**
|
|
23
27
|
* Gets or sets a value indicating whether a user has add templates permissions.
|
|
24
28
|
*/
|