@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
@@ -11,7 +11,7 @@ export const requested_access_method = z.object({
11
11
  .string()
12
12
  .datetime()
13
13
  .describe(
14
- 'Date and time at which the requested access method was added to the access grant.',
14
+ 'Date and time at which the requested access method was added to the Access Grant.',
15
15
  ),
16
16
  created_access_method_ids: z
17
17
  .array(z.string().uuid())
@@ -117,6 +117,10 @@ export const connect_webview = z.object({
117
117
  .describe(
118
118
  '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).',
119
119
  ),
120
+ customer_key: z
121
+ .string()
122
+ .optional()
123
+ .describe('The customer key associated with this webview, if any.'),
120
124
  }).describe(`
121
125
  ---
122
126
  route_path: /connect_webviews
@@ -6,7 +6,7 @@ const access_grant_event = common_event.extend({
6
6
  access_grant_id: z
7
7
  .string()
8
8
  .uuid()
9
- .describe('ID of the affected access grant.'),
9
+ .describe('ID of the affected Access Grant.'),
10
10
  })
11
11
 
12
12
  export const access_grant_created_event = access_grant_event.extend({
@@ -15,7 +15,7 @@ export const access_grant_created_event = access_grant_event.extend({
15
15
  ---
16
16
  route_path: /access_grants
17
17
  ---
18
- An access grant was created.
18
+ An Access Grant was created.
19
19
  `)
20
20
 
21
21
  export const access_grant_deleted_event = access_grant_event.extend({
@@ -24,7 +24,7 @@ export const access_grant_deleted_event = access_grant_event.extend({
24
24
  ---
25
25
  route_path: /access_grants
26
26
  ---
27
- An access grant was deleted.
27
+ An Access Grant was deleted.
28
28
  `)
29
29
 
30
30
  export const access_grant_access_granted_to_all_doors_event =
@@ -34,7 +34,7 @@ export const access_grant_access_granted_to_all_doors_event =
34
34
  ---
35
35
  route_path: /access_grants
36
36
  ---
37
- All access requested for an access grant was successfully granted.
37
+ All access requested for an Access Grant was successfully granted.
38
38
  `)
39
39
 
40
40
  export type AccessGrantAccessGrantedToAllDoorsEvent = z.infer<
@@ -56,7 +56,7 @@ export const access_grant_access_granted_to_door_event =
56
56
  ---
57
57
  route_path: /access_grants
58
58
  ---
59
- Access requested as part of an access grant to a particular door was successfully granted.
59
+ Access requested as part of an Access Grant to a particular door was successfully granted.
60
60
  `)
61
61
 
62
62
  export type AccessGrantAccessGrantedToDoorEvent = z.infer<
@@ -72,7 +72,7 @@ export const access_grant_access_to_door_lost_event = access_grant_event.extend(
72
72
  ---
73
73
  route_path: /access_grants
74
74
  ---
75
- Access to a particular door that was requested as part of an access grant was lost.
75
+ Access to a particular door that was requested as part of an Access Grant was lost.
76
76
  `)
77
77
 
78
78
  export type AccessGrantAccessToDoorLostEvent = z.infer<
@@ -58,7 +58,7 @@ export const access_method_reissued_event = access_method_event.extend({
58
58
  ---
59
59
  route_path: /access_methods
60
60
  ---
61
- An access method was reissued due to an access grant update.
61
+ An access method was reissued due to an Access Grant update.
62
62
  `)
63
63
 
64
64
  export type AccessMethodRevokedEvent = z.infer<
@@ -1815,36 +1815,36 @@ export default {
1815
1815
  },
1816
1816
  access_grant: {
1817
1817
  description:
1818
- '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.',
1818
+ '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.',
1819
1819
  properties: {
1820
1820
  access_grant_id: {
1821
- description: 'ID of the access grant.',
1821
+ description: 'ID of the Access Grant.',
1822
1822
  format: 'uuid',
1823
1823
  type: 'string',
1824
1824
  },
1825
1825
  access_method_ids: {
1826
1826
  description:
1827
- 'IDs of the access methods created for the access grant.',
1827
+ 'IDs of the access methods created for the Access Grant.',
1828
1828
  items: { format: 'uuid', type: 'string' },
1829
1829
  type: 'array',
1830
1830
  },
1831
1831
  created_at: {
1832
- description: 'Date and time at which the access grant was created.',
1832
+ description: 'Date and time at which the Access Grant was created.',
1833
1833
  format: 'date-time',
1834
1834
  type: 'string',
1835
1835
  },
1836
1836
  display_name: {
1837
- description: 'Display name of the access grant.',
1837
+ description: 'Display name of the Access Grant.',
1838
1838
  type: 'string',
1839
1839
  },
1840
1840
  ends_at: {
1841
- description: 'Date and time at which the access grant ends.',
1841
+ description: 'Date and time at which the Access Grant ends.',
1842
1842
  format: 'date-time',
1843
1843
  type: 'string',
1844
1844
  },
1845
1845
  instant_key_url: {
1846
1846
  description:
1847
- 'Instant Key URL. Only returned if the access grant has a single mobile_key access_method. ',
1847
+ 'Instant Key URL. Only returned if the Access Grant has a single mobile_key access_method. ',
1848
1848
  format: 'uri',
1849
1849
  type: 'string',
1850
1850
  },
@@ -1856,7 +1856,7 @@ export default {
1856
1856
  },
1857
1857
  requested_access_methods: {
1858
1858
  description:
1859
- 'Access methods that the user requested for the access grant.',
1859
+ 'Access methods that the user requested for the Access Grant.',
1860
1860
  items: {
1861
1861
  properties: {
1862
1862
  created_access_method_ids: {
@@ -1867,7 +1867,7 @@ export default {
1867
1867
  },
1868
1868
  created_at: {
1869
1869
  description:
1870
- 'Date and time at which the requested access method was added to the access grant.',
1870
+ 'Date and time at which the requested access method was added to the Access Grant.',
1871
1871
  format: 'date-time',
1872
1872
  type: 'string',
1873
1873
  },
@@ -1894,24 +1894,24 @@ export default {
1894
1894
  },
1895
1895
  space_ids: {
1896
1896
  description:
1897
- 'IDs of the spaces to which the access grant gives access.',
1897
+ 'IDs of the spaces to which the Access Grant gives access.',
1898
1898
  items: { format: 'uuid', type: 'string' },
1899
1899
  type: 'array',
1900
1900
  },
1901
1901
  starts_at: {
1902
- description: 'Date and time at which the access grant starts.',
1902
+ description: 'Date and time at which the Access Grant starts.',
1903
1903
  format: 'date-time',
1904
1904
  type: 'string',
1905
1905
  },
1906
1906
  user_identity_id: {
1907
1907
  description:
1908
- 'ID of user identity to which the access grant gives access.',
1908
+ 'ID of user identity to which the Access Grant gives access.',
1909
1909
  format: 'uuid',
1910
1910
  type: 'string',
1911
1911
  },
1912
1912
  workspace_id: {
1913
1913
  description:
1914
- 'ID of the Seam workspace associated with the access grant.',
1914
+ 'ID of the Seam workspace associated with the Access Grant.',
1915
1915
  format: 'uuid',
1916
1916
  type: 'string',
1917
1917
  },
@@ -1933,7 +1933,7 @@ export default {
1933
1933
  },
1934
1934
  access_method: {
1935
1935
  description:
1936
- '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.',
1936
+ '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.',
1937
1937
  properties: {
1938
1938
  access_method_id: {
1939
1939
  description: 'ID of the access method.',
@@ -8633,6 +8633,11 @@ export default {
8633
8633
  nullable: true,
8634
8634
  type: 'string',
8635
8635
  },
8636
+ customer_key: {
8637
+ description:
8638
+ 'The customer key associated with this webview, if any.',
8639
+ type: 'string',
8640
+ },
8636
8641
  device_selection_mode: {
8637
8642
  enum: ['none', 'single', 'multiple'],
8638
8643
  type: 'string',
@@ -14222,10 +14227,10 @@ export default {
14222
14227
  'x-route-path': '/access_codes/unmanaged',
14223
14228
  },
14224
14229
  {
14225
- description: 'An access grant was created.',
14230
+ description: 'An Access Grant was created.',
14226
14231
  properties: {
14227
14232
  access_grant_id: {
14228
- description: 'ID of the affected access grant.',
14233
+ description: 'ID of the affected Access Grant.',
14229
14234
  format: 'uuid',
14230
14235
  type: 'string',
14231
14236
  },
@@ -14264,10 +14269,10 @@ export default {
14264
14269
  'x-route-path': '/access_grants',
14265
14270
  },
14266
14271
  {
14267
- description: 'An access grant was deleted.',
14272
+ description: 'An Access Grant was deleted.',
14268
14273
  properties: {
14269
14274
  access_grant_id: {
14270
- description: 'ID of the affected access grant.',
14275
+ description: 'ID of the affected Access Grant.',
14271
14276
  format: 'uuid',
14272
14277
  type: 'string',
14273
14278
  },
@@ -14307,10 +14312,10 @@ export default {
14307
14312
  },
14308
14313
  {
14309
14314
  description:
14310
- 'All access requested for an access grant was successfully granted.',
14315
+ 'All access requested for an Access Grant was successfully granted.',
14311
14316
  properties: {
14312
14317
  access_grant_id: {
14313
- description: 'ID of the affected access grant.',
14318
+ description: 'ID of the affected Access Grant.',
14314
14319
  format: 'uuid',
14315
14320
  type: 'string',
14316
14321
  },
@@ -14353,10 +14358,10 @@ export default {
14353
14358
  },
14354
14359
  {
14355
14360
  description:
14356
- 'Access requested as part of an access grant to a particular door was successfully granted.',
14361
+ 'Access requested as part of an Access Grant to a particular door was successfully granted.',
14357
14362
  properties: {
14358
14363
  access_grant_id: {
14359
- description: 'ID of the affected access grant.',
14364
+ description: 'ID of the affected Access Grant.',
14360
14365
  format: 'uuid',
14361
14366
  type: 'string',
14362
14367
  },
@@ -14406,10 +14411,10 @@ export default {
14406
14411
  },
14407
14412
  {
14408
14413
  description:
14409
- 'Access to a particular door that was requested as part of an access grant was lost.',
14414
+ 'Access to a particular door that was requested as part of an Access Grant was lost.',
14410
14415
  properties: {
14411
14416
  access_grant_id: {
14412
- description: 'ID of the affected access grant.',
14417
+ description: 'ID of the affected Access Grant.',
14413
14418
  format: 'uuid',
14414
14419
  type: 'string',
14415
14420
  },
@@ -14631,7 +14636,7 @@ export default {
14631
14636
  },
14632
14637
  {
14633
14638
  description:
14634
- 'An access method was reissued due to an access grant update.',
14639
+ 'An access method was reissued due to an Access Grant update.',
14635
14640
  properties: {
14636
14641
  access_method_id: {
14637
14642
  description: 'ID of the affected access method.',
@@ -27498,7 +27503,7 @@ export default {
27498
27503
  },
27499
27504
  '/access_grants/create': {
27500
27505
  post: {
27501
- description: 'Creates a new access grant.',
27506
+ description: 'Creates a new Access Grant.',
27502
27507
  operationId: 'accessGrantsCreatePost',
27503
27508
  requestBody: {
27504
27509
  content: {
@@ -27678,7 +27683,7 @@ export default {
27678
27683
  },
27679
27684
  '/access_grants/delete': {
27680
27685
  delete: {
27681
- description: 'Delete an access grant.',
27686
+ description: 'Delete an Access Grant.',
27682
27687
  operationId: 'accessGrantsDeleteDelete',
27683
27688
  parameters: [
27684
27689
  {
@@ -27686,7 +27691,7 @@ export default {
27686
27691
  name: 'access_grant_id',
27687
27692
  required: true,
27688
27693
  schema: {
27689
- description: 'ID of access grant to delete.',
27694
+ description: 'ID of Access Grant to delete.',
27690
27695
  format: 'uuid',
27691
27696
  type: 'string',
27692
27697
  },
@@ -27723,7 +27728,7 @@ export default {
27723
27728
  'x-title': 'Delete an Access Grant',
27724
27729
  },
27725
27730
  post: {
27726
- description: 'Delete an access grant.',
27731
+ description: 'Delete an Access Grant.',
27727
27732
  operationId: 'accessGrantsDeletePost',
27728
27733
  requestBody: {
27729
27734
  content: {
@@ -27731,7 +27736,7 @@ export default {
27731
27736
  schema: {
27732
27737
  properties: {
27733
27738
  access_grant_id: {
27734
- description: 'ID of access grant to delete.',
27739
+ description: 'ID of Access Grant to delete.',
27735
27740
  format: 'uuid',
27736
27741
  type: 'string',
27737
27742
  },
@@ -27775,7 +27780,7 @@ export default {
27775
27780
  },
27776
27781
  '/access_grants/get': {
27777
27782
  get: {
27778
- description: 'Get an access grant.',
27783
+ description: 'Get an Access Grant.',
27779
27784
  operationId: 'accessGrantsGetGet',
27780
27785
  parameters: [
27781
27786
  {
@@ -27783,7 +27788,7 @@ export default {
27783
27788
  name: 'access_grant_id',
27784
27789
  required: true,
27785
27790
  schema: {
27786
- description: 'ID of access grant to get.',
27791
+ description: 'ID of Access Grant to get.',
27787
27792
  format: 'uuid',
27788
27793
  type: 'string',
27789
27794
  },
@@ -27824,7 +27829,7 @@ export default {
27824
27829
  'x-title': 'Get an Access Grant',
27825
27830
  },
27826
27831
  post: {
27827
- description: 'Get an access grant.',
27832
+ description: 'Get an Access Grant.',
27828
27833
  operationId: 'accessGrantsGetPost',
27829
27834
  requestBody: {
27830
27835
  content: {
@@ -27832,7 +27837,7 @@ export default {
27832
27837
  schema: {
27833
27838
  properties: {
27834
27839
  access_grant_id: {
27835
- description: 'ID of access grant to get.',
27840
+ description: 'ID of Access Grant to get.',
27836
27841
  format: 'uuid',
27837
27842
  type: 'string',
27838
27843
  },
@@ -27880,7 +27885,7 @@ export default {
27880
27885
  },
27881
27886
  '/access_grants/list': {
27882
27887
  get: {
27883
- description: 'Get an access grant.',
27888
+ description: 'Gets an Access Grant.',
27884
27889
  operationId: 'accessGrantsListGet',
27885
27890
  parameters: [
27886
27891
  {
@@ -27888,7 +27893,7 @@ export default {
27888
27893
  name: 'user_identity_id',
27889
27894
  schema: {
27890
27895
  description:
27891
- 'ID of user identity to filter list of access grants by.',
27896
+ 'ID of user identity by which you want to filter the list of Access Grants.',
27892
27897
  format: 'uuid',
27893
27898
  type: 'string',
27894
27899
  },
@@ -27897,7 +27902,8 @@ export default {
27897
27902
  in: 'query',
27898
27903
  name: 'acs_system_id',
27899
27904
  schema: {
27900
- description: 'ID of system to filter list of access grants by.',
27905
+ description:
27906
+ 'ID of the access system by which you want to filter the list of Access Grants.',
27901
27907
  format: 'uuid',
27902
27908
  type: 'string',
27903
27909
  },
@@ -27906,7 +27912,8 @@ export default {
27906
27912
  in: 'query',
27907
27913
  name: 'acs_entrance_id',
27908
27914
  schema: {
27909
- description: 'ID of entrance to filter list of access grants by.',
27915
+ description:
27916
+ 'ID of the entrance by which you want to filter the list of Access Grants.',
27910
27917
  format: 'uuid',
27911
27918
  type: 'string',
27912
27919
  },
@@ -27925,7 +27932,8 @@ export default {
27925
27932
  in: 'query',
27926
27933
  name: 'space_id',
27927
27934
  schema: {
27928
- description: 'ID of space to filter list of access grants by.',
27935
+ description:
27936
+ 'ID of the space by which you want to filter the list of Access Grants.',
27929
27937
  format: 'uuid',
27930
27938
  type: 'string',
27931
27939
  },
@@ -27969,7 +27977,7 @@ export default {
27969
27977
  'x-title': 'List Access Grants',
27970
27978
  },
27971
27979
  post: {
27972
- description: 'Get an access grant.',
27980
+ description: 'Gets an Access Grant.',
27973
27981
  operationId: 'accessGrantsListPost',
27974
27982
  requestBody: {
27975
27983
  content: {
@@ -27978,13 +27986,13 @@ export default {
27978
27986
  properties: {
27979
27987
  acs_entrance_id: {
27980
27988
  description:
27981
- 'ID of entrance to filter list of access grants by.',
27989
+ 'ID of the entrance by which you want to filter the list of Access Grants.',
27982
27990
  format: 'uuid',
27983
27991
  type: 'string',
27984
27992
  },
27985
27993
  acs_system_id: {
27986
27994
  description:
27987
- 'ID of system to filter list of access grants by.',
27995
+ 'ID of the access system by which you want to filter the list of Access Grants.',
27988
27996
  format: 'uuid',
27989
27997
  type: 'string',
27990
27998
  },
@@ -27996,13 +28004,13 @@ export default {
27996
28004
  },
27997
28005
  space_id: {
27998
28006
  description:
27999
- 'ID of space to filter list of access grants by.',
28007
+ 'ID of the space by which you want to filter the list of Access Grants.',
28000
28008
  format: 'uuid',
28001
28009
  type: 'string',
28002
28010
  },
28003
28011
  user_identity_id: {
28004
28012
  description:
28005
- 'ID of user identity to filter list of access grants by.',
28013
+ 'ID of user identity by which you want to filter the list of Access Grants.',
28006
28014
  format: 'uuid',
28007
28015
  type: 'string',
28008
28016
  },
@@ -28052,7 +28060,7 @@ export default {
28052
28060
  },
28053
28061
  '/access_grants/update': {
28054
28062
  patch: {
28055
- description: "Updates an existing access grant's time window.",
28063
+ description: "Updates an existing Access Grant's time window.",
28056
28064
  operationId: 'accessGrantsUpdatePatch',
28057
28065
  requestBody: {
28058
28066
  content: {
@@ -28060,7 +28068,7 @@ export default {
28060
28068
  schema: {
28061
28069
  properties: {
28062
28070
  access_grant_id: {
28063
- description: 'ID of the access grant to update.',
28071
+ description: 'ID of the Access Grant to update.',
28064
28072
  format: 'uuid',
28065
28073
  type: 'string',
28066
28074
  },
@@ -28116,7 +28124,7 @@ export default {
28116
28124
  'x-title': 'Update an Access Grant',
28117
28125
  },
28118
28126
  post: {
28119
- description: "Updates an existing access grant's time window.",
28127
+ description: "Updates an existing Access Grant's time window.",
28120
28128
  operationId: 'accessGrantsUpdatePost',
28121
28129
  requestBody: {
28122
28130
  content: {
@@ -28124,7 +28132,7 @@ export default {
28124
28132
  schema: {
28125
28133
  properties: {
28126
28134
  access_grant_id: {
28127
- description: 'ID of the access grant to update.',
28135
+ description: 'ID of the Access Grant to update.',
28128
28136
  format: 'uuid',
28129
28137
  type: 'string',
28130
28138
  },
@@ -28182,7 +28190,7 @@ export default {
28182
28190
  },
28183
28191
  '/access_methods/delete': {
28184
28192
  delete: {
28185
- description: 'Delete an access method.',
28193
+ description: 'Deletes an access method.',
28186
28194
  operationId: 'accessMethodsDeleteDelete',
28187
28195
  parameters: [
28188
28196
  {
@@ -28226,7 +28234,7 @@ export default {
28226
28234
  'x-title': 'Delete an Access Method',
28227
28235
  },
28228
28236
  post: {
28229
- description: 'Delete an access method.',
28237
+ description: 'Deletes an access method.',
28230
28238
  operationId: 'accessMethodsDeletePost',
28231
28239
  requestBody: {
28232
28240
  content: {
@@ -28278,7 +28286,7 @@ export default {
28278
28286
  '/access_methods/encode': {
28279
28287
  post: {
28280
28288
  description:
28281
- '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).',
28289
+ '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).',
28282
28290
  operationId: 'accessMethodsEncodePost',
28283
28291
  requestBody: {
28284
28292
  content: {
@@ -28293,7 +28301,7 @@ export default {
28293
28301
  },
28294
28302
  acs_encoder_id: {
28295
28303
  description:
28296
- 'ID of the `acs_encoder` to use to encode the `acs_credential`.',
28304
+ 'ID of the `acs_encoder` to use to encode the `access_method`.',
28297
28305
  format: 'uuid',
28298
28306
  type: 'string',
28299
28307
  },
@@ -28342,7 +28350,7 @@ export default {
28342
28350
  },
28343
28351
  '/access_methods/get': {
28344
28352
  get: {
28345
- description: 'Get an access method.',
28353
+ description: 'Gets an access method.',
28346
28354
  operationId: 'accessMethodsGetGet',
28347
28355
  parameters: [
28348
28356
  {
@@ -28392,7 +28400,7 @@ export default {
28392
28400
  'x-title': 'Get an Access Method',
28393
28401
  },
28394
28402
  post: {
28395
- description: 'Get an access method.',
28403
+ description: 'Gets an access method.',
28396
28404
  operationId: 'accessMethodsGetPost',
28397
28405
  requestBody: {
28398
28406
  content: {
@@ -28450,7 +28458,7 @@ export default {
28450
28458
  '/access_methods/list': {
28451
28459
  get: {
28452
28460
  description:
28453
- 'List all access methods, usually filtered by access grant.',
28461
+ 'Lists all access methods, usually filtered by Access Grant.',
28454
28462
  operationId: 'accessMethodsListGet',
28455
28463
  parameters: [
28456
28464
  {
@@ -28458,7 +28466,7 @@ export default {
28458
28466
  name: 'access_grant_id',
28459
28467
  required: true,
28460
28468
  schema: {
28461
- description: 'ID of access grant to list access methods for.',
28469
+ description: 'ID of Access Grant to list access methods for.',
28462
28470
  format: 'uuid',
28463
28471
  type: 'string',
28464
28472
  },
@@ -28535,7 +28543,7 @@ export default {
28535
28543
  },
28536
28544
  post: {
28537
28545
  description:
28538
- 'List all access methods, usually filtered by access grant.',
28546
+ 'Lists all access methods, usually filtered by Access Grant.',
28539
28547
  operationId: 'accessMethodsListPost',
28540
28548
  requestBody: {
28541
28549
  content: {
@@ -28544,7 +28552,7 @@ export default {
28544
28552
  properties: {
28545
28553
  access_grant_id: {
28546
28554
  description:
28547
- 'ID of access grant to list access methods for.',
28555
+ 'ID of Access Grant to list access methods for.',
28548
28556
  format: 'uuid',
28549
28557
  type: 'string',
28550
28558
  },
@@ -35999,7 +36007,11 @@ export default {
35999
36007
  'URL that you want to redirect the user to after the provider login is complete.',
36000
36008
  type: 'string',
36001
36009
  },
36002
- customer_id: { format: 'uuid', type: 'string' },
36010
+ customer_key: {
36011
+ description:
36012
+ '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.',
36013
+ type: 'string',
36014
+ },
36003
36015
  device_selection_mode: {
36004
36016
  enum: ['none', 'single', 'multiple'],
36005
36017
  type: 'string',
@@ -36287,11 +36299,6 @@ export default {
36287
36299
  'Returns a list of all [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews).',
36288
36300
  operationId: 'connectWebviewsListGet',
36289
36301
  parameters: [
36290
- {
36291
- in: 'query',
36292
- name: 'customer_ids',
36293
- schema: { items: { type: 'string' }, type: 'array' },
36294
- },
36295
36302
  {
36296
36303
  in: 'query',
36297
36304
  name: 'user_identifier_key',
@@ -36389,7 +36396,6 @@ export default {
36389
36396
  '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.',
36390
36397
  type: 'object',
36391
36398
  },
36392
- customer_ids: { items: { type: 'string' }, type: 'array' },
36393
36399
  limit: {
36394
36400
  default: 500,
36395
36401
  description: