@seamapi/types 1.615.0 → 1.616.0

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.
@@ -31802,6 +31802,8 @@ export type Routes = {
31802
31802
  exclude?: boolean;
31803
31803
  /** Indicates whether the customer can manage reservations for their properties. */
31804
31804
  exclude_reservation_management?: boolean;
31805
+ /** Indicates whether the customer can manage staff for their properties. */
31806
+ exclude_staff_management?: boolean;
31805
31807
  };
31806
31808
  /** Configuration for the manage devices feature.
31807
31809
  ---
@@ -59114,6 +59116,8 @@ export type Routes = {
59114
59116
  exclude?: boolean;
59115
59117
  /** Indicates whether the customer can manage reservations for their properties. */
59116
59118
  exclude_reservation_management?: boolean;
59119
+ /** Indicates whether the customer can manage staff for their properties. */
59120
+ exclude_staff_management?: boolean;
59117
59121
  };
59118
59122
  /** Configuration for the manage devices feature.
59119
59123
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.615.0",
3
+ "version": "1.616.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -33,6 +33,12 @@ const base_manage_feature = base_feature.extend({
33
33
  .describe(
34
34
  'Indicates whether the customer can manage reservations for their properties.',
35
35
  ),
36
+ exclude_staff_management: z
37
+ .boolean()
38
+ .default(false)
39
+ .describe(
40
+ 'Indicates whether the customer can manage staff for their properties.',
41
+ ),
36
42
  })
37
43
 
38
44
  const base_organize_feature = base_feature
@@ -94,7 +100,11 @@ export const portal_configuration = portal_configuration_base
94
100
  features: {
95
101
  connect: { exclude: false },
96
102
  organize: { exclude: false },
97
- manage: { exclude: false, exclude_reservation_management: false },
103
+ manage: {
104
+ exclude: false,
105
+ exclude_reservation_management: false,
106
+ exclude_staff_management: false,
107
+ },
98
108
  manage_devices: {
99
109
  exclude: false,
100
110
  },
@@ -41027,6 +41027,7 @@ export default {
41027
41027
  manage: {
41028
41028
  exclude: false,
41029
41029
  exclude_reservation_management: false,
41030
+ exclude_staff_management: false,
41030
41031
  },
41031
41032
  manage_devices: { exclude: false },
41032
41033
  organize: { exclude: false },
@@ -41107,6 +41108,12 @@ export default {
41107
41108
  'Indicates whether the customer can manage reservations for their properties.',
41108
41109
  type: 'boolean',
41109
41110
  },
41111
+ exclude_staff_management: {
41112
+ default: false,
41113
+ description:
41114
+ 'Indicates whether the customer can manage staff for their properties.',
41115
+ type: 'boolean',
41116
+ },
41110
41117
  },
41111
41118
  type: 'object',
41112
41119
  },
@@ -52676,6 +52683,12 @@ export default {
52676
52683
  'Indicates whether the customer can manage reservations for their properties.',
52677
52684
  type: 'boolean',
52678
52685
  },
52686
+ exclude_staff_management: {
52687
+ default: false,
52688
+ description:
52689
+ 'Indicates whether the customer can manage staff for their properties.',
52690
+ type: 'boolean',
52691
+ },
52679
52692
  },
52680
52693
  type: 'object',
52681
52694
  },
@@ -52976,6 +52989,12 @@ export default {
52976
52989
  'Indicates whether the customer can manage reservations for their properties.',
52977
52990
  type: 'boolean',
52978
52991
  },
52992
+ exclude_staff_management: {
52993
+ default: false,
52994
+ description:
52995
+ 'Indicates whether the customer can manage staff for their properties.',
52996
+ type: 'boolean',
52997
+ },
52979
52998
  },
52980
52999
  type: 'object',
52981
53000
  },
@@ -36930,6 +36930,8 @@ export type Routes = {
36930
36930
  exclude?: boolean
36931
36931
  /** Indicates whether the customer can manage reservations for their properties. */
36932
36932
  exclude_reservation_management?: boolean
36933
+ /** Indicates whether the customer can manage staff for their properties. */
36934
+ exclude_staff_management?: boolean
36933
36935
  }
36934
36936
  /** Configuration for the manage devices feature.
36935
36937
  ---
@@ -70414,6 +70416,8 @@ export type Routes = {
70414
70416
  exclude?: boolean
70415
70417
  /** Indicates whether the customer can manage reservations for their properties. */
70416
70418
  exclude_reservation_management?: boolean
70419
+ /** Indicates whether the customer can manage staff for their properties. */
70420
+ exclude_staff_management?: boolean
70417
70421
  }
70418
70422
  /** Configuration for the manage devices feature.
70419
70423
  ---