@seamapi/types 1.380.1 → 1.381.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.
@@ -41537,6 +41537,66 @@ declare const _default: {
41537
41537
  'x-undocumented': string;
41538
41538
  };
41539
41539
  };
41540
+ '/seam/bridge/v1/bridge_client_sessions/report_status': {
41541
+ post: {
41542
+ description: string;
41543
+ operationId: string;
41544
+ requestBody: {
41545
+ content: {
41546
+ 'application/json': {
41547
+ schema: {
41548
+ properties: {
41549
+ is_tailscale_connected: {
41550
+ nullable: boolean;
41551
+ type: string;
41552
+ };
41553
+ tailscale_ip_v4: {
41554
+ nullable: boolean;
41555
+ type: string;
41556
+ };
41557
+ };
41558
+ required: string[];
41559
+ type: string;
41560
+ };
41561
+ };
41562
+ };
41563
+ };
41564
+ responses: {
41565
+ 200: {
41566
+ content: {
41567
+ 'application/json': {
41568
+ schema: {
41569
+ properties: {
41570
+ ok: {
41571
+ type: string;
41572
+ };
41573
+ };
41574
+ required: string[];
41575
+ type: string;
41576
+ };
41577
+ };
41578
+ };
41579
+ description: string;
41580
+ };
41581
+ 400: {
41582
+ description: string;
41583
+ };
41584
+ 401: {
41585
+ description: string;
41586
+ };
41587
+ };
41588
+ security: {
41589
+ bridge_client_session: never[];
41590
+ }[];
41591
+ summary: string;
41592
+ tags: never[];
41593
+ 'x-fern-sdk-group-name': string[];
41594
+ 'x-fern-sdk-method-name': string;
41595
+ 'x-response-key': null;
41596
+ 'x-title': string;
41597
+ 'x-undocumented': string;
41598
+ };
41599
+ };
41540
41600
  '/seam/bridge/v1/bridge_connected_systems/list': {
41541
41601
  get: {
41542
41602
  description: string;
@@ -78805,6 +78865,18 @@ interface Routes {
78805
78865
  };
78806
78866
  };
78807
78867
  };
78868
+ '/seam/bridge/v1/bridge_client_sessions/report_status': {
78869
+ route: '/seam/bridge/v1/bridge_client_sessions/report_status';
78870
+ method: 'POST';
78871
+ queryParams: {};
78872
+ jsonBody: {
78873
+ is_tailscale_connected: boolean | null;
78874
+ tailscale_ip_v4: string | null;
78875
+ };
78876
+ commonParams: {};
78877
+ formData: {};
78878
+ jsonResponse: {};
78879
+ };
78808
78880
  '/seam/bridge/v1/bridge_connected_systems/list': {
78809
78881
  route: '/seam/bridge/v1/bridge_connected_systems/list';
78810
78882
  method: 'GET' | 'POST';
@@ -21734,6 +21734,66 @@ declare const _default: {
21734
21734
  'x-undocumented': string;
21735
21735
  };
21736
21736
  };
21737
+ '/seam/bridge/v1/bridge_client_sessions/report_status': {
21738
+ post: {
21739
+ description: string;
21740
+ operationId: string;
21741
+ requestBody: {
21742
+ content: {
21743
+ 'application/json': {
21744
+ schema: {
21745
+ properties: {
21746
+ is_tailscale_connected: {
21747
+ nullable: boolean;
21748
+ type: string;
21749
+ };
21750
+ tailscale_ip_v4: {
21751
+ nullable: boolean;
21752
+ type: string;
21753
+ };
21754
+ };
21755
+ required: string[];
21756
+ type: string;
21757
+ };
21758
+ };
21759
+ };
21760
+ };
21761
+ responses: {
21762
+ 200: {
21763
+ content: {
21764
+ 'application/json': {
21765
+ schema: {
21766
+ properties: {
21767
+ ok: {
21768
+ type: string;
21769
+ };
21770
+ };
21771
+ required: string[];
21772
+ type: string;
21773
+ };
21774
+ };
21775
+ };
21776
+ description: string;
21777
+ };
21778
+ 400: {
21779
+ description: string;
21780
+ };
21781
+ 401: {
21782
+ description: string;
21783
+ };
21784
+ };
21785
+ security: {
21786
+ bridge_client_session: never[];
21787
+ }[];
21788
+ summary: string;
21789
+ tags: never[];
21790
+ 'x-fern-sdk-group-name': string[];
21791
+ 'x-fern-sdk-method-name': string;
21792
+ 'x-response-key': null;
21793
+ 'x-title': string;
21794
+ 'x-undocumented': string;
21795
+ };
21796
+ };
21737
21797
  '/seam/bridge/v1/bridge_connected_systems/list': {
21738
21798
  get: {
21739
21799
  description: string;
@@ -25917,6 +25917,55 @@ export default {
25917
25917
  'x-undocumented': 'Seam Bridge Client only.',
25918
25918
  },
25919
25919
  },
25920
+ '/seam/bridge/v1/bridge_client_sessions/report_status': {
25921
+ post: {
25922
+ description: "Report a Seam Bridge Bridge client's status.",
25923
+ operationId: 'seamBridgeV1BridgeClientSessionsReportStatusPost',
25924
+ requestBody: {
25925
+ content: {
25926
+ 'application/json': {
25927
+ schema: {
25928
+ properties: {
25929
+ is_tailscale_connected: { nullable: true, type: 'boolean' },
25930
+ tailscale_ip_v4: { nullable: true, type: 'string' },
25931
+ },
25932
+ required: ['is_tailscale_connected', 'tailscale_ip_v4'],
25933
+ type: 'object',
25934
+ },
25935
+ },
25936
+ },
25937
+ },
25938
+ responses: {
25939
+ 200: {
25940
+ content: {
25941
+ 'application/json': {
25942
+ schema: {
25943
+ properties: { ok: { type: 'boolean' } },
25944
+ required: ['ok'],
25945
+ type: 'object',
25946
+ },
25947
+ },
25948
+ },
25949
+ description: 'OK',
25950
+ },
25951
+ 400: { description: 'Bad Request' },
25952
+ 401: { description: 'Unauthorized' },
25953
+ },
25954
+ security: [{ bridge_client_session: [] }],
25955
+ summary: '/seam/bridge/v1/bridge_client_sessions/report_status',
25956
+ tags: [],
25957
+ 'x-fern-sdk-group-name': [
25958
+ 'seam',
25959
+ 'bridge',
25960
+ 'v1',
25961
+ 'bridge_client_sessions',
25962
+ ],
25963
+ 'x-fern-sdk-method-name': 'report_status',
25964
+ 'x-response-key': null,
25965
+ 'x-title': "Report a Bridge Client's Status",
25966
+ 'x-undocumented': 'Seam Bridge Client only.',
25967
+ },
25968
+ },
25920
25969
  '/seam/bridge/v1/bridge_connected_systems/list': {
25921
25970
  get: {
25922
25971
  description: 'Returns the bridge connected systems associated with the session token used.',