@seamapi/types 1.153.2 → 1.154.1
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 +10 -270
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +26 -425
- package/lib/seam/connect/models/acs/user.d.ts +3 -0
- package/lib/seam/connect/models/acs/user.js +1 -0
- package/lib/seam/connect/models/acs/user.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +21 -339
- package/lib/seam/connect/openapi.js +5 -265
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +5 -86
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/user.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +5 -265
- package/src/lib/seam/connect/route-types.ts +5 -86
|
@@ -730,6 +730,7 @@ export interface Routes {
|
|
|
730
730
|
ends_at: string;
|
|
731
731
|
} | undefined;
|
|
732
732
|
user_identity_id?: string | undefined;
|
|
733
|
+
user_identity_full_name?: (string | null) | undefined;
|
|
733
734
|
user_identity_email_address?: (string | null) | undefined;
|
|
734
735
|
user_identity_phone_number?: (string | null) | undefined;
|
|
735
736
|
full_name?: string | undefined;
|
|
@@ -1332,6 +1333,7 @@ export interface Routes {
|
|
|
1332
1333
|
ends_at: string;
|
|
1333
1334
|
} | undefined;
|
|
1334
1335
|
user_identity_id?: string | undefined;
|
|
1336
|
+
user_identity_full_name?: (string | null) | undefined;
|
|
1335
1337
|
user_identity_email_address?: (string | null) | undefined;
|
|
1336
1338
|
user_identity_phone_number?: (string | null) | undefined;
|
|
1337
1339
|
full_name?: string | undefined;
|
|
@@ -1382,6 +1384,7 @@ export interface Routes {
|
|
|
1382
1384
|
ends_at: string;
|
|
1383
1385
|
} | undefined;
|
|
1384
1386
|
user_identity_id?: string | undefined;
|
|
1387
|
+
user_identity_full_name?: (string | null) | undefined;
|
|
1385
1388
|
user_identity_email_address?: (string | null) | undefined;
|
|
1386
1389
|
user_identity_phone_number?: (string | null) | undefined;
|
|
1387
1390
|
full_name?: string | undefined;
|
|
@@ -1424,6 +1427,7 @@ export interface Routes {
|
|
|
1424
1427
|
ends_at: string;
|
|
1425
1428
|
} | undefined;
|
|
1426
1429
|
user_identity_id?: string | undefined;
|
|
1430
|
+
user_identity_full_name?: (string | null) | undefined;
|
|
1427
1431
|
user_identity_email_address?: (string | null) | undefined;
|
|
1428
1432
|
user_identity_phone_number?: (string | null) | undefined;
|
|
1429
1433
|
full_name?: string | undefined;
|
|
@@ -1911,18 +1915,6 @@ export interface Routes {
|
|
|
1911
1915
|
}>;
|
|
1912
1916
|
};
|
|
1913
1917
|
};
|
|
1914
|
-
'/connect_webviews/view': {
|
|
1915
|
-
route: '/connect_webviews/view';
|
|
1916
|
-
method: 'GET';
|
|
1917
|
-
queryParams: {
|
|
1918
|
-
connect_webview_id: string;
|
|
1919
|
-
auth_token: string;
|
|
1920
|
-
};
|
|
1921
|
-
jsonBody: {};
|
|
1922
|
-
commonParams: {};
|
|
1923
|
-
formData: {};
|
|
1924
|
-
jsonResponse: {};
|
|
1925
|
-
};
|
|
1926
1918
|
'/connected_accounts/delete': {
|
|
1927
1919
|
route: '/connected_accounts/delete';
|
|
1928
1920
|
method: 'DELETE' | 'POST';
|
|
@@ -3406,80 +3398,6 @@ export interface Routes {
|
|
|
3406
3398
|
}>;
|
|
3407
3399
|
};
|
|
3408
3400
|
};
|
|
3409
|
-
'/health': {
|
|
3410
|
-
route: '/health';
|
|
3411
|
-
method: 'GET' | 'POST';
|
|
3412
|
-
queryParams: {};
|
|
3413
|
-
jsonBody: {};
|
|
3414
|
-
commonParams: {};
|
|
3415
|
-
formData: {};
|
|
3416
|
-
jsonResponse: {
|
|
3417
|
-
ok: boolean;
|
|
3418
|
-
msg: 'I\u2019m one with the Force. The Force is with me.';
|
|
3419
|
-
last_service_evaluation_at?: string | undefined;
|
|
3420
|
-
service_health_statuses: Array<{
|
|
3421
|
-
service: string;
|
|
3422
|
-
status: 'healthy' | 'degraded' | 'down';
|
|
3423
|
-
description: string;
|
|
3424
|
-
}>;
|
|
3425
|
-
};
|
|
3426
|
-
};
|
|
3427
|
-
'/health/get_health': {
|
|
3428
|
-
route: '/health/get_health';
|
|
3429
|
-
method: 'GET' | 'POST';
|
|
3430
|
-
queryParams: {};
|
|
3431
|
-
jsonBody: {};
|
|
3432
|
-
commonParams: {};
|
|
3433
|
-
formData: {};
|
|
3434
|
-
jsonResponse: {
|
|
3435
|
-
ok: boolean;
|
|
3436
|
-
msg: 'I\u2019m one with the Force. The Force is with me.';
|
|
3437
|
-
last_service_evaluation_at?: string | undefined;
|
|
3438
|
-
service_health_statuses: Array<{
|
|
3439
|
-
service: string;
|
|
3440
|
-
status: 'healthy' | 'degraded' | 'down';
|
|
3441
|
-
description: string;
|
|
3442
|
-
}>;
|
|
3443
|
-
};
|
|
3444
|
-
};
|
|
3445
|
-
'/health/get_service_health': {
|
|
3446
|
-
route: '/health/get_service_health';
|
|
3447
|
-
method: 'GET' | 'POST';
|
|
3448
|
-
queryParams: {};
|
|
3449
|
-
jsonBody: {};
|
|
3450
|
-
commonParams: {
|
|
3451
|
-
service: string;
|
|
3452
|
-
};
|
|
3453
|
-
formData: {};
|
|
3454
|
-
jsonResponse: {
|
|
3455
|
-
ok: true;
|
|
3456
|
-
last_service_evaluation_at: string;
|
|
3457
|
-
service_health: {
|
|
3458
|
-
service: string;
|
|
3459
|
-
status: 'healthy' | 'degraded' | 'down';
|
|
3460
|
-
description: string;
|
|
3461
|
-
};
|
|
3462
|
-
};
|
|
3463
|
-
};
|
|
3464
|
-
'/health/service/[service_name]': {
|
|
3465
|
-
route: '/health/service/[service_name]';
|
|
3466
|
-
method: 'GET' | 'POST';
|
|
3467
|
-
queryParams: {};
|
|
3468
|
-
jsonBody: {};
|
|
3469
|
-
commonParams: {
|
|
3470
|
-
service_name: string;
|
|
3471
|
-
};
|
|
3472
|
-
formData: {};
|
|
3473
|
-
jsonResponse: {
|
|
3474
|
-
ok: true;
|
|
3475
|
-
last_service_evaluation_at: string;
|
|
3476
|
-
service_health: {
|
|
3477
|
-
service: string;
|
|
3478
|
-
status: 'healthy' | 'degraded' | 'down';
|
|
3479
|
-
description: string;
|
|
3480
|
-
};
|
|
3481
|
-
};
|
|
3482
|
-
};
|
|
3483
3401
|
'/locks/get': {
|
|
3484
3402
|
route: '/locks/get';
|
|
3485
3403
|
method: 'GET' | 'POST';
|
|
@@ -8682,6 +8600,7 @@ export interface Routes {
|
|
|
8682
8600
|
ends_at: string;
|
|
8683
8601
|
} | undefined;
|
|
8684
8602
|
user_identity_id?: string | undefined;
|
|
8603
|
+
user_identity_full_name?: (string | null) | undefined;
|
|
8685
8604
|
user_identity_email_address?: (string | null) | undefined;
|
|
8686
8605
|
user_identity_phone_number?: (string | null) | undefined;
|
|
8687
8606
|
full_name?: string | undefined;
|
package/package.json
CHANGED
|
@@ -37,6 +37,7 @@ export const acs_user = z
|
|
|
37
37
|
is_suspended: z.boolean(),
|
|
38
38
|
access_schedule: schedule.optional(),
|
|
39
39
|
user_identity_id: z.string().optional(),
|
|
40
|
+
user_identity_full_name: z.string().nullable().optional(),
|
|
40
41
|
user_identity_email_address: z.string().nullable().optional(),
|
|
41
42
|
user_identity_phone_number: z.string().nullable().optional(),
|
|
42
43
|
})
|
|
@@ -461,6 +461,7 @@ export default {
|
|
|
461
461
|
is_suspended: { type: 'boolean' },
|
|
462
462
|
phone_number: { nullable: true, type: 'string' },
|
|
463
463
|
user_identity_email_address: { nullable: true, type: 'string' },
|
|
464
|
+
user_identity_full_name: { nullable: true, type: 'string' },
|
|
464
465
|
user_identity_id: { type: 'string' },
|
|
465
466
|
user_identity_phone_number: { nullable: true, type: 'string' },
|
|
466
467
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
@@ -2989,7 +2990,6 @@ export default {
|
|
|
2989
2990
|
tags: ['/access_codes'],
|
|
2990
2991
|
'x-fern-sdk-group-name': ['access_codes'],
|
|
2991
2992
|
'x-fern-sdk-method-name': 'delete',
|
|
2992
|
-
'x-fern-sdk-return-value': 'action_attempt',
|
|
2993
2993
|
},
|
|
2994
2994
|
},
|
|
2995
2995
|
'/access_codes/generate_code': {
|
|
@@ -3392,7 +3392,6 @@ export default {
|
|
|
3392
3392
|
tags: ['/access_codes'],
|
|
3393
3393
|
'x-fern-sdk-group-name': ['access_codes', 'unmanaged'],
|
|
3394
3394
|
'x-fern-sdk-method-name': 'delete',
|
|
3395
|
-
'x-fern-sdk-return-value': 'action_attempt',
|
|
3396
3395
|
},
|
|
3397
3396
|
},
|
|
3398
3397
|
'/access_codes/unmanaged/get': {
|
|
@@ -3744,7 +3743,6 @@ export default {
|
|
|
3744
3743
|
tags: ['/access_codes'],
|
|
3745
3744
|
'x-fern-sdk-group-name': ['access_codes'],
|
|
3746
3745
|
'x-fern-sdk-method-name': 'update',
|
|
3747
|
-
'x-fern-sdk-return-value': 'action_attempt',
|
|
3748
3746
|
},
|
|
3749
3747
|
put: {
|
|
3750
3748
|
operationId: 'accessCodesUpdatePut',
|
|
@@ -6608,9 +6606,10 @@ export default {
|
|
|
6608
6606
|
401: { description: 'Unauthorized' },
|
|
6609
6607
|
},
|
|
6610
6608
|
security: [
|
|
6611
|
-
{
|
|
6612
|
-
{
|
|
6613
|
-
{
|
|
6609
|
+
{ client_session: [] },
|
|
6610
|
+
{ pat_with_workspace: [] },
|
|
6611
|
+
{ console_session: [] },
|
|
6612
|
+
{ api_key: [] },
|
|
6614
6613
|
],
|
|
6615
6614
|
summary: '/connect_webviews/list',
|
|
6616
6615
|
tags: ['/connect_webviews'],
|
|
@@ -6619,34 +6618,6 @@ export default {
|
|
|
6619
6618
|
'x-fern-sdk-return-value': 'connect_webviews',
|
|
6620
6619
|
},
|
|
6621
6620
|
},
|
|
6622
|
-
'/connect_webviews/view': {
|
|
6623
|
-
get: {
|
|
6624
|
-
operationId: 'connectWebviewsViewGet',
|
|
6625
|
-
parameters: [
|
|
6626
|
-
{
|
|
6627
|
-
in: 'query',
|
|
6628
|
-
name: 'connect_webview_id',
|
|
6629
|
-
required: true,
|
|
6630
|
-
schema: { format: 'uuid', type: 'string' },
|
|
6631
|
-
},
|
|
6632
|
-
{
|
|
6633
|
-
in: 'query',
|
|
6634
|
-
name: 'auth_token',
|
|
6635
|
-
required: true,
|
|
6636
|
-
schema: { type: 'string' },
|
|
6637
|
-
},
|
|
6638
|
-
],
|
|
6639
|
-
responses: {
|
|
6640
|
-
200: { description: 'OK' },
|
|
6641
|
-
400: { description: 'Bad Request' },
|
|
6642
|
-
401: { description: 'Unauthorized' },
|
|
6643
|
-
},
|
|
6644
|
-
summary: '/connect_webviews/view',
|
|
6645
|
-
tags: ['/connect_webviews'],
|
|
6646
|
-
'x-fern-sdk-group-name': ['connect_webviews'],
|
|
6647
|
-
'x-fern-sdk-method-name': 'view',
|
|
6648
|
-
},
|
|
6649
|
-
},
|
|
6650
6621
|
'/connected_accounts/delete': {
|
|
6651
6622
|
post: {
|
|
6652
6623
|
operationId: 'connectedAccountsDeletePost',
|
|
@@ -8023,235 +7994,6 @@ export default {
|
|
|
8023
7994
|
'x-fern-sdk-return-value': 'events',
|
|
8024
7995
|
},
|
|
8025
7996
|
},
|
|
8026
|
-
'/health': {
|
|
8027
|
-
get: {
|
|
8028
|
-
operationId: 'healthGet',
|
|
8029
|
-
responses: {
|
|
8030
|
-
200: {
|
|
8031
|
-
content: {
|
|
8032
|
-
'application/json': {
|
|
8033
|
-
schema: {
|
|
8034
|
-
properties: {
|
|
8035
|
-
last_service_evaluation_at: { type: 'string' },
|
|
8036
|
-
msg: {
|
|
8037
|
-
enum: ['I’m one with the Force. The Force is with me.'],
|
|
8038
|
-
type: 'string',
|
|
8039
|
-
},
|
|
8040
|
-
ok: { type: 'boolean' },
|
|
8041
|
-
service_health_statuses: {
|
|
8042
|
-
items: { $ref: '#/components/schemas/service_health' },
|
|
8043
|
-
type: 'array',
|
|
8044
|
-
},
|
|
8045
|
-
},
|
|
8046
|
-
required: ['ok', 'msg', 'service_health_statuses'],
|
|
8047
|
-
type: 'object',
|
|
8048
|
-
},
|
|
8049
|
-
},
|
|
8050
|
-
},
|
|
8051
|
-
description: 'OK',
|
|
8052
|
-
},
|
|
8053
|
-
400: { description: 'Bad Request' },
|
|
8054
|
-
401: { description: 'Unauthorized' },
|
|
8055
|
-
},
|
|
8056
|
-
summary: '/health',
|
|
8057
|
-
tags: ['/health'],
|
|
8058
|
-
'x-fern-ignore': true,
|
|
8059
|
-
},
|
|
8060
|
-
post: {
|
|
8061
|
-
operationId: 'healthPost',
|
|
8062
|
-
responses: {
|
|
8063
|
-
200: {
|
|
8064
|
-
content: {
|
|
8065
|
-
'application/json': {
|
|
8066
|
-
schema: {
|
|
8067
|
-
properties: {
|
|
8068
|
-
last_service_evaluation_at: { type: 'string' },
|
|
8069
|
-
msg: {
|
|
8070
|
-
enum: ['I’m one with the Force. The Force is with me.'],
|
|
8071
|
-
type: 'string',
|
|
8072
|
-
},
|
|
8073
|
-
ok: { type: 'boolean' },
|
|
8074
|
-
service_health_statuses: {
|
|
8075
|
-
items: { $ref: '#/components/schemas/service_health' },
|
|
8076
|
-
type: 'array',
|
|
8077
|
-
},
|
|
8078
|
-
},
|
|
8079
|
-
required: ['ok', 'msg', 'service_health_statuses'],
|
|
8080
|
-
type: 'object',
|
|
8081
|
-
},
|
|
8082
|
-
},
|
|
8083
|
-
},
|
|
8084
|
-
description: 'OK',
|
|
8085
|
-
},
|
|
8086
|
-
400: { description: 'Bad Request' },
|
|
8087
|
-
401: { description: 'Unauthorized' },
|
|
8088
|
-
},
|
|
8089
|
-
summary: '/health',
|
|
8090
|
-
tags: ['/health'],
|
|
8091
|
-
'x-fern-ignore': true,
|
|
8092
|
-
},
|
|
8093
|
-
},
|
|
8094
|
-
'/health/get_health': {
|
|
8095
|
-
get: {
|
|
8096
|
-
operationId: 'healthGetHealthGet',
|
|
8097
|
-
responses: {
|
|
8098
|
-
200: {
|
|
8099
|
-
content: {
|
|
8100
|
-
'application/json': {
|
|
8101
|
-
schema: {
|
|
8102
|
-
properties: {
|
|
8103
|
-
last_service_evaluation_at: { type: 'string' },
|
|
8104
|
-
msg: {
|
|
8105
|
-
enum: ['I’m one with the Force. The Force is with me.'],
|
|
8106
|
-
type: 'string',
|
|
8107
|
-
},
|
|
8108
|
-
ok: { type: 'boolean' },
|
|
8109
|
-
service_health_statuses: {
|
|
8110
|
-
items: { $ref: '#/components/schemas/service_health' },
|
|
8111
|
-
type: 'array',
|
|
8112
|
-
},
|
|
8113
|
-
},
|
|
8114
|
-
required: ['ok', 'msg', 'service_health_statuses'],
|
|
8115
|
-
type: 'object',
|
|
8116
|
-
},
|
|
8117
|
-
},
|
|
8118
|
-
},
|
|
8119
|
-
description: 'OK',
|
|
8120
|
-
},
|
|
8121
|
-
400: { description: 'Bad Request' },
|
|
8122
|
-
401: { description: 'Unauthorized' },
|
|
8123
|
-
},
|
|
8124
|
-
summary: '/health/get_health',
|
|
8125
|
-
tags: ['/health'],
|
|
8126
|
-
'x-fern-ignore': true,
|
|
8127
|
-
},
|
|
8128
|
-
post: {
|
|
8129
|
-
operationId: 'healthGetHealthPost',
|
|
8130
|
-
responses: {
|
|
8131
|
-
200: {
|
|
8132
|
-
content: {
|
|
8133
|
-
'application/json': {
|
|
8134
|
-
schema: {
|
|
8135
|
-
properties: {
|
|
8136
|
-
last_service_evaluation_at: { type: 'string' },
|
|
8137
|
-
msg: {
|
|
8138
|
-
enum: ['I’m one with the Force. The Force is with me.'],
|
|
8139
|
-
type: 'string',
|
|
8140
|
-
},
|
|
8141
|
-
ok: { type: 'boolean' },
|
|
8142
|
-
service_health_statuses: {
|
|
8143
|
-
items: { $ref: '#/components/schemas/service_health' },
|
|
8144
|
-
type: 'array',
|
|
8145
|
-
},
|
|
8146
|
-
},
|
|
8147
|
-
required: ['ok', 'msg', 'service_health_statuses'],
|
|
8148
|
-
type: 'object',
|
|
8149
|
-
},
|
|
8150
|
-
},
|
|
8151
|
-
},
|
|
8152
|
-
description: 'OK',
|
|
8153
|
-
},
|
|
8154
|
-
400: { description: 'Bad Request' },
|
|
8155
|
-
401: { description: 'Unauthorized' },
|
|
8156
|
-
},
|
|
8157
|
-
summary: '/health/get_health',
|
|
8158
|
-
tags: ['/health'],
|
|
8159
|
-
'x-fern-sdk-group-name': ['health'],
|
|
8160
|
-
'x-fern-sdk-method-name': 'get_health',
|
|
8161
|
-
},
|
|
8162
|
-
},
|
|
8163
|
-
'/health/get_service_health': {
|
|
8164
|
-
post: {
|
|
8165
|
-
operationId: 'healthGetServiceHealthPost',
|
|
8166
|
-
requestBody: {
|
|
8167
|
-
content: {
|
|
8168
|
-
'application/json': {
|
|
8169
|
-
schema: {
|
|
8170
|
-
properties: { service: { type: 'string' } },
|
|
8171
|
-
required: ['service'],
|
|
8172
|
-
type: 'object',
|
|
8173
|
-
},
|
|
8174
|
-
},
|
|
8175
|
-
},
|
|
8176
|
-
},
|
|
8177
|
-
responses: {
|
|
8178
|
-
200: {
|
|
8179
|
-
content: {
|
|
8180
|
-
'application/json': {
|
|
8181
|
-
schema: {
|
|
8182
|
-
properties: {
|
|
8183
|
-
last_service_evaluation_at: { type: 'string' },
|
|
8184
|
-
ok: { type: 'boolean' },
|
|
8185
|
-
service_health: {
|
|
8186
|
-
$ref: '#/components/schemas/service_health',
|
|
8187
|
-
},
|
|
8188
|
-
},
|
|
8189
|
-
required: [
|
|
8190
|
-
'ok',
|
|
8191
|
-
'last_service_evaluation_at',
|
|
8192
|
-
'service_health',
|
|
8193
|
-
],
|
|
8194
|
-
type: 'object',
|
|
8195
|
-
},
|
|
8196
|
-
},
|
|
8197
|
-
},
|
|
8198
|
-
description: 'OK',
|
|
8199
|
-
},
|
|
8200
|
-
400: { description: 'Bad Request' },
|
|
8201
|
-
401: { description: 'Unauthorized' },
|
|
8202
|
-
},
|
|
8203
|
-
summary: '/health/get_service_health',
|
|
8204
|
-
tags: ['/health'],
|
|
8205
|
-
'x-fern-sdk-group-name': ['health'],
|
|
8206
|
-
'x-fern-sdk-method-name': 'get_service_health',
|
|
8207
|
-
},
|
|
8208
|
-
},
|
|
8209
|
-
'/health/service/[service_name]': {
|
|
8210
|
-
post: {
|
|
8211
|
-
operationId: 'healthServiceByServiceNamePost',
|
|
8212
|
-
requestBody: {
|
|
8213
|
-
content: {
|
|
8214
|
-
'application/json': {
|
|
8215
|
-
schema: {
|
|
8216
|
-
properties: { service_name: { type: 'string' } },
|
|
8217
|
-
required: ['service_name'],
|
|
8218
|
-
type: 'object',
|
|
8219
|
-
},
|
|
8220
|
-
},
|
|
8221
|
-
},
|
|
8222
|
-
},
|
|
8223
|
-
responses: {
|
|
8224
|
-
200: {
|
|
8225
|
-
content: {
|
|
8226
|
-
'application/json': {
|
|
8227
|
-
schema: {
|
|
8228
|
-
properties: {
|
|
8229
|
-
last_service_evaluation_at: { type: 'string' },
|
|
8230
|
-
ok: { type: 'boolean' },
|
|
8231
|
-
service_health: {
|
|
8232
|
-
$ref: '#/components/schemas/service_health',
|
|
8233
|
-
},
|
|
8234
|
-
},
|
|
8235
|
-
required: [
|
|
8236
|
-
'ok',
|
|
8237
|
-
'last_service_evaluation_at',
|
|
8238
|
-
'service_health',
|
|
8239
|
-
],
|
|
8240
|
-
type: 'object',
|
|
8241
|
-
},
|
|
8242
|
-
},
|
|
8243
|
-
},
|
|
8244
|
-
description: 'OK',
|
|
8245
|
-
},
|
|
8246
|
-
400: { description: 'Bad Request' },
|
|
8247
|
-
401: { description: 'Unauthorized' },
|
|
8248
|
-
},
|
|
8249
|
-
summary: '/health/service/[service_name]',
|
|
8250
|
-
tags: ['/health'],
|
|
8251
|
-
'x-fern-sdk-group-name': ['health', 'service'],
|
|
8252
|
-
'x-fern-sdk-method-name': 'by_service_name',
|
|
8253
|
-
},
|
|
8254
|
-
},
|
|
8255
7997
|
'/locks/get': {
|
|
8256
7998
|
post: {
|
|
8257
7999
|
operationId: 'locksGetPost',
|
|
@@ -8842,7 +8584,6 @@ export default {
|
|
|
8842
8584
|
tags: ['/noise_sensors'],
|
|
8843
8585
|
'x-fern-sdk-group-name': ['noise_sensors', 'noise_thresholds'],
|
|
8844
8586
|
'x-fern-sdk-method-name': 'delete',
|
|
8845
|
-
'x-fern-sdk-return-value': 'action_attempt',
|
|
8846
8587
|
},
|
|
8847
8588
|
},
|
|
8848
8589
|
'/noise_sensors/noise_thresholds/get': {
|
|
@@ -9050,7 +8791,6 @@ export default {
|
|
|
9050
8791
|
tags: ['/noise_sensors'],
|
|
9051
8792
|
'x-fern-sdk-group-name': ['noise_sensors', 'noise_thresholds'],
|
|
9052
8793
|
'x-fern-sdk-method-name': 'update',
|
|
9053
|
-
'x-fern-sdk-return-value': 'action_attempt',
|
|
9054
8794
|
},
|
|
9055
8795
|
put: {
|
|
9056
8796
|
operationId: 'noiseSensorsNoiseThresholdsUpdatePut',
|
|
@@ -768,6 +768,7 @@ export interface Routes {
|
|
|
768
768
|
}
|
|
769
769
|
| undefined
|
|
770
770
|
user_identity_id?: string | undefined
|
|
771
|
+
user_identity_full_name?: (string | null) | undefined
|
|
771
772
|
user_identity_email_address?: (string | null) | undefined
|
|
772
773
|
user_identity_phone_number?: (string | null) | undefined
|
|
773
774
|
full_name?: string | undefined
|
|
@@ -1512,6 +1513,7 @@ export interface Routes {
|
|
|
1512
1513
|
}
|
|
1513
1514
|
| undefined
|
|
1514
1515
|
user_identity_id?: string | undefined
|
|
1516
|
+
user_identity_full_name?: (string | null) | undefined
|
|
1515
1517
|
user_identity_email_address?: (string | null) | undefined
|
|
1516
1518
|
user_identity_phone_number?: (string | null) | undefined
|
|
1517
1519
|
full_name?: string | undefined
|
|
@@ -1572,6 +1574,7 @@ export interface Routes {
|
|
|
1572
1574
|
}
|
|
1573
1575
|
| undefined
|
|
1574
1576
|
user_identity_id?: string | undefined
|
|
1577
|
+
user_identity_full_name?: (string | null) | undefined
|
|
1575
1578
|
user_identity_email_address?: (string | null) | undefined
|
|
1576
1579
|
user_identity_phone_number?: (string | null) | undefined
|
|
1577
1580
|
full_name?: string | undefined
|
|
@@ -1624,6 +1627,7 @@ export interface Routes {
|
|
|
1624
1627
|
}
|
|
1625
1628
|
| undefined
|
|
1626
1629
|
user_identity_id?: string | undefined
|
|
1630
|
+
user_identity_full_name?: (string | null) | undefined
|
|
1627
1631
|
user_identity_email_address?: (string | null) | undefined
|
|
1628
1632
|
user_identity_phone_number?: (string | null) | undefined
|
|
1629
1633
|
full_name?: string | undefined
|
|
@@ -2179,18 +2183,6 @@ export interface Routes {
|
|
|
2179
2183
|
}>
|
|
2180
2184
|
}
|
|
2181
2185
|
}
|
|
2182
|
-
'/connect_webviews/view': {
|
|
2183
|
-
route: '/connect_webviews/view'
|
|
2184
|
-
method: 'GET'
|
|
2185
|
-
queryParams: {
|
|
2186
|
-
connect_webview_id: string
|
|
2187
|
-
auth_token: string
|
|
2188
|
-
}
|
|
2189
|
-
jsonBody: {}
|
|
2190
|
-
commonParams: {}
|
|
2191
|
-
formData: {}
|
|
2192
|
-
jsonResponse: {}
|
|
2193
|
-
}
|
|
2194
2186
|
'/connected_accounts/delete': {
|
|
2195
2187
|
route: '/connected_accounts/delete'
|
|
2196
2188
|
method: 'DELETE' | 'POST'
|
|
@@ -4633,80 +4625,6 @@ export interface Routes {
|
|
|
4633
4625
|
}>
|
|
4634
4626
|
}
|
|
4635
4627
|
}
|
|
4636
|
-
'/health': {
|
|
4637
|
-
route: '/health'
|
|
4638
|
-
method: 'GET' | 'POST'
|
|
4639
|
-
queryParams: {}
|
|
4640
|
-
jsonBody: {}
|
|
4641
|
-
commonParams: {}
|
|
4642
|
-
formData: {}
|
|
4643
|
-
jsonResponse: {
|
|
4644
|
-
ok: boolean
|
|
4645
|
-
msg: 'I\u2019m one with the Force. The Force is with me.'
|
|
4646
|
-
last_service_evaluation_at?: string | undefined
|
|
4647
|
-
service_health_statuses: Array<{
|
|
4648
|
-
service: string
|
|
4649
|
-
status: 'healthy' | 'degraded' | 'down'
|
|
4650
|
-
description: string
|
|
4651
|
-
}>
|
|
4652
|
-
}
|
|
4653
|
-
}
|
|
4654
|
-
'/health/get_health': {
|
|
4655
|
-
route: '/health/get_health'
|
|
4656
|
-
method: 'GET' | 'POST'
|
|
4657
|
-
queryParams: {}
|
|
4658
|
-
jsonBody: {}
|
|
4659
|
-
commonParams: {}
|
|
4660
|
-
formData: {}
|
|
4661
|
-
jsonResponse: {
|
|
4662
|
-
ok: boolean
|
|
4663
|
-
msg: 'I\u2019m one with the Force. The Force is with me.'
|
|
4664
|
-
last_service_evaluation_at?: string | undefined
|
|
4665
|
-
service_health_statuses: Array<{
|
|
4666
|
-
service: string
|
|
4667
|
-
status: 'healthy' | 'degraded' | 'down'
|
|
4668
|
-
description: string
|
|
4669
|
-
}>
|
|
4670
|
-
}
|
|
4671
|
-
}
|
|
4672
|
-
'/health/get_service_health': {
|
|
4673
|
-
route: '/health/get_service_health'
|
|
4674
|
-
method: 'GET' | 'POST'
|
|
4675
|
-
queryParams: {}
|
|
4676
|
-
jsonBody: {}
|
|
4677
|
-
commonParams: {
|
|
4678
|
-
service: string
|
|
4679
|
-
}
|
|
4680
|
-
formData: {}
|
|
4681
|
-
jsonResponse: {
|
|
4682
|
-
ok: true
|
|
4683
|
-
last_service_evaluation_at: string
|
|
4684
|
-
service_health: {
|
|
4685
|
-
service: string
|
|
4686
|
-
status: 'healthy' | 'degraded' | 'down'
|
|
4687
|
-
description: string
|
|
4688
|
-
}
|
|
4689
|
-
}
|
|
4690
|
-
}
|
|
4691
|
-
'/health/service/[service_name]': {
|
|
4692
|
-
route: '/health/service/[service_name]'
|
|
4693
|
-
method: 'GET' | 'POST'
|
|
4694
|
-
queryParams: {}
|
|
4695
|
-
jsonBody: {}
|
|
4696
|
-
commonParams: {
|
|
4697
|
-
service_name: string
|
|
4698
|
-
}
|
|
4699
|
-
formData: {}
|
|
4700
|
-
jsonResponse: {
|
|
4701
|
-
ok: true
|
|
4702
|
-
last_service_evaluation_at: string
|
|
4703
|
-
service_health: {
|
|
4704
|
-
service: string
|
|
4705
|
-
status: 'healthy' | 'degraded' | 'down'
|
|
4706
|
-
description: string
|
|
4707
|
-
}
|
|
4708
|
-
}
|
|
4709
|
-
}
|
|
4710
4628
|
'/locks/get': {
|
|
4711
4629
|
route: '/locks/get'
|
|
4712
4630
|
method: 'GET' | 'POST'
|
|
@@ -11997,6 +11915,7 @@ export interface Routes {
|
|
|
11997
11915
|
}
|
|
11998
11916
|
| undefined
|
|
11999
11917
|
user_identity_id?: string | undefined
|
|
11918
|
+
user_identity_full_name?: (string | null) | undefined
|
|
12000
11919
|
user_identity_email_address?: (string | null) | undefined
|
|
12001
11920
|
user_identity_phone_number?: (string | null) | undefined
|
|
12002
11921
|
full_name?: string | undefined
|