@seamapi/types 1.722.0 → 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 +12 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +11 -0
- package/dist/index.cjs +12 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +10 -0
- package/lib/seam/connect/openapi.js +12 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +12 -0
- package/src/lib/seam/connect/route-types.ts +1 -0
package/dist/connect.d.cts
CHANGED
|
@@ -102010,6 +102010,11 @@ declare const _default: {
|
|
|
102010
102010
|
};
|
|
102011
102011
|
reservation: {
|
|
102012
102012
|
properties: {
|
|
102013
|
+
access_grant_id: {
|
|
102014
|
+
format: string;
|
|
102015
|
+
nullable: boolean;
|
|
102016
|
+
type: string;
|
|
102017
|
+
};
|
|
102013
102018
|
access_methods: {
|
|
102014
102019
|
items: {
|
|
102015
102020
|
properties: {
|
|
@@ -102159,6 +102164,11 @@ declare const _default: {
|
|
|
102159
102164
|
};
|
|
102160
102165
|
reservation: {
|
|
102161
102166
|
properties: {
|
|
102167
|
+
access_grant_id: {
|
|
102168
|
+
format: string;
|
|
102169
|
+
nullable: boolean;
|
|
102170
|
+
type: string;
|
|
102171
|
+
};
|
|
102162
102172
|
access_methods: {
|
|
102163
102173
|
items: {
|
|
102164
102174
|
properties: {
|
|
@@ -172792,6 +172802,7 @@ type Routes = {
|
|
|
172792
172802
|
space_key: string;
|
|
172793
172803
|
name: string | null;
|
|
172794
172804
|
}[];
|
|
172805
|
+
access_grant_id: string | null;
|
|
172795
172806
|
access_methods: {
|
|
172796
172807
|
access_method_id: string;
|
|
172797
172808
|
access_grant_id: string;
|
package/dist/index.cjs
CHANGED
|
@@ -58766,6 +58766,11 @@ var openapi_default = {
|
|
|
58766
58766
|
ok: { type: "boolean" },
|
|
58767
58767
|
reservation: {
|
|
58768
58768
|
properties: {
|
|
58769
|
+
access_grant_id: {
|
|
58770
|
+
format: "uuid",
|
|
58771
|
+
nullable: true,
|
|
58772
|
+
type: "string"
|
|
58773
|
+
},
|
|
58769
58774
|
access_methods: {
|
|
58770
58775
|
items: {
|
|
58771
58776
|
properties: {
|
|
@@ -58837,6 +58842,7 @@ var openapi_default = {
|
|
|
58837
58842
|
"created_at",
|
|
58838
58843
|
"guest_name",
|
|
58839
58844
|
"spaces",
|
|
58845
|
+
"access_grant_id",
|
|
58840
58846
|
"access_methods"
|
|
58841
58847
|
],
|
|
58842
58848
|
type: "object"
|
|
@@ -58894,6 +58900,11 @@ var openapi_default = {
|
|
|
58894
58900
|
ok: { type: "boolean" },
|
|
58895
58901
|
reservation: {
|
|
58896
58902
|
properties: {
|
|
58903
|
+
access_grant_id: {
|
|
58904
|
+
format: "uuid",
|
|
58905
|
+
nullable: true,
|
|
58906
|
+
type: "string"
|
|
58907
|
+
},
|
|
58897
58908
|
access_methods: {
|
|
58898
58909
|
items: {
|
|
58899
58910
|
properties: {
|
|
@@ -58965,6 +58976,7 @@ var openapi_default = {
|
|
|
58965
58976
|
"created_at",
|
|
58966
58977
|
"guest_name",
|
|
58967
58978
|
"spaces",
|
|
58979
|
+
"access_grant_id",
|
|
58968
58980
|
"access_methods"
|
|
58969
58981
|
],
|
|
58970
58982
|
type: "object"
|