@seamapi/types 1.406.7 → 1.406.9
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 +597 -79
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +695 -16
- 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/acs/acs-access-group.d.ts +6 -0
- package/lib/seam/connect/models/acs/acs-access-group.js +5 -1
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-encoder.d.ts +3 -0
- package/lib/seam/connect/models/acs/acs-encoder.js +4 -0
- package/lib/seam/connect/models/acs/acs-encoder.js.map +1 -1
- package/lib/seam/connect/models/noise-sensors/noise-threshold.js +23 -7
- package/lib/seam/connect/models/noise-sensors/noise-threshold.js.map +1 -1
- package/lib/seam/connect/models/partner/magic-link.d.ts +5 -6
- package/lib/seam/connect/models/partner/magic-link.js +6 -2
- package/lib/seam/connect/models/partner/magic-link.js.map +1 -1
- package/lib/seam/connect/models/partner/resources.d.ts +16 -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 +521 -8
- package/lib/seam/connect/openapi.js +566 -61
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +165 -8
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +2 -0
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +7 -1
- package/src/lib/seam/connect/models/acs/acs-encoder.ts +6 -0
- package/src/lib/seam/connect/models/noise-sensors/noise-threshold.ts +29 -7
- package/src/lib/seam/connect/models/partner/magic-link.ts +9 -2
- package/src/lib/seam/connect/models/partner/resources.ts +13 -0
- package/src/lib/seam/connect/openapi.ts +622 -61
- package/src/lib/seam/connect/route-types.ts +180 -8
|
@@ -282,6 +282,11 @@ declare const _default: {
|
|
|
282
282
|
format: string;
|
|
283
283
|
type: string;
|
|
284
284
|
};
|
|
285
|
+
connected_account_id: {
|
|
286
|
+
description: string;
|
|
287
|
+
format: string;
|
|
288
|
+
type: string;
|
|
289
|
+
};
|
|
285
290
|
created_at: {
|
|
286
291
|
description: string;
|
|
287
292
|
format: string;
|
|
@@ -649,6 +654,11 @@ declare const _default: {
|
|
|
649
654
|
format: string;
|
|
650
655
|
type: string;
|
|
651
656
|
};
|
|
657
|
+
connected_account_id: {
|
|
658
|
+
description: string;
|
|
659
|
+
format: string;
|
|
660
|
+
type: string;
|
|
661
|
+
};
|
|
652
662
|
created_at: {
|
|
653
663
|
description: string;
|
|
654
664
|
format: string;
|
|
@@ -8672,10 +8682,6 @@ declare const _default: {
|
|
|
8672
8682
|
format: string;
|
|
8673
8683
|
type: string;
|
|
8674
8684
|
};
|
|
8675
|
-
customer_id: {
|
|
8676
|
-
format: string;
|
|
8677
|
-
type: string;
|
|
8678
|
-
};
|
|
8679
8685
|
customer_key: {
|
|
8680
8686
|
type: string;
|
|
8681
8687
|
};
|
|
@@ -8720,30 +8726,38 @@ declare const _default: {
|
|
|
8720
8726
|
'x-route-path': string;
|
|
8721
8727
|
};
|
|
8722
8728
|
noise_threshold: {
|
|
8729
|
+
description: string;
|
|
8723
8730
|
properties: {
|
|
8724
8731
|
device_id: {
|
|
8732
|
+
description: string;
|
|
8725
8733
|
format: string;
|
|
8726
8734
|
type: string;
|
|
8727
8735
|
};
|
|
8728
8736
|
ends_daily_at: {
|
|
8737
|
+
description: string;
|
|
8729
8738
|
type: string;
|
|
8730
8739
|
};
|
|
8731
8740
|
name: {
|
|
8741
|
+
description: string;
|
|
8732
8742
|
type: string;
|
|
8733
8743
|
};
|
|
8734
8744
|
noise_threshold_decibels: {
|
|
8745
|
+
description: string;
|
|
8735
8746
|
format: string;
|
|
8736
8747
|
type: string;
|
|
8737
8748
|
};
|
|
8738
8749
|
noise_threshold_id: {
|
|
8750
|
+
description: string;
|
|
8739
8751
|
format: string;
|
|
8740
8752
|
type: string;
|
|
8741
8753
|
};
|
|
8742
8754
|
noise_threshold_nrs: {
|
|
8755
|
+
description: string;
|
|
8743
8756
|
format: string;
|
|
8744
8757
|
type: string;
|
|
8745
8758
|
};
|
|
8746
8759
|
starts_daily_at: {
|
|
8760
|
+
description: string;
|
|
8747
8761
|
type: string;
|
|
8748
8762
|
};
|
|
8749
8763
|
};
|
|
@@ -9687,6 +9701,11 @@ declare const _default: {
|
|
|
9687
9701
|
format: string;
|
|
9688
9702
|
type: string;
|
|
9689
9703
|
};
|
|
9704
|
+
connected_account_id: {
|
|
9705
|
+
description: string;
|
|
9706
|
+
format: string;
|
|
9707
|
+
type: string;
|
|
9708
|
+
};
|
|
9690
9709
|
created_at: {
|
|
9691
9710
|
description: string;
|
|
9692
9711
|
format: string;
|
|
@@ -11158,22 +11177,32 @@ declare const _default: {
|
|
|
11158
11177
|
};
|
|
11159
11178
|
};
|
|
11160
11179
|
security: ({
|
|
11180
|
+
client_session_with_customer: never[];
|
|
11181
|
+
client_session?: never;
|
|
11182
|
+
pat_with_workspace?: never;
|
|
11183
|
+
console_session_with_workspace?: never;
|
|
11184
|
+
api_key?: never;
|
|
11185
|
+
} | {
|
|
11161
11186
|
client_session: never[];
|
|
11187
|
+
client_session_with_customer?: never;
|
|
11162
11188
|
pat_with_workspace?: never;
|
|
11163
11189
|
console_session_with_workspace?: never;
|
|
11164
11190
|
api_key?: never;
|
|
11165
11191
|
} | {
|
|
11166
11192
|
pat_with_workspace: never[];
|
|
11193
|
+
client_session_with_customer?: never;
|
|
11167
11194
|
client_session?: never;
|
|
11168
11195
|
console_session_with_workspace?: never;
|
|
11169
11196
|
api_key?: never;
|
|
11170
11197
|
} | {
|
|
11171
11198
|
console_session_with_workspace: never[];
|
|
11199
|
+
client_session_with_customer?: never;
|
|
11172
11200
|
client_session?: never;
|
|
11173
11201
|
pat_with_workspace?: never;
|
|
11174
11202
|
api_key?: never;
|
|
11175
11203
|
} | {
|
|
11176
11204
|
api_key: never[];
|
|
11205
|
+
client_session_with_customer?: never;
|
|
11177
11206
|
client_session?: never;
|
|
11178
11207
|
pat_with_workspace?: never;
|
|
11179
11208
|
console_session_with_workspace?: never;
|
|
@@ -11546,22 +11575,32 @@ declare const _default: {
|
|
|
11546
11575
|
};
|
|
11547
11576
|
security: ({
|
|
11548
11577
|
client_session: never[];
|
|
11578
|
+
client_session_with_customer?: never;
|
|
11579
|
+
pat_with_workspace?: never;
|
|
11580
|
+
console_session_with_workspace?: never;
|
|
11581
|
+
api_key?: never;
|
|
11582
|
+
} | {
|
|
11583
|
+
client_session_with_customer: never[];
|
|
11584
|
+
client_session?: never;
|
|
11549
11585
|
pat_with_workspace?: never;
|
|
11550
11586
|
console_session_with_workspace?: never;
|
|
11551
11587
|
api_key?: never;
|
|
11552
11588
|
} | {
|
|
11553
11589
|
pat_with_workspace: never[];
|
|
11554
11590
|
client_session?: never;
|
|
11591
|
+
client_session_with_customer?: never;
|
|
11555
11592
|
console_session_with_workspace?: never;
|
|
11556
11593
|
api_key?: never;
|
|
11557
11594
|
} | {
|
|
11558
11595
|
console_session_with_workspace: never[];
|
|
11559
11596
|
client_session?: never;
|
|
11597
|
+
client_session_with_customer?: never;
|
|
11560
11598
|
pat_with_workspace?: never;
|
|
11561
11599
|
api_key?: never;
|
|
11562
11600
|
} | {
|
|
11563
11601
|
api_key: never[];
|
|
11564
11602
|
client_session?: never;
|
|
11603
|
+
client_session_with_customer?: never;
|
|
11565
11604
|
pat_with_workspace?: never;
|
|
11566
11605
|
console_session_with_workspace?: never;
|
|
11567
11606
|
})[];
|
|
@@ -11713,21 +11752,31 @@ declare const _default: {
|
|
|
11713
11752
|
access_token?: never;
|
|
11714
11753
|
console_session_with_workspace?: never;
|
|
11715
11754
|
client_session?: never;
|
|
11755
|
+
client_session_with_customer?: never;
|
|
11716
11756
|
} | {
|
|
11717
11757
|
access_token: never[];
|
|
11718
11758
|
api_key?: never;
|
|
11719
11759
|
console_session_with_workspace?: never;
|
|
11720
11760
|
client_session?: never;
|
|
11761
|
+
client_session_with_customer?: never;
|
|
11721
11762
|
} | {
|
|
11722
11763
|
console_session_with_workspace: never[];
|
|
11723
11764
|
api_key?: never;
|
|
11724
11765
|
access_token?: never;
|
|
11725
11766
|
client_session?: never;
|
|
11767
|
+
client_session_with_customer?: never;
|
|
11726
11768
|
} | {
|
|
11727
11769
|
client_session: never[];
|
|
11728
11770
|
api_key?: never;
|
|
11729
11771
|
access_token?: never;
|
|
11730
11772
|
console_session_with_workspace?: never;
|
|
11773
|
+
client_session_with_customer?: never;
|
|
11774
|
+
} | {
|
|
11775
|
+
client_session_with_customer: never[];
|
|
11776
|
+
api_key?: never;
|
|
11777
|
+
access_token?: never;
|
|
11778
|
+
console_session_with_workspace?: never;
|
|
11779
|
+
client_session?: never;
|
|
11731
11780
|
})[];
|
|
11732
11781
|
summary: string;
|
|
11733
11782
|
tags: string[];
|
|
@@ -11755,6 +11804,13 @@ declare const _default: {
|
|
|
11755
11804
|
};
|
|
11756
11805
|
type: string;
|
|
11757
11806
|
};
|
|
11807
|
+
customer_ids: {
|
|
11808
|
+
items: {
|
|
11809
|
+
format: string;
|
|
11810
|
+
type: string;
|
|
11811
|
+
};
|
|
11812
|
+
type: string;
|
|
11813
|
+
};
|
|
11758
11814
|
device_id: {
|
|
11759
11815
|
description: string;
|
|
11760
11816
|
format: string;
|
|
@@ -11816,22 +11872,32 @@ declare const _default: {
|
|
|
11816
11872
|
};
|
|
11817
11873
|
security: ({
|
|
11818
11874
|
client_session: never[];
|
|
11875
|
+
client_session_with_customer?: never;
|
|
11876
|
+
pat_with_workspace?: never;
|
|
11877
|
+
console_session_with_workspace?: never;
|
|
11878
|
+
api_key?: never;
|
|
11879
|
+
} | {
|
|
11880
|
+
client_session_with_customer: never[];
|
|
11881
|
+
client_session?: never;
|
|
11819
11882
|
pat_with_workspace?: never;
|
|
11820
11883
|
console_session_with_workspace?: never;
|
|
11821
11884
|
api_key?: never;
|
|
11822
11885
|
} | {
|
|
11823
11886
|
pat_with_workspace: never[];
|
|
11824
11887
|
client_session?: never;
|
|
11888
|
+
client_session_with_customer?: never;
|
|
11825
11889
|
console_session_with_workspace?: never;
|
|
11826
11890
|
api_key?: never;
|
|
11827
11891
|
} | {
|
|
11828
11892
|
console_session_with_workspace: never[];
|
|
11829
11893
|
client_session?: never;
|
|
11894
|
+
client_session_with_customer?: never;
|
|
11830
11895
|
pat_with_workspace?: never;
|
|
11831
11896
|
api_key?: never;
|
|
11832
11897
|
} | {
|
|
11833
11898
|
api_key: never[];
|
|
11834
11899
|
client_session?: never;
|
|
11900
|
+
client_session_with_customer?: never;
|
|
11835
11901
|
pat_with_workspace?: never;
|
|
11836
11902
|
console_session_with_workspace?: never;
|
|
11837
11903
|
})[];
|
|
@@ -21966,22 +22032,32 @@ declare const _default: {
|
|
|
21966
22032
|
};
|
|
21967
22033
|
security: ({
|
|
21968
22034
|
client_session: never[];
|
|
22035
|
+
client_session_with_customer?: never;
|
|
22036
|
+
pat_with_workspace?: never;
|
|
22037
|
+
console_session_with_workspace?: never;
|
|
22038
|
+
api_key?: never;
|
|
22039
|
+
} | {
|
|
22040
|
+
client_session_with_customer: never[];
|
|
22041
|
+
client_session?: never;
|
|
21969
22042
|
pat_with_workspace?: never;
|
|
21970
22043
|
console_session_with_workspace?: never;
|
|
21971
22044
|
api_key?: never;
|
|
21972
22045
|
} | {
|
|
21973
22046
|
pat_with_workspace: never[];
|
|
21974
22047
|
client_session?: never;
|
|
22048
|
+
client_session_with_customer?: never;
|
|
21975
22049
|
console_session_with_workspace?: never;
|
|
21976
22050
|
api_key?: never;
|
|
21977
22051
|
} | {
|
|
21978
22052
|
console_session_with_workspace: never[];
|
|
21979
22053
|
client_session?: never;
|
|
22054
|
+
client_session_with_customer?: never;
|
|
21980
22055
|
pat_with_workspace?: never;
|
|
21981
22056
|
api_key?: never;
|
|
21982
22057
|
} | {
|
|
21983
22058
|
api_key: never[];
|
|
21984
22059
|
client_session?: never;
|
|
22060
|
+
client_session_with_customer?: never;
|
|
21985
22061
|
pat_with_workspace?: never;
|
|
21986
22062
|
console_session_with_workspace?: never;
|
|
21987
22063
|
})[];
|
|
@@ -22196,22 +22272,32 @@ declare const _default: {
|
|
|
22196
22272
|
};
|
|
22197
22273
|
security: ({
|
|
22198
22274
|
client_session: never[];
|
|
22275
|
+
client_session_with_customer?: never;
|
|
22276
|
+
pat_with_workspace?: never;
|
|
22277
|
+
console_session_with_workspace?: never;
|
|
22278
|
+
api_key?: never;
|
|
22279
|
+
} | {
|
|
22280
|
+
client_session_with_customer: never[];
|
|
22281
|
+
client_session?: never;
|
|
22199
22282
|
pat_with_workspace?: never;
|
|
22200
22283
|
console_session_with_workspace?: never;
|
|
22201
22284
|
api_key?: never;
|
|
22202
22285
|
} | {
|
|
22203
22286
|
pat_with_workspace: never[];
|
|
22204
22287
|
client_session?: never;
|
|
22288
|
+
client_session_with_customer?: never;
|
|
22205
22289
|
console_session_with_workspace?: never;
|
|
22206
22290
|
api_key?: never;
|
|
22207
22291
|
} | {
|
|
22208
22292
|
console_session_with_workspace: never[];
|
|
22209
22293
|
client_session?: never;
|
|
22294
|
+
client_session_with_customer?: never;
|
|
22210
22295
|
pat_with_workspace?: never;
|
|
22211
22296
|
api_key?: never;
|
|
22212
22297
|
} | {
|
|
22213
22298
|
api_key: never[];
|
|
22214
22299
|
client_session?: never;
|
|
22300
|
+
client_session_with_customer?: never;
|
|
22215
22301
|
pat_with_workspace?: never;
|
|
22216
22302
|
console_session_with_workspace?: never;
|
|
22217
22303
|
})[];
|
|
@@ -22362,6 +22448,7 @@ declare const _default: {
|
|
|
22362
22448
|
};
|
|
22363
22449
|
'/noise_sensors/list': {
|
|
22364
22450
|
post: {
|
|
22451
|
+
description: string;
|
|
22365
22452
|
operationId: string;
|
|
22366
22453
|
requestBody: {
|
|
22367
22454
|
content: {
|
|
@@ -22541,10 +22628,12 @@ declare const _default: {
|
|
|
22541
22628
|
'x-fern-sdk-method-name': string;
|
|
22542
22629
|
'x-fern-sdk-return-value': string;
|
|
22543
22630
|
'x-response-key': string;
|
|
22631
|
+
'x-title': string;
|
|
22544
22632
|
};
|
|
22545
22633
|
};
|
|
22546
22634
|
'/noise_sensors/noise_thresholds/create': {
|
|
22547
22635
|
post: {
|
|
22636
|
+
description: string;
|
|
22548
22637
|
operationId: string;
|
|
22549
22638
|
requestBody: {
|
|
22550
22639
|
content: {
|
|
@@ -22552,29 +22641,36 @@ declare const _default: {
|
|
|
22552
22641
|
schema: {
|
|
22553
22642
|
properties: {
|
|
22554
22643
|
device_id: {
|
|
22644
|
+
description: string;
|
|
22555
22645
|
format: string;
|
|
22556
22646
|
type: string;
|
|
22557
22647
|
};
|
|
22558
22648
|
ends_daily_at: {
|
|
22649
|
+
description: string;
|
|
22559
22650
|
type: string;
|
|
22560
22651
|
};
|
|
22561
22652
|
name: {
|
|
22653
|
+
description: string;
|
|
22562
22654
|
type: string;
|
|
22563
22655
|
};
|
|
22564
22656
|
noise_threshold_decibels: {
|
|
22657
|
+
description: string;
|
|
22565
22658
|
format: string;
|
|
22566
22659
|
type: string;
|
|
22567
22660
|
};
|
|
22568
22661
|
noise_threshold_nrs: {
|
|
22662
|
+
description: string;
|
|
22569
22663
|
format: string;
|
|
22570
22664
|
type: string;
|
|
22571
22665
|
};
|
|
22572
22666
|
starts_daily_at: {
|
|
22667
|
+
description: string;
|
|
22573
22668
|
type: string;
|
|
22574
22669
|
};
|
|
22575
22670
|
sync: {
|
|
22576
22671
|
default: boolean;
|
|
22577
22672
|
type: string;
|
|
22673
|
+
'x-undocumented': string;
|
|
22578
22674
|
};
|
|
22579
22675
|
};
|
|
22580
22676
|
required: string[];
|
|
@@ -22633,10 +22729,12 @@ declare const _default: {
|
|
|
22633
22729
|
'x-fern-sdk-method-name': string;
|
|
22634
22730
|
'x-fern-sdk-return-value': string;
|
|
22635
22731
|
'x-response-key': string;
|
|
22732
|
+
'x-title': string;
|
|
22636
22733
|
};
|
|
22637
22734
|
};
|
|
22638
22735
|
'/noise_sensors/noise_thresholds/delete': {
|
|
22639
22736
|
post: {
|
|
22737
|
+
description: string;
|
|
22640
22738
|
operationId: string;
|
|
22641
22739
|
requestBody: {
|
|
22642
22740
|
content: {
|
|
@@ -22644,16 +22742,19 @@ declare const _default: {
|
|
|
22644
22742
|
schema: {
|
|
22645
22743
|
properties: {
|
|
22646
22744
|
device_id: {
|
|
22745
|
+
description: string;
|
|
22647
22746
|
format: string;
|
|
22648
22747
|
type: string;
|
|
22649
22748
|
};
|
|
22650
22749
|
noise_threshold_id: {
|
|
22750
|
+
description: string;
|
|
22651
22751
|
format: string;
|
|
22652
22752
|
type: string;
|
|
22653
22753
|
};
|
|
22654
22754
|
sync: {
|
|
22655
22755
|
default: boolean;
|
|
22656
22756
|
type: string;
|
|
22757
|
+
'x-undocumented': string;
|
|
22657
22758
|
};
|
|
22658
22759
|
};
|
|
22659
22760
|
required: string[];
|
|
@@ -22708,10 +22809,12 @@ declare const _default: {
|
|
|
22708
22809
|
'x-fern-sdk-group-name': string[];
|
|
22709
22810
|
'x-fern-sdk-method-name': string;
|
|
22710
22811
|
'x-response-key': null;
|
|
22812
|
+
'x-title': string;
|
|
22711
22813
|
};
|
|
22712
22814
|
};
|
|
22713
22815
|
'/noise_sensors/noise_thresholds/get': {
|
|
22714
22816
|
post: {
|
|
22817
|
+
description: string;
|
|
22715
22818
|
operationId: string;
|
|
22716
22819
|
requestBody: {
|
|
22717
22820
|
content: {
|
|
@@ -22719,6 +22822,7 @@ declare const _default: {
|
|
|
22719
22822
|
schema: {
|
|
22720
22823
|
properties: {
|
|
22721
22824
|
noise_threshold_id: {
|
|
22825
|
+
description: string;
|
|
22722
22826
|
format: string;
|
|
22723
22827
|
type: string;
|
|
22724
22828
|
};
|
|
@@ -22775,10 +22879,12 @@ declare const _default: {
|
|
|
22775
22879
|
'x-fern-sdk-method-name': string;
|
|
22776
22880
|
'x-fern-sdk-return-value': string;
|
|
22777
22881
|
'x-response-key': string;
|
|
22882
|
+
'x-title': string;
|
|
22778
22883
|
};
|
|
22779
22884
|
};
|
|
22780
22885
|
'/noise_sensors/noise_thresholds/list': {
|
|
22781
22886
|
post: {
|
|
22887
|
+
description: string;
|
|
22782
22888
|
operationId: string;
|
|
22783
22889
|
requestBody: {
|
|
22784
22890
|
content: {
|
|
@@ -22786,11 +22892,14 @@ declare const _default: {
|
|
|
22786
22892
|
schema: {
|
|
22787
22893
|
properties: {
|
|
22788
22894
|
device_id: {
|
|
22895
|
+
description: string;
|
|
22789
22896
|
format: string;
|
|
22790
22897
|
type: string;
|
|
22791
22898
|
};
|
|
22792
22899
|
is_programmed: {
|
|
22900
|
+
description: string;
|
|
22793
22901
|
type: string;
|
|
22902
|
+
'x-undocumented': string;
|
|
22794
22903
|
};
|
|
22795
22904
|
};
|
|
22796
22905
|
required: string[];
|
|
@@ -22856,10 +22965,12 @@ declare const _default: {
|
|
|
22856
22965
|
'x-fern-sdk-method-name': string;
|
|
22857
22966
|
'x-fern-sdk-return-value': string;
|
|
22858
22967
|
'x-response-key': string;
|
|
22968
|
+
'x-title': string;
|
|
22859
22969
|
};
|
|
22860
22970
|
};
|
|
22861
22971
|
'/noise_sensors/noise_thresholds/update': {
|
|
22862
22972
|
patch: {
|
|
22973
|
+
description: string;
|
|
22863
22974
|
operationId: string;
|
|
22864
22975
|
requestBody: {
|
|
22865
22976
|
content: {
|
|
@@ -22867,33 +22978,41 @@ declare const _default: {
|
|
|
22867
22978
|
schema: {
|
|
22868
22979
|
properties: {
|
|
22869
22980
|
device_id: {
|
|
22981
|
+
description: string;
|
|
22870
22982
|
format: string;
|
|
22871
22983
|
type: string;
|
|
22872
22984
|
};
|
|
22873
22985
|
ends_daily_at: {
|
|
22986
|
+
description: string;
|
|
22874
22987
|
type: string;
|
|
22875
22988
|
};
|
|
22876
22989
|
name: {
|
|
22990
|
+
description: string;
|
|
22877
22991
|
type: string;
|
|
22878
22992
|
};
|
|
22879
22993
|
noise_threshold_decibels: {
|
|
22994
|
+
description: string;
|
|
22880
22995
|
format: string;
|
|
22881
22996
|
type: string;
|
|
22882
22997
|
};
|
|
22883
22998
|
noise_threshold_id: {
|
|
22999
|
+
description: string;
|
|
22884
23000
|
format: string;
|
|
22885
23001
|
type: string;
|
|
22886
23002
|
};
|
|
22887
23003
|
noise_threshold_nrs: {
|
|
23004
|
+
description: string;
|
|
22888
23005
|
format: string;
|
|
22889
23006
|
type: string;
|
|
22890
23007
|
};
|
|
22891
23008
|
starts_daily_at: {
|
|
23009
|
+
description: string;
|
|
22892
23010
|
type: string;
|
|
22893
23011
|
};
|
|
22894
23012
|
sync: {
|
|
22895
23013
|
default: boolean;
|
|
22896
23014
|
type: string;
|
|
23015
|
+
'x-undocumented': string;
|
|
22897
23016
|
};
|
|
22898
23017
|
};
|
|
22899
23018
|
required: string[];
|
|
@@ -22947,8 +23066,10 @@ declare const _default: {
|
|
|
22947
23066
|
'x-action-attempt-type': string;
|
|
22948
23067
|
'x-fern-ignore': boolean;
|
|
22949
23068
|
'x-response-key': null;
|
|
23069
|
+
'x-title': string;
|
|
22950
23070
|
};
|
|
22951
23071
|
post: {
|
|
23072
|
+
description: string;
|
|
22952
23073
|
operationId: string;
|
|
22953
23074
|
requestBody: {
|
|
22954
23075
|
content: {
|
|
@@ -22956,33 +23077,41 @@ declare const _default: {
|
|
|
22956
23077
|
schema: {
|
|
22957
23078
|
properties: {
|
|
22958
23079
|
device_id: {
|
|
23080
|
+
description: string;
|
|
22959
23081
|
format: string;
|
|
22960
23082
|
type: string;
|
|
22961
23083
|
};
|
|
22962
23084
|
ends_daily_at: {
|
|
23085
|
+
description: string;
|
|
22963
23086
|
type: string;
|
|
22964
23087
|
};
|
|
22965
23088
|
name: {
|
|
23089
|
+
description: string;
|
|
22966
23090
|
type: string;
|
|
22967
23091
|
};
|
|
22968
23092
|
noise_threshold_decibels: {
|
|
23093
|
+
description: string;
|
|
22969
23094
|
format: string;
|
|
22970
23095
|
type: string;
|
|
22971
23096
|
};
|
|
22972
23097
|
noise_threshold_id: {
|
|
23098
|
+
description: string;
|
|
22973
23099
|
format: string;
|
|
22974
23100
|
type: string;
|
|
22975
23101
|
};
|
|
22976
23102
|
noise_threshold_nrs: {
|
|
23103
|
+
description: string;
|
|
22977
23104
|
format: string;
|
|
22978
23105
|
type: string;
|
|
22979
23106
|
};
|
|
22980
23107
|
starts_daily_at: {
|
|
23108
|
+
description: string;
|
|
22981
23109
|
type: string;
|
|
22982
23110
|
};
|
|
22983
23111
|
sync: {
|
|
22984
23112
|
default: boolean;
|
|
22985
23113
|
type: string;
|
|
23114
|
+
'x-undocumented': string;
|
|
22986
23115
|
};
|
|
22987
23116
|
};
|
|
22988
23117
|
required: string[];
|
|
@@ -23037,8 +23166,10 @@ declare const _default: {
|
|
|
23037
23166
|
'x-fern-sdk-group-name': string[];
|
|
23038
23167
|
'x-fern-sdk-method-name': string;
|
|
23039
23168
|
'x-response-key': null;
|
|
23169
|
+
'x-title': string;
|
|
23040
23170
|
};
|
|
23041
23171
|
put: {
|
|
23172
|
+
description: string;
|
|
23042
23173
|
operationId: string;
|
|
23043
23174
|
requestBody: {
|
|
23044
23175
|
content: {
|
|
@@ -23046,33 +23177,41 @@ declare const _default: {
|
|
|
23046
23177
|
schema: {
|
|
23047
23178
|
properties: {
|
|
23048
23179
|
device_id: {
|
|
23180
|
+
description: string;
|
|
23049
23181
|
format: string;
|
|
23050
23182
|
type: string;
|
|
23051
23183
|
};
|
|
23052
23184
|
ends_daily_at: {
|
|
23185
|
+
description: string;
|
|
23053
23186
|
type: string;
|
|
23054
23187
|
};
|
|
23055
23188
|
name: {
|
|
23189
|
+
description: string;
|
|
23056
23190
|
type: string;
|
|
23057
23191
|
};
|
|
23058
23192
|
noise_threshold_decibels: {
|
|
23193
|
+
description: string;
|
|
23059
23194
|
format: string;
|
|
23060
23195
|
type: string;
|
|
23061
23196
|
};
|
|
23062
23197
|
noise_threshold_id: {
|
|
23198
|
+
description: string;
|
|
23063
23199
|
format: string;
|
|
23064
23200
|
type: string;
|
|
23065
23201
|
};
|
|
23066
23202
|
noise_threshold_nrs: {
|
|
23203
|
+
description: string;
|
|
23067
23204
|
format: string;
|
|
23068
23205
|
type: string;
|
|
23069
23206
|
};
|
|
23070
23207
|
starts_daily_at: {
|
|
23208
|
+
description: string;
|
|
23071
23209
|
type: string;
|
|
23072
23210
|
};
|
|
23073
23211
|
sync: {
|
|
23074
23212
|
default: boolean;
|
|
23075
23213
|
type: string;
|
|
23214
|
+
'x-undocumented': string;
|
|
23076
23215
|
};
|
|
23077
23216
|
};
|
|
23078
23217
|
required: string[];
|
|
@@ -23126,10 +23265,12 @@ declare const _default: {
|
|
|
23126
23265
|
'x-action-attempt-type': string;
|
|
23127
23266
|
'x-fern-ignore': boolean;
|
|
23128
23267
|
'x-response-key': null;
|
|
23268
|
+
'x-title': string;
|
|
23129
23269
|
};
|
|
23130
23270
|
};
|
|
23131
23271
|
'/noise_sensors/simulate/trigger_noise_threshold': {
|
|
23132
23272
|
post: {
|
|
23273
|
+
description: string;
|
|
23133
23274
|
operationId: string;
|
|
23134
23275
|
requestBody: {
|
|
23135
23276
|
content: {
|
|
@@ -23137,6 +23278,7 @@ declare const _default: {
|
|
|
23137
23278
|
schema: {
|
|
23138
23279
|
properties: {
|
|
23139
23280
|
device_id: {
|
|
23281
|
+
description: string;
|
|
23140
23282
|
format: string;
|
|
23141
23283
|
type: string;
|
|
23142
23284
|
};
|
|
@@ -23189,6 +23331,7 @@ declare const _default: {
|
|
|
23189
23331
|
'x-fern-sdk-group-name': string[];
|
|
23190
23332
|
'x-fern-sdk-method-name': string;
|
|
23191
23333
|
'x-response-key': null;
|
|
23334
|
+
'x-title': string;
|
|
23192
23335
|
};
|
|
23193
23336
|
};
|
|
23194
23337
|
'/phones/deactivate': {
|
|
@@ -24852,6 +24995,114 @@ declare const _default: {
|
|
|
24852
24995
|
'x-undocumented': string;
|
|
24853
24996
|
};
|
|
24854
24997
|
};
|
|
24998
|
+
'/seam/partner/v1/building_blocks/spaces/auto_map': {
|
|
24999
|
+
post: {
|
|
25000
|
+
description: string;
|
|
25001
|
+
operationId: string;
|
|
25002
|
+
requestBody: {
|
|
25003
|
+
content: {
|
|
25004
|
+
'application/json': {
|
|
25005
|
+
schema: {
|
|
25006
|
+
properties: {
|
|
25007
|
+
collection_key: {
|
|
25008
|
+
type: string;
|
|
25009
|
+
};
|
|
25010
|
+
};
|
|
25011
|
+
required: string[];
|
|
25012
|
+
type: string;
|
|
25013
|
+
};
|
|
25014
|
+
};
|
|
25015
|
+
};
|
|
25016
|
+
};
|
|
25017
|
+
responses: {
|
|
25018
|
+
200: {
|
|
25019
|
+
content: {
|
|
25020
|
+
'application/json': {
|
|
25021
|
+
schema: {
|
|
25022
|
+
properties: {
|
|
25023
|
+
ok: {
|
|
25024
|
+
type: string;
|
|
25025
|
+
};
|
|
25026
|
+
spaces: {
|
|
25027
|
+
items: {
|
|
25028
|
+
properties: {
|
|
25029
|
+
acs_entrances: {
|
|
25030
|
+
items: {
|
|
25031
|
+
properties: {
|
|
25032
|
+
acs_entrance_id: {
|
|
25033
|
+
type: string;
|
|
25034
|
+
};
|
|
25035
|
+
name: {
|
|
25036
|
+
type: string;
|
|
25037
|
+
};
|
|
25038
|
+
};
|
|
25039
|
+
required: string[];
|
|
25040
|
+
type: string;
|
|
25041
|
+
};
|
|
25042
|
+
type: string;
|
|
25043
|
+
};
|
|
25044
|
+
devices: {
|
|
25045
|
+
items: {
|
|
25046
|
+
properties: {
|
|
25047
|
+
device_id: {
|
|
25048
|
+
type: string;
|
|
25049
|
+
};
|
|
25050
|
+
device_type: {
|
|
25051
|
+
enum: string[];
|
|
25052
|
+
type: string;
|
|
25053
|
+
};
|
|
25054
|
+
name: {
|
|
25055
|
+
type: string;
|
|
25056
|
+
};
|
|
25057
|
+
};
|
|
25058
|
+
required: string[];
|
|
25059
|
+
type: string;
|
|
25060
|
+
};
|
|
25061
|
+
type: string;
|
|
25062
|
+
};
|
|
25063
|
+
name: {
|
|
25064
|
+
type: string;
|
|
25065
|
+
};
|
|
25066
|
+
needs_review: {
|
|
25067
|
+
type: string;
|
|
25068
|
+
};
|
|
25069
|
+
partner_resource_key: {
|
|
25070
|
+
type: string;
|
|
25071
|
+
};
|
|
25072
|
+
};
|
|
25073
|
+
required: string[];
|
|
25074
|
+
type: string;
|
|
25075
|
+
};
|
|
25076
|
+
type: string;
|
|
25077
|
+
};
|
|
25078
|
+
};
|
|
25079
|
+
required: string[];
|
|
25080
|
+
type: string;
|
|
25081
|
+
};
|
|
25082
|
+
};
|
|
25083
|
+
};
|
|
25084
|
+
description: string;
|
|
25085
|
+
};
|
|
25086
|
+
400: {
|
|
25087
|
+
description: string;
|
|
25088
|
+
};
|
|
25089
|
+
401: {
|
|
25090
|
+
description: string;
|
|
25091
|
+
};
|
|
25092
|
+
};
|
|
25093
|
+
security: {
|
|
25094
|
+
client_session_with_customer: never[];
|
|
25095
|
+
}[];
|
|
25096
|
+
summary: string;
|
|
25097
|
+
tags: never[];
|
|
25098
|
+
'x-fern-sdk-group-name': string[];
|
|
25099
|
+
'x-fern-sdk-method-name': string;
|
|
25100
|
+
'x-fern-sdk-return-value': string;
|
|
25101
|
+
'x-response-key': string;
|
|
25102
|
+
'x-title': string;
|
|
25103
|
+
'x-undocumented': string;
|
|
25104
|
+
};
|
|
25105
|
+
};
|
|
24855
25106
|
'/seam/partner/v1/resources/list': {
|
|
24856
25107
|
post: {
|
|
24857
25108
|
description: string;
|
|
@@ -30162,7 +30413,167 @@ declare const _default: {
|
|
|
30162
30413
|
'x-undocumented': string;
|
|
30163
30414
|
};
|
|
30164
30415
|
};
|
|
30416
|
+
'/unstable_partner/building_blocks/connect_accounts': {
|
|
30417
|
+
post: {
|
|
30418
|
+
description: string;
|
|
30419
|
+
operationId: string;
|
|
30420
|
+
requestBody: {
|
|
30421
|
+
content: {
|
|
30422
|
+
'application/json': {
|
|
30423
|
+
schema: {
|
|
30424
|
+
properties: {
|
|
30425
|
+
customer_key: {
|
|
30426
|
+
type: string;
|
|
30427
|
+
};
|
|
30428
|
+
};
|
|
30429
|
+
required: string[];
|
|
30430
|
+
type: string;
|
|
30431
|
+
};
|
|
30432
|
+
};
|
|
30433
|
+
};
|
|
30434
|
+
};
|
|
30435
|
+
responses: {
|
|
30436
|
+
200: {
|
|
30437
|
+
content: {
|
|
30438
|
+
'application/json': {
|
|
30439
|
+
schema: {
|
|
30440
|
+
properties: {
|
|
30441
|
+
magic_link: {
|
|
30442
|
+
$ref: string;
|
|
30443
|
+
};
|
|
30444
|
+
ok: {
|
|
30445
|
+
type: string;
|
|
30446
|
+
};
|
|
30447
|
+
};
|
|
30448
|
+
required: string[];
|
|
30449
|
+
type: string;
|
|
30450
|
+
};
|
|
30451
|
+
};
|
|
30452
|
+
};
|
|
30453
|
+
description: string;
|
|
30454
|
+
};
|
|
30455
|
+
400: {
|
|
30456
|
+
description: string;
|
|
30457
|
+
};
|
|
30458
|
+
401: {
|
|
30459
|
+
description: string;
|
|
30460
|
+
};
|
|
30461
|
+
};
|
|
30462
|
+
security: ({
|
|
30463
|
+
pat_with_workspace: never[];
|
|
30464
|
+
console_session_with_workspace?: never;
|
|
30465
|
+
api_key?: never;
|
|
30466
|
+
} | {
|
|
30467
|
+
console_session_with_workspace: never[];
|
|
30468
|
+
pat_with_workspace?: never;
|
|
30469
|
+
api_key?: never;
|
|
30470
|
+
} | {
|
|
30471
|
+
api_key: never[];
|
|
30472
|
+
pat_with_workspace?: never;
|
|
30473
|
+
console_session_with_workspace?: never;
|
|
30474
|
+
})[];
|
|
30475
|
+
summary: string;
|
|
30476
|
+
tags: never[];
|
|
30477
|
+
'x-fern-sdk-group-name': string[];
|
|
30478
|
+
'x-fern-sdk-method-name': string;
|
|
30479
|
+
'x-fern-sdk-return-value': string;
|
|
30480
|
+
'x-response-key': string;
|
|
30481
|
+
'x-title': string;
|
|
30482
|
+
'x-undocumented': string;
|
|
30483
|
+
};
|
|
30484
|
+
};
|
|
30165
30485
|
'/unstable_partner/building_blocks/generate_magic_link': {
|
|
30486
|
+
post: {
|
|
30487
|
+
description: string;
|
|
30488
|
+
operationId: string;
|
|
30489
|
+
requestBody: {
|
|
30490
|
+
content: {
|
|
30491
|
+
'application/json': {
|
|
30492
|
+
schema: {
|
|
30493
|
+
oneOf: ({
|
|
30494
|
+
properties: {
|
|
30495
|
+
building_block_type: {
|
|
30496
|
+
enum: string[];
|
|
30497
|
+
type: string;
|
|
30498
|
+
};
|
|
30499
|
+
customer_key: {
|
|
30500
|
+
type: string;
|
|
30501
|
+
};
|
|
30502
|
+
collection_key?: never;
|
|
30503
|
+
};
|
|
30504
|
+
required: string[];
|
|
30505
|
+
type: string;
|
|
30506
|
+
} | {
|
|
30507
|
+
properties: {
|
|
30508
|
+
building_block_type: {
|
|
30509
|
+
enum: string[];
|
|
30510
|
+
type: string;
|
|
30511
|
+
};
|
|
30512
|
+
collection_key: {
|
|
30513
|
+
type: string;
|
|
30514
|
+
};
|
|
30515
|
+
customer_key: {
|
|
30516
|
+
type: string;
|
|
30517
|
+
};
|
|
30518
|
+
};
|
|
30519
|
+
required: string[];
|
|
30520
|
+
type: string;
|
|
30521
|
+
})[];
|
|
30522
|
+
};
|
|
30523
|
+
};
|
|
30524
|
+
};
|
|
30525
|
+
};
|
|
30526
|
+
responses: {
|
|
30527
|
+
200: {
|
|
30528
|
+
content: {
|
|
30529
|
+
'application/json': {
|
|
30530
|
+
schema: {
|
|
30531
|
+
properties: {
|
|
30532
|
+
magic_link: {
|
|
30533
|
+
$ref: string;
|
|
30534
|
+
};
|
|
30535
|
+
ok: {
|
|
30536
|
+
type: string;
|
|
30537
|
+
};
|
|
30538
|
+
};
|
|
30539
|
+
required: string[];
|
|
30540
|
+
type: string;
|
|
30541
|
+
};
|
|
30542
|
+
};
|
|
30543
|
+
};
|
|
30544
|
+
description: string;
|
|
30545
|
+
};
|
|
30546
|
+
400: {
|
|
30547
|
+
description: string;
|
|
30548
|
+
};
|
|
30549
|
+
401: {
|
|
30550
|
+
description: string;
|
|
30551
|
+
};
|
|
30552
|
+
};
|
|
30553
|
+
security: ({
|
|
30554
|
+
pat_with_workspace: never[];
|
|
30555
|
+
console_session_with_workspace?: never;
|
|
30556
|
+
api_key?: never;
|
|
30557
|
+
} | {
|
|
30558
|
+
console_session_with_workspace: never[];
|
|
30559
|
+
pat_with_workspace?: never;
|
|
30560
|
+
api_key?: never;
|
|
30561
|
+
} | {
|
|
30562
|
+
api_key: never[];
|
|
30563
|
+
pat_with_workspace?: never;
|
|
30564
|
+
console_session_with_workspace?: never;
|
|
30565
|
+
})[];
|
|
30566
|
+
summary: string;
|
|
30567
|
+
tags: never[];
|
|
30568
|
+
'x-fern-sdk-group-name': string[];
|
|
30569
|
+
'x-fern-sdk-method-name': string;
|
|
30570
|
+
'x-fern-sdk-return-value': string;
|
|
30571
|
+
'x-response-key': string;
|
|
30572
|
+
'x-title': string;
|
|
30573
|
+
'x-undocumented': string;
|
|
30574
|
+
};
|
|
30575
|
+
};
|
|
30576
|
+
'/unstable_partner/building_blocks/manage_devices': {
|
|
30166
30577
|
post: {
|
|
30167
30578
|
description: string;
|
|
30168
30579
|
operationId: string;
|
|
@@ -30171,13 +30582,105 @@ declare const _default: {
|
|
|
30171
30582
|
'application/json': {
|
|
30172
30583
|
schema: {
|
|
30173
30584
|
properties: {
|
|
30174
|
-
|
|
30175
|
-
enum: string[];
|
|
30585
|
+
customer_key: {
|
|
30176
30586
|
type: string;
|
|
30177
30587
|
};
|
|
30588
|
+
};
|
|
30589
|
+
required: string[];
|
|
30590
|
+
type: string;
|
|
30591
|
+
};
|
|
30592
|
+
};
|
|
30593
|
+
};
|
|
30594
|
+
};
|
|
30595
|
+
responses: {
|
|
30596
|
+
200: {
|
|
30597
|
+
content: {
|
|
30598
|
+
'application/json': {
|
|
30599
|
+
schema: {
|
|
30600
|
+
properties: {
|
|
30601
|
+
magic_link: {
|
|
30602
|
+
$ref: string;
|
|
30603
|
+
};
|
|
30604
|
+
ok: {
|
|
30605
|
+
type: string;
|
|
30606
|
+
};
|
|
30607
|
+
};
|
|
30608
|
+
required: string[];
|
|
30609
|
+
type: string;
|
|
30610
|
+
};
|
|
30611
|
+
};
|
|
30612
|
+
};
|
|
30613
|
+
description: string;
|
|
30614
|
+
};
|
|
30615
|
+
400: {
|
|
30616
|
+
description: string;
|
|
30617
|
+
};
|
|
30618
|
+
401: {
|
|
30619
|
+
description: string;
|
|
30620
|
+
};
|
|
30621
|
+
};
|
|
30622
|
+
security: ({
|
|
30623
|
+
pat_with_workspace: never[];
|
|
30624
|
+
console_session_with_workspace?: never;
|
|
30625
|
+
api_key?: never;
|
|
30626
|
+
} | {
|
|
30627
|
+
console_session_with_workspace: never[];
|
|
30628
|
+
pat_with_workspace?: never;
|
|
30629
|
+
api_key?: never;
|
|
30630
|
+
} | {
|
|
30631
|
+
api_key: never[];
|
|
30632
|
+
pat_with_workspace?: never;
|
|
30633
|
+
console_session_with_workspace?: never;
|
|
30634
|
+
})[];
|
|
30635
|
+
summary: string;
|
|
30636
|
+
tags: never[];
|
|
30637
|
+
'x-fern-sdk-group-name': string[];
|
|
30638
|
+
'x-fern-sdk-method-name': string;
|
|
30639
|
+
'x-fern-sdk-return-value': string;
|
|
30640
|
+
'x-response-key': string;
|
|
30641
|
+
'x-title': string;
|
|
30642
|
+
'x-undocumented': string;
|
|
30643
|
+
};
|
|
30644
|
+
};
|
|
30645
|
+
'/unstable_partner/building_blocks/organize_spaces': {
|
|
30646
|
+
post: {
|
|
30647
|
+
description: string;
|
|
30648
|
+
operationId: string;
|
|
30649
|
+
requestBody: {
|
|
30650
|
+
content: {
|
|
30651
|
+
'application/json': {
|
|
30652
|
+
schema: {
|
|
30653
|
+
properties: {
|
|
30178
30654
|
customer_key: {
|
|
30179
30655
|
type: string;
|
|
30180
30656
|
};
|
|
30657
|
+
partner_resources: {
|
|
30658
|
+
items: {
|
|
30659
|
+
properties: {
|
|
30660
|
+
custom_metadata: {
|
|
30661
|
+
additionalProperties: {
|
|
30662
|
+
type: string;
|
|
30663
|
+
};
|
|
30664
|
+
type: string;
|
|
30665
|
+
};
|
|
30666
|
+
description: {
|
|
30667
|
+
type: string;
|
|
30668
|
+
};
|
|
30669
|
+
name: {
|
|
30670
|
+
type: string;
|
|
30671
|
+
};
|
|
30672
|
+
partner_resource_key: {
|
|
30673
|
+
type: string;
|
|
30674
|
+
};
|
|
30675
|
+
};
|
|
30676
|
+
required: string[];
|
|
30677
|
+
type: string;
|
|
30678
|
+
'x-route-path': string;
|
|
30679
|
+
'x-undocumented': string;
|
|
30680
|
+
};
|
|
30681
|
+
minItems: number;
|
|
30682
|
+
type: string;
|
|
30683
|
+
};
|
|
30181
30684
|
};
|
|
30182
30685
|
required: string[];
|
|
30183
30686
|
type: string;
|
|
@@ -30212,9 +30715,19 @@ declare const _default: {
|
|
|
30212
30715
|
description: string;
|
|
30213
30716
|
};
|
|
30214
30717
|
};
|
|
30215
|
-
security: {
|
|
30718
|
+
security: ({
|
|
30719
|
+
pat_with_workspace: never[];
|
|
30720
|
+
console_session_with_workspace?: never;
|
|
30721
|
+
api_key?: never;
|
|
30722
|
+
} | {
|
|
30723
|
+
console_session_with_workspace: never[];
|
|
30724
|
+
pat_with_workspace?: never;
|
|
30725
|
+
api_key?: never;
|
|
30726
|
+
} | {
|
|
30216
30727
|
api_key: never[];
|
|
30217
|
-
|
|
30728
|
+
pat_with_workspace?: never;
|
|
30729
|
+
console_session_with_workspace?: never;
|
|
30730
|
+
})[];
|
|
30218
30731
|
summary: string;
|
|
30219
30732
|
tags: never[];
|
|
30220
30733
|
'x-fern-sdk-group-name': string[];
|