@seamapi/types 1.410.2 → 1.411.1
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 +197 -819
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +459 -1036
- package/lib/seam/connect/internal/schemas.d.ts +1 -1
- package/lib/seam/connect/internal/schemas.js +1 -1
- package/lib/seam/connect/internal/schemas.js.map +1 -1
- package/lib/seam/connect/models/partner/magic-link.d.ts +4 -4
- package/lib/seam/connect/models/partner/magic-link.js +1 -0
- package/lib/seam/connect/models/partner/magic-link.js.map +1 -1
- package/lib/seam/connect/models/partner/resources.d.ts +17 -0
- package/lib/seam/connect/models/partner/resources.js +11 -0
- package/lib/seam/connect/models/partner/resources.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +178 -745
- package/lib/seam/connect/openapi.js +193 -816
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -22
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +1 -0
- package/src/lib/seam/connect/models/partner/magic-link.ts +1 -0
- package/src/lib/seam/connect/models/partner/resources.ts +15 -0
- package/src/lib/seam/connect/openapi.ts +207 -904
- package/src/lib/seam/connect/route-types.ts +26 -31
|
@@ -66814,6 +66814,7 @@ export interface Routes {
|
|
|
66814
66814
|
| 'connect_accounts'
|
|
66815
66815
|
| 'manage_devices'
|
|
66816
66816
|
| 'organize_spaces'
|
|
66817
|
+
| 'console'
|
|
66817
66818
|
customer_key: string
|
|
66818
66819
|
expires_at: string
|
|
66819
66820
|
workspace_id: string
|
|
@@ -66826,34 +66827,25 @@ export interface Routes {
|
|
|
66826
66827
|
method: 'POST' | 'GET'
|
|
66827
66828
|
queryParams: {}
|
|
66828
66829
|
jsonBody: {}
|
|
66829
|
-
commonParams:
|
|
66830
|
-
|
|
66831
|
-
|
|
66832
|
-
|
|
66833
|
-
|
|
66834
|
-
|
|
66835
|
-
|
|
66836
|
-
|
|
66837
|
-
|
|
66838
|
-
|
|
66839
|
-
|
|
66840
|
-
|
|
66841
|
-
|
|
66842
|
-
|
|
66843
|
-
|
|
66844
|
-
|
|
66845
|
-
|
|
66846
|
-
|
|
66847
|
-
|
|
66848
|
-
partner_resources?:
|
|
66849
|
-
| Array<{
|
|
66850
|
-
partner_resource_key: string
|
|
66851
|
-
name: string
|
|
66852
|
-
description?: string | undefined
|
|
66853
|
-
custom_metadata?: Record<string, string> | undefined
|
|
66854
|
-
}>
|
|
66855
|
-
| undefined
|
|
66856
|
-
}
|
|
66830
|
+
commonParams: {
|
|
66831
|
+
/** Type of building block to create a magic link for. */
|
|
66832
|
+
building_block_type:
|
|
66833
|
+
| 'connect_accounts'
|
|
66834
|
+
| 'organize_spaces'
|
|
66835
|
+
| 'console'
|
|
66836
|
+
| 'manage_devices'
|
|
66837
|
+
/** Customer key for which you want to create a new building block magic link. */
|
|
66838
|
+
customer_key: string
|
|
66839
|
+
/** Optional list of spaces that you want to include in the new building block magic link. */
|
|
66840
|
+
spaces?:
|
|
66841
|
+
| Array<{
|
|
66842
|
+
space_key: string
|
|
66843
|
+
name: string
|
|
66844
|
+
description?: string | undefined
|
|
66845
|
+
custom_metadata?: Record<string, string> | undefined
|
|
66846
|
+
}>
|
|
66847
|
+
| undefined
|
|
66848
|
+
}
|
|
66857
66849
|
formData: {}
|
|
66858
66850
|
jsonResponse: {
|
|
66859
66851
|
/** */
|
|
@@ -66863,6 +66855,7 @@ export interface Routes {
|
|
|
66863
66855
|
| 'connect_accounts'
|
|
66864
66856
|
| 'manage_devices'
|
|
66865
66857
|
| 'organize_spaces'
|
|
66858
|
+
| 'console'
|
|
66866
66859
|
customer_key: string
|
|
66867
66860
|
expires_at: string
|
|
66868
66861
|
workspace_id: string
|
|
@@ -66888,6 +66881,7 @@ export interface Routes {
|
|
|
66888
66881
|
| 'connect_accounts'
|
|
66889
66882
|
| 'manage_devices'
|
|
66890
66883
|
| 'organize_spaces'
|
|
66884
|
+
| 'console'
|
|
66891
66885
|
customer_key: string
|
|
66892
66886
|
expires_at: string
|
|
66893
66887
|
workspace_id: string
|
|
@@ -66903,10 +66897,10 @@ export interface Routes {
|
|
|
66903
66897
|
commonParams: {
|
|
66904
66898
|
/** Customer key for which you want to organize spaces. */
|
|
66905
66899
|
customer_key: string
|
|
66906
|
-
/** Optional list of
|
|
66907
|
-
|
|
66900
|
+
/** Optional list of spaces that you want to include in the new building block magic link. */
|
|
66901
|
+
spaces?:
|
|
66908
66902
|
| Array<{
|
|
66909
|
-
|
|
66903
|
+
space_key: string
|
|
66910
66904
|
name: string
|
|
66911
66905
|
description?: string | undefined
|
|
66912
66906
|
custom_metadata?: Record<string, string> | undefined
|
|
@@ -66922,6 +66916,7 @@ export interface Routes {
|
|
|
66922
66916
|
| 'connect_accounts'
|
|
66923
66917
|
| 'manage_devices'
|
|
66924
66918
|
| 'organize_spaces'
|
|
66919
|
+
| 'console'
|
|
66925
66920
|
customer_key: string
|
|
66926
66921
|
expires_at: string
|
|
66927
66922
|
workspace_id: string
|