@seamapi/types 1.382.0 → 1.384.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 +315 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +450 -2
- package/lib/seam/connect/internal/schemas.d.ts +1 -1
- package/lib/seam/connect/internal/schemas.js +1 -1
- package/lib/seam/connect/internal/schemas.js.map +1 -1
- package/lib/seam/connect/model-types.d.ts +1 -1
- package/lib/seam/connect/models/bridges/bridge-client-session.d.ts +9 -0
- package/lib/seam/connect/models/bridges/bridge-client-session.js +3 -0
- package/lib/seam/connect/models/bridges/bridge-client-session.js.map +1 -1
- package/lib/seam/connect/models/index.d.ts +1 -0
- package/lib/seam/connect/models/index.js +1 -0
- package/lib/seam/connect/models/index.js.map +1 -1
- package/lib/seam/connect/models/instant-keys/index.d.ts +1 -0
- package/lib/seam/connect/models/instant-keys/index.js +2 -0
- package/lib/seam/connect/models/instant-keys/index.js.map +1 -0
- package/lib/seam/connect/models/instant-keys/instant-key.d.ts +27 -0
- package/lib/seam/connect/models/instant-keys/instant-key.js +16 -0
- package/lib/seam/connect/models/instant-keys/instant-key.js.map +1 -0
- package/lib/seam/connect/openapi.d.ts +332 -0
- package/lib/seam/connect/openapi.js +288 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +79 -0
- package/lib/seam/connect/schemas.d.ts +1 -1
- package/lib/seam/connect/schemas.js +1 -1
- package/lib/seam/connect/schemas.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +1 -0
- package/src/lib/seam/connect/model-types.ts +1 -0
- package/src/lib/seam/connect/models/bridges/bridge-client-session.ts +3 -0
- package/src/lib/seam/connect/models/index.ts +1 -0
- package/src/lib/seam/connect/models/instant-keys/index.ts +1 -0
- package/src/lib/seam/connect/models/instant-keys/instant-key.ts +18 -0
- package/src/lib/seam/connect/openapi.ts +303 -0
- package/src/lib/seam/connect/route-types.ts +82 -0
- package/src/lib/seam/connect/schemas.ts +1 -0
package/dist/connect.d.cts
CHANGED
|
@@ -9610,6 +9610,9 @@ declare const bridge_client_session: z.ZodObject<{
|
|
|
9610
9610
|
created_at: string;
|
|
9611
9611
|
error_code: "no_communication_from_bridge";
|
|
9612
9612
|
}>]>, "many">;
|
|
9613
|
+
telemetry_token: z.ZodNullable<z.ZodString>;
|
|
9614
|
+
telemetry_token_expires_at: z.ZodNullable<z.ZodString>;
|
|
9615
|
+
telemetry_url: z.ZodNullable<z.ZodString>;
|
|
9613
9616
|
}, "strip", z.ZodTypeAny, {
|
|
9614
9617
|
created_at: string;
|
|
9615
9618
|
errors: ({
|
|
@@ -9635,6 +9638,9 @@ declare const bridge_client_session: z.ZodObject<{
|
|
|
9635
9638
|
bridge_client_name: string;
|
|
9636
9639
|
bridge_client_time_zone: string;
|
|
9637
9640
|
bridge_client_machine_identifier_key: string;
|
|
9641
|
+
telemetry_token: string | null;
|
|
9642
|
+
telemetry_token_expires_at: string | null;
|
|
9643
|
+
telemetry_url: string | null;
|
|
9638
9644
|
}, {
|
|
9639
9645
|
created_at: string;
|
|
9640
9646
|
errors: ({
|
|
@@ -9660,6 +9666,9 @@ declare const bridge_client_session: z.ZodObject<{
|
|
|
9660
9666
|
bridge_client_name: string;
|
|
9661
9667
|
bridge_client_time_zone: string;
|
|
9662
9668
|
bridge_client_machine_identifier_key: string;
|
|
9669
|
+
telemetry_token: string | null;
|
|
9670
|
+
telemetry_token_expires_at: string | null;
|
|
9671
|
+
telemetry_url: string | null;
|
|
9663
9672
|
}>;
|
|
9664
9673
|
|
|
9665
9674
|
declare const client_session: z.ZodObject<{
|
|
@@ -19632,6 +19641,33 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<z.o
|
|
|
19632
19641
|
type SeamEvent = z.infer<typeof seam_event>;
|
|
19633
19642
|
type SeamEventType = SeamEvent['event_type'];
|
|
19634
19643
|
|
|
19644
|
+
declare const instant_key: z.ZodObject<{
|
|
19645
|
+
instant_key_id: z.ZodString;
|
|
19646
|
+
workspace_id: z.ZodString;
|
|
19647
|
+
created_at: z.ZodString;
|
|
19648
|
+
instant_key_url: z.ZodString;
|
|
19649
|
+
client_session_id: z.ZodString;
|
|
19650
|
+
user_identity_id: z.ZodString;
|
|
19651
|
+
expires_at: z.ZodString;
|
|
19652
|
+
}, "strip", z.ZodTypeAny, {
|
|
19653
|
+
created_at: string;
|
|
19654
|
+
workspace_id: string;
|
|
19655
|
+
user_identity_id: string;
|
|
19656
|
+
client_session_id: string;
|
|
19657
|
+
expires_at: string;
|
|
19658
|
+
instant_key_id: string;
|
|
19659
|
+
instant_key_url: string;
|
|
19660
|
+
}, {
|
|
19661
|
+
created_at: string;
|
|
19662
|
+
workspace_id: string;
|
|
19663
|
+
user_identity_id: string;
|
|
19664
|
+
client_session_id: string;
|
|
19665
|
+
expires_at: string;
|
|
19666
|
+
instant_key_id: string;
|
|
19667
|
+
instant_key_url: string;
|
|
19668
|
+
}>;
|
|
19669
|
+
type InstantKey = z.infer<typeof instant_key>;
|
|
19670
|
+
|
|
19635
19671
|
declare const noise_threshold: z.ZodObject<{
|
|
19636
19672
|
noise_threshold_id: z.ZodString;
|
|
19637
19673
|
device_id: z.ZodString;
|
|
@@ -19815,6 +19851,7 @@ declare const schemas_connected_account: typeof connected_account;
|
|
|
19815
19851
|
declare const schemas_custom_metadata: typeof custom_metadata;
|
|
19816
19852
|
declare const schemas_device: typeof device;
|
|
19817
19853
|
declare const schemas_device_provider: typeof device_provider;
|
|
19854
|
+
declare const schemas_instant_key: typeof instant_key;
|
|
19818
19855
|
declare const schemas_noise_threshold: typeof noise_threshold;
|
|
19819
19856
|
declare const schemas_pagination: typeof pagination;
|
|
19820
19857
|
declare const schemas_seam_event: typeof seam_event;
|
|
@@ -19828,7 +19865,7 @@ declare const schemas_user_identity: typeof user_identity;
|
|
|
19828
19865
|
declare const schemas_webhook: typeof webhook;
|
|
19829
19866
|
declare const schemas_workspace: typeof workspace;
|
|
19830
19867
|
declare namespace schemas {
|
|
19831
|
-
export { schemas_access_code as access_code, schemas_acs_access_group as acs_access_group, schemas_acs_credential as acs_credential, schemas_acs_encoder as acs_encoder, schemas_acs_entrance as acs_entrance, schemas_acs_system as acs_system, schemas_acs_user as acs_user, schemas_action_attempt as action_attempt, schemas_bridge as bridge, schemas_bridge_client_session as bridge_client_session, schemas_client_session as client_session, schemas_common_failed_action_attempt as common_failed_action_attempt, schemas_common_pending_action_attempt as common_pending_action_attempt, schemas_common_succeeded_action_attempt as common_succeeded_action_attempt, schemas_connect_webview as connect_webview, schemas_connected_account as connected_account, schemas_custom_metadata as custom_metadata, schemas_device as device, schemas_device_provider as device_provider, schemas_noise_threshold as noise_threshold, schemas_pagination as pagination, schemas_seam_event as seam_event, schemas_thermostat_schedule as thermostat_schedule, schemas_unmanaged_access_code as unmanaged_access_code, schemas_unmanaged_acs_access_group as unmanaged_acs_access_group, schemas_unmanaged_acs_credential as unmanaged_acs_credential, schemas_unmanaged_acs_user as unmanaged_acs_user, schemas_unmanaged_device as unmanaged_device, schemas_user_identity as user_identity, schemas_webhook as webhook, schemas_workspace as workspace };
|
|
19868
|
+
export { schemas_access_code as access_code, schemas_acs_access_group as acs_access_group, schemas_acs_credential as acs_credential, schemas_acs_encoder as acs_encoder, schemas_acs_entrance as acs_entrance, schemas_acs_system as acs_system, schemas_acs_user as acs_user, schemas_action_attempt as action_attempt, schemas_bridge as bridge, schemas_bridge_client_session as bridge_client_session, schemas_client_session as client_session, schemas_common_failed_action_attempt as common_failed_action_attempt, schemas_common_pending_action_attempt as common_pending_action_attempt, schemas_common_succeeded_action_attempt as common_succeeded_action_attempt, schemas_connect_webview as connect_webview, schemas_connected_account as connected_account, schemas_custom_metadata as custom_metadata, schemas_device as device, schemas_device_provider as device_provider, schemas_instant_key as instant_key, schemas_noise_threshold as noise_threshold, schemas_pagination as pagination, schemas_seam_event as seam_event, schemas_thermostat_schedule as thermostat_schedule, schemas_unmanaged_access_code as unmanaged_access_code, schemas_unmanaged_acs_access_group as unmanaged_acs_access_group, schemas_unmanaged_acs_credential as unmanaged_acs_credential, schemas_unmanaged_acs_user as unmanaged_acs_user, schemas_unmanaged_device as unmanaged_device, schemas_user_identity as user_identity, schemas_webhook as webhook, schemas_workspace as workspace };
|
|
19832
19869
|
}
|
|
19833
19870
|
|
|
19834
19871
|
declare const _default: {
|
|
@@ -27455,6 +27492,42 @@ declare const _default: {
|
|
|
27455
27492
|
})[];
|
|
27456
27493
|
'x-route-path': string;
|
|
27457
27494
|
};
|
|
27495
|
+
instant_key: {
|
|
27496
|
+
properties: {
|
|
27497
|
+
client_session_id: {
|
|
27498
|
+
format: string;
|
|
27499
|
+
type: string;
|
|
27500
|
+
};
|
|
27501
|
+
created_at: {
|
|
27502
|
+
format: string;
|
|
27503
|
+
type: string;
|
|
27504
|
+
};
|
|
27505
|
+
expires_at: {
|
|
27506
|
+
format: string;
|
|
27507
|
+
type: string;
|
|
27508
|
+
};
|
|
27509
|
+
instant_key_id: {
|
|
27510
|
+
format: string;
|
|
27511
|
+
type: string;
|
|
27512
|
+
};
|
|
27513
|
+
instant_key_url: {
|
|
27514
|
+
format: string;
|
|
27515
|
+
type: string;
|
|
27516
|
+
};
|
|
27517
|
+
user_identity_id: {
|
|
27518
|
+
format: string;
|
|
27519
|
+
type: string;
|
|
27520
|
+
};
|
|
27521
|
+
workspace_id: {
|
|
27522
|
+
format: string;
|
|
27523
|
+
type: string;
|
|
27524
|
+
};
|
|
27525
|
+
};
|
|
27526
|
+
required: string[];
|
|
27527
|
+
type: string;
|
|
27528
|
+
'x-route-path': string;
|
|
27529
|
+
'x-undocumented': string;
|
|
27530
|
+
};
|
|
27458
27531
|
network: {
|
|
27459
27532
|
properties: {
|
|
27460
27533
|
created_at: {
|
|
@@ -41051,6 +41124,19 @@ declare const _default: {
|
|
|
41051
41124
|
tailscale_hostname: {
|
|
41052
41125
|
type: string;
|
|
41053
41126
|
};
|
|
41127
|
+
telemetry_token: {
|
|
41128
|
+
nullable: boolean;
|
|
41129
|
+
type: string;
|
|
41130
|
+
};
|
|
41131
|
+
telemetry_token_expires_at: {
|
|
41132
|
+
format: string;
|
|
41133
|
+
nullable: boolean;
|
|
41134
|
+
type: string;
|
|
41135
|
+
};
|
|
41136
|
+
telemetry_url: {
|
|
41137
|
+
nullable: boolean;
|
|
41138
|
+
type: string;
|
|
41139
|
+
};
|
|
41054
41140
|
};
|
|
41055
41141
|
required: string[];
|
|
41056
41142
|
type: string;
|
|
@@ -41212,6 +41298,19 @@ declare const _default: {
|
|
|
41212
41298
|
tailscale_hostname: {
|
|
41213
41299
|
type: string;
|
|
41214
41300
|
};
|
|
41301
|
+
telemetry_token: {
|
|
41302
|
+
nullable: boolean;
|
|
41303
|
+
type: string;
|
|
41304
|
+
};
|
|
41305
|
+
telemetry_token_expires_at: {
|
|
41306
|
+
format: string;
|
|
41307
|
+
nullable: boolean;
|
|
41308
|
+
type: string;
|
|
41309
|
+
};
|
|
41310
|
+
telemetry_url: {
|
|
41311
|
+
nullable: boolean;
|
|
41312
|
+
type: string;
|
|
41313
|
+
};
|
|
41215
41314
|
};
|
|
41216
41315
|
required: string[];
|
|
41217
41316
|
type: string;
|
|
@@ -41369,6 +41468,193 @@ declare const _default: {
|
|
|
41369
41468
|
tailscale_hostname: {
|
|
41370
41469
|
type: string;
|
|
41371
41470
|
};
|
|
41471
|
+
telemetry_token: {
|
|
41472
|
+
nullable: boolean;
|
|
41473
|
+
type: string;
|
|
41474
|
+
};
|
|
41475
|
+
telemetry_token_expires_at: {
|
|
41476
|
+
format: string;
|
|
41477
|
+
nullable: boolean;
|
|
41478
|
+
type: string;
|
|
41479
|
+
};
|
|
41480
|
+
telemetry_url: {
|
|
41481
|
+
nullable: boolean;
|
|
41482
|
+
type: string;
|
|
41483
|
+
};
|
|
41484
|
+
};
|
|
41485
|
+
required: string[];
|
|
41486
|
+
type: string;
|
|
41487
|
+
'x-route-path': string;
|
|
41488
|
+
'x-undocumented': string;
|
|
41489
|
+
};
|
|
41490
|
+
ok: {
|
|
41491
|
+
type: string;
|
|
41492
|
+
};
|
|
41493
|
+
};
|
|
41494
|
+
required: string[];
|
|
41495
|
+
type: string;
|
|
41496
|
+
};
|
|
41497
|
+
};
|
|
41498
|
+
};
|
|
41499
|
+
description: string;
|
|
41500
|
+
};
|
|
41501
|
+
400: {
|
|
41502
|
+
description: string;
|
|
41503
|
+
};
|
|
41504
|
+
401: {
|
|
41505
|
+
description: string;
|
|
41506
|
+
};
|
|
41507
|
+
};
|
|
41508
|
+
security: {
|
|
41509
|
+
bridge_client_session: never[];
|
|
41510
|
+
}[];
|
|
41511
|
+
summary: string;
|
|
41512
|
+
tags: never[];
|
|
41513
|
+
'x-fern-sdk-group-name': string[];
|
|
41514
|
+
'x-fern-sdk-method-name': string;
|
|
41515
|
+
'x-fern-sdk-return-value': string;
|
|
41516
|
+
'x-response-key': string;
|
|
41517
|
+
'x-title': string;
|
|
41518
|
+
'x-undocumented': string;
|
|
41519
|
+
};
|
|
41520
|
+
};
|
|
41521
|
+
'/seam/bridge/v1/bridge_client_sessions/refresh_telemetry_token': {
|
|
41522
|
+
post: {
|
|
41523
|
+
description: string;
|
|
41524
|
+
operationId: string;
|
|
41525
|
+
responses: {
|
|
41526
|
+
200: {
|
|
41527
|
+
content: {
|
|
41528
|
+
'application/json': {
|
|
41529
|
+
schema: {
|
|
41530
|
+
properties: {
|
|
41531
|
+
bridge_client_session: {
|
|
41532
|
+
properties: {
|
|
41533
|
+
bridge_client_machine_identifier_key: {
|
|
41534
|
+
type: string;
|
|
41535
|
+
};
|
|
41536
|
+
bridge_client_name: {
|
|
41537
|
+
type: string;
|
|
41538
|
+
};
|
|
41539
|
+
bridge_client_session_id: {
|
|
41540
|
+
format: string;
|
|
41541
|
+
type: string;
|
|
41542
|
+
};
|
|
41543
|
+
bridge_client_session_token: {
|
|
41544
|
+
type: string;
|
|
41545
|
+
};
|
|
41546
|
+
bridge_client_time_zone: {
|
|
41547
|
+
type: string;
|
|
41548
|
+
};
|
|
41549
|
+
created_at: {
|
|
41550
|
+
format: string;
|
|
41551
|
+
type: string;
|
|
41552
|
+
};
|
|
41553
|
+
errors: {
|
|
41554
|
+
items: {
|
|
41555
|
+
description: string;
|
|
41556
|
+
discriminator: {
|
|
41557
|
+
propertyName: string;
|
|
41558
|
+
};
|
|
41559
|
+
oneOf: ({
|
|
41560
|
+
description: string;
|
|
41561
|
+
properties: {
|
|
41562
|
+
can_tailscale_proxy_reach_bridge: {
|
|
41563
|
+
description: string;
|
|
41564
|
+
nullable: boolean;
|
|
41565
|
+
type: string;
|
|
41566
|
+
};
|
|
41567
|
+
can_tailscale_proxy_reach_tailscale_network: {
|
|
41568
|
+
description: string;
|
|
41569
|
+
nullable: boolean;
|
|
41570
|
+
type: string;
|
|
41571
|
+
};
|
|
41572
|
+
created_at: {
|
|
41573
|
+
format: string;
|
|
41574
|
+
type: string;
|
|
41575
|
+
};
|
|
41576
|
+
error_code: {
|
|
41577
|
+
description: string;
|
|
41578
|
+
enum: string[];
|
|
41579
|
+
type: string;
|
|
41580
|
+
};
|
|
41581
|
+
is_bridge_socks_server_healthy: {
|
|
41582
|
+
description: string;
|
|
41583
|
+
nullable: boolean;
|
|
41584
|
+
type: string;
|
|
41585
|
+
};
|
|
41586
|
+
is_tailscale_proxy_reachable: {
|
|
41587
|
+
description: string;
|
|
41588
|
+
nullable: boolean;
|
|
41589
|
+
type: string;
|
|
41590
|
+
};
|
|
41591
|
+
is_tailscale_proxy_socks_server_healthy: {
|
|
41592
|
+
description: string;
|
|
41593
|
+
nullable: boolean;
|
|
41594
|
+
type: string;
|
|
41595
|
+
};
|
|
41596
|
+
message: {
|
|
41597
|
+
type: string;
|
|
41598
|
+
};
|
|
41599
|
+
};
|
|
41600
|
+
required: string[];
|
|
41601
|
+
type: string;
|
|
41602
|
+
} | {
|
|
41603
|
+
description: string;
|
|
41604
|
+
properties: {
|
|
41605
|
+
created_at: {
|
|
41606
|
+
format: string;
|
|
41607
|
+
type: string;
|
|
41608
|
+
};
|
|
41609
|
+
error_code: {
|
|
41610
|
+
description: string;
|
|
41611
|
+
enum: string[];
|
|
41612
|
+
type: string;
|
|
41613
|
+
};
|
|
41614
|
+
message: {
|
|
41615
|
+
type: string;
|
|
41616
|
+
};
|
|
41617
|
+
can_tailscale_proxy_reach_bridge?: never;
|
|
41618
|
+
can_tailscale_proxy_reach_tailscale_network?: never;
|
|
41619
|
+
is_bridge_socks_server_healthy?: never;
|
|
41620
|
+
is_tailscale_proxy_reachable?: never;
|
|
41621
|
+
is_tailscale_proxy_socks_server_healthy?: never;
|
|
41622
|
+
};
|
|
41623
|
+
required: string[];
|
|
41624
|
+
type: string;
|
|
41625
|
+
})[];
|
|
41626
|
+
};
|
|
41627
|
+
type: string;
|
|
41628
|
+
};
|
|
41629
|
+
pairing_code: {
|
|
41630
|
+
maxLength: number;
|
|
41631
|
+
minLength: number;
|
|
41632
|
+
type: string;
|
|
41633
|
+
};
|
|
41634
|
+
pairing_code_expires_at: {
|
|
41635
|
+
format: string;
|
|
41636
|
+
type: string;
|
|
41637
|
+
};
|
|
41638
|
+
tailscale_auth_key: {
|
|
41639
|
+
nullable: boolean;
|
|
41640
|
+
type: string;
|
|
41641
|
+
};
|
|
41642
|
+
tailscale_hostname: {
|
|
41643
|
+
type: string;
|
|
41644
|
+
};
|
|
41645
|
+
telemetry_token: {
|
|
41646
|
+
nullable: boolean;
|
|
41647
|
+
type: string;
|
|
41648
|
+
};
|
|
41649
|
+
telemetry_token_expires_at: {
|
|
41650
|
+
format: string;
|
|
41651
|
+
nullable: boolean;
|
|
41652
|
+
type: string;
|
|
41653
|
+
};
|
|
41654
|
+
telemetry_url: {
|
|
41655
|
+
nullable: boolean;
|
|
41656
|
+
type: string;
|
|
41657
|
+
};
|
|
41372
41658
|
};
|
|
41373
41659
|
required: string[];
|
|
41374
41660
|
type: string;
|
|
@@ -41530,6 +41816,19 @@ declare const _default: {
|
|
|
41530
41816
|
tailscale_hostname: {
|
|
41531
41817
|
type: string;
|
|
41532
41818
|
};
|
|
41819
|
+
telemetry_token: {
|
|
41820
|
+
nullable: boolean;
|
|
41821
|
+
type: string;
|
|
41822
|
+
};
|
|
41823
|
+
telemetry_token_expires_at: {
|
|
41824
|
+
format: string;
|
|
41825
|
+
nullable: boolean;
|
|
41826
|
+
type: string;
|
|
41827
|
+
};
|
|
41828
|
+
telemetry_url: {
|
|
41829
|
+
nullable: boolean;
|
|
41830
|
+
type: string;
|
|
41831
|
+
};
|
|
41533
41832
|
};
|
|
41534
41833
|
required: string[];
|
|
41535
41834
|
type: string;
|
|
@@ -46511,6 +46810,76 @@ declare const _default: {
|
|
|
46511
46810
|
'x-title': string;
|
|
46512
46811
|
};
|
|
46513
46812
|
};
|
|
46813
|
+
'/user_identities/generate_instant_key': {
|
|
46814
|
+
post: {
|
|
46815
|
+
description: string;
|
|
46816
|
+
operationId: string;
|
|
46817
|
+
requestBody: {
|
|
46818
|
+
content: {
|
|
46819
|
+
'application/json': {
|
|
46820
|
+
schema: {
|
|
46821
|
+
properties: {
|
|
46822
|
+
user_identity_id: {
|
|
46823
|
+
description: string;
|
|
46824
|
+
format: string;
|
|
46825
|
+
type: string;
|
|
46826
|
+
};
|
|
46827
|
+
};
|
|
46828
|
+
required: string[];
|
|
46829
|
+
type: string;
|
|
46830
|
+
};
|
|
46831
|
+
};
|
|
46832
|
+
};
|
|
46833
|
+
};
|
|
46834
|
+
responses: {
|
|
46835
|
+
200: {
|
|
46836
|
+
content: {
|
|
46837
|
+
'application/json': {
|
|
46838
|
+
schema: {
|
|
46839
|
+
properties: {
|
|
46840
|
+
instant_key: {
|
|
46841
|
+
$ref: string;
|
|
46842
|
+
};
|
|
46843
|
+
ok: {
|
|
46844
|
+
type: string;
|
|
46845
|
+
};
|
|
46846
|
+
};
|
|
46847
|
+
required: string[];
|
|
46848
|
+
type: string;
|
|
46849
|
+
};
|
|
46850
|
+
};
|
|
46851
|
+
};
|
|
46852
|
+
description: string;
|
|
46853
|
+
};
|
|
46854
|
+
400: {
|
|
46855
|
+
description: string;
|
|
46856
|
+
};
|
|
46857
|
+
401: {
|
|
46858
|
+
description: string;
|
|
46859
|
+
};
|
|
46860
|
+
};
|
|
46861
|
+
security: ({
|
|
46862
|
+
api_key: never[];
|
|
46863
|
+
pat_with_workspace?: never;
|
|
46864
|
+
console_session_with_workspace?: never;
|
|
46865
|
+
} | {
|
|
46866
|
+
pat_with_workspace: never[];
|
|
46867
|
+
api_key?: never;
|
|
46868
|
+
console_session_with_workspace?: never;
|
|
46869
|
+
} | {
|
|
46870
|
+
console_session_with_workspace: never[];
|
|
46871
|
+
api_key?: never;
|
|
46872
|
+
pat_with_workspace?: never;
|
|
46873
|
+
})[];
|
|
46874
|
+
summary: string;
|
|
46875
|
+
tags: string[];
|
|
46876
|
+
'x-fern-sdk-group-name': string[];
|
|
46877
|
+
'x-fern-sdk-method-name': string;
|
|
46878
|
+
'x-fern-sdk-return-value': string;
|
|
46879
|
+
'x-response-key': string;
|
|
46880
|
+
'x-title': string;
|
|
46881
|
+
};
|
|
46882
|
+
};
|
|
46514
46883
|
'/user_identities/get': {
|
|
46515
46884
|
post: {
|
|
46516
46885
|
description: string;
|
|
@@ -78834,6 +79203,9 @@ interface Routes {
|
|
|
78834
79203
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
78835
79204
|
error_code: 'no_communication_from_bridge';
|
|
78836
79205
|
}>;
|
|
79206
|
+
telemetry_token: string | null;
|
|
79207
|
+
telemetry_token_expires_at: string | null;
|
|
79208
|
+
telemetry_url: string | null;
|
|
78837
79209
|
};
|
|
78838
79210
|
};
|
|
78839
79211
|
};
|
|
@@ -78878,6 +79250,56 @@ interface Routes {
|
|
|
78878
79250
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
78879
79251
|
error_code: 'no_communication_from_bridge';
|
|
78880
79252
|
}>;
|
|
79253
|
+
telemetry_token: string | null;
|
|
79254
|
+
telemetry_token_expires_at: string | null;
|
|
79255
|
+
telemetry_url: string | null;
|
|
79256
|
+
};
|
|
79257
|
+
};
|
|
79258
|
+
};
|
|
79259
|
+
'/seam/bridge/v1/bridge_client_sessions/refresh_telemetry_token': {
|
|
79260
|
+
route: '/seam/bridge/v1/bridge_client_sessions/refresh_telemetry_token';
|
|
79261
|
+
method: 'POST';
|
|
79262
|
+
queryParams: {};
|
|
79263
|
+
jsonBody: {};
|
|
79264
|
+
commonParams: {};
|
|
79265
|
+
formData: {};
|
|
79266
|
+
jsonResponse: {
|
|
79267
|
+
/** */
|
|
79268
|
+
bridge_client_session: {
|
|
79269
|
+
created_at: string;
|
|
79270
|
+
bridge_client_session_id: string;
|
|
79271
|
+
bridge_client_session_token: string;
|
|
79272
|
+
pairing_code: string;
|
|
79273
|
+
pairing_code_expires_at: string;
|
|
79274
|
+
tailscale_hostname: string;
|
|
79275
|
+
tailscale_auth_key: string | null;
|
|
79276
|
+
bridge_client_name: string;
|
|
79277
|
+
bridge_client_time_zone: string;
|
|
79278
|
+
bridge_client_machine_identifier_key: string;
|
|
79279
|
+
errors: Array<{
|
|
79280
|
+
message: string;
|
|
79281
|
+
created_at: string;
|
|
79282
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
79283
|
+
error_code: 'bridge_lan_unreachable';
|
|
79284
|
+
/** Seam cannot reach the tailscale proxy */
|
|
79285
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
79286
|
+
/** Tailscale proxy's SOCKS server is unhealthy */
|
|
79287
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
79288
|
+
/** Tailscale proxy cannot reach the Tailscale network */
|
|
79289
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
79290
|
+
/** Tailscale proxy cannot reach the bridge */
|
|
79291
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
79292
|
+
/** Bridge's SOCKS server is unhealthy */
|
|
79293
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
79294
|
+
} | {
|
|
79295
|
+
message: string;
|
|
79296
|
+
created_at: string;
|
|
79297
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
79298
|
+
error_code: 'no_communication_from_bridge';
|
|
79299
|
+
}>;
|
|
79300
|
+
telemetry_token: string | null;
|
|
79301
|
+
telemetry_token_expires_at: string | null;
|
|
79302
|
+
telemetry_url: string | null;
|
|
78881
79303
|
};
|
|
78882
79304
|
};
|
|
78883
79305
|
};
|
|
@@ -78922,6 +79344,9 @@ interface Routes {
|
|
|
78922
79344
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
78923
79345
|
error_code: 'no_communication_from_bridge';
|
|
78924
79346
|
}>;
|
|
79347
|
+
telemetry_token: string | null;
|
|
79348
|
+
telemetry_token_expires_at: string | null;
|
|
79349
|
+
telemetry_url: string | null;
|
|
78925
79350
|
};
|
|
78926
79351
|
};
|
|
78927
79352
|
};
|
|
@@ -88761,6 +89186,29 @@ interface Routes {
|
|
|
88761
89186
|
}>;
|
|
88762
89187
|
};
|
|
88763
89188
|
};
|
|
89189
|
+
'/user_identities/generate_instant_key': {
|
|
89190
|
+
route: '/user_identities/generate_instant_key';
|
|
89191
|
+
method: 'POST';
|
|
89192
|
+
queryParams: {};
|
|
89193
|
+
jsonBody: {};
|
|
89194
|
+
commonParams: {
|
|
89195
|
+
/** ID of the user identity for which you want to generate an instant key. */
|
|
89196
|
+
user_identity_id: string;
|
|
89197
|
+
};
|
|
89198
|
+
formData: {};
|
|
89199
|
+
jsonResponse: {
|
|
89200
|
+
/** */
|
|
89201
|
+
instant_key: {
|
|
89202
|
+
instant_key_id: string;
|
|
89203
|
+
workspace_id: string;
|
|
89204
|
+
created_at: string;
|
|
89205
|
+
instant_key_url: string;
|
|
89206
|
+
client_session_id: string;
|
|
89207
|
+
user_identity_id: string;
|
|
89208
|
+
expires_at: string;
|
|
89209
|
+
};
|
|
89210
|
+
};
|
|
89211
|
+
};
|
|
88764
89212
|
'/user_identities/get': {
|
|
88765
89213
|
route: '/user_identities/get';
|
|
88766
89214
|
method: 'GET' | 'POST';
|
|
@@ -91730,4 +92178,4 @@ type RouteRequestParams<Path extends keyof Routes> = Routes[Path]['queryParams']
|
|
|
91730
92178
|
|
|
91731
92179
|
declare const routes: {};
|
|
91732
92180
|
|
|
91733
|
-
export { type AccessCode, type AccessCodeError, type AccessCodeWarning, type AcsAccessGroup, type AcsCredential, type AcsEncoder, type AcsEntrance, type AcsSystem, type AcsUser, type ActionAttempt, type Bridge, type ClientSession, type ConnectWebview, type ConnectedAccount, type CustomMetadata, type Device, type DeviceError, type DeviceProvider, type DeviceWarning, type NoiseThreshold, type RouteRequestBody, type RouteRequestParams, type RouteResponse, type Routes, type SeamEvent, type SeamEventType, type ThermostatSchedule, type UnmanagedAccessCode, type UnmanagedDevice, type UserIdentity, type Webhook, type Workspace, _default as openapi, routes, schemas };
|
|
92181
|
+
export { type AccessCode, type AccessCodeError, type AccessCodeWarning, type AcsAccessGroup, type AcsCredential, type AcsEncoder, type AcsEntrance, type AcsSystem, type AcsUser, type ActionAttempt, type Bridge, type ClientSession, type ConnectWebview, type ConnectedAccount, type CustomMetadata, type Device, type DeviceError, type DeviceProvider, type DeviceWarning, type InstantKey, type NoiseThreshold, type RouteRequestBody, type RouteRequestParams, type RouteResponse, type Routes, type SeamEvent, type SeamEventType, type ThermostatSchedule, type UnmanagedAccessCode, type UnmanagedDevice, type UserIdentity, type Webhook, type Workspace, _default as openapi, routes, schemas };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { access_code_code_constraint, access_grant, access_method, acs_access_group, acs_access_group_external_type, acs_credential, acs_credential_access_method_type, acs_credential_external_type, acs_credential_pool, acs_credential_pool_external_type, acs_credential_provisioning_automation, acs_entrance, acs_system, acs_system_capability_flags, acs_system_external_type, acs_user, acs_user_external_type, any_device_type, battery_status, bridge, bridge_client_session, bridge_connected_system, capabilities, climate_preset, climate_setting, common_device_properties, common_event, connect_webview_device_selection_mode, connected_account, custom_metadata_input, device_capability_flags, device_metadata, device_provider, dormakaba_oracode_time_slot, enrollment_automation, seam_event as event, seam_event_type as event_type, fan_mode_setting, geolocation, location, lock_device_type, access_code as managed_access_code, device as managed_device, noise_sensor_device_type, noise_threshold, pagination, phone, phone_number, thermostat_capability_properties, thermostat_device_type, thermostat_schedule, unmanaged_access_code, unmanaged_device, user_identity, webhook, } from '../models/index.js';
|
|
1
|
+
export { access_code_code_constraint, access_grant, access_method, acs_access_group, acs_access_group_external_type, acs_credential, acs_credential_access_method_type, acs_credential_external_type, acs_credential_pool, acs_credential_pool_external_type, acs_credential_provisioning_automation, acs_entrance, acs_system, acs_system_capability_flags, acs_system_external_type, acs_user, acs_user_external_type, any_device_type, battery_status, bridge, bridge_client_session, bridge_connected_system, capabilities, climate_preset, climate_setting, common_device_properties, common_event, connect_webview_device_selection_mode, connected_account, custom_metadata_input, device_capability_flags, device_metadata, device_provider, dormakaba_oracode_time_slot, enrollment_automation, seam_event as event, seam_event_type as event_type, fan_mode_setting, geolocation, instant_key, location, lock_device_type, access_code as managed_access_code, device as managed_device, noise_sensor_device_type, noise_threshold, pagination, phone, phone_number, thermostat_capability_properties, thermostat_device_type, thermostat_schedule, unmanaged_access_code, unmanaged_device, user_identity, webhook, } from '../models/index.js';
|
|
2
2
|
export * from '../schemas.js';
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { access_code_code_constraint, access_grant, access_method, acs_access_group, acs_access_group_external_type, acs_credential, acs_credential_access_method_type, acs_credential_external_type, acs_credential_pool, acs_credential_pool_external_type, acs_credential_provisioning_automation, acs_entrance, acs_system, acs_system_capability_flags, acs_system_external_type, acs_user, acs_user_external_type, any_device_type, battery_status, bridge, bridge_client_session, bridge_connected_system, capabilities, climate_preset, climate_setting, common_device_properties, common_event, connect_webview_device_selection_mode, connected_account, custom_metadata_input, device_capability_flags, device_metadata, device_provider, dormakaba_oracode_time_slot, enrollment_automation, seam_event as event, seam_event_type as event_type, fan_mode_setting, geolocation, location, lock_device_type, access_code as managed_access_code, device as managed_device, noise_sensor_device_type, noise_threshold, pagination, phone, phone_number, thermostat_capability_properties, thermostat_device_type, thermostat_schedule, unmanaged_access_code, unmanaged_device, user_identity, webhook, } from '../models/index.js';
|
|
1
|
+
export { access_code_code_constraint, access_grant, access_method, acs_access_group, acs_access_group_external_type, acs_credential, acs_credential_access_method_type, acs_credential_external_type, acs_credential_pool, acs_credential_pool_external_type, acs_credential_provisioning_automation, acs_entrance, acs_system, acs_system_capability_flags, acs_system_external_type, acs_user, acs_user_external_type, any_device_type, battery_status, bridge, bridge_client_session, bridge_connected_system, capabilities, climate_preset, climate_setting, common_device_properties, common_event, connect_webview_device_selection_mode, connected_account, custom_metadata_input, device_capability_flags, device_metadata, device_provider, dormakaba_oracode_time_slot, enrollment_automation, seam_event as event, seam_event_type as event_type, fan_mode_setting, geolocation, instant_key, location, lock_device_type, access_code as managed_access_code, device as managed_device, noise_sensor_device_type, noise_threshold, pagination, phone, phone_number, thermostat_capability_properties, thermostat_device_type, thermostat_schedule, unmanaged_access_code, unmanaged_device, user_identity, webhook, } from '../models/index.js';
|
|
2
2
|
export * from '../schemas.js';
|
|
3
3
|
//# sourceMappingURL=schemas.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/internal/schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,2BAA2B,EAC3B,YAAY,EACZ,aAAa,EACb,gBAAgB,EAChB,8BAA8B,EAC9B,cAAc,EACd,iCAAiC,EACjC,4BAA4B,EAC5B,mBAAmB,EACnB,iCAAiC,EACjC,sCAAsC,EACtC,YAAY,EACZ,UAAU,EACV,2BAA2B,EAC3B,wBAAwB,EACxB,QAAQ,EACR,sBAAsB,EACtB,eAAe,EACf,cAAc,EACd,MAAM,EACN,qBAAqB,EACrB,uBAAuB,EACvB,YAAY,EACZ,cAAc,EACd,eAAe,EACf,wBAAwB,EACxB,YAAY,EACZ,qCAAqC,EACrC,iBAAiB,EACjB,qBAAqB,EACrB,uBAAuB,EACvB,eAAe,EACf,eAAe,EACf,2BAA2B,EAC3B,qBAAqB,EACrB,UAAU,IAAI,KAAK,EACnB,eAAe,IAAI,UAAU,EAC7B,gBAAgB,EAChB,WAAW,EACX,QAAQ,EACR,gBAAgB,EAChB,WAAW,IAAI,mBAAmB,EAClC,MAAM,IAAI,cAAc,EACxB,wBAAwB,EACxB,eAAe,EACf,UAAU,EACV,KAAK,EACL,YAAY,EACZ,gCAAgC,EAChC,sBAAsB,EACtB,mBAAmB,EACnB,qBAAqB,EACrB,gBAAgB,EAChB,aAAa,EACb,OAAO,GACR,MAAM,oBAAoB,CAAA;AAC3B,cAAc,eAAe,CAAA"}
|
|
1
|
+
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/internal/schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,2BAA2B,EAC3B,YAAY,EACZ,aAAa,EACb,gBAAgB,EAChB,8BAA8B,EAC9B,cAAc,EACd,iCAAiC,EACjC,4BAA4B,EAC5B,mBAAmB,EACnB,iCAAiC,EACjC,sCAAsC,EACtC,YAAY,EACZ,UAAU,EACV,2BAA2B,EAC3B,wBAAwB,EACxB,QAAQ,EACR,sBAAsB,EACtB,eAAe,EACf,cAAc,EACd,MAAM,EACN,qBAAqB,EACrB,uBAAuB,EACvB,YAAY,EACZ,cAAc,EACd,eAAe,EACf,wBAAwB,EACxB,YAAY,EACZ,qCAAqC,EACrC,iBAAiB,EACjB,qBAAqB,EACrB,uBAAuB,EACvB,eAAe,EACf,eAAe,EACf,2BAA2B,EAC3B,qBAAqB,EACrB,UAAU,IAAI,KAAK,EACnB,eAAe,IAAI,UAAU,EAC7B,gBAAgB,EAChB,WAAW,EACX,WAAW,EACX,QAAQ,EACR,gBAAgB,EAChB,WAAW,IAAI,mBAAmB,EAClC,MAAM,IAAI,cAAc,EACxB,wBAAwB,EACxB,eAAe,EACf,UAAU,EACV,KAAK,EACL,YAAY,EACZ,gCAAgC,EAChC,sBAAsB,EACtB,mBAAmB,EACnB,qBAAqB,EACrB,gBAAgB,EAChB,aAAa,EACb,OAAO,GACR,MAAM,oBAAoB,CAAA;AAC3B,cAAc,eAAe,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type { AccessCode, AccessCodeError, AccessCodeWarning, AcsAccessGroup, AcsCredential, AcsEncoder, AcsEntrance, AcsSystem, AcsUser, ActionAttempt, Bridge, ClientSession, ConnectedAccount, ConnectWebview, CustomMetadata, Device, DeviceError, DeviceProvider, DeviceWarning, NoiseThreshold, SeamEvent, SeamEventType, ThermostatSchedule, UnmanagedAccessCode, UnmanagedDevice, UserIdentity, Webhook, Workspace, } from './models/index.js';
|
|
1
|
+
export type { AccessCode, AccessCodeError, AccessCodeWarning, AcsAccessGroup, AcsCredential, AcsEncoder, AcsEntrance, AcsSystem, AcsUser, ActionAttempt, Bridge, ClientSession, ConnectedAccount, ConnectWebview, CustomMetadata, Device, DeviceError, DeviceProvider, DeviceWarning, InstantKey, NoiseThreshold, SeamEvent, SeamEventType, ThermostatSchedule, UnmanagedAccessCode, UnmanagedDevice, UserIdentity, Webhook, Workspace, } from './models/index.js';
|
|
@@ -216,6 +216,9 @@ export declare const bridge_client_session: z.ZodObject<{
|
|
|
216
216
|
created_at: string;
|
|
217
217
|
error_code: "no_communication_from_bridge";
|
|
218
218
|
}>]>, "many">;
|
|
219
|
+
telemetry_token: z.ZodNullable<z.ZodString>;
|
|
220
|
+
telemetry_token_expires_at: z.ZodNullable<z.ZodString>;
|
|
221
|
+
telemetry_url: z.ZodNullable<z.ZodString>;
|
|
219
222
|
}, "strip", z.ZodTypeAny, {
|
|
220
223
|
created_at: string;
|
|
221
224
|
errors: ({
|
|
@@ -241,6 +244,9 @@ export declare const bridge_client_session: z.ZodObject<{
|
|
|
241
244
|
bridge_client_name: string;
|
|
242
245
|
bridge_client_time_zone: string;
|
|
243
246
|
bridge_client_machine_identifier_key: string;
|
|
247
|
+
telemetry_token: string | null;
|
|
248
|
+
telemetry_token_expires_at: string | null;
|
|
249
|
+
telemetry_url: string | null;
|
|
244
250
|
}, {
|
|
245
251
|
created_at: string;
|
|
246
252
|
errors: ({
|
|
@@ -266,6 +272,9 @@ export declare const bridge_client_session: z.ZodObject<{
|
|
|
266
272
|
bridge_client_name: string;
|
|
267
273
|
bridge_client_time_zone: string;
|
|
268
274
|
bridge_client_machine_identifier_key: string;
|
|
275
|
+
telemetry_token: string | null;
|
|
276
|
+
telemetry_token_expires_at: string | null;
|
|
277
|
+
telemetry_url: string | null;
|
|
269
278
|
}>;
|
|
270
279
|
export type BridgeClientSession = z.infer<typeof bridge_client_session>;
|
|
271
280
|
export {};
|
|
@@ -62,6 +62,9 @@ export const bridge_client_session = z.object({
|
|
|
62
62
|
bridge_client_time_zone: z.string(),
|
|
63
63
|
bridge_client_machine_identifier_key: z.string(),
|
|
64
64
|
errors: z.array(bridge_client_session_error),
|
|
65
|
+
telemetry_token: z.string().nullable(),
|
|
66
|
+
telemetry_token_expires_at: z.string().datetime().nullable(),
|
|
67
|
+
telemetry_url: z.string().nullable(),
|
|
65
68
|
}).describe(`
|
|
66
69
|
---
|
|
67
70
|
route_path: /seam/bridge/v1/bridge_client_sessions
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bridge-client-session.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/bridges/bridge-client-session.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,kCAAkC,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;IACnB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAClC,CAAC,CAAA;AAEF,MAAM,sBAAsB,GAC1B,oGAAoG,CAAA;AAEtG,MAAM,CAAC,MAAM,sBAAsB,GAAG,kCAAkC;KACrE,MAAM,CAAC;IACN,UAAU,EAAE,CAAC;SACV,OAAO,CAAC,wBAAwB,CAAC;SACjC,QAAQ,CAAC,sBAAsB,CAAC;IACnC,4BAA4B,EAAE,CAAC;SAC5B,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CAAC,uCAAuC,CAAC;IACpD,uCAAuC,EAAE,CAAC;SACvC,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CAAC,6CAA6C,CAAC;IAC1D,2CAA2C,EAAE,CAAC;SAC3C,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CAAC,oDAAoD,CAAC;IACjE,gCAAgC,EAAE,CAAC;SAChC,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CAAC,yCAAyC,CAAC;IACtD,8BAA8B,EAAE,CAAC;SAC9B,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CAAC,oCAAoC,CAAC;CAClD,CAAC;KACD,QAAQ,CAAC,oCAAoC,CAAC,CAAA;AAEjD,MAAM,CAAC,MAAM,4BAA4B,GAAG,kCAAkC;KAC3E,MAAM,CAAC;IACN,UAAU,EAAE,CAAC;SACV,OAAO,CAAC,8BAA8B,CAAC;SACvC,QAAQ,CAAC,sBAAsB,CAAC;CACpC,CAAC;KACD,QAAQ,CAAC,4CAA4C,CAAC,CAAA;AAEzD,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC;KACzC,kBAAkB,CAAC,YAAY,EAAE;IAChC,sBAAsB;IACtB,4BAA4B;CAC7B,CAAC;KACD,QAAQ,CAAC,oDAAoD,CAAC,CAAA;AAMjE,MAAM,+BAA+B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,sBAAsB,EAAE,sBAAsB,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACpE,4BAA4B,EAAE,4BAA4B;SACvD,QAAQ,EAAE;SACV,QAAQ,EAAE;CACd,CAAC,CAAA;AAMF,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,wBAAwB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC3C,2BAA2B,EAAE,CAAC,CAAC,MAAM,EAAE;IACvC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;IAClC,uBAAuB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9C,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACzC,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,uBAAuB,EAAE,CAAC,CAAC,MAAM,EAAE;IACnC,oCAAoC,EAAE,CAAC,CAAC,MAAM,EAAE;IAChD,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC;
|
|
1
|
+
{"version":3,"file":"bridge-client-session.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/bridges/bridge-client-session.ts"],"names":[],"mappings":"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"}
|