@seamapi/types 1.406.5 → 1.406.7
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 +75 -175
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +140 -241
- 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/client-sessions/client-session.d.ts +3 -0
- package/lib/seam/connect/models/client-sessions/client-session.js +4 -3
- package/lib/seam/connect/models/client-sessions/client-session.js.map +1 -1
- package/lib/seam/connect/models/partner/index.d.ts +1 -0
- package/lib/seam/connect/models/partner/index.js +1 -0
- package/lib/seam/connect/models/partner/index.js.map +1 -1
- package/lib/seam/connect/models/partner/magic-link.d.ts +27 -0
- package/lib/seam/connect/models/partner/magic-link.js +16 -0
- package/lib/seam/connect/models/partner/magic-link.js.map +1 -0
- package/lib/seam/connect/models/partner/resources.d.ts +2 -2
- package/lib/seam/connect/models/partner/resources.js +6 -1
- package/lib/seam/connect/models/partner/resources.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +116 -198
- package/lib/seam/connect/openapi.js +68 -169
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +21 -43
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +2 -0
- package/src/lib/seam/connect/models/client-sessions/client-session.ts +4 -3
- package/src/lib/seam/connect/models/partner/index.ts +1 -0
- package/src/lib/seam/connect/models/partner/magic-link.ts +18 -0
- package/src/lib/seam/connect/models/partner/resources.ts +6 -1
- package/src/lib/seam/connect/openapi.ts +68 -179
- package/src/lib/seam/connect/route-types.ts +21 -46
package/dist/connect.d.cts
CHANGED
|
@@ -10277,6 +10277,7 @@ declare const client_session: z.ZodObject<{
|
|
|
10277
10277
|
token: z.ZodString;
|
|
10278
10278
|
user_identifier_key: z.ZodNullable<z.ZodString>;
|
|
10279
10279
|
device_count: z.ZodNumber;
|
|
10280
|
+
customer_id: z.ZodOptional<z.ZodString>;
|
|
10280
10281
|
connected_account_ids: z.ZodArray<z.ZodString, "many">;
|
|
10281
10282
|
connect_webview_ids: z.ZodArray<z.ZodString, "many">;
|
|
10282
10283
|
user_identity_ids: z.ZodArray<z.ZodString, "many">;
|
|
@@ -10291,6 +10292,7 @@ declare const client_session: z.ZodObject<{
|
|
|
10291
10292
|
device_count: number;
|
|
10292
10293
|
connect_webview_ids: string[];
|
|
10293
10294
|
user_identity_ids: string[];
|
|
10295
|
+
customer_id?: string | undefined;
|
|
10294
10296
|
}, {
|
|
10295
10297
|
workspace_id: string;
|
|
10296
10298
|
created_at: string;
|
|
@@ -10302,6 +10304,7 @@ declare const client_session: z.ZodObject<{
|
|
|
10302
10304
|
device_count: number;
|
|
10303
10305
|
connect_webview_ids: string[];
|
|
10304
10306
|
user_identity_ids: string[];
|
|
10307
|
+
customer_id?: string | undefined;
|
|
10305
10308
|
}>;
|
|
10306
10309
|
type ClientSession = z.infer<typeof client_session>;
|
|
10307
10310
|
|
|
@@ -24193,6 +24196,10 @@ declare const _default: {
|
|
|
24193
24196
|
format: string;
|
|
24194
24197
|
type: string;
|
|
24195
24198
|
};
|
|
24199
|
+
customer_id: {
|
|
24200
|
+
format: string;
|
|
24201
|
+
type: string;
|
|
24202
|
+
};
|
|
24196
24203
|
device_count: {
|
|
24197
24204
|
format: string;
|
|
24198
24205
|
type: string;
|
|
@@ -29996,6 +30003,41 @@ declare const _default: {
|
|
|
29996
30003
|
'x-route-path': string;
|
|
29997
30004
|
'x-undocumented': string;
|
|
29998
30005
|
};
|
|
30006
|
+
magic_link: {
|
|
30007
|
+
properties: {
|
|
30008
|
+
building_block_type: {
|
|
30009
|
+
enum: string[];
|
|
30010
|
+
type: string;
|
|
30011
|
+
};
|
|
30012
|
+
created_at: {
|
|
30013
|
+
format: string;
|
|
30014
|
+
type: string;
|
|
30015
|
+
};
|
|
30016
|
+
customer_id: {
|
|
30017
|
+
format: string;
|
|
30018
|
+
type: string;
|
|
30019
|
+
};
|
|
30020
|
+
customer_key: {
|
|
30021
|
+
type: string;
|
|
30022
|
+
};
|
|
30023
|
+
expires_at: {
|
|
30024
|
+
format: string;
|
|
30025
|
+
type: string;
|
|
30026
|
+
};
|
|
30027
|
+
url: {
|
|
30028
|
+
format: string;
|
|
30029
|
+
type: string;
|
|
30030
|
+
};
|
|
30031
|
+
workspace_id: {
|
|
30032
|
+
format: string;
|
|
30033
|
+
type: string;
|
|
30034
|
+
};
|
|
30035
|
+
};
|
|
30036
|
+
required: string[];
|
|
30037
|
+
type: string;
|
|
30038
|
+
'x-route-path': string;
|
|
30039
|
+
'x-undocumented': string;
|
|
30040
|
+
};
|
|
29999
30041
|
network: {
|
|
30000
30042
|
properties: {
|
|
30001
30043
|
created_at: {
|
|
@@ -32287,17 +32329,17 @@ declare const _default: {
|
|
|
32287
32329
|
name: string;
|
|
32288
32330
|
type: string;
|
|
32289
32331
|
};
|
|
32290
|
-
|
|
32332
|
+
client_session_with_customer: {
|
|
32291
32333
|
bearerFormat: string;
|
|
32292
32334
|
scheme: string;
|
|
32293
32335
|
type: string;
|
|
32294
32336
|
};
|
|
32295
|
-
|
|
32337
|
+
console_session_with_workspace: {
|
|
32296
32338
|
bearerFormat: string;
|
|
32297
32339
|
scheme: string;
|
|
32298
32340
|
type: string;
|
|
32299
32341
|
};
|
|
32300
|
-
|
|
32342
|
+
console_session_without_workspace: {
|
|
32301
32343
|
bearerFormat: string;
|
|
32302
32344
|
scheme: string;
|
|
32303
32345
|
type: string;
|
|
@@ -40679,12 +40721,12 @@ declare const _default: {
|
|
|
40679
40721
|
};
|
|
40680
40722
|
security: ({
|
|
40681
40723
|
client_session: never[];
|
|
40682
|
-
|
|
40724
|
+
client_session_with_customer?: never;
|
|
40683
40725
|
pat_with_workspace?: never;
|
|
40684
40726
|
console_session_with_workspace?: never;
|
|
40685
40727
|
api_key?: never;
|
|
40686
40728
|
} | {
|
|
40687
|
-
|
|
40729
|
+
client_session_with_customer: never[];
|
|
40688
40730
|
client_session?: never;
|
|
40689
40731
|
pat_with_workspace?: never;
|
|
40690
40732
|
console_session_with_workspace?: never;
|
|
@@ -40692,19 +40734,19 @@ declare const _default: {
|
|
|
40692
40734
|
} | {
|
|
40693
40735
|
pat_with_workspace: never[];
|
|
40694
40736
|
client_session?: never;
|
|
40695
|
-
|
|
40737
|
+
client_session_with_customer?: never;
|
|
40696
40738
|
console_session_with_workspace?: never;
|
|
40697
40739
|
api_key?: never;
|
|
40698
40740
|
} | {
|
|
40699
40741
|
console_session_with_workspace: never[];
|
|
40700
40742
|
client_session?: never;
|
|
40701
|
-
|
|
40743
|
+
client_session_with_customer?: never;
|
|
40702
40744
|
pat_with_workspace?: never;
|
|
40703
40745
|
api_key?: never;
|
|
40704
40746
|
} | {
|
|
40705
40747
|
api_key: never[];
|
|
40706
40748
|
client_session?: never;
|
|
40707
|
-
|
|
40749
|
+
client_session_with_customer?: never;
|
|
40708
40750
|
pat_with_workspace?: never;
|
|
40709
40751
|
console_session_with_workspace?: never;
|
|
40710
40752
|
})[];
|
|
@@ -40833,12 +40875,12 @@ declare const _default: {
|
|
|
40833
40875
|
};
|
|
40834
40876
|
security: ({
|
|
40835
40877
|
client_session: never[];
|
|
40836
|
-
|
|
40878
|
+
client_session_with_customer?: never;
|
|
40837
40879
|
pat_with_workspace?: never;
|
|
40838
40880
|
console_session_with_workspace?: never;
|
|
40839
40881
|
api_key?: never;
|
|
40840
40882
|
} | {
|
|
40841
|
-
|
|
40883
|
+
client_session_with_customer: never[];
|
|
40842
40884
|
client_session?: never;
|
|
40843
40885
|
pat_with_workspace?: never;
|
|
40844
40886
|
console_session_with_workspace?: never;
|
|
@@ -40846,19 +40888,19 @@ declare const _default: {
|
|
|
40846
40888
|
} | {
|
|
40847
40889
|
pat_with_workspace: never[];
|
|
40848
40890
|
client_session?: never;
|
|
40849
|
-
|
|
40891
|
+
client_session_with_customer?: never;
|
|
40850
40892
|
console_session_with_workspace?: never;
|
|
40851
40893
|
api_key?: never;
|
|
40852
40894
|
} | {
|
|
40853
40895
|
console_session_with_workspace: never[];
|
|
40854
40896
|
client_session?: never;
|
|
40855
|
-
|
|
40897
|
+
client_session_with_customer?: never;
|
|
40856
40898
|
pat_with_workspace?: never;
|
|
40857
40899
|
api_key?: never;
|
|
40858
40900
|
} | {
|
|
40859
40901
|
api_key: never[];
|
|
40860
40902
|
client_session?: never;
|
|
40861
|
-
|
|
40903
|
+
client_session_with_customer?: never;
|
|
40862
40904
|
pat_with_workspace?: never;
|
|
40863
40905
|
console_session_with_workspace?: never;
|
|
40864
40906
|
})[];
|
|
@@ -40889,7 +40931,10 @@ declare const _default: {
|
|
|
40889
40931
|
description: string;
|
|
40890
40932
|
type: string;
|
|
40891
40933
|
};
|
|
40892
|
-
|
|
40934
|
+
customer_ids: {
|
|
40935
|
+
items: {
|
|
40936
|
+
type: string;
|
|
40937
|
+
};
|
|
40893
40938
|
type: string;
|
|
40894
40939
|
};
|
|
40895
40940
|
limit: {
|
|
@@ -40940,12 +40985,12 @@ declare const _default: {
|
|
|
40940
40985
|
};
|
|
40941
40986
|
security: ({
|
|
40942
40987
|
client_session: never[];
|
|
40943
|
-
|
|
40988
|
+
client_session_with_customer?: never;
|
|
40944
40989
|
pat_with_workspace?: never;
|
|
40945
40990
|
console_session_with_workspace?: never;
|
|
40946
40991
|
api_key?: never;
|
|
40947
40992
|
} | {
|
|
40948
|
-
|
|
40993
|
+
client_session_with_customer: never[];
|
|
40949
40994
|
client_session?: never;
|
|
40950
40995
|
pat_with_workspace?: never;
|
|
40951
40996
|
console_session_with_workspace?: never;
|
|
@@ -40953,19 +40998,19 @@ declare const _default: {
|
|
|
40953
40998
|
} | {
|
|
40954
40999
|
pat_with_workspace: never[];
|
|
40955
41000
|
client_session?: never;
|
|
40956
|
-
|
|
41001
|
+
client_session_with_customer?: never;
|
|
40957
41002
|
console_session_with_workspace?: never;
|
|
40958
41003
|
api_key?: never;
|
|
40959
41004
|
} | {
|
|
40960
41005
|
console_session_with_workspace: never[];
|
|
40961
41006
|
client_session?: never;
|
|
40962
|
-
|
|
41007
|
+
client_session_with_customer?: never;
|
|
40963
41008
|
pat_with_workspace?: never;
|
|
40964
41009
|
api_key?: never;
|
|
40965
41010
|
} | {
|
|
40966
41011
|
api_key: never[];
|
|
40967
41012
|
client_session?: never;
|
|
40968
|
-
|
|
41013
|
+
client_session_with_customer?: never;
|
|
40969
41014
|
pat_with_workspace?: never;
|
|
40970
41015
|
console_session_with_workspace?: never;
|
|
40971
41016
|
})[];
|
|
@@ -41032,19 +41077,19 @@ declare const _default: {
|
|
|
41032
41077
|
api_key: never[];
|
|
41033
41078
|
pat_with_workspace?: never;
|
|
41034
41079
|
console_session_with_workspace?: never;
|
|
41035
|
-
|
|
41080
|
+
client_session_with_customer?: never;
|
|
41036
41081
|
} | {
|
|
41037
41082
|
pat_with_workspace: never[];
|
|
41038
41083
|
api_key?: never;
|
|
41039
41084
|
console_session_with_workspace?: never;
|
|
41040
|
-
|
|
41085
|
+
client_session_with_customer?: never;
|
|
41041
41086
|
} | {
|
|
41042
41087
|
console_session_with_workspace: never[];
|
|
41043
41088
|
api_key?: never;
|
|
41044
41089
|
pat_with_workspace?: never;
|
|
41045
|
-
|
|
41090
|
+
client_session_with_customer?: never;
|
|
41046
41091
|
} | {
|
|
41047
|
-
|
|
41092
|
+
client_session_with_customer: never[];
|
|
41048
41093
|
api_key?: never;
|
|
41049
41094
|
pat_with_workspace?: never;
|
|
41050
41095
|
console_session_with_workspace?: never;
|
|
@@ -41233,19 +41278,19 @@ declare const _default: {
|
|
|
41233
41278
|
api_key: never[];
|
|
41234
41279
|
pat_with_workspace?: never;
|
|
41235
41280
|
console_session_with_workspace?: never;
|
|
41236
|
-
|
|
41281
|
+
client_session_with_customer?: never;
|
|
41237
41282
|
} | {
|
|
41238
41283
|
pat_with_workspace: never[];
|
|
41239
41284
|
api_key?: never;
|
|
41240
41285
|
console_session_with_workspace?: never;
|
|
41241
|
-
|
|
41286
|
+
client_session_with_customer?: never;
|
|
41242
41287
|
} | {
|
|
41243
41288
|
console_session_with_workspace: never[];
|
|
41244
41289
|
api_key?: never;
|
|
41245
41290
|
pat_with_workspace?: never;
|
|
41246
|
-
|
|
41291
|
+
client_session_with_customer?: never;
|
|
41247
41292
|
} | {
|
|
41248
|
-
|
|
41293
|
+
client_session_with_customer: never[];
|
|
41249
41294
|
api_key?: never;
|
|
41250
41295
|
pat_with_workspace?: never;
|
|
41251
41296
|
console_session_with_workspace?: never;
|
|
@@ -41533,12 +41578,12 @@ declare const _default: {
|
|
|
41533
41578
|
};
|
|
41534
41579
|
security: ({
|
|
41535
41580
|
client_session: never[];
|
|
41536
|
-
|
|
41581
|
+
client_session_with_customer?: never;
|
|
41537
41582
|
pat_with_workspace?: never;
|
|
41538
41583
|
console_session_with_workspace?: never;
|
|
41539
41584
|
api_key?: never;
|
|
41540
41585
|
} | {
|
|
41541
|
-
|
|
41586
|
+
client_session_with_customer: never[];
|
|
41542
41587
|
client_session?: never;
|
|
41543
41588
|
pat_with_workspace?: never;
|
|
41544
41589
|
console_session_with_workspace?: never;
|
|
@@ -41546,19 +41591,19 @@ declare const _default: {
|
|
|
41546
41591
|
} | {
|
|
41547
41592
|
pat_with_workspace: never[];
|
|
41548
41593
|
client_session?: never;
|
|
41549
|
-
|
|
41594
|
+
client_session_with_customer?: never;
|
|
41550
41595
|
console_session_with_workspace?: never;
|
|
41551
41596
|
api_key?: never;
|
|
41552
41597
|
} | {
|
|
41553
41598
|
console_session_with_workspace: never[];
|
|
41554
41599
|
client_session?: never;
|
|
41555
|
-
|
|
41600
|
+
client_session_with_customer?: never;
|
|
41556
41601
|
pat_with_workspace?: never;
|
|
41557
41602
|
api_key?: never;
|
|
41558
41603
|
} | {
|
|
41559
41604
|
api_key: never[];
|
|
41560
41605
|
client_session?: never;
|
|
41561
|
-
|
|
41606
|
+
client_session_with_customer?: never;
|
|
41562
41607
|
pat_with_workspace?: never;
|
|
41563
41608
|
console_session_with_workspace?: never;
|
|
41564
41609
|
})[];
|
|
@@ -41729,32 +41774,32 @@ declare const _default: {
|
|
|
41729
41774
|
};
|
|
41730
41775
|
};
|
|
41731
41776
|
security: ({
|
|
41732
|
-
|
|
41777
|
+
client_session_with_customer: never[];
|
|
41733
41778
|
client_session?: never;
|
|
41734
41779
|
pat_with_workspace?: never;
|
|
41735
41780
|
console_session_with_workspace?: never;
|
|
41736
41781
|
api_key?: never;
|
|
41737
41782
|
} | {
|
|
41738
41783
|
client_session: never[];
|
|
41739
|
-
|
|
41784
|
+
client_session_with_customer?: never;
|
|
41740
41785
|
pat_with_workspace?: never;
|
|
41741
41786
|
console_session_with_workspace?: never;
|
|
41742
41787
|
api_key?: never;
|
|
41743
41788
|
} | {
|
|
41744
41789
|
pat_with_workspace: never[];
|
|
41745
|
-
|
|
41790
|
+
client_session_with_customer?: never;
|
|
41746
41791
|
client_session?: never;
|
|
41747
41792
|
console_session_with_workspace?: never;
|
|
41748
41793
|
api_key?: never;
|
|
41749
41794
|
} | {
|
|
41750
41795
|
console_session_with_workspace: never[];
|
|
41751
|
-
|
|
41796
|
+
client_session_with_customer?: never;
|
|
41752
41797
|
client_session?: never;
|
|
41753
41798
|
pat_with_workspace?: never;
|
|
41754
41799
|
api_key?: never;
|
|
41755
41800
|
} | {
|
|
41756
41801
|
api_key: never[];
|
|
41757
|
-
|
|
41802
|
+
client_session_with_customer?: never;
|
|
41758
41803
|
client_session?: never;
|
|
41759
41804
|
pat_with_workspace?: never;
|
|
41760
41805
|
console_session_with_workspace?: never;
|
|
@@ -42902,27 +42947,27 @@ declare const _default: {
|
|
|
42902
42947
|
api_key?: never;
|
|
42903
42948
|
pat_with_workspace?: never;
|
|
42904
42949
|
console_session_with_workspace?: never;
|
|
42905
|
-
|
|
42950
|
+
client_session_with_customer?: never;
|
|
42906
42951
|
} | {
|
|
42907
42952
|
api_key: never[];
|
|
42908
42953
|
client_session?: never;
|
|
42909
42954
|
pat_with_workspace?: never;
|
|
42910
42955
|
console_session_with_workspace?: never;
|
|
42911
|
-
|
|
42956
|
+
client_session_with_customer?: never;
|
|
42912
42957
|
} | {
|
|
42913
42958
|
pat_with_workspace: never[];
|
|
42914
42959
|
client_session?: never;
|
|
42915
42960
|
api_key?: never;
|
|
42916
42961
|
console_session_with_workspace?: never;
|
|
42917
|
-
|
|
42962
|
+
client_session_with_customer?: never;
|
|
42918
42963
|
} | {
|
|
42919
42964
|
console_session_with_workspace: never[];
|
|
42920
42965
|
client_session?: never;
|
|
42921
42966
|
api_key?: never;
|
|
42922
42967
|
pat_with_workspace?: never;
|
|
42923
|
-
|
|
42968
|
+
client_session_with_customer?: never;
|
|
42924
42969
|
} | {
|
|
42925
|
-
|
|
42970
|
+
client_session_with_customer: never[];
|
|
42926
42971
|
client_session?: never;
|
|
42927
42972
|
api_key?: never;
|
|
42928
42973
|
pat_with_workspace?: never;
|
|
@@ -46224,6 +46269,8 @@ declare const _default: {
|
|
|
46224
46269
|
};
|
|
46225
46270
|
required: string[];
|
|
46226
46271
|
type: string;
|
|
46272
|
+
'x-route-path': string;
|
|
46273
|
+
'x-undocumented': string;
|
|
46227
46274
|
};
|
|
46228
46275
|
type: string;
|
|
46229
46276
|
};
|
|
@@ -46243,7 +46290,7 @@ declare const _default: {
|
|
|
46243
46290
|
};
|
|
46244
46291
|
};
|
|
46245
46292
|
security: {
|
|
46246
|
-
|
|
46293
|
+
client_session_with_customer: never[];
|
|
46247
46294
|
}[];
|
|
46248
46295
|
summary: string;
|
|
46249
46296
|
tags: never[];
|
|
@@ -49503,19 +49550,19 @@ declare const _default: {
|
|
|
49503
49550
|
pat_with_workspace: never[];
|
|
49504
49551
|
console_session_with_workspace?: never;
|
|
49505
49552
|
api_key?: never;
|
|
49506
|
-
|
|
49553
|
+
client_session_with_customer?: never;
|
|
49507
49554
|
} | {
|
|
49508
49555
|
console_session_with_workspace: never[];
|
|
49509
49556
|
pat_with_workspace?: never;
|
|
49510
49557
|
api_key?: never;
|
|
49511
|
-
|
|
49558
|
+
client_session_with_customer?: never;
|
|
49512
49559
|
} | {
|
|
49513
49560
|
api_key: never[];
|
|
49514
49561
|
pat_with_workspace?: never;
|
|
49515
49562
|
console_session_with_workspace?: never;
|
|
49516
|
-
|
|
49563
|
+
client_session_with_customer?: never;
|
|
49517
49564
|
} | {
|
|
49518
|
-
|
|
49565
|
+
client_session_with_customer: never[];
|
|
49519
49566
|
pat_with_workspace?: never;
|
|
49520
49567
|
console_session_with_workspace?: never;
|
|
49521
49568
|
api_key?: never;
|
|
@@ -49579,19 +49626,19 @@ declare const _default: {
|
|
|
49579
49626
|
pat_with_workspace: never[];
|
|
49580
49627
|
console_session_with_workspace?: never;
|
|
49581
49628
|
api_key?: never;
|
|
49582
|
-
|
|
49629
|
+
client_session_with_customer?: never;
|
|
49583
49630
|
} | {
|
|
49584
49631
|
console_session_with_workspace: never[];
|
|
49585
49632
|
pat_with_workspace?: never;
|
|
49586
49633
|
api_key?: never;
|
|
49587
|
-
|
|
49634
|
+
client_session_with_customer?: never;
|
|
49588
49635
|
} | {
|
|
49589
49636
|
api_key: never[];
|
|
49590
49637
|
pat_with_workspace?: never;
|
|
49591
49638
|
console_session_with_workspace?: never;
|
|
49592
|
-
|
|
49639
|
+
client_session_with_customer?: never;
|
|
49593
49640
|
} | {
|
|
49594
|
-
|
|
49641
|
+
client_session_with_customer: never[];
|
|
49595
49642
|
pat_with_workspace?: never;
|
|
49596
49643
|
console_session_with_workspace?: never;
|
|
49597
49644
|
api_key?: never;
|
|
@@ -49734,19 +49781,19 @@ declare const _default: {
|
|
|
49734
49781
|
pat_with_workspace: never[];
|
|
49735
49782
|
console_session_with_workspace?: never;
|
|
49736
49783
|
api_key?: never;
|
|
49737
|
-
|
|
49784
|
+
client_session_with_customer?: never;
|
|
49738
49785
|
} | {
|
|
49739
49786
|
console_session_with_workspace: never[];
|
|
49740
49787
|
pat_with_workspace?: never;
|
|
49741
49788
|
api_key?: never;
|
|
49742
|
-
|
|
49789
|
+
client_session_with_customer?: never;
|
|
49743
49790
|
} | {
|
|
49744
49791
|
api_key: never[];
|
|
49745
49792
|
pat_with_workspace?: never;
|
|
49746
49793
|
console_session_with_workspace?: never;
|
|
49747
|
-
|
|
49794
|
+
client_session_with_customer?: never;
|
|
49748
49795
|
} | {
|
|
49749
|
-
|
|
49796
|
+
client_session_with_customer: never[];
|
|
49750
49797
|
pat_with_workspace?: never;
|
|
49751
49798
|
console_session_with_workspace?: never;
|
|
49752
49799
|
api_key?: never;
|
|
@@ -49907,19 +49954,19 @@ declare const _default: {
|
|
|
49907
49954
|
pat_with_workspace: never[];
|
|
49908
49955
|
console_session_with_workspace?: never;
|
|
49909
49956
|
api_key?: never;
|
|
49910
|
-
|
|
49957
|
+
client_session_with_customer?: never;
|
|
49911
49958
|
} | {
|
|
49912
49959
|
console_session_with_workspace: never[];
|
|
49913
49960
|
pat_with_workspace?: never;
|
|
49914
49961
|
api_key?: never;
|
|
49915
|
-
|
|
49962
|
+
client_session_with_customer?: never;
|
|
49916
49963
|
} | {
|
|
49917
49964
|
api_key: never[];
|
|
49918
49965
|
pat_with_workspace?: never;
|
|
49919
49966
|
console_session_with_workspace?: never;
|
|
49920
|
-
|
|
49967
|
+
client_session_with_customer?: never;
|
|
49921
49968
|
} | {
|
|
49922
|
-
|
|
49969
|
+
client_session_with_customer: never[];
|
|
49923
49970
|
pat_with_workspace?: never;
|
|
49924
49971
|
console_session_with_workspace?: never;
|
|
49925
49972
|
api_key?: never;
|
|
@@ -51456,7 +51503,7 @@ declare const _default: {
|
|
|
51456
51503
|
'x-undocumented': string;
|
|
51457
51504
|
};
|
|
51458
51505
|
};
|
|
51459
|
-
'/unstable_partner/building_blocks/
|
|
51506
|
+
'/unstable_partner/building_blocks/generate_magic_link': {
|
|
51460
51507
|
post: {
|
|
51461
51508
|
description: string;
|
|
51462
51509
|
operationId: string;
|
|
@@ -51465,13 +51512,11 @@ declare const _default: {
|
|
|
51465
51512
|
'application/json': {
|
|
51466
51513
|
schema: {
|
|
51467
51514
|
properties: {
|
|
51468
|
-
|
|
51469
|
-
|
|
51470
|
-
};
|
|
51471
|
-
bridge_client_name: {
|
|
51515
|
+
building_block_type: {
|
|
51516
|
+
enum: string[];
|
|
51472
51517
|
type: string;
|
|
51473
51518
|
};
|
|
51474
|
-
|
|
51519
|
+
customer_key: {
|
|
51475
51520
|
type: string;
|
|
51476
51521
|
};
|
|
51477
51522
|
};
|
|
@@ -51487,138 +51532,8 @@ declare const _default: {
|
|
|
51487
51532
|
'application/json': {
|
|
51488
51533
|
schema: {
|
|
51489
51534
|
properties: {
|
|
51490
|
-
|
|
51491
|
-
|
|
51492
|
-
bridge_client_machine_identifier_key: {
|
|
51493
|
-
type: string;
|
|
51494
|
-
};
|
|
51495
|
-
bridge_client_name: {
|
|
51496
|
-
type: string;
|
|
51497
|
-
};
|
|
51498
|
-
bridge_client_session_id: {
|
|
51499
|
-
format: string;
|
|
51500
|
-
type: string;
|
|
51501
|
-
};
|
|
51502
|
-
bridge_client_session_token: {
|
|
51503
|
-
type: string;
|
|
51504
|
-
};
|
|
51505
|
-
bridge_client_time_zone: {
|
|
51506
|
-
type: string;
|
|
51507
|
-
};
|
|
51508
|
-
created_at: {
|
|
51509
|
-
format: string;
|
|
51510
|
-
type: string;
|
|
51511
|
-
};
|
|
51512
|
-
errors: {
|
|
51513
|
-
items: {
|
|
51514
|
-
description: string;
|
|
51515
|
-
discriminator: {
|
|
51516
|
-
propertyName: string;
|
|
51517
|
-
};
|
|
51518
|
-
oneOf: ({
|
|
51519
|
-
description: string;
|
|
51520
|
-
properties: {
|
|
51521
|
-
can_tailscale_proxy_reach_bridge: {
|
|
51522
|
-
description: string;
|
|
51523
|
-
nullable: boolean;
|
|
51524
|
-
type: string;
|
|
51525
|
-
};
|
|
51526
|
-
can_tailscale_proxy_reach_tailscale_network: {
|
|
51527
|
-
description: string;
|
|
51528
|
-
nullable: boolean;
|
|
51529
|
-
type: string;
|
|
51530
|
-
};
|
|
51531
|
-
created_at: {
|
|
51532
|
-
format: string;
|
|
51533
|
-
type: string;
|
|
51534
|
-
};
|
|
51535
|
-
error_code: {
|
|
51536
|
-
description: string;
|
|
51537
|
-
enum: string[];
|
|
51538
|
-
type: string;
|
|
51539
|
-
};
|
|
51540
|
-
is_bridge_socks_server_healthy: {
|
|
51541
|
-
description: string;
|
|
51542
|
-
nullable: boolean;
|
|
51543
|
-
type: string;
|
|
51544
|
-
};
|
|
51545
|
-
is_tailscale_proxy_reachable: {
|
|
51546
|
-
description: string;
|
|
51547
|
-
nullable: boolean;
|
|
51548
|
-
type: string;
|
|
51549
|
-
};
|
|
51550
|
-
is_tailscale_proxy_socks_server_healthy: {
|
|
51551
|
-
description: string;
|
|
51552
|
-
nullable: boolean;
|
|
51553
|
-
type: string;
|
|
51554
|
-
};
|
|
51555
|
-
message: {
|
|
51556
|
-
type: string;
|
|
51557
|
-
};
|
|
51558
|
-
};
|
|
51559
|
-
required: string[];
|
|
51560
|
-
type: string;
|
|
51561
|
-
} | {
|
|
51562
|
-
description: string;
|
|
51563
|
-
properties: {
|
|
51564
|
-
created_at: {
|
|
51565
|
-
format: string;
|
|
51566
|
-
type: string;
|
|
51567
|
-
};
|
|
51568
|
-
error_code: {
|
|
51569
|
-
description: string;
|
|
51570
|
-
enum: string[];
|
|
51571
|
-
type: string;
|
|
51572
|
-
};
|
|
51573
|
-
message: {
|
|
51574
|
-
type: string;
|
|
51575
|
-
};
|
|
51576
|
-
can_tailscale_proxy_reach_bridge?: never;
|
|
51577
|
-
can_tailscale_proxy_reach_tailscale_network?: never;
|
|
51578
|
-
is_bridge_socks_server_healthy?: never;
|
|
51579
|
-
is_tailscale_proxy_reachable?: never;
|
|
51580
|
-
is_tailscale_proxy_socks_server_healthy?: never;
|
|
51581
|
-
};
|
|
51582
|
-
required: string[];
|
|
51583
|
-
type: string;
|
|
51584
|
-
})[];
|
|
51585
|
-
};
|
|
51586
|
-
type: string;
|
|
51587
|
-
};
|
|
51588
|
-
pairing_code: {
|
|
51589
|
-
maxLength: number;
|
|
51590
|
-
minLength: number;
|
|
51591
|
-
type: string;
|
|
51592
|
-
};
|
|
51593
|
-
pairing_code_expires_at: {
|
|
51594
|
-
format: string;
|
|
51595
|
-
type: string;
|
|
51596
|
-
};
|
|
51597
|
-
tailscale_auth_key: {
|
|
51598
|
-
nullable: boolean;
|
|
51599
|
-
type: string;
|
|
51600
|
-
};
|
|
51601
|
-
tailscale_hostname: {
|
|
51602
|
-
type: string;
|
|
51603
|
-
};
|
|
51604
|
-
telemetry_token: {
|
|
51605
|
-
nullable: boolean;
|
|
51606
|
-
type: string;
|
|
51607
|
-
};
|
|
51608
|
-
telemetry_token_expires_at: {
|
|
51609
|
-
format: string;
|
|
51610
|
-
nullable: boolean;
|
|
51611
|
-
type: string;
|
|
51612
|
-
};
|
|
51613
|
-
telemetry_url: {
|
|
51614
|
-
nullable: boolean;
|
|
51615
|
-
type: string;
|
|
51616
|
-
};
|
|
51617
|
-
};
|
|
51618
|
-
required: string[];
|
|
51619
|
-
type: string;
|
|
51620
|
-
'x-route-path': string;
|
|
51621
|
-
'x-undocumented': string;
|
|
51535
|
+
magic_link: {
|
|
51536
|
+
$ref: string;
|
|
51622
51537
|
};
|
|
51623
51538
|
ok: {
|
|
51624
51539
|
type: string;
|
|
@@ -51639,7 +51554,7 @@ declare const _default: {
|
|
|
51639
51554
|
};
|
|
51640
51555
|
};
|
|
51641
51556
|
security: {
|
|
51642
|
-
|
|
51557
|
+
api_key: never[];
|
|
51643
51558
|
}[];
|
|
51644
51559
|
summary: string;
|
|
51645
51560
|
tags: never[];
|
|
@@ -51706,9 +51621,13 @@ declare const _default: {
|
|
|
51706
51621
|
};
|
|
51707
51622
|
};
|
|
51708
51623
|
type: string;
|
|
51624
|
+
'x-route-path': string;
|
|
51625
|
+
'x-undocumented': string;
|
|
51709
51626
|
};
|
|
51710
51627
|
type: string;
|
|
51711
51628
|
properties?: never;
|
|
51629
|
+
'x-route-path'?: never;
|
|
51630
|
+
'x-undocumented'?: never;
|
|
51712
51631
|
} | {
|
|
51713
51632
|
properties: {
|
|
51714
51633
|
custom_metadata: {
|
|
@@ -51755,6 +51674,8 @@ declare const _default: {
|
|
|
51755
51674
|
};
|
|
51756
51675
|
};
|
|
51757
51676
|
type: string;
|
|
51677
|
+
'x-route-path': string;
|
|
51678
|
+
'x-undocumented': string;
|
|
51758
51679
|
items?: never;
|
|
51759
51680
|
})[];
|
|
51760
51681
|
};
|
|
@@ -72985,6 +72906,7 @@ interface Routes {
|
|
|
72985
72906
|
token: string;
|
|
72986
72907
|
user_identifier_key: string | null;
|
|
72987
72908
|
device_count: number;
|
|
72909
|
+
customer_id?: string | undefined;
|
|
72988
72910
|
connected_account_ids: string[];
|
|
72989
72911
|
connect_webview_ids: string[];
|
|
72990
72912
|
user_identity_ids: string[];
|
|
@@ -73033,6 +72955,7 @@ interface Routes {
|
|
|
73033
72955
|
token: string;
|
|
73034
72956
|
user_identifier_key: string | null;
|
|
73035
72957
|
device_count: number;
|
|
72958
|
+
customer_id?: string | undefined;
|
|
73036
72959
|
connected_account_ids: string[];
|
|
73037
72960
|
connect_webview_ids: string[];
|
|
73038
72961
|
user_identity_ids: string[];
|
|
@@ -73075,6 +72998,7 @@ interface Routes {
|
|
|
73075
72998
|
token: string;
|
|
73076
72999
|
user_identifier_key: string | null;
|
|
73077
73000
|
device_count: number;
|
|
73001
|
+
customer_id?: string | undefined;
|
|
73078
73002
|
connected_account_ids: string[];
|
|
73079
73003
|
connect_webview_ids: string[];
|
|
73080
73004
|
user_identity_ids: string[];
|
|
@@ -73117,6 +73041,7 @@ interface Routes {
|
|
|
73117
73041
|
token: string;
|
|
73118
73042
|
user_identifier_key: string | null;
|
|
73119
73043
|
device_count: number;
|
|
73044
|
+
customer_id?: string | undefined;
|
|
73120
73045
|
connected_account_ids: string[];
|
|
73121
73046
|
connect_webview_ids: string[];
|
|
73122
73047
|
user_identity_ids: string[];
|
|
@@ -73150,6 +73075,7 @@ interface Routes {
|
|
|
73150
73075
|
token: string;
|
|
73151
73076
|
user_identifier_key: string | null;
|
|
73152
73077
|
device_count: number;
|
|
73078
|
+
customer_id?: string | undefined;
|
|
73153
73079
|
connected_account_ids: string[];
|
|
73154
73080
|
connect_webview_ids: string[];
|
|
73155
73081
|
user_identity_ids: string[];
|
|
@@ -73331,7 +73257,7 @@ interface Routes {
|
|
|
73331
73257
|
queryParams: {};
|
|
73332
73258
|
jsonBody: {};
|
|
73333
73259
|
commonParams: {
|
|
73334
|
-
|
|
73260
|
+
customer_ids?: string[] | undefined;
|
|
73335
73261
|
/** Your user ID for the user by which you want to filter Connect Webviews. */
|
|
73336
73262
|
user_identifier_key?: string | undefined;
|
|
73337
73263
|
/** Custom metadata pairs by which you want to [filter Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). Returns Connect Webviews with `custom_metadata` that contains all of the provided key:value pairs. */
|
|
@@ -95628,6 +95554,7 @@ interface Routes {
|
|
|
95628
95554
|
token: string;
|
|
95629
95555
|
user_identifier_key: string | null;
|
|
95630
95556
|
device_count: number;
|
|
95557
|
+
customer_id?: string | undefined;
|
|
95631
95558
|
connected_account_ids: string[];
|
|
95632
95559
|
connect_webview_ids: string[];
|
|
95633
95560
|
user_identity_ids: string[];
|
|
@@ -110626,54 +110553,26 @@ interface Routes {
|
|
|
110626
110553
|
};
|
|
110627
110554
|
};
|
|
110628
110555
|
};
|
|
110629
|
-
'/unstable_partner/building_blocks/
|
|
110630
|
-
route: '/unstable_partner/building_blocks/
|
|
110631
|
-
method: 'POST';
|
|
110556
|
+
'/unstable_partner/building_blocks/generate_magic_link': {
|
|
110557
|
+
route: '/unstable_partner/building_blocks/generate_magic_link';
|
|
110558
|
+
method: 'POST' | 'GET';
|
|
110632
110559
|
queryParams: {};
|
|
110633
|
-
jsonBody: {
|
|
110634
|
-
|
|
110635
|
-
|
|
110636
|
-
|
|
110560
|
+
jsonBody: {};
|
|
110561
|
+
commonParams: {
|
|
110562
|
+
building_block_type: 'connect_account' | 'manage_devices';
|
|
110563
|
+
customer_key: string;
|
|
110637
110564
|
};
|
|
110638
|
-
commonParams: {};
|
|
110639
110565
|
formData: {};
|
|
110640
110566
|
jsonResponse: {
|
|
110641
110567
|
/** */
|
|
110642
|
-
|
|
110568
|
+
magic_link: {
|
|
110569
|
+
url: string;
|
|
110570
|
+
building_block_type: 'connect_account' | 'manage_devices';
|
|
110571
|
+
customer_id: string;
|
|
110572
|
+
customer_key: string;
|
|
110573
|
+
expires_at: string;
|
|
110574
|
+
workspace_id: string;
|
|
110643
110575
|
created_at: string;
|
|
110644
|
-
bridge_client_session_id: string;
|
|
110645
|
-
bridge_client_session_token: string;
|
|
110646
|
-
pairing_code: string;
|
|
110647
|
-
pairing_code_expires_at: string;
|
|
110648
|
-
tailscale_hostname: string;
|
|
110649
|
-
tailscale_auth_key: string | null;
|
|
110650
|
-
bridge_client_name: string;
|
|
110651
|
-
bridge_client_time_zone: string;
|
|
110652
|
-
bridge_client_machine_identifier_key: string;
|
|
110653
|
-
errors: Array<{
|
|
110654
|
-
message: string;
|
|
110655
|
-
created_at: string;
|
|
110656
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
110657
|
-
error_code: 'bridge_lan_unreachable';
|
|
110658
|
-
/** Seam cannot reach the tailscale proxy */
|
|
110659
|
-
is_tailscale_proxy_reachable: boolean | null;
|
|
110660
|
-
/** Tailscale proxy's SOCKS server is unhealthy */
|
|
110661
|
-
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
110662
|
-
/** Tailscale proxy cannot reach the Tailscale network */
|
|
110663
|
-
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
110664
|
-
/** Tailscale proxy cannot reach the bridge */
|
|
110665
|
-
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
110666
|
-
/** Bridge's SOCKS server is unhealthy */
|
|
110667
|
-
is_bridge_socks_server_healthy: boolean | null;
|
|
110668
|
-
} | {
|
|
110669
|
-
message: string;
|
|
110670
|
-
created_at: string;
|
|
110671
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
110672
|
-
error_code: 'no_communication_from_bridge';
|
|
110673
|
-
}>;
|
|
110674
|
-
telemetry_token: string | null;
|
|
110675
|
-
telemetry_token_expires_at: string | null;
|
|
110676
|
-
telemetry_url: string | null;
|
|
110677
110576
|
};
|
|
110678
110577
|
};
|
|
110679
110578
|
};
|