@seamapi/types 1.441.2 → 1.442.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 +41 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +52 -1
- package/dist/index.cjs +41 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +46 -0
- package/lib/seam/connect/openapi.js +41 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +6 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +45 -0
- package/src/lib/seam/connect/route-types.ts +6 -1
package/dist/connect.d.cts
CHANGED
|
@@ -49660,6 +49660,7 @@ declare const _default: {
|
|
|
49660
49660
|
nullable?: never;
|
|
49661
49661
|
'x-deprecated'?: never;
|
|
49662
49662
|
items?: never;
|
|
49663
|
+
minLength?: never;
|
|
49663
49664
|
};
|
|
49664
49665
|
} | {
|
|
49665
49666
|
in: string;
|
|
@@ -49672,6 +49673,7 @@ declare const _default: {
|
|
|
49672
49673
|
'x-deprecated': string;
|
|
49673
49674
|
description?: never;
|
|
49674
49675
|
items?: never;
|
|
49676
|
+
minLength?: never;
|
|
49675
49677
|
};
|
|
49676
49678
|
} | {
|
|
49677
49679
|
in: string;
|
|
@@ -49687,6 +49689,20 @@ declare const _default: {
|
|
|
49687
49689
|
deprecated?: never;
|
|
49688
49690
|
nullable?: never;
|
|
49689
49691
|
'x-deprecated'?: never;
|
|
49692
|
+
minLength?: never;
|
|
49693
|
+
};
|
|
49694
|
+
} | {
|
|
49695
|
+
in: string;
|
|
49696
|
+
name: string;
|
|
49697
|
+
schema: {
|
|
49698
|
+
description: string;
|
|
49699
|
+
minLength: number;
|
|
49700
|
+
type: string;
|
|
49701
|
+
format?: never;
|
|
49702
|
+
deprecated?: never;
|
|
49703
|
+
nullable?: never;
|
|
49704
|
+
'x-deprecated'?: never;
|
|
49705
|
+
items?: never;
|
|
49690
49706
|
};
|
|
49691
49707
|
})[];
|
|
49692
49708
|
responses: {
|
|
@@ -49796,6 +49812,11 @@ declare const _default: {
|
|
|
49796
49812
|
type: string;
|
|
49797
49813
|
'x-deprecated': string;
|
|
49798
49814
|
};
|
|
49815
|
+
search: {
|
|
49816
|
+
description: string;
|
|
49817
|
+
minLength: number;
|
|
49818
|
+
type: string;
|
|
49819
|
+
};
|
|
49799
49820
|
space_id: {
|
|
49800
49821
|
description: string;
|
|
49801
49822
|
format: string;
|
|
@@ -66046,6 +66067,15 @@ declare const _default: {
|
|
|
66046
66067
|
get: {
|
|
66047
66068
|
description: string;
|
|
66048
66069
|
operationId: string;
|
|
66070
|
+
parameters: {
|
|
66071
|
+
in: string;
|
|
66072
|
+
name: string;
|
|
66073
|
+
schema: {
|
|
66074
|
+
description: string;
|
|
66075
|
+
minLength: number;
|
|
66076
|
+
type: string;
|
|
66077
|
+
};
|
|
66078
|
+
}[];
|
|
66049
66079
|
responses: {
|
|
66050
66080
|
200: {
|
|
66051
66081
|
content: {
|
|
@@ -66101,6 +66131,22 @@ declare const _default: {
|
|
|
66101
66131
|
post: {
|
|
66102
66132
|
description: string;
|
|
66103
66133
|
operationId: string;
|
|
66134
|
+
requestBody: {
|
|
66135
|
+
content: {
|
|
66136
|
+
'application/json': {
|
|
66137
|
+
schema: {
|
|
66138
|
+
properties: {
|
|
66139
|
+
search: {
|
|
66140
|
+
description: string;
|
|
66141
|
+
minLength: number;
|
|
66142
|
+
type: string;
|
|
66143
|
+
};
|
|
66144
|
+
};
|
|
66145
|
+
type: string;
|
|
66146
|
+
};
|
|
66147
|
+
};
|
|
66148
|
+
};
|
|
66149
|
+
};
|
|
66104
66150
|
responses: {
|
|
66105
66151
|
200: {
|
|
66106
66152
|
content: {
|
|
@@ -93156,6 +93202,8 @@ interface Routes {
|
|
|
93156
93202
|
connected_account_id?: string | undefined;
|
|
93157
93203
|
/** IDs of the entrances for which you want to retrieve all entrances. */
|
|
93158
93204
|
acs_entrance_ids?: string[] | undefined;
|
|
93205
|
+
/** String for which to search. Filters returned entrances to include all records that satisfy a partial match using `display_name`. */
|
|
93206
|
+
search?: string | undefined;
|
|
93159
93207
|
};
|
|
93160
93208
|
formData: {};
|
|
93161
93209
|
jsonResponse: {
|
|
@@ -124574,7 +124622,10 @@ interface Routes {
|
|
|
124574
124622
|
method: 'GET' | 'POST';
|
|
124575
124623
|
queryParams: {};
|
|
124576
124624
|
jsonBody: {};
|
|
124577
|
-
commonParams: {
|
|
124625
|
+
commonParams: {
|
|
124626
|
+
/** String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`. */
|
|
124627
|
+
search?: string | undefined;
|
|
124628
|
+
};
|
|
124578
124629
|
formData: {};
|
|
124579
124630
|
jsonResponse: {
|
|
124580
124631
|
spaces: Array<{
|
package/dist/index.cjs
CHANGED
|
@@ -34627,6 +34627,15 @@ var openapi_default = {
|
|
|
34627
34627
|
items: { format: "uuid", type: "string" },
|
|
34628
34628
|
type: "array"
|
|
34629
34629
|
}
|
|
34630
|
+
},
|
|
34631
|
+
{
|
|
34632
|
+
in: "query",
|
|
34633
|
+
name: "search",
|
|
34634
|
+
schema: {
|
|
34635
|
+
description: "String for which to search. Filters returned entrances to include all records that satisfy a partial match using `display_name`.",
|
|
34636
|
+
minLength: 1,
|
|
34637
|
+
type: "string"
|
|
34638
|
+
}
|
|
34630
34639
|
}
|
|
34631
34640
|
],
|
|
34632
34641
|
responses: {
|
|
@@ -34710,6 +34719,11 @@ var openapi_default = {
|
|
|
34710
34719
|
type: "string",
|
|
34711
34720
|
"x-deprecated": "Use `space_id`."
|
|
34712
34721
|
},
|
|
34722
|
+
search: {
|
|
34723
|
+
description: "String for which to search. Filters returned entrances to include all records that satisfy a partial match using `display_name`.",
|
|
34724
|
+
minLength: 1,
|
|
34725
|
+
type: "string"
|
|
34726
|
+
},
|
|
34713
34727
|
space_id: {
|
|
34714
34728
|
description: "ID of the space for which you want to list entrances.",
|
|
34715
34729
|
format: "uuid",
|
|
@@ -49023,6 +49037,17 @@ var openapi_default = {
|
|
|
49023
49037
|
get: {
|
|
49024
49038
|
description: "Returns a list of all spaces.",
|
|
49025
49039
|
operationId: "spacesListGet",
|
|
49040
|
+
parameters: [
|
|
49041
|
+
{
|
|
49042
|
+
in: "query",
|
|
49043
|
+
name: "search",
|
|
49044
|
+
schema: {
|
|
49045
|
+
description: "String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.",
|
|
49046
|
+
minLength: 1,
|
|
49047
|
+
type: "string"
|
|
49048
|
+
}
|
|
49049
|
+
}
|
|
49050
|
+
],
|
|
49026
49051
|
responses: {
|
|
49027
49052
|
200: {
|
|
49028
49053
|
content: {
|
|
@@ -49062,6 +49087,22 @@ var openapi_default = {
|
|
|
49062
49087
|
post: {
|
|
49063
49088
|
description: "Returns a list of all spaces.",
|
|
49064
49089
|
operationId: "spacesListPost",
|
|
49090
|
+
requestBody: {
|
|
49091
|
+
content: {
|
|
49092
|
+
"application/json": {
|
|
49093
|
+
schema: {
|
|
49094
|
+
properties: {
|
|
49095
|
+
search: {
|
|
49096
|
+
description: "String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.",
|
|
49097
|
+
minLength: 1,
|
|
49098
|
+
type: "string"
|
|
49099
|
+
}
|
|
49100
|
+
},
|
|
49101
|
+
type: "object"
|
|
49102
|
+
}
|
|
49103
|
+
}
|
|
49104
|
+
}
|
|
49105
|
+
},
|
|
49065
49106
|
responses: {
|
|
49066
49107
|
200: {
|
|
49067
49108
|
content: {
|