@seamapi/types 1.776.0 → 1.777.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 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +104 -0
- package/dist/index.cjs +82 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +90 -0
- package/lib/seam/connect/openapi.js +82 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +14 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +82 -0
- package/src/lib/seam/connect/route-types.ts +14 -0
package/dist/connect.cjs
CHANGED
|
@@ -62710,6 +62710,88 @@ var openapi_default = {
|
|
|
62710
62710
|
"x-undocumented": "Internal endpoint for Console"
|
|
62711
62711
|
}
|
|
62712
62712
|
},
|
|
62713
|
+
"/seam/console/v1/workspace/feature_flags/list": {
|
|
62714
|
+
get: {
|
|
62715
|
+
description: "Lists workspace feature flags.",
|
|
62716
|
+
operationId: "seamConsoleV1WorkspaceFeatureFlagsListGet",
|
|
62717
|
+
responses: {
|
|
62718
|
+
200: {
|
|
62719
|
+
content: {
|
|
62720
|
+
"application/json": {
|
|
62721
|
+
schema: {
|
|
62722
|
+
properties: {
|
|
62723
|
+
feature_flags: {
|
|
62724
|
+
additionalProperties: { type: "boolean" },
|
|
62725
|
+
type: "object"
|
|
62726
|
+
},
|
|
62727
|
+
ok: { type: "boolean" }
|
|
62728
|
+
},
|
|
62729
|
+
required: ["feature_flags", "ok"],
|
|
62730
|
+
type: "object"
|
|
62731
|
+
}
|
|
62732
|
+
}
|
|
62733
|
+
},
|
|
62734
|
+
description: "OK"
|
|
62735
|
+
},
|
|
62736
|
+
400: { description: "Bad Request" },
|
|
62737
|
+
401: { description: "Unauthorized" }
|
|
62738
|
+
},
|
|
62739
|
+
security: [{ console_session_with_workspace: [] }],
|
|
62740
|
+
summary: "/seam/console/v1/workspace/feature_flags/list",
|
|
62741
|
+
tags: [],
|
|
62742
|
+
"x-fern-sdk-group-name": [
|
|
62743
|
+
"seam",
|
|
62744
|
+
"console",
|
|
62745
|
+
"v1",
|
|
62746
|
+
"workspace",
|
|
62747
|
+
"feature_flags"
|
|
62748
|
+
],
|
|
62749
|
+
"x-fern-sdk-method-name": "list",
|
|
62750
|
+
"x-fern-sdk-return-value": "feature_flags",
|
|
62751
|
+
"x-response-key": "feature_flags",
|
|
62752
|
+
"x-undocumented": "Internal endpoint for Console"
|
|
62753
|
+
},
|
|
62754
|
+
post: {
|
|
62755
|
+
description: "Lists workspace feature flags.",
|
|
62756
|
+
operationId: "seamConsoleV1WorkspaceFeatureFlagsListPost",
|
|
62757
|
+
responses: {
|
|
62758
|
+
200: {
|
|
62759
|
+
content: {
|
|
62760
|
+
"application/json": {
|
|
62761
|
+
schema: {
|
|
62762
|
+
properties: {
|
|
62763
|
+
feature_flags: {
|
|
62764
|
+
additionalProperties: { type: "boolean" },
|
|
62765
|
+
type: "object"
|
|
62766
|
+
},
|
|
62767
|
+
ok: { type: "boolean" }
|
|
62768
|
+
},
|
|
62769
|
+
required: ["feature_flags", "ok"],
|
|
62770
|
+
type: "object"
|
|
62771
|
+
}
|
|
62772
|
+
}
|
|
62773
|
+
},
|
|
62774
|
+
description: "OK"
|
|
62775
|
+
},
|
|
62776
|
+
400: { description: "Bad Request" },
|
|
62777
|
+
401: { description: "Unauthorized" }
|
|
62778
|
+
},
|
|
62779
|
+
security: [{ console_session_with_workspace: [] }],
|
|
62780
|
+
summary: "/seam/console/v1/workspace/feature_flags/list",
|
|
62781
|
+
tags: [],
|
|
62782
|
+
"x-fern-sdk-group-name": [
|
|
62783
|
+
"seam",
|
|
62784
|
+
"console",
|
|
62785
|
+
"v1",
|
|
62786
|
+
"workspace",
|
|
62787
|
+
"feature_flags"
|
|
62788
|
+
],
|
|
62789
|
+
"x-fern-sdk-method-name": "list",
|
|
62790
|
+
"x-fern-sdk-return-value": "feature_flags",
|
|
62791
|
+
"x-response-key": "feature_flags",
|
|
62792
|
+
"x-undocumented": "Internal endpoint for Console"
|
|
62793
|
+
}
|
|
62794
|
+
},
|
|
62713
62795
|
"/seam/customer/v1/access_grants/list": {
|
|
62714
62796
|
get: {
|
|
62715
62797
|
description: "Gets an Access Grant.",
|