@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
|
@@ -55631,6 +55631,7 @@ export default {
|
|
|
55631
55631
|
type: 'array',
|
|
55632
55632
|
},
|
|
55633
55633
|
error: { type: 'string' },
|
|
55634
|
+
message: { type: 'string' },
|
|
55634
55635
|
rule: {
|
|
55635
55636
|
enum: [
|
|
55636
55637
|
'reservation_created',
|
|
@@ -55794,6 +55795,7 @@ export default {
|
|
|
55794
55795
|
type: 'array',
|
|
55795
55796
|
},
|
|
55796
55797
|
error: { type: 'string' },
|
|
55798
|
+
message: { type: 'string' },
|
|
55797
55799
|
rule: {
|
|
55798
55800
|
enum: [
|
|
55799
55801
|
'reservation_created',
|
|
@@ -61065,6 +61067,48 @@ export default {
|
|
|
61065
61067
|
},
|
|
61066
61068
|
guest_name: { nullable: true, type: 'string' },
|
|
61067
61069
|
is_resource_syncing: { type: 'boolean' },
|
|
61070
|
+
last_automation_result: {
|
|
61071
|
+
nullable: true,
|
|
61072
|
+
properties: {
|
|
61073
|
+
actions: {
|
|
61074
|
+
items: {
|
|
61075
|
+
properties: {
|
|
61076
|
+
access_grant_id: {
|
|
61077
|
+
format: 'uuid',
|
|
61078
|
+
type: 'string',
|
|
61079
|
+
},
|
|
61080
|
+
action_type: {
|
|
61081
|
+
enum: [
|
|
61082
|
+
'create',
|
|
61083
|
+
'update',
|
|
61084
|
+
'delete',
|
|
61085
|
+
'skip',
|
|
61086
|
+
],
|
|
61087
|
+
type: 'string',
|
|
61088
|
+
},
|
|
61089
|
+
message: { type: 'string' },
|
|
61090
|
+
resource_type: { type: 'string' },
|
|
61091
|
+
skip_reason: { type: 'string' },
|
|
61092
|
+
},
|
|
61093
|
+
required: ['action_type', 'resource_type'],
|
|
61094
|
+
type: 'object',
|
|
61095
|
+
},
|
|
61096
|
+
type: 'array',
|
|
61097
|
+
},
|
|
61098
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
61099
|
+
error: { type: 'string' },
|
|
61100
|
+
message: { type: 'string' },
|
|
61101
|
+
rule: { type: 'string' },
|
|
61102
|
+
success: { type: 'boolean' },
|
|
61103
|
+
},
|
|
61104
|
+
required: [
|
|
61105
|
+
'success',
|
|
61106
|
+
'rule',
|
|
61107
|
+
'actions',
|
|
61108
|
+
'created_at',
|
|
61109
|
+
],
|
|
61110
|
+
type: 'object',
|
|
61111
|
+
},
|
|
61068
61112
|
name: { nullable: true, type: 'string' },
|
|
61069
61113
|
reservation_id: { format: 'uuid', type: 'string' },
|
|
61070
61114
|
reservation_key: { type: 'string' },
|
|
@@ -61103,6 +61147,7 @@ export default {
|
|
|
61103
61147
|
'spaces',
|
|
61104
61148
|
'access_grant_id',
|
|
61105
61149
|
'access_methods',
|
|
61150
|
+
'last_automation_result',
|
|
61106
61151
|
],
|
|
61107
61152
|
type: 'object',
|
|
61108
61153
|
},
|
|
@@ -61233,6 +61278,48 @@ export default {
|
|
|
61233
61278
|
},
|
|
61234
61279
|
guest_name: { nullable: true, type: 'string' },
|
|
61235
61280
|
is_resource_syncing: { type: 'boolean' },
|
|
61281
|
+
last_automation_result: {
|
|
61282
|
+
nullable: true,
|
|
61283
|
+
properties: {
|
|
61284
|
+
actions: {
|
|
61285
|
+
items: {
|
|
61286
|
+
properties: {
|
|
61287
|
+
access_grant_id: {
|
|
61288
|
+
format: 'uuid',
|
|
61289
|
+
type: 'string',
|
|
61290
|
+
},
|
|
61291
|
+
action_type: {
|
|
61292
|
+
enum: [
|
|
61293
|
+
'create',
|
|
61294
|
+
'update',
|
|
61295
|
+
'delete',
|
|
61296
|
+
'skip',
|
|
61297
|
+
],
|
|
61298
|
+
type: 'string',
|
|
61299
|
+
},
|
|
61300
|
+
message: { type: 'string' },
|
|
61301
|
+
resource_type: { type: 'string' },
|
|
61302
|
+
skip_reason: { type: 'string' },
|
|
61303
|
+
},
|
|
61304
|
+
required: ['action_type', 'resource_type'],
|
|
61305
|
+
type: 'object',
|
|
61306
|
+
},
|
|
61307
|
+
type: 'array',
|
|
61308
|
+
},
|
|
61309
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
61310
|
+
error: { type: 'string' },
|
|
61311
|
+
message: { type: 'string' },
|
|
61312
|
+
rule: { type: 'string' },
|
|
61313
|
+
success: { type: 'boolean' },
|
|
61314
|
+
},
|
|
61315
|
+
required: [
|
|
61316
|
+
'success',
|
|
61317
|
+
'rule',
|
|
61318
|
+
'actions',
|
|
61319
|
+
'created_at',
|
|
61320
|
+
],
|
|
61321
|
+
type: 'object',
|
|
61322
|
+
},
|
|
61236
61323
|
name: { nullable: true, type: 'string' },
|
|
61237
61324
|
reservation_id: { format: 'uuid', type: 'string' },
|
|
61238
61325
|
reservation_key: { type: 'string' },
|
|
@@ -61271,6 +61358,7 @@ export default {
|
|
|
61271
61358
|
'spaces',
|
|
61272
61359
|
'access_grant_id',
|
|
61273
61360
|
'access_methods',
|
|
61361
|
+
'last_automation_result',
|
|
61274
61362
|
],
|
|
61275
61363
|
type: 'object',
|
|
61276
61364
|
},
|
|
@@ -61446,6 +61534,51 @@ export default {
|
|
|
61446
61534
|
},
|
|
61447
61535
|
guest_name: { nullable: true, type: 'string' },
|
|
61448
61536
|
is_resource_syncing: { type: 'boolean' },
|
|
61537
|
+
last_automation_result: {
|
|
61538
|
+
nullable: true,
|
|
61539
|
+
properties: {
|
|
61540
|
+
actions: {
|
|
61541
|
+
items: {
|
|
61542
|
+
properties: {
|
|
61543
|
+
access_grant_id: {
|
|
61544
|
+
format: 'uuid',
|
|
61545
|
+
type: 'string',
|
|
61546
|
+
},
|
|
61547
|
+
action_type: {
|
|
61548
|
+
enum: [
|
|
61549
|
+
'create',
|
|
61550
|
+
'update',
|
|
61551
|
+
'delete',
|
|
61552
|
+
'skip',
|
|
61553
|
+
],
|
|
61554
|
+
type: 'string',
|
|
61555
|
+
},
|
|
61556
|
+
message: { type: 'string' },
|
|
61557
|
+
resource_type: { type: 'string' },
|
|
61558
|
+
skip_reason: { type: 'string' },
|
|
61559
|
+
},
|
|
61560
|
+
required: ['action_type', 'resource_type'],
|
|
61561
|
+
type: 'object',
|
|
61562
|
+
},
|
|
61563
|
+
type: 'array',
|
|
61564
|
+
},
|
|
61565
|
+
created_at: {
|
|
61566
|
+
format: 'date-time',
|
|
61567
|
+
type: 'string',
|
|
61568
|
+
},
|
|
61569
|
+
error: { type: 'string' },
|
|
61570
|
+
message: { type: 'string' },
|
|
61571
|
+
rule: { type: 'string' },
|
|
61572
|
+
success: { type: 'boolean' },
|
|
61573
|
+
},
|
|
61574
|
+
required: [
|
|
61575
|
+
'success',
|
|
61576
|
+
'rule',
|
|
61577
|
+
'actions',
|
|
61578
|
+
'created_at',
|
|
61579
|
+
],
|
|
61580
|
+
type: 'object',
|
|
61581
|
+
},
|
|
61449
61582
|
name: { nullable: true, type: 'string' },
|
|
61450
61583
|
pending_mutations: {
|
|
61451
61584
|
items: {
|
|
@@ -61518,6 +61651,7 @@ export default {
|
|
|
61518
61651
|
'pending_mutations',
|
|
61519
61652
|
'access_methods',
|
|
61520
61653
|
'spaces',
|
|
61654
|
+
'last_automation_result',
|
|
61521
61655
|
],
|
|
61522
61656
|
type: 'object',
|
|
61523
61657
|
},
|
|
@@ -61674,6 +61808,51 @@ export default {
|
|
|
61674
61808
|
},
|
|
61675
61809
|
guest_name: { nullable: true, type: 'string' },
|
|
61676
61810
|
is_resource_syncing: { type: 'boolean' },
|
|
61811
|
+
last_automation_result: {
|
|
61812
|
+
nullable: true,
|
|
61813
|
+
properties: {
|
|
61814
|
+
actions: {
|
|
61815
|
+
items: {
|
|
61816
|
+
properties: {
|
|
61817
|
+
access_grant_id: {
|
|
61818
|
+
format: 'uuid',
|
|
61819
|
+
type: 'string',
|
|
61820
|
+
},
|
|
61821
|
+
action_type: {
|
|
61822
|
+
enum: [
|
|
61823
|
+
'create',
|
|
61824
|
+
'update',
|
|
61825
|
+
'delete',
|
|
61826
|
+
'skip',
|
|
61827
|
+
],
|
|
61828
|
+
type: 'string',
|
|
61829
|
+
},
|
|
61830
|
+
message: { type: 'string' },
|
|
61831
|
+
resource_type: { type: 'string' },
|
|
61832
|
+
skip_reason: { type: 'string' },
|
|
61833
|
+
},
|
|
61834
|
+
required: ['action_type', 'resource_type'],
|
|
61835
|
+
type: 'object',
|
|
61836
|
+
},
|
|
61837
|
+
type: 'array',
|
|
61838
|
+
},
|
|
61839
|
+
created_at: {
|
|
61840
|
+
format: 'date-time',
|
|
61841
|
+
type: 'string',
|
|
61842
|
+
},
|
|
61843
|
+
error: { type: 'string' },
|
|
61844
|
+
message: { type: 'string' },
|
|
61845
|
+
rule: { type: 'string' },
|
|
61846
|
+
success: { type: 'boolean' },
|
|
61847
|
+
},
|
|
61848
|
+
required: [
|
|
61849
|
+
'success',
|
|
61850
|
+
'rule',
|
|
61851
|
+
'actions',
|
|
61852
|
+
'created_at',
|
|
61853
|
+
],
|
|
61854
|
+
type: 'object',
|
|
61855
|
+
},
|
|
61677
61856
|
name: { nullable: true, type: 'string' },
|
|
61678
61857
|
pending_mutations: {
|
|
61679
61858
|
items: {
|
|
@@ -61746,6 +61925,7 @@ export default {
|
|
|
61746
61925
|
'pending_mutations',
|
|
61747
61926
|
'access_methods',
|
|
61748
61927
|
'spaces',
|
|
61928
|
+
'last_automation_result',
|
|
61749
61929
|
],
|
|
61750
61930
|
type: 'object',
|
|
61751
61931
|
},
|
|
@@ -62686,6 +62866,51 @@ export default {
|
|
|
62686
62866
|
},
|
|
62687
62867
|
guest_name: { nullable: true, type: 'string' },
|
|
62688
62868
|
has_issued_access: { type: 'boolean' },
|
|
62869
|
+
last_automation_result: {
|
|
62870
|
+
nullable: true,
|
|
62871
|
+
properties: {
|
|
62872
|
+
actions: {
|
|
62873
|
+
items: {
|
|
62874
|
+
properties: {
|
|
62875
|
+
access_grant_id: {
|
|
62876
|
+
format: 'uuid',
|
|
62877
|
+
type: 'string',
|
|
62878
|
+
},
|
|
62879
|
+
action_type: {
|
|
62880
|
+
enum: [
|
|
62881
|
+
'create',
|
|
62882
|
+
'update',
|
|
62883
|
+
'delete',
|
|
62884
|
+
'skip',
|
|
62885
|
+
],
|
|
62886
|
+
type: 'string',
|
|
62887
|
+
},
|
|
62888
|
+
message: { type: 'string' },
|
|
62889
|
+
resource_type: { type: 'string' },
|
|
62890
|
+
skip_reason: { type: 'string' },
|
|
62891
|
+
},
|
|
62892
|
+
required: ['action_type', 'resource_type'],
|
|
62893
|
+
type: 'object',
|
|
62894
|
+
},
|
|
62895
|
+
type: 'array',
|
|
62896
|
+
},
|
|
62897
|
+
created_at: {
|
|
62898
|
+
format: 'date-time',
|
|
62899
|
+
type: 'string',
|
|
62900
|
+
},
|
|
62901
|
+
error: { type: 'string' },
|
|
62902
|
+
message: { type: 'string' },
|
|
62903
|
+
rule: { type: 'string' },
|
|
62904
|
+
success: { type: 'boolean' },
|
|
62905
|
+
},
|
|
62906
|
+
required: [
|
|
62907
|
+
'success',
|
|
62908
|
+
'rule',
|
|
62909
|
+
'actions',
|
|
62910
|
+
'created_at',
|
|
62911
|
+
],
|
|
62912
|
+
type: 'object',
|
|
62913
|
+
},
|
|
62689
62914
|
name: { nullable: true, type: 'string' },
|
|
62690
62915
|
reservation_id: { format: 'uuid', type: 'string' },
|
|
62691
62916
|
reservation_key: { type: 'string' },
|
|
@@ -62705,6 +62930,7 @@ export default {
|
|
|
62705
62930
|
'guest_name',
|
|
62706
62931
|
'has_issued_access',
|
|
62707
62932
|
'access_methods',
|
|
62933
|
+
'last_automation_result',
|
|
62708
62934
|
],
|
|
62709
62935
|
type: 'object',
|
|
62710
62936
|
},
|
|
@@ -62780,6 +63006,51 @@ export default {
|
|
|
62780
63006
|
},
|
|
62781
63007
|
guest_name: { nullable: true, type: 'string' },
|
|
62782
63008
|
has_issued_access: { type: 'boolean' },
|
|
63009
|
+
last_automation_result: {
|
|
63010
|
+
nullable: true,
|
|
63011
|
+
properties: {
|
|
63012
|
+
actions: {
|
|
63013
|
+
items: {
|
|
63014
|
+
properties: {
|
|
63015
|
+
access_grant_id: {
|
|
63016
|
+
format: 'uuid',
|
|
63017
|
+
type: 'string',
|
|
63018
|
+
},
|
|
63019
|
+
action_type: {
|
|
63020
|
+
enum: [
|
|
63021
|
+
'create',
|
|
63022
|
+
'update',
|
|
63023
|
+
'delete',
|
|
63024
|
+
'skip',
|
|
63025
|
+
],
|
|
63026
|
+
type: 'string',
|
|
63027
|
+
},
|
|
63028
|
+
message: { type: 'string' },
|
|
63029
|
+
resource_type: { type: 'string' },
|
|
63030
|
+
skip_reason: { type: 'string' },
|
|
63031
|
+
},
|
|
63032
|
+
required: ['action_type', 'resource_type'],
|
|
63033
|
+
type: 'object',
|
|
63034
|
+
},
|
|
63035
|
+
type: 'array',
|
|
63036
|
+
},
|
|
63037
|
+
created_at: {
|
|
63038
|
+
format: 'date-time',
|
|
63039
|
+
type: 'string',
|
|
63040
|
+
},
|
|
63041
|
+
error: { type: 'string' },
|
|
63042
|
+
message: { type: 'string' },
|
|
63043
|
+
rule: { type: 'string' },
|
|
63044
|
+
success: { type: 'boolean' },
|
|
63045
|
+
},
|
|
63046
|
+
required: [
|
|
63047
|
+
'success',
|
|
63048
|
+
'rule',
|
|
63049
|
+
'actions',
|
|
63050
|
+
'created_at',
|
|
63051
|
+
],
|
|
63052
|
+
type: 'object',
|
|
63053
|
+
},
|
|
62783
63054
|
name: { nullable: true, type: 'string' },
|
|
62784
63055
|
reservation_id: { format: 'uuid', type: 'string' },
|
|
62785
63056
|
reservation_key: { type: 'string' },
|
|
@@ -62799,6 +63070,7 @@ export default {
|
|
|
62799
63070
|
'guest_name',
|
|
62800
63071
|
'has_issued_access',
|
|
62801
63072
|
'access_methods',
|
|
63073
|
+
'last_automation_result',
|
|
62802
63074
|
],
|
|
62803
63075
|
type: 'object',
|
|
62804
63076
|
},
|