@seamapi/types 1.825.0 → 1.826.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 +12 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/index.cjs +12 -3
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +12 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +12 -3
package/package.json
CHANGED
|
@@ -71756,7 +71756,10 @@ const openapi: OpenAPISpec = {
|
|
|
71756
71756
|
400: { description: 'Bad Request' },
|
|
71757
71757
|
401: { description: 'Unauthorized' },
|
|
71758
71758
|
},
|
|
71759
|
-
security: [
|
|
71759
|
+
security: [
|
|
71760
|
+
{ client_session_with_customer: [] },
|
|
71761
|
+
{ console_session_with_workspace: [] },
|
|
71762
|
+
],
|
|
71760
71763
|
summary: '/seam/customer/v1/spaces/create',
|
|
71761
71764
|
tags: [],
|
|
71762
71765
|
'x-draft': 'Early access.',
|
|
@@ -71826,7 +71829,10 @@ const openapi: OpenAPISpec = {
|
|
|
71826
71829
|
400: { description: 'Bad Request' },
|
|
71827
71830
|
401: { description: 'Unauthorized' },
|
|
71828
71831
|
},
|
|
71829
|
-
security: [
|
|
71832
|
+
security: [
|
|
71833
|
+
{ client_session_with_customer: [] },
|
|
71834
|
+
{ console_session_with_workspace: [] },
|
|
71835
|
+
],
|
|
71830
71836
|
summary: '/seam/customer/v1/spaces/list',
|
|
71831
71837
|
tags: [],
|
|
71832
71838
|
'x-draft': 'Early access.',
|
|
@@ -71891,7 +71897,10 @@ const openapi: OpenAPISpec = {
|
|
|
71891
71897
|
400: { description: 'Bad Request' },
|
|
71892
71898
|
401: { description: 'Unauthorized' },
|
|
71893
71899
|
},
|
|
71894
|
-
security: [
|
|
71900
|
+
security: [
|
|
71901
|
+
{ client_session_with_customer: [] },
|
|
71902
|
+
{ console_session_with_workspace: [] },
|
|
71903
|
+
],
|
|
71895
71904
|
summary: '/seam/customer/v1/spaces/list',
|
|
71896
71905
|
tags: [],
|
|
71897
71906
|
'x-draft': 'Early access.',
|