@seamapi/types 1.631.0 → 1.632.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 +82 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +186 -0
- package/dist/index.cjs +82 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +119 -0
- package/lib/seam/connect/openapi.js +80 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +67 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +80 -0
- package/src/lib/seam/connect/route-types.ts +67 -0
package/dist/connect.cjs
CHANGED
|
@@ -34110,7 +34110,8 @@ var openapi_default = {
|
|
|
34110
34110
|
security: [
|
|
34111
34111
|
{ pat_with_workspace: [] },
|
|
34112
34112
|
{ console_session_with_workspace: [] },
|
|
34113
|
-
{ api_key: [] }
|
|
34113
|
+
{ api_key: [] },
|
|
34114
|
+
{ client_session_with_customer: [] }
|
|
34114
34115
|
],
|
|
34115
34116
|
summary: "/access_methods/get_related",
|
|
34116
34117
|
tags: [],
|
|
@@ -34345,7 +34346,8 @@ var openapi_default = {
|
|
|
34345
34346
|
security: [
|
|
34346
34347
|
{ pat_with_workspace: [] },
|
|
34347
34348
|
{ console_session_with_workspace: [] },
|
|
34348
|
-
{ api_key: [] }
|
|
34349
|
+
{ api_key: [] },
|
|
34350
|
+
{ client_session_with_customer: [] }
|
|
34349
34351
|
],
|
|
34350
34352
|
summary: "/access_methods/get_related",
|
|
34351
34353
|
tags: [],
|
|
@@ -52868,6 +52870,84 @@ var openapi_default = {
|
|
|
52868
52870
|
"x-undocumented": "Internal endpoint for Console"
|
|
52869
52871
|
}
|
|
52870
52872
|
},
|
|
52873
|
+
"/seam/customer/v1/access_grants/list": {
|
|
52874
|
+
get: {
|
|
52875
|
+
description: "Gets an Access Grant.",
|
|
52876
|
+
operationId: "seamCustomerV1AccessGrantsListGet",
|
|
52877
|
+
parameters: [],
|
|
52878
|
+
responses: {
|
|
52879
|
+
200: {
|
|
52880
|
+
content: {
|
|
52881
|
+
"application/json": {
|
|
52882
|
+
schema: {
|
|
52883
|
+
properties: {
|
|
52884
|
+
access_grants: {
|
|
52885
|
+
items: { $ref: "#/components/schemas/access_grant" },
|
|
52886
|
+
type: "array"
|
|
52887
|
+
},
|
|
52888
|
+
ok: { type: "boolean" }
|
|
52889
|
+
},
|
|
52890
|
+
required: ["access_grants", "ok"],
|
|
52891
|
+
type: "object"
|
|
52892
|
+
}
|
|
52893
|
+
}
|
|
52894
|
+
},
|
|
52895
|
+
description: "OK"
|
|
52896
|
+
},
|
|
52897
|
+
400: { description: "Bad Request" },
|
|
52898
|
+
401: { description: "Unauthorized" }
|
|
52899
|
+
},
|
|
52900
|
+
security: [{ client_session_with_customer: [] }],
|
|
52901
|
+
summary: "/seam/customer/v1/access_grants/list",
|
|
52902
|
+
tags: [],
|
|
52903
|
+
"x-fern-sdk-group-name": ["seam", "customer", "v1", "access_grants"],
|
|
52904
|
+
"x-fern-sdk-method-name": "list",
|
|
52905
|
+
"x-fern-sdk-return-value": "access_grants",
|
|
52906
|
+
"x-response-key": "access_grants",
|
|
52907
|
+
"x-title": "List Access Grants (Other Access)",
|
|
52908
|
+
"x-undocumented": "Internal endpoint for customer portals."
|
|
52909
|
+
},
|
|
52910
|
+
post: {
|
|
52911
|
+
description: "Gets an Access Grant.",
|
|
52912
|
+
operationId: "seamCustomerV1AccessGrantsListPost",
|
|
52913
|
+
requestBody: {
|
|
52914
|
+
content: {
|
|
52915
|
+
"application/json": { schema: { properties: {}, type: "object" } }
|
|
52916
|
+
}
|
|
52917
|
+
},
|
|
52918
|
+
responses: {
|
|
52919
|
+
200: {
|
|
52920
|
+
content: {
|
|
52921
|
+
"application/json": {
|
|
52922
|
+
schema: {
|
|
52923
|
+
properties: {
|
|
52924
|
+
access_grants: {
|
|
52925
|
+
items: { $ref: "#/components/schemas/access_grant" },
|
|
52926
|
+
type: "array"
|
|
52927
|
+
},
|
|
52928
|
+
ok: { type: "boolean" }
|
|
52929
|
+
},
|
|
52930
|
+
required: ["access_grants", "ok"],
|
|
52931
|
+
type: "object"
|
|
52932
|
+
}
|
|
52933
|
+
}
|
|
52934
|
+
},
|
|
52935
|
+
description: "OK"
|
|
52936
|
+
},
|
|
52937
|
+
400: { description: "Bad Request" },
|
|
52938
|
+
401: { description: "Unauthorized" }
|
|
52939
|
+
},
|
|
52940
|
+
security: [{ client_session_with_customer: [] }],
|
|
52941
|
+
summary: "/seam/customer/v1/access_grants/list",
|
|
52942
|
+
tags: [],
|
|
52943
|
+
"x-fern-sdk-group-name": ["seam", "customer", "v1", "access_grants"],
|
|
52944
|
+
"x-fern-sdk-method-name": "list",
|
|
52945
|
+
"x-fern-sdk-return-value": "access_grants",
|
|
52946
|
+
"x-response-key": "access_grants",
|
|
52947
|
+
"x-title": "List Access Grants (Other Access)",
|
|
52948
|
+
"x-undocumented": "Internal endpoint for customer portals."
|
|
52949
|
+
}
|
|
52950
|
+
},
|
|
52871
52951
|
"/seam/customer/v1/automation_runs/list": {
|
|
52872
52952
|
get: {
|
|
52873
52953
|
description: "Returns a list of all automation runs for a workspace or customer.",
|