@seamapi/types 1.364.0 → 1.366.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 (60) hide show
  1. package/dist/connect.cjs +1007 -4
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +2441 -178
  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.d.ts → acs-users/acs-user.d.ts} +540 -18
  15. package/lib/seam/connect/models/acs/{acs-user.js → acs-users/acs-user.js} +10 -4
  16. package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -0
  17. package/lib/seam/connect/models/acs/acs-users/index.d.ts +2 -0
  18. package/lib/seam/connect/models/acs/acs-users/index.js +3 -0
  19. package/lib/seam/connect/models/acs/acs-users/index.js.map +1 -0
  20. package/lib/seam/connect/models/acs/acs-users/pending-modifications.d.ts +176 -0
  21. package/lib/seam/connect/models/acs/acs-users/pending-modifications.js +42 -0
  22. package/lib/seam/connect/models/acs/acs-users/pending-modifications.js.map +1 -0
  23. package/lib/seam/connect/models/acs/index.d.ts +1 -1
  24. package/lib/seam/connect/models/acs/index.js +1 -1
  25. package/lib/seam/connect/models/acs/index.js.map +1 -1
  26. package/lib/seam/connect/models/connected-accounts/connected-account.js +1 -2
  27. package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
  28. package/lib/seam/connect/models/devices/device.js +1 -2
  29. package/lib/seam/connect/models/devices/device.js.map +1 -1
  30. package/lib/seam/connect/models/index.d.ts +1 -0
  31. package/lib/seam/connect/models/index.js +1 -0
  32. package/lib/seam/connect/models/index.js.map +1 -1
  33. package/lib/seam/connect/models/locations/index.d.ts +1 -0
  34. package/lib/seam/connect/models/locations/index.js +2 -0
  35. package/lib/seam/connect/models/locations/index.js.map +1 -0
  36. package/lib/seam/connect/models/locations/location.d.ts +49 -0
  37. package/lib/seam/connect/models/locations/location.js +25 -0
  38. package/lib/seam/connect/models/locations/location.js.map +1 -0
  39. package/lib/seam/connect/models/user-identities/user-identity.d.ts +2 -2
  40. package/lib/seam/connect/openapi.d.ts +1271 -36
  41. package/lib/seam/connect/openapi.js +955 -0
  42. package/lib/seam/connect/openapi.js.map +1 -1
  43. package/lib/seam/connect/route-types.d.ts +506 -0
  44. package/package.json +1 -1
  45. package/src/lib/seam/connect/internal/schemas.ts +2 -0
  46. package/src/lib/seam/connect/models/acs/acs-access-group.ts +1 -2
  47. package/src/lib/seam/connect/models/acs/acs-credential.ts +1 -2
  48. package/src/lib/seam/connect/models/acs/acs-system.ts +2 -2
  49. package/src/lib/seam/connect/models/acs/{acs-user.ts → acs-users/acs-user.ts} +10 -4
  50. package/src/lib/seam/connect/models/acs/acs-users/index.ts +2 -0
  51. package/src/lib/seam/connect/models/acs/acs-users/pending-modifications.ts +56 -0
  52. package/src/lib/seam/connect/models/acs/index.ts +1 -1
  53. package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +1 -2
  54. package/src/lib/seam/connect/models/devices/device.ts +1 -2
  55. package/src/lib/seam/connect/models/index.ts +1 -0
  56. package/src/lib/seam/connect/models/locations/index.ts +1 -0
  57. package/src/lib/seam/connect/models/locations/location.ts +30 -0
  58. package/src/lib/seam/connect/openapi.ts +976 -0
  59. package/src/lib/seam/connect/route-types.ts +567 -0
  60. package/lib/seam/connect/models/acs/acs-user.js.map +0 -1
@@ -1179,6 +1179,222 @@ declare const _default: {
1179
1179
  type: string;
1180
1180
  'x-undocumented': string;
1181
1181
  };
1182
+ pending_modifications: {
1183
+ items: {
1184
+ discriminator: {
1185
+ propertyName: string;
1186
+ };
1187
+ oneOf: ({
1188
+ properties: {
1189
+ created_at: {
1190
+ format: string;
1191
+ type: string;
1192
+ };
1193
+ modification_code: {
1194
+ enum: string[];
1195
+ type: string;
1196
+ };
1197
+ modified_from: {
1198
+ properties: {
1199
+ email_address: {
1200
+ format: string;
1201
+ nullable: boolean;
1202
+ type: string;
1203
+ };
1204
+ full_name: {
1205
+ nullable: boolean;
1206
+ type: string;
1207
+ };
1208
+ phone_number: {
1209
+ nullable: boolean;
1210
+ type: string;
1211
+ };
1212
+ ends_at?: never;
1213
+ starts_at?: never;
1214
+ is_suspended?: never;
1215
+ acs_access_group_id?: never;
1216
+ };
1217
+ type: string;
1218
+ required?: never;
1219
+ };
1220
+ modified_to: {
1221
+ properties: {
1222
+ email_address: {
1223
+ format: string;
1224
+ nullable: boolean;
1225
+ type: string;
1226
+ };
1227
+ full_name: {
1228
+ nullable: boolean;
1229
+ type: string;
1230
+ };
1231
+ phone_number: {
1232
+ nullable: boolean;
1233
+ type: string;
1234
+ };
1235
+ ends_at?: never;
1236
+ starts_at?: never;
1237
+ is_suspended?: never;
1238
+ acs_access_group_id?: never;
1239
+ };
1240
+ type: string;
1241
+ required?: never;
1242
+ };
1243
+ };
1244
+ required: string[];
1245
+ type: string;
1246
+ } | {
1247
+ properties: {
1248
+ created_at: {
1249
+ format: string;
1250
+ type: string;
1251
+ };
1252
+ modification_code: {
1253
+ enum: string[];
1254
+ type: string;
1255
+ };
1256
+ modified_from: {
1257
+ properties: {
1258
+ ends_at: {
1259
+ description: string;
1260
+ format: string;
1261
+ nullable: boolean;
1262
+ type: string;
1263
+ };
1264
+ starts_at: {
1265
+ description: string;
1266
+ format: string;
1267
+ type: string;
1268
+ };
1269
+ email_address?: never;
1270
+ full_name?: never;
1271
+ phone_number?: never;
1272
+ is_suspended?: never;
1273
+ acs_access_group_id?: never;
1274
+ };
1275
+ required: string[];
1276
+ type: string;
1277
+ };
1278
+ modified_to: {
1279
+ properties: {
1280
+ ends_at: {
1281
+ description: string;
1282
+ format: string;
1283
+ nullable: boolean;
1284
+ type: string;
1285
+ };
1286
+ starts_at: {
1287
+ description: string;
1288
+ format: string;
1289
+ type: string;
1290
+ };
1291
+ email_address?: never;
1292
+ full_name?: never;
1293
+ phone_number?: never;
1294
+ is_suspended?: never;
1295
+ acs_access_group_id?: never;
1296
+ };
1297
+ required: string[];
1298
+ type: string;
1299
+ };
1300
+ };
1301
+ required: string[];
1302
+ type: string;
1303
+ } | {
1304
+ properties: {
1305
+ created_at: {
1306
+ format: string;
1307
+ type: string;
1308
+ };
1309
+ modification_code: {
1310
+ enum: string[];
1311
+ type: string;
1312
+ };
1313
+ modified_from: {
1314
+ properties: {
1315
+ is_suspended: {
1316
+ type: string;
1317
+ };
1318
+ email_address?: never;
1319
+ full_name?: never;
1320
+ phone_number?: never;
1321
+ ends_at?: never;
1322
+ starts_at?: never;
1323
+ acs_access_group_id?: never;
1324
+ };
1325
+ required: string[];
1326
+ type: string;
1327
+ };
1328
+ modified_to: {
1329
+ properties: {
1330
+ is_suspended: {
1331
+ type: string;
1332
+ };
1333
+ email_address?: never;
1334
+ full_name?: never;
1335
+ phone_number?: never;
1336
+ ends_at?: never;
1337
+ starts_at?: never;
1338
+ acs_access_group_id?: never;
1339
+ };
1340
+ required: string[];
1341
+ type: string;
1342
+ };
1343
+ };
1344
+ required: string[];
1345
+ type: string;
1346
+ } | {
1347
+ properties: {
1348
+ created_at: {
1349
+ format: string;
1350
+ type: string;
1351
+ };
1352
+ modification_code: {
1353
+ enum: string[];
1354
+ type: string;
1355
+ };
1356
+ modified_from: {
1357
+ properties: {
1358
+ acs_access_group_id: {
1359
+ format: string;
1360
+ nullable: boolean;
1361
+ type: string;
1362
+ };
1363
+ email_address?: never;
1364
+ full_name?: never;
1365
+ phone_number?: never;
1366
+ ends_at?: never;
1367
+ starts_at?: never;
1368
+ is_suspended?: never;
1369
+ };
1370
+ required: string[];
1371
+ type: string;
1372
+ };
1373
+ modified_to: {
1374
+ properties: {
1375
+ acs_access_group_id: {
1376
+ format: string;
1377
+ nullable: boolean;
1378
+ type: string;
1379
+ };
1380
+ email_address?: never;
1381
+ full_name?: never;
1382
+ phone_number?: never;
1383
+ ends_at?: never;
1384
+ starts_at?: never;
1385
+ is_suspended?: never;
1386
+ };
1387
+ required: string[];
1388
+ type: string;
1389
+ };
1390
+ };
1391
+ required: string[];
1392
+ type: string;
1393
+ })[];
1394
+ };
1395
+ type: string;
1396
+ 'x-undocumented': string;
1397
+ };
1182
1398
  phone_number: {
1183
1399
  description: string;
1184
1400
  type: string;
@@ -8081,59 +8297,275 @@ declare const _default: {
8081
8297
  type: string;
8082
8298
  'x-undocumented': string;
8083
8299
  };
8084
- phone_number: {
8085
- description: string;
8086
- type: string;
8087
- };
8088
- user_identity_email_address: {
8089
- description: string;
8090
- nullable: boolean;
8091
- type: string;
8092
- };
8093
- user_identity_full_name: {
8094
- description: string;
8095
- nullable: boolean;
8096
- type: string;
8097
- };
8098
- user_identity_id: {
8099
- description: string;
8100
- type: string;
8101
- };
8102
- user_identity_phone_number: {
8103
- description: string;
8104
- nullable: boolean;
8105
- type: string;
8106
- };
8107
- warnings: {
8108
- description: string;
8300
+ pending_modifications: {
8109
8301
  items: {
8110
- description: string;
8111
8302
  discriminator: {
8112
8303
  propertyName: string;
8113
8304
  };
8114
- oneOf: {
8115
- description: string;
8305
+ oneOf: ({
8116
8306
  properties: {
8117
8307
  created_at: {
8118
- description: string;
8119
8308
  format: string;
8120
8309
  type: string;
8121
8310
  };
8122
- message: {
8123
- description: string;
8311
+ modification_code: {
8312
+ enum: string[];
8124
8313
  type: string;
8125
8314
  };
8126
- warning_code: {
8315
+ modified_from: {
8316
+ properties: {
8317
+ email_address: {
8318
+ format: string;
8319
+ nullable: boolean;
8320
+ type: string;
8321
+ };
8322
+ full_name: {
8323
+ nullable: boolean;
8324
+ type: string;
8325
+ };
8326
+ phone_number: {
8327
+ nullable: boolean;
8328
+ type: string;
8329
+ };
8330
+ ends_at?: never;
8331
+ starts_at?: never;
8332
+ is_suspended?: never;
8333
+ acs_access_group_id?: never;
8334
+ };
8335
+ type: string;
8336
+ required?: never;
8337
+ };
8338
+ modified_to: {
8339
+ properties: {
8340
+ email_address: {
8341
+ format: string;
8342
+ nullable: boolean;
8343
+ type: string;
8344
+ };
8345
+ full_name: {
8346
+ nullable: boolean;
8347
+ type: string;
8348
+ };
8349
+ phone_number: {
8350
+ nullable: boolean;
8351
+ type: string;
8352
+ };
8353
+ ends_at?: never;
8354
+ starts_at?: never;
8355
+ is_suspended?: never;
8356
+ acs_access_group_id?: never;
8357
+ };
8358
+ type: string;
8359
+ required?: never;
8360
+ };
8361
+ };
8362
+ required: string[];
8363
+ type: string;
8364
+ } | {
8365
+ properties: {
8366
+ created_at: {
8367
+ format: string;
8368
+ type: string;
8369
+ };
8370
+ modification_code: {
8127
8371
  enum: string[];
8128
8372
  type: string;
8129
8373
  };
8374
+ modified_from: {
8375
+ properties: {
8376
+ ends_at: {
8377
+ description: string;
8378
+ format: string;
8379
+ nullable: boolean;
8380
+ type: string;
8381
+ };
8382
+ starts_at: {
8383
+ description: string;
8384
+ format: string;
8385
+ type: string;
8386
+ };
8387
+ email_address?: never;
8388
+ full_name?: never;
8389
+ phone_number?: never;
8390
+ is_suspended?: never;
8391
+ acs_access_group_id?: never;
8392
+ };
8393
+ required: string[];
8394
+ type: string;
8395
+ };
8396
+ modified_to: {
8397
+ properties: {
8398
+ ends_at: {
8399
+ description: string;
8400
+ format: string;
8401
+ nullable: boolean;
8402
+ type: string;
8403
+ };
8404
+ starts_at: {
8405
+ description: string;
8406
+ format: string;
8407
+ type: string;
8408
+ };
8409
+ email_address?: never;
8410
+ full_name?: never;
8411
+ phone_number?: never;
8412
+ is_suspended?: never;
8413
+ acs_access_group_id?: never;
8414
+ };
8415
+ required: string[];
8416
+ type: string;
8417
+ };
8130
8418
  };
8131
8419
  required: string[];
8132
8420
  type: string;
8133
- }[];
8134
- };
8135
- type: string;
8136
- };
8421
+ } | {
8422
+ properties: {
8423
+ created_at: {
8424
+ format: string;
8425
+ type: string;
8426
+ };
8427
+ modification_code: {
8428
+ enum: string[];
8429
+ type: string;
8430
+ };
8431
+ modified_from: {
8432
+ properties: {
8433
+ is_suspended: {
8434
+ type: string;
8435
+ };
8436
+ email_address?: never;
8437
+ full_name?: never;
8438
+ phone_number?: never;
8439
+ ends_at?: never;
8440
+ starts_at?: never;
8441
+ acs_access_group_id?: never;
8442
+ };
8443
+ required: string[];
8444
+ type: string;
8445
+ };
8446
+ modified_to: {
8447
+ properties: {
8448
+ is_suspended: {
8449
+ type: string;
8450
+ };
8451
+ email_address?: never;
8452
+ full_name?: never;
8453
+ phone_number?: never;
8454
+ ends_at?: never;
8455
+ starts_at?: never;
8456
+ acs_access_group_id?: never;
8457
+ };
8458
+ required: string[];
8459
+ type: string;
8460
+ };
8461
+ };
8462
+ required: string[];
8463
+ type: string;
8464
+ } | {
8465
+ properties: {
8466
+ created_at: {
8467
+ format: string;
8468
+ type: string;
8469
+ };
8470
+ modification_code: {
8471
+ enum: string[];
8472
+ type: string;
8473
+ };
8474
+ modified_from: {
8475
+ properties: {
8476
+ acs_access_group_id: {
8477
+ format: string;
8478
+ nullable: boolean;
8479
+ type: string;
8480
+ };
8481
+ email_address?: never;
8482
+ full_name?: never;
8483
+ phone_number?: never;
8484
+ ends_at?: never;
8485
+ starts_at?: never;
8486
+ is_suspended?: never;
8487
+ };
8488
+ required: string[];
8489
+ type: string;
8490
+ };
8491
+ modified_to: {
8492
+ properties: {
8493
+ acs_access_group_id: {
8494
+ format: string;
8495
+ nullable: boolean;
8496
+ type: string;
8497
+ };
8498
+ email_address?: never;
8499
+ full_name?: never;
8500
+ phone_number?: never;
8501
+ ends_at?: never;
8502
+ starts_at?: never;
8503
+ is_suspended?: never;
8504
+ };
8505
+ required: string[];
8506
+ type: string;
8507
+ };
8508
+ };
8509
+ required: string[];
8510
+ type: string;
8511
+ })[];
8512
+ };
8513
+ type: string;
8514
+ 'x-undocumented': string;
8515
+ };
8516
+ phone_number: {
8517
+ description: string;
8518
+ type: string;
8519
+ };
8520
+ user_identity_email_address: {
8521
+ description: string;
8522
+ nullable: boolean;
8523
+ type: string;
8524
+ };
8525
+ user_identity_full_name: {
8526
+ description: string;
8527
+ nullable: boolean;
8528
+ type: string;
8529
+ };
8530
+ user_identity_id: {
8531
+ description: string;
8532
+ type: string;
8533
+ };
8534
+ user_identity_phone_number: {
8535
+ description: string;
8536
+ nullable: boolean;
8537
+ type: string;
8538
+ };
8539
+ warnings: {
8540
+ description: string;
8541
+ items: {
8542
+ description: string;
8543
+ discriminator: {
8544
+ propertyName: string;
8545
+ };
8546
+ oneOf: {
8547
+ description: string;
8548
+ properties: {
8549
+ created_at: {
8550
+ description: string;
8551
+ format: string;
8552
+ type: string;
8553
+ };
8554
+ message: {
8555
+ description: string;
8556
+ type: string;
8557
+ };
8558
+ warning_code: {
8559
+ enum: string[];
8560
+ type: string;
8561
+ };
8562
+ };
8563
+ required: string[];
8564
+ type: string;
8565
+ }[];
8566
+ };
8567
+ type: string;
8568
+ };
8137
8569
  workspace_id: {
8138
8570
  description: string;
8139
8571
  format: string;
@@ -17088,6 +17520,12 @@ declare const _default: {
17088
17520
  enum: string[];
17089
17521
  type: string;
17090
17522
  };
17523
+ unstable_location_id: {
17524
+ format: string;
17525
+ nullable: boolean;
17526
+ type: string;
17527
+ 'x-undocumented': string;
17528
+ };
17091
17529
  user_identifier_key: {
17092
17530
  description: string;
17093
17531
  type: string;
@@ -17603,6 +18041,12 @@ declare const _default: {
17603
18041
  enum: string[];
17604
18042
  type: string;
17605
18043
  };
18044
+ unstable_location_id: {
18045
+ format: string;
18046
+ nullable: boolean;
18047
+ type: string;
18048
+ 'x-undocumented': string;
18049
+ };
17606
18050
  user_identifier_key: {
17607
18051
  description: string;
17608
18052
  type: string;
@@ -18419,6 +18863,12 @@ declare const _default: {
18419
18863
  enum: string[];
18420
18864
  type: string;
18421
18865
  };
18866
+ unstable_location_id: {
18867
+ format: string;
18868
+ nullable: boolean;
18869
+ type: string;
18870
+ 'x-undocumented': string;
18871
+ };
18422
18872
  user_identifier_key: {
18423
18873
  description: string;
18424
18874
  type: string;
@@ -18887,6 +19337,12 @@ declare const _default: {
18887
19337
  enum: string[];
18888
19338
  type: string;
18889
19339
  };
19340
+ unstable_location_id: {
19341
+ format: string;
19342
+ nullable: boolean;
19343
+ type: string;
19344
+ 'x-undocumented': string;
19345
+ };
18890
19346
  user_identifier_key: {
18891
19347
  description: string;
18892
19348
  type: string;
@@ -21063,6 +21519,12 @@ declare const _default: {
21063
21519
  enum: string[];
21064
21520
  type: string;
21065
21521
  };
21522
+ unstable_location_id: {
21523
+ format: string;
21524
+ nullable: boolean;
21525
+ type: string;
21526
+ 'x-undocumented': string;
21527
+ };
21066
21528
  user_identifier_key: {
21067
21529
  description: string;
21068
21530
  type: string;
@@ -22752,6 +23214,779 @@ declare const _default: {
22752
23214
  'x-title': string;
22753
23215
  };
22754
23216
  };
23217
+ '/unstable_locations/add_devices': {
23218
+ post: {
23219
+ description: string;
23220
+ operationId: string;
23221
+ requestBody: {
23222
+ content: {
23223
+ 'application/json': {
23224
+ schema: {
23225
+ properties: {
23226
+ device_ids: {
23227
+ items: {
23228
+ format: string;
23229
+ type: string;
23230
+ };
23231
+ type: string;
23232
+ };
23233
+ location_id: {
23234
+ format: string;
23235
+ type: string;
23236
+ };
23237
+ };
23238
+ required: string[];
23239
+ type: string;
23240
+ };
23241
+ };
23242
+ };
23243
+ };
23244
+ responses: {
23245
+ 200: {
23246
+ content: {
23247
+ 'application/json': {
23248
+ schema: {
23249
+ properties: {
23250
+ ok: {
23251
+ type: string;
23252
+ };
23253
+ };
23254
+ required: string[];
23255
+ type: string;
23256
+ };
23257
+ };
23258
+ };
23259
+ description: string;
23260
+ };
23261
+ 400: {
23262
+ description: string;
23263
+ };
23264
+ 401: {
23265
+ description: string;
23266
+ };
23267
+ };
23268
+ security: ({
23269
+ pat_with_workspace: never[];
23270
+ console_session_with_workspace?: never;
23271
+ api_key?: never;
23272
+ } | {
23273
+ console_session_with_workspace: never[];
23274
+ pat_with_workspace?: never;
23275
+ api_key?: never;
23276
+ } | {
23277
+ api_key: never[];
23278
+ pat_with_workspace?: never;
23279
+ console_session_with_workspace?: never;
23280
+ })[];
23281
+ summary: string;
23282
+ tags: never[];
23283
+ 'x-fern-sdk-group-name': string[];
23284
+ 'x-fern-sdk-method-name': string;
23285
+ 'x-response-key': null;
23286
+ 'x-title': string;
23287
+ 'x-undocumented': string;
23288
+ };
23289
+ };
23290
+ '/unstable_locations/create': {
23291
+ post: {
23292
+ description: string;
23293
+ operationId: string;
23294
+ requestBody: {
23295
+ content: {
23296
+ 'application/json': {
23297
+ schema: {
23298
+ properties: {
23299
+ geolocation: {
23300
+ properties: {
23301
+ latitude: {
23302
+ format: string;
23303
+ type: string;
23304
+ };
23305
+ longitude: {
23306
+ format: string;
23307
+ type: string;
23308
+ };
23309
+ };
23310
+ required: string[];
23311
+ type: string;
23312
+ };
23313
+ name: {
23314
+ type: string;
23315
+ };
23316
+ time_zone: {
23317
+ type: string;
23318
+ };
23319
+ };
23320
+ required: string[];
23321
+ type: string;
23322
+ };
23323
+ };
23324
+ };
23325
+ };
23326
+ responses: {
23327
+ 200: {
23328
+ content: {
23329
+ 'application/json': {
23330
+ schema: {
23331
+ properties: {
23332
+ location: {
23333
+ properties: {
23334
+ created_at: {
23335
+ description: string;
23336
+ format: string;
23337
+ type: string;
23338
+ };
23339
+ display_name: {
23340
+ description: string;
23341
+ type: string;
23342
+ };
23343
+ geolocation: {
23344
+ description: string;
23345
+ properties: {
23346
+ latitude: {
23347
+ format: string;
23348
+ type: string;
23349
+ };
23350
+ longitude: {
23351
+ format: string;
23352
+ type: string;
23353
+ };
23354
+ };
23355
+ required: string[];
23356
+ type: string;
23357
+ };
23358
+ location_id: {
23359
+ description: string;
23360
+ format: string;
23361
+ type: string;
23362
+ };
23363
+ time_zone: {
23364
+ description: string;
23365
+ type: string;
23366
+ };
23367
+ workspace_id: {
23368
+ description: string;
23369
+ format: string;
23370
+ type: string;
23371
+ };
23372
+ };
23373
+ required: string[];
23374
+ type: string;
23375
+ };
23376
+ ok: {
23377
+ type: string;
23378
+ };
23379
+ };
23380
+ required: string[];
23381
+ type: string;
23382
+ };
23383
+ };
23384
+ };
23385
+ description: string;
23386
+ };
23387
+ 400: {
23388
+ description: string;
23389
+ };
23390
+ 401: {
23391
+ description: string;
23392
+ };
23393
+ };
23394
+ security: ({
23395
+ pat_with_workspace: never[];
23396
+ console_session_with_workspace?: never;
23397
+ api_key?: never;
23398
+ } | {
23399
+ console_session_with_workspace: never[];
23400
+ pat_with_workspace?: never;
23401
+ api_key?: never;
23402
+ } | {
23403
+ api_key: never[];
23404
+ pat_with_workspace?: never;
23405
+ console_session_with_workspace?: never;
23406
+ })[];
23407
+ summary: string;
23408
+ tags: never[];
23409
+ 'x-fern-sdk-group-name': string[];
23410
+ 'x-fern-sdk-method-name': string;
23411
+ 'x-fern-sdk-return-value': string;
23412
+ 'x-response-key': string;
23413
+ 'x-title': string;
23414
+ 'x-undocumented': string;
23415
+ };
23416
+ };
23417
+ '/unstable_locations/delete': {
23418
+ post: {
23419
+ description: string;
23420
+ operationId: string;
23421
+ requestBody: {
23422
+ content: {
23423
+ 'application/json': {
23424
+ schema: {
23425
+ properties: {
23426
+ location_id: {
23427
+ format: string;
23428
+ type: string;
23429
+ };
23430
+ };
23431
+ required: string[];
23432
+ type: string;
23433
+ };
23434
+ };
23435
+ };
23436
+ };
23437
+ responses: {
23438
+ 200: {
23439
+ content: {
23440
+ 'application/json': {
23441
+ schema: {
23442
+ properties: {
23443
+ ok: {
23444
+ type: string;
23445
+ };
23446
+ };
23447
+ required: string[];
23448
+ type: string;
23449
+ };
23450
+ };
23451
+ };
23452
+ description: string;
23453
+ };
23454
+ 400: {
23455
+ description: string;
23456
+ };
23457
+ 401: {
23458
+ description: string;
23459
+ };
23460
+ };
23461
+ security: ({
23462
+ pat_with_workspace: never[];
23463
+ console_session_with_workspace?: never;
23464
+ api_key?: never;
23465
+ } | {
23466
+ console_session_with_workspace: never[];
23467
+ pat_with_workspace?: never;
23468
+ api_key?: never;
23469
+ } | {
23470
+ api_key: never[];
23471
+ pat_with_workspace?: never;
23472
+ console_session_with_workspace?: never;
23473
+ })[];
23474
+ summary: string;
23475
+ tags: never[];
23476
+ 'x-fern-sdk-group-name': string[];
23477
+ 'x-fern-sdk-method-name': string;
23478
+ 'x-response-key': null;
23479
+ 'x-title': string;
23480
+ 'x-undocumented': string;
23481
+ };
23482
+ };
23483
+ '/unstable_locations/get': {
23484
+ post: {
23485
+ description: string;
23486
+ operationId: string;
23487
+ requestBody: {
23488
+ content: {
23489
+ 'application/json': {
23490
+ schema: {
23491
+ properties: {
23492
+ location_id: {
23493
+ format: string;
23494
+ type: string;
23495
+ };
23496
+ };
23497
+ required: string[];
23498
+ type: string;
23499
+ };
23500
+ };
23501
+ };
23502
+ };
23503
+ responses: {
23504
+ 200: {
23505
+ content: {
23506
+ 'application/json': {
23507
+ schema: {
23508
+ properties: {
23509
+ location: {
23510
+ properties: {
23511
+ created_at: {
23512
+ description: string;
23513
+ format: string;
23514
+ type: string;
23515
+ };
23516
+ display_name: {
23517
+ description: string;
23518
+ type: string;
23519
+ };
23520
+ geolocation: {
23521
+ description: string;
23522
+ properties: {
23523
+ latitude: {
23524
+ format: string;
23525
+ type: string;
23526
+ };
23527
+ longitude: {
23528
+ format: string;
23529
+ type: string;
23530
+ };
23531
+ };
23532
+ required: string[];
23533
+ type: string;
23534
+ };
23535
+ location_id: {
23536
+ description: string;
23537
+ format: string;
23538
+ type: string;
23539
+ };
23540
+ time_zone: {
23541
+ description: string;
23542
+ type: string;
23543
+ };
23544
+ workspace_id: {
23545
+ description: string;
23546
+ format: string;
23547
+ type: string;
23548
+ };
23549
+ };
23550
+ required: string[];
23551
+ type: string;
23552
+ };
23553
+ ok: {
23554
+ type: string;
23555
+ };
23556
+ };
23557
+ required: string[];
23558
+ type: string;
23559
+ };
23560
+ };
23561
+ };
23562
+ description: string;
23563
+ };
23564
+ 400: {
23565
+ description: string;
23566
+ };
23567
+ 401: {
23568
+ description: string;
23569
+ };
23570
+ };
23571
+ security: ({
23572
+ pat_with_workspace: never[];
23573
+ console_session_with_workspace?: never;
23574
+ api_key?: never;
23575
+ } | {
23576
+ console_session_with_workspace: never[];
23577
+ pat_with_workspace?: never;
23578
+ api_key?: never;
23579
+ } | {
23580
+ api_key: never[];
23581
+ pat_with_workspace?: never;
23582
+ console_session_with_workspace?: never;
23583
+ })[];
23584
+ summary: string;
23585
+ tags: never[];
23586
+ 'x-fern-sdk-group-name': string[];
23587
+ 'x-fern-sdk-method-name': string;
23588
+ 'x-fern-sdk-return-value': string;
23589
+ 'x-response-key': string;
23590
+ 'x-title': string;
23591
+ 'x-undocumented': string;
23592
+ };
23593
+ };
23594
+ '/unstable_locations/list': {
23595
+ get: {
23596
+ description: string;
23597
+ operationId: string;
23598
+ responses: {
23599
+ 200: {
23600
+ content: {
23601
+ 'application/json': {
23602
+ schema: {
23603
+ properties: {
23604
+ locations: {
23605
+ items: {
23606
+ properties: {
23607
+ created_at: {
23608
+ description: string;
23609
+ format: string;
23610
+ type: string;
23611
+ };
23612
+ display_name: {
23613
+ description: string;
23614
+ type: string;
23615
+ };
23616
+ geolocation: {
23617
+ description: string;
23618
+ properties: {
23619
+ latitude: {
23620
+ format: string;
23621
+ type: string;
23622
+ };
23623
+ longitude: {
23624
+ format: string;
23625
+ type: string;
23626
+ };
23627
+ };
23628
+ required: string[];
23629
+ type: string;
23630
+ };
23631
+ location_id: {
23632
+ description: string;
23633
+ format: string;
23634
+ type: string;
23635
+ };
23636
+ time_zone: {
23637
+ description: string;
23638
+ type: string;
23639
+ };
23640
+ workspace_id: {
23641
+ description: string;
23642
+ format: string;
23643
+ type: string;
23644
+ };
23645
+ };
23646
+ required: string[];
23647
+ type: string;
23648
+ };
23649
+ type: string;
23650
+ };
23651
+ ok: {
23652
+ type: string;
23653
+ };
23654
+ };
23655
+ required: string[];
23656
+ type: string;
23657
+ };
23658
+ };
23659
+ };
23660
+ description: string;
23661
+ };
23662
+ 400: {
23663
+ description: string;
23664
+ };
23665
+ 401: {
23666
+ description: string;
23667
+ };
23668
+ };
23669
+ security: ({
23670
+ pat_with_workspace: never[];
23671
+ console_session_with_workspace?: never;
23672
+ api_key?: never;
23673
+ } | {
23674
+ console_session_with_workspace: never[];
23675
+ pat_with_workspace?: never;
23676
+ api_key?: never;
23677
+ } | {
23678
+ api_key: never[];
23679
+ pat_with_workspace?: never;
23680
+ console_session_with_workspace?: never;
23681
+ })[];
23682
+ summary: string;
23683
+ tags: never[];
23684
+ 'x-fern-ignore': boolean;
23685
+ 'x-response-key': string;
23686
+ 'x-title': string;
23687
+ 'x-undocumented': string;
23688
+ };
23689
+ post: {
23690
+ description: string;
23691
+ operationId: string;
23692
+ responses: {
23693
+ 200: {
23694
+ content: {
23695
+ 'application/json': {
23696
+ schema: {
23697
+ properties: {
23698
+ locations: {
23699
+ items: {
23700
+ properties: {
23701
+ created_at: {
23702
+ description: string;
23703
+ format: string;
23704
+ type: string;
23705
+ };
23706
+ display_name: {
23707
+ description: string;
23708
+ type: string;
23709
+ };
23710
+ geolocation: {
23711
+ description: string;
23712
+ properties: {
23713
+ latitude: {
23714
+ format: string;
23715
+ type: string;
23716
+ };
23717
+ longitude: {
23718
+ format: string;
23719
+ type: string;
23720
+ };
23721
+ };
23722
+ required: string[];
23723
+ type: string;
23724
+ };
23725
+ location_id: {
23726
+ description: string;
23727
+ format: string;
23728
+ type: string;
23729
+ };
23730
+ time_zone: {
23731
+ description: string;
23732
+ type: string;
23733
+ };
23734
+ workspace_id: {
23735
+ description: string;
23736
+ format: string;
23737
+ type: string;
23738
+ };
23739
+ };
23740
+ required: string[];
23741
+ type: string;
23742
+ };
23743
+ type: string;
23744
+ };
23745
+ ok: {
23746
+ type: string;
23747
+ };
23748
+ };
23749
+ required: string[];
23750
+ type: string;
23751
+ };
23752
+ };
23753
+ };
23754
+ description: string;
23755
+ };
23756
+ 400: {
23757
+ description: string;
23758
+ };
23759
+ 401: {
23760
+ description: string;
23761
+ };
23762
+ };
23763
+ security: ({
23764
+ pat_with_workspace: never[];
23765
+ console_session_with_workspace?: never;
23766
+ api_key?: never;
23767
+ } | {
23768
+ console_session_with_workspace: never[];
23769
+ pat_with_workspace?: never;
23770
+ api_key?: never;
23771
+ } | {
23772
+ api_key: never[];
23773
+ pat_with_workspace?: never;
23774
+ console_session_with_workspace?: never;
23775
+ })[];
23776
+ summary: string;
23777
+ tags: never[];
23778
+ 'x-fern-sdk-group-name': string[];
23779
+ 'x-fern-sdk-method-name': string;
23780
+ 'x-fern-sdk-return-value': string;
23781
+ 'x-response-key': string;
23782
+ 'x-title': string;
23783
+ 'x-undocumented': string;
23784
+ };
23785
+ };
23786
+ '/unstable_locations/remove_devices': {
23787
+ post: {
23788
+ description: string;
23789
+ operationId: string;
23790
+ requestBody: {
23791
+ content: {
23792
+ 'application/json': {
23793
+ schema: {
23794
+ properties: {
23795
+ device_ids: {
23796
+ items: {
23797
+ format: string;
23798
+ type: string;
23799
+ };
23800
+ type: string;
23801
+ };
23802
+ location_id: {
23803
+ format: string;
23804
+ type: string;
23805
+ };
23806
+ };
23807
+ required: string[];
23808
+ type: string;
23809
+ };
23810
+ };
23811
+ };
23812
+ };
23813
+ responses: {
23814
+ 200: {
23815
+ content: {
23816
+ 'application/json': {
23817
+ schema: {
23818
+ properties: {
23819
+ ok: {
23820
+ type: string;
23821
+ };
23822
+ };
23823
+ required: string[];
23824
+ type: string;
23825
+ };
23826
+ };
23827
+ };
23828
+ description: string;
23829
+ };
23830
+ 400: {
23831
+ description: string;
23832
+ };
23833
+ 401: {
23834
+ description: string;
23835
+ };
23836
+ };
23837
+ security: ({
23838
+ pat_with_workspace: never[];
23839
+ console_session_with_workspace?: never;
23840
+ api_key?: never;
23841
+ } | {
23842
+ console_session_with_workspace: never[];
23843
+ pat_with_workspace?: never;
23844
+ api_key?: never;
23845
+ } | {
23846
+ api_key: never[];
23847
+ pat_with_workspace?: never;
23848
+ console_session_with_workspace?: never;
23849
+ })[];
23850
+ summary: string;
23851
+ tags: never[];
23852
+ 'x-fern-sdk-group-name': string[];
23853
+ 'x-fern-sdk-method-name': string;
23854
+ 'x-response-key': null;
23855
+ 'x-title': string;
23856
+ 'x-undocumented': string;
23857
+ };
23858
+ };
23859
+ '/unstable_locations/update': {
23860
+ post: {
23861
+ description: string;
23862
+ operationId: string;
23863
+ requestBody: {
23864
+ content: {
23865
+ 'application/json': {
23866
+ schema: {
23867
+ properties: {
23868
+ geolocation: {
23869
+ properties: {
23870
+ latitude: {
23871
+ format: string;
23872
+ type: string;
23873
+ };
23874
+ longitude: {
23875
+ format: string;
23876
+ type: string;
23877
+ };
23878
+ };
23879
+ required: string[];
23880
+ type: string;
23881
+ };
23882
+ location_id: {
23883
+ format: string;
23884
+ type: string;
23885
+ };
23886
+ name: {
23887
+ type: string;
23888
+ };
23889
+ time_zone: {
23890
+ type: string;
23891
+ };
23892
+ };
23893
+ required: string[];
23894
+ type: string;
23895
+ };
23896
+ };
23897
+ };
23898
+ };
23899
+ responses: {
23900
+ 200: {
23901
+ content: {
23902
+ 'application/json': {
23903
+ schema: {
23904
+ properties: {
23905
+ location: {
23906
+ properties: {
23907
+ created_at: {
23908
+ description: string;
23909
+ format: string;
23910
+ type: string;
23911
+ };
23912
+ display_name: {
23913
+ description: string;
23914
+ type: string;
23915
+ };
23916
+ geolocation: {
23917
+ description: string;
23918
+ properties: {
23919
+ latitude: {
23920
+ format: string;
23921
+ type: string;
23922
+ };
23923
+ longitude: {
23924
+ format: string;
23925
+ type: string;
23926
+ };
23927
+ };
23928
+ required: string[];
23929
+ type: string;
23930
+ };
23931
+ location_id: {
23932
+ description: string;
23933
+ format: string;
23934
+ type: string;
23935
+ };
23936
+ time_zone: {
23937
+ description: string;
23938
+ type: string;
23939
+ };
23940
+ workspace_id: {
23941
+ description: string;
23942
+ format: string;
23943
+ type: string;
23944
+ };
23945
+ };
23946
+ required: string[];
23947
+ type: string;
23948
+ };
23949
+ ok: {
23950
+ type: string;
23951
+ };
23952
+ };
23953
+ required: string[];
23954
+ type: string;
23955
+ };
23956
+ };
23957
+ };
23958
+ description: string;
23959
+ };
23960
+ 400: {
23961
+ description: string;
23962
+ };
23963
+ 401: {
23964
+ description: string;
23965
+ };
23966
+ };
23967
+ security: ({
23968
+ pat_with_workspace: never[];
23969
+ console_session_with_workspace?: never;
23970
+ api_key?: never;
23971
+ } | {
23972
+ console_session_with_workspace: never[];
23973
+ pat_with_workspace?: never;
23974
+ api_key?: never;
23975
+ } | {
23976
+ api_key: never[];
23977
+ pat_with_workspace?: never;
23978
+ console_session_with_workspace?: never;
23979
+ })[];
23980
+ summary: string;
23981
+ tags: never[];
23982
+ 'x-fern-sdk-group-name': string[];
23983
+ 'x-fern-sdk-method-name': string;
23984
+ 'x-fern-sdk-return-value': string;
23985
+ 'x-response-key': string;
23986
+ 'x-title': string;
23987
+ 'x-undocumented': string;
23988
+ };
23989
+ };
22755
23990
  '/user_identities/add_acs_user': {
22756
23991
  post: {
22757
23992
  description: string;