@seamapi/types 1.643.0 → 1.645.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.
@@ -31665,6 +31665,17 @@ export type Routes = {
31665
31665
  };
31666
31666
  };
31667
31667
  };
31668
+ '/connected_accounts/simulate/disconnect': {
31669
+ route: '/connected_accounts/simulate/disconnect';
31670
+ method: 'POST';
31671
+ queryParams: {};
31672
+ jsonBody: {
31673
+ connected_account_id: string;
31674
+ };
31675
+ commonParams: {};
31676
+ formData: {};
31677
+ jsonResponse: {};
31678
+ };
31668
31679
  '/connected_accounts/sync': {
31669
31680
  route: '/connected_accounts/sync';
31670
31681
  method: 'POST';
@@ -60546,6 +60557,20 @@ export type Routes = {
60546
60557
  };
60547
60558
  };
60548
60559
  };
60560
+ '/seam/mobile_sdk/v1/report_salto_space_audit_trail': {
60561
+ route: '/seam/mobile_sdk/v1/report_salto_space_audit_trail';
60562
+ method: 'POST';
60563
+ queryParams: {};
60564
+ jsonBody: {
60565
+ acs_system_id: string;
60566
+ salto_space_metadata: {
60567
+ justin_mobile_sdk_audit_trail_data: string;
60568
+ };
60569
+ };
60570
+ commonParams: {};
60571
+ formData: {};
60572
+ jsonResponse: {};
60573
+ };
60549
60574
  '/seam/partner/v1/building_blocks/spaces/auto_map': {
60550
60575
  route: '/seam/partner/v1/building_blocks/spaces/auto_map';
60551
60576
  method: 'GET' | 'POST';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.643.0",
3
+ "version": "1.645.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -40947,6 +40947,53 @@ export default {
40947
40947
  'x-title': 'List Connected Accounts',
40948
40948
  },
40949
40949
  },
40950
+ '/connected_accounts/simulate/disconnect': {
40951
+ post: {
40952
+ description:
40953
+ 'Simulates a connected account becoming disconnected from Seam. Only applicable for [sandbox workspaces](https://docs.seam.co/latest/core-concepts/workspaces#sandbox-workspaces).',
40954
+ operationId: 'connectedAccountsSimulateDisconnectPost',
40955
+ requestBody: {
40956
+ content: {
40957
+ 'application/json': {
40958
+ schema: {
40959
+ properties: {
40960
+ connected_account_id: { format: 'uuid', type: 'string' },
40961
+ },
40962
+ required: ['connected_account_id'],
40963
+ type: 'object',
40964
+ },
40965
+ },
40966
+ },
40967
+ },
40968
+ responses: {
40969
+ 200: {
40970
+ content: {
40971
+ 'application/json': {
40972
+ schema: {
40973
+ properties: { ok: { type: 'boolean' } },
40974
+ required: ['ok'],
40975
+ type: 'object',
40976
+ },
40977
+ },
40978
+ },
40979
+ description: 'OK',
40980
+ },
40981
+ 400: { description: 'Bad Request' },
40982
+ 401: { description: 'Unauthorized' },
40983
+ },
40984
+ security: [
40985
+ { api_key: [] },
40986
+ { pat_with_workspace: [] },
40987
+ { console_session_with_workspace: [] },
40988
+ ],
40989
+ summary: '/connected_accounts/simulate/disconnect',
40990
+ tags: ['/connected_accounts'],
40991
+ 'x-fern-sdk-group-name': ['connected_accounts', 'simulate'],
40992
+ 'x-fern-sdk-method-name': 'disconnect',
40993
+ 'x-response-key': null,
40994
+ 'x-title': 'Simulate Connected Account Disconnection',
40995
+ },
40996
+ },
40950
40997
  '/connected_accounts/sync': {
40951
40998
  post: {
40952
40999
  description:
@@ -56468,6 +56515,56 @@ export default {
56468
56515
  'x-undocumented': 'Mobile SDK only.',
56469
56516
  },
56470
56517
  },
56518
+ '/seam/mobile_sdk/v1/report_salto_space_audit_trail': {
56519
+ post: {
56520
+ description: 'Reports audit trail data from Salto Space mobile SDK.',
56521
+ operationId: 'seamMobileSdkV1ReportSaltoSpaceAuditTrailPost',
56522
+ requestBody: {
56523
+ content: {
56524
+ 'application/json': {
56525
+ schema: {
56526
+ properties: {
56527
+ acs_system_id: { format: 'uuid', type: 'string' },
56528
+ salto_space_metadata: {
56529
+ properties: {
56530
+ justin_mobile_sdk_audit_trail_data: { type: 'string' },
56531
+ },
56532
+ required: ['justin_mobile_sdk_audit_trail_data'],
56533
+ type: 'object',
56534
+ },
56535
+ },
56536
+ required: ['acs_system_id', 'salto_space_metadata'],
56537
+ type: 'object',
56538
+ },
56539
+ },
56540
+ },
56541
+ },
56542
+ responses: {
56543
+ 200: {
56544
+ content: {
56545
+ 'application/json': {
56546
+ schema: {
56547
+ properties: { ok: { type: 'boolean' } },
56548
+ required: ['ok'],
56549
+ type: 'object',
56550
+ },
56551
+ },
56552
+ },
56553
+ description: 'OK',
56554
+ },
56555
+ 400: { description: 'Bad Request' },
56556
+ 401: { description: 'Unauthorized' },
56557
+ },
56558
+ security: [{ client_session: [] }],
56559
+ summary: '/seam/mobile_sdk/v1/report_salto_space_audit_trail',
56560
+ tags: [],
56561
+ 'x-fern-sdk-group-name': ['seam', 'mobile_sdk', 'v1'],
56562
+ 'x-fern-sdk-method-name': 'report_salto_space_audit_trail',
56563
+ 'x-response-key': null,
56564
+ 'x-title': 'Report Salto Space Audit Trail',
56565
+ 'x-undocumented': 'Mobile SDK only.',
56566
+ },
56567
+ },
56471
56568
  '/seam/partner/v1/building_blocks/spaces/auto_map': {
56472
56569
  get: {
56473
56570
  description:
@@ -36781,6 +36781,17 @@ export type Routes = {
36781
36781
  }
36782
36782
  }
36783
36783
  }
36784
+ '/connected_accounts/simulate/disconnect': {
36785
+ route: '/connected_accounts/simulate/disconnect'
36786
+ method: 'POST'
36787
+ queryParams: {}
36788
+ jsonBody: {
36789
+ connected_account_id: string
36790
+ }
36791
+ commonParams: {}
36792
+ formData: {}
36793
+ jsonResponse: {}
36794
+ }
36784
36795
  '/connected_accounts/sync': {
36785
36796
  route: '/connected_accounts/sync'
36786
36797
  method: 'POST'
@@ -72037,6 +72048,20 @@ export type Routes = {
72037
72048
  }
72038
72049
  }
72039
72050
  }
72051
+ '/seam/mobile_sdk/v1/report_salto_space_audit_trail': {
72052
+ route: '/seam/mobile_sdk/v1/report_salto_space_audit_trail'
72053
+ method: 'POST'
72054
+ queryParams: {}
72055
+ jsonBody: {
72056
+ acs_system_id: string
72057
+ salto_space_metadata: {
72058
+ justin_mobile_sdk_audit_trail_data: string
72059
+ }
72060
+ }
72061
+ commonParams: {}
72062
+ formData: {}
72063
+ jsonResponse: {}
72064
+ }
72040
72065
  '/seam/partner/v1/building_blocks/spaces/auto_map': {
72041
72066
  route: '/seam/partner/v1/building_blocks/spaces/auto_map'
72042
72067
  method: 'GET' | 'POST'