@seamapi/types 1.444.1 → 1.445.1

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.
Files changed (26) hide show
  1. package/dist/connect.cjs +75 -73
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +114 -125
  4. package/dist/index.cjs +75 -73
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/access-grants/access-grant.js +12 -12
  7. package/lib/seam/connect/models/access-grants/access-method.js +1 -1
  8. package/lib/seam/connect/models/access-grants/requested-access-method.js +1 -1
  9. package/lib/seam/connect/models/connect-webviews/connect-webview.d.ts +3 -0
  10. package/lib/seam/connect/models/connect-webviews/connect-webview.js +4 -0
  11. package/lib/seam/connect/models/connect-webviews/connect-webview.js.map +1 -1
  12. package/lib/seam/connect/models/events/access-grants.js +6 -6
  13. package/lib/seam/connect/models/events/access-methods.js +1 -1
  14. package/lib/seam/connect/openapi.d.ts +6 -26
  15. package/lib/seam/connect/openapi.js +66 -65
  16. package/lib/seam/connect/openapi.js.map +1 -1
  17. package/lib/seam/connect/route-types.d.ts +105 -99
  18. package/package.json +1 -1
  19. package/src/lib/seam/connect/models/access-grants/access-grant.ts +12 -12
  20. package/src/lib/seam/connect/models/access-grants/access-method.ts +1 -1
  21. package/src/lib/seam/connect/models/access-grants/requested-access-method.ts +1 -1
  22. package/src/lib/seam/connect/models/connect-webviews/connect-webview.ts +4 -0
  23. package/src/lib/seam/connect/models/events/access-grants.ts +6 -6
  24. package/src/lib/seam/connect/models/events/access-methods.ts +1 -1
  25. package/src/lib/seam/connect/openapi.ts +71 -65
  26. package/src/lib/seam/connect/route-types.ts +105 -99
package/dist/connect.cjs CHANGED
@@ -4191,7 +4191,8 @@ var connect_webview = zod.z.object({
4191
4191
  ),
4192
4192
  selected_provider: zod.z.string().nullable().describe(
4193
4193
  "Selected provider of the Connect Webview, one of the [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews)."
4194
- )
4194
+ ),
4195
+ customer_key: zod.z.string().optional().describe("The customer key associated with this webview, if any.")
4195
4196
  }).describe(`
4196
4197
  ---
4197
4198
  route_path: /connect_webviews
@@ -4390,7 +4391,7 @@ var access_code_events = [
4390
4391
  unmanaged_access_code_removed_event
4391
4392
  ];
4392
4393
  var access_grant_event = common_event.extend({
4393
- access_grant_id: zod.z.string().uuid().describe("ID of the affected access grant.")
4394
+ access_grant_id: zod.z.string().uuid().describe("ID of the affected Access Grant.")
4394
4395
  });
4395
4396
  var access_grant_created_event = access_grant_event.extend({
4396
4397
  event_type: zod.z.literal("access_grant.created")
@@ -4398,7 +4399,7 @@ var access_grant_created_event = access_grant_event.extend({
4398
4399
  ---
4399
4400
  route_path: /access_grants
4400
4401
  ---
4401
- An access grant was created.
4402
+ An Access Grant was created.
4402
4403
  `);
4403
4404
  var access_grant_deleted_event = access_grant_event.extend({
4404
4405
  event_type: zod.z.literal("access_grant.deleted")
@@ -4406,7 +4407,7 @@ var access_grant_deleted_event = access_grant_event.extend({
4406
4407
  ---
4407
4408
  route_path: /access_grants
4408
4409
  ---
4409
- An access grant was deleted.
4410
+ An Access Grant was deleted.
4410
4411
  `);
4411
4412
  var access_grant_access_granted_to_all_doors_event = access_grant_event.extend({
4412
4413
  event_type: zod.z.literal("access_grant.access_granted_to_all_doors")
@@ -4414,7 +4415,7 @@ var access_grant_access_granted_to_all_doors_event = access_grant_event.extend({
4414
4415
  ---
4415
4416
  route_path: /access_grants
4416
4417
  ---
4417
- All access requested for an access grant was successfully granted.
4418
+ All access requested for an Access Grant was successfully granted.
4418
4419
  `);
4419
4420
  var acs_entrance_id = zod.z.string().uuid().describe(
4420
4421
  "ID of the affected [entrance](https://docs.seam.co/latest/capability-guides/retrieving-entrance-details)."
@@ -4426,7 +4427,7 @@ var access_grant_access_granted_to_door_event = access_grant_event.extend({
4426
4427
  ---
4427
4428
  route_path: /access_grants
4428
4429
  ---
4429
- Access requested as part of an access grant to a particular door was successfully granted.
4430
+ Access requested as part of an Access Grant to a particular door was successfully granted.
4430
4431
  `);
4431
4432
  var access_grant_access_to_door_lost_event = access_grant_event.extend(
4432
4433
  {
@@ -4437,7 +4438,7 @@ var access_grant_access_to_door_lost_event = access_grant_event.extend(
4437
4438
  ---
4438
4439
  route_path: /access_grants
4439
4440
  ---
4440
- Access to a particular door that was requested as part of an access grant was lost.
4441
+ Access to a particular door that was requested as part of an Access Grant was lost.
4441
4442
  `);
4442
4443
  var access_grant_events = [
4443
4444
  access_grant_created_event,
@@ -4487,7 +4488,7 @@ var access_method_reissued_event = access_method_event.extend({
4487
4488
  ---
4488
4489
  route_path: /access_methods
4489
4490
  ---
4490
- An access method was reissued due to an access grant update.
4491
+ An access method was reissued due to an Access Grant update.
4491
4492
  `);
4492
4493
  var access_method_events = [
4493
4494
  access_method_issued_event,
@@ -7093,34 +7094,34 @@ var openapi_default = {
7093
7094
  "x-route-path": "/access_codes"
7094
7095
  },
7095
7096
  access_grant: {
7096
- description: "Represents an access grant. Access grants enable you to grant a user identity access to spaces, entrances, and devices through one or more access methods, such as mobile keys, plastic cards, and PIN codes. You can create an access grant for an existing user identity, or you can create a new user identity *while* creating the new access grant.",
7097
+ description: "Represents an Access Grant. Access Grants enable you to grant a user identity access to spaces, entrances, and devices through one or more access methods, such as mobile keys, plastic cards, and PIN codes. You can create an Access Grant for an existing user identity, or you can create a new user identity *while* creating the new Access Grant.",
7097
7098
  properties: {
7098
7099
  access_grant_id: {
7099
- description: "ID of the access grant.",
7100
+ description: "ID of the Access Grant.",
7100
7101
  format: "uuid",
7101
7102
  type: "string"
7102
7103
  },
7103
7104
  access_method_ids: {
7104
- description: "IDs of the access methods created for the access grant.",
7105
+ description: "IDs of the access methods created for the Access Grant.",
7105
7106
  items: { format: "uuid", type: "string" },
7106
7107
  type: "array"
7107
7108
  },
7108
7109
  created_at: {
7109
- description: "Date and time at which the access grant was created.",
7110
+ description: "Date and time at which the Access Grant was created.",
7110
7111
  format: "date-time",
7111
7112
  type: "string"
7112
7113
  },
7113
7114
  display_name: {
7114
- description: "Display name of the access grant.",
7115
+ description: "Display name of the Access Grant.",
7115
7116
  type: "string"
7116
7117
  },
7117
7118
  ends_at: {
7118
- description: "Date and time at which the access grant ends.",
7119
+ description: "Date and time at which the Access Grant ends.",
7119
7120
  format: "date-time",
7120
7121
  type: "string"
7121
7122
  },
7122
7123
  instant_key_url: {
7123
- description: "Instant Key URL. Only returned if the access grant has a single mobile_key access_method. ",
7124
+ description: "Instant Key URL. Only returned if the Access Grant has a single mobile_key access_method. ",
7124
7125
  format: "uri",
7125
7126
  type: "string"
7126
7127
  },
@@ -7131,7 +7132,7 @@ var openapi_default = {
7131
7132
  "x-deprecated": "Use `space_ids`."
7132
7133
  },
7133
7134
  requested_access_methods: {
7134
- description: "Access methods that the user requested for the access grant.",
7135
+ description: "Access methods that the user requested for the Access Grant.",
7135
7136
  items: {
7136
7137
  properties: {
7137
7138
  created_access_method_ids: {
@@ -7140,7 +7141,7 @@ var openapi_default = {
7140
7141
  type: "array"
7141
7142
  },
7142
7143
  created_at: {
7143
- description: "Date and time at which the requested access method was added to the access grant.",
7144
+ description: "Date and time at which the requested access method was added to the Access Grant.",
7144
7145
  format: "date-time",
7145
7146
  type: "string"
7146
7147
  },
@@ -7165,22 +7166,22 @@ var openapi_default = {
7165
7166
  type: "array"
7166
7167
  },
7167
7168
  space_ids: {
7168
- description: "IDs of the spaces to which the access grant gives access.",
7169
+ description: "IDs of the spaces to which the Access Grant gives access.",
7169
7170
  items: { format: "uuid", type: "string" },
7170
7171
  type: "array"
7171
7172
  },
7172
7173
  starts_at: {
7173
- description: "Date and time at which the access grant starts.",
7174
+ description: "Date and time at which the Access Grant starts.",
7174
7175
  format: "date-time",
7175
7176
  type: "string"
7176
7177
  },
7177
7178
  user_identity_id: {
7178
- description: "ID of user identity to which the access grant gives access.",
7179
+ description: "ID of user identity to which the Access Grant gives access.",
7179
7180
  format: "uuid",
7180
7181
  type: "string"
7181
7182
  },
7182
7183
  workspace_id: {
7183
- description: "ID of the Seam workspace associated with the access grant.",
7184
+ description: "ID of the Seam workspace associated with the Access Grant.",
7184
7185
  format: "uuid",
7185
7186
  type: "string"
7186
7187
  }
@@ -7201,7 +7202,7 @@ var openapi_default = {
7201
7202
  "x-route-path": "/access_grants"
7202
7203
  },
7203
7204
  access_method: {
7204
- description: "Represents an access method for an access grant. Access methods describe the modes of access, such as PIN codes, plastic cards, and mobile keys. For a mobile key, the access method also stores the URL for the associated Instant Key.",
7205
+ description: "Represents an access method for an Access Grant. Access methods describe the modes of access, such as PIN codes, plastic cards, and mobile keys. For a mobile key, the access method also stores the URL for the associated Instant Key.",
7205
7206
  properties: {
7206
7207
  access_method_id: {
7207
7208
  description: "ID of the access method.",
@@ -13157,6 +13158,10 @@ var openapi_default = {
13157
13158
  nullable: true,
13158
13159
  type: "string"
13159
13160
  },
13161
+ customer_key: {
13162
+ description: "The customer key associated with this webview, if any.",
13163
+ type: "string"
13164
+ },
13160
13165
  device_selection_mode: {
13161
13166
  enum: ["none", "single", "multiple"],
13162
13167
  type: "string"
@@ -18168,10 +18173,10 @@ var openapi_default = {
18168
18173
  "x-route-path": "/access_codes/unmanaged"
18169
18174
  },
18170
18175
  {
18171
- description: "An access grant was created.",
18176
+ description: "An Access Grant was created.",
18172
18177
  properties: {
18173
18178
  access_grant_id: {
18174
- description: "ID of the affected access grant.",
18179
+ description: "ID of the affected Access Grant.",
18175
18180
  format: "uuid",
18176
18181
  type: "string"
18177
18182
  },
@@ -18209,10 +18214,10 @@ var openapi_default = {
18209
18214
  "x-route-path": "/access_grants"
18210
18215
  },
18211
18216
  {
18212
- description: "An access grant was deleted.",
18217
+ description: "An Access Grant was deleted.",
18213
18218
  properties: {
18214
18219
  access_grant_id: {
18215
- description: "ID of the affected access grant.",
18220
+ description: "ID of the affected Access Grant.",
18216
18221
  format: "uuid",
18217
18222
  type: "string"
18218
18223
  },
@@ -18250,10 +18255,10 @@ var openapi_default = {
18250
18255
  "x-route-path": "/access_grants"
18251
18256
  },
18252
18257
  {
18253
- description: "All access requested for an access grant was successfully granted.",
18258
+ description: "All access requested for an Access Grant was successfully granted.",
18254
18259
  properties: {
18255
18260
  access_grant_id: {
18256
- description: "ID of the affected access grant.",
18261
+ description: "ID of the affected Access Grant.",
18257
18262
  format: "uuid",
18258
18263
  type: "string"
18259
18264
  },
@@ -18294,10 +18299,10 @@ var openapi_default = {
18294
18299
  "x-route-path": "/access_grants"
18295
18300
  },
18296
18301
  {
18297
- description: "Access requested as part of an access grant to a particular door was successfully granted.",
18302
+ description: "Access requested as part of an Access Grant to a particular door was successfully granted.",
18298
18303
  properties: {
18299
18304
  access_grant_id: {
18300
- description: "ID of the affected access grant.",
18305
+ description: "ID of the affected Access Grant.",
18301
18306
  format: "uuid",
18302
18307
  type: "string"
18303
18308
  },
@@ -18344,10 +18349,10 @@ var openapi_default = {
18344
18349
  "x-route-path": "/access_grants"
18345
18350
  },
18346
18351
  {
18347
- description: "Access to a particular door that was requested as part of an access grant was lost.",
18352
+ description: "Access to a particular door that was requested as part of an Access Grant was lost.",
18348
18353
  properties: {
18349
18354
  access_grant_id: {
18350
- description: "ID of the affected access grant.",
18355
+ description: "ID of the affected Access Grant.",
18351
18356
  format: "uuid",
18352
18357
  type: "string"
18353
18358
  },
@@ -18561,7 +18566,7 @@ var openapi_default = {
18561
18566
  "x-route-path": "/access_methods"
18562
18567
  },
18563
18568
  {
18564
- description: "An access method was reissued due to an access grant update.",
18569
+ description: "An access method was reissued due to an Access Grant update.",
18565
18570
  properties: {
18566
18571
  access_method_id: {
18567
18572
  description: "ID of the affected access method.",
@@ -30214,7 +30219,7 @@ var openapi_default = {
30214
30219
  },
30215
30220
  "/access_grants/create": {
30216
30221
  post: {
30217
- description: "Creates a new access grant.",
30222
+ description: "Creates a new Access Grant.",
30218
30223
  operationId: "accessGrantsCreatePost",
30219
30224
  requestBody: {
30220
30225
  content: {
@@ -30381,7 +30386,7 @@ var openapi_default = {
30381
30386
  },
30382
30387
  "/access_grants/delete": {
30383
30388
  delete: {
30384
- description: "Delete an access grant.",
30389
+ description: "Delete an Access Grant.",
30385
30390
  operationId: "accessGrantsDeleteDelete",
30386
30391
  parameters: [
30387
30392
  {
@@ -30389,7 +30394,7 @@ var openapi_default = {
30389
30394
  name: "access_grant_id",
30390
30395
  required: true,
30391
30396
  schema: {
30392
- description: "ID of access grant to delete.",
30397
+ description: "ID of Access Grant to delete.",
30393
30398
  format: "uuid",
30394
30399
  type: "string"
30395
30400
  }
@@ -30426,7 +30431,7 @@ var openapi_default = {
30426
30431
  "x-title": "Delete an Access Grant"
30427
30432
  },
30428
30433
  post: {
30429
- description: "Delete an access grant.",
30434
+ description: "Delete an Access Grant.",
30430
30435
  operationId: "accessGrantsDeletePost",
30431
30436
  requestBody: {
30432
30437
  content: {
@@ -30434,7 +30439,7 @@ var openapi_default = {
30434
30439
  schema: {
30435
30440
  properties: {
30436
30441
  access_grant_id: {
30437
- description: "ID of access grant to delete.",
30442
+ description: "ID of Access Grant to delete.",
30438
30443
  format: "uuid",
30439
30444
  type: "string"
30440
30445
  }
@@ -30478,7 +30483,7 @@ var openapi_default = {
30478
30483
  },
30479
30484
  "/access_grants/get": {
30480
30485
  get: {
30481
- description: "Get an access grant.",
30486
+ description: "Get an Access Grant.",
30482
30487
  operationId: "accessGrantsGetGet",
30483
30488
  parameters: [
30484
30489
  {
@@ -30486,7 +30491,7 @@ var openapi_default = {
30486
30491
  name: "access_grant_id",
30487
30492
  required: true,
30488
30493
  schema: {
30489
- description: "ID of access grant to get.",
30494
+ description: "ID of Access Grant to get.",
30490
30495
  format: "uuid",
30491
30496
  type: "string"
30492
30497
  }
@@ -30527,7 +30532,7 @@ var openapi_default = {
30527
30532
  "x-title": "Get an Access Grant"
30528
30533
  },
30529
30534
  post: {
30530
- description: "Get an access grant.",
30535
+ description: "Get an Access Grant.",
30531
30536
  operationId: "accessGrantsGetPost",
30532
30537
  requestBody: {
30533
30538
  content: {
@@ -30535,7 +30540,7 @@ var openapi_default = {
30535
30540
  schema: {
30536
30541
  properties: {
30537
30542
  access_grant_id: {
30538
- description: "ID of access grant to get.",
30543
+ description: "ID of Access Grant to get.",
30539
30544
  format: "uuid",
30540
30545
  type: "string"
30541
30546
  }
@@ -30583,14 +30588,14 @@ var openapi_default = {
30583
30588
  },
30584
30589
  "/access_grants/list": {
30585
30590
  get: {
30586
- description: "Get an access grant.",
30591
+ description: "Gets an Access Grant.",
30587
30592
  operationId: "accessGrantsListGet",
30588
30593
  parameters: [
30589
30594
  {
30590
30595
  in: "query",
30591
30596
  name: "user_identity_id",
30592
30597
  schema: {
30593
- description: "ID of user identity to filter list of access grants by.",
30598
+ description: "ID of user identity by which you want to filter the list of Access Grants.",
30594
30599
  format: "uuid",
30595
30600
  type: "string"
30596
30601
  }
@@ -30599,7 +30604,7 @@ var openapi_default = {
30599
30604
  in: "query",
30600
30605
  name: "acs_system_id",
30601
30606
  schema: {
30602
- description: "ID of system to filter list of access grants by.",
30607
+ description: "ID of the access system by which you want to filter the list of Access Grants.",
30603
30608
  format: "uuid",
30604
30609
  type: "string"
30605
30610
  }
@@ -30608,7 +30613,7 @@ var openapi_default = {
30608
30613
  in: "query",
30609
30614
  name: "acs_entrance_id",
30610
30615
  schema: {
30611
- description: "ID of entrance to filter list of access grants by.",
30616
+ description: "ID of the entrance by which you want to filter the list of Access Grants.",
30612
30617
  format: "uuid",
30613
30618
  type: "string"
30614
30619
  }
@@ -30627,7 +30632,7 @@ var openapi_default = {
30627
30632
  in: "query",
30628
30633
  name: "space_id",
30629
30634
  schema: {
30630
- description: "ID of space to filter list of access grants by.",
30635
+ description: "ID of the space by which you want to filter the list of Access Grants.",
30631
30636
  format: "uuid",
30632
30637
  type: "string"
30633
30638
  }
@@ -30671,7 +30676,7 @@ var openapi_default = {
30671
30676
  "x-title": "List Access Grants"
30672
30677
  },
30673
30678
  post: {
30674
- description: "Get an access grant.",
30679
+ description: "Gets an Access Grant.",
30675
30680
  operationId: "accessGrantsListPost",
30676
30681
  requestBody: {
30677
30682
  content: {
@@ -30679,12 +30684,12 @@ var openapi_default = {
30679
30684
  schema: {
30680
30685
  properties: {
30681
30686
  acs_entrance_id: {
30682
- description: "ID of entrance to filter list of access grants by.",
30687
+ description: "ID of the entrance by which you want to filter the list of Access Grants.",
30683
30688
  format: "uuid",
30684
30689
  type: "string"
30685
30690
  },
30686
30691
  acs_system_id: {
30687
- description: "ID of system to filter list of access grants by.",
30692
+ description: "ID of the access system by which you want to filter the list of Access Grants.",
30688
30693
  format: "uuid",
30689
30694
  type: "string"
30690
30695
  },
@@ -30695,12 +30700,12 @@ var openapi_default = {
30695
30700
  "x-deprecated": "Use `space_id`."
30696
30701
  },
30697
30702
  space_id: {
30698
- description: "ID of space to filter list of access grants by.",
30703
+ description: "ID of the space by which you want to filter the list of Access Grants.",
30699
30704
  format: "uuid",
30700
30705
  type: "string"
30701
30706
  },
30702
30707
  user_identity_id: {
30703
- description: "ID of user identity to filter list of access grants by.",
30708
+ description: "ID of user identity by which you want to filter the list of Access Grants.",
30704
30709
  format: "uuid",
30705
30710
  type: "string"
30706
30711
  }
@@ -30750,7 +30755,7 @@ var openapi_default = {
30750
30755
  },
30751
30756
  "/access_grants/update": {
30752
30757
  patch: {
30753
- description: "Updates an existing access grant's time window.",
30758
+ description: "Updates an existing Access Grant's time window.",
30754
30759
  operationId: "accessGrantsUpdatePatch",
30755
30760
  requestBody: {
30756
30761
  content: {
@@ -30758,7 +30763,7 @@ var openapi_default = {
30758
30763
  schema: {
30759
30764
  properties: {
30760
30765
  access_grant_id: {
30761
- description: "ID of the access grant to update.",
30766
+ description: "ID of the Access Grant to update.",
30762
30767
  format: "uuid",
30763
30768
  type: "string"
30764
30769
  },
@@ -30812,7 +30817,7 @@ var openapi_default = {
30812
30817
  "x-title": "Update an Access Grant"
30813
30818
  },
30814
30819
  post: {
30815
- description: "Updates an existing access grant's time window.",
30820
+ description: "Updates an existing Access Grant's time window.",
30816
30821
  operationId: "accessGrantsUpdatePost",
30817
30822
  requestBody: {
30818
30823
  content: {
@@ -30820,7 +30825,7 @@ var openapi_default = {
30820
30825
  schema: {
30821
30826
  properties: {
30822
30827
  access_grant_id: {
30823
- description: "ID of the access grant to update.",
30828
+ description: "ID of the Access Grant to update.",
30824
30829
  format: "uuid",
30825
30830
  type: "string"
30826
30831
  },
@@ -30876,7 +30881,7 @@ var openapi_default = {
30876
30881
  },
30877
30882
  "/access_methods/delete": {
30878
30883
  delete: {
30879
- description: "Delete an access method.",
30884
+ description: "Deletes an access method.",
30880
30885
  operationId: "accessMethodsDeleteDelete",
30881
30886
  parameters: [
30882
30887
  {
@@ -30920,7 +30925,7 @@ var openapi_default = {
30920
30925
  "x-title": "Delete an Access Method"
30921
30926
  },
30922
30927
  post: {
30923
- description: "Delete an access method.",
30928
+ description: "Deletes an access method.",
30924
30929
  operationId: "accessMethodsDeletePost",
30925
30930
  requestBody: {
30926
30931
  content: {
@@ -30971,7 +30976,7 @@ var openapi_default = {
30971
30976
  },
30972
30977
  "/access_methods/encode": {
30973
30978
  post: {
30974
- description: "Encodes an existing [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) onto a plastic card placed on the specified [encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners).",
30979
+ description: "Encodes an existing access method onto a plastic card placed on the specified [encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners).",
30975
30980
  operationId: "accessMethodsEncodePost",
30976
30981
  requestBody: {
30977
30982
  content: {
@@ -30984,7 +30989,7 @@ var openapi_default = {
30984
30989
  type: "string"
30985
30990
  },
30986
30991
  acs_encoder_id: {
30987
- description: "ID of the `acs_encoder` to use to encode the `acs_credential`.",
30992
+ description: "ID of the `acs_encoder` to use to encode the `access_method`.",
30988
30993
  format: "uuid",
30989
30994
  type: "string"
30990
30995
  }
@@ -31033,7 +31038,7 @@ var openapi_default = {
31033
31038
  },
31034
31039
  "/access_methods/get": {
31035
31040
  get: {
31036
- description: "Get an access method.",
31041
+ description: "Gets an access method.",
31037
31042
  operationId: "accessMethodsGetGet",
31038
31043
  parameters: [
31039
31044
  {
@@ -31083,7 +31088,7 @@ var openapi_default = {
31083
31088
  "x-title": "Get an Access Method"
31084
31089
  },
31085
31090
  post: {
31086
- description: "Get an access method.",
31091
+ description: "Gets an access method.",
31087
31092
  operationId: "accessMethodsGetPost",
31088
31093
  requestBody: {
31089
31094
  content: {
@@ -31140,7 +31145,7 @@ var openapi_default = {
31140
31145
  },
31141
31146
  "/access_methods/list": {
31142
31147
  get: {
31143
- description: "List all access methods, usually filtered by access grant.",
31148
+ description: "Lists all access methods, usually filtered by Access Grant.",
31144
31149
  operationId: "accessMethodsListGet",
31145
31150
  parameters: [
31146
31151
  {
@@ -31148,7 +31153,7 @@ var openapi_default = {
31148
31153
  name: "access_grant_id",
31149
31154
  required: true,
31150
31155
  schema: {
31151
- description: "ID of access grant to list access methods for.",
31156
+ description: "ID of Access Grant to list access methods for.",
31152
31157
  format: "uuid",
31153
31158
  type: "string"
31154
31159
  }
@@ -31221,7 +31226,7 @@ var openapi_default = {
31221
31226
  "x-title": "List Access Methods"
31222
31227
  },
31223
31228
  post: {
31224
- description: "List all access methods, usually filtered by access grant.",
31229
+ description: "Lists all access methods, usually filtered by Access Grant.",
31225
31230
  operationId: "accessMethodsListPost",
31226
31231
  requestBody: {
31227
31232
  content: {
@@ -31229,7 +31234,7 @@ var openapi_default = {
31229
31234
  schema: {
31230
31235
  properties: {
31231
31236
  access_grant_id: {
31232
- description: "ID of access grant to list access methods for.",
31237
+ description: "ID of Access Grant to list access methods for.",
31233
31238
  format: "uuid",
31234
31239
  type: "string"
31235
31240
  },
@@ -38270,7 +38275,10 @@ var openapi_default = {
38270
38275
  description: "URL that you want to redirect the user to after the provider login is complete.",
38271
38276
  type: "string"
38272
38277
  },
38273
- customer_id: { format: "uuid", type: "string" },
38278
+ customer_key: {
38279
+ description: "Optional unique string key that can be used to identify the customer. If provided, the customer will be created or retrieved based on this key.",
38280
+ type: "string"
38281
+ },
38274
38282
  device_selection_mode: {
38275
38283
  enum: ["none", "single", "multiple"],
38276
38284
  type: "string",
@@ -38548,11 +38556,6 @@ var openapi_default = {
38548
38556
  description: "Returns a list of all [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews).",
38549
38557
  operationId: "connectWebviewsListGet",
38550
38558
  parameters: [
38551
- {
38552
- in: "query",
38553
- name: "customer_ids",
38554
- schema: { items: { type: "string" }, type: "array" }
38555
- },
38556
38559
  {
38557
38560
  in: "query",
38558
38561
  name: "user_identifier_key",
@@ -38645,7 +38648,6 @@ var openapi_default = {
38645
38648
  description: "Custom metadata pairs by which you want to [filter Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). Returns Connect Webviews with `custom_metadata` that contains all of the provided key:value pairs.",
38646
38649
  type: "object"
38647
38650
  },
38648
- customer_ids: { items: { type: "string" }, type: "array" },
38649
38651
  limit: {
38650
38652
  default: 500,
38651
38653
  description: "Maximum number of records to return per page.",