@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.
@@ -112244,6 +112244,96 @@ declare const _default: {
112244
112244
  'x-undocumented': string;
112245
112245
  };
112246
112246
  };
112247
+ '/seam/console/v1/workspace/feature_flags/list': {
112248
+ get: {
112249
+ description: string;
112250
+ operationId: string;
112251
+ responses: {
112252
+ 200: {
112253
+ content: {
112254
+ 'application/json': {
112255
+ schema: {
112256
+ properties: {
112257
+ feature_flags: {
112258
+ additionalProperties: {
112259
+ type: string;
112260
+ };
112261
+ type: string;
112262
+ };
112263
+ ok: {
112264
+ type: string;
112265
+ };
112266
+ };
112267
+ required: string[];
112268
+ type: string;
112269
+ };
112270
+ };
112271
+ };
112272
+ description: string;
112273
+ };
112274
+ 400: {
112275
+ description: string;
112276
+ };
112277
+ 401: {
112278
+ description: string;
112279
+ };
112280
+ };
112281
+ security: {
112282
+ console_session_with_workspace: never[];
112283
+ }[];
112284
+ summary: string;
112285
+ tags: never[];
112286
+ 'x-fern-sdk-group-name': string[];
112287
+ 'x-fern-sdk-method-name': string;
112288
+ 'x-fern-sdk-return-value': string;
112289
+ 'x-response-key': string;
112290
+ 'x-undocumented': string;
112291
+ };
112292
+ post: {
112293
+ description: string;
112294
+ operationId: string;
112295
+ responses: {
112296
+ 200: {
112297
+ content: {
112298
+ 'application/json': {
112299
+ schema: {
112300
+ properties: {
112301
+ feature_flags: {
112302
+ additionalProperties: {
112303
+ type: string;
112304
+ };
112305
+ type: string;
112306
+ };
112307
+ ok: {
112308
+ type: string;
112309
+ };
112310
+ };
112311
+ required: string[];
112312
+ type: string;
112313
+ };
112314
+ };
112315
+ };
112316
+ description: string;
112317
+ };
112318
+ 400: {
112319
+ description: string;
112320
+ };
112321
+ 401: {
112322
+ description: string;
112323
+ };
112324
+ };
112325
+ security: {
112326
+ console_session_with_workspace: never[];
112327
+ }[];
112328
+ summary: string;
112329
+ tags: never[];
112330
+ 'x-fern-sdk-group-name': string[];
112331
+ 'x-fern-sdk-method-name': string;
112332
+ 'x-fern-sdk-return-value': string;
112333
+ 'x-response-key': string;
112334
+ 'x-undocumented': string;
112335
+ };
112336
+ };
112247
112337
  '/seam/customer/v1/access_grants/list': {
112248
112338
  get: {
112249
112339
  description: string;
@@ -196144,6 +196234,20 @@ type Routes = {
196144
196234
  };
196145
196235
  maxDuration: undefined;
196146
196236
  };
196237
+ '/seam/console/v1/workspace/feature_flags/list': {
196238
+ route: '/seam/console/v1/workspace/feature_flags/list';
196239
+ method: 'GET' | 'POST';
196240
+ queryParams: {};
196241
+ jsonBody: {};
196242
+ commonParams: {};
196243
+ formData: {};
196244
+ jsonResponse: {
196245
+ feature_flags: {
196246
+ [x: string]: boolean;
196247
+ };
196248
+ };
196249
+ maxDuration: undefined;
196250
+ };
196147
196251
  '/seam/customer/v1/access_grants/list': {
196148
196252
  route: '/seam/customer/v1/access_grants/list';
196149
196253
  method: 'GET' | 'POST';
package/dist/index.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.",