@seamapi/types 1.349.0 → 1.349.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 +29 -25
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +23 -23
- package/lib/seam/connect/models/bridges/bridge_client_session.d.ts +12 -12
- package/lib/seam/connect/models/bridges/bridge_client_session.js +4 -4
- package/lib/seam/connect/models/bridges/bridge_client_session.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +12 -12
- package/lib/seam/connect/openapi.js +23 -19
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +11 -11
- package/package.json +1 -1
- package/src/lib/seam/connect/models/bridges/bridge_client_session.ts +4 -4
- package/src/lib/seam/connect/openapi.ts +23 -19
- package/src/lib/seam/connect/route-types.ts +11 -11
|
@@ -26056,9 +26056,9 @@ export interface Routes {
|
|
|
26056
26056
|
method: 'POST';
|
|
26057
26057
|
queryParams: {};
|
|
26058
26058
|
jsonBody: {
|
|
26059
|
-
|
|
26060
|
-
|
|
26061
|
-
|
|
26059
|
+
bridge_client_name: string;
|
|
26060
|
+
bridge_client_time_zone: string;
|
|
26061
|
+
bridge_client_machine_identifier_key: string;
|
|
26062
26062
|
};
|
|
26063
26063
|
commonParams: {};
|
|
26064
26064
|
formData: {};
|
|
@@ -26068,13 +26068,13 @@ export interface Routes {
|
|
|
26068
26068
|
created_at: string;
|
|
26069
26069
|
bridge_client_session_id: string;
|
|
26070
26070
|
bridge_client_session_token: string;
|
|
26071
|
-
bridge_client_name: string;
|
|
26072
|
-
bridge_client_time_zone: string;
|
|
26073
|
-
bridge_client_machine_identifier_key: string;
|
|
26074
|
-
bridge_client_tailscale_hostname: string;
|
|
26075
26071
|
pairing_code: string;
|
|
26076
26072
|
pairing_code_expires_at: string;
|
|
26073
|
+
tailscale_hostname: string;
|
|
26077
26074
|
tailscale_auth_key: string | null;
|
|
26075
|
+
bridge_client_name: string;
|
|
26076
|
+
bridge_client_time_zone: string;
|
|
26077
|
+
bridge_client_machine_identifier_key: string;
|
|
26078
26078
|
};
|
|
26079
26079
|
};
|
|
26080
26080
|
};
|
|
@@ -26091,13 +26091,13 @@ export interface Routes {
|
|
|
26091
26091
|
created_at: string;
|
|
26092
26092
|
bridge_client_session_id: string;
|
|
26093
26093
|
bridge_client_session_token: string;
|
|
26094
|
-
bridge_client_name: string;
|
|
26095
|
-
bridge_client_time_zone: string;
|
|
26096
|
-
bridge_client_machine_identifier_key: string;
|
|
26097
|
-
bridge_client_tailscale_hostname: string;
|
|
26098
26094
|
pairing_code: string;
|
|
26099
26095
|
pairing_code_expires_at: string;
|
|
26096
|
+
tailscale_hostname: string;
|
|
26100
26097
|
tailscale_auth_key: string | null;
|
|
26098
|
+
bridge_client_name: string;
|
|
26099
|
+
bridge_client_time_zone: string;
|
|
26100
|
+
bridge_client_machine_identifier_key: string;
|
|
26101
26101
|
};
|
|
26102
26102
|
};
|
|
26103
26103
|
};
|
package/package.json
CHANGED
|
@@ -4,13 +4,13 @@ export const bridge_client_session = z.object({
|
|
|
4
4
|
created_at: z.string().datetime(),
|
|
5
5
|
bridge_client_session_id: z.string().uuid(),
|
|
6
6
|
bridge_client_session_token: z.string(),
|
|
7
|
-
bridge_client_name: z.string(),
|
|
8
|
-
bridge_client_time_zone: z.string(),
|
|
9
|
-
bridge_client_machine_identifier_key: z.string(),
|
|
10
|
-
bridge_client_tailscale_hostname: z.string(),
|
|
11
7
|
pairing_code: z.string().length(6),
|
|
12
8
|
pairing_code_expires_at: z.string().datetime(),
|
|
9
|
+
tailscale_hostname: z.string(),
|
|
13
10
|
tailscale_auth_key: z.string().nullable(),
|
|
11
|
+
bridge_client_name: z.string(),
|
|
12
|
+
bridge_client_time_zone: z.string(),
|
|
13
|
+
bridge_client_machine_identifier_key: z.string(),
|
|
14
14
|
}).describe(`
|
|
15
15
|
---
|
|
16
16
|
route_path: /seam/bridge/v1/bridge_client_sessions
|
|
@@ -23439,11 +23439,15 @@ export default {
|
|
|
23439
23439
|
'application/json': {
|
|
23440
23440
|
schema: {
|
|
23441
23441
|
properties: {
|
|
23442
|
-
|
|
23443
|
-
|
|
23444
|
-
|
|
23442
|
+
bridge_client_machine_identifier_key: { type: 'string' },
|
|
23443
|
+
bridge_client_name: { type: 'string' },
|
|
23444
|
+
bridge_client_time_zone: { type: 'string' },
|
|
23445
23445
|
},
|
|
23446
|
-
required: [
|
|
23446
|
+
required: [
|
|
23447
|
+
'bridge_client_name',
|
|
23448
|
+
'bridge_client_time_zone',
|
|
23449
|
+
'bridge_client_machine_identifier_key',
|
|
23450
|
+
],
|
|
23447
23451
|
type: 'object',
|
|
23448
23452
|
},
|
|
23449
23453
|
},
|
|
@@ -23466,7 +23470,6 @@ export default {
|
|
|
23466
23470
|
type: 'string',
|
|
23467
23471
|
},
|
|
23468
23472
|
bridge_client_session_token: { type: 'string' },
|
|
23469
|
-
bridge_client_tailscale_hostname: { type: 'string' },
|
|
23470
23473
|
bridge_client_time_zone: { type: 'string' },
|
|
23471
23474
|
created_at: { format: 'date-time', type: 'string' },
|
|
23472
23475
|
pairing_code: {
|
|
@@ -23479,18 +23482,19 @@ export default {
|
|
|
23479
23482
|
type: 'string',
|
|
23480
23483
|
},
|
|
23481
23484
|
tailscale_auth_key: { nullable: true, type: 'string' },
|
|
23485
|
+
tailscale_hostname: { type: 'string' },
|
|
23482
23486
|
},
|
|
23483
23487
|
required: [
|
|
23484
23488
|
'created_at',
|
|
23485
23489
|
'bridge_client_session_id',
|
|
23486
23490
|
'bridge_client_session_token',
|
|
23487
|
-
'bridge_client_name',
|
|
23488
|
-
'bridge_client_time_zone',
|
|
23489
|
-
'bridge_client_machine_identifier_key',
|
|
23490
|
-
'bridge_client_tailscale_hostname',
|
|
23491
23491
|
'pairing_code',
|
|
23492
23492
|
'pairing_code_expires_at',
|
|
23493
|
+
'tailscale_hostname',
|
|
23493
23494
|
'tailscale_auth_key',
|
|
23495
|
+
'bridge_client_name',
|
|
23496
|
+
'bridge_client_time_zone',
|
|
23497
|
+
'bridge_client_machine_identifier_key',
|
|
23494
23498
|
],
|
|
23495
23499
|
type: 'object',
|
|
23496
23500
|
'x-route-path': '/seam/bridge/v1/bridge_client_sessions',
|
|
@@ -23544,7 +23548,6 @@ export default {
|
|
|
23544
23548
|
type: 'string',
|
|
23545
23549
|
},
|
|
23546
23550
|
bridge_client_session_token: { type: 'string' },
|
|
23547
|
-
bridge_client_tailscale_hostname: { type: 'string' },
|
|
23548
23551
|
bridge_client_time_zone: { type: 'string' },
|
|
23549
23552
|
created_at: { format: 'date-time', type: 'string' },
|
|
23550
23553
|
pairing_code: {
|
|
@@ -23557,18 +23560,19 @@ export default {
|
|
|
23557
23560
|
type: 'string',
|
|
23558
23561
|
},
|
|
23559
23562
|
tailscale_auth_key: { nullable: true, type: 'string' },
|
|
23563
|
+
tailscale_hostname: { type: 'string' },
|
|
23560
23564
|
},
|
|
23561
23565
|
required: [
|
|
23562
23566
|
'created_at',
|
|
23563
23567
|
'bridge_client_session_id',
|
|
23564
23568
|
'bridge_client_session_token',
|
|
23565
|
-
'bridge_client_name',
|
|
23566
|
-
'bridge_client_time_zone',
|
|
23567
|
-
'bridge_client_machine_identifier_key',
|
|
23568
|
-
'bridge_client_tailscale_hostname',
|
|
23569
23569
|
'pairing_code',
|
|
23570
23570
|
'pairing_code_expires_at',
|
|
23571
|
+
'tailscale_hostname',
|
|
23571
23572
|
'tailscale_auth_key',
|
|
23573
|
+
'bridge_client_name',
|
|
23574
|
+
'bridge_client_time_zone',
|
|
23575
|
+
'bridge_client_machine_identifier_key',
|
|
23572
23576
|
],
|
|
23573
23577
|
type: 'object',
|
|
23574
23578
|
'x-route-path': '/seam/bridge/v1/bridge_client_sessions',
|
|
@@ -23613,7 +23617,6 @@ export default {
|
|
|
23613
23617
|
type: 'string',
|
|
23614
23618
|
},
|
|
23615
23619
|
bridge_client_session_token: { type: 'string' },
|
|
23616
|
-
bridge_client_tailscale_hostname: { type: 'string' },
|
|
23617
23620
|
bridge_client_time_zone: { type: 'string' },
|
|
23618
23621
|
created_at: { format: 'date-time', type: 'string' },
|
|
23619
23622
|
pairing_code: {
|
|
@@ -23626,18 +23629,19 @@ export default {
|
|
|
23626
23629
|
type: 'string',
|
|
23627
23630
|
},
|
|
23628
23631
|
tailscale_auth_key: { nullable: true, type: 'string' },
|
|
23632
|
+
tailscale_hostname: { type: 'string' },
|
|
23629
23633
|
},
|
|
23630
23634
|
required: [
|
|
23631
23635
|
'created_at',
|
|
23632
23636
|
'bridge_client_session_id',
|
|
23633
23637
|
'bridge_client_session_token',
|
|
23634
|
-
'bridge_client_name',
|
|
23635
|
-
'bridge_client_time_zone',
|
|
23636
|
-
'bridge_client_machine_identifier_key',
|
|
23637
|
-
'bridge_client_tailscale_hostname',
|
|
23638
23638
|
'pairing_code',
|
|
23639
23639
|
'pairing_code_expires_at',
|
|
23640
|
+
'tailscale_hostname',
|
|
23640
23641
|
'tailscale_auth_key',
|
|
23642
|
+
'bridge_client_name',
|
|
23643
|
+
'bridge_client_time_zone',
|
|
23644
|
+
'bridge_client_machine_identifier_key',
|
|
23641
23645
|
],
|
|
23642
23646
|
type: 'object',
|
|
23643
23647
|
'x-route-path': '/seam/bridge/v1/bridge_client_sessions',
|
|
@@ -32388,9 +32388,9 @@ export interface Routes {
|
|
|
32388
32388
|
method: 'POST'
|
|
32389
32389
|
queryParams: {}
|
|
32390
32390
|
jsonBody: {
|
|
32391
|
-
|
|
32392
|
-
|
|
32393
|
-
|
|
32391
|
+
bridge_client_name: string
|
|
32392
|
+
bridge_client_time_zone: string
|
|
32393
|
+
bridge_client_machine_identifier_key: string
|
|
32394
32394
|
}
|
|
32395
32395
|
commonParams: {}
|
|
32396
32396
|
formData: {}
|
|
@@ -32400,13 +32400,13 @@ export interface Routes {
|
|
|
32400
32400
|
created_at: string
|
|
32401
32401
|
bridge_client_session_id: string
|
|
32402
32402
|
bridge_client_session_token: string
|
|
32403
|
-
bridge_client_name: string
|
|
32404
|
-
bridge_client_time_zone: string
|
|
32405
|
-
bridge_client_machine_identifier_key: string
|
|
32406
|
-
bridge_client_tailscale_hostname: string
|
|
32407
32403
|
pairing_code: string
|
|
32408
32404
|
pairing_code_expires_at: string
|
|
32405
|
+
tailscale_hostname: string
|
|
32409
32406
|
tailscale_auth_key: string | null
|
|
32407
|
+
bridge_client_name: string
|
|
32408
|
+
bridge_client_time_zone: string
|
|
32409
|
+
bridge_client_machine_identifier_key: string
|
|
32410
32410
|
}
|
|
32411
32411
|
}
|
|
32412
32412
|
}
|
|
@@ -32423,13 +32423,13 @@ export interface Routes {
|
|
|
32423
32423
|
created_at: string
|
|
32424
32424
|
bridge_client_session_id: string
|
|
32425
32425
|
bridge_client_session_token: string
|
|
32426
|
-
bridge_client_name: string
|
|
32427
|
-
bridge_client_time_zone: string
|
|
32428
|
-
bridge_client_machine_identifier_key: string
|
|
32429
|
-
bridge_client_tailscale_hostname: string
|
|
32430
32426
|
pairing_code: string
|
|
32431
32427
|
pairing_code_expires_at: string
|
|
32428
|
+
tailscale_hostname: string
|
|
32432
32429
|
tailscale_auth_key: string | null
|
|
32430
|
+
bridge_client_name: string
|
|
32431
|
+
bridge_client_time_zone: string
|
|
32432
|
+
bridge_client_machine_identifier_key: string
|
|
32433
32433
|
}
|
|
32434
32434
|
}
|
|
32435
32435
|
}
|