@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
package/dist/connect.d.cts
CHANGED
|
@@ -102010,9 +102010,18 @@ 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: {
|
|
102021
|
+
access_grant_id: {
|
|
102022
|
+
format: string;
|
|
102023
|
+
type: string;
|
|
102024
|
+
};
|
|
102016
102025
|
access_method_id: {
|
|
102017
102026
|
format: string;
|
|
102018
102027
|
type: string;
|
|
@@ -102155,9 +102164,18 @@ declare const _default: {
|
|
|
102155
102164
|
};
|
|
102156
102165
|
reservation: {
|
|
102157
102166
|
properties: {
|
|
102167
|
+
access_grant_id: {
|
|
102168
|
+
format: string;
|
|
102169
|
+
nullable: boolean;
|
|
102170
|
+
type: string;
|
|
102171
|
+
};
|
|
102158
102172
|
access_methods: {
|
|
102159
102173
|
items: {
|
|
102160
102174
|
properties: {
|
|
102175
|
+
access_grant_id: {
|
|
102176
|
+
format: string;
|
|
102177
|
+
type: string;
|
|
102178
|
+
};
|
|
102161
102179
|
access_method_id: {
|
|
102162
102180
|
format: string;
|
|
102163
102181
|
type: string;
|
|
@@ -172784,8 +172802,10 @@ type Routes = {
|
|
|
172784
172802
|
space_key: string;
|
|
172785
172803
|
name: string | null;
|
|
172786
172804
|
}[];
|
|
172805
|
+
access_grant_id: string | null;
|
|
172787
172806
|
access_methods: {
|
|
172788
172807
|
access_method_id: string;
|
|
172808
|
+
access_grant_id: string;
|
|
172789
172809
|
mode: string;
|
|
172790
172810
|
is_issued: boolean;
|
|
172791
172811
|
is_card_encoding_required?: boolean | undefined;
|
package/dist/index.cjs
CHANGED
|
@@ -58766,9 +58766,18 @@ 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: {
|
|
58777
|
+
access_grant_id: {
|
|
58778
|
+
format: "uuid",
|
|
58779
|
+
type: "string"
|
|
58780
|
+
},
|
|
58772
58781
|
access_method_id: {
|
|
58773
58782
|
format: "uuid",
|
|
58774
58783
|
type: "string"
|
|
@@ -58782,7 +58791,12 @@ var openapi_default = {
|
|
|
58782
58791
|
is_issued: { type: "boolean" },
|
|
58783
58792
|
mode: { type: "string" }
|
|
58784
58793
|
},
|
|
58785
|
-
required: [
|
|
58794
|
+
required: [
|
|
58795
|
+
"access_method_id",
|
|
58796
|
+
"access_grant_id",
|
|
58797
|
+
"mode",
|
|
58798
|
+
"is_issued"
|
|
58799
|
+
],
|
|
58786
58800
|
type: "object"
|
|
58787
58801
|
},
|
|
58788
58802
|
type: "array"
|
|
@@ -58828,6 +58842,7 @@ var openapi_default = {
|
|
|
58828
58842
|
"created_at",
|
|
58829
58843
|
"guest_name",
|
|
58830
58844
|
"spaces",
|
|
58845
|
+
"access_grant_id",
|
|
58831
58846
|
"access_methods"
|
|
58832
58847
|
],
|
|
58833
58848
|
type: "object"
|
|
@@ -58885,9 +58900,18 @@ var openapi_default = {
|
|
|
58885
58900
|
ok: { type: "boolean" },
|
|
58886
58901
|
reservation: {
|
|
58887
58902
|
properties: {
|
|
58903
|
+
access_grant_id: {
|
|
58904
|
+
format: "uuid",
|
|
58905
|
+
nullable: true,
|
|
58906
|
+
type: "string"
|
|
58907
|
+
},
|
|
58888
58908
|
access_methods: {
|
|
58889
58909
|
items: {
|
|
58890
58910
|
properties: {
|
|
58911
|
+
access_grant_id: {
|
|
58912
|
+
format: "uuid",
|
|
58913
|
+
type: "string"
|
|
58914
|
+
},
|
|
58891
58915
|
access_method_id: {
|
|
58892
58916
|
format: "uuid",
|
|
58893
58917
|
type: "string"
|
|
@@ -58901,7 +58925,12 @@ var openapi_default = {
|
|
|
58901
58925
|
is_issued: { type: "boolean" },
|
|
58902
58926
|
mode: { type: "string" }
|
|
58903
58927
|
},
|
|
58904
|
-
required: [
|
|
58928
|
+
required: [
|
|
58929
|
+
"access_method_id",
|
|
58930
|
+
"access_grant_id",
|
|
58931
|
+
"mode",
|
|
58932
|
+
"is_issued"
|
|
58933
|
+
],
|
|
58905
58934
|
type: "object"
|
|
58906
58935
|
},
|
|
58907
58936
|
type: "array"
|
|
@@ -58947,6 +58976,7 @@ var openapi_default = {
|
|
|
58947
58976
|
"created_at",
|
|
58948
58977
|
"guest_name",
|
|
58949
58978
|
"spaces",
|
|
58979
|
+
"access_grant_id",
|
|
58950
58980
|
"access_methods"
|
|
58951
58981
|
],
|
|
58952
58982
|
type: "object"
|