@seamapi/types 1.594.0 → 1.596.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 +270 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +534 -5
- package/dist/index.cjs +270 -9
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +151 -0
- package/lib/seam/connect/models/devices/device-metadata.d.ts +13 -0
- package/lib/seam/connect/models/devices/device-metadata.js +5 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-provider.js +1 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +19 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +13 -0
- package/lib/seam/connect/openapi.d.ts +341 -0
- package/lib/seam/connect/openapi.js +257 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +122 -5
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +5 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +271 -0
- package/src/lib/seam/connect/route-types.ts +156 -0
|
@@ -5966,6 +5966,17 @@ declare const _default: {
|
|
|
5966
5966
|
required: string[];
|
|
5967
5967
|
type: string;
|
|
5968
5968
|
};
|
|
5969
|
+
ultraloq_metadata: {
|
|
5970
|
+
description: string;
|
|
5971
|
+
properties: {
|
|
5972
|
+
device_id: {
|
|
5973
|
+
description: string;
|
|
5974
|
+
type: string;
|
|
5975
|
+
};
|
|
5976
|
+
};
|
|
5977
|
+
required: string[];
|
|
5978
|
+
type: string;
|
|
5979
|
+
};
|
|
5969
5980
|
visionline_metadata: {
|
|
5970
5981
|
description: string;
|
|
5971
5982
|
properties: {
|
|
@@ -19465,6 +19476,172 @@ declare const _default: {
|
|
|
19465
19476
|
'x-title': string;
|
|
19466
19477
|
};
|
|
19467
19478
|
};
|
|
19479
|
+
'/access_grants/unmanaged/update': {
|
|
19480
|
+
patch: {
|
|
19481
|
+
description: string;
|
|
19482
|
+
operationId: string;
|
|
19483
|
+
requestBody: {
|
|
19484
|
+
content: {
|
|
19485
|
+
'application/json': {
|
|
19486
|
+
schema: {
|
|
19487
|
+
properties: {
|
|
19488
|
+
access_grant_id: {
|
|
19489
|
+
description: string;
|
|
19490
|
+
format: string;
|
|
19491
|
+
type: string;
|
|
19492
|
+
};
|
|
19493
|
+
access_grant_key: {
|
|
19494
|
+
description: string;
|
|
19495
|
+
type: string;
|
|
19496
|
+
};
|
|
19497
|
+
is_managed: {
|
|
19498
|
+
description: string;
|
|
19499
|
+
enum: boolean[];
|
|
19500
|
+
type: string;
|
|
19501
|
+
};
|
|
19502
|
+
};
|
|
19503
|
+
required: string[];
|
|
19504
|
+
type: string;
|
|
19505
|
+
};
|
|
19506
|
+
};
|
|
19507
|
+
};
|
|
19508
|
+
};
|
|
19509
|
+
responses: {
|
|
19510
|
+
200: {
|
|
19511
|
+
content: {
|
|
19512
|
+
'application/json': {
|
|
19513
|
+
schema: {
|
|
19514
|
+
properties: {
|
|
19515
|
+
ok: {
|
|
19516
|
+
type: string;
|
|
19517
|
+
};
|
|
19518
|
+
};
|
|
19519
|
+
required: string[];
|
|
19520
|
+
type: string;
|
|
19521
|
+
};
|
|
19522
|
+
};
|
|
19523
|
+
};
|
|
19524
|
+
description: string;
|
|
19525
|
+
};
|
|
19526
|
+
400: {
|
|
19527
|
+
description: string;
|
|
19528
|
+
};
|
|
19529
|
+
401: {
|
|
19530
|
+
description: string;
|
|
19531
|
+
};
|
|
19532
|
+
};
|
|
19533
|
+
security: ({
|
|
19534
|
+
pat_with_workspace: never[];
|
|
19535
|
+
console_session_with_workspace?: never;
|
|
19536
|
+
api_key?: never;
|
|
19537
|
+
client_session_with_customer?: never;
|
|
19538
|
+
} | {
|
|
19539
|
+
console_session_with_workspace: never[];
|
|
19540
|
+
pat_with_workspace?: never;
|
|
19541
|
+
api_key?: never;
|
|
19542
|
+
client_session_with_customer?: never;
|
|
19543
|
+
} | {
|
|
19544
|
+
api_key: never[];
|
|
19545
|
+
pat_with_workspace?: never;
|
|
19546
|
+
console_session_with_workspace?: never;
|
|
19547
|
+
client_session_with_customer?: never;
|
|
19548
|
+
} | {
|
|
19549
|
+
client_session_with_customer: never[];
|
|
19550
|
+
pat_with_workspace?: never;
|
|
19551
|
+
console_session_with_workspace?: never;
|
|
19552
|
+
api_key?: never;
|
|
19553
|
+
})[];
|
|
19554
|
+
summary: string;
|
|
19555
|
+
tags: never[];
|
|
19556
|
+
'x-draft': string;
|
|
19557
|
+
'x-fern-sdk-group-name': string[];
|
|
19558
|
+
'x-fern-sdk-method-name': string;
|
|
19559
|
+
'x-response-key': null;
|
|
19560
|
+
'x-title': string;
|
|
19561
|
+
};
|
|
19562
|
+
post: {
|
|
19563
|
+
description: string;
|
|
19564
|
+
operationId: string;
|
|
19565
|
+
requestBody: {
|
|
19566
|
+
content: {
|
|
19567
|
+
'application/json': {
|
|
19568
|
+
schema: {
|
|
19569
|
+
properties: {
|
|
19570
|
+
access_grant_id: {
|
|
19571
|
+
description: string;
|
|
19572
|
+
format: string;
|
|
19573
|
+
type: string;
|
|
19574
|
+
};
|
|
19575
|
+
access_grant_key: {
|
|
19576
|
+
description: string;
|
|
19577
|
+
type: string;
|
|
19578
|
+
};
|
|
19579
|
+
is_managed: {
|
|
19580
|
+
description: string;
|
|
19581
|
+
enum: boolean[];
|
|
19582
|
+
type: string;
|
|
19583
|
+
};
|
|
19584
|
+
};
|
|
19585
|
+
required: string[];
|
|
19586
|
+
type: string;
|
|
19587
|
+
};
|
|
19588
|
+
};
|
|
19589
|
+
};
|
|
19590
|
+
};
|
|
19591
|
+
responses: {
|
|
19592
|
+
200: {
|
|
19593
|
+
content: {
|
|
19594
|
+
'application/json': {
|
|
19595
|
+
schema: {
|
|
19596
|
+
properties: {
|
|
19597
|
+
ok: {
|
|
19598
|
+
type: string;
|
|
19599
|
+
};
|
|
19600
|
+
};
|
|
19601
|
+
required: string[];
|
|
19602
|
+
type: string;
|
|
19603
|
+
};
|
|
19604
|
+
};
|
|
19605
|
+
};
|
|
19606
|
+
description: string;
|
|
19607
|
+
};
|
|
19608
|
+
400: {
|
|
19609
|
+
description: string;
|
|
19610
|
+
};
|
|
19611
|
+
401: {
|
|
19612
|
+
description: string;
|
|
19613
|
+
};
|
|
19614
|
+
};
|
|
19615
|
+
security: ({
|
|
19616
|
+
pat_with_workspace: never[];
|
|
19617
|
+
console_session_with_workspace?: never;
|
|
19618
|
+
api_key?: never;
|
|
19619
|
+
client_session_with_customer?: never;
|
|
19620
|
+
} | {
|
|
19621
|
+
console_session_with_workspace: never[];
|
|
19622
|
+
pat_with_workspace?: never;
|
|
19623
|
+
api_key?: never;
|
|
19624
|
+
client_session_with_customer?: never;
|
|
19625
|
+
} | {
|
|
19626
|
+
api_key: never[];
|
|
19627
|
+
pat_with_workspace?: never;
|
|
19628
|
+
console_session_with_workspace?: never;
|
|
19629
|
+
client_session_with_customer?: never;
|
|
19630
|
+
} | {
|
|
19631
|
+
client_session_with_customer: never[];
|
|
19632
|
+
pat_with_workspace?: never;
|
|
19633
|
+
console_session_with_workspace?: never;
|
|
19634
|
+
api_key?: never;
|
|
19635
|
+
})[];
|
|
19636
|
+
summary: string;
|
|
19637
|
+
tags: never[];
|
|
19638
|
+
'x-draft': string;
|
|
19639
|
+
'x-fern-sdk-group-name': string[];
|
|
19640
|
+
'x-fern-sdk-method-name': string;
|
|
19641
|
+
'x-response-key': null;
|
|
19642
|
+
'x-title': string;
|
|
19643
|
+
};
|
|
19644
|
+
};
|
|
19468
19645
|
'/access_grants/update': {
|
|
19469
19646
|
patch: {
|
|
19470
19647
|
description: string;
|
|
@@ -53438,6 +53615,170 @@ declare const _default: {
|
|
|
53438
53615
|
'x-title': string;
|
|
53439
53616
|
};
|
|
53440
53617
|
};
|
|
53618
|
+
'/user_identities/unmanaged/update': {
|
|
53619
|
+
patch: {
|
|
53620
|
+
description: string;
|
|
53621
|
+
operationId: string;
|
|
53622
|
+
requestBody: {
|
|
53623
|
+
content: {
|
|
53624
|
+
'application/json': {
|
|
53625
|
+
schema: {
|
|
53626
|
+
properties: {
|
|
53627
|
+
is_managed: {
|
|
53628
|
+
description: string;
|
|
53629
|
+
enum: boolean[];
|
|
53630
|
+
type: string;
|
|
53631
|
+
};
|
|
53632
|
+
user_identity_id: {
|
|
53633
|
+
description: string;
|
|
53634
|
+
format: string;
|
|
53635
|
+
type: string;
|
|
53636
|
+
};
|
|
53637
|
+
user_identity_key: {
|
|
53638
|
+
description: string;
|
|
53639
|
+
type: string;
|
|
53640
|
+
};
|
|
53641
|
+
};
|
|
53642
|
+
required: string[];
|
|
53643
|
+
type: string;
|
|
53644
|
+
};
|
|
53645
|
+
};
|
|
53646
|
+
};
|
|
53647
|
+
};
|
|
53648
|
+
responses: {
|
|
53649
|
+
200: {
|
|
53650
|
+
content: {
|
|
53651
|
+
'application/json': {
|
|
53652
|
+
schema: {
|
|
53653
|
+
properties: {
|
|
53654
|
+
ok: {
|
|
53655
|
+
type: string;
|
|
53656
|
+
};
|
|
53657
|
+
};
|
|
53658
|
+
required: string[];
|
|
53659
|
+
type: string;
|
|
53660
|
+
};
|
|
53661
|
+
};
|
|
53662
|
+
};
|
|
53663
|
+
description: string;
|
|
53664
|
+
};
|
|
53665
|
+
400: {
|
|
53666
|
+
description: string;
|
|
53667
|
+
};
|
|
53668
|
+
401: {
|
|
53669
|
+
description: string;
|
|
53670
|
+
};
|
|
53671
|
+
};
|
|
53672
|
+
security: ({
|
|
53673
|
+
api_key: never[];
|
|
53674
|
+
client_session?: never;
|
|
53675
|
+
pat_with_workspace?: never;
|
|
53676
|
+
console_session_with_workspace?: never;
|
|
53677
|
+
} | {
|
|
53678
|
+
client_session: never[];
|
|
53679
|
+
api_key?: never;
|
|
53680
|
+
pat_with_workspace?: never;
|
|
53681
|
+
console_session_with_workspace?: never;
|
|
53682
|
+
} | {
|
|
53683
|
+
pat_with_workspace: never[];
|
|
53684
|
+
api_key?: never;
|
|
53685
|
+
client_session?: never;
|
|
53686
|
+
console_session_with_workspace?: never;
|
|
53687
|
+
} | {
|
|
53688
|
+
console_session_with_workspace: never[];
|
|
53689
|
+
api_key?: never;
|
|
53690
|
+
client_session?: never;
|
|
53691
|
+
pat_with_workspace?: never;
|
|
53692
|
+
})[];
|
|
53693
|
+
summary: string;
|
|
53694
|
+
tags: string[];
|
|
53695
|
+
'x-fern-sdk-group-name': string[];
|
|
53696
|
+
'x-fern-sdk-method-name': string;
|
|
53697
|
+
'x-response-key': null;
|
|
53698
|
+
'x-title': string;
|
|
53699
|
+
};
|
|
53700
|
+
post: {
|
|
53701
|
+
description: string;
|
|
53702
|
+
operationId: string;
|
|
53703
|
+
requestBody: {
|
|
53704
|
+
content: {
|
|
53705
|
+
'application/json': {
|
|
53706
|
+
schema: {
|
|
53707
|
+
properties: {
|
|
53708
|
+
is_managed: {
|
|
53709
|
+
description: string;
|
|
53710
|
+
enum: boolean[];
|
|
53711
|
+
type: string;
|
|
53712
|
+
};
|
|
53713
|
+
user_identity_id: {
|
|
53714
|
+
description: string;
|
|
53715
|
+
format: string;
|
|
53716
|
+
type: string;
|
|
53717
|
+
};
|
|
53718
|
+
user_identity_key: {
|
|
53719
|
+
description: string;
|
|
53720
|
+
type: string;
|
|
53721
|
+
};
|
|
53722
|
+
};
|
|
53723
|
+
required: string[];
|
|
53724
|
+
type: string;
|
|
53725
|
+
};
|
|
53726
|
+
};
|
|
53727
|
+
};
|
|
53728
|
+
};
|
|
53729
|
+
responses: {
|
|
53730
|
+
200: {
|
|
53731
|
+
content: {
|
|
53732
|
+
'application/json': {
|
|
53733
|
+
schema: {
|
|
53734
|
+
properties: {
|
|
53735
|
+
ok: {
|
|
53736
|
+
type: string;
|
|
53737
|
+
};
|
|
53738
|
+
};
|
|
53739
|
+
required: string[];
|
|
53740
|
+
type: string;
|
|
53741
|
+
};
|
|
53742
|
+
};
|
|
53743
|
+
};
|
|
53744
|
+
description: string;
|
|
53745
|
+
};
|
|
53746
|
+
400: {
|
|
53747
|
+
description: string;
|
|
53748
|
+
};
|
|
53749
|
+
401: {
|
|
53750
|
+
description: string;
|
|
53751
|
+
};
|
|
53752
|
+
};
|
|
53753
|
+
security: ({
|
|
53754
|
+
api_key: never[];
|
|
53755
|
+
client_session?: never;
|
|
53756
|
+
pat_with_workspace?: never;
|
|
53757
|
+
console_session_with_workspace?: never;
|
|
53758
|
+
} | {
|
|
53759
|
+
client_session: never[];
|
|
53760
|
+
api_key?: never;
|
|
53761
|
+
pat_with_workspace?: never;
|
|
53762
|
+
console_session_with_workspace?: never;
|
|
53763
|
+
} | {
|
|
53764
|
+
pat_with_workspace: never[];
|
|
53765
|
+
api_key?: never;
|
|
53766
|
+
client_session?: never;
|
|
53767
|
+
console_session_with_workspace?: never;
|
|
53768
|
+
} | {
|
|
53769
|
+
console_session_with_workspace: never[];
|
|
53770
|
+
api_key?: never;
|
|
53771
|
+
client_session?: never;
|
|
53772
|
+
pat_with_workspace?: never;
|
|
53773
|
+
})[];
|
|
53774
|
+
summary: string;
|
|
53775
|
+
tags: string[];
|
|
53776
|
+
'x-fern-sdk-group-name': string[];
|
|
53777
|
+
'x-fern-sdk-method-name': string;
|
|
53778
|
+
'x-response-key': null;
|
|
53779
|
+
'x-title': string;
|
|
53780
|
+
};
|
|
53781
|
+
};
|
|
53441
53782
|
'/user_identities/update': {
|
|
53442
53783
|
patch: {
|
|
53443
53784
|
description: string;
|