@seamapi/types 1.415.0 → 1.416.1
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 +24 -7
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +492 -6
- package/lib/seam/connect/models/acs/acs-access-group.js +1 -0
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential-pool.js +1 -0
- package/lib/seam/connect/models/acs/acs-credential-pool.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential-provisioning-automation.js +1 -0
- package/lib/seam/connect/models/acs/acs-credential-provisioning-automation.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.js +1 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/acs-user.js +1 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -1
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +3 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js +4 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/partner/magic-link.d.ts +2 -2
- package/lib/seam/connect/openapi.d.ts +481 -4
- package/lib/seam/connect/openapi.js +11 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +6 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +1 -0
- package/src/lib/seam/connect/models/acs/acs-credential-pool.ts +1 -0
- package/src/lib/seam/connect/models/acs/acs-credential-provisioning-automation.ts +1 -0
- package/src/lib/seam/connect/models/acs/acs-credential.ts +1 -0
- package/src/lib/seam/connect/models/acs/acs-users/acs-user.ts +1 -0
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +12 -0
- package/src/lib/seam/connect/route-types.ts +6 -0
package/dist/connect.d.cts
CHANGED
|
@@ -10980,6 +10980,7 @@ declare const connected_account: z.ZodObject<{
|
|
|
10980
10980
|
}>]>, "many">;
|
|
10981
10981
|
custom_metadata: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
10982
10982
|
automatically_manage_new_devices: z.ZodBoolean;
|
|
10983
|
+
customer_key: z.ZodOptional<z.ZodString>;
|
|
10983
10984
|
}, "strip", z.ZodTypeAny, {
|
|
10984
10985
|
errors: ({
|
|
10985
10986
|
message: string;
|
|
@@ -11048,6 +11049,7 @@ declare const connected_account: z.ZodObject<{
|
|
|
11048
11049
|
exclusive?: boolean | undefined;
|
|
11049
11050
|
} | undefined;
|
|
11050
11051
|
account_type?: string | undefined;
|
|
11052
|
+
customer_key?: string | undefined;
|
|
11051
11053
|
}, {
|
|
11052
11054
|
errors: ({
|
|
11053
11055
|
message: string;
|
|
@@ -11116,6 +11118,7 @@ declare const connected_account: z.ZodObject<{
|
|
|
11116
11118
|
exclusive?: boolean | undefined;
|
|
11117
11119
|
} | undefined;
|
|
11118
11120
|
account_type?: string | undefined;
|
|
11121
|
+
customer_key?: string | undefined;
|
|
11119
11122
|
}>;
|
|
11120
11123
|
type ConnectedAccount = z.infer<typeof connected_account>;
|
|
11121
11124
|
|
|
@@ -21336,16 +21339,16 @@ declare const magic_link: z.ZodObject<{
|
|
|
21336
21339
|
workspace_id: string;
|
|
21337
21340
|
created_at: string;
|
|
21338
21341
|
url: string;
|
|
21342
|
+
customer_key: string;
|
|
21339
21343
|
expires_at: string;
|
|
21340
21344
|
building_block_type: "connect_accounts" | "manage_devices" | "organize_spaces" | "console";
|
|
21341
|
-
customer_key: string;
|
|
21342
21345
|
}, {
|
|
21343
21346
|
workspace_id: string;
|
|
21344
21347
|
created_at: string;
|
|
21345
21348
|
url: string;
|
|
21349
|
+
customer_key: string;
|
|
21346
21350
|
expires_at: string;
|
|
21347
21351
|
building_block_type: "connect_accounts" | "manage_devices" | "organize_spaces" | "console";
|
|
21348
|
-
customer_key: string;
|
|
21349
21352
|
}>;
|
|
21350
21353
|
type MagicLink = z.infer<typeof magic_link>;
|
|
21351
21354
|
|
|
@@ -22426,6 +22429,7 @@ declare const _default: {
|
|
|
22426
22429
|
required: string[];
|
|
22427
22430
|
type: string;
|
|
22428
22431
|
'x-route-path': string;
|
|
22432
|
+
'x-undocumented': string;
|
|
22429
22433
|
};
|
|
22430
22434
|
acs_credential_provisioning_automation: {
|
|
22431
22435
|
properties: {
|
|
@@ -22453,6 +22457,7 @@ declare const _default: {
|
|
|
22453
22457
|
required: string[];
|
|
22454
22458
|
type: string;
|
|
22455
22459
|
'x-route-path': string;
|
|
22460
|
+
'x-undocumented': string;
|
|
22456
22461
|
};
|
|
22457
22462
|
acs_encoder: {
|
|
22458
22463
|
description: string;
|
|
@@ -23631,7 +23636,240 @@ declare const _default: {
|
|
|
23631
23636
|
acs_credential_on_seam: {
|
|
23632
23637
|
description: string;
|
|
23633
23638
|
nullable: boolean;
|
|
23634
|
-
oneOf: {
|
|
23639
|
+
oneOf: ({
|
|
23640
|
+
description: string;
|
|
23641
|
+
properties: {
|
|
23642
|
+
access_method: {
|
|
23643
|
+
description: string;
|
|
23644
|
+
enum: string[];
|
|
23645
|
+
type: string;
|
|
23646
|
+
};
|
|
23647
|
+
acs_credential_id: {
|
|
23648
|
+
description: string;
|
|
23649
|
+
format: string;
|
|
23650
|
+
type: string;
|
|
23651
|
+
};
|
|
23652
|
+
acs_credential_pool_id: {
|
|
23653
|
+
format: string;
|
|
23654
|
+
type: string;
|
|
23655
|
+
};
|
|
23656
|
+
acs_system_id: {
|
|
23657
|
+
description: string;
|
|
23658
|
+
format: string;
|
|
23659
|
+
type: string;
|
|
23660
|
+
};
|
|
23661
|
+
acs_user_id: {
|
|
23662
|
+
description: string;
|
|
23663
|
+
format: string;
|
|
23664
|
+
type: string;
|
|
23665
|
+
};
|
|
23666
|
+
assa_abloy_vostio_metadata: {
|
|
23667
|
+
description: string;
|
|
23668
|
+
properties: {
|
|
23669
|
+
auto_join: {
|
|
23670
|
+
type: string;
|
|
23671
|
+
};
|
|
23672
|
+
door_names: {
|
|
23673
|
+
items: {
|
|
23674
|
+
type: string;
|
|
23675
|
+
};
|
|
23676
|
+
type: string;
|
|
23677
|
+
};
|
|
23678
|
+
endpoint_id: {
|
|
23679
|
+
type: string;
|
|
23680
|
+
};
|
|
23681
|
+
key_id: {
|
|
23682
|
+
type: string;
|
|
23683
|
+
};
|
|
23684
|
+
key_issuing_request_id: {
|
|
23685
|
+
type: string;
|
|
23686
|
+
};
|
|
23687
|
+
override_guest_acs_entrance_ids: {
|
|
23688
|
+
items: {
|
|
23689
|
+
type: string;
|
|
23690
|
+
};
|
|
23691
|
+
type: string;
|
|
23692
|
+
};
|
|
23693
|
+
};
|
|
23694
|
+
type: string;
|
|
23695
|
+
};
|
|
23696
|
+
card_number: {
|
|
23697
|
+
description: string;
|
|
23698
|
+
nullable: boolean;
|
|
23699
|
+
type: string;
|
|
23700
|
+
};
|
|
23701
|
+
code: {
|
|
23702
|
+
description: string;
|
|
23703
|
+
nullable: boolean;
|
|
23704
|
+
type: string;
|
|
23705
|
+
};
|
|
23706
|
+
created_at: {
|
|
23707
|
+
description: string;
|
|
23708
|
+
format: string;
|
|
23709
|
+
type: string;
|
|
23710
|
+
};
|
|
23711
|
+
display_name: {
|
|
23712
|
+
description: string;
|
|
23713
|
+
minLength: number;
|
|
23714
|
+
type: string;
|
|
23715
|
+
};
|
|
23716
|
+
ends_at: {
|
|
23717
|
+
description: string;
|
|
23718
|
+
type: string;
|
|
23719
|
+
};
|
|
23720
|
+
errors: {
|
|
23721
|
+
description: string;
|
|
23722
|
+
items: {
|
|
23723
|
+
properties: {
|
|
23724
|
+
error_code: {
|
|
23725
|
+
type: string;
|
|
23726
|
+
};
|
|
23727
|
+
message: {
|
|
23728
|
+
type: string;
|
|
23729
|
+
};
|
|
23730
|
+
};
|
|
23731
|
+
required: string[];
|
|
23732
|
+
type: string;
|
|
23733
|
+
};
|
|
23734
|
+
type: string;
|
|
23735
|
+
};
|
|
23736
|
+
external_type: {
|
|
23737
|
+
description: string;
|
|
23738
|
+
enum: string[];
|
|
23739
|
+
type: string;
|
|
23740
|
+
};
|
|
23741
|
+
external_type_display_name: {
|
|
23742
|
+
description: string;
|
|
23743
|
+
type: string;
|
|
23744
|
+
};
|
|
23745
|
+
is_issued: {
|
|
23746
|
+
description: string;
|
|
23747
|
+
type: string;
|
|
23748
|
+
};
|
|
23749
|
+
is_latest_desired_state_synced_with_provider: {
|
|
23750
|
+
description: string;
|
|
23751
|
+
nullable: boolean;
|
|
23752
|
+
type: string;
|
|
23753
|
+
};
|
|
23754
|
+
is_managed: {
|
|
23755
|
+
enum: boolean[];
|
|
23756
|
+
type: string;
|
|
23757
|
+
};
|
|
23758
|
+
is_multi_phone_sync_credential: {
|
|
23759
|
+
description: string;
|
|
23760
|
+
type: string;
|
|
23761
|
+
};
|
|
23762
|
+
is_one_time_use: {
|
|
23763
|
+
description: string;
|
|
23764
|
+
type: string;
|
|
23765
|
+
};
|
|
23766
|
+
issued_at: {
|
|
23767
|
+
description: string;
|
|
23768
|
+
format: string;
|
|
23769
|
+
nullable: boolean;
|
|
23770
|
+
type: string;
|
|
23771
|
+
};
|
|
23772
|
+
latest_desired_state_synced_with_provider_at: {
|
|
23773
|
+
description: string;
|
|
23774
|
+
format: string;
|
|
23775
|
+
nullable: boolean;
|
|
23776
|
+
type: string;
|
|
23777
|
+
};
|
|
23778
|
+
parent_acs_credential_id: {
|
|
23779
|
+
description: string;
|
|
23780
|
+
format: string;
|
|
23781
|
+
type: string;
|
|
23782
|
+
};
|
|
23783
|
+
starts_at: {
|
|
23784
|
+
description: string;
|
|
23785
|
+
type: string;
|
|
23786
|
+
};
|
|
23787
|
+
visionline_metadata: {
|
|
23788
|
+
description: string;
|
|
23789
|
+
properties: {
|
|
23790
|
+
auto_join: {
|
|
23791
|
+
type: string;
|
|
23792
|
+
};
|
|
23793
|
+
card_function_type: {
|
|
23794
|
+
enum: string[];
|
|
23795
|
+
type: string;
|
|
23796
|
+
};
|
|
23797
|
+
card_id: {
|
|
23798
|
+
type: string;
|
|
23799
|
+
};
|
|
23800
|
+
common_acs_entrance_ids: {
|
|
23801
|
+
items: {
|
|
23802
|
+
format: string;
|
|
23803
|
+
type: string;
|
|
23804
|
+
};
|
|
23805
|
+
type: string;
|
|
23806
|
+
};
|
|
23807
|
+
credential_id: {
|
|
23808
|
+
type: string;
|
|
23809
|
+
};
|
|
23810
|
+
guest_acs_entrance_ids: {
|
|
23811
|
+
items: {
|
|
23812
|
+
format: string;
|
|
23813
|
+
type: string;
|
|
23814
|
+
};
|
|
23815
|
+
type: string;
|
|
23816
|
+
};
|
|
23817
|
+
is_valid: {
|
|
23818
|
+
type: string;
|
|
23819
|
+
};
|
|
23820
|
+
joiner_acs_credential_ids: {
|
|
23821
|
+
items: {
|
|
23822
|
+
format: string;
|
|
23823
|
+
type: string;
|
|
23824
|
+
};
|
|
23825
|
+
type: string;
|
|
23826
|
+
};
|
|
23827
|
+
};
|
|
23828
|
+
required: string[];
|
|
23829
|
+
type: string;
|
|
23830
|
+
};
|
|
23831
|
+
warnings: {
|
|
23832
|
+
description: string;
|
|
23833
|
+
items: {
|
|
23834
|
+
description: string;
|
|
23835
|
+
discriminator: {
|
|
23836
|
+
propertyName: string;
|
|
23837
|
+
};
|
|
23838
|
+
oneOf: {
|
|
23839
|
+
description: string;
|
|
23840
|
+
properties: {
|
|
23841
|
+
created_at: {
|
|
23842
|
+
description: string;
|
|
23843
|
+
format: string;
|
|
23844
|
+
type: string;
|
|
23845
|
+
};
|
|
23846
|
+
message: {
|
|
23847
|
+
description: string;
|
|
23848
|
+
type: string;
|
|
23849
|
+
};
|
|
23850
|
+
warning_code: {
|
|
23851
|
+
description: string;
|
|
23852
|
+
enum: string[];
|
|
23853
|
+
type: string;
|
|
23854
|
+
};
|
|
23855
|
+
};
|
|
23856
|
+
required: string[];
|
|
23857
|
+
type: string;
|
|
23858
|
+
}[];
|
|
23859
|
+
};
|
|
23860
|
+
type: string;
|
|
23861
|
+
};
|
|
23862
|
+
workspace_id: {
|
|
23863
|
+
description: string;
|
|
23864
|
+
format: string;
|
|
23865
|
+
type: string;
|
|
23866
|
+
};
|
|
23867
|
+
};
|
|
23868
|
+
required: string[];
|
|
23869
|
+
type: string;
|
|
23870
|
+
'x-route-path': string;
|
|
23871
|
+
'x-undocumented'?: never;
|
|
23872
|
+
} | {
|
|
23635
23873
|
description: string;
|
|
23636
23874
|
properties: {
|
|
23637
23875
|
access_method: {
|
|
@@ -23863,7 +24101,8 @@ declare const _default: {
|
|
|
23863
24101
|
required: string[];
|
|
23864
24102
|
type: string;
|
|
23865
24103
|
'x-route-path': string;
|
|
23866
|
-
|
|
24104
|
+
'x-undocumented': string;
|
|
24105
|
+
})[];
|
|
23867
24106
|
'x-route-path': string;
|
|
23868
24107
|
};
|
|
23869
24108
|
warnings: {
|
|
@@ -24176,7 +24415,7 @@ declare const _default: {
|
|
|
24176
24415
|
};
|
|
24177
24416
|
result: {
|
|
24178
24417
|
description: string;
|
|
24179
|
-
oneOf: {
|
|
24418
|
+
oneOf: ({
|
|
24180
24419
|
description: string;
|
|
24181
24420
|
properties: {
|
|
24182
24421
|
access_method: {
|
|
@@ -24408,7 +24647,241 @@ declare const _default: {
|
|
|
24408
24647
|
required: string[];
|
|
24409
24648
|
type: string;
|
|
24410
24649
|
'x-route-path': string;
|
|
24411
|
-
|
|
24650
|
+
'x-undocumented'?: never;
|
|
24651
|
+
} | {
|
|
24652
|
+
description: string;
|
|
24653
|
+
properties: {
|
|
24654
|
+
access_method: {
|
|
24655
|
+
description: string;
|
|
24656
|
+
enum: string[];
|
|
24657
|
+
type: string;
|
|
24658
|
+
};
|
|
24659
|
+
acs_credential_id: {
|
|
24660
|
+
description: string;
|
|
24661
|
+
format: string;
|
|
24662
|
+
type: string;
|
|
24663
|
+
};
|
|
24664
|
+
acs_credential_pool_id: {
|
|
24665
|
+
format: string;
|
|
24666
|
+
type: string;
|
|
24667
|
+
};
|
|
24668
|
+
acs_system_id: {
|
|
24669
|
+
description: string;
|
|
24670
|
+
format: string;
|
|
24671
|
+
type: string;
|
|
24672
|
+
};
|
|
24673
|
+
acs_user_id: {
|
|
24674
|
+
description: string;
|
|
24675
|
+
format: string;
|
|
24676
|
+
type: string;
|
|
24677
|
+
};
|
|
24678
|
+
assa_abloy_vostio_metadata: {
|
|
24679
|
+
description: string;
|
|
24680
|
+
properties: {
|
|
24681
|
+
auto_join: {
|
|
24682
|
+
type: string;
|
|
24683
|
+
};
|
|
24684
|
+
door_names: {
|
|
24685
|
+
items: {
|
|
24686
|
+
type: string;
|
|
24687
|
+
};
|
|
24688
|
+
type: string;
|
|
24689
|
+
};
|
|
24690
|
+
endpoint_id: {
|
|
24691
|
+
type: string;
|
|
24692
|
+
};
|
|
24693
|
+
key_id: {
|
|
24694
|
+
type: string;
|
|
24695
|
+
};
|
|
24696
|
+
key_issuing_request_id: {
|
|
24697
|
+
type: string;
|
|
24698
|
+
};
|
|
24699
|
+
override_guest_acs_entrance_ids: {
|
|
24700
|
+
items: {
|
|
24701
|
+
type: string;
|
|
24702
|
+
};
|
|
24703
|
+
type: string;
|
|
24704
|
+
};
|
|
24705
|
+
};
|
|
24706
|
+
type: string;
|
|
24707
|
+
};
|
|
24708
|
+
card_number: {
|
|
24709
|
+
description: string;
|
|
24710
|
+
nullable: boolean;
|
|
24711
|
+
type: string;
|
|
24712
|
+
};
|
|
24713
|
+
code: {
|
|
24714
|
+
description: string;
|
|
24715
|
+
nullable: boolean;
|
|
24716
|
+
type: string;
|
|
24717
|
+
};
|
|
24718
|
+
created_at: {
|
|
24719
|
+
description: string;
|
|
24720
|
+
format: string;
|
|
24721
|
+
type: string;
|
|
24722
|
+
};
|
|
24723
|
+
display_name: {
|
|
24724
|
+
description: string;
|
|
24725
|
+
minLength: number;
|
|
24726
|
+
type: string;
|
|
24727
|
+
};
|
|
24728
|
+
ends_at: {
|
|
24729
|
+
description: string;
|
|
24730
|
+
type: string;
|
|
24731
|
+
};
|
|
24732
|
+
errors: {
|
|
24733
|
+
description: string;
|
|
24734
|
+
items: {
|
|
24735
|
+
properties: {
|
|
24736
|
+
error_code: {
|
|
24737
|
+
type: string;
|
|
24738
|
+
};
|
|
24739
|
+
message: {
|
|
24740
|
+
type: string;
|
|
24741
|
+
};
|
|
24742
|
+
};
|
|
24743
|
+
required: string[];
|
|
24744
|
+
type: string;
|
|
24745
|
+
};
|
|
24746
|
+
type: string;
|
|
24747
|
+
};
|
|
24748
|
+
external_type: {
|
|
24749
|
+
description: string;
|
|
24750
|
+
enum: string[];
|
|
24751
|
+
type: string;
|
|
24752
|
+
};
|
|
24753
|
+
external_type_display_name: {
|
|
24754
|
+
description: string;
|
|
24755
|
+
type: string;
|
|
24756
|
+
};
|
|
24757
|
+
is_issued: {
|
|
24758
|
+
description: string;
|
|
24759
|
+
type: string;
|
|
24760
|
+
};
|
|
24761
|
+
is_latest_desired_state_synced_with_provider: {
|
|
24762
|
+
description: string;
|
|
24763
|
+
nullable: boolean;
|
|
24764
|
+
type: string;
|
|
24765
|
+
};
|
|
24766
|
+
is_managed: {
|
|
24767
|
+
enum: boolean[];
|
|
24768
|
+
type: string;
|
|
24769
|
+
};
|
|
24770
|
+
is_multi_phone_sync_credential: {
|
|
24771
|
+
description: string;
|
|
24772
|
+
type: string;
|
|
24773
|
+
};
|
|
24774
|
+
is_one_time_use: {
|
|
24775
|
+
description: string;
|
|
24776
|
+
type: string;
|
|
24777
|
+
};
|
|
24778
|
+
issued_at: {
|
|
24779
|
+
description: string;
|
|
24780
|
+
format: string;
|
|
24781
|
+
nullable: boolean;
|
|
24782
|
+
type: string;
|
|
24783
|
+
};
|
|
24784
|
+
latest_desired_state_synced_with_provider_at: {
|
|
24785
|
+
description: string;
|
|
24786
|
+
format: string;
|
|
24787
|
+
nullable: boolean;
|
|
24788
|
+
type: string;
|
|
24789
|
+
};
|
|
24790
|
+
parent_acs_credential_id: {
|
|
24791
|
+
description: string;
|
|
24792
|
+
format: string;
|
|
24793
|
+
type: string;
|
|
24794
|
+
};
|
|
24795
|
+
starts_at: {
|
|
24796
|
+
description: string;
|
|
24797
|
+
type: string;
|
|
24798
|
+
};
|
|
24799
|
+
visionline_metadata: {
|
|
24800
|
+
description: string;
|
|
24801
|
+
properties: {
|
|
24802
|
+
auto_join: {
|
|
24803
|
+
type: string;
|
|
24804
|
+
};
|
|
24805
|
+
card_function_type: {
|
|
24806
|
+
enum: string[];
|
|
24807
|
+
type: string;
|
|
24808
|
+
};
|
|
24809
|
+
card_id: {
|
|
24810
|
+
type: string;
|
|
24811
|
+
};
|
|
24812
|
+
common_acs_entrance_ids: {
|
|
24813
|
+
items: {
|
|
24814
|
+
format: string;
|
|
24815
|
+
type: string;
|
|
24816
|
+
};
|
|
24817
|
+
type: string;
|
|
24818
|
+
};
|
|
24819
|
+
credential_id: {
|
|
24820
|
+
type: string;
|
|
24821
|
+
};
|
|
24822
|
+
guest_acs_entrance_ids: {
|
|
24823
|
+
items: {
|
|
24824
|
+
format: string;
|
|
24825
|
+
type: string;
|
|
24826
|
+
};
|
|
24827
|
+
type: string;
|
|
24828
|
+
};
|
|
24829
|
+
is_valid: {
|
|
24830
|
+
type: string;
|
|
24831
|
+
};
|
|
24832
|
+
joiner_acs_credential_ids: {
|
|
24833
|
+
items: {
|
|
24834
|
+
format: string;
|
|
24835
|
+
type: string;
|
|
24836
|
+
};
|
|
24837
|
+
type: string;
|
|
24838
|
+
};
|
|
24839
|
+
};
|
|
24840
|
+
required: string[];
|
|
24841
|
+
type: string;
|
|
24842
|
+
};
|
|
24843
|
+
warnings: {
|
|
24844
|
+
description: string;
|
|
24845
|
+
items: {
|
|
24846
|
+
description: string;
|
|
24847
|
+
discriminator: {
|
|
24848
|
+
propertyName: string;
|
|
24849
|
+
};
|
|
24850
|
+
oneOf: {
|
|
24851
|
+
description: string;
|
|
24852
|
+
properties: {
|
|
24853
|
+
created_at: {
|
|
24854
|
+
description: string;
|
|
24855
|
+
format: string;
|
|
24856
|
+
type: string;
|
|
24857
|
+
};
|
|
24858
|
+
message: {
|
|
24859
|
+
description: string;
|
|
24860
|
+
type: string;
|
|
24861
|
+
};
|
|
24862
|
+
warning_code: {
|
|
24863
|
+
description: string;
|
|
24864
|
+
enum: string[];
|
|
24865
|
+
type: string;
|
|
24866
|
+
};
|
|
24867
|
+
};
|
|
24868
|
+
required: string[];
|
|
24869
|
+
type: string;
|
|
24870
|
+
}[];
|
|
24871
|
+
};
|
|
24872
|
+
type: string;
|
|
24873
|
+
};
|
|
24874
|
+
workspace_id: {
|
|
24875
|
+
description: string;
|
|
24876
|
+
format: string;
|
|
24877
|
+
type: string;
|
|
24878
|
+
};
|
|
24879
|
+
};
|
|
24880
|
+
required: string[];
|
|
24881
|
+
type: string;
|
|
24882
|
+
'x-route-path': string;
|
|
24883
|
+
'x-undocumented': string;
|
|
24884
|
+
})[];
|
|
24412
24885
|
nullable?: never;
|
|
24413
24886
|
properties?: never;
|
|
24414
24887
|
type?: never;
|
|
@@ -25045,6 +25518,10 @@ declare const _default: {
|
|
|
25045
25518
|
description: string;
|
|
25046
25519
|
type: string;
|
|
25047
25520
|
};
|
|
25521
|
+
customer_key: {
|
|
25522
|
+
description: string;
|
|
25523
|
+
type: string;
|
|
25524
|
+
};
|
|
25048
25525
|
errors: {
|
|
25049
25526
|
description: string;
|
|
25050
25527
|
items: {
|
|
@@ -31924,6 +32401,7 @@ declare const _default: {
|
|
|
31924
32401
|
required: string[];
|
|
31925
32402
|
type: string;
|
|
31926
32403
|
'x-route-path': string;
|
|
32404
|
+
'x-undocumented': string;
|
|
31927
32405
|
};
|
|
31928
32406
|
unmanaged_acs_credential: {
|
|
31929
32407
|
description: string;
|
|
@@ -32157,6 +32635,7 @@ declare const _default: {
|
|
|
32157
32635
|
required: string[];
|
|
32158
32636
|
type: string;
|
|
32159
32637
|
'x-route-path': string;
|
|
32638
|
+
'x-undocumented': string;
|
|
32160
32639
|
};
|
|
32161
32640
|
unmanaged_acs_user: {
|
|
32162
32641
|
description: string;
|
|
@@ -32608,6 +33087,7 @@ declare const _default: {
|
|
|
32608
33087
|
required: string[];
|
|
32609
33088
|
type: string;
|
|
32610
33089
|
'x-route-path': string;
|
|
33090
|
+
'x-undocumented': string;
|
|
32611
33091
|
};
|
|
32612
33092
|
unmanaged_device: {
|
|
32613
33093
|
description: string;
|
|
@@ -75806,6 +76286,8 @@ interface Routes {
|
|
|
75806
76286
|
custom_metadata: Record<string, string | boolean>;
|
|
75807
76287
|
/** Indicates whether Seam should [import all new devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#automatically_manage_new_devices) for the connected account to make these devices available for use and management by the Seam API. */
|
|
75808
76288
|
automatically_manage_new_devices: boolean;
|
|
76289
|
+
/** Your unique key for the customer associated with this connected account. */
|
|
76290
|
+
customer_key?: string | undefined;
|
|
75809
76291
|
};
|
|
75810
76292
|
};
|
|
75811
76293
|
};
|
|
@@ -75950,6 +76432,8 @@ interface Routes {
|
|
|
75950
76432
|
custom_metadata: Record<string, string | boolean>;
|
|
75951
76433
|
/** Indicates whether Seam should [import all new devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#automatically_manage_new_devices) for the connected account to make these devices available for use and management by the Seam API. */
|
|
75952
76434
|
automatically_manage_new_devices: boolean;
|
|
76435
|
+
/** Your unique key for the customer associated with this connected account. */
|
|
76436
|
+
customer_key?: string | undefined;
|
|
75953
76437
|
}>;
|
|
75954
76438
|
/** Information about the current page of results. */
|
|
75955
76439
|
pagination: {
|
|
@@ -76113,6 +76597,8 @@ interface Routes {
|
|
|
76113
76597
|
custom_metadata: Record<string, string | boolean>;
|
|
76114
76598
|
/** Indicates whether Seam should [import all new devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#automatically_manage_new_devices) for the connected account to make these devices available for use and management by the Seam API. */
|
|
76115
76599
|
automatically_manage_new_devices: boolean;
|
|
76600
|
+
/** Your unique key for the customer associated with this connected account. */
|
|
76601
|
+
customer_key?: string | undefined;
|
|
76116
76602
|
};
|
|
76117
76603
|
};
|
|
76118
76604
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"acs-access-group.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-access-group.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,0EAA0E;AAC1E,MAAM,CAAC,MAAM,8BAA8B,GAAG,CAAC,CAAC,IAAI,CAAC;IACnD,UAAU;IACV,kBAAkB;IAClB,uBAAuB;IACvB,aAAa;IACb,mBAAmB;IACnB,kCAAkC;CACnC,CAAC,CAAA;AAMF,MAAM,+BAA+B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,kDAAkD,CAAC;IAC/D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,0GAA0G,CAC3G;CACJ,CAAC,CAAA;AAEF,MAAM,wBAAwB,GAC5B,sGAAsG,CAAA;AAExG,MAAM,CAAC,MAAM,mCAAmC,GAC9C,+BAA+B;KAC5B,MAAM,CAAC;IACN,YAAY,EAAE,CAAC;SACZ,OAAO,CAAC,qCAAqC,CAAC;SAC9C,QAAQ,CAAC,wBAAwB,CAAC;CACtC,CAAC;KACD,QAAQ,CACP,8JAA8J,CAC/J,CAAA;AAEL,MAAM,wBAAwB,GAAG,mCAAmC,CAAC,QAAQ,CAC3E,iDAAiD,CAClD,CAAA;AAED,MAAM,4BAA4B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,mCAAmC,EAAE,mCAAmC;SACrE,QAAQ,EAAE;SACV,QAAQ,EAAE;CACd,CAAC,CAAA;AAMF,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IACvC,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,yBAAyB,CAAC;IAC1E,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,iEAAiE,CAClE;IACH,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,6GAA6G,CAC9G;IACH,oBAAoB,EAAE,CAAC;SACpB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,6HAA6H,CAC9H;IACH,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,2BAA2B,CAAC;IACtD,iBAAiB,EAAE,8BAA8B,CAAC,QAAQ,CAAC;;;;GAI1D,CAAC;IACF,8BAA8B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC;;;;KAIjD,CAAC;IACJ,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,aAAa,EAAE,8BAA8B,CAAC,QAAQ,CACpD,uDAAuD,CACxD;IACD,0BAA0B,EAAE,CAAC;SAC1B,MAAM,EAAE;SACR,QAAQ,CACP,4FAA4F,CAC7F;IACH,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,sDAAsD,CAAC;IACnE,QAAQ,EAAE,CAAC;SACR,KAAK,CAAC,wBAAwB,CAAC;SAC/B,QAAQ,CAAC,kDAAkD,CAAC;CAChE,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,gBAAgB,GAAG,uBAAuB,CAAC,MAAM,CAAC;IAC7D,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;CAC5B,CAAC,CAAC,QAAQ,CAAC;;;;;;;;;GAST,CAAC,CAAA;AACJ,MAAM,CAAC,MAAM,0BAA0B,GAAG,uBAAuB,CAAC,MAAM,CAAC;IACvE,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC;CAC7B,CAAC,CAAC,QAAQ,CAAC
|
|
1
|
+
{"version":3,"file":"acs-access-group.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-access-group.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,0EAA0E;AAC1E,MAAM,CAAC,MAAM,8BAA8B,GAAG,CAAC,CAAC,IAAI,CAAC;IACnD,UAAU;IACV,kBAAkB;IAClB,uBAAuB;IACvB,aAAa;IACb,mBAAmB;IACnB,kCAAkC;CACnC,CAAC,CAAA;AAMF,MAAM,+BAA+B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,kDAAkD,CAAC;IAC/D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,0GAA0G,CAC3G;CACJ,CAAC,CAAA;AAEF,MAAM,wBAAwB,GAC5B,sGAAsG,CAAA;AAExG,MAAM,CAAC,MAAM,mCAAmC,GAC9C,+BAA+B;KAC5B,MAAM,CAAC;IACN,YAAY,EAAE,CAAC;SACZ,OAAO,CAAC,qCAAqC,CAAC;SAC9C,QAAQ,CAAC,wBAAwB,CAAC;CACtC,CAAC;KACD,QAAQ,CACP,8JAA8J,CAC/J,CAAA;AAEL,MAAM,wBAAwB,GAAG,mCAAmC,CAAC,QAAQ,CAC3E,iDAAiD,CAClD,CAAA;AAED,MAAM,4BAA4B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,mCAAmC,EAAE,mCAAmC;SACrE,QAAQ,EAAE;SACV,QAAQ,EAAE;CACd,CAAC,CAAA;AAMF,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IACvC,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,yBAAyB,CAAC;IAC1E,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,iEAAiE,CAClE;IACH,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,6GAA6G,CAC9G;IACH,oBAAoB,EAAE,CAAC;SACpB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,6HAA6H,CAC9H;IACH,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,2BAA2B,CAAC;IACtD,iBAAiB,EAAE,8BAA8B,CAAC,QAAQ,CAAC;;;;GAI1D,CAAC;IACF,8BAA8B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC;;;;KAIjD,CAAC;IACJ,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,aAAa,EAAE,8BAA8B,CAAC,QAAQ,CACpD,uDAAuD,CACxD;IACD,0BAA0B,EAAE,CAAC;SAC1B,MAAM,EAAE;SACR,QAAQ,CACP,4FAA4F,CAC7F;IACH,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,sDAAsD,CAAC;IACnE,QAAQ,EAAE,CAAC;SACR,KAAK,CAAC,wBAAwB,CAAC;SAC/B,QAAQ,CAAC,kDAAkD,CAAC;CAChE,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,gBAAgB,GAAG,uBAAuB,CAAC,MAAM,CAAC;IAC7D,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;CAC5B,CAAC,CAAC,QAAQ,CAAC;;;;;;;;;GAST,CAAC,CAAA;AACJ,MAAM,CAAC,MAAM,0BAA0B,GAAG,uBAAuB,CAAC,MAAM,CAAC;IACvE,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC;CAC7B,CAAC,CAAC,QAAQ,CAAC;;;;;CAKX,CAAC,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"acs-credential-pool.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-credential-pool.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,iCAAiC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,iBAAiB,CAAC,CAAC,CAAA;AAM5E,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,sBAAsB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACzC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC/B,aAAa,EAAE,iCAAiC;IAChD,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE;IACtC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;CAChC,CAAC,CAAC,QAAQ,CAAC
|
|
1
|
+
{"version":3,"file":"acs-credential-pool.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-credential-pool.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,iCAAiC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,iBAAiB,CAAC,CAAC,CAAA;AAM5E,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,sBAAsB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACzC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC/B,aAAa,EAAE,iCAAiC;IAChD,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE;IACtC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;CAChC,CAAC,CAAC,QAAQ,CAAC;;;;;CAKX,CAAC,CAAA"}
|