@seamapi/types 1.542.0 → 1.544.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 +340 -289
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +428 -374
- package/dist/index.cjs +340 -289
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +10 -10
- package/lib/seam/connect/models/client-sessions/client-session.d.ts +3 -3
- package/lib/seam/connect/models/client-sessions/client-session.js +2 -3
- package/lib/seam/connect/models/client-sessions/client-session.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +355 -308
- package/lib/seam/connect/openapi.js +326 -275
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +65 -58
- package/package.json +1 -1
- package/src/lib/seam/connect/models/client-sessions/client-session.ts +2 -3
- package/src/lib/seam/connect/openapi.ts +326 -275
- package/src/lib/seam/connect/route-types.ts +75 -68
package/dist/connect.d.cts
CHANGED
|
@@ -20144,7 +20144,7 @@ declare const batch: z.ZodObject<{
|
|
|
20144
20144
|
token: z.ZodString;
|
|
20145
20145
|
user_identifier_key: z.ZodNullable<z.ZodString>;
|
|
20146
20146
|
device_count: z.ZodNumber;
|
|
20147
|
-
|
|
20147
|
+
customer_key: z.ZodOptional<z.ZodString>;
|
|
20148
20148
|
connected_account_ids: z.ZodArray<z.ZodString, "many">;
|
|
20149
20149
|
connect_webview_ids: z.ZodArray<z.ZodString, "many">;
|
|
20150
20150
|
user_identity_ids: z.ZodArray<z.ZodString, "many">;
|
|
@@ -20160,8 +20160,8 @@ declare const batch: z.ZodObject<{
|
|
|
20160
20160
|
device_count: number;
|
|
20161
20161
|
connect_webview_ids: string[];
|
|
20162
20162
|
user_identity_ids: string[];
|
|
20163
|
+
customer_key?: string | undefined;
|
|
20163
20164
|
user_identity_id?: string | undefined;
|
|
20164
|
-
customer_id?: string | undefined;
|
|
20165
20165
|
}, {
|
|
20166
20166
|
workspace_id: string;
|
|
20167
20167
|
created_at: string;
|
|
@@ -20173,8 +20173,8 @@ declare const batch: z.ZodObject<{
|
|
|
20173
20173
|
device_count: number;
|
|
20174
20174
|
connect_webview_ids: string[];
|
|
20175
20175
|
user_identity_ids: string[];
|
|
20176
|
+
customer_key?: string | undefined;
|
|
20176
20177
|
user_identity_id?: string | undefined;
|
|
20177
|
-
customer_id?: string | undefined;
|
|
20178
20178
|
}>, "many">>;
|
|
20179
20179
|
unmanaged_acs_users: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20180
20180
|
acs_user_id: z.ZodString;
|
|
@@ -32506,8 +32506,8 @@ declare const batch: z.ZodObject<{
|
|
|
32506
32506
|
device_count: number;
|
|
32507
32507
|
connect_webview_ids: string[];
|
|
32508
32508
|
user_identity_ids: string[];
|
|
32509
|
+
customer_key?: string | undefined;
|
|
32509
32510
|
user_identity_id?: string | undefined;
|
|
32510
|
-
customer_id?: string | undefined;
|
|
32511
32511
|
}[] | undefined;
|
|
32512
32512
|
unmanaged_acs_users?: {
|
|
32513
32513
|
display_name: string;
|
|
@@ -36365,8 +36365,8 @@ declare const batch: z.ZodObject<{
|
|
|
36365
36365
|
device_count: number;
|
|
36366
36366
|
connect_webview_ids: string[];
|
|
36367
36367
|
user_identity_ids: string[];
|
|
36368
|
+
customer_key?: string | undefined;
|
|
36368
36369
|
user_identity_id?: string | undefined;
|
|
36369
|
-
customer_id?: string | undefined;
|
|
36370
36370
|
}[] | undefined;
|
|
36371
36371
|
unmanaged_acs_users?: {
|
|
36372
36372
|
display_name: string;
|
|
@@ -38459,7 +38459,7 @@ declare const client_session: z.ZodObject<{
|
|
|
38459
38459
|
token: z.ZodString;
|
|
38460
38460
|
user_identifier_key: z.ZodNullable<z.ZodString>;
|
|
38461
38461
|
device_count: z.ZodNumber;
|
|
38462
|
-
|
|
38462
|
+
customer_key: z.ZodOptional<z.ZodString>;
|
|
38463
38463
|
connected_account_ids: z.ZodArray<z.ZodString, "many">;
|
|
38464
38464
|
connect_webview_ids: z.ZodArray<z.ZodString, "many">;
|
|
38465
38465
|
user_identity_ids: z.ZodArray<z.ZodString, "many">;
|
|
@@ -38475,8 +38475,8 @@ declare const client_session: z.ZodObject<{
|
|
|
38475
38475
|
device_count: number;
|
|
38476
38476
|
connect_webview_ids: string[];
|
|
38477
38477
|
user_identity_ids: string[];
|
|
38478
|
+
customer_key?: string | undefined;
|
|
38478
38479
|
user_identity_id?: string | undefined;
|
|
38479
|
-
customer_id?: string | undefined;
|
|
38480
38480
|
}, {
|
|
38481
38481
|
workspace_id: string;
|
|
38482
38482
|
created_at: string;
|
|
@@ -38488,8 +38488,8 @@ declare const client_session: z.ZodObject<{
|
|
|
38488
38488
|
device_count: number;
|
|
38489
38489
|
connect_webview_ids: string[];
|
|
38490
38490
|
user_identity_ids: string[];
|
|
38491
|
+
customer_key?: string | undefined;
|
|
38491
38492
|
user_identity_id?: string | undefined;
|
|
38492
|
-
customer_id?: string | undefined;
|
|
38493
38493
|
}>;
|
|
38494
38494
|
type ClientSession = z.infer<typeof client_session>;
|
|
38495
38495
|
|
|
@@ -54547,9 +54547,8 @@ declare const _default: {
|
|
|
54547
54547
|
format: string;
|
|
54548
54548
|
type: string;
|
|
54549
54549
|
};
|
|
54550
|
-
|
|
54550
|
+
customer_key: {
|
|
54551
54551
|
description: string;
|
|
54552
|
-
format: string;
|
|
54553
54552
|
type: string;
|
|
54554
54553
|
};
|
|
54555
54554
|
device_count: {
|
|
@@ -88633,183 +88632,195 @@ declare const _default: {
|
|
|
88633
88632
|
$ref: string;
|
|
88634
88633
|
};
|
|
88635
88634
|
timeline: {
|
|
88636
|
-
|
|
88637
|
-
|
|
88638
|
-
|
|
88639
|
-
|
|
88640
|
-
|
|
88641
|
-
|
|
88642
|
-
|
|
88643
|
-
|
|
88644
|
-
|
|
88645
|
-
|
|
88646
|
-
|
|
88647
|
-
|
|
88648
|
-
|
|
88649
|
-
|
|
88650
|
-
|
|
88635
|
+
properties: {
|
|
88636
|
+
groups: {
|
|
88637
|
+
items: {
|
|
88638
|
+
properties: {
|
|
88639
|
+
context: {
|
|
88640
|
+
oneOf: ({
|
|
88641
|
+
properties: {
|
|
88642
|
+
context_type: {
|
|
88643
|
+
enum: string[];
|
|
88644
|
+
type: string;
|
|
88645
|
+
};
|
|
88646
|
+
request_id: {
|
|
88647
|
+
type: string;
|
|
88648
|
+
};
|
|
88649
|
+
request_payload: {
|
|
88650
|
+
additionalProperties: {
|
|
88651
|
+
$ref: string;
|
|
88652
|
+
};
|
|
88653
|
+
type: string;
|
|
88654
|
+
};
|
|
88655
|
+
response_payload: {
|
|
88656
|
+
additionalProperties: {
|
|
88657
|
+
$ref: string;
|
|
88658
|
+
};
|
|
88659
|
+
type: string;
|
|
88660
|
+
};
|
|
88661
|
+
job_id?: never;
|
|
88651
88662
|
};
|
|
88663
|
+
required: string[];
|
|
88652
88664
|
type: string;
|
|
88653
|
-
}
|
|
88654
|
-
|
|
88655
|
-
|
|
88656
|
-
|
|
88665
|
+
} | {
|
|
88666
|
+
properties: {
|
|
88667
|
+
context_type: {
|
|
88668
|
+
enum: string[];
|
|
88669
|
+
type: string;
|
|
88670
|
+
};
|
|
88671
|
+
job_id: {
|
|
88672
|
+
type: string;
|
|
88673
|
+
};
|
|
88674
|
+
request_id?: never;
|
|
88675
|
+
request_payload?: never;
|
|
88676
|
+
response_payload?: never;
|
|
88657
88677
|
};
|
|
88678
|
+
required: string[];
|
|
88658
88679
|
type: string;
|
|
88659
|
-
};
|
|
88660
|
-
job_id?: never;
|
|
88680
|
+
})[];
|
|
88661
88681
|
};
|
|
88662
|
-
|
|
88663
|
-
|
|
88664
|
-
} | {
|
|
88665
|
-
properties: {
|
|
88666
|
-
context_type: {
|
|
88667
|
-
enum: string[];
|
|
88668
|
-
type: string;
|
|
88669
|
-
};
|
|
88670
|
-
job_id: {
|
|
88671
|
-
type: string;
|
|
88672
|
-
};
|
|
88673
|
-
request_id?: never;
|
|
88674
|
-
request_payload?: never;
|
|
88675
|
-
response_payload?: never;
|
|
88682
|
+
created_at: {
|
|
88683
|
+
type: string;
|
|
88676
88684
|
};
|
|
88677
|
-
|
|
88678
|
-
|
|
88679
|
-
|
|
88680
|
-
|
|
88681
|
-
|
|
88682
|
-
|
|
88683
|
-
|
|
88684
|
-
|
|
88685
|
-
|
|
88686
|
-
|
|
88687
|
-
|
|
88688
|
-
|
|
88689
|
-
|
|
88690
|
-
|
|
88691
|
-
|
|
88692
|
-
|
|
88693
|
-
|
|
88694
|
-
|
|
88695
|
-
|
|
88696
|
-
|
|
88697
|
-
|
|
88698
|
-
|
|
88699
|
-
warnings?: never;
|
|
88700
|
-
event_id?: never;
|
|
88701
|
-
event_type?: never;
|
|
88702
|
-
response_body?: never;
|
|
88703
|
-
response_status_code?: never;
|
|
88704
|
-
};
|
|
88705
|
-
required: string[];
|
|
88706
|
-
type: string;
|
|
88707
|
-
} | {
|
|
88708
|
-
properties: {
|
|
88709
|
-
description: {
|
|
88710
|
-
type: string;
|
|
88711
|
-
};
|
|
88712
|
-
entry_type: {
|
|
88713
|
-
enum: string[];
|
|
88685
|
+
entries: {
|
|
88686
|
+
items: {
|
|
88687
|
+
properties: {
|
|
88688
|
+
body: {
|
|
88689
|
+
oneOf: ({
|
|
88690
|
+
properties: {
|
|
88691
|
+
description: {
|
|
88692
|
+
type: string;
|
|
88693
|
+
};
|
|
88694
|
+
entry_type: {
|
|
88695
|
+
enum: string[];
|
|
88696
|
+
type: string;
|
|
88697
|
+
};
|
|
88698
|
+
errors?: never;
|
|
88699
|
+
properties_updated?: never;
|
|
88700
|
+
warnings?: never;
|
|
88701
|
+
event_id?: never;
|
|
88702
|
+
event_type?: never;
|
|
88703
|
+
response_body?: never;
|
|
88704
|
+
response_status_code?: never;
|
|
88705
|
+
};
|
|
88706
|
+
required: string[];
|
|
88714
88707
|
type: string;
|
|
88715
|
-
}
|
|
88716
|
-
|
|
88717
|
-
|
|
88718
|
-
|
|
88708
|
+
} | {
|
|
88709
|
+
properties: {
|
|
88710
|
+
description: {
|
|
88711
|
+
type: string;
|
|
88712
|
+
};
|
|
88713
|
+
entry_type: {
|
|
88714
|
+
enum: string[];
|
|
88715
|
+
type: string;
|
|
88716
|
+
};
|
|
88717
|
+
errors: {
|
|
88718
|
+
items: {
|
|
88719
|
+
type: string;
|
|
88720
|
+
};
|
|
88721
|
+
type: string;
|
|
88722
|
+
};
|
|
88723
|
+
properties_updated: {
|
|
88724
|
+
additionalProperties: {
|
|
88725
|
+
$ref: string;
|
|
88726
|
+
};
|
|
88727
|
+
type: string;
|
|
88728
|
+
};
|
|
88729
|
+
warnings: {
|
|
88730
|
+
items: {
|
|
88731
|
+
type: string;
|
|
88732
|
+
};
|
|
88733
|
+
type: string;
|
|
88734
|
+
};
|
|
88735
|
+
event_id?: never;
|
|
88736
|
+
event_type?: never;
|
|
88737
|
+
response_body?: never;
|
|
88738
|
+
response_status_code?: never;
|
|
88719
88739
|
};
|
|
88740
|
+
required: string[];
|
|
88720
88741
|
type: string;
|
|
88721
|
-
}
|
|
88722
|
-
|
|
88723
|
-
|
|
88724
|
-
|
|
88742
|
+
} | {
|
|
88743
|
+
properties: {
|
|
88744
|
+
entry_type: {
|
|
88745
|
+
enum: string[];
|
|
88746
|
+
type: string;
|
|
88747
|
+
};
|
|
88748
|
+
event_id: {
|
|
88749
|
+
type: string;
|
|
88750
|
+
};
|
|
88751
|
+
event_type: {
|
|
88752
|
+
type: string;
|
|
88753
|
+
};
|
|
88754
|
+
description?: never;
|
|
88755
|
+
errors?: never;
|
|
88756
|
+
properties_updated?: never;
|
|
88757
|
+
warnings?: never;
|
|
88758
|
+
response_body?: never;
|
|
88759
|
+
response_status_code?: never;
|
|
88725
88760
|
};
|
|
88761
|
+
required: string[];
|
|
88726
88762
|
type: string;
|
|
88727
|
-
}
|
|
88728
|
-
|
|
88729
|
-
|
|
88730
|
-
|
|
88763
|
+
} | {
|
|
88764
|
+
properties: {
|
|
88765
|
+
description: {
|
|
88766
|
+
type: string;
|
|
88767
|
+
};
|
|
88768
|
+
entry_type: {
|
|
88769
|
+
enum: string[];
|
|
88770
|
+
type: string;
|
|
88771
|
+
};
|
|
88772
|
+
response_body: {
|
|
88773
|
+
additionalProperties: {
|
|
88774
|
+
$ref: string;
|
|
88775
|
+
};
|
|
88776
|
+
type: string;
|
|
88777
|
+
};
|
|
88778
|
+
response_status_code: {
|
|
88779
|
+
format: string;
|
|
88780
|
+
type: string;
|
|
88781
|
+
};
|
|
88782
|
+
errors?: never;
|
|
88783
|
+
properties_updated?: never;
|
|
88784
|
+
warnings?: never;
|
|
88785
|
+
event_id?: never;
|
|
88786
|
+
event_type?: never;
|
|
88731
88787
|
};
|
|
88788
|
+
required: string[];
|
|
88732
88789
|
type: string;
|
|
88733
|
-
};
|
|
88734
|
-
event_id?: never;
|
|
88735
|
-
event_type?: never;
|
|
88736
|
-
response_body?: never;
|
|
88737
|
-
response_status_code?: never;
|
|
88790
|
+
})[];
|
|
88738
88791
|
};
|
|
88739
|
-
|
|
88740
|
-
|
|
88741
|
-
} | {
|
|
88742
|
-
properties: {
|
|
88743
|
-
entry_type: {
|
|
88744
|
-
enum: string[];
|
|
88745
|
-
type: string;
|
|
88746
|
-
};
|
|
88747
|
-
event_id: {
|
|
88748
|
-
type: string;
|
|
88749
|
-
};
|
|
88750
|
-
event_type: {
|
|
88751
|
-
type: string;
|
|
88752
|
-
};
|
|
88753
|
-
description?: never;
|
|
88754
|
-
errors?: never;
|
|
88755
|
-
properties_updated?: never;
|
|
88756
|
-
warnings?: never;
|
|
88757
|
-
response_body?: never;
|
|
88758
|
-
response_status_code?: never;
|
|
88792
|
+
created_at: {
|
|
88793
|
+
type: string;
|
|
88759
88794
|
};
|
|
88760
|
-
|
|
88761
|
-
|
|
88762
|
-
} | {
|
|
88763
|
-
properties: {
|
|
88764
|
-
description: {
|
|
88765
|
-
type: string;
|
|
88766
|
-
};
|
|
88767
|
-
entry_type: {
|
|
88768
|
-
enum: string[];
|
|
88769
|
-
type: string;
|
|
88770
|
-
};
|
|
88771
|
-
response_body: {
|
|
88772
|
-
additionalProperties: {
|
|
88773
|
-
$ref: string;
|
|
88774
|
-
};
|
|
88775
|
-
type: string;
|
|
88776
|
-
};
|
|
88777
|
-
response_status_code: {
|
|
88778
|
-
format: string;
|
|
88779
|
-
type: string;
|
|
88780
|
-
};
|
|
88781
|
-
errors?: never;
|
|
88782
|
-
properties_updated?: never;
|
|
88783
|
-
warnings?: never;
|
|
88784
|
-
event_id?: never;
|
|
88785
|
-
event_type?: never;
|
|
88795
|
+
entry_type: {
|
|
88796
|
+
type: string;
|
|
88786
88797
|
};
|
|
88787
|
-
|
|
88788
|
-
|
|
88789
|
-
|
|
88790
|
-
|
|
88791
|
-
|
|
88792
|
-
|
|
88793
|
-
|
|
88794
|
-
|
|
88795
|
-
type: string;
|
|
88796
|
-
};
|
|
88797
|
-
resource_id: {
|
|
88798
|
-
type: string;
|
|
88799
|
-
};
|
|
88800
|
-
resource_type: {
|
|
88798
|
+
resource_id: {
|
|
88799
|
+
type: string;
|
|
88800
|
+
};
|
|
88801
|
+
resource_type: {
|
|
88802
|
+
type: string;
|
|
88803
|
+
};
|
|
88804
|
+
};
|
|
88805
|
+
required: string[];
|
|
88801
88806
|
type: string;
|
|
88802
88807
|
};
|
|
88808
|
+
type: string;
|
|
88803
88809
|
};
|
|
88804
|
-
required: string[];
|
|
88805
|
-
type: string;
|
|
88806
88810
|
};
|
|
88811
|
+
required: string[];
|
|
88807
88812
|
type: string;
|
|
88808
88813
|
};
|
|
88814
|
+
type: string;
|
|
88815
|
+
};
|
|
88816
|
+
resource_id: {
|
|
88817
|
+
type: string;
|
|
88818
|
+
};
|
|
88819
|
+
resource_type: {
|
|
88820
|
+
type: string;
|
|
88809
88821
|
};
|
|
88810
|
-
required: string[];
|
|
88811
|
-
type: string;
|
|
88812
88822
|
};
|
|
88823
|
+
required: string[];
|
|
88813
88824
|
type: string;
|
|
88814
88825
|
};
|
|
88815
88826
|
};
|
|
@@ -88906,183 +88917,195 @@ declare const _default: {
|
|
|
88906
88917
|
$ref: string;
|
|
88907
88918
|
};
|
|
88908
88919
|
timeline: {
|
|
88909
|
-
|
|
88910
|
-
|
|
88911
|
-
|
|
88912
|
-
|
|
88913
|
-
|
|
88914
|
-
|
|
88915
|
-
|
|
88916
|
-
|
|
88917
|
-
|
|
88918
|
-
|
|
88919
|
-
|
|
88920
|
-
|
|
88921
|
-
|
|
88922
|
-
|
|
88923
|
-
|
|
88920
|
+
properties: {
|
|
88921
|
+
groups: {
|
|
88922
|
+
items: {
|
|
88923
|
+
properties: {
|
|
88924
|
+
context: {
|
|
88925
|
+
oneOf: ({
|
|
88926
|
+
properties: {
|
|
88927
|
+
context_type: {
|
|
88928
|
+
enum: string[];
|
|
88929
|
+
type: string;
|
|
88930
|
+
};
|
|
88931
|
+
request_id: {
|
|
88932
|
+
type: string;
|
|
88933
|
+
};
|
|
88934
|
+
request_payload: {
|
|
88935
|
+
additionalProperties: {
|
|
88936
|
+
$ref: string;
|
|
88937
|
+
};
|
|
88938
|
+
type: string;
|
|
88939
|
+
};
|
|
88940
|
+
response_payload: {
|
|
88941
|
+
additionalProperties: {
|
|
88942
|
+
$ref: string;
|
|
88943
|
+
};
|
|
88944
|
+
type: string;
|
|
88945
|
+
};
|
|
88946
|
+
job_id?: never;
|
|
88924
88947
|
};
|
|
88948
|
+
required: string[];
|
|
88925
88949
|
type: string;
|
|
88926
|
-
}
|
|
88927
|
-
|
|
88928
|
-
|
|
88929
|
-
|
|
88950
|
+
} | {
|
|
88951
|
+
properties: {
|
|
88952
|
+
context_type: {
|
|
88953
|
+
enum: string[];
|
|
88954
|
+
type: string;
|
|
88955
|
+
};
|
|
88956
|
+
job_id: {
|
|
88957
|
+
type: string;
|
|
88958
|
+
};
|
|
88959
|
+
request_id?: never;
|
|
88960
|
+
request_payload?: never;
|
|
88961
|
+
response_payload?: never;
|
|
88930
88962
|
};
|
|
88963
|
+
required: string[];
|
|
88931
88964
|
type: string;
|
|
88932
|
-
};
|
|
88933
|
-
job_id?: never;
|
|
88965
|
+
})[];
|
|
88934
88966
|
};
|
|
88935
|
-
|
|
88936
|
-
|
|
88937
|
-
} | {
|
|
88938
|
-
properties: {
|
|
88939
|
-
context_type: {
|
|
88940
|
-
enum: string[];
|
|
88941
|
-
type: string;
|
|
88942
|
-
};
|
|
88943
|
-
job_id: {
|
|
88944
|
-
type: string;
|
|
88945
|
-
};
|
|
88946
|
-
request_id?: never;
|
|
88947
|
-
request_payload?: never;
|
|
88948
|
-
response_payload?: never;
|
|
88967
|
+
created_at: {
|
|
88968
|
+
type: string;
|
|
88949
88969
|
};
|
|
88950
|
-
|
|
88951
|
-
|
|
88952
|
-
|
|
88953
|
-
|
|
88954
|
-
|
|
88955
|
-
|
|
88956
|
-
|
|
88957
|
-
|
|
88958
|
-
|
|
88959
|
-
|
|
88960
|
-
|
|
88961
|
-
|
|
88962
|
-
|
|
88963
|
-
|
|
88964
|
-
|
|
88965
|
-
|
|
88966
|
-
|
|
88967
|
-
|
|
88968
|
-
|
|
88969
|
-
|
|
88970
|
-
|
|
88971
|
-
|
|
88972
|
-
warnings?: never;
|
|
88973
|
-
event_id?: never;
|
|
88974
|
-
event_type?: never;
|
|
88975
|
-
response_body?: never;
|
|
88976
|
-
response_status_code?: never;
|
|
88977
|
-
};
|
|
88978
|
-
required: string[];
|
|
88979
|
-
type: string;
|
|
88980
|
-
} | {
|
|
88981
|
-
properties: {
|
|
88982
|
-
description: {
|
|
88983
|
-
type: string;
|
|
88984
|
-
};
|
|
88985
|
-
entry_type: {
|
|
88986
|
-
enum: string[];
|
|
88970
|
+
entries: {
|
|
88971
|
+
items: {
|
|
88972
|
+
properties: {
|
|
88973
|
+
body: {
|
|
88974
|
+
oneOf: ({
|
|
88975
|
+
properties: {
|
|
88976
|
+
description: {
|
|
88977
|
+
type: string;
|
|
88978
|
+
};
|
|
88979
|
+
entry_type: {
|
|
88980
|
+
enum: string[];
|
|
88981
|
+
type: string;
|
|
88982
|
+
};
|
|
88983
|
+
errors?: never;
|
|
88984
|
+
properties_updated?: never;
|
|
88985
|
+
warnings?: never;
|
|
88986
|
+
event_id?: never;
|
|
88987
|
+
event_type?: never;
|
|
88988
|
+
response_body?: never;
|
|
88989
|
+
response_status_code?: never;
|
|
88990
|
+
};
|
|
88991
|
+
required: string[];
|
|
88987
88992
|
type: string;
|
|
88988
|
-
}
|
|
88989
|
-
|
|
88990
|
-
|
|
88991
|
-
|
|
88993
|
+
} | {
|
|
88994
|
+
properties: {
|
|
88995
|
+
description: {
|
|
88996
|
+
type: string;
|
|
88997
|
+
};
|
|
88998
|
+
entry_type: {
|
|
88999
|
+
enum: string[];
|
|
89000
|
+
type: string;
|
|
89001
|
+
};
|
|
89002
|
+
errors: {
|
|
89003
|
+
items: {
|
|
89004
|
+
type: string;
|
|
89005
|
+
};
|
|
89006
|
+
type: string;
|
|
89007
|
+
};
|
|
89008
|
+
properties_updated: {
|
|
89009
|
+
additionalProperties: {
|
|
89010
|
+
$ref: string;
|
|
89011
|
+
};
|
|
89012
|
+
type: string;
|
|
89013
|
+
};
|
|
89014
|
+
warnings: {
|
|
89015
|
+
items: {
|
|
89016
|
+
type: string;
|
|
89017
|
+
};
|
|
89018
|
+
type: string;
|
|
89019
|
+
};
|
|
89020
|
+
event_id?: never;
|
|
89021
|
+
event_type?: never;
|
|
89022
|
+
response_body?: never;
|
|
89023
|
+
response_status_code?: never;
|
|
88992
89024
|
};
|
|
89025
|
+
required: string[];
|
|
88993
89026
|
type: string;
|
|
88994
|
-
}
|
|
88995
|
-
|
|
88996
|
-
|
|
88997
|
-
|
|
89027
|
+
} | {
|
|
89028
|
+
properties: {
|
|
89029
|
+
entry_type: {
|
|
89030
|
+
enum: string[];
|
|
89031
|
+
type: string;
|
|
89032
|
+
};
|
|
89033
|
+
event_id: {
|
|
89034
|
+
type: string;
|
|
89035
|
+
};
|
|
89036
|
+
event_type: {
|
|
89037
|
+
type: string;
|
|
89038
|
+
};
|
|
89039
|
+
description?: never;
|
|
89040
|
+
errors?: never;
|
|
89041
|
+
properties_updated?: never;
|
|
89042
|
+
warnings?: never;
|
|
89043
|
+
response_body?: never;
|
|
89044
|
+
response_status_code?: never;
|
|
88998
89045
|
};
|
|
89046
|
+
required: string[];
|
|
88999
89047
|
type: string;
|
|
89000
|
-
}
|
|
89001
|
-
|
|
89002
|
-
|
|
89003
|
-
|
|
89048
|
+
} | {
|
|
89049
|
+
properties: {
|
|
89050
|
+
description: {
|
|
89051
|
+
type: string;
|
|
89052
|
+
};
|
|
89053
|
+
entry_type: {
|
|
89054
|
+
enum: string[];
|
|
89055
|
+
type: string;
|
|
89056
|
+
};
|
|
89057
|
+
response_body: {
|
|
89058
|
+
additionalProperties: {
|
|
89059
|
+
$ref: string;
|
|
89060
|
+
};
|
|
89061
|
+
type: string;
|
|
89062
|
+
};
|
|
89063
|
+
response_status_code: {
|
|
89064
|
+
format: string;
|
|
89065
|
+
type: string;
|
|
89066
|
+
};
|
|
89067
|
+
errors?: never;
|
|
89068
|
+
properties_updated?: never;
|
|
89069
|
+
warnings?: never;
|
|
89070
|
+
event_id?: never;
|
|
89071
|
+
event_type?: never;
|
|
89004
89072
|
};
|
|
89073
|
+
required: string[];
|
|
89005
89074
|
type: string;
|
|
89006
|
-
};
|
|
89007
|
-
event_id?: never;
|
|
89008
|
-
event_type?: never;
|
|
89009
|
-
response_body?: never;
|
|
89010
|
-
response_status_code?: never;
|
|
89075
|
+
})[];
|
|
89011
89076
|
};
|
|
89012
|
-
|
|
89013
|
-
|
|
89014
|
-
} | {
|
|
89015
|
-
properties: {
|
|
89016
|
-
entry_type: {
|
|
89017
|
-
enum: string[];
|
|
89018
|
-
type: string;
|
|
89019
|
-
};
|
|
89020
|
-
event_id: {
|
|
89021
|
-
type: string;
|
|
89022
|
-
};
|
|
89023
|
-
event_type: {
|
|
89024
|
-
type: string;
|
|
89025
|
-
};
|
|
89026
|
-
description?: never;
|
|
89027
|
-
errors?: never;
|
|
89028
|
-
properties_updated?: never;
|
|
89029
|
-
warnings?: never;
|
|
89030
|
-
response_body?: never;
|
|
89031
|
-
response_status_code?: never;
|
|
89077
|
+
created_at: {
|
|
89078
|
+
type: string;
|
|
89032
89079
|
};
|
|
89033
|
-
|
|
89034
|
-
|
|
89035
|
-
} | {
|
|
89036
|
-
properties: {
|
|
89037
|
-
description: {
|
|
89038
|
-
type: string;
|
|
89039
|
-
};
|
|
89040
|
-
entry_type: {
|
|
89041
|
-
enum: string[];
|
|
89042
|
-
type: string;
|
|
89043
|
-
};
|
|
89044
|
-
response_body: {
|
|
89045
|
-
additionalProperties: {
|
|
89046
|
-
$ref: string;
|
|
89047
|
-
};
|
|
89048
|
-
type: string;
|
|
89049
|
-
};
|
|
89050
|
-
response_status_code: {
|
|
89051
|
-
format: string;
|
|
89052
|
-
type: string;
|
|
89053
|
-
};
|
|
89054
|
-
errors?: never;
|
|
89055
|
-
properties_updated?: never;
|
|
89056
|
-
warnings?: never;
|
|
89057
|
-
event_id?: never;
|
|
89058
|
-
event_type?: never;
|
|
89080
|
+
entry_type: {
|
|
89081
|
+
type: string;
|
|
89059
89082
|
};
|
|
89060
|
-
|
|
89061
|
-
|
|
89062
|
-
|
|
89063
|
-
|
|
89064
|
-
|
|
89065
|
-
|
|
89066
|
-
|
|
89067
|
-
|
|
89068
|
-
type: string;
|
|
89069
|
-
};
|
|
89070
|
-
resource_id: {
|
|
89071
|
-
type: string;
|
|
89072
|
-
};
|
|
89073
|
-
resource_type: {
|
|
89083
|
+
resource_id: {
|
|
89084
|
+
type: string;
|
|
89085
|
+
};
|
|
89086
|
+
resource_type: {
|
|
89087
|
+
type: string;
|
|
89088
|
+
};
|
|
89089
|
+
};
|
|
89090
|
+
required: string[];
|
|
89074
89091
|
type: string;
|
|
89075
89092
|
};
|
|
89093
|
+
type: string;
|
|
89076
89094
|
};
|
|
89077
|
-
required: string[];
|
|
89078
|
-
type: string;
|
|
89079
89095
|
};
|
|
89096
|
+
required: string[];
|
|
89080
89097
|
type: string;
|
|
89081
89098
|
};
|
|
89099
|
+
type: string;
|
|
89100
|
+
};
|
|
89101
|
+
resource_id: {
|
|
89102
|
+
type: string;
|
|
89103
|
+
};
|
|
89104
|
+
resource_type: {
|
|
89105
|
+
type: string;
|
|
89082
89106
|
};
|
|
89083
|
-
required: string[];
|
|
89084
|
-
type: string;
|
|
89085
89107
|
};
|
|
89108
|
+
required: string[];
|
|
89086
89109
|
type: string;
|
|
89087
89110
|
};
|
|
89088
89111
|
};
|
|
@@ -89258,11 +89281,23 @@ declare const _default: {
|
|
|
89258
89281
|
created_at: {
|
|
89259
89282
|
type: string;
|
|
89260
89283
|
};
|
|
89284
|
+
partner_key: {
|
|
89285
|
+
nullable: boolean;
|
|
89286
|
+
type: string;
|
|
89287
|
+
};
|
|
89261
89288
|
partner_resource_id: {
|
|
89262
89289
|
format: string;
|
|
89263
89290
|
nullable: boolean;
|
|
89264
89291
|
type: string;
|
|
89265
89292
|
};
|
|
89293
|
+
resource_type: {
|
|
89294
|
+
nullable: boolean;
|
|
89295
|
+
type: string;
|
|
89296
|
+
};
|
|
89297
|
+
resource_type_alias: {
|
|
89298
|
+
nullable: boolean;
|
|
89299
|
+
type: string;
|
|
89300
|
+
};
|
|
89266
89301
|
workspace_id: {
|
|
89267
89302
|
format: string;
|
|
89268
89303
|
type: string;
|
|
@@ -89423,11 +89458,23 @@ declare const _default: {
|
|
|
89423
89458
|
created_at: {
|
|
89424
89459
|
type: string;
|
|
89425
89460
|
};
|
|
89461
|
+
partner_key: {
|
|
89462
|
+
nullable: boolean;
|
|
89463
|
+
type: string;
|
|
89464
|
+
};
|
|
89426
89465
|
partner_resource_id: {
|
|
89427
89466
|
format: string;
|
|
89428
89467
|
nullable: boolean;
|
|
89429
89468
|
type: string;
|
|
89430
89469
|
};
|
|
89470
|
+
resource_type: {
|
|
89471
|
+
nullable: boolean;
|
|
89472
|
+
type: string;
|
|
89473
|
+
};
|
|
89474
|
+
resource_type_alias: {
|
|
89475
|
+
nullable: boolean;
|
|
89476
|
+
type: string;
|
|
89477
|
+
};
|
|
89431
89478
|
workspace_id: {
|
|
89432
89479
|
format: string;
|
|
89433
89480
|
type: string;
|
|
@@ -118829,8 +118876,8 @@ type Routes = {
|
|
|
118829
118876
|
user_identifier_key: string | null;
|
|
118830
118877
|
/** Number of devices associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
118831
118878
|
device_count: number;
|
|
118832
|
-
/** Customer
|
|
118833
|
-
|
|
118879
|
+
/** Customer key associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
118880
|
+
customer_key?: string | undefined;
|
|
118834
118881
|
/** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
118835
118882
|
connected_account_ids: string[];
|
|
118836
118883
|
/** IDs of the [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews) associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
@@ -132383,8 +132430,8 @@ type Routes = {
|
|
|
132383
132430
|
user_identifier_key: string | null;
|
|
132384
132431
|
/** Number of devices associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
132385
132432
|
device_count: number;
|
|
132386
|
-
/** Customer
|
|
132387
|
-
|
|
132433
|
+
/** Customer key associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
132434
|
+
customer_key?: string | undefined;
|
|
132388
132435
|
/** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
132389
132436
|
connected_account_ids: string[];
|
|
132390
132437
|
/** IDs of the [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews) associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
@@ -132446,8 +132493,8 @@ type Routes = {
|
|
|
132446
132493
|
user_identifier_key: string | null;
|
|
132447
132494
|
/** Number of devices associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
132448
132495
|
device_count: number;
|
|
132449
|
-
/** Customer
|
|
132450
|
-
|
|
132496
|
+
/** Customer key associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
132497
|
+
customer_key?: string | undefined;
|
|
132451
132498
|
/** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
132452
132499
|
connected_account_ids: string[];
|
|
132453
132500
|
/** IDs of the [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews) associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
@@ -132506,8 +132553,8 @@ type Routes = {
|
|
|
132506
132553
|
user_identifier_key: string | null;
|
|
132507
132554
|
/** Number of devices associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
132508
132555
|
device_count: number;
|
|
132509
|
-
/** Customer
|
|
132510
|
-
|
|
132556
|
+
/** Customer key associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
132557
|
+
customer_key?: string | undefined;
|
|
132511
132558
|
/** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
132512
132559
|
connected_account_ids: string[];
|
|
132513
132560
|
/** IDs of the [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews) associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
@@ -132566,8 +132613,8 @@ type Routes = {
|
|
|
132566
132613
|
user_identifier_key: string | null;
|
|
132567
132614
|
/** Number of devices associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
132568
132615
|
device_count: number;
|
|
132569
|
-
/** Customer
|
|
132570
|
-
|
|
132616
|
+
/** Customer key associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
132617
|
+
customer_key?: string | undefined;
|
|
132571
132618
|
/** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
132572
132619
|
connected_account_ids: string[];
|
|
132573
132620
|
/** IDs of the [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews) associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
@@ -132614,8 +132661,8 @@ type Routes = {
|
|
|
132614
132661
|
user_identifier_key: string | null;
|
|
132615
132662
|
/** Number of devices associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
132616
132663
|
device_count: number;
|
|
132617
|
-
/** Customer
|
|
132618
|
-
|
|
132664
|
+
/** Customer key associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
132665
|
+
customer_key?: string | undefined;
|
|
132619
132666
|
/** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
132620
132667
|
connected_account_ids: string[];
|
|
132621
132668
|
/** IDs of the [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews) associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
@@ -157977,53 +158024,57 @@ type Routes = {
|
|
|
157977
158024
|
formData: {};
|
|
157978
158025
|
jsonResponse: {
|
|
157979
158026
|
timeline: {
|
|
157980
|
-
|
|
157981
|
-
|
|
157982
|
-
|
|
157983
|
-
|
|
157984
|
-
|
|
157985
|
-
|
|
157986
|
-
|
|
157987
|
-
[x: string]: any;
|
|
157988
|
-
};
|
|
157989
|
-
} | {
|
|
157990
|
-
context_type: 'job';
|
|
157991
|
-
job_id: string;
|
|
157992
|
-
};
|
|
157993
|
-
entries: {
|
|
157994
|
-
resource_type: string;
|
|
157995
|
-
resource_id: string;
|
|
157996
|
-
entry_type: string;
|
|
157997
|
-
body: {
|
|
157998
|
-
entry_type: 'resource_created';
|
|
157999
|
-
description: string;
|
|
158000
|
-
} | {
|
|
158001
|
-
entry_type: 'resource_updated';
|
|
158002
|
-
description: string;
|
|
158003
|
-
properties_updated?: {
|
|
158027
|
+
resource_type: string;
|
|
158028
|
+
resource_id: string;
|
|
158029
|
+
groups: {
|
|
158030
|
+
context: {
|
|
158031
|
+
context_type: 'request';
|
|
158032
|
+
request_id: string;
|
|
158033
|
+
request_payload: {
|
|
158004
158034
|
[x: string]: any;
|
|
158005
|
-
}
|
|
158006
|
-
|
|
158007
|
-
warnings?: string[] | undefined;
|
|
158008
|
-
} | {
|
|
158009
|
-
entry_type: 'resource_deleted';
|
|
158010
|
-
description: string;
|
|
158011
|
-
} | {
|
|
158012
|
-
entry_type: 'event';
|
|
158013
|
-
event_type: string;
|
|
158014
|
-
event_id: string;
|
|
158015
|
-
} | {
|
|
158016
|
-
entry_type: 'provider_call';
|
|
158017
|
-
description: string;
|
|
158018
|
-
response_status_code: number;
|
|
158019
|
-
response_body?: {
|
|
158035
|
+
};
|
|
158036
|
+
response_payload: {
|
|
158020
158037
|
[x: string]: any;
|
|
158021
|
-
}
|
|
158038
|
+
};
|
|
158039
|
+
} | {
|
|
158040
|
+
context_type: 'job';
|
|
158041
|
+
job_id: string;
|
|
158022
158042
|
};
|
|
158043
|
+
entries: {
|
|
158044
|
+
resource_type: string;
|
|
158045
|
+
resource_id: string;
|
|
158046
|
+
entry_type: string;
|
|
158047
|
+
body: {
|
|
158048
|
+
entry_type: 'resource_created';
|
|
158049
|
+
description: string;
|
|
158050
|
+
} | {
|
|
158051
|
+
entry_type: 'resource_updated';
|
|
158052
|
+
description: string;
|
|
158053
|
+
properties_updated?: {
|
|
158054
|
+
[x: string]: any;
|
|
158055
|
+
} | undefined;
|
|
158056
|
+
errors?: string[] | undefined;
|
|
158057
|
+
warnings?: string[] | undefined;
|
|
158058
|
+
} | {
|
|
158059
|
+
entry_type: 'resource_deleted';
|
|
158060
|
+
description: string;
|
|
158061
|
+
} | {
|
|
158062
|
+
entry_type: 'event';
|
|
158063
|
+
event_type: string;
|
|
158064
|
+
event_id: string;
|
|
158065
|
+
} | {
|
|
158066
|
+
entry_type: 'provider_call';
|
|
158067
|
+
description: string;
|
|
158068
|
+
response_status_code: number;
|
|
158069
|
+
response_body?: {
|
|
158070
|
+
[x: string]: any;
|
|
158071
|
+
} | undefined;
|
|
158072
|
+
};
|
|
158073
|
+
created_at: string;
|
|
158074
|
+
}[];
|
|
158023
158075
|
created_at: string;
|
|
158024
158076
|
}[];
|
|
158025
|
-
|
|
158026
|
-
}[];
|
|
158077
|
+
};
|
|
158027
158078
|
/** Information about the current page of results. */
|
|
158028
158079
|
pagination: {
|
|
158029
158080
|
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
@@ -158063,6 +158114,9 @@ type Routes = {
|
|
|
158063
158114
|
workspace_id: string;
|
|
158064
158115
|
automation_id: string | null;
|
|
158065
158116
|
partner_resource_id: string | null;
|
|
158117
|
+
partner_key: string | null;
|
|
158118
|
+
resource_type: string | null;
|
|
158119
|
+
resource_type_alias: string | null;
|
|
158066
158120
|
automation_result?: {
|
|
158067
158121
|
success: boolean;
|
|
158068
158122
|
rule: 'reservation_created' | 'reservation_time_updated' | 'reservation_deleted';
|
|
@@ -160145,8 +160199,8 @@ type Routes = {
|
|
|
160145
160199
|
user_identifier_key: string | null;
|
|
160146
160200
|
/** Number of devices associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
160147
160201
|
device_count: number;
|
|
160148
|
-
/** Customer
|
|
160149
|
-
|
|
160202
|
+
/** Customer key associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
160203
|
+
customer_key?: string | undefined;
|
|
160150
160204
|
/** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
160151
160205
|
connected_account_ids: string[];
|
|
160152
160206
|
/** IDs of the [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews) associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
@@ -184755,8 +184809,8 @@ type Routes = {
|
|
|
184755
184809
|
user_identifier_key: string | null;
|
|
184756
184810
|
/** Number of devices associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
184757
184811
|
device_count: number;
|
|
184758
|
-
/** Customer
|
|
184759
|
-
|
|
184812
|
+
/** Customer key associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
184813
|
+
customer_key?: string | undefined;
|
|
184760
184814
|
/** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
184761
184815
|
connected_account_ids: string[];
|
|
184762
184816
|
/** IDs of the [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews) associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|