@seamapi/types 1.90.0 → 1.91.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.90.0",
3
+ "version": "1.91.1",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -8943,6 +8943,39 @@ export default {
8943
8943
  tags: ['/health'],
8944
8944
  'x-fern-ignore': true,
8945
8945
  },
8946
+ post: {
8947
+ operationId: 'healthPost',
8948
+ responses: {
8949
+ 200: {
8950
+ content: {
8951
+ 'application/json': {
8952
+ schema: {
8953
+ properties: {
8954
+ last_service_evaluation_at: { type: 'string' },
8955
+ msg: {
8956
+ enum: ['I’m one with the Force. The Force is with me.'],
8957
+ type: 'string',
8958
+ },
8959
+ ok: { type: 'boolean' },
8960
+ service_health_statuses: {
8961
+ items: { $ref: '#/components/schemas/service_health' },
8962
+ type: 'array',
8963
+ },
8964
+ },
8965
+ required: ['ok', 'msg', 'service_health_statuses'],
8966
+ type: 'object',
8967
+ },
8968
+ },
8969
+ },
8970
+ description: 'OK',
8971
+ },
8972
+ 400: { description: 'Bad Request' },
8973
+ 401: { description: 'Unauthorized' },
8974
+ },
8975
+ summary: '/health',
8976
+ tags: ['/health'],
8977
+ 'x-fern-ignore': true,
8978
+ },
8946
8979
  },
8947
8980
  '/health/get_health': {
8948
8981
  get: {
@@ -8976,6 +9009,39 @@ export default {
8976
9009
  },
8977
9010
  summary: '/health/get_health',
8978
9011
  tags: ['/health'],
9012
+ 'x-fern-ignore': true,
9013
+ },
9014
+ post: {
9015
+ operationId: 'healthGetHealthPost',
9016
+ responses: {
9017
+ 200: {
9018
+ content: {
9019
+ 'application/json': {
9020
+ schema: {
9021
+ properties: {
9022
+ last_service_evaluation_at: { type: 'string' },
9023
+ msg: {
9024
+ enum: ['I’m one with the Force. The Force is with me.'],
9025
+ type: 'string',
9026
+ },
9027
+ ok: { type: 'boolean' },
9028
+ service_health_statuses: {
9029
+ items: { $ref: '#/components/schemas/service_health' },
9030
+ type: 'array',
9031
+ },
9032
+ },
9033
+ required: ['ok', 'msg', 'service_health_statuses'],
9034
+ type: 'object',
9035
+ },
9036
+ },
9037
+ },
9038
+ description: 'OK',
9039
+ },
9040
+ 400: { description: 'Bad Request' },
9041
+ 401: { description: 'Unauthorized' },
9042
+ },
9043
+ summary: '/health/get_health',
9044
+ tags: ['/health'],
8979
9045
  'x-fern-sdk-group-name': ['health'],
8980
9046
  'x-fern-sdk-method-name': 'get_health',
8981
9047
  },