@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
|
@@ -61067,6 +61067,48 @@ export default {
|
|
|
61067
61067
|
},
|
|
61068
61068
|
guest_name: { nullable: true, type: 'string' },
|
|
61069
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
|
+
},
|
|
61070
61112
|
name: { nullable: true, type: 'string' },
|
|
61071
61113
|
reservation_id: { format: 'uuid', type: 'string' },
|
|
61072
61114
|
reservation_key: { type: 'string' },
|
|
@@ -61105,6 +61147,7 @@ export default {
|
|
|
61105
61147
|
'spaces',
|
|
61106
61148
|
'access_grant_id',
|
|
61107
61149
|
'access_methods',
|
|
61150
|
+
'last_automation_result',
|
|
61108
61151
|
],
|
|
61109
61152
|
type: 'object',
|
|
61110
61153
|
},
|
|
@@ -61235,6 +61278,48 @@ export default {
|
|
|
61235
61278
|
},
|
|
61236
61279
|
guest_name: { nullable: true, type: 'string' },
|
|
61237
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
|
+
},
|
|
61238
61323
|
name: { nullable: true, type: 'string' },
|
|
61239
61324
|
reservation_id: { format: 'uuid', type: 'string' },
|
|
61240
61325
|
reservation_key: { type: 'string' },
|
|
@@ -61273,6 +61358,7 @@ export default {
|
|
|
61273
61358
|
'spaces',
|
|
61274
61359
|
'access_grant_id',
|
|
61275
61360
|
'access_methods',
|
|
61361
|
+
'last_automation_result',
|
|
61276
61362
|
],
|
|
61277
61363
|
type: 'object',
|
|
61278
61364
|
},
|
|
@@ -61448,6 +61534,51 @@ export default {
|
|
|
61448
61534
|
},
|
|
61449
61535
|
guest_name: { nullable: true, type: 'string' },
|
|
61450
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
|
+
},
|
|
61451
61582
|
name: { nullable: true, type: 'string' },
|
|
61452
61583
|
pending_mutations: {
|
|
61453
61584
|
items: {
|
|
@@ -61520,6 +61651,7 @@ export default {
|
|
|
61520
61651
|
'pending_mutations',
|
|
61521
61652
|
'access_methods',
|
|
61522
61653
|
'spaces',
|
|
61654
|
+
'last_automation_result',
|
|
61523
61655
|
],
|
|
61524
61656
|
type: 'object',
|
|
61525
61657
|
},
|
|
@@ -61676,6 +61808,51 @@ export default {
|
|
|
61676
61808
|
},
|
|
61677
61809
|
guest_name: { nullable: true, type: 'string' },
|
|
61678
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
|
+
},
|
|
61679
61856
|
name: { nullable: true, type: 'string' },
|
|
61680
61857
|
pending_mutations: {
|
|
61681
61858
|
items: {
|
|
@@ -61748,6 +61925,7 @@ export default {
|
|
|
61748
61925
|
'pending_mutations',
|
|
61749
61926
|
'access_methods',
|
|
61750
61927
|
'spaces',
|
|
61928
|
+
'last_automation_result',
|
|
61751
61929
|
],
|
|
61752
61930
|
type: 'object',
|
|
61753
61931
|
},
|
|
@@ -62688,6 +62866,51 @@ export default {
|
|
|
62688
62866
|
},
|
|
62689
62867
|
guest_name: { nullable: true, type: 'string' },
|
|
62690
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
|
+
},
|
|
62691
62914
|
name: { nullable: true, type: 'string' },
|
|
62692
62915
|
reservation_id: { format: 'uuid', type: 'string' },
|
|
62693
62916
|
reservation_key: { type: 'string' },
|
|
@@ -62707,6 +62930,7 @@ export default {
|
|
|
62707
62930
|
'guest_name',
|
|
62708
62931
|
'has_issued_access',
|
|
62709
62932
|
'access_methods',
|
|
62933
|
+
'last_automation_result',
|
|
62710
62934
|
],
|
|
62711
62935
|
type: 'object',
|
|
62712
62936
|
},
|
|
@@ -62782,6 +63006,51 @@ export default {
|
|
|
62782
63006
|
},
|
|
62783
63007
|
guest_name: { nullable: true, type: 'string' },
|
|
62784
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
|
+
},
|
|
62785
63054
|
name: { nullable: true, type: 'string' },
|
|
62786
63055
|
reservation_id: { format: 'uuid', type: 'string' },
|
|
62787
63056
|
reservation_key: { type: 'string' },
|
|
@@ -62801,6 +63070,7 @@ export default {
|
|
|
62801
63070
|
'guest_name',
|
|
62802
63071
|
'has_issued_access',
|
|
62803
63072
|
'access_methods',
|
|
63073
|
+
'last_automation_result',
|
|
62804
63074
|
],
|
|
62805
63075
|
type: 'object',
|
|
62806
63076
|
},
|