@seamapi/types 1.721.2 → 1.723.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 +32 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +20 -0
- package/dist/index.cjs +32 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +18 -0
- package/lib/seam/connect/openapi.js +32 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +32 -2
- package/src/lib/seam/connect/route-types.ts +2 -0
|
@@ -48075,9 +48075,18 @@ declare const _default: {
|
|
|
48075
48075
|
};
|
|
48076
48076
|
reservation: {
|
|
48077
48077
|
properties: {
|
|
48078
|
+
access_grant_id: {
|
|
48079
|
+
format: string;
|
|
48080
|
+
nullable: boolean;
|
|
48081
|
+
type: string;
|
|
48082
|
+
};
|
|
48078
48083
|
access_methods: {
|
|
48079
48084
|
items: {
|
|
48080
48085
|
properties: {
|
|
48086
|
+
access_grant_id: {
|
|
48087
|
+
format: string;
|
|
48088
|
+
type: string;
|
|
48089
|
+
};
|
|
48081
48090
|
access_method_id: {
|
|
48082
48091
|
format: string;
|
|
48083
48092
|
type: string;
|
|
@@ -48220,9 +48229,18 @@ declare const _default: {
|
|
|
48220
48229
|
};
|
|
48221
48230
|
reservation: {
|
|
48222
48231
|
properties: {
|
|
48232
|
+
access_grant_id: {
|
|
48233
|
+
format: string;
|
|
48234
|
+
nullable: boolean;
|
|
48235
|
+
type: string;
|
|
48236
|
+
};
|
|
48223
48237
|
access_methods: {
|
|
48224
48238
|
items: {
|
|
48225
48239
|
properties: {
|
|
48240
|
+
access_grant_id: {
|
|
48241
|
+
format: string;
|
|
48242
|
+
type: string;
|
|
48243
|
+
};
|
|
48226
48244
|
access_method_id: {
|
|
48227
48245
|
format: string;
|
|
48228
48246
|
type: string;
|
|
@@ -52743,9 +52743,18 @@ export default {
|
|
|
52743
52743
|
ok: { type: 'boolean' },
|
|
52744
52744
|
reservation: {
|
|
52745
52745
|
properties: {
|
|
52746
|
+
access_grant_id: {
|
|
52747
|
+
format: 'uuid',
|
|
52748
|
+
nullable: true,
|
|
52749
|
+
type: 'string',
|
|
52750
|
+
},
|
|
52746
52751
|
access_methods: {
|
|
52747
52752
|
items: {
|
|
52748
52753
|
properties: {
|
|
52754
|
+
access_grant_id: {
|
|
52755
|
+
format: 'uuid',
|
|
52756
|
+
type: 'string',
|
|
52757
|
+
},
|
|
52749
52758
|
access_method_id: {
|
|
52750
52759
|
format: 'uuid',
|
|
52751
52760
|
type: 'string',
|
|
@@ -52759,7 +52768,12 @@ export default {
|
|
|
52759
52768
|
is_issued: { type: 'boolean' },
|
|
52760
52769
|
mode: { type: 'string' },
|
|
52761
52770
|
},
|
|
52762
|
-
required: [
|
|
52771
|
+
required: [
|
|
52772
|
+
'access_method_id',
|
|
52773
|
+
'access_grant_id',
|
|
52774
|
+
'mode',
|
|
52775
|
+
'is_issued',
|
|
52776
|
+
],
|
|
52763
52777
|
type: 'object',
|
|
52764
52778
|
},
|
|
52765
52779
|
type: 'array',
|
|
@@ -52805,6 +52819,7 @@ export default {
|
|
|
52805
52819
|
'created_at',
|
|
52806
52820
|
'guest_name',
|
|
52807
52821
|
'spaces',
|
|
52822
|
+
'access_grant_id',
|
|
52808
52823
|
'access_methods',
|
|
52809
52824
|
],
|
|
52810
52825
|
type: 'object',
|
|
@@ -52862,9 +52877,18 @@ export default {
|
|
|
52862
52877
|
ok: { type: 'boolean' },
|
|
52863
52878
|
reservation: {
|
|
52864
52879
|
properties: {
|
|
52880
|
+
access_grant_id: {
|
|
52881
|
+
format: 'uuid',
|
|
52882
|
+
nullable: true,
|
|
52883
|
+
type: 'string',
|
|
52884
|
+
},
|
|
52865
52885
|
access_methods: {
|
|
52866
52886
|
items: {
|
|
52867
52887
|
properties: {
|
|
52888
|
+
access_grant_id: {
|
|
52889
|
+
format: 'uuid',
|
|
52890
|
+
type: 'string',
|
|
52891
|
+
},
|
|
52868
52892
|
access_method_id: {
|
|
52869
52893
|
format: 'uuid',
|
|
52870
52894
|
type: 'string',
|
|
@@ -52878,7 +52902,12 @@ export default {
|
|
|
52878
52902
|
is_issued: { type: 'boolean' },
|
|
52879
52903
|
mode: { type: 'string' },
|
|
52880
52904
|
},
|
|
52881
|
-
required: [
|
|
52905
|
+
required: [
|
|
52906
|
+
'access_method_id',
|
|
52907
|
+
'access_grant_id',
|
|
52908
|
+
'mode',
|
|
52909
|
+
'is_issued',
|
|
52910
|
+
],
|
|
52882
52911
|
type: 'object',
|
|
52883
52912
|
},
|
|
52884
52913
|
type: 'array',
|
|
@@ -52924,6 +52953,7 @@ export default {
|
|
|
52924
52953
|
'created_at',
|
|
52925
52954
|
'guest_name',
|
|
52926
52955
|
'spaces',
|
|
52956
|
+
'access_grant_id',
|
|
52927
52957
|
'access_methods',
|
|
52928
52958
|
],
|
|
52929
52959
|
type: 'object',
|