@seamapi/types 1.90.0 → 1.91.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 +66 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +88 -2
- package/lib/seam/connect/openapi.d.ts +86 -0
- package/lib/seam/connect/openapi.js +66 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +66 -0
- package/src/lib/seam/connect/route-types.ts +2 -2
|
@@ -2948,7 +2948,7 @@ export interface Routes {
|
|
|
2948
2948
|
};
|
|
2949
2949
|
'/health': {
|
|
2950
2950
|
route: '/health';
|
|
2951
|
-
method: 'GET';
|
|
2951
|
+
method: 'GET' | 'POST';
|
|
2952
2952
|
queryParams: {};
|
|
2953
2953
|
jsonBody: {};
|
|
2954
2954
|
commonParams: {};
|
|
@@ -2966,7 +2966,7 @@ export interface Routes {
|
|
|
2966
2966
|
};
|
|
2967
2967
|
'/health/get_health': {
|
|
2968
2968
|
route: '/health/get_health';
|
|
2969
|
-
method: 'GET';
|
|
2969
|
+
method: 'GET' | 'POST';
|
|
2970
2970
|
queryParams: {};
|
|
2971
2971
|
jsonBody: {};
|
|
2972
2972
|
commonParams: {};
|
package/package.json
CHANGED
|
@@ -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
|
},
|
|
@@ -3942,7 +3942,7 @@ export interface Routes {
|
|
|
3942
3942
|
}
|
|
3943
3943
|
'/health': {
|
|
3944
3944
|
route: '/health'
|
|
3945
|
-
method: 'GET'
|
|
3945
|
+
method: 'GET' | 'POST'
|
|
3946
3946
|
queryParams: {}
|
|
3947
3947
|
jsonBody: {}
|
|
3948
3948
|
commonParams: {}
|
|
@@ -3960,7 +3960,7 @@ export interface Routes {
|
|
|
3960
3960
|
}
|
|
3961
3961
|
'/health/get_health': {
|
|
3962
3962
|
route: '/health/get_health'
|
|
3963
|
-
method: 'GET'
|
|
3963
|
+
method: 'GET' | 'POST'
|
|
3964
3964
|
queryParams: {}
|
|
3965
3965
|
jsonBody: {}
|
|
3966
3966
|
commonParams: {}
|