@seamapi/types 1.508.0 → 1.509.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 +24 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +38 -2
- package/dist/index.cjs +24 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +34 -2
- package/lib/seam/connect/openapi.js +24 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +27 -0
- package/src/lib/seam/connect/route-types.ts +4 -0
package/dist/connect.d.cts
CHANGED
|
@@ -73316,6 +73316,22 @@ declare const _default: {
|
|
|
73316
73316
|
description: string;
|
|
73317
73317
|
operationId: string;
|
|
73318
73318
|
parameters: ({
|
|
73319
|
+
in: string;
|
|
73320
|
+
name: string;
|
|
73321
|
+
schema: {
|
|
73322
|
+
description: string;
|
|
73323
|
+
type: string;
|
|
73324
|
+
format?: never;
|
|
73325
|
+
deprecated?: never;
|
|
73326
|
+
nullable?: never;
|
|
73327
|
+
'x-deprecated'?: never;
|
|
73328
|
+
items?: never;
|
|
73329
|
+
minLength?: never;
|
|
73330
|
+
default?: never;
|
|
73331
|
+
exclusiveMinimum?: never;
|
|
73332
|
+
minimum?: never;
|
|
73333
|
+
};
|
|
73334
|
+
} | {
|
|
73319
73335
|
in: string;
|
|
73320
73336
|
name: string;
|
|
73321
73337
|
schema: {
|
|
@@ -73528,6 +73544,10 @@ declare const _default: {
|
|
|
73528
73544
|
format: string;
|
|
73529
73545
|
type: string;
|
|
73530
73546
|
};
|
|
73547
|
+
customer_key: {
|
|
73548
|
+
description: string;
|
|
73549
|
+
type: string;
|
|
73550
|
+
};
|
|
73531
73551
|
limit: {
|
|
73532
73552
|
default: number;
|
|
73533
73553
|
description: string;
|
|
@@ -73946,7 +73966,15 @@ declare const _default: {
|
|
|
73946
73966
|
get: {
|
|
73947
73967
|
description: string;
|
|
73948
73968
|
operationId: string;
|
|
73949
|
-
parameters: {
|
|
73969
|
+
parameters: ({
|
|
73970
|
+
in: string;
|
|
73971
|
+
name: string;
|
|
73972
|
+
schema: {
|
|
73973
|
+
description: string;
|
|
73974
|
+
type: string;
|
|
73975
|
+
format?: never;
|
|
73976
|
+
};
|
|
73977
|
+
} | {
|
|
73950
73978
|
in: string;
|
|
73951
73979
|
name: string;
|
|
73952
73980
|
schema: {
|
|
@@ -73954,7 +73982,7 @@ declare const _default: {
|
|
|
73954
73982
|
format: string;
|
|
73955
73983
|
type: string;
|
|
73956
73984
|
};
|
|
73957
|
-
}[];
|
|
73985
|
+
})[];
|
|
73958
73986
|
responses: {
|
|
73959
73987
|
200: {
|
|
73960
73988
|
content: {
|
|
@@ -74027,6 +74055,10 @@ declare const _default: {
|
|
|
74027
74055
|
format: string;
|
|
74028
74056
|
type: string;
|
|
74029
74057
|
};
|
|
74058
|
+
customer_key: {
|
|
74059
|
+
description: string;
|
|
74060
|
+
type: string;
|
|
74061
|
+
};
|
|
74030
74062
|
};
|
|
74031
74063
|
type: string;
|
|
74032
74064
|
};
|
|
@@ -125505,6 +125537,8 @@ type Routes = {
|
|
|
125505
125537
|
queryParams: {};
|
|
125506
125538
|
jsonBody: {};
|
|
125507
125539
|
commonParams: {
|
|
125540
|
+
/** Customer key for which you want to list entrances. */
|
|
125541
|
+
customer_key?: string | undefined;
|
|
125508
125542
|
/** ID of the access system for which you want to retrieve all entrances. */
|
|
125509
125543
|
acs_system_id?: string | undefined;
|
|
125510
125544
|
/** ID of the credential for which you want to retrieve all entrances. */
|
|
@@ -125938,6 +125972,8 @@ type Routes = {
|
|
|
125938
125972
|
queryParams: {};
|
|
125939
125973
|
jsonBody: {};
|
|
125940
125974
|
commonParams: {
|
|
125975
|
+
/** Customer key for which you want to list access systems. */
|
|
125976
|
+
customer_key?: string | undefined;
|
|
125941
125977
|
/** ID of the connected account by which you want to filter the list of access systems. */
|
|
125942
125978
|
connected_account_id?: string | undefined;
|
|
125943
125979
|
};
|
package/dist/index.cjs
CHANGED
|
@@ -35662,6 +35662,14 @@ var openapi_default = {
|
|
|
35662
35662
|
description: "Returns a list of all [access system entrances](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
35663
35663
|
operationId: "acsEntrancesListGet",
|
|
35664
35664
|
parameters: [
|
|
35665
|
+
{
|
|
35666
|
+
in: "query",
|
|
35667
|
+
name: "customer_key",
|
|
35668
|
+
schema: {
|
|
35669
|
+
description: "Customer key for which you want to list entrances.",
|
|
35670
|
+
type: "string"
|
|
35671
|
+
}
|
|
35672
|
+
},
|
|
35665
35673
|
{
|
|
35666
35674
|
in: "query",
|
|
35667
35675
|
name: "acs_system_id",
|
|
@@ -35842,6 +35850,10 @@ var openapi_default = {
|
|
|
35842
35850
|
format: "uuid",
|
|
35843
35851
|
type: "string"
|
|
35844
35852
|
},
|
|
35853
|
+
customer_key: {
|
|
35854
|
+
description: "Customer key for which you want to list entrances.",
|
|
35855
|
+
type: "string"
|
|
35856
|
+
},
|
|
35845
35857
|
limit: {
|
|
35846
35858
|
default: 900,
|
|
35847
35859
|
description: "Maximum number of records to return per page.",
|
|
@@ -36149,6 +36161,14 @@ var openapi_default = {
|
|
|
36149
36161
|
description: "Returns a list of all [access systems](https://docs.seam.co/latest/capability-guides/access-systems).\n\nTo filter the list of returned access systems by a specific connected account ID, include the `connected_account_id` in the request body. If you omit the `connected_account_id` parameter, the response includes all access systems connected to your workspace.",
|
|
36150
36162
|
operationId: "acsSystemsListGet",
|
|
36151
36163
|
parameters: [
|
|
36164
|
+
{
|
|
36165
|
+
in: "query",
|
|
36166
|
+
name: "customer_key",
|
|
36167
|
+
schema: {
|
|
36168
|
+
description: "Customer key for which you want to list access systems.",
|
|
36169
|
+
type: "string"
|
|
36170
|
+
}
|
|
36171
|
+
},
|
|
36152
36172
|
{
|
|
36153
36173
|
in: "query",
|
|
36154
36174
|
name: "connected_account_id",
|
|
@@ -36207,6 +36227,10 @@ var openapi_default = {
|
|
|
36207
36227
|
description: "ID of the connected account by which you want to filter the list of access systems.",
|
|
36208
36228
|
format: "uuid",
|
|
36209
36229
|
type: "string"
|
|
36230
|
+
},
|
|
36231
|
+
customer_key: {
|
|
36232
|
+
description: "Customer key for which you want to list access systems.",
|
|
36233
|
+
type: "string"
|
|
36210
36234
|
}
|
|
36211
36235
|
},
|
|
36212
36236
|
type: "object"
|