@seamapi/types 1.217.0 → 1.218.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.
@@ -12449,6 +12449,9 @@ declare const _default: {
12449
12449
  format: string;
12450
12450
  type: string;
12451
12451
  };
12452
+ event_description: {
12453
+ type: string;
12454
+ };
12452
12455
  event_id: {
12453
12456
  format: string;
12454
12457
  type: string;
@@ -16808,6 +16811,7 @@ declare const _default: {
16808
16811
  };
16809
16812
  '/acs/systems/get': {
16810
16813
  post: {
16814
+ description: string;
16811
16815
  operationId: string;
16812
16816
  requestBody: {
16813
16817
  content: {
@@ -16815,6 +16819,7 @@ declare const _default: {
16815
16819
  schema: {
16816
16820
  properties: {
16817
16821
  acs_system_id: {
16822
+ description: string;
16818
16823
  format: string;
16819
16824
  type: string;
16820
16825
  };
@@ -16870,6 +16875,8 @@ declare const _default: {
16870
16875
  'x-fern-sdk-group-name': string[];
16871
16876
  'x-fern-sdk-method-name': string;
16872
16877
  'x-fern-sdk-return-value': string;
16878
+ 'x-response-key': string;
16879
+ 'x-title': string;
16873
16880
  };
16874
16881
  };
16875
16882
  '/acs/systems/list': {
@@ -28988,6 +28995,7 @@ interface Routes {
28988
28995
  queryParams: {};
28989
28996
  jsonBody: {};
28990
28997
  commonParams: {
28998
+ /** ID of the desired access control system. */
28991
28999
  acs_system_id: string;
28992
29000
  };
28993
29001
  formData: {};
@@ -32044,6 +32052,7 @@ interface Routes {
32044
32052
  workspace_id: string;
32045
32053
  created_at: string;
32046
32054
  occurred_at: string;
32055
+ event_description: string;
32047
32056
  } | undefined;
32048
32057
  message?: string | undefined;
32049
32058
  };
@@ -32080,6 +32089,7 @@ interface Routes {
32080
32089
  workspace_id: string;
32081
32090
  created_at: string;
32082
32091
  occurred_at: string;
32092
+ event_description: string;
32083
32093
  }>;
32084
32094
  };
32085
32095
  };
@@ -3045,6 +3045,9 @@ declare const _default: {
3045
3045
  format: string;
3046
3046
  type: string;
3047
3047
  };
3048
+ event_description: {
3049
+ type: string;
3050
+ };
3048
3051
  event_id: {
3049
3052
  format: string;
3050
3053
  type: string;
@@ -7404,6 +7407,7 @@ declare const _default: {
7404
7407
  };
7405
7408
  '/acs/systems/get': {
7406
7409
  post: {
7410
+ description: string;
7407
7411
  operationId: string;
7408
7412
  requestBody: {
7409
7413
  content: {
@@ -7411,6 +7415,7 @@ declare const _default: {
7411
7415
  schema: {
7412
7416
  properties: {
7413
7417
  acs_system_id: {
7418
+ description: string;
7414
7419
  format: string;
7415
7420
  type: string;
7416
7421
  };
@@ -7466,6 +7471,8 @@ declare const _default: {
7466
7471
  'x-fern-sdk-group-name': string[];
7467
7472
  'x-fern-sdk-method-name': string;
7468
7473
  'x-fern-sdk-return-value': string;
7474
+ 'x-response-key': string;
7475
+ 'x-title': string;
7469
7476
  };
7470
7477
  };
7471
7478
  '/acs/systems/list': {
@@ -3537,6 +3537,7 @@ export default {
3537
3537
  created_at: { format: 'date-time', type: 'string' },
3538
3538
  device_id: { format: 'uuid', type: 'string' },
3539
3539
  enrollment_automation_id: { format: 'uuid', type: 'string' },
3540
+ event_description: { type: 'string' },
3540
3541
  event_id: { format: 'uuid', type: 'string' },
3541
3542
  event_type: { type: 'string' },
3542
3543
  occurred_at: { format: 'date-time', type: 'string' },
@@ -3548,6 +3549,7 @@ export default {
3548
3549
  'workspace_id',
3549
3550
  'created_at',
3550
3551
  'occurred_at',
3552
+ 'event_description',
3551
3553
  ],
3552
3554
  type: 'object',
3553
3555
  },
@@ -6596,13 +6598,18 @@ export default {
6596
6598
  },
6597
6599
  '/acs/systems/get': {
6598
6600
  post: {
6601
+ description: 'Returns a specified [access control system](https://docs.seam.co/latest/capability-guides/access-systems).\n\nSpecify the desired access control system by including the corresponding `acs_system_id` in the request body.',
6599
6602
  operationId: 'acsSystemsGetPost',
6600
6603
  requestBody: {
6601
6604
  content: {
6602
6605
  'application/json': {
6603
6606
  schema: {
6604
6607
  properties: {
6605
- acs_system_id: { format: 'uuid', type: 'string' },
6608
+ acs_system_id: {
6609
+ description: 'ID of the desired access control system.',
6610
+ format: 'uuid',
6611
+ type: 'string',
6612
+ },
6606
6613
  },
6607
6614
  required: ['acs_system_id'],
6608
6615
  type: 'object',
@@ -6639,6 +6646,8 @@ export default {
6639
6646
  'x-fern-sdk-group-name': ['acs', 'systems'],
6640
6647
  'x-fern-sdk-method-name': 'get',
6641
6648
  'x-fern-sdk-return-value': 'acs_system',
6649
+ 'x-response-key': 'acs_system',
6650
+ 'x-title': 'Get an ACS System',
6642
6651
  },
6643
6652
  },
6644
6653
  '/acs/systems/list': {