@seamapi/types 1.1024.0 → 1.1026.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.
|
@@ -78877,7 +78877,7 @@ export type Routes = {
|
|
|
78877
78877
|
/** Filter timeline entries by context type. 'request' for API requests, 'job' for background jobs. */
|
|
78878
78878
|
context_type?: ('request' | 'job') | undefined;
|
|
78879
78879
|
/** Identifies the specific page of results to return. Specify `null` or omit this parameter to return the first page. */
|
|
78880
|
-
page_cursor?: (string |
|
|
78880
|
+
page_cursor?: (string | undefined) | null;
|
|
78881
78881
|
};
|
|
78882
78882
|
formData: {};
|
|
78883
78883
|
jsonResponse: {
|
package/package.json
CHANGED
|
@@ -50588,6 +50588,7 @@ const openapi: OpenAPISpec = {
|
|
|
50588
50588
|
schema: {
|
|
50589
50589
|
description:
|
|
50590
50590
|
'ID of the client session that you want to retrieve.',
|
|
50591
|
+
minLength: 1,
|
|
50591
50592
|
type: 'string',
|
|
50592
50593
|
},
|
|
50593
50594
|
},
|
|
@@ -50678,6 +50679,7 @@ const openapi: OpenAPISpec = {
|
|
|
50678
50679
|
client_session_id: {
|
|
50679
50680
|
description:
|
|
50680
50681
|
'ID of the client session that you want to retrieve.',
|
|
50682
|
+
minLength: 1,
|
|
50681
50683
|
type: 'string',
|
|
50682
50684
|
},
|
|
50683
50685
|
connect_webview_id: {
|
|
@@ -66633,7 +66635,6 @@ const openapi: OpenAPISpec = {
|
|
|
66633
66635
|
schema: {
|
|
66634
66636
|
description:
|
|
66635
66637
|
'Identifies the specific page of results to return. Specify `null` or omit this parameter to return the first page.',
|
|
66636
|
-
minLength: 1,
|
|
66637
66638
|
nullable: true,
|
|
66638
66639
|
type: 'string',
|
|
66639
66640
|
},
|
|
@@ -67031,7 +67032,6 @@ const openapi: OpenAPISpec = {
|
|
|
67031
67032
|
page_cursor: {
|
|
67032
67033
|
description:
|
|
67033
67034
|
'Identifies the specific page of results to return. Specify `null` or omit this parameter to return the first page.',
|
|
67034
|
-
minLength: 1,
|
|
67035
67035
|
nullable: true,
|
|
67036
67036
|
type: 'string',
|
|
67037
67037
|
},
|
|
@@ -86309,6 +86309,7 @@ const openapi: OpenAPISpec = {
|
|
|
86309
86309
|
schema: {
|
|
86310
86310
|
description:
|
|
86311
86311
|
'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`.',
|
|
86312
|
+
minLength: 1,
|
|
86312
86313
|
type: 'string',
|
|
86313
86314
|
},
|
|
86314
86315
|
},
|
|
@@ -86416,6 +86417,7 @@ const openapi: OpenAPISpec = {
|
|
|
86416
86417
|
search: {
|
|
86417
86418
|
description:
|
|
86418
86419
|
'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`.',
|
|
86420
|
+
minLength: 1,
|
|
86419
86421
|
type: 'string',
|
|
86420
86422
|
},
|
|
86421
86423
|
},
|
|
@@ -94865,7 +94865,7 @@ export type Routes = {
|
|
|
94865
94865
|
/** Filter timeline entries by context type. 'request' for API requests, 'job' for background jobs. */
|
|
94866
94866
|
context_type?: ('request' | 'job') | undefined
|
|
94867
94867
|
/** Identifies the specific page of results to return. Specify `null` or omit this parameter to return the first page. */
|
|
94868
|
-
page_cursor?: (string |
|
|
94868
|
+
page_cursor?: (string | undefined) | null
|
|
94869
94869
|
}
|
|
94870
94870
|
formData: {}
|
|
94871
94871
|
jsonResponse: {
|