@seamapi/types 1.737.0 → 1.739.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 (43) hide show
  1. package/dist/connect.cjs +1867 -18
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +4282 -348
  4. package/dist/index.cjs +1867 -18
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/acs/acs-access-group.d.ts +590 -0
  7. package/lib/seam/connect/models/acs/acs-access-group.js +4 -0
  8. package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
  9. package/lib/seam/connect/models/acs/acs-access-groups/index.d.ts +1 -0
  10. package/lib/seam/connect/models/acs/acs-access-groups/index.js +2 -0
  11. package/lib/seam/connect/models/acs/acs-access-groups/index.js.map +1 -0
  12. package/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.d.ts +511 -0
  13. package/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.js +126 -0
  14. package/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.js.map +1 -0
  15. package/lib/seam/connect/models/acs/acs-credential.d.ts +4 -4
  16. package/lib/seam/connect/models/acs/acs-entrance.d.ts +2 -2
  17. package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +4 -4
  18. package/lib/seam/connect/models/acs/acs-users/pending-mutations.d.ts +12 -12
  19. package/lib/seam/connect/models/acs/index.d.ts +1 -0
  20. package/lib/seam/connect/models/acs/index.js +1 -0
  21. package/lib/seam/connect/models/acs/index.js.map +1 -1
  22. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +20 -20
  23. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +8 -8
  24. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +12 -12
  25. package/lib/seam/connect/models/batch.d.ts +868 -74
  26. package/lib/seam/connect/models/events/acs/entrances.d.ts +8 -8
  27. package/lib/seam/connect/models/events/acs/index.d.ts +8 -8
  28. package/lib/seam/connect/models/events/acs/users.d.ts +8 -8
  29. package/lib/seam/connect/models/events/devices.d.ts +4 -4
  30. package/lib/seam/connect/models/events/seam-event.d.ts +10 -10
  31. package/lib/seam/connect/models/phones/phone-session.d.ts +30 -30
  32. package/lib/seam/connect/models/user-identities/user-identity.d.ts +12 -12
  33. package/lib/seam/connect/openapi.d.ts +1761 -0
  34. package/lib/seam/connect/openapi.js +1758 -0
  35. package/lib/seam/connect/openapi.js.map +1 -1
  36. package/lib/seam/connect/route-types.d.ts +789 -0
  37. package/package.json +1 -1
  38. package/src/lib/seam/connect/models/acs/acs-access-group.ts +6 -0
  39. package/src/lib/seam/connect/models/acs/acs-access-groups/index.ts +1 -0
  40. package/src/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.ts +171 -0
  41. package/src/lib/seam/connect/models/acs/index.ts +1 -0
  42. package/src/lib/seam/connect/openapi.ts +1800 -0
  43. package/src/lib/seam/connect/route-types.ts +902 -0
@@ -1148,6 +1148,262 @@ declare const _default: {
1148
1148
  description: string;
1149
1149
  type: string;
1150
1150
  };
1151
+ pending_mutations: {
1152
+ description: string;
1153
+ items: {
1154
+ discriminator: {
1155
+ propertyName: string;
1156
+ };
1157
+ oneOf: ({
1158
+ description: string;
1159
+ properties: {
1160
+ created_at: {
1161
+ description: string;
1162
+ format: string;
1163
+ type: string;
1164
+ };
1165
+ message: {
1166
+ description: string;
1167
+ type: string;
1168
+ };
1169
+ mutation_code: {
1170
+ description: string;
1171
+ enum: string[];
1172
+ type: string;
1173
+ };
1174
+ from?: never;
1175
+ to?: never;
1176
+ };
1177
+ required: string[];
1178
+ type: string;
1179
+ } | {
1180
+ description: string;
1181
+ properties: {
1182
+ created_at: {
1183
+ description: string;
1184
+ format: string;
1185
+ type: string;
1186
+ };
1187
+ from: {
1188
+ description: string;
1189
+ properties: {
1190
+ name: {
1191
+ description: string;
1192
+ nullable: boolean;
1193
+ type: string;
1194
+ };
1195
+ ends_at?: never;
1196
+ starts_at?: never;
1197
+ acs_user_id?: never;
1198
+ acs_entrance_id?: never;
1199
+ };
1200
+ type: string;
1201
+ required?: never;
1202
+ };
1203
+ message: {
1204
+ description: string;
1205
+ type: string;
1206
+ };
1207
+ mutation_code: {
1208
+ description: string;
1209
+ enum: string[];
1210
+ type: string;
1211
+ };
1212
+ to: {
1213
+ description: string;
1214
+ properties: {
1215
+ name: {
1216
+ description: string;
1217
+ nullable: boolean;
1218
+ type: string;
1219
+ };
1220
+ ends_at?: never;
1221
+ starts_at?: never;
1222
+ acs_user_id?: never;
1223
+ acs_entrance_id?: never;
1224
+ };
1225
+ type: string;
1226
+ required?: never;
1227
+ };
1228
+ };
1229
+ required: string[];
1230
+ type: string;
1231
+ } | {
1232
+ description: string;
1233
+ properties: {
1234
+ created_at: {
1235
+ description: string;
1236
+ format: string;
1237
+ type: string;
1238
+ };
1239
+ from: {
1240
+ description: string;
1241
+ properties: {
1242
+ ends_at: {
1243
+ description: string;
1244
+ format: string;
1245
+ nullable: boolean;
1246
+ type: string;
1247
+ };
1248
+ starts_at: {
1249
+ description: string;
1250
+ format: string;
1251
+ nullable: boolean;
1252
+ type: string;
1253
+ };
1254
+ name?: never;
1255
+ acs_user_id?: never;
1256
+ acs_entrance_id?: never;
1257
+ };
1258
+ required: string[];
1259
+ type: string;
1260
+ };
1261
+ message: {
1262
+ description: string;
1263
+ type: string;
1264
+ };
1265
+ mutation_code: {
1266
+ description: string;
1267
+ enum: string[];
1268
+ type: string;
1269
+ };
1270
+ to: {
1271
+ description: string;
1272
+ properties: {
1273
+ ends_at: {
1274
+ description: string;
1275
+ format: string;
1276
+ nullable: boolean;
1277
+ type: string;
1278
+ };
1279
+ starts_at: {
1280
+ description: string;
1281
+ format: string;
1282
+ nullable: boolean;
1283
+ type: string;
1284
+ };
1285
+ name?: never;
1286
+ acs_user_id?: never;
1287
+ acs_entrance_id?: never;
1288
+ };
1289
+ required: string[];
1290
+ type: string;
1291
+ };
1292
+ };
1293
+ required: string[];
1294
+ type: string;
1295
+ } | {
1296
+ description: string;
1297
+ properties: {
1298
+ created_at: {
1299
+ description: string;
1300
+ format: string;
1301
+ type: string;
1302
+ };
1303
+ from: {
1304
+ description: string;
1305
+ properties: {
1306
+ acs_user_id: {
1307
+ description: string;
1308
+ format: string;
1309
+ nullable: boolean;
1310
+ type: string;
1311
+ };
1312
+ name?: never;
1313
+ ends_at?: never;
1314
+ starts_at?: never;
1315
+ acs_entrance_id?: never;
1316
+ };
1317
+ required: string[];
1318
+ type: string;
1319
+ };
1320
+ message: {
1321
+ description: string;
1322
+ type: string;
1323
+ };
1324
+ mutation_code: {
1325
+ description: string;
1326
+ enum: string[];
1327
+ type: string;
1328
+ };
1329
+ to: {
1330
+ description: string;
1331
+ properties: {
1332
+ acs_user_id: {
1333
+ description: string;
1334
+ format: string;
1335
+ nullable: boolean;
1336
+ type: string;
1337
+ };
1338
+ name?: never;
1339
+ ends_at?: never;
1340
+ starts_at?: never;
1341
+ acs_entrance_id?: never;
1342
+ };
1343
+ required: string[];
1344
+ type: string;
1345
+ };
1346
+ };
1347
+ required: string[];
1348
+ type: string;
1349
+ } | {
1350
+ description: string;
1351
+ properties: {
1352
+ created_at: {
1353
+ description: string;
1354
+ format: string;
1355
+ type: string;
1356
+ };
1357
+ from: {
1358
+ description: string;
1359
+ properties: {
1360
+ acs_entrance_id: {
1361
+ description: string;
1362
+ format: string;
1363
+ nullable: boolean;
1364
+ type: string;
1365
+ };
1366
+ name?: never;
1367
+ ends_at?: never;
1368
+ starts_at?: never;
1369
+ acs_user_id?: never;
1370
+ };
1371
+ required: string[];
1372
+ type: string;
1373
+ };
1374
+ message: {
1375
+ description: string;
1376
+ type: string;
1377
+ };
1378
+ mutation_code: {
1379
+ description: string;
1380
+ enum: string[];
1381
+ type: string;
1382
+ };
1383
+ to: {
1384
+ description: string;
1385
+ properties: {
1386
+ acs_entrance_id: {
1387
+ description: string;
1388
+ format: string;
1389
+ nullable: boolean;
1390
+ type: string;
1391
+ };
1392
+ name?: never;
1393
+ ends_at?: never;
1394
+ starts_at?: never;
1395
+ acs_user_id?: never;
1396
+ };
1397
+ required: string[];
1398
+ type: string;
1399
+ };
1400
+ };
1401
+ required: string[];
1402
+ type: string;
1403
+ })[];
1404
+ };
1405
+ type: string;
1406
+ };
1151
1407
  warnings: {
1152
1408
  description: string;
1153
1409
  items: {
@@ -16121,6 +16377,262 @@ declare const _default: {
16121
16377
  description: string;
16122
16378
  type: string;
16123
16379
  };
16380
+ pending_mutations: {
16381
+ description: string;
16382
+ items: {
16383
+ discriminator: {
16384
+ propertyName: string;
16385
+ };
16386
+ oneOf: ({
16387
+ description: string;
16388
+ properties: {
16389
+ created_at: {
16390
+ description: string;
16391
+ format: string;
16392
+ type: string;
16393
+ };
16394
+ message: {
16395
+ description: string;
16396
+ type: string;
16397
+ };
16398
+ mutation_code: {
16399
+ description: string;
16400
+ enum: string[];
16401
+ type: string;
16402
+ };
16403
+ from?: never;
16404
+ to?: never;
16405
+ };
16406
+ required: string[];
16407
+ type: string;
16408
+ } | {
16409
+ description: string;
16410
+ properties: {
16411
+ created_at: {
16412
+ description: string;
16413
+ format: string;
16414
+ type: string;
16415
+ };
16416
+ from: {
16417
+ description: string;
16418
+ properties: {
16419
+ name: {
16420
+ description: string;
16421
+ nullable: boolean;
16422
+ type: string;
16423
+ };
16424
+ ends_at?: never;
16425
+ starts_at?: never;
16426
+ acs_user_id?: never;
16427
+ acs_entrance_id?: never;
16428
+ };
16429
+ type: string;
16430
+ required?: never;
16431
+ };
16432
+ message: {
16433
+ description: string;
16434
+ type: string;
16435
+ };
16436
+ mutation_code: {
16437
+ description: string;
16438
+ enum: string[];
16439
+ type: string;
16440
+ };
16441
+ to: {
16442
+ description: string;
16443
+ properties: {
16444
+ name: {
16445
+ description: string;
16446
+ nullable: boolean;
16447
+ type: string;
16448
+ };
16449
+ ends_at?: never;
16450
+ starts_at?: never;
16451
+ acs_user_id?: never;
16452
+ acs_entrance_id?: never;
16453
+ };
16454
+ type: string;
16455
+ required?: never;
16456
+ };
16457
+ };
16458
+ required: string[];
16459
+ type: string;
16460
+ } | {
16461
+ description: string;
16462
+ properties: {
16463
+ created_at: {
16464
+ description: string;
16465
+ format: string;
16466
+ type: string;
16467
+ };
16468
+ from: {
16469
+ description: string;
16470
+ properties: {
16471
+ ends_at: {
16472
+ description: string;
16473
+ format: string;
16474
+ nullable: boolean;
16475
+ type: string;
16476
+ };
16477
+ starts_at: {
16478
+ description: string;
16479
+ format: string;
16480
+ nullable: boolean;
16481
+ type: string;
16482
+ };
16483
+ name?: never;
16484
+ acs_user_id?: never;
16485
+ acs_entrance_id?: never;
16486
+ };
16487
+ required: string[];
16488
+ type: string;
16489
+ };
16490
+ message: {
16491
+ description: string;
16492
+ type: string;
16493
+ };
16494
+ mutation_code: {
16495
+ description: string;
16496
+ enum: string[];
16497
+ type: string;
16498
+ };
16499
+ to: {
16500
+ description: string;
16501
+ properties: {
16502
+ ends_at: {
16503
+ description: string;
16504
+ format: string;
16505
+ nullable: boolean;
16506
+ type: string;
16507
+ };
16508
+ starts_at: {
16509
+ description: string;
16510
+ format: string;
16511
+ nullable: boolean;
16512
+ type: string;
16513
+ };
16514
+ name?: never;
16515
+ acs_user_id?: never;
16516
+ acs_entrance_id?: never;
16517
+ };
16518
+ required: string[];
16519
+ type: string;
16520
+ };
16521
+ };
16522
+ required: string[];
16523
+ type: string;
16524
+ } | {
16525
+ description: string;
16526
+ properties: {
16527
+ created_at: {
16528
+ description: string;
16529
+ format: string;
16530
+ type: string;
16531
+ };
16532
+ from: {
16533
+ description: string;
16534
+ properties: {
16535
+ acs_user_id: {
16536
+ description: string;
16537
+ format: string;
16538
+ nullable: boolean;
16539
+ type: string;
16540
+ };
16541
+ name?: never;
16542
+ ends_at?: never;
16543
+ starts_at?: never;
16544
+ acs_entrance_id?: never;
16545
+ };
16546
+ required: string[];
16547
+ type: string;
16548
+ };
16549
+ message: {
16550
+ description: string;
16551
+ type: string;
16552
+ };
16553
+ mutation_code: {
16554
+ description: string;
16555
+ enum: string[];
16556
+ type: string;
16557
+ };
16558
+ to: {
16559
+ description: string;
16560
+ properties: {
16561
+ acs_user_id: {
16562
+ description: string;
16563
+ format: string;
16564
+ nullable: boolean;
16565
+ type: string;
16566
+ };
16567
+ name?: never;
16568
+ ends_at?: never;
16569
+ starts_at?: never;
16570
+ acs_entrance_id?: never;
16571
+ };
16572
+ required: string[];
16573
+ type: string;
16574
+ };
16575
+ };
16576
+ required: string[];
16577
+ type: string;
16578
+ } | {
16579
+ description: string;
16580
+ properties: {
16581
+ created_at: {
16582
+ description: string;
16583
+ format: string;
16584
+ type: string;
16585
+ };
16586
+ from: {
16587
+ description: string;
16588
+ properties: {
16589
+ acs_entrance_id: {
16590
+ description: string;
16591
+ format: string;
16592
+ nullable: boolean;
16593
+ type: string;
16594
+ };
16595
+ name?: never;
16596
+ ends_at?: never;
16597
+ starts_at?: never;
16598
+ acs_user_id?: never;
16599
+ };
16600
+ required: string[];
16601
+ type: string;
16602
+ };
16603
+ message: {
16604
+ description: string;
16605
+ type: string;
16606
+ };
16607
+ mutation_code: {
16608
+ description: string;
16609
+ enum: string[];
16610
+ type: string;
16611
+ };
16612
+ to: {
16613
+ description: string;
16614
+ properties: {
16615
+ acs_entrance_id: {
16616
+ description: string;
16617
+ format: string;
16618
+ nullable: boolean;
16619
+ type: string;
16620
+ };
16621
+ name?: never;
16622
+ ends_at?: never;
16623
+ starts_at?: never;
16624
+ acs_user_id?: never;
16625
+ };
16626
+ required: string[];
16627
+ type: string;
16628
+ };
16629
+ };
16630
+ required: string[];
16631
+ type: string;
16632
+ })[];
16633
+ };
16634
+ type: string;
16635
+ };
16124
16636
  warnings: {
16125
16637
  description: string;
16126
16638
  items: {
@@ -51290,6 +51802,1255 @@ declare const _default: {
51290
51802
  'x-undocumented': string;
51291
51803
  };
51292
51804
  };
51805
+ '/seam/customer/v1/customers/automations/get': {
51806
+ get: {
51807
+ description: string;
51808
+ operationId: string;
51809
+ parameters: {
51810
+ in: string;
51811
+ name: string;
51812
+ required: boolean;
51813
+ schema: {
51814
+ description: string;
51815
+ type: string;
51816
+ };
51817
+ }[];
51818
+ responses: {
51819
+ 200: {
51820
+ content: {
51821
+ 'application/json': {
51822
+ schema: {
51823
+ properties: {
51824
+ automation: {
51825
+ properties: {
51826
+ access_rules: {
51827
+ properties: {
51828
+ reservation_created: {
51829
+ properties: {
51830
+ config: {
51831
+ properties: {
51832
+ access_methods: {
51833
+ items: {
51834
+ enum: string[];
51835
+ type: string;
51836
+ };
51837
+ minItems: number;
51838
+ type: string;
51839
+ };
51840
+ card_count_on_reservation_create: {
51841
+ minimum: number;
51842
+ type: string;
51843
+ };
51844
+ code_count_on_reservation_create: {
51845
+ minimum: number;
51846
+ type: string;
51847
+ };
51848
+ instant_key_max_use_count: {
51849
+ minimum: number;
51850
+ type: string;
51851
+ };
51852
+ method_issuance_strategy: {
51853
+ enum: string[];
51854
+ type: string;
51855
+ };
51856
+ };
51857
+ required: string[];
51858
+ type: string;
51859
+ };
51860
+ rule: {
51861
+ enum: string[];
51862
+ type: string;
51863
+ };
51864
+ };
51865
+ required: string[];
51866
+ type: string;
51867
+ };
51868
+ reservation_deleted: {
51869
+ properties: {
51870
+ config: {
51871
+ $ref: string;
51872
+ };
51873
+ rule: {
51874
+ enum: string[];
51875
+ type: string;
51876
+ };
51877
+ };
51878
+ required: string[];
51879
+ type: string;
51880
+ };
51881
+ reservation_spaces_updated: {
51882
+ properties: {
51883
+ config: {
51884
+ $ref: string;
51885
+ };
51886
+ rule: {
51887
+ enum: string[];
51888
+ type: string;
51889
+ };
51890
+ };
51891
+ required: string[];
51892
+ type: string;
51893
+ };
51894
+ reservation_time_updated: {
51895
+ properties: {
51896
+ config: {
51897
+ $ref: string;
51898
+ };
51899
+ rule: {
51900
+ enum: string[];
51901
+ type: string;
51902
+ };
51903
+ };
51904
+ required: string[];
51905
+ type: string;
51906
+ };
51907
+ space_name_updated: {
51908
+ properties: {
51909
+ config: {
51910
+ $ref: string;
51911
+ };
51912
+ rule: {
51913
+ enum: string[];
51914
+ type: string;
51915
+ };
51916
+ };
51917
+ required: string[];
51918
+ type: string;
51919
+ };
51920
+ staff_member_created: {
51921
+ properties: {
51922
+ config: {
51923
+ $ref: string;
51924
+ };
51925
+ rule: {
51926
+ enum: string[];
51927
+ type: string;
51928
+ };
51929
+ };
51930
+ required: string[];
51931
+ type: string;
51932
+ };
51933
+ staff_member_name_updated: {
51934
+ properties: {
51935
+ config: {
51936
+ $ref: string;
51937
+ };
51938
+ rule: {
51939
+ enum: string[];
51940
+ type: string;
51941
+ };
51942
+ };
51943
+ required: string[];
51944
+ type: string;
51945
+ };
51946
+ user_identity_name_updated: {
51947
+ properties: {
51948
+ config: {
51949
+ $ref: string;
51950
+ };
51951
+ rule: {
51952
+ enum: string[];
51953
+ type: string;
51954
+ };
51955
+ };
51956
+ required: string[];
51957
+ type: string;
51958
+ };
51959
+ };
51960
+ type: string;
51961
+ };
51962
+ climate_rules: {
51963
+ properties: {
51964
+ rules: {
51965
+ properties: {
51966
+ reservation_created: {
51967
+ properties: {
51968
+ automated_occupied_preset: {
51969
+ properties: {
51970
+ cooling_set_point_celsius: {
51971
+ format: string;
51972
+ type: string;
51973
+ };
51974
+ cooling_set_point_fahrenheit: {
51975
+ format: string;
51976
+ type: string;
51977
+ };
51978
+ fan_mode: {
51979
+ enum: string[];
51980
+ type: string;
51981
+ };
51982
+ heating_set_point_celsius: {
51983
+ format: string;
51984
+ type: string;
51985
+ };
51986
+ heating_set_point_fahrenheit: {
51987
+ format: string;
51988
+ type: string;
51989
+ };
51990
+ is_override_allowed: {
51991
+ type: string;
51992
+ };
51993
+ max_override_period_minutes: {
51994
+ format: string;
51995
+ type: string;
51996
+ };
51997
+ mode: {
51998
+ enum: string[];
51999
+ type: string;
52000
+ };
52001
+ };
52002
+ required: string[];
52003
+ type: string;
52004
+ };
52005
+ automated_unoccupied_preset: {
52006
+ properties: {
52007
+ cooling_set_point_celsius: {
52008
+ format: string;
52009
+ type: string;
52010
+ };
52011
+ cooling_set_point_fahrenheit: {
52012
+ format: string;
52013
+ type: string;
52014
+ };
52015
+ fan_mode: {
52016
+ enum: string[];
52017
+ type: string;
52018
+ };
52019
+ heating_set_point_celsius: {
52020
+ format: string;
52021
+ type: string;
52022
+ };
52023
+ heating_set_point_fahrenheit: {
52024
+ format: string;
52025
+ type: string;
52026
+ };
52027
+ is_override_allowed: {
52028
+ type: string;
52029
+ };
52030
+ max_override_period_minutes: {
52031
+ format: string;
52032
+ type: string;
52033
+ };
52034
+ mode: {
52035
+ enum: string[];
52036
+ type: string;
52037
+ };
52038
+ };
52039
+ required: string[];
52040
+ type: string;
52041
+ };
52042
+ occupied_preset_key: {
52043
+ type: string;
52044
+ };
52045
+ precondition_minutes_before_reservation: {
52046
+ format: string;
52047
+ type: string;
52048
+ };
52049
+ unoccupied_preset_key: {
52050
+ type: string;
52051
+ };
52052
+ };
52053
+ type: string;
52054
+ };
52055
+ reservation_deleted: {
52056
+ $ref: string;
52057
+ };
52058
+ reservation_time_updated: {
52059
+ $ref: string;
52060
+ };
52061
+ };
52062
+ type: string;
52063
+ };
52064
+ };
52065
+ required: string[];
52066
+ type: string;
52067
+ };
52068
+ };
52069
+ type: string;
52070
+ };
52071
+ ok: {
52072
+ type: string;
52073
+ };
52074
+ };
52075
+ required: string[];
52076
+ type: string;
52077
+ };
52078
+ };
52079
+ };
52080
+ description: string;
52081
+ };
52082
+ 400: {
52083
+ description: string;
52084
+ };
52085
+ 401: {
52086
+ description: string;
52087
+ };
52088
+ };
52089
+ security: ({
52090
+ pat_with_workspace: never[];
52091
+ console_session_with_workspace?: never;
52092
+ api_key?: never;
52093
+ } | {
52094
+ console_session_with_workspace: never[];
52095
+ pat_with_workspace?: never;
52096
+ api_key?: never;
52097
+ } | {
52098
+ api_key: never[];
52099
+ pat_with_workspace?: never;
52100
+ console_session_with_workspace?: never;
52101
+ })[];
52102
+ summary: string;
52103
+ tags: never[];
52104
+ 'x-fern-sdk-group-name': string[];
52105
+ 'x-fern-sdk-method-name': string;
52106
+ 'x-fern-sdk-return-value': string;
52107
+ 'x-response-key': string;
52108
+ 'x-title': string;
52109
+ };
52110
+ post: {
52111
+ description: string;
52112
+ operationId: string;
52113
+ requestBody: {
52114
+ content: {
52115
+ 'application/json': {
52116
+ schema: {
52117
+ properties: {
52118
+ customer_key: {
52119
+ description: string;
52120
+ type: string;
52121
+ };
52122
+ };
52123
+ required: string[];
52124
+ type: string;
52125
+ };
52126
+ };
52127
+ };
52128
+ };
52129
+ responses: {
52130
+ 200: {
52131
+ content: {
52132
+ 'application/json': {
52133
+ schema: {
52134
+ properties: {
52135
+ automation: {
52136
+ properties: {
52137
+ access_rules: {
52138
+ properties: {
52139
+ reservation_created: {
52140
+ properties: {
52141
+ config: {
52142
+ properties: {
52143
+ access_methods: {
52144
+ items: {
52145
+ enum: string[];
52146
+ type: string;
52147
+ };
52148
+ minItems: number;
52149
+ type: string;
52150
+ };
52151
+ card_count_on_reservation_create: {
52152
+ minimum: number;
52153
+ type: string;
52154
+ };
52155
+ code_count_on_reservation_create: {
52156
+ minimum: number;
52157
+ type: string;
52158
+ };
52159
+ instant_key_max_use_count: {
52160
+ minimum: number;
52161
+ type: string;
52162
+ };
52163
+ method_issuance_strategy: {
52164
+ enum: string[];
52165
+ type: string;
52166
+ };
52167
+ };
52168
+ required: string[];
52169
+ type: string;
52170
+ };
52171
+ rule: {
52172
+ enum: string[];
52173
+ type: string;
52174
+ };
52175
+ };
52176
+ required: string[];
52177
+ type: string;
52178
+ };
52179
+ reservation_deleted: {
52180
+ properties: {
52181
+ config: {
52182
+ $ref: string;
52183
+ };
52184
+ rule: {
52185
+ enum: string[];
52186
+ type: string;
52187
+ };
52188
+ };
52189
+ required: string[];
52190
+ type: string;
52191
+ };
52192
+ reservation_spaces_updated: {
52193
+ properties: {
52194
+ config: {
52195
+ $ref: string;
52196
+ };
52197
+ rule: {
52198
+ enum: string[];
52199
+ type: string;
52200
+ };
52201
+ };
52202
+ required: string[];
52203
+ type: string;
52204
+ };
52205
+ reservation_time_updated: {
52206
+ properties: {
52207
+ config: {
52208
+ $ref: string;
52209
+ };
52210
+ rule: {
52211
+ enum: string[];
52212
+ type: string;
52213
+ };
52214
+ };
52215
+ required: string[];
52216
+ type: string;
52217
+ };
52218
+ space_name_updated: {
52219
+ properties: {
52220
+ config: {
52221
+ $ref: string;
52222
+ };
52223
+ rule: {
52224
+ enum: string[];
52225
+ type: string;
52226
+ };
52227
+ };
52228
+ required: string[];
52229
+ type: string;
52230
+ };
52231
+ staff_member_created: {
52232
+ properties: {
52233
+ config: {
52234
+ $ref: string;
52235
+ };
52236
+ rule: {
52237
+ enum: string[];
52238
+ type: string;
52239
+ };
52240
+ };
52241
+ required: string[];
52242
+ type: string;
52243
+ };
52244
+ staff_member_name_updated: {
52245
+ properties: {
52246
+ config: {
52247
+ $ref: string;
52248
+ };
52249
+ rule: {
52250
+ enum: string[];
52251
+ type: string;
52252
+ };
52253
+ };
52254
+ required: string[];
52255
+ type: string;
52256
+ };
52257
+ user_identity_name_updated: {
52258
+ properties: {
52259
+ config: {
52260
+ $ref: string;
52261
+ };
52262
+ rule: {
52263
+ enum: string[];
52264
+ type: string;
52265
+ };
52266
+ };
52267
+ required: string[];
52268
+ type: string;
52269
+ };
52270
+ };
52271
+ type: string;
52272
+ };
52273
+ climate_rules: {
52274
+ properties: {
52275
+ rules: {
52276
+ properties: {
52277
+ reservation_created: {
52278
+ properties: {
52279
+ automated_occupied_preset: {
52280
+ properties: {
52281
+ cooling_set_point_celsius: {
52282
+ format: string;
52283
+ type: string;
52284
+ };
52285
+ cooling_set_point_fahrenheit: {
52286
+ format: string;
52287
+ type: string;
52288
+ };
52289
+ fan_mode: {
52290
+ enum: string[];
52291
+ type: string;
52292
+ };
52293
+ heating_set_point_celsius: {
52294
+ format: string;
52295
+ type: string;
52296
+ };
52297
+ heating_set_point_fahrenheit: {
52298
+ format: string;
52299
+ type: string;
52300
+ };
52301
+ is_override_allowed: {
52302
+ type: string;
52303
+ };
52304
+ max_override_period_minutes: {
52305
+ format: string;
52306
+ type: string;
52307
+ };
52308
+ mode: {
52309
+ enum: string[];
52310
+ type: string;
52311
+ };
52312
+ };
52313
+ required: string[];
52314
+ type: string;
52315
+ };
52316
+ automated_unoccupied_preset: {
52317
+ properties: {
52318
+ cooling_set_point_celsius: {
52319
+ format: string;
52320
+ type: string;
52321
+ };
52322
+ cooling_set_point_fahrenheit: {
52323
+ format: string;
52324
+ type: string;
52325
+ };
52326
+ fan_mode: {
52327
+ enum: string[];
52328
+ type: string;
52329
+ };
52330
+ heating_set_point_celsius: {
52331
+ format: string;
52332
+ type: string;
52333
+ };
52334
+ heating_set_point_fahrenheit: {
52335
+ format: string;
52336
+ type: string;
52337
+ };
52338
+ is_override_allowed: {
52339
+ type: string;
52340
+ };
52341
+ max_override_period_minutes: {
52342
+ format: string;
52343
+ type: string;
52344
+ };
52345
+ mode: {
52346
+ enum: string[];
52347
+ type: string;
52348
+ };
52349
+ };
52350
+ required: string[];
52351
+ type: string;
52352
+ };
52353
+ occupied_preset_key: {
52354
+ type: string;
52355
+ };
52356
+ precondition_minutes_before_reservation: {
52357
+ format: string;
52358
+ type: string;
52359
+ };
52360
+ unoccupied_preset_key: {
52361
+ type: string;
52362
+ };
52363
+ };
52364
+ type: string;
52365
+ };
52366
+ reservation_deleted: {
52367
+ $ref: string;
52368
+ };
52369
+ reservation_time_updated: {
52370
+ $ref: string;
52371
+ };
52372
+ };
52373
+ type: string;
52374
+ };
52375
+ };
52376
+ required: string[];
52377
+ type: string;
52378
+ };
52379
+ };
52380
+ type: string;
52381
+ };
52382
+ ok: {
52383
+ type: string;
52384
+ };
52385
+ };
52386
+ required: string[];
52387
+ type: string;
52388
+ };
52389
+ };
52390
+ };
52391
+ description: string;
52392
+ };
52393
+ 400: {
52394
+ description: string;
52395
+ };
52396
+ 401: {
52397
+ description: string;
52398
+ };
52399
+ };
52400
+ security: ({
52401
+ pat_with_workspace: never[];
52402
+ console_session_with_workspace?: never;
52403
+ api_key?: never;
52404
+ } | {
52405
+ console_session_with_workspace: never[];
52406
+ pat_with_workspace?: never;
52407
+ api_key?: never;
52408
+ } | {
52409
+ api_key: never[];
52410
+ pat_with_workspace?: never;
52411
+ console_session_with_workspace?: never;
52412
+ })[];
52413
+ summary: string;
52414
+ tags: never[];
52415
+ 'x-fern-sdk-group-name': string[];
52416
+ 'x-fern-sdk-method-name': string;
52417
+ 'x-fern-sdk-return-value': string;
52418
+ 'x-response-key': string;
52419
+ 'x-title': string;
52420
+ };
52421
+ };
52422
+ '/seam/customer/v1/customers/automations/update': {
52423
+ patch: {
52424
+ description: string;
52425
+ operationId: string;
52426
+ requestBody: {
52427
+ content: {
52428
+ 'application/json': {
52429
+ schema: {
52430
+ properties: {
52431
+ access_rules: {
52432
+ description: string;
52433
+ properties: {
52434
+ reservation_created: {
52435
+ properties: {
52436
+ config: {
52437
+ properties: {
52438
+ access_methods: {
52439
+ items: {
52440
+ enum: string[];
52441
+ type: string;
52442
+ };
52443
+ minItems: number;
52444
+ type: string;
52445
+ };
52446
+ card_count_on_reservation_create: {
52447
+ minimum: number;
52448
+ type: string;
52449
+ };
52450
+ code_count_on_reservation_create: {
52451
+ minimum: number;
52452
+ type: string;
52453
+ };
52454
+ instant_key_max_use_count: {
52455
+ minimum: number;
52456
+ type: string;
52457
+ };
52458
+ method_issuance_strategy: {
52459
+ enum: string[];
52460
+ type: string;
52461
+ };
52462
+ };
52463
+ required: string[];
52464
+ type: string;
52465
+ };
52466
+ rule: {
52467
+ enum: string[];
52468
+ type: string;
52469
+ };
52470
+ };
52471
+ required: string[];
52472
+ type: string;
52473
+ };
52474
+ reservation_deleted: {
52475
+ properties: {
52476
+ config: {
52477
+ properties: {};
52478
+ type: string;
52479
+ };
52480
+ rule: {
52481
+ enum: string[];
52482
+ type: string;
52483
+ };
52484
+ };
52485
+ required: string[];
52486
+ type: string;
52487
+ };
52488
+ reservation_spaces_updated: {
52489
+ properties: {
52490
+ config: {
52491
+ properties: {};
52492
+ type: string;
52493
+ };
52494
+ rule: {
52495
+ enum: string[];
52496
+ type: string;
52497
+ };
52498
+ };
52499
+ required: string[];
52500
+ type: string;
52501
+ };
52502
+ reservation_time_updated: {
52503
+ properties: {
52504
+ config: {
52505
+ properties: {};
52506
+ type: string;
52507
+ };
52508
+ rule: {
52509
+ enum: string[];
52510
+ type: string;
52511
+ };
52512
+ };
52513
+ required: string[];
52514
+ type: string;
52515
+ };
52516
+ space_name_updated: {
52517
+ properties: {
52518
+ config: {
52519
+ properties: {};
52520
+ type: string;
52521
+ };
52522
+ rule: {
52523
+ enum: string[];
52524
+ type: string;
52525
+ };
52526
+ };
52527
+ required: string[];
52528
+ type: string;
52529
+ };
52530
+ staff_member_created: {
52531
+ properties: {
52532
+ config: {
52533
+ properties: {};
52534
+ type: string;
52535
+ };
52536
+ rule: {
52537
+ enum: string[];
52538
+ type: string;
52539
+ };
52540
+ };
52541
+ required: string[];
52542
+ type: string;
52543
+ };
52544
+ staff_member_name_updated: {
52545
+ properties: {
52546
+ config: {
52547
+ properties: {};
52548
+ type: string;
52549
+ };
52550
+ rule: {
52551
+ enum: string[];
52552
+ type: string;
52553
+ };
52554
+ };
52555
+ required: string[];
52556
+ type: string;
52557
+ };
52558
+ user_identity_name_updated: {
52559
+ properties: {
52560
+ config: {
52561
+ properties: {};
52562
+ type: string;
52563
+ };
52564
+ rule: {
52565
+ enum: string[];
52566
+ type: string;
52567
+ };
52568
+ };
52569
+ required: string[];
52570
+ type: string;
52571
+ };
52572
+ };
52573
+ type: string;
52574
+ };
52575
+ climate_rules: {
52576
+ description: string;
52577
+ properties: {
52578
+ rules: {
52579
+ properties: {
52580
+ reservation_created: {
52581
+ properties: {
52582
+ automated_occupied_preset: {
52583
+ properties: {
52584
+ cooling_set_point_celsius: {
52585
+ format: string;
52586
+ type: string;
52587
+ };
52588
+ cooling_set_point_fahrenheit: {
52589
+ format: string;
52590
+ type: string;
52591
+ };
52592
+ fan_mode: {
52593
+ enum: string[];
52594
+ type: string;
52595
+ };
52596
+ heating_set_point_celsius: {
52597
+ format: string;
52598
+ type: string;
52599
+ };
52600
+ heating_set_point_fahrenheit: {
52601
+ format: string;
52602
+ type: string;
52603
+ };
52604
+ is_override_allowed: {
52605
+ type: string;
52606
+ };
52607
+ max_override_period_minutes: {
52608
+ format: string;
52609
+ type: string;
52610
+ };
52611
+ mode: {
52612
+ enum: string[];
52613
+ type: string;
52614
+ };
52615
+ };
52616
+ required: string[];
52617
+ type: string;
52618
+ };
52619
+ automated_unoccupied_preset: {
52620
+ properties: {
52621
+ cooling_set_point_celsius: {
52622
+ format: string;
52623
+ type: string;
52624
+ };
52625
+ cooling_set_point_fahrenheit: {
52626
+ format: string;
52627
+ type: string;
52628
+ };
52629
+ fan_mode: {
52630
+ enum: string[];
52631
+ type: string;
52632
+ };
52633
+ heating_set_point_celsius: {
52634
+ format: string;
52635
+ type: string;
52636
+ };
52637
+ heating_set_point_fahrenheit: {
52638
+ format: string;
52639
+ type: string;
52640
+ };
52641
+ is_override_allowed: {
52642
+ type: string;
52643
+ };
52644
+ max_override_period_minutes: {
52645
+ format: string;
52646
+ type: string;
52647
+ };
52648
+ mode: {
52649
+ enum: string[];
52650
+ type: string;
52651
+ };
52652
+ };
52653
+ required: string[];
52654
+ type: string;
52655
+ };
52656
+ occupied_preset_key: {
52657
+ type: string;
52658
+ };
52659
+ precondition_minutes_before_reservation: {
52660
+ format: string;
52661
+ type: string;
52662
+ };
52663
+ unoccupied_preset_key: {
52664
+ type: string;
52665
+ };
52666
+ };
52667
+ type: string;
52668
+ };
52669
+ reservation_deleted: {
52670
+ properties: {};
52671
+ type: string;
52672
+ };
52673
+ reservation_time_updated: {
52674
+ properties: {};
52675
+ type: string;
52676
+ };
52677
+ };
52678
+ type: string;
52679
+ };
52680
+ };
52681
+ type: string;
52682
+ };
52683
+ customer_key: {
52684
+ description: string;
52685
+ type: string;
52686
+ };
52687
+ };
52688
+ required: string[];
52689
+ type: string;
52690
+ };
52691
+ };
52692
+ };
52693
+ };
52694
+ responses: {
52695
+ 200: {
52696
+ content: {
52697
+ 'application/json': {
52698
+ schema: {
52699
+ properties: {
52700
+ ok: {
52701
+ type: string;
52702
+ };
52703
+ };
52704
+ required: string[];
52705
+ type: string;
52706
+ };
52707
+ };
52708
+ };
52709
+ description: string;
52710
+ };
52711
+ 400: {
52712
+ description: string;
52713
+ };
52714
+ 401: {
52715
+ description: string;
52716
+ };
52717
+ };
52718
+ security: ({
52719
+ pat_with_workspace: never[];
52720
+ console_session_with_workspace?: never;
52721
+ api_key?: never;
52722
+ } | {
52723
+ console_session_with_workspace: never[];
52724
+ pat_with_workspace?: never;
52725
+ api_key?: never;
52726
+ } | {
52727
+ api_key: never[];
52728
+ pat_with_workspace?: never;
52729
+ console_session_with_workspace?: never;
52730
+ })[];
52731
+ summary: string;
52732
+ tags: never[];
52733
+ 'x-fern-sdk-group-name': string[];
52734
+ 'x-fern-sdk-method-name': string;
52735
+ 'x-response-key': null;
52736
+ 'x-title': string;
52737
+ };
52738
+ post: {
52739
+ description: string;
52740
+ operationId: string;
52741
+ requestBody: {
52742
+ content: {
52743
+ 'application/json': {
52744
+ schema: {
52745
+ properties: {
52746
+ access_rules: {
52747
+ description: string;
52748
+ properties: {
52749
+ reservation_created: {
52750
+ properties: {
52751
+ config: {
52752
+ properties: {
52753
+ access_methods: {
52754
+ items: {
52755
+ enum: string[];
52756
+ type: string;
52757
+ };
52758
+ minItems: number;
52759
+ type: string;
52760
+ };
52761
+ card_count_on_reservation_create: {
52762
+ minimum: number;
52763
+ type: string;
52764
+ };
52765
+ code_count_on_reservation_create: {
52766
+ minimum: number;
52767
+ type: string;
52768
+ };
52769
+ instant_key_max_use_count: {
52770
+ minimum: number;
52771
+ type: string;
52772
+ };
52773
+ method_issuance_strategy: {
52774
+ enum: string[];
52775
+ type: string;
52776
+ };
52777
+ };
52778
+ required: string[];
52779
+ type: string;
52780
+ };
52781
+ rule: {
52782
+ enum: string[];
52783
+ type: string;
52784
+ };
52785
+ };
52786
+ required: string[];
52787
+ type: string;
52788
+ };
52789
+ reservation_deleted: {
52790
+ properties: {
52791
+ config: {
52792
+ properties: {};
52793
+ type: string;
52794
+ };
52795
+ rule: {
52796
+ enum: string[];
52797
+ type: string;
52798
+ };
52799
+ };
52800
+ required: string[];
52801
+ type: string;
52802
+ };
52803
+ reservation_spaces_updated: {
52804
+ properties: {
52805
+ config: {
52806
+ properties: {};
52807
+ type: string;
52808
+ };
52809
+ rule: {
52810
+ enum: string[];
52811
+ type: string;
52812
+ };
52813
+ };
52814
+ required: string[];
52815
+ type: string;
52816
+ };
52817
+ reservation_time_updated: {
52818
+ properties: {
52819
+ config: {
52820
+ properties: {};
52821
+ type: string;
52822
+ };
52823
+ rule: {
52824
+ enum: string[];
52825
+ type: string;
52826
+ };
52827
+ };
52828
+ required: string[];
52829
+ type: string;
52830
+ };
52831
+ space_name_updated: {
52832
+ properties: {
52833
+ config: {
52834
+ properties: {};
52835
+ type: string;
52836
+ };
52837
+ rule: {
52838
+ enum: string[];
52839
+ type: string;
52840
+ };
52841
+ };
52842
+ required: string[];
52843
+ type: string;
52844
+ };
52845
+ staff_member_created: {
52846
+ properties: {
52847
+ config: {
52848
+ properties: {};
52849
+ type: string;
52850
+ };
52851
+ rule: {
52852
+ enum: string[];
52853
+ type: string;
52854
+ };
52855
+ };
52856
+ required: string[];
52857
+ type: string;
52858
+ };
52859
+ staff_member_name_updated: {
52860
+ properties: {
52861
+ config: {
52862
+ properties: {};
52863
+ type: string;
52864
+ };
52865
+ rule: {
52866
+ enum: string[];
52867
+ type: string;
52868
+ };
52869
+ };
52870
+ required: string[];
52871
+ type: string;
52872
+ };
52873
+ user_identity_name_updated: {
52874
+ properties: {
52875
+ config: {
52876
+ properties: {};
52877
+ type: string;
52878
+ };
52879
+ rule: {
52880
+ enum: string[];
52881
+ type: string;
52882
+ };
52883
+ };
52884
+ required: string[];
52885
+ type: string;
52886
+ };
52887
+ };
52888
+ type: string;
52889
+ };
52890
+ climate_rules: {
52891
+ description: string;
52892
+ properties: {
52893
+ rules: {
52894
+ properties: {
52895
+ reservation_created: {
52896
+ properties: {
52897
+ automated_occupied_preset: {
52898
+ properties: {
52899
+ cooling_set_point_celsius: {
52900
+ format: string;
52901
+ type: string;
52902
+ };
52903
+ cooling_set_point_fahrenheit: {
52904
+ format: string;
52905
+ type: string;
52906
+ };
52907
+ fan_mode: {
52908
+ enum: string[];
52909
+ type: string;
52910
+ };
52911
+ heating_set_point_celsius: {
52912
+ format: string;
52913
+ type: string;
52914
+ };
52915
+ heating_set_point_fahrenheit: {
52916
+ format: string;
52917
+ type: string;
52918
+ };
52919
+ is_override_allowed: {
52920
+ type: string;
52921
+ };
52922
+ max_override_period_minutes: {
52923
+ format: string;
52924
+ type: string;
52925
+ };
52926
+ mode: {
52927
+ enum: string[];
52928
+ type: string;
52929
+ };
52930
+ };
52931
+ required: string[];
52932
+ type: string;
52933
+ };
52934
+ automated_unoccupied_preset: {
52935
+ properties: {
52936
+ cooling_set_point_celsius: {
52937
+ format: string;
52938
+ type: string;
52939
+ };
52940
+ cooling_set_point_fahrenheit: {
52941
+ format: string;
52942
+ type: string;
52943
+ };
52944
+ fan_mode: {
52945
+ enum: string[];
52946
+ type: string;
52947
+ };
52948
+ heating_set_point_celsius: {
52949
+ format: string;
52950
+ type: string;
52951
+ };
52952
+ heating_set_point_fahrenheit: {
52953
+ format: string;
52954
+ type: string;
52955
+ };
52956
+ is_override_allowed: {
52957
+ type: string;
52958
+ };
52959
+ max_override_period_minutes: {
52960
+ format: string;
52961
+ type: string;
52962
+ };
52963
+ mode: {
52964
+ enum: string[];
52965
+ type: string;
52966
+ };
52967
+ };
52968
+ required: string[];
52969
+ type: string;
52970
+ };
52971
+ occupied_preset_key: {
52972
+ type: string;
52973
+ };
52974
+ precondition_minutes_before_reservation: {
52975
+ format: string;
52976
+ type: string;
52977
+ };
52978
+ unoccupied_preset_key: {
52979
+ type: string;
52980
+ };
52981
+ };
52982
+ type: string;
52983
+ };
52984
+ reservation_deleted: {
52985
+ properties: {};
52986
+ type: string;
52987
+ };
52988
+ reservation_time_updated: {
52989
+ properties: {};
52990
+ type: string;
52991
+ };
52992
+ };
52993
+ type: string;
52994
+ };
52995
+ };
52996
+ type: string;
52997
+ };
52998
+ customer_key: {
52999
+ description: string;
53000
+ type: string;
53001
+ };
53002
+ };
53003
+ required: string[];
53004
+ type: string;
53005
+ };
53006
+ };
53007
+ };
53008
+ };
53009
+ responses: {
53010
+ 200: {
53011
+ content: {
53012
+ 'application/json': {
53013
+ schema: {
53014
+ properties: {
53015
+ ok: {
53016
+ type: string;
53017
+ };
53018
+ };
53019
+ required: string[];
53020
+ type: string;
53021
+ };
53022
+ };
53023
+ };
53024
+ description: string;
53025
+ };
53026
+ 400: {
53027
+ description: string;
53028
+ };
53029
+ 401: {
53030
+ description: string;
53031
+ };
53032
+ };
53033
+ security: ({
53034
+ pat_with_workspace: never[];
53035
+ console_session_with_workspace?: never;
53036
+ api_key?: never;
53037
+ } | {
53038
+ console_session_with_workspace: never[];
53039
+ pat_with_workspace?: never;
53040
+ api_key?: never;
53041
+ } | {
53042
+ api_key: never[];
53043
+ pat_with_workspace?: never;
53044
+ console_session_with_workspace?: never;
53045
+ })[];
53046
+ summary: string;
53047
+ tags: never[];
53048
+ 'x-fern-sdk-group-name': string[];
53049
+ 'x-fern-sdk-method-name': string;
53050
+ 'x-response-key': null;
53051
+ 'x-title': string;
53052
+ };
53053
+ };
51293
53054
  '/seam/customer/v1/customers/list': {
51294
53055
  get: {
51295
53056
  description: string;