reach-api-sdk 1.0.147 → 1.0.149

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.
@@ -22670,6 +22670,14 @@ type Permission = {
22670
22670
  * Gets or sets a value indicating whether a venue manager can add 3rd party booking links.
22671
22671
  */
22672
22672
  venueManagerAllowBookingLinks?: boolean;
22673
+ /**
22674
+ * Gets or sets a value indicating whether a venue manager has edit provider permissions.
22675
+ */
22676
+ venueManagerEditProvider?: boolean;
22677
+ /**
22678
+ * Gets or sets a value indicating whether a venue manager has add provider permissions.
22679
+ */
22680
+ venueManagerAddProvider?: boolean;
22673
22681
  };
22674
22682
 
22675
22683
  type PermissionPage = {
@@ -22737,6 +22745,14 @@ type PermissionPatch = {
22737
22745
  * Gets or sets a value indicating whether a venue manager can add 3rd party booking links.
22738
22746
  */
22739
22747
  venueManagerAllowBookingLinks?: boolean;
22748
+ /**
22749
+ * Gets or sets a value indicating whether a venue manager has edit provider permissions.
22750
+ */
22751
+ venueManagerEditProvider?: boolean;
22752
+ /**
22753
+ * Gets or sets a value indicating whether a venue manager has add provider permissions.
22754
+ */
22755
+ venueManagerAddProvider?: boolean;
22740
22756
  };
22741
22757
 
22742
22758
  /**
@@ -43615,6 +43631,10 @@ type DatabaseState = {
43615
43631
  * Gets or sets a value indicating whether location database records exist.
43616
43632
  */
43617
43633
  locationsExist: boolean;
43634
+ /**
43635
+ * Gets or sets a value indicating whether provider database records exist.
43636
+ */
43637
+ providersExist: boolean;
43618
43638
  /**
43619
43639
  * Gets or sets a value indicating whether orders database records exist.
43620
43640
  */
@@ -45173,6 +45193,14 @@ type UserPermission = {
45173
45193
  * Gets or sets a value indicating whether a user can add 3rd party booking links.
45174
45194
  */
45175
45195
  allowBookingLinks?: boolean;
45196
+ /**
45197
+ * Gets or sets a value indicating whether a venue manager has edit provider permissions.
45198
+ */
45199
+ editProvider?: boolean;
45200
+ /**
45201
+ * Gets or sets a value indicating whether a venue manager has add provider permissions.
45202
+ */
45203
+ addProvider?: boolean;
45176
45204
  };
45177
45205
 
45178
45206
  type UserPermissionPage = {
@@ -45240,6 +45268,14 @@ type UserPermissionPatch = {
45240
45268
  * Gets or sets a value indicating whether a user can add 3rd party booking links.
45241
45269
  */
45242
45270
  allowBookingLinks?: boolean;
45271
+ /**
45272
+ * Gets or sets a value indicating whether a venue manager has edit provider permissions.
45273
+ */
45274
+ editProvider?: boolean;
45275
+ /**
45276
+ * Gets or sets a value indicating whether a venue manager has add provider permissions.
45277
+ */
45278
+ addProvider?: boolean;
45243
45279
  };
45244
45280
 
45245
45281
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reach-api-sdk",
3
- "version": "1.0.147",
3
+ "version": "1.0.149",
4
4
  "description": "sdk for reach api",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -115701,6 +115701,7 @@ components:
115701
115701
  - multipleActivityTypesExist
115702
115702
  - ordersExist
115703
115703
  - paidOpportunitiesExist
115704
+ - providersExist
115704
115705
  - scheduledSessionsExist
115705
115706
  - sessionsExist
115706
115707
  - slotsExist
@@ -115741,6 +115742,10 @@ components:
115741
115742
  type: boolean
115742
115743
  description: Gets or sets a value indicating whether location database records exist.
115743
115744
  default: false
115745
+ providersExist:
115746
+ type: boolean
115747
+ description: Gets or sets a value indicating whether provider database records exist.
115748
+ default: false
115744
115749
  ordersExist:
115745
115750
  type: boolean
115746
115751
  description: Gets or sets a value indicating whether orders database records exist.
@@ -120000,6 +120005,14 @@ components:
120000
120005
  type: boolean
120001
120006
  description: Gets or sets a value indicating whether a venue manager can add 3rd party booking links.
120002
120007
  default: false
120008
+ venueManagerEditProvider:
120009
+ type: boolean
120010
+ description: Gets or sets a value indicating whether a venue manager has edit provider permissions.
120011
+ default: false
120012
+ venueManagerAddProvider:
120013
+ type: boolean
120014
+ description: Gets or sets a value indicating whether a venue manager has add provider permissions.
120015
+ default: false
120003
120016
  additionalProperties: false
120004
120017
  description: Represents permissions within the Reach application.
120005
120018
  PermissionPage:
@@ -120078,6 +120091,14 @@ components:
120078
120091
  type: boolean
120079
120092
  description: Gets or sets a value indicating whether a venue manager can add 3rd party booking links.
120080
120093
  default: false
120094
+ venueManagerEditProvider:
120095
+ type: boolean
120096
+ description: Gets or sets a value indicating whether a venue manager has edit provider permissions.
120097
+ default: false
120098
+ venueManagerAddProvider:
120099
+ type: boolean
120100
+ description: Gets or sets a value indicating whether a venue manager has add provider permissions.
120101
+ default: false
120081
120102
  additionalProperties: false
120082
120103
  description: Post model for permission updates.
120083
120104
  PermissionPost:
@@ -125871,6 +125892,14 @@ components:
125871
125892
  type: boolean
125872
125893
  description: Gets or sets a value indicating whether a user can add 3rd party booking links.
125873
125894
  default: false
125895
+ editProvider:
125896
+ type: boolean
125897
+ description: Gets or sets a value indicating whether a venue manager has edit provider permissions.
125898
+ default: false
125899
+ addProvider:
125900
+ type: boolean
125901
+ description: Gets or sets a value indicating whether a venue manager has add provider permissions.
125902
+ default: false
125874
125903
  additionalProperties: false
125875
125904
  description: Represents permissions within the Reach application.
125876
125905
  UserPermissionPage:
@@ -125949,6 +125978,14 @@ components:
125949
125978
  type: boolean
125950
125979
  description: Gets or sets a value indicating whether a user can add 3rd party booking links.
125951
125980
  default: false
125981
+ editProvider:
125982
+ type: boolean
125983
+ description: Gets or sets a value indicating whether a venue manager has edit provider permissions.
125984
+ default: false
125985
+ addProvider:
125986
+ type: boolean
125987
+ description: Gets or sets a value indicating whether a venue manager has add provider permissions.
125988
+ default: false
125952
125989
  additionalProperties: false
125953
125990
  description: Post model for user permission updates.
125954
125991
  UserPermissionPost:
@@ -35,6 +35,10 @@ export type DatabaseState = {
35
35
  * Gets or sets a value indicating whether location database records exist.
36
36
  */
37
37
  locationsExist: boolean;
38
+ /**
39
+ * Gets or sets a value indicating whether provider database records exist.
40
+ */
41
+ providersExist: boolean;
38
42
  /**
39
43
  * Gets or sets a value indicating whether orders database records exist.
40
44
  */
@@ -79,4 +79,12 @@ export type Permission = {
79
79
  * Gets or sets a value indicating whether a venue manager can add 3rd party booking links.
80
80
  */
81
81
  venueManagerAllowBookingLinks?: boolean;
82
+ /**
83
+ * Gets or sets a value indicating whether a venue manager has edit provider permissions.
84
+ */
85
+ venueManagerEditProvider?: boolean;
86
+ /**
87
+ * Gets or sets a value indicating whether a venue manager has add provider permissions.
88
+ */
89
+ venueManagerAddProvider?: boolean;
82
90
  };
@@ -63,4 +63,12 @@ export type PermissionPatch = {
63
63
  * Gets or sets a value indicating whether a venue manager can add 3rd party booking links.
64
64
  */
65
65
  venueManagerAllowBookingLinks?: boolean;
66
+ /**
67
+ * Gets or sets a value indicating whether a venue manager has edit provider permissions.
68
+ */
69
+ venueManagerEditProvider?: boolean;
70
+ /**
71
+ * Gets or sets a value indicating whether a venue manager has add provider permissions.
72
+ */
73
+ venueManagerAddProvider?: boolean;
66
74
  };
@@ -83,4 +83,12 @@ export type UserPermission = {
83
83
  * Gets or sets a value indicating whether a user can add 3rd party booking links.
84
84
  */
85
85
  allowBookingLinks?: boolean;
86
+ /**
87
+ * Gets or sets a value indicating whether a venue manager has edit provider permissions.
88
+ */
89
+ editProvider?: boolean;
90
+ /**
91
+ * Gets or sets a value indicating whether a venue manager has add provider permissions.
92
+ */
93
+ addProvider?: boolean;
86
94
  };
@@ -63,4 +63,12 @@ export type UserPermissionPatch = {
63
63
  * Gets or sets a value indicating whether a user can add 3rd party booking links.
64
64
  */
65
65
  allowBookingLinks?: boolean;
66
+ /**
67
+ * Gets or sets a value indicating whether a venue manager has edit provider permissions.
68
+ */
69
+ editProvider?: boolean;
70
+ /**
71
+ * Gets or sets a value indicating whether a venue manager has add provider permissions.
72
+ */
73
+ addProvider?: boolean;
66
74
  };