reach-api-sdk 1.0.148 → 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.
@@ -22745,6 +22745,14 @@ type PermissionPatch = {
22745
22745
  * Gets or sets a value indicating whether a venue manager can add 3rd party booking links.
22746
22746
  */
22747
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;
22748
22756
  };
22749
22757
 
22750
22758
  /**
@@ -45260,6 +45268,14 @@ type UserPermissionPatch = {
45260
45268
  * Gets or sets a value indicating whether a user can add 3rd party booking links.
45261
45269
  */
45262
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;
45263
45279
  };
45264
45280
 
45265
45281
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reach-api-sdk",
3
- "version": "1.0.148",
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",
@@ -120091,6 +120091,14 @@ components:
120091
120091
  type: boolean
120092
120092
  description: Gets or sets a value indicating whether a venue manager can add 3rd party booking links.
120093
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
120094
120102
  additionalProperties: false
120095
120103
  description: Post model for permission updates.
120096
120104
  PermissionPost:
@@ -125970,6 +125978,14 @@ components:
125970
125978
  type: boolean
125971
125979
  description: Gets or sets a value indicating whether a user can add 3rd party booking links.
125972
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
125973
125989
  additionalProperties: false
125974
125990
  description: Post model for user permission updates.
125975
125991
  UserPermissionPost:
@@ -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
  };
@@ -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
  };