@seamapi/types 1.1025.0 → 1.1027.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/lib/seam/connect/models/devices/unmanaged-device.d.ts +3 -1
- package/lib/seam/connect/models/devices/unmanaged-device.js +1 -0
- package/lib/seam/connect/models/devices/unmanaged-device.js.map +1 -1
- package/lib/seam/connect/openapi.js +9 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +6 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/unmanaged-device.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +10 -0
- package/src/lib/seam/connect/route-types.ts +6 -0
|
@@ -46538,6 +46538,8 @@ export type Routes = {
|
|
|
46538
46538
|
custom_metadata: {
|
|
46539
46539
|
[x: string]: string | boolean;
|
|
46540
46540
|
};
|
|
46541
|
+
/** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
46542
|
+
display_name: string;
|
|
46541
46543
|
/** Indicates that Seam does not manage the device. */
|
|
46542
46544
|
is_managed: false;
|
|
46543
46545
|
/** properties of the device. */
|
|
@@ -47058,6 +47060,8 @@ export type Routes = {
|
|
|
47058
47060
|
custom_metadata: {
|
|
47059
47061
|
[x: string]: string | boolean;
|
|
47060
47062
|
};
|
|
47063
|
+
/** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
47064
|
+
display_name: string;
|
|
47061
47065
|
/** Indicates that Seam does not manage the device. */
|
|
47062
47066
|
is_managed: false;
|
|
47063
47067
|
/** properties of the device. */
|
|
@@ -120818,6 +120822,8 @@ export type Routes = {
|
|
|
120818
120822
|
custom_metadata: {
|
|
120819
120823
|
[x: string]: string | boolean;
|
|
120820
120824
|
};
|
|
120825
|
+
/** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
120826
|
+
display_name: string;
|
|
120821
120827
|
/** Indicates that Seam does not manage the device. */
|
|
120822
120828
|
is_managed: false;
|
|
120823
120829
|
/** properties of the device. */
|
package/package.json
CHANGED
|
@@ -34719,6 +34719,11 @@ const openapi: OpenAPISpec = {
|
|
|
34719
34719
|
},
|
|
34720
34720
|
],
|
|
34721
34721
|
},
|
|
34722
|
+
display_name: {
|
|
34723
|
+
description:
|
|
34724
|
+
'Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices.',
|
|
34725
|
+
type: 'string',
|
|
34726
|
+
},
|
|
34722
34727
|
errors: {
|
|
34723
34728
|
description:
|
|
34724
34729
|
'Array of errors associated with the device. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it.',
|
|
@@ -36227,6 +36232,7 @@ const openapi: OpenAPISpec = {
|
|
|
36227
36232
|
'warnings',
|
|
36228
36233
|
'created_at',
|
|
36229
36234
|
'custom_metadata',
|
|
36235
|
+
'display_name',
|
|
36230
36236
|
'is_managed',
|
|
36231
36237
|
'properties',
|
|
36232
36238
|
],
|
|
@@ -50588,6 +50594,7 @@ const openapi: OpenAPISpec = {
|
|
|
50588
50594
|
schema: {
|
|
50589
50595
|
description:
|
|
50590
50596
|
'ID of the client session that you want to retrieve.',
|
|
50597
|
+
minLength: 1,
|
|
50591
50598
|
type: 'string',
|
|
50592
50599
|
},
|
|
50593
50600
|
},
|
|
@@ -50678,6 +50685,7 @@ const openapi: OpenAPISpec = {
|
|
|
50678
50685
|
client_session_id: {
|
|
50679
50686
|
description:
|
|
50680
50687
|
'ID of the client session that you want to retrieve.',
|
|
50688
|
+
minLength: 1,
|
|
50681
50689
|
type: 'string',
|
|
50682
50690
|
},
|
|
50683
50691
|
connect_webview_id: {
|
|
@@ -86307,6 +86315,7 @@ const openapi: OpenAPISpec = {
|
|
|
86307
86315
|
schema: {
|
|
86308
86316
|
description:
|
|
86309
86317
|
'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`.',
|
|
86318
|
+
minLength: 1,
|
|
86310
86319
|
type: 'string',
|
|
86311
86320
|
},
|
|
86312
86321
|
},
|
|
@@ -86414,6 +86423,7 @@ const openapi: OpenAPISpec = {
|
|
|
86414
86423
|
search: {
|
|
86415
86424
|
description:
|
|
86416
86425
|
'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`.',
|
|
86426
|
+
minLength: 1,
|
|
86417
86427
|
type: 'string',
|
|
86418
86428
|
},
|
|
86419
86429
|
},
|
|
@@ -56339,6 +56339,8 @@ export type Routes = {
|
|
|
56339
56339
|
custom_metadata: {
|
|
56340
56340
|
[x: string]: string | boolean
|
|
56341
56341
|
}
|
|
56342
|
+
/** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
56343
|
+
display_name: string
|
|
56342
56344
|
/** Indicates that Seam does not manage the device. */
|
|
56343
56345
|
is_managed: false
|
|
56344
56346
|
/** properties of the device. */
|
|
@@ -57160,6 +57162,8 @@ export type Routes = {
|
|
|
57160
57162
|
custom_metadata: {
|
|
57161
57163
|
[x: string]: string | boolean
|
|
57162
57164
|
}
|
|
57165
|
+
/** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
57166
|
+
display_name: string
|
|
57163
57167
|
/** Indicates that Seam does not manage the device. */
|
|
57164
57168
|
is_managed: false
|
|
57165
57169
|
/** properties of the device. */
|
|
@@ -144947,6 +144951,8 @@ export type Routes = {
|
|
|
144947
144951
|
custom_metadata: {
|
|
144948
144952
|
[x: string]: string | boolean
|
|
144949
144953
|
}
|
|
144954
|
+
/** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
144955
|
+
display_name: string
|
|
144950
144956
|
/** Indicates that Seam does not manage the device. */
|
|
144951
144957
|
is_managed: false
|
|
144952
144958
|
/** properties of the device. */
|