@seamapi/types 1.744.0 → 1.745.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.
- package/dist/connect.cjs +276 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +336 -0
- package/dist/index.cjs +276 -6
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +294 -0
- package/lib/seam/connect/openapi.js +270 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +42 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +270 -0
- package/src/lib/seam/connect/route-types.ts +42 -0
package/dist/connect.cjs
CHANGED
|
@@ -67602,6 +67602,48 @@ var openapi_default = {
|
|
|
67602
67602
|
},
|
|
67603
67603
|
guest_name: { nullable: true, type: "string" },
|
|
67604
67604
|
is_resource_syncing: { type: "boolean" },
|
|
67605
|
+
last_automation_result: {
|
|
67606
|
+
nullable: true,
|
|
67607
|
+
properties: {
|
|
67608
|
+
actions: {
|
|
67609
|
+
items: {
|
|
67610
|
+
properties: {
|
|
67611
|
+
access_grant_id: {
|
|
67612
|
+
format: "uuid",
|
|
67613
|
+
type: "string"
|
|
67614
|
+
},
|
|
67615
|
+
action_type: {
|
|
67616
|
+
enum: [
|
|
67617
|
+
"create",
|
|
67618
|
+
"update",
|
|
67619
|
+
"delete",
|
|
67620
|
+
"skip"
|
|
67621
|
+
],
|
|
67622
|
+
type: "string"
|
|
67623
|
+
},
|
|
67624
|
+
message: { type: "string" },
|
|
67625
|
+
resource_type: { type: "string" },
|
|
67626
|
+
skip_reason: { type: "string" }
|
|
67627
|
+
},
|
|
67628
|
+
required: ["action_type", "resource_type"],
|
|
67629
|
+
type: "object"
|
|
67630
|
+
},
|
|
67631
|
+
type: "array"
|
|
67632
|
+
},
|
|
67633
|
+
created_at: { format: "date-time", type: "string" },
|
|
67634
|
+
error: { type: "string" },
|
|
67635
|
+
message: { type: "string" },
|
|
67636
|
+
rule: { type: "string" },
|
|
67637
|
+
success: { type: "boolean" }
|
|
67638
|
+
},
|
|
67639
|
+
required: [
|
|
67640
|
+
"success",
|
|
67641
|
+
"rule",
|
|
67642
|
+
"actions",
|
|
67643
|
+
"created_at"
|
|
67644
|
+
],
|
|
67645
|
+
type: "object"
|
|
67646
|
+
},
|
|
67605
67647
|
name: { nullable: true, type: "string" },
|
|
67606
67648
|
reservation_id: { format: "uuid", type: "string" },
|
|
67607
67649
|
reservation_key: { type: "string" },
|
|
@@ -67639,7 +67681,8 @@ var openapi_default = {
|
|
|
67639
67681
|
"guest",
|
|
67640
67682
|
"spaces",
|
|
67641
67683
|
"access_grant_id",
|
|
67642
|
-
"access_methods"
|
|
67684
|
+
"access_methods",
|
|
67685
|
+
"last_automation_result"
|
|
67643
67686
|
],
|
|
67644
67687
|
type: "object"
|
|
67645
67688
|
}
|
|
@@ -67770,6 +67813,48 @@ var openapi_default = {
|
|
|
67770
67813
|
},
|
|
67771
67814
|
guest_name: { nullable: true, type: "string" },
|
|
67772
67815
|
is_resource_syncing: { type: "boolean" },
|
|
67816
|
+
last_automation_result: {
|
|
67817
|
+
nullable: true,
|
|
67818
|
+
properties: {
|
|
67819
|
+
actions: {
|
|
67820
|
+
items: {
|
|
67821
|
+
properties: {
|
|
67822
|
+
access_grant_id: {
|
|
67823
|
+
format: "uuid",
|
|
67824
|
+
type: "string"
|
|
67825
|
+
},
|
|
67826
|
+
action_type: {
|
|
67827
|
+
enum: [
|
|
67828
|
+
"create",
|
|
67829
|
+
"update",
|
|
67830
|
+
"delete",
|
|
67831
|
+
"skip"
|
|
67832
|
+
],
|
|
67833
|
+
type: "string"
|
|
67834
|
+
},
|
|
67835
|
+
message: { type: "string" },
|
|
67836
|
+
resource_type: { type: "string" },
|
|
67837
|
+
skip_reason: { type: "string" }
|
|
67838
|
+
},
|
|
67839
|
+
required: ["action_type", "resource_type"],
|
|
67840
|
+
type: "object"
|
|
67841
|
+
},
|
|
67842
|
+
type: "array"
|
|
67843
|
+
},
|
|
67844
|
+
created_at: { format: "date-time", type: "string" },
|
|
67845
|
+
error: { type: "string" },
|
|
67846
|
+
message: { type: "string" },
|
|
67847
|
+
rule: { type: "string" },
|
|
67848
|
+
success: { type: "boolean" }
|
|
67849
|
+
},
|
|
67850
|
+
required: [
|
|
67851
|
+
"success",
|
|
67852
|
+
"rule",
|
|
67853
|
+
"actions",
|
|
67854
|
+
"created_at"
|
|
67855
|
+
],
|
|
67856
|
+
type: "object"
|
|
67857
|
+
},
|
|
67773
67858
|
name: { nullable: true, type: "string" },
|
|
67774
67859
|
reservation_id: { format: "uuid", type: "string" },
|
|
67775
67860
|
reservation_key: { type: "string" },
|
|
@@ -67807,7 +67892,8 @@ var openapi_default = {
|
|
|
67807
67892
|
"guest",
|
|
67808
67893
|
"spaces",
|
|
67809
67894
|
"access_grant_id",
|
|
67810
|
-
"access_methods"
|
|
67895
|
+
"access_methods",
|
|
67896
|
+
"last_automation_result"
|
|
67811
67897
|
],
|
|
67812
67898
|
type: "object"
|
|
67813
67899
|
}
|
|
@@ -67983,6 +68069,51 @@ var openapi_default = {
|
|
|
67983
68069
|
},
|
|
67984
68070
|
guest_name: { nullable: true, type: "string" },
|
|
67985
68071
|
is_resource_syncing: { type: "boolean" },
|
|
68072
|
+
last_automation_result: {
|
|
68073
|
+
nullable: true,
|
|
68074
|
+
properties: {
|
|
68075
|
+
actions: {
|
|
68076
|
+
items: {
|
|
68077
|
+
properties: {
|
|
68078
|
+
access_grant_id: {
|
|
68079
|
+
format: "uuid",
|
|
68080
|
+
type: "string"
|
|
68081
|
+
},
|
|
68082
|
+
action_type: {
|
|
68083
|
+
enum: [
|
|
68084
|
+
"create",
|
|
68085
|
+
"update",
|
|
68086
|
+
"delete",
|
|
68087
|
+
"skip"
|
|
68088
|
+
],
|
|
68089
|
+
type: "string"
|
|
68090
|
+
},
|
|
68091
|
+
message: { type: "string" },
|
|
68092
|
+
resource_type: { type: "string" },
|
|
68093
|
+
skip_reason: { type: "string" }
|
|
68094
|
+
},
|
|
68095
|
+
required: ["action_type", "resource_type"],
|
|
68096
|
+
type: "object"
|
|
68097
|
+
},
|
|
68098
|
+
type: "array"
|
|
68099
|
+
},
|
|
68100
|
+
created_at: {
|
|
68101
|
+
format: "date-time",
|
|
68102
|
+
type: "string"
|
|
68103
|
+
},
|
|
68104
|
+
error: { type: "string" },
|
|
68105
|
+
message: { type: "string" },
|
|
68106
|
+
rule: { type: "string" },
|
|
68107
|
+
success: { type: "boolean" }
|
|
68108
|
+
},
|
|
68109
|
+
required: [
|
|
68110
|
+
"success",
|
|
68111
|
+
"rule",
|
|
68112
|
+
"actions",
|
|
68113
|
+
"created_at"
|
|
68114
|
+
],
|
|
68115
|
+
type: "object"
|
|
68116
|
+
},
|
|
67986
68117
|
name: { nullable: true, type: "string" },
|
|
67987
68118
|
pending_mutations: {
|
|
67988
68119
|
items: {
|
|
@@ -68054,7 +68185,8 @@ var openapi_default = {
|
|
|
68054
68185
|
"warnings",
|
|
68055
68186
|
"pending_mutations",
|
|
68056
68187
|
"access_methods",
|
|
68057
|
-
"spaces"
|
|
68188
|
+
"spaces",
|
|
68189
|
+
"last_automation_result"
|
|
68058
68190
|
],
|
|
68059
68191
|
type: "object"
|
|
68060
68192
|
},
|
|
@@ -68211,6 +68343,51 @@ var openapi_default = {
|
|
|
68211
68343
|
},
|
|
68212
68344
|
guest_name: { nullable: true, type: "string" },
|
|
68213
68345
|
is_resource_syncing: { type: "boolean" },
|
|
68346
|
+
last_automation_result: {
|
|
68347
|
+
nullable: true,
|
|
68348
|
+
properties: {
|
|
68349
|
+
actions: {
|
|
68350
|
+
items: {
|
|
68351
|
+
properties: {
|
|
68352
|
+
access_grant_id: {
|
|
68353
|
+
format: "uuid",
|
|
68354
|
+
type: "string"
|
|
68355
|
+
},
|
|
68356
|
+
action_type: {
|
|
68357
|
+
enum: [
|
|
68358
|
+
"create",
|
|
68359
|
+
"update",
|
|
68360
|
+
"delete",
|
|
68361
|
+
"skip"
|
|
68362
|
+
],
|
|
68363
|
+
type: "string"
|
|
68364
|
+
},
|
|
68365
|
+
message: { type: "string" },
|
|
68366
|
+
resource_type: { type: "string" },
|
|
68367
|
+
skip_reason: { type: "string" }
|
|
68368
|
+
},
|
|
68369
|
+
required: ["action_type", "resource_type"],
|
|
68370
|
+
type: "object"
|
|
68371
|
+
},
|
|
68372
|
+
type: "array"
|
|
68373
|
+
},
|
|
68374
|
+
created_at: {
|
|
68375
|
+
format: "date-time",
|
|
68376
|
+
type: "string"
|
|
68377
|
+
},
|
|
68378
|
+
error: { type: "string" },
|
|
68379
|
+
message: { type: "string" },
|
|
68380
|
+
rule: { type: "string" },
|
|
68381
|
+
success: { type: "boolean" }
|
|
68382
|
+
},
|
|
68383
|
+
required: [
|
|
68384
|
+
"success",
|
|
68385
|
+
"rule",
|
|
68386
|
+
"actions",
|
|
68387
|
+
"created_at"
|
|
68388
|
+
],
|
|
68389
|
+
type: "object"
|
|
68390
|
+
},
|
|
68214
68391
|
name: { nullable: true, type: "string" },
|
|
68215
68392
|
pending_mutations: {
|
|
68216
68393
|
items: {
|
|
@@ -68282,7 +68459,8 @@ var openapi_default = {
|
|
|
68282
68459
|
"warnings",
|
|
68283
68460
|
"pending_mutations",
|
|
68284
68461
|
"access_methods",
|
|
68285
|
-
"spaces"
|
|
68462
|
+
"spaces",
|
|
68463
|
+
"last_automation_result"
|
|
68286
68464
|
],
|
|
68287
68465
|
type: "object"
|
|
68288
68466
|
},
|
|
@@ -69223,6 +69401,51 @@ var openapi_default = {
|
|
|
69223
69401
|
},
|
|
69224
69402
|
guest_name: { nullable: true, type: "string" },
|
|
69225
69403
|
has_issued_access: { type: "boolean" },
|
|
69404
|
+
last_automation_result: {
|
|
69405
|
+
nullable: true,
|
|
69406
|
+
properties: {
|
|
69407
|
+
actions: {
|
|
69408
|
+
items: {
|
|
69409
|
+
properties: {
|
|
69410
|
+
access_grant_id: {
|
|
69411
|
+
format: "uuid",
|
|
69412
|
+
type: "string"
|
|
69413
|
+
},
|
|
69414
|
+
action_type: {
|
|
69415
|
+
enum: [
|
|
69416
|
+
"create",
|
|
69417
|
+
"update",
|
|
69418
|
+
"delete",
|
|
69419
|
+
"skip"
|
|
69420
|
+
],
|
|
69421
|
+
type: "string"
|
|
69422
|
+
},
|
|
69423
|
+
message: { type: "string" },
|
|
69424
|
+
resource_type: { type: "string" },
|
|
69425
|
+
skip_reason: { type: "string" }
|
|
69426
|
+
},
|
|
69427
|
+
required: ["action_type", "resource_type"],
|
|
69428
|
+
type: "object"
|
|
69429
|
+
},
|
|
69430
|
+
type: "array"
|
|
69431
|
+
},
|
|
69432
|
+
created_at: {
|
|
69433
|
+
format: "date-time",
|
|
69434
|
+
type: "string"
|
|
69435
|
+
},
|
|
69436
|
+
error: { type: "string" },
|
|
69437
|
+
message: { type: "string" },
|
|
69438
|
+
rule: { type: "string" },
|
|
69439
|
+
success: { type: "boolean" }
|
|
69440
|
+
},
|
|
69441
|
+
required: [
|
|
69442
|
+
"success",
|
|
69443
|
+
"rule",
|
|
69444
|
+
"actions",
|
|
69445
|
+
"created_at"
|
|
69446
|
+
],
|
|
69447
|
+
type: "object"
|
|
69448
|
+
},
|
|
69226
69449
|
name: { nullable: true, type: "string" },
|
|
69227
69450
|
reservation_id: { format: "uuid", type: "string" },
|
|
69228
69451
|
reservation_key: { type: "string" },
|
|
@@ -69241,7 +69464,8 @@ var openapi_default = {
|
|
|
69241
69464
|
"created_at",
|
|
69242
69465
|
"guest_name",
|
|
69243
69466
|
"has_issued_access",
|
|
69244
|
-
"access_methods"
|
|
69467
|
+
"access_methods",
|
|
69468
|
+
"last_automation_result"
|
|
69245
69469
|
],
|
|
69246
69470
|
type: "object"
|
|
69247
69471
|
},
|
|
@@ -69317,6 +69541,51 @@ var openapi_default = {
|
|
|
69317
69541
|
},
|
|
69318
69542
|
guest_name: { nullable: true, type: "string" },
|
|
69319
69543
|
has_issued_access: { type: "boolean" },
|
|
69544
|
+
last_automation_result: {
|
|
69545
|
+
nullable: true,
|
|
69546
|
+
properties: {
|
|
69547
|
+
actions: {
|
|
69548
|
+
items: {
|
|
69549
|
+
properties: {
|
|
69550
|
+
access_grant_id: {
|
|
69551
|
+
format: "uuid",
|
|
69552
|
+
type: "string"
|
|
69553
|
+
},
|
|
69554
|
+
action_type: {
|
|
69555
|
+
enum: [
|
|
69556
|
+
"create",
|
|
69557
|
+
"update",
|
|
69558
|
+
"delete",
|
|
69559
|
+
"skip"
|
|
69560
|
+
],
|
|
69561
|
+
type: "string"
|
|
69562
|
+
},
|
|
69563
|
+
message: { type: "string" },
|
|
69564
|
+
resource_type: { type: "string" },
|
|
69565
|
+
skip_reason: { type: "string" }
|
|
69566
|
+
},
|
|
69567
|
+
required: ["action_type", "resource_type"],
|
|
69568
|
+
type: "object"
|
|
69569
|
+
},
|
|
69570
|
+
type: "array"
|
|
69571
|
+
},
|
|
69572
|
+
created_at: {
|
|
69573
|
+
format: "date-time",
|
|
69574
|
+
type: "string"
|
|
69575
|
+
},
|
|
69576
|
+
error: { type: "string" },
|
|
69577
|
+
message: { type: "string" },
|
|
69578
|
+
rule: { type: "string" },
|
|
69579
|
+
success: { type: "boolean" }
|
|
69580
|
+
},
|
|
69581
|
+
required: [
|
|
69582
|
+
"success",
|
|
69583
|
+
"rule",
|
|
69584
|
+
"actions",
|
|
69585
|
+
"created_at"
|
|
69586
|
+
],
|
|
69587
|
+
type: "object"
|
|
69588
|
+
},
|
|
69320
69589
|
name: { nullable: true, type: "string" },
|
|
69321
69590
|
reservation_id: { format: "uuid", type: "string" },
|
|
69322
69591
|
reservation_key: { type: "string" },
|
|
@@ -69335,7 +69604,8 @@ var openapi_default = {
|
|
|
69335
69604
|
"created_at",
|
|
69336
69605
|
"guest_name",
|
|
69337
69606
|
"has_issued_access",
|
|
69338
|
-
"access_methods"
|
|
69607
|
+
"access_methods",
|
|
69608
|
+
"last_automation_result"
|
|
69339
69609
|
],
|
|
69340
69610
|
type: "object"
|
|
69341
69611
|
},
|