@seamapi/types 1.609.0 → 1.611.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 +26 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +23 -3
- package/dist/index.cjs +26 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +18 -2
- package/lib/seam/connect/openapi.js +26 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +5 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +27 -2
- package/src/lib/seam/connect/route-types.ts +5 -1
package/dist/connect.d.cts
CHANGED
|
@@ -69994,6 +69994,10 @@ declare const _default: {
|
|
|
69994
69994
|
type: string;
|
|
69995
69995
|
'x-deprecated': string;
|
|
69996
69996
|
};
|
|
69997
|
+
reservation_key: {
|
|
69998
|
+
description: string;
|
|
69999
|
+
type: string;
|
|
70000
|
+
};
|
|
69997
70001
|
space_id: {
|
|
69998
70002
|
description: string;
|
|
69999
70003
|
format: string;
|
|
@@ -70616,7 +70620,7 @@ declare const _default: {
|
|
|
70616
70620
|
get: {
|
|
70617
70621
|
description: string;
|
|
70618
70622
|
operationId: string;
|
|
70619
|
-
parameters: {
|
|
70623
|
+
parameters: ({
|
|
70620
70624
|
in: string;
|
|
70621
70625
|
name: string;
|
|
70622
70626
|
schema: {
|
|
@@ -70624,7 +70628,15 @@ declare const _default: {
|
|
|
70624
70628
|
format: string;
|
|
70625
70629
|
type: string;
|
|
70626
70630
|
};
|
|
70627
|
-
}
|
|
70631
|
+
} | {
|
|
70632
|
+
in: string;
|
|
70633
|
+
name: string;
|
|
70634
|
+
schema: {
|
|
70635
|
+
description: string;
|
|
70636
|
+
type: string;
|
|
70637
|
+
format?: never;
|
|
70638
|
+
};
|
|
70639
|
+
})[];
|
|
70628
70640
|
responses: {
|
|
70629
70641
|
200: {
|
|
70630
70642
|
content: {
|
|
@@ -70848,6 +70860,10 @@ declare const _default: {
|
|
|
70848
70860
|
format: string;
|
|
70849
70861
|
type: string;
|
|
70850
70862
|
};
|
|
70863
|
+
reservation_key: {
|
|
70864
|
+
description: string;
|
|
70865
|
+
type: string;
|
|
70866
|
+
};
|
|
70851
70867
|
user_identity_id: {
|
|
70852
70868
|
description: string;
|
|
70853
70869
|
format: string;
|
|
@@ -120654,6 +120670,8 @@ type Routes = {
|
|
|
120654
120670
|
space_id?: string | undefined;
|
|
120655
120671
|
/** Filter Access Grants by access_grant_key. */
|
|
120656
120672
|
access_grant_key?: string | undefined;
|
|
120673
|
+
/** Filter Access Grants by reservation_key. */
|
|
120674
|
+
reservation_key?: string | undefined;
|
|
120657
120675
|
};
|
|
120658
120676
|
formData: {};
|
|
120659
120677
|
jsonResponse: {
|
|
@@ -120869,6 +120887,8 @@ type Routes = {
|
|
|
120869
120887
|
acs_system_id?: string | undefined;
|
|
120870
120888
|
/** ID of the entrance by which you want to filter the list of unmanaged Access Grants. */
|
|
120871
120889
|
acs_entrance_id?: string | undefined;
|
|
120890
|
+
/** Filter unmanaged Access Grants by reservation_key. */
|
|
120891
|
+
reservation_key?: string | undefined;
|
|
120872
120892
|
};
|
|
120873
120893
|
formData: {};
|
|
120874
120894
|
jsonResponse: {
|
|
@@ -189619,7 +189639,7 @@ type Routes = {
|
|
|
189619
189639
|
queryParams: {};
|
|
189620
189640
|
jsonBody: {};
|
|
189621
189641
|
commonParams: {
|
|
189622
|
-
/** String for which to search. Filters returned unmanaged user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `
|
|
189642
|
+
/** String for which to search. Filters returned unmanaged user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address`, `user_identity_id` or `acs_system_id`. */
|
|
189623
189643
|
search?: string | undefined;
|
|
189624
189644
|
/** Maximum number of records to return per page. */
|
|
189625
189645
|
limit?: number;
|
package/dist/index.cjs
CHANGED
|
@@ -31979,6 +31979,14 @@ var openapi_default = {
|
|
|
31979
31979
|
description: "Filter Access Grants by access_grant_key.",
|
|
31980
31980
|
type: "string"
|
|
31981
31981
|
}
|
|
31982
|
+
},
|
|
31983
|
+
{
|
|
31984
|
+
in: "query",
|
|
31985
|
+
name: "reservation_key",
|
|
31986
|
+
schema: {
|
|
31987
|
+
description: "Filter Access Grants by reservation_key.",
|
|
31988
|
+
type: "string"
|
|
31989
|
+
}
|
|
31982
31990
|
}
|
|
31983
31991
|
],
|
|
31984
31992
|
responses: {
|
|
@@ -32050,6 +32058,10 @@ var openapi_default = {
|
|
|
32050
32058
|
type: "string",
|
|
32051
32059
|
"x-deprecated": "Use `space_id`."
|
|
32052
32060
|
},
|
|
32061
|
+
reservation_key: {
|
|
32062
|
+
description: "Filter Access Grants by reservation_key.",
|
|
32063
|
+
type: "string"
|
|
32064
|
+
},
|
|
32053
32065
|
space_id: {
|
|
32054
32066
|
description: "ID of the space by which you want to filter the list of Access Grants.",
|
|
32055
32067
|
format: "uuid",
|
|
@@ -32635,6 +32647,14 @@ var openapi_default = {
|
|
|
32635
32647
|
format: "uuid",
|
|
32636
32648
|
type: "string"
|
|
32637
32649
|
}
|
|
32650
|
+
},
|
|
32651
|
+
{
|
|
32652
|
+
in: "query",
|
|
32653
|
+
name: "reservation_key",
|
|
32654
|
+
schema: {
|
|
32655
|
+
description: "Filter unmanaged Access Grants by reservation_key.",
|
|
32656
|
+
type: "string"
|
|
32657
|
+
}
|
|
32638
32658
|
}
|
|
32639
32659
|
],
|
|
32640
32660
|
responses: {
|
|
@@ -32850,6 +32870,10 @@ var openapi_default = {
|
|
|
32850
32870
|
format: "uuid",
|
|
32851
32871
|
type: "string"
|
|
32852
32872
|
},
|
|
32873
|
+
reservation_key: {
|
|
32874
|
+
description: "Filter unmanaged Access Grants by reservation_key.",
|
|
32875
|
+
type: "string"
|
|
32876
|
+
},
|
|
32853
32877
|
user_identity_id: {
|
|
32854
32878
|
description: "ID of user identity by which you want to filter the list of unmanaged Access Grants.",
|
|
32855
32879
|
format: "uuid",
|
|
@@ -63256,7 +63280,7 @@ var openapi_default = {
|
|
|
63256
63280
|
in: "query",
|
|
63257
63281
|
name: "search",
|
|
63258
63282
|
schema: {
|
|
63259
|
-
description: "String for which to search. Filters returned unmanaged user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `
|
|
63283
|
+
description: "String for which to search. Filters returned unmanaged user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address`, `user_identity_id` or `acs_system_id`.",
|
|
63260
63284
|
type: "string"
|
|
63261
63285
|
}
|
|
63262
63286
|
},
|
|
@@ -63518,7 +63542,7 @@ var openapi_default = {
|
|
|
63518
63542
|
type: "string"
|
|
63519
63543
|
},
|
|
63520
63544
|
search: {
|
|
63521
|
-
description: "String for which to search. Filters returned unmanaged user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `
|
|
63545
|
+
description: "String for which to search. Filters returned unmanaged user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address`, `user_identity_id` or `acs_system_id`.",
|
|
63522
63546
|
type: "string"
|
|
63523
63547
|
}
|
|
63524
63548
|
},
|