@seamapi/types 1.839.0 → 1.841.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 +28 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2 -0
- package/dist/index.cjs +28 -9
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +28 -9
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +28 -9
- package/src/lib/seam/connect/route-types.ts +2 -0
|
@@ -67595,6 +67595,7 @@ export type Routes = {
|
|
|
67595
67595
|
code?: (string | null) | undefined;
|
|
67596
67596
|
instant_key_url?: string | undefined;
|
|
67597
67597
|
}[];
|
|
67598
|
+
connected_account_id: string | null;
|
|
67598
67599
|
last_automation_result: {
|
|
67599
67600
|
success: boolean;
|
|
67600
67601
|
rule: string;
|
|
@@ -67679,6 +67680,7 @@ export type Routes = {
|
|
|
67679
67680
|
space_key: string;
|
|
67680
67681
|
name: string | null;
|
|
67681
67682
|
}[];
|
|
67683
|
+
connected_account_id: string | null;
|
|
67682
67684
|
last_automation_result: {
|
|
67683
67685
|
success: boolean;
|
|
67684
67686
|
rule: string;
|
package/package.json
CHANGED
|
@@ -31963,11 +31963,6 @@ const openapi: OpenAPISpec = {
|
|
|
31963
31963
|
},
|
|
31964
31964
|
},
|
|
31965
31965
|
securitySchemes: {
|
|
31966
|
-
access_token: {
|
|
31967
|
-
bearerFormat: 'API Token',
|
|
31968
|
-
scheme: 'bearer',
|
|
31969
|
-
type: 'http',
|
|
31970
|
-
},
|
|
31971
31966
|
api_key: { bearerFormat: 'API Key', scheme: 'bearer', type: 'http' },
|
|
31972
31967
|
bridge_client_session: {
|
|
31973
31968
|
bearerFormat: 'Bridge Client Session Token',
|
|
@@ -32726,7 +32721,7 @@ const openapi: OpenAPISpec = {
|
|
|
32726
32721
|
},
|
|
32727
32722
|
security: [
|
|
32728
32723
|
{ api_key: [] },
|
|
32729
|
-
{
|
|
32724
|
+
{ pat_with_workspace: [] },
|
|
32730
32725
|
{ console_session_with_workspace: [] },
|
|
32731
32726
|
{ client_session: [] },
|
|
32732
32727
|
{ client_session_with_customer: [] },
|
|
@@ -32792,7 +32787,7 @@ const openapi: OpenAPISpec = {
|
|
|
32792
32787
|
},
|
|
32793
32788
|
security: [
|
|
32794
32789
|
{ api_key: [] },
|
|
32795
|
-
{
|
|
32790
|
+
{ pat_with_workspace: [] },
|
|
32796
32791
|
{ console_session_with_workspace: [] },
|
|
32797
32792
|
{ client_session: [] },
|
|
32798
32793
|
{ client_session_with_customer: [] },
|
|
@@ -45454,7 +45449,7 @@ const openapi: OpenAPISpec = {
|
|
|
45454
45449
|
},
|
|
45455
45450
|
security: [
|
|
45456
45451
|
{ api_key: [] },
|
|
45457
|
-
{
|
|
45452
|
+
{ pat_with_workspace: [] },
|
|
45458
45453
|
{ console_session_with_workspace: [] },
|
|
45459
45454
|
{ client_session_with_customer: [] },
|
|
45460
45455
|
{ client_session: [] },
|
|
@@ -45509,7 +45504,7 @@ const openapi: OpenAPISpec = {
|
|
|
45509
45504
|
},
|
|
45510
45505
|
security: [
|
|
45511
45506
|
{ api_key: [] },
|
|
45512
|
-
{
|
|
45507
|
+
{ pat_with_workspace: [] },
|
|
45513
45508
|
{ console_session_with_workspace: [] },
|
|
45514
45509
|
{ client_session_with_customer: [] },
|
|
45515
45510
|
{ client_session: [] },
|
|
@@ -70209,6 +70204,11 @@ const openapi: OpenAPISpec = {
|
|
|
70209
70204
|
},
|
|
70210
70205
|
type: 'array',
|
|
70211
70206
|
},
|
|
70207
|
+
connected_account_id: {
|
|
70208
|
+
format: 'uuid',
|
|
70209
|
+
nullable: true,
|
|
70210
|
+
type: 'string',
|
|
70211
|
+
},
|
|
70212
70212
|
created_at: { format: 'date-time', type: 'string' },
|
|
70213
70213
|
ends_at: {
|
|
70214
70214
|
format: 'date-time',
|
|
@@ -70321,6 +70321,7 @@ const openapi: OpenAPISpec = {
|
|
|
70321
70321
|
'spaces',
|
|
70322
70322
|
'access_grant_id',
|
|
70323
70323
|
'access_methods',
|
|
70324
|
+
'connected_account_id',
|
|
70324
70325
|
'last_automation_result',
|
|
70325
70326
|
],
|
|
70326
70327
|
type: 'object',
|
|
@@ -70422,6 +70423,11 @@ const openapi: OpenAPISpec = {
|
|
|
70422
70423
|
},
|
|
70423
70424
|
type: 'array',
|
|
70424
70425
|
},
|
|
70426
|
+
connected_account_id: {
|
|
70427
|
+
format: 'uuid',
|
|
70428
|
+
nullable: true,
|
|
70429
|
+
type: 'string',
|
|
70430
|
+
},
|
|
70425
70431
|
created_at: { format: 'date-time', type: 'string' },
|
|
70426
70432
|
ends_at: {
|
|
70427
70433
|
format: 'date-time',
|
|
@@ -70534,6 +70540,7 @@ const openapi: OpenAPISpec = {
|
|
|
70534
70540
|
'spaces',
|
|
70535
70541
|
'access_grant_id',
|
|
70536
70542
|
'access_methods',
|
|
70543
|
+
'connected_account_id',
|
|
70537
70544
|
'last_automation_result',
|
|
70538
70545
|
],
|
|
70539
70546
|
type: 'object',
|
|
@@ -70734,6 +70741,11 @@ const openapi: OpenAPISpec = {
|
|
|
70734
70741
|
},
|
|
70735
70742
|
type: 'array',
|
|
70736
70743
|
},
|
|
70744
|
+
connected_account_id: {
|
|
70745
|
+
format: 'uuid',
|
|
70746
|
+
nullable: true,
|
|
70747
|
+
type: 'string',
|
|
70748
|
+
},
|
|
70737
70749
|
created_at: { format: 'date-time', type: 'string' },
|
|
70738
70750
|
ends_at: {
|
|
70739
70751
|
format: 'date-time',
|
|
@@ -70859,6 +70871,7 @@ const openapi: OpenAPISpec = {
|
|
|
70859
70871
|
'pending_mutations',
|
|
70860
70872
|
'access_methods',
|
|
70861
70873
|
'spaces',
|
|
70874
|
+
'connected_account_id',
|
|
70862
70875
|
'last_automation_result',
|
|
70863
70876
|
],
|
|
70864
70877
|
type: 'object',
|
|
@@ -71033,6 +71046,11 @@ const openapi: OpenAPISpec = {
|
|
|
71033
71046
|
},
|
|
71034
71047
|
type: 'array',
|
|
71035
71048
|
},
|
|
71049
|
+
connected_account_id: {
|
|
71050
|
+
format: 'uuid',
|
|
71051
|
+
nullable: true,
|
|
71052
|
+
type: 'string',
|
|
71053
|
+
},
|
|
71036
71054
|
created_at: { format: 'date-time', type: 'string' },
|
|
71037
71055
|
ends_at: {
|
|
71038
71056
|
format: 'date-time',
|
|
@@ -71158,6 +71176,7 @@ const openapi: OpenAPISpec = {
|
|
|
71158
71176
|
'pending_mutations',
|
|
71159
71177
|
'access_methods',
|
|
71160
71178
|
'spaces',
|
|
71179
|
+
'connected_account_id',
|
|
71161
71180
|
'last_automation_result',
|
|
71162
71181
|
],
|
|
71163
71182
|
type: 'object',
|
|
@@ -80837,6 +80837,7 @@ export type Routes = {
|
|
|
80837
80837
|
code?: (string | null) | undefined
|
|
80838
80838
|
instant_key_url?: string | undefined
|
|
80839
80839
|
}[]
|
|
80840
|
+
connected_account_id: string | null
|
|
80840
80841
|
last_automation_result: {
|
|
80841
80842
|
success: boolean
|
|
80842
80843
|
rule: string
|
|
@@ -80921,6 +80922,7 @@ export type Routes = {
|
|
|
80921
80922
|
space_key: string
|
|
80922
80923
|
name: string | null
|
|
80923
80924
|
}[]
|
|
80925
|
+
connected_account_id: string | null
|
|
80924
80926
|
last_automation_result: {
|
|
80925
80927
|
success: boolean
|
|
80926
80928
|
rule: string
|