@seamapi/types 1.364.0 → 1.365.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.
Files changed (45) hide show
  1. package/dist/connect.cjs +637 -2
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +1092 -119
  4. package/lib/seam/connect/internal/schemas.d.ts +1 -1
  5. package/lib/seam/connect/internal/schemas.js +1 -1
  6. package/lib/seam/connect/internal/schemas.js.map +1 -1
  7. package/lib/seam/connect/models/acs/acs-access-group.js +1 -2
  8. package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
  9. package/lib/seam/connect/models/acs/acs-credential.js +1 -2
  10. package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
  11. package/lib/seam/connect/models/acs/acs-system.d.ts +1 -1
  12. package/lib/seam/connect/models/acs/acs-system.js +2 -2
  13. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  14. package/lib/seam/connect/models/acs/acs-user.js +1 -2
  15. package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
  16. package/lib/seam/connect/models/connected-accounts/connected-account.js +1 -2
  17. package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
  18. package/lib/seam/connect/models/devices/device.js +1 -2
  19. package/lib/seam/connect/models/devices/device.js.map +1 -1
  20. package/lib/seam/connect/models/index.d.ts +1 -0
  21. package/lib/seam/connect/models/index.js +1 -0
  22. package/lib/seam/connect/models/index.js.map +1 -1
  23. package/lib/seam/connect/models/locations/index.d.ts +1 -0
  24. package/lib/seam/connect/models/locations/index.js +2 -0
  25. package/lib/seam/connect/models/locations/index.js.map +1 -0
  26. package/lib/seam/connect/models/locations/location.d.ts +49 -0
  27. package/lib/seam/connect/models/locations/location.js +25 -0
  28. package/lib/seam/connect/models/locations/location.js.map +1 -0
  29. package/lib/seam/connect/openapi.d.ts +803 -0
  30. package/lib/seam/connect/openapi.js +635 -0
  31. package/lib/seam/connect/openapi.js.map +1 -1
  32. package/lib/seam/connect/route-types.d.ts +170 -0
  33. package/package.json +1 -1
  34. package/src/lib/seam/connect/internal/schemas.ts +2 -0
  35. package/src/lib/seam/connect/models/acs/acs-access-group.ts +1 -2
  36. package/src/lib/seam/connect/models/acs/acs-credential.ts +1 -2
  37. package/src/lib/seam/connect/models/acs/acs-system.ts +2 -2
  38. package/src/lib/seam/connect/models/acs/acs-user.ts +1 -2
  39. package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +1 -2
  40. package/src/lib/seam/connect/models/devices/device.ts +1 -2
  41. package/src/lib/seam/connect/models/index.ts +1 -0
  42. package/src/lib/seam/connect/models/locations/index.ts +1 -0
  43. package/src/lib/seam/connect/models/locations/location.ts +30 -0
  44. package/src/lib/seam/connect/openapi.ts +648 -0
  45. package/src/lib/seam/connect/route-types.ts +182 -0
@@ -17999,6 +17999,8 @@ export interface Routes {
17999
17999
  | 'can_simulate_disconnection'
18000
18000
  >
18001
18001
  | undefined
18002
+ /** */
18003
+ unstable_location_id?: (string | null) | undefined
18002
18004
  }
18003
18005
  formData: {}
18004
18006
  jsonResponse: {
@@ -19561,6 +19563,8 @@ export interface Routes {
19561
19563
  | 'can_simulate_disconnection'
19562
19564
  >
19563
19565
  | undefined
19566
+ /** */
19567
+ unstable_location_id?: (string | null) | undefined
19564
19568
  }
19565
19569
  formData: {}
19566
19570
  jsonResponse: {
@@ -24797,6 +24801,8 @@ export interface Routes {
24797
24801
  | 'can_simulate_disconnection'
24798
24802
  >
24799
24803
  | undefined
24804
+ /** */
24805
+ unstable_location_id?: (string | null) | undefined
24800
24806
  }
24801
24807
  formData: {}
24802
24808
  jsonResponse: {
@@ -28950,6 +28956,8 @@ export interface Routes {
28950
28956
  | 'can_simulate_disconnection'
28951
28957
  >
28952
28958
  | undefined
28959
+ /** */
28960
+ unstable_location_id?: (string | null) | undefined
28953
28961
  }
28954
28962
  formData: {}
28955
28963
  jsonResponse: {
@@ -39743,6 +39751,8 @@ export interface Routes {
39743
39751
  | 'can_simulate_disconnection'
39744
39752
  >
39745
39753
  | undefined
39754
+ /** */
39755
+ unstable_location_id?: (string | null) | undefined
39746
39756
  }
39747
39757
  formData: {}
39748
39758
  jsonResponse: {
@@ -45085,6 +45095,178 @@ export interface Routes {
45085
45095
  formData: {}
45086
45096
  jsonResponse: {}
45087
45097
  }
45098
+ '/unstable_locations/add_devices': {
45099
+ route: '/unstable_locations/add_devices'
45100
+ method: 'POST'
45101
+ queryParams: {}
45102
+ jsonBody: {
45103
+ location_id: string
45104
+ device_ids: string[]
45105
+ }
45106
+ commonParams: {}
45107
+ formData: {}
45108
+ jsonResponse: {}
45109
+ }
45110
+ '/unstable_locations/create': {
45111
+ route: '/unstable_locations/create'
45112
+ method: 'POST'
45113
+ queryParams: {}
45114
+ jsonBody: {
45115
+ name: string
45116
+ geolocation?:
45117
+ | {
45118
+ latitude: number
45119
+ longitude: number
45120
+ }
45121
+ | undefined
45122
+ time_zone?: string | undefined
45123
+ }
45124
+ commonParams: {}
45125
+ formData: {}
45126
+ jsonResponse: {
45127
+ location: {
45128
+ /** Unique identifier for the location. */
45129
+ location_id: string
45130
+ /** Unique identifier for the Seam workspace associated with the location. */
45131
+ workspace_id: string
45132
+ /** Display name of the location. */
45133
+ display_name: string
45134
+ /** Geographical location of the location. */
45135
+ geolocation?:
45136
+ | {
45137
+ latitude: number
45138
+ longitude: number
45139
+ }
45140
+ | undefined
45141
+ /** Time zone of the location. */
45142
+ time_zone?: string | undefined
45143
+ /** Date and time at which the location object was created. */
45144
+ created_at: string
45145
+ }
45146
+ }
45147
+ }
45148
+ '/unstable_locations/delete': {
45149
+ route: '/unstable_locations/delete'
45150
+ method: 'DELETE' | 'POST'
45151
+ queryParams: {}
45152
+ jsonBody: {
45153
+ location_id: string
45154
+ }
45155
+ commonParams: {}
45156
+ formData: {}
45157
+ jsonResponse: {}
45158
+ }
45159
+ '/unstable_locations/get': {
45160
+ route: '/unstable_locations/get'
45161
+ method: 'GET' | 'POST'
45162
+ queryParams: {}
45163
+ jsonBody: {}
45164
+ commonParams: {
45165
+ location_id: string
45166
+ }
45167
+ formData: {}
45168
+ jsonResponse: {
45169
+ location: {
45170
+ /** Unique identifier for the location. */
45171
+ location_id: string
45172
+ /** Unique identifier for the Seam workspace associated with the location. */
45173
+ workspace_id: string
45174
+ /** Display name of the location. */
45175
+ display_name: string
45176
+ /** Geographical location of the location. */
45177
+ geolocation?:
45178
+ | {
45179
+ latitude: number
45180
+ longitude: number
45181
+ }
45182
+ | undefined
45183
+ /** Time zone of the location. */
45184
+ time_zone?: string | undefined
45185
+ /** Date and time at which the location object was created. */
45186
+ created_at: string
45187
+ }
45188
+ }
45189
+ }
45190
+ '/unstable_locations/list': {
45191
+ route: '/unstable_locations/list'
45192
+ method: 'GET' | 'POST'
45193
+ queryParams: {}
45194
+ jsonBody: {}
45195
+ commonParams: {}
45196
+ formData: {}
45197
+ jsonResponse: {
45198
+ locations: Array<{
45199
+ /** Unique identifier for the location. */
45200
+ location_id: string
45201
+ /** Unique identifier for the Seam workspace associated with the location. */
45202
+ workspace_id: string
45203
+ /** Display name of the location. */
45204
+ display_name: string
45205
+ /** Geographical location of the location. */
45206
+ geolocation?:
45207
+ | {
45208
+ latitude: number
45209
+ longitude: number
45210
+ }
45211
+ | undefined
45212
+ /** Time zone of the location. */
45213
+ time_zone?: string | undefined
45214
+ /** Date and time at which the location object was created. */
45215
+ created_at: string
45216
+ }>
45217
+ }
45218
+ }
45219
+ '/unstable_locations/remove_devices': {
45220
+ route: '/unstable_locations/remove_devices'
45221
+ method: 'POST'
45222
+ queryParams: {}
45223
+ jsonBody: {
45224
+ location_id: string
45225
+ device_ids: string[]
45226
+ }
45227
+ commonParams: {}
45228
+ formData: {}
45229
+ jsonResponse: {}
45230
+ }
45231
+ '/unstable_locations/update': {
45232
+ route: '/unstable_locations/update'
45233
+ method: 'POST'
45234
+ queryParams: {}
45235
+ jsonBody: {
45236
+ location_id: string
45237
+ name?: string | undefined
45238
+ geolocation?:
45239
+ | {
45240
+ latitude: number
45241
+ longitude: number
45242
+ }
45243
+ | undefined
45244
+ time_zone?: string | undefined
45245
+ }
45246
+ commonParams: {}
45247
+ formData: {}
45248
+ jsonResponse: {
45249
+ location: {
45250
+ /** Unique identifier for the location. */
45251
+ location_id: string
45252
+ /** Unique identifier for the Seam workspace associated with the location. */
45253
+ workspace_id: string
45254
+ /** Display name of the location. */
45255
+ display_name: string
45256
+ /** Geographical location of the location. */
45257
+ geolocation?:
45258
+ | {
45259
+ latitude: number
45260
+ longitude: number
45261
+ }
45262
+ | undefined
45263
+ /** Time zone of the location. */
45264
+ time_zone?: string | undefined
45265
+ /** Date and time at which the location object was created. */
45266
+ created_at: string
45267
+ }
45268
+ }
45269
+ }
45088
45270
  '/user_identities/add_acs_user': {
45089
45271
  route: '/user_identities/add_acs_user'
45090
45272
  method: 'POST' | 'PUT'