@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
package/dist/connect.d.cts
CHANGED
|
@@ -11884,9 +11884,95 @@ declare const _default: {
|
|
|
11884
11884
|
tags: string[];
|
|
11885
11885
|
'x-fern-ignore': boolean;
|
|
11886
11886
|
};
|
|
11887
|
+
post: {
|
|
11888
|
+
operationId: string;
|
|
11889
|
+
responses: {
|
|
11890
|
+
200: {
|
|
11891
|
+
content: {
|
|
11892
|
+
'application/json': {
|
|
11893
|
+
schema: {
|
|
11894
|
+
properties: {
|
|
11895
|
+
last_service_evaluation_at: {
|
|
11896
|
+
type: string;
|
|
11897
|
+
};
|
|
11898
|
+
msg: {
|
|
11899
|
+
enum: string[];
|
|
11900
|
+
type: string;
|
|
11901
|
+
};
|
|
11902
|
+
ok: {
|
|
11903
|
+
type: string;
|
|
11904
|
+
};
|
|
11905
|
+
service_health_statuses: {
|
|
11906
|
+
items: {
|
|
11907
|
+
$ref: string;
|
|
11908
|
+
};
|
|
11909
|
+
type: string;
|
|
11910
|
+
};
|
|
11911
|
+
};
|
|
11912
|
+
required: string[];
|
|
11913
|
+
type: string;
|
|
11914
|
+
};
|
|
11915
|
+
};
|
|
11916
|
+
};
|
|
11917
|
+
description: string;
|
|
11918
|
+
};
|
|
11919
|
+
400: {
|
|
11920
|
+
description: string;
|
|
11921
|
+
};
|
|
11922
|
+
401: {
|
|
11923
|
+
description: string;
|
|
11924
|
+
};
|
|
11925
|
+
};
|
|
11926
|
+
summary: string;
|
|
11927
|
+
tags: string[];
|
|
11928
|
+
'x-fern-ignore': boolean;
|
|
11929
|
+
};
|
|
11887
11930
|
};
|
|
11888
11931
|
'/health/get_health': {
|
|
11889
11932
|
get: {
|
|
11933
|
+
operationId: string;
|
|
11934
|
+
responses: {
|
|
11935
|
+
200: {
|
|
11936
|
+
content: {
|
|
11937
|
+
'application/json': {
|
|
11938
|
+
schema: {
|
|
11939
|
+
properties: {
|
|
11940
|
+
last_service_evaluation_at: {
|
|
11941
|
+
type: string;
|
|
11942
|
+
};
|
|
11943
|
+
msg: {
|
|
11944
|
+
enum: string[];
|
|
11945
|
+
type: string;
|
|
11946
|
+
};
|
|
11947
|
+
ok: {
|
|
11948
|
+
type: string;
|
|
11949
|
+
};
|
|
11950
|
+
service_health_statuses: {
|
|
11951
|
+
items: {
|
|
11952
|
+
$ref: string;
|
|
11953
|
+
};
|
|
11954
|
+
type: string;
|
|
11955
|
+
};
|
|
11956
|
+
};
|
|
11957
|
+
required: string[];
|
|
11958
|
+
type: string;
|
|
11959
|
+
};
|
|
11960
|
+
};
|
|
11961
|
+
};
|
|
11962
|
+
description: string;
|
|
11963
|
+
};
|
|
11964
|
+
400: {
|
|
11965
|
+
description: string;
|
|
11966
|
+
};
|
|
11967
|
+
401: {
|
|
11968
|
+
description: string;
|
|
11969
|
+
};
|
|
11970
|
+
};
|
|
11971
|
+
summary: string;
|
|
11972
|
+
tags: string[];
|
|
11973
|
+
'x-fern-ignore': boolean;
|
|
11974
|
+
};
|
|
11975
|
+
post: {
|
|
11890
11976
|
operationId: string;
|
|
11891
11977
|
responses: {
|
|
11892
11978
|
200: {
|
|
@@ -19876,7 +19962,7 @@ interface Routes {
|
|
|
19876
19962
|
};
|
|
19877
19963
|
'/health': {
|
|
19878
19964
|
route: '/health';
|
|
19879
|
-
method: 'GET';
|
|
19965
|
+
method: 'GET' | 'POST';
|
|
19880
19966
|
queryParams: {};
|
|
19881
19967
|
jsonBody: {};
|
|
19882
19968
|
commonParams: {};
|
|
@@ -19894,7 +19980,7 @@ interface Routes {
|
|
|
19894
19980
|
};
|
|
19895
19981
|
'/health/get_health': {
|
|
19896
19982
|
route: '/health/get_health';
|
|
19897
|
-
method: 'GET';
|
|
19983
|
+
method: 'GET' | 'POST';
|
|
19898
19984
|
queryParams: {};
|
|
19899
19985
|
jsonBody: {};
|
|
19900
19986
|
commonParams: {};
|
|
@@ -11810,9 +11810,95 @@ declare const _default: {
|
|
|
11810
11810
|
tags: string[];
|
|
11811
11811
|
'x-fern-ignore': boolean;
|
|
11812
11812
|
};
|
|
11813
|
+
post: {
|
|
11814
|
+
operationId: string;
|
|
11815
|
+
responses: {
|
|
11816
|
+
200: {
|
|
11817
|
+
content: {
|
|
11818
|
+
'application/json': {
|
|
11819
|
+
schema: {
|
|
11820
|
+
properties: {
|
|
11821
|
+
last_service_evaluation_at: {
|
|
11822
|
+
type: string;
|
|
11823
|
+
};
|
|
11824
|
+
msg: {
|
|
11825
|
+
enum: string[];
|
|
11826
|
+
type: string;
|
|
11827
|
+
};
|
|
11828
|
+
ok: {
|
|
11829
|
+
type: string;
|
|
11830
|
+
};
|
|
11831
|
+
service_health_statuses: {
|
|
11832
|
+
items: {
|
|
11833
|
+
$ref: string;
|
|
11834
|
+
};
|
|
11835
|
+
type: string;
|
|
11836
|
+
};
|
|
11837
|
+
};
|
|
11838
|
+
required: string[];
|
|
11839
|
+
type: string;
|
|
11840
|
+
};
|
|
11841
|
+
};
|
|
11842
|
+
};
|
|
11843
|
+
description: string;
|
|
11844
|
+
};
|
|
11845
|
+
400: {
|
|
11846
|
+
description: string;
|
|
11847
|
+
};
|
|
11848
|
+
401: {
|
|
11849
|
+
description: string;
|
|
11850
|
+
};
|
|
11851
|
+
};
|
|
11852
|
+
summary: string;
|
|
11853
|
+
tags: string[];
|
|
11854
|
+
'x-fern-ignore': boolean;
|
|
11855
|
+
};
|
|
11813
11856
|
};
|
|
11814
11857
|
'/health/get_health': {
|
|
11815
11858
|
get: {
|
|
11859
|
+
operationId: string;
|
|
11860
|
+
responses: {
|
|
11861
|
+
200: {
|
|
11862
|
+
content: {
|
|
11863
|
+
'application/json': {
|
|
11864
|
+
schema: {
|
|
11865
|
+
properties: {
|
|
11866
|
+
last_service_evaluation_at: {
|
|
11867
|
+
type: string;
|
|
11868
|
+
};
|
|
11869
|
+
msg: {
|
|
11870
|
+
enum: string[];
|
|
11871
|
+
type: string;
|
|
11872
|
+
};
|
|
11873
|
+
ok: {
|
|
11874
|
+
type: string;
|
|
11875
|
+
};
|
|
11876
|
+
service_health_statuses: {
|
|
11877
|
+
items: {
|
|
11878
|
+
$ref: string;
|
|
11879
|
+
};
|
|
11880
|
+
type: string;
|
|
11881
|
+
};
|
|
11882
|
+
};
|
|
11883
|
+
required: string[];
|
|
11884
|
+
type: string;
|
|
11885
|
+
};
|
|
11886
|
+
};
|
|
11887
|
+
};
|
|
11888
|
+
description: string;
|
|
11889
|
+
};
|
|
11890
|
+
400: {
|
|
11891
|
+
description: string;
|
|
11892
|
+
};
|
|
11893
|
+
401: {
|
|
11894
|
+
description: string;
|
|
11895
|
+
};
|
|
11896
|
+
};
|
|
11897
|
+
summary: string;
|
|
11898
|
+
tags: string[];
|
|
11899
|
+
'x-fern-ignore': boolean;
|
|
11900
|
+
};
|
|
11901
|
+
post: {
|
|
11816
11902
|
operationId: string;
|
|
11817
11903
|
responses: {
|
|
11818
11904
|
200: {
|
|
@@ -8851,6 +8851,39 @@ export default {
|
|
|
8851
8851
|
tags: ['/health'],
|
|
8852
8852
|
'x-fern-ignore': true,
|
|
8853
8853
|
},
|
|
8854
|
+
post: {
|
|
8855
|
+
operationId: 'healthPost',
|
|
8856
|
+
responses: {
|
|
8857
|
+
200: {
|
|
8858
|
+
content: {
|
|
8859
|
+
'application/json': {
|
|
8860
|
+
schema: {
|
|
8861
|
+
properties: {
|
|
8862
|
+
last_service_evaluation_at: { type: 'string' },
|
|
8863
|
+
msg: {
|
|
8864
|
+
enum: ['I’m one with the Force. The Force is with me.'],
|
|
8865
|
+
type: 'string',
|
|
8866
|
+
},
|
|
8867
|
+
ok: { type: 'boolean' },
|
|
8868
|
+
service_health_statuses: {
|
|
8869
|
+
items: { $ref: '#/components/schemas/service_health' },
|
|
8870
|
+
type: 'array',
|
|
8871
|
+
},
|
|
8872
|
+
},
|
|
8873
|
+
required: ['ok', 'msg', 'service_health_statuses'],
|
|
8874
|
+
type: 'object',
|
|
8875
|
+
},
|
|
8876
|
+
},
|
|
8877
|
+
},
|
|
8878
|
+
description: 'OK',
|
|
8879
|
+
},
|
|
8880
|
+
400: { description: 'Bad Request' },
|
|
8881
|
+
401: { description: 'Unauthorized' },
|
|
8882
|
+
},
|
|
8883
|
+
summary: '/health',
|
|
8884
|
+
tags: ['/health'],
|
|
8885
|
+
'x-fern-ignore': true,
|
|
8886
|
+
},
|
|
8854
8887
|
},
|
|
8855
8888
|
'/health/get_health': {
|
|
8856
8889
|
get: {
|
|
@@ -8884,6 +8917,39 @@ export default {
|
|
|
8884
8917
|
},
|
|
8885
8918
|
summary: '/health/get_health',
|
|
8886
8919
|
tags: ['/health'],
|
|
8920
|
+
'x-fern-ignore': true,
|
|
8921
|
+
},
|
|
8922
|
+
post: {
|
|
8923
|
+
operationId: 'healthGetHealthPost',
|
|
8924
|
+
responses: {
|
|
8925
|
+
200: {
|
|
8926
|
+
content: {
|
|
8927
|
+
'application/json': {
|
|
8928
|
+
schema: {
|
|
8929
|
+
properties: {
|
|
8930
|
+
last_service_evaluation_at: { type: 'string' },
|
|
8931
|
+
msg: {
|
|
8932
|
+
enum: ['I’m one with the Force. The Force is with me.'],
|
|
8933
|
+
type: 'string',
|
|
8934
|
+
},
|
|
8935
|
+
ok: { type: 'boolean' },
|
|
8936
|
+
service_health_statuses: {
|
|
8937
|
+
items: { $ref: '#/components/schemas/service_health' },
|
|
8938
|
+
type: 'array',
|
|
8939
|
+
},
|
|
8940
|
+
},
|
|
8941
|
+
required: ['ok', 'msg', 'service_health_statuses'],
|
|
8942
|
+
type: 'object',
|
|
8943
|
+
},
|
|
8944
|
+
},
|
|
8945
|
+
},
|
|
8946
|
+
description: 'OK',
|
|
8947
|
+
},
|
|
8948
|
+
400: { description: 'Bad Request' },
|
|
8949
|
+
401: { description: 'Unauthorized' },
|
|
8950
|
+
},
|
|
8951
|
+
summary: '/health/get_health',
|
|
8952
|
+
tags: ['/health'],
|
|
8887
8953
|
'x-fern-sdk-group-name': ['health'],
|
|
8888
8954
|
'x-fern-sdk-method-name': 'get_health',
|
|
8889
8955
|
},
|