@seamapi/types 1.540.0 → 1.542.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.
package/dist/connect.cjs CHANGED
@@ -4586,7 +4586,10 @@ var connected_account_custom_metadata = custom_metadata.optional().describe(
4586
4586
  var connect_webview_login_succeeded_event = connect_webview_event.extend({
4587
4587
  event_type: zod.z.literal("connect_webview.login_succeeded"),
4588
4588
  connected_account_id,
4589
- connected_account_custom_metadata
4589
+ connected_account_custom_metadata,
4590
+ customer_key: zod.z.string().optional().describe(
4591
+ "The customer key associated with this connect webview, if any."
4592
+ )
4590
4593
  }).describe(`
4591
4594
  ---
4592
4595
  route_path: /connect_webviews
@@ -4619,7 +4622,10 @@ var connect_webview_id = zod.z.string().uuid().describe(
4619
4622
  var connected_account_connected_event = connected_account_event.extend(
4620
4623
  {
4621
4624
  event_type: zod.z.literal("connected_account.connected"),
4622
- connect_webview_id
4625
+ connect_webview_id,
4626
+ customer_key: zod.z.string().optional().describe(
4627
+ "The customer key associated with this connected account, if any."
4628
+ )
4623
4629
  }
4624
4630
  ).describe(`
4625
4631
  ---
@@ -19615,6 +19621,10 @@ var openapi_default = {
19615
19621
  format: "date-time",
19616
19622
  type: "string"
19617
19623
  },
19624
+ customer_key: {
19625
+ description: "The customer key associated with this connected account, if any.",
19626
+ type: "string"
19627
+ },
19618
19628
  event_id: {
19619
19629
  description: "ID of the event.",
19620
19630
  format: "uuid",
@@ -20198,6 +20208,10 @@ var openapi_default = {
20198
20208
  format: "date-time",
20199
20209
  type: "string"
20200
20210
  },
20211
+ customer_key: {
20212
+ description: "The customer key associated with this connect webview, if any.",
20213
+ type: "string"
20214
+ },
20201
20215
  event_id: {
20202
20216
  description: "ID of the event.",
20203
20217
  format: "uuid",
@@ -31938,7 +31952,15 @@ var openapi_default = {
31938
31952
  required: false,
31939
31953
  schema: {
31940
31954
  items: {
31941
- enum: ["spaces", "devices", "acs_entrances"],
31955
+ enum: [
31956
+ "spaces",
31957
+ "devices",
31958
+ "acs_entrances",
31959
+ "access_grants",
31960
+ "access_methods",
31961
+ "instant_keys",
31962
+ "client_sessions"
31963
+ ],
31942
31964
  type: "string"
31943
31965
  },
31944
31966
  type: "array"
@@ -31950,7 +31972,15 @@ var openapi_default = {
31950
31972
  required: false,
31951
31973
  schema: {
31952
31974
  items: {
31953
- enum: ["spaces", "devices", "acs_entrances"],
31975
+ enum: [
31976
+ "spaces",
31977
+ "devices",
31978
+ "acs_entrances",
31979
+ "access_grants",
31980
+ "access_methods",
31981
+ "instant_keys",
31982
+ "client_sessions"
31983
+ ],
31954
31984
  type: "string"
31955
31985
  },
31956
31986
  type: "array"
@@ -32157,14 +32187,30 @@ var openapi_default = {
32157
32187
  },
32158
32188
  exclude: {
32159
32189
  items: {
32160
- enum: ["spaces", "devices", "acs_entrances"],
32190
+ enum: [
32191
+ "spaces",
32192
+ "devices",
32193
+ "acs_entrances",
32194
+ "access_grants",
32195
+ "access_methods",
32196
+ "instant_keys",
32197
+ "client_sessions"
32198
+ ],
32161
32199
  type: "string"
32162
32200
  },
32163
32201
  type: "array"
32164
32202
  },
32165
32203
  include: {
32166
32204
  items: {
32167
- enum: ["spaces", "devices", "acs_entrances"],
32205
+ enum: [
32206
+ "spaces",
32207
+ "devices",
32208
+ "acs_entrances",
32209
+ "access_grants",
32210
+ "access_methods",
32211
+ "instant_keys",
32212
+ "client_sessions"
32213
+ ],
32168
32214
  type: "string"
32169
32215
  },
32170
32216
  type: "array"