@seamapi/types 1.743.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 +278 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +343 -0
- package/dist/index.cjs +278 -6
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +300 -0
- package/lib/seam/connect/openapi.js +272 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +43 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +272 -0
- package/src/lib/seam/connect/route-types.ts +43 -0
package/dist/connect.cjs
CHANGED
|
@@ -62166,6 +62166,7 @@ var openapi_default = {
|
|
|
62166
62166
|
type: "array"
|
|
62167
62167
|
},
|
|
62168
62168
|
error: { type: "string" },
|
|
62169
|
+
message: { type: "string" },
|
|
62169
62170
|
rule: {
|
|
62170
62171
|
enum: [
|
|
62171
62172
|
"reservation_created",
|
|
@@ -62329,6 +62330,7 @@ var openapi_default = {
|
|
|
62329
62330
|
type: "array"
|
|
62330
62331
|
},
|
|
62331
62332
|
error: { type: "string" },
|
|
62333
|
+
message: { type: "string" },
|
|
62332
62334
|
rule: {
|
|
62333
62335
|
enum: [
|
|
62334
62336
|
"reservation_created",
|
|
@@ -67600,6 +67602,48 @@ var openapi_default = {
|
|
|
67600
67602
|
},
|
|
67601
67603
|
guest_name: { nullable: true, type: "string" },
|
|
67602
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
|
+
},
|
|
67603
67647
|
name: { nullable: true, type: "string" },
|
|
67604
67648
|
reservation_id: { format: "uuid", type: "string" },
|
|
67605
67649
|
reservation_key: { type: "string" },
|
|
@@ -67637,7 +67681,8 @@ var openapi_default = {
|
|
|
67637
67681
|
"guest",
|
|
67638
67682
|
"spaces",
|
|
67639
67683
|
"access_grant_id",
|
|
67640
|
-
"access_methods"
|
|
67684
|
+
"access_methods",
|
|
67685
|
+
"last_automation_result"
|
|
67641
67686
|
],
|
|
67642
67687
|
type: "object"
|
|
67643
67688
|
}
|
|
@@ -67768,6 +67813,48 @@ var openapi_default = {
|
|
|
67768
67813
|
},
|
|
67769
67814
|
guest_name: { nullable: true, type: "string" },
|
|
67770
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
|
+
},
|
|
67771
67858
|
name: { nullable: true, type: "string" },
|
|
67772
67859
|
reservation_id: { format: "uuid", type: "string" },
|
|
67773
67860
|
reservation_key: { type: "string" },
|
|
@@ -67805,7 +67892,8 @@ var openapi_default = {
|
|
|
67805
67892
|
"guest",
|
|
67806
67893
|
"spaces",
|
|
67807
67894
|
"access_grant_id",
|
|
67808
|
-
"access_methods"
|
|
67895
|
+
"access_methods",
|
|
67896
|
+
"last_automation_result"
|
|
67809
67897
|
],
|
|
67810
67898
|
type: "object"
|
|
67811
67899
|
}
|
|
@@ -67981,6 +68069,51 @@ var openapi_default = {
|
|
|
67981
68069
|
},
|
|
67982
68070
|
guest_name: { nullable: true, type: "string" },
|
|
67983
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
|
+
},
|
|
67984
68117
|
name: { nullable: true, type: "string" },
|
|
67985
68118
|
pending_mutations: {
|
|
67986
68119
|
items: {
|
|
@@ -68052,7 +68185,8 @@ var openapi_default = {
|
|
|
68052
68185
|
"warnings",
|
|
68053
68186
|
"pending_mutations",
|
|
68054
68187
|
"access_methods",
|
|
68055
|
-
"spaces"
|
|
68188
|
+
"spaces",
|
|
68189
|
+
"last_automation_result"
|
|
68056
68190
|
],
|
|
68057
68191
|
type: "object"
|
|
68058
68192
|
},
|
|
@@ -68209,6 +68343,51 @@ var openapi_default = {
|
|
|
68209
68343
|
},
|
|
68210
68344
|
guest_name: { nullable: true, type: "string" },
|
|
68211
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
|
+
},
|
|
68212
68391
|
name: { nullable: true, type: "string" },
|
|
68213
68392
|
pending_mutations: {
|
|
68214
68393
|
items: {
|
|
@@ -68280,7 +68459,8 @@ var openapi_default = {
|
|
|
68280
68459
|
"warnings",
|
|
68281
68460
|
"pending_mutations",
|
|
68282
68461
|
"access_methods",
|
|
68283
|
-
"spaces"
|
|
68462
|
+
"spaces",
|
|
68463
|
+
"last_automation_result"
|
|
68284
68464
|
],
|
|
68285
68465
|
type: "object"
|
|
68286
68466
|
},
|
|
@@ -69221,6 +69401,51 @@ var openapi_default = {
|
|
|
69221
69401
|
},
|
|
69222
69402
|
guest_name: { nullable: true, type: "string" },
|
|
69223
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
|
+
},
|
|
69224
69449
|
name: { nullable: true, type: "string" },
|
|
69225
69450
|
reservation_id: { format: "uuid", type: "string" },
|
|
69226
69451
|
reservation_key: { type: "string" },
|
|
@@ -69239,7 +69464,8 @@ var openapi_default = {
|
|
|
69239
69464
|
"created_at",
|
|
69240
69465
|
"guest_name",
|
|
69241
69466
|
"has_issued_access",
|
|
69242
|
-
"access_methods"
|
|
69467
|
+
"access_methods",
|
|
69468
|
+
"last_automation_result"
|
|
69243
69469
|
],
|
|
69244
69470
|
type: "object"
|
|
69245
69471
|
},
|
|
@@ -69315,6 +69541,51 @@ var openapi_default = {
|
|
|
69315
69541
|
},
|
|
69316
69542
|
guest_name: { nullable: true, type: "string" },
|
|
69317
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
|
+
},
|
|
69318
69589
|
name: { nullable: true, type: "string" },
|
|
69319
69590
|
reservation_id: { format: "uuid", type: "string" },
|
|
69320
69591
|
reservation_key: { type: "string" },
|
|
@@ -69333,7 +69604,8 @@ var openapi_default = {
|
|
|
69333
69604
|
"created_at",
|
|
69334
69605
|
"guest_name",
|
|
69335
69606
|
"has_issued_access",
|
|
69336
|
-
"access_methods"
|
|
69607
|
+
"access_methods",
|
|
69608
|
+
"last_automation_result"
|
|
69337
69609
|
],
|
|
69338
69610
|
type: "object"
|
|
69339
69611
|
},
|