@seamapi/types 1.318.1 → 1.319.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 CHANGED
@@ -12953,6 +12953,11 @@ var openapi_default = {
12953
12953
  scheme: "bearer",
12954
12954
  type: "http"
12955
12955
  },
12956
+ publishable_key: {
12957
+ in: "header",
12958
+ name: "seam-publishable-key",
12959
+ type: "apiKey"
12960
+ },
12956
12961
  seam_client_session_token: {
12957
12962
  in: "header",
12958
12963
  name: "seam-client-session-token",
@@ -19149,6 +19154,12 @@ var openapi_default = {
19149
19154
  400: { description: "Bad Request" },
19150
19155
  401: { description: "Unauthorized" }
19151
19156
  },
19157
+ security: [
19158
+ { publishable_key: [] },
19159
+ { api_key: [] },
19160
+ { pat_with_workspace: [] },
19161
+ { console_session_with_workspace: [] }
19162
+ ],
19152
19163
  summary: "/client_sessions/create",
19153
19164
  tags: ["/client_sessions"],
19154
19165
  "x-fern-sdk-group-name": ["client_sessions"],
@@ -19204,6 +19215,12 @@ var openapi_default = {
19204
19215
  400: { description: "Bad Request" },
19205
19216
  401: { description: "Unauthorized" }
19206
19217
  },
19218
+ security: [
19219
+ { publishable_key: [] },
19220
+ { api_key: [] },
19221
+ { pat_with_workspace: [] },
19222
+ { console_session_with_workspace: [] }
19223
+ ],
19207
19224
  summary: "/client_sessions/create",
19208
19225
  tags: ["/client_sessions"],
19209
19226
  "x-fern-ignore": true,
@@ -19354,65 +19371,18 @@ var openapi_default = {
19354
19371
  400: { description: "Bad Request" },
19355
19372
  401: { description: "Unauthorized" }
19356
19373
  },
19374
+ security: [
19375
+ { publishable_key: [] },
19376
+ { api_key: [] },
19377
+ { pat_with_workspace: [] },
19378
+ { console_session_with_workspace: [] }
19379
+ ],
19357
19380
  summary: "/client_sessions/get_or_create",
19358
19381
  tags: ["/client_sessions"],
19359
19382
  "x-fern-sdk-group-name": ["client_sessions"],
19360
19383
  "x-fern-sdk-method-name": "get_or_create",
19361
19384
  "x-fern-sdk-return-value": "client_session",
19362
19385
  "x-response-key": "client_session"
19363
- },
19364
- put: {
19365
- operationId: "clientSessionsGetOrCreatePut",
19366
- requestBody: {
19367
- content: {
19368
- "application/json": {
19369
- schema: {
19370
- properties: {
19371
- connect_webview_ids: {
19372
- items: { type: "string" },
19373
- type: "array"
19374
- },
19375
- connected_account_ids: {
19376
- items: { type: "string" },
19377
- type: "array"
19378
- },
19379
- expires_at: { format: "date-time", type: "string" },
19380
- user_identifier_key: { minLength: 1, type: "string" },
19381
- user_identity_ids: {
19382
- items: { type: "string" },
19383
- type: "array"
19384
- }
19385
- },
19386
- type: "object"
19387
- }
19388
- }
19389
- }
19390
- },
19391
- responses: {
19392
- 200: {
19393
- content: {
19394
- "application/json": {
19395
- schema: {
19396
- properties: {
19397
- client_session: {
19398
- $ref: "#/components/schemas/client_session"
19399
- },
19400
- ok: { type: "boolean" }
19401
- },
19402
- required: ["client_session", "ok"],
19403
- type: "object"
19404
- }
19405
- }
19406
- },
19407
- description: "OK"
19408
- },
19409
- 400: { description: "Bad Request" },
19410
- 401: { description: "Unauthorized" }
19411
- },
19412
- summary: "/client_sessions/get_or_create",
19413
- tags: ["/client_sessions"],
19414
- "x-fern-ignore": true,
19415
- "x-response-key": "client_session"
19416
19386
  }
19417
19387
  },
19418
19388
  "/client_sessions/grant_access": {