@seamapi/types 1.437.0 → 1.438.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 +917 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1335 -0
- package/lib/seam/connect/models/events/access-codes.d.ts +204 -0
- package/lib/seam/connect/models/events/access-codes.js +7 -0
- package/lib/seam/connect/models/events/access-codes.js.map +1 -1
- package/lib/seam/connect/models/events/connect-webviews.d.ts +6 -0
- package/lib/seam/connect/models/events/connect-webviews.js +5 -0
- package/lib/seam/connect/models/events/connect-webviews.js.map +1 -1
- package/lib/seam/connect/models/events/connected-accounts.d.ts +42 -0
- package/lib/seam/connect/models/events/connected-accounts.js +4 -0
- package/lib/seam/connect/models/events/connected-accounts.js.map +1 -1
- package/lib/seam/connect/models/events/devices.d.ts +396 -0
- package/lib/seam/connect/models/events/devices.js +7 -0
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/phones.d.ts +6 -0
- package/lib/seam/connect/models/events/phones.js +4 -0
- package/lib/seam/connect/models/events/phones.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +327 -0
- package/lib/seam/connect/models/user-identities/user-identity.d.ts +3 -0
- package/lib/seam/connect/models/user-identities/user-identity.js +3 -0
- package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +537 -0
- package/lib/seam/connect/openapi.js +887 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +468 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/access-codes.ts +11 -0
- package/src/lib/seam/connect/models/events/connect-webviews.ts +8 -0
- package/src/lib/seam/connect/models/events/connected-accounts.ts +6 -0
- package/src/lib/seam/connect/models/events/devices.ts +11 -0
- package/src/lib/seam/connect/models/events/phones.ts +6 -0
- package/src/lib/seam/connect/models/user-identities/user-identity.ts +5 -0
- package/src/lib/seam/connect/openapi.ts +1003 -0
- package/src/lib/seam/connect/route-types.ts +904 -0
|
@@ -6744,6 +6744,15 @@ declare const _default: {
|
|
|
6744
6744
|
format: string;
|
|
6745
6745
|
type: string;
|
|
6746
6746
|
};
|
|
6747
|
+
connected_account_custom_metadata: {
|
|
6748
|
+
additionalProperties: {
|
|
6749
|
+
oneOf: {
|
|
6750
|
+
type: string;
|
|
6751
|
+
}[];
|
|
6752
|
+
};
|
|
6753
|
+
description: string;
|
|
6754
|
+
type: string;
|
|
6755
|
+
};
|
|
6747
6756
|
connected_account_id: {
|
|
6748
6757
|
description: string;
|
|
6749
6758
|
format: string;
|
|
@@ -6754,6 +6763,15 @@ declare const _default: {
|
|
|
6754
6763
|
format: string;
|
|
6755
6764
|
type: string;
|
|
6756
6765
|
};
|
|
6766
|
+
device_custom_metadata: {
|
|
6767
|
+
additionalProperties: {
|
|
6768
|
+
oneOf: {
|
|
6769
|
+
type: string;
|
|
6770
|
+
}[];
|
|
6771
|
+
};
|
|
6772
|
+
description: string;
|
|
6773
|
+
type: string;
|
|
6774
|
+
};
|
|
6757
6775
|
device_id: {
|
|
6758
6776
|
description: string;
|
|
6759
6777
|
format: string;
|
|
@@ -6841,6 +6859,15 @@ declare const _default: {
|
|
|
6841
6859
|
type: string;
|
|
6842
6860
|
nullable?: never;
|
|
6843
6861
|
};
|
|
6862
|
+
connected_account_custom_metadata: {
|
|
6863
|
+
additionalProperties: {
|
|
6864
|
+
oneOf: {
|
|
6865
|
+
type: string;
|
|
6866
|
+
}[];
|
|
6867
|
+
};
|
|
6868
|
+
description: string;
|
|
6869
|
+
type: string;
|
|
6870
|
+
};
|
|
6844
6871
|
connected_account_id: {
|
|
6845
6872
|
description: string;
|
|
6846
6873
|
format: string;
|
|
@@ -6851,6 +6878,15 @@ declare const _default: {
|
|
|
6851
6878
|
format: string;
|
|
6852
6879
|
type: string;
|
|
6853
6880
|
};
|
|
6881
|
+
device_custom_metadata: {
|
|
6882
|
+
additionalProperties: {
|
|
6883
|
+
oneOf: {
|
|
6884
|
+
type: string;
|
|
6885
|
+
}[];
|
|
6886
|
+
};
|
|
6887
|
+
description: string;
|
|
6888
|
+
type: string;
|
|
6889
|
+
};
|
|
6854
6890
|
device_id: {
|
|
6855
6891
|
description: string;
|
|
6856
6892
|
format: string;
|
|
@@ -6937,6 +6973,15 @@ declare const _default: {
|
|
|
6937
6973
|
nullable: boolean;
|
|
6938
6974
|
type: string;
|
|
6939
6975
|
};
|
|
6976
|
+
connected_account_custom_metadata: {
|
|
6977
|
+
additionalProperties: {
|
|
6978
|
+
oneOf: {
|
|
6979
|
+
type: string;
|
|
6980
|
+
}[];
|
|
6981
|
+
};
|
|
6982
|
+
description: string;
|
|
6983
|
+
type: string;
|
|
6984
|
+
};
|
|
6940
6985
|
connected_account_id: {
|
|
6941
6986
|
description: string;
|
|
6942
6987
|
format: string;
|
|
@@ -6947,6 +6992,15 @@ declare const _default: {
|
|
|
6947
6992
|
format: string;
|
|
6948
6993
|
type: string;
|
|
6949
6994
|
};
|
|
6995
|
+
device_custom_metadata: {
|
|
6996
|
+
additionalProperties: {
|
|
6997
|
+
oneOf: {
|
|
6998
|
+
type: string;
|
|
6999
|
+
}[];
|
|
7000
|
+
};
|
|
7001
|
+
description: string;
|
|
7002
|
+
type: string;
|
|
7003
|
+
};
|
|
6950
7004
|
device_id: {
|
|
6951
7005
|
description: string;
|
|
6952
7006
|
format: string;
|
|
@@ -7031,6 +7085,15 @@ declare const _default: {
|
|
|
7031
7085
|
backup_access_code_id: {
|
|
7032
7086
|
type: string;
|
|
7033
7087
|
};
|
|
7088
|
+
connected_account_custom_metadata: {
|
|
7089
|
+
additionalProperties: {
|
|
7090
|
+
oneOf: {
|
|
7091
|
+
type: string;
|
|
7092
|
+
}[];
|
|
7093
|
+
};
|
|
7094
|
+
description: string;
|
|
7095
|
+
type: string;
|
|
7096
|
+
};
|
|
7034
7097
|
connected_account_id: {
|
|
7035
7098
|
description: string;
|
|
7036
7099
|
format: string;
|
|
@@ -7041,6 +7104,15 @@ declare const _default: {
|
|
|
7041
7104
|
format: string;
|
|
7042
7105
|
type: string;
|
|
7043
7106
|
};
|
|
7107
|
+
device_custom_metadata: {
|
|
7108
|
+
additionalProperties: {
|
|
7109
|
+
oneOf: {
|
|
7110
|
+
type: string;
|
|
7111
|
+
}[];
|
|
7112
|
+
};
|
|
7113
|
+
description: string;
|
|
7114
|
+
type: string;
|
|
7115
|
+
};
|
|
7044
7116
|
device_id: {
|
|
7045
7117
|
description: string;
|
|
7046
7118
|
format: string;
|
|
@@ -7147,7 +7219,9 @@ declare const _default: {
|
|
|
7147
7219
|
type: string;
|
|
7148
7220
|
};
|
|
7149
7221
|
access_code_id?: never;
|
|
7222
|
+
connected_account_custom_metadata?: never;
|
|
7150
7223
|
connected_account_id?: never;
|
|
7224
|
+
device_custom_metadata?: never;
|
|
7151
7225
|
device_id?: never;
|
|
7152
7226
|
code?: never;
|
|
7153
7227
|
backup_access_code_id?: never;
|
|
@@ -7236,7 +7310,9 @@ declare const _default: {
|
|
|
7236
7310
|
type: string;
|
|
7237
7311
|
};
|
|
7238
7312
|
access_code_id?: never;
|
|
7313
|
+
connected_account_custom_metadata?: never;
|
|
7239
7314
|
connected_account_id?: never;
|
|
7315
|
+
device_custom_metadata?: never;
|
|
7240
7316
|
device_id?: never;
|
|
7241
7317
|
code?: never;
|
|
7242
7318
|
backup_access_code_id?: never;
|
|
@@ -7319,7 +7395,9 @@ declare const _default: {
|
|
|
7319
7395
|
type: string;
|
|
7320
7396
|
};
|
|
7321
7397
|
access_code_id?: never;
|
|
7398
|
+
connected_account_custom_metadata?: never;
|
|
7322
7399
|
connected_account_id?: never;
|
|
7400
|
+
device_custom_metadata?: never;
|
|
7323
7401
|
device_id?: never;
|
|
7324
7402
|
code?: never;
|
|
7325
7403
|
backup_access_code_id?: never;
|
|
@@ -7408,6 +7486,8 @@ declare const _default: {
|
|
|
7408
7486
|
type: string;
|
|
7409
7487
|
};
|
|
7410
7488
|
access_code_id?: never;
|
|
7489
|
+
connected_account_custom_metadata?: never;
|
|
7490
|
+
device_custom_metadata?: never;
|
|
7411
7491
|
device_id?: never;
|
|
7412
7492
|
code?: never;
|
|
7413
7493
|
backup_access_code_id?: never;
|
|
@@ -7501,6 +7581,8 @@ declare const _default: {
|
|
|
7501
7581
|
type: string;
|
|
7502
7582
|
};
|
|
7503
7583
|
access_code_id?: never;
|
|
7584
|
+
connected_account_custom_metadata?: never;
|
|
7585
|
+
device_custom_metadata?: never;
|
|
7504
7586
|
device_id?: never;
|
|
7505
7587
|
code?: never;
|
|
7506
7588
|
backup_access_code_id?: never;
|
|
@@ -7592,6 +7674,8 @@ declare const _default: {
|
|
|
7592
7674
|
type: string;
|
|
7593
7675
|
};
|
|
7594
7676
|
access_code_id?: never;
|
|
7677
|
+
connected_account_custom_metadata?: never;
|
|
7678
|
+
device_custom_metadata?: never;
|
|
7595
7679
|
device_id?: never;
|
|
7596
7680
|
code?: never;
|
|
7597
7681
|
backup_access_code_id?: never;
|
|
@@ -7684,6 +7768,8 @@ declare const _default: {
|
|
|
7684
7768
|
type: string;
|
|
7685
7769
|
};
|
|
7686
7770
|
access_code_id?: never;
|
|
7771
|
+
connected_account_custom_metadata?: never;
|
|
7772
|
+
device_custom_metadata?: never;
|
|
7687
7773
|
device_id?: never;
|
|
7688
7774
|
code?: never;
|
|
7689
7775
|
backup_access_code_id?: never;
|
|
@@ -7776,6 +7862,8 @@ declare const _default: {
|
|
|
7776
7862
|
type: string;
|
|
7777
7863
|
};
|
|
7778
7864
|
access_code_id?: never;
|
|
7865
|
+
connected_account_custom_metadata?: never;
|
|
7866
|
+
device_custom_metadata?: never;
|
|
7779
7867
|
device_id?: never;
|
|
7780
7868
|
code?: never;
|
|
7781
7869
|
backup_access_code_id?: never;
|
|
@@ -7868,6 +7956,8 @@ declare const _default: {
|
|
|
7868
7956
|
type: string;
|
|
7869
7957
|
};
|
|
7870
7958
|
access_code_id?: never;
|
|
7959
|
+
connected_account_custom_metadata?: never;
|
|
7960
|
+
device_custom_metadata?: never;
|
|
7871
7961
|
device_id?: never;
|
|
7872
7962
|
code?: never;
|
|
7873
7963
|
backup_access_code_id?: never;
|
|
@@ -7950,7 +8040,9 @@ declare const _default: {
|
|
|
7950
8040
|
type: string;
|
|
7951
8041
|
};
|
|
7952
8042
|
access_code_id?: never;
|
|
8043
|
+
connected_account_custom_metadata?: never;
|
|
7953
8044
|
connected_account_id?: never;
|
|
8045
|
+
device_custom_metadata?: never;
|
|
7954
8046
|
device_id?: never;
|
|
7955
8047
|
code?: never;
|
|
7956
8048
|
backup_access_code_id?: never;
|
|
@@ -8009,6 +8101,15 @@ declare const _default: {
|
|
|
8009
8101
|
format: string;
|
|
8010
8102
|
type: string;
|
|
8011
8103
|
};
|
|
8104
|
+
connected_account_custom_metadata: {
|
|
8105
|
+
additionalProperties: {
|
|
8106
|
+
oneOf: {
|
|
8107
|
+
type: string;
|
|
8108
|
+
}[];
|
|
8109
|
+
};
|
|
8110
|
+
description: string;
|
|
8111
|
+
type: string;
|
|
8112
|
+
};
|
|
8012
8113
|
connected_account_id: {
|
|
8013
8114
|
description: string;
|
|
8014
8115
|
format: string;
|
|
@@ -8039,6 +8140,7 @@ declare const _default: {
|
|
|
8039
8140
|
type: string;
|
|
8040
8141
|
};
|
|
8041
8142
|
access_code_id?: never;
|
|
8143
|
+
device_custom_metadata?: never;
|
|
8042
8144
|
device_id?: never;
|
|
8043
8145
|
code?: never;
|
|
8044
8146
|
backup_access_code_id?: never;
|
|
@@ -8098,6 +8200,15 @@ declare const _default: {
|
|
|
8098
8200
|
format: string;
|
|
8099
8201
|
type: string;
|
|
8100
8202
|
};
|
|
8203
|
+
connected_account_custom_metadata: {
|
|
8204
|
+
additionalProperties: {
|
|
8205
|
+
oneOf: {
|
|
8206
|
+
type: string;
|
|
8207
|
+
}[];
|
|
8208
|
+
};
|
|
8209
|
+
description: string;
|
|
8210
|
+
type: string;
|
|
8211
|
+
};
|
|
8101
8212
|
connected_account_id: {
|
|
8102
8213
|
description: string;
|
|
8103
8214
|
format: string;
|
|
@@ -8128,6 +8239,7 @@ declare const _default: {
|
|
|
8128
8239
|
type: string;
|
|
8129
8240
|
};
|
|
8130
8241
|
access_code_id?: never;
|
|
8242
|
+
device_custom_metadata?: never;
|
|
8131
8243
|
device_id?: never;
|
|
8132
8244
|
code?: never;
|
|
8133
8245
|
backup_access_code_id?: never;
|
|
@@ -8180,6 +8292,15 @@ declare const _default: {
|
|
|
8180
8292
|
} | {
|
|
8181
8293
|
description: string;
|
|
8182
8294
|
properties: {
|
|
8295
|
+
connected_account_custom_metadata: {
|
|
8296
|
+
additionalProperties: {
|
|
8297
|
+
oneOf: {
|
|
8298
|
+
type: string;
|
|
8299
|
+
}[];
|
|
8300
|
+
};
|
|
8301
|
+
description: string;
|
|
8302
|
+
type: string;
|
|
8303
|
+
};
|
|
8183
8304
|
connected_account_id: {
|
|
8184
8305
|
description: string;
|
|
8185
8306
|
format: string;
|
|
@@ -8210,6 +8331,7 @@ declare const _default: {
|
|
|
8210
8331
|
type: string;
|
|
8211
8332
|
};
|
|
8212
8333
|
access_code_id?: never;
|
|
8334
|
+
device_custom_metadata?: never;
|
|
8213
8335
|
device_id?: never;
|
|
8214
8336
|
code?: never;
|
|
8215
8337
|
backup_access_code_id?: never;
|
|
@@ -8302,7 +8424,9 @@ declare const _default: {
|
|
|
8302
8424
|
type: string;
|
|
8303
8425
|
};
|
|
8304
8426
|
access_code_id?: never;
|
|
8427
|
+
connected_account_custom_metadata?: never;
|
|
8305
8428
|
connected_account_id?: never;
|
|
8429
|
+
device_custom_metadata?: never;
|
|
8306
8430
|
device_id?: never;
|
|
8307
8431
|
code?: never;
|
|
8308
8432
|
backup_access_code_id?: never;
|
|
@@ -8384,7 +8508,9 @@ declare const _default: {
|
|
|
8384
8508
|
type: string;
|
|
8385
8509
|
};
|
|
8386
8510
|
access_code_id?: never;
|
|
8511
|
+
connected_account_custom_metadata?: never;
|
|
8387
8512
|
connected_account_id?: never;
|
|
8513
|
+
device_custom_metadata?: never;
|
|
8388
8514
|
device_id?: never;
|
|
8389
8515
|
code?: never;
|
|
8390
8516
|
backup_access_code_id?: never;
|
|
@@ -8438,6 +8564,15 @@ declare const _default: {
|
|
|
8438
8564
|
} | {
|
|
8439
8565
|
description: string;
|
|
8440
8566
|
properties: {
|
|
8567
|
+
connected_account_custom_metadata: {
|
|
8568
|
+
additionalProperties: {
|
|
8569
|
+
oneOf: {
|
|
8570
|
+
type: string;
|
|
8571
|
+
}[];
|
|
8572
|
+
};
|
|
8573
|
+
description: string;
|
|
8574
|
+
type: string;
|
|
8575
|
+
};
|
|
8441
8576
|
connected_account_id: {
|
|
8442
8577
|
description: string;
|
|
8443
8578
|
format: string;
|
|
@@ -8448,6 +8583,15 @@ declare const _default: {
|
|
|
8448
8583
|
format: string;
|
|
8449
8584
|
type: string;
|
|
8450
8585
|
};
|
|
8586
|
+
device_custom_metadata: {
|
|
8587
|
+
additionalProperties: {
|
|
8588
|
+
oneOf: {
|
|
8589
|
+
type: string;
|
|
8590
|
+
}[];
|
|
8591
|
+
};
|
|
8592
|
+
description: string;
|
|
8593
|
+
type: string;
|
|
8594
|
+
};
|
|
8451
8595
|
device_id: {
|
|
8452
8596
|
description: string;
|
|
8453
8597
|
format: string;
|
|
@@ -8526,6 +8670,15 @@ declare const _default: {
|
|
|
8526
8670
|
} | {
|
|
8527
8671
|
description: string;
|
|
8528
8672
|
properties: {
|
|
8673
|
+
connected_account_custom_metadata: {
|
|
8674
|
+
additionalProperties: {
|
|
8675
|
+
oneOf: {
|
|
8676
|
+
type: string;
|
|
8677
|
+
}[];
|
|
8678
|
+
};
|
|
8679
|
+
description: string;
|
|
8680
|
+
type: string;
|
|
8681
|
+
};
|
|
8529
8682
|
connected_account_id: {
|
|
8530
8683
|
description: string;
|
|
8531
8684
|
format: string;
|
|
@@ -8536,6 +8689,15 @@ declare const _default: {
|
|
|
8536
8689
|
format: string;
|
|
8537
8690
|
type: string;
|
|
8538
8691
|
};
|
|
8692
|
+
device_custom_metadata: {
|
|
8693
|
+
additionalProperties: {
|
|
8694
|
+
oneOf: {
|
|
8695
|
+
type: string;
|
|
8696
|
+
}[];
|
|
8697
|
+
};
|
|
8698
|
+
description: string;
|
|
8699
|
+
type: string;
|
|
8700
|
+
};
|
|
8539
8701
|
device_id: {
|
|
8540
8702
|
description: string;
|
|
8541
8703
|
format: string;
|
|
@@ -8625,6 +8787,15 @@ declare const _default: {
|
|
|
8625
8787
|
minimum: number;
|
|
8626
8788
|
type: string;
|
|
8627
8789
|
};
|
|
8790
|
+
connected_account_custom_metadata: {
|
|
8791
|
+
additionalProperties: {
|
|
8792
|
+
oneOf: {
|
|
8793
|
+
type: string;
|
|
8794
|
+
}[];
|
|
8795
|
+
};
|
|
8796
|
+
description: string;
|
|
8797
|
+
type: string;
|
|
8798
|
+
};
|
|
8628
8799
|
connected_account_id: {
|
|
8629
8800
|
description: string;
|
|
8630
8801
|
format: string;
|
|
@@ -8635,6 +8806,15 @@ declare const _default: {
|
|
|
8635
8806
|
format: string;
|
|
8636
8807
|
type: string;
|
|
8637
8808
|
};
|
|
8809
|
+
device_custom_metadata: {
|
|
8810
|
+
additionalProperties: {
|
|
8811
|
+
oneOf: {
|
|
8812
|
+
type: string;
|
|
8813
|
+
}[];
|
|
8814
|
+
};
|
|
8815
|
+
description: string;
|
|
8816
|
+
type: string;
|
|
8817
|
+
};
|
|
8638
8818
|
device_id: {
|
|
8639
8819
|
description: string;
|
|
8640
8820
|
format: string;
|
|
@@ -8724,6 +8904,15 @@ declare const _default: {
|
|
|
8724
8904
|
enum: string[];
|
|
8725
8905
|
type: string;
|
|
8726
8906
|
};
|
|
8907
|
+
connected_account_custom_metadata: {
|
|
8908
|
+
additionalProperties: {
|
|
8909
|
+
oneOf: {
|
|
8910
|
+
type: string;
|
|
8911
|
+
}[];
|
|
8912
|
+
};
|
|
8913
|
+
description: string;
|
|
8914
|
+
type: string;
|
|
8915
|
+
};
|
|
8727
8916
|
connected_account_id: {
|
|
8728
8917
|
description: string;
|
|
8729
8918
|
format: string;
|
|
@@ -8734,6 +8923,15 @@ declare const _default: {
|
|
|
8734
8923
|
format: string;
|
|
8735
8924
|
type: string;
|
|
8736
8925
|
};
|
|
8926
|
+
device_custom_metadata: {
|
|
8927
|
+
additionalProperties: {
|
|
8928
|
+
oneOf: {
|
|
8929
|
+
type: string;
|
|
8930
|
+
}[];
|
|
8931
|
+
};
|
|
8932
|
+
description: string;
|
|
8933
|
+
type: string;
|
|
8934
|
+
};
|
|
8737
8935
|
device_id: {
|
|
8738
8936
|
description: string;
|
|
8739
8937
|
format: string;
|
|
@@ -8810,6 +9008,15 @@ declare const _default: {
|
|
|
8810
9008
|
} | {
|
|
8811
9009
|
description: string;
|
|
8812
9010
|
properties: {
|
|
9011
|
+
connected_account_custom_metadata: {
|
|
9012
|
+
additionalProperties: {
|
|
9013
|
+
oneOf: {
|
|
9014
|
+
type: string;
|
|
9015
|
+
}[];
|
|
9016
|
+
};
|
|
9017
|
+
description: string;
|
|
9018
|
+
type: string;
|
|
9019
|
+
};
|
|
8813
9020
|
connected_account_id: {
|
|
8814
9021
|
description: string;
|
|
8815
9022
|
format: string;
|
|
@@ -8820,6 +9027,15 @@ declare const _default: {
|
|
|
8820
9027
|
format: string;
|
|
8821
9028
|
type: string;
|
|
8822
9029
|
};
|
|
9030
|
+
device_custom_metadata: {
|
|
9031
|
+
additionalProperties: {
|
|
9032
|
+
oneOf: {
|
|
9033
|
+
type: string;
|
|
9034
|
+
}[];
|
|
9035
|
+
};
|
|
9036
|
+
description: string;
|
|
9037
|
+
type: string;
|
|
9038
|
+
};
|
|
8823
9039
|
device_id: {
|
|
8824
9040
|
description: string;
|
|
8825
9041
|
format: string;
|
|
@@ -8931,6 +9147,15 @@ declare const _default: {
|
|
|
8931
9147
|
format: string;
|
|
8932
9148
|
type: string;
|
|
8933
9149
|
};
|
|
9150
|
+
connected_account_custom_metadata: {
|
|
9151
|
+
additionalProperties: {
|
|
9152
|
+
oneOf: {
|
|
9153
|
+
type: string;
|
|
9154
|
+
}[];
|
|
9155
|
+
};
|
|
9156
|
+
description: string;
|
|
9157
|
+
type: string;
|
|
9158
|
+
};
|
|
8934
9159
|
connected_account_id: {
|
|
8935
9160
|
description: string;
|
|
8936
9161
|
format: string;
|
|
@@ -8941,6 +9166,15 @@ declare const _default: {
|
|
|
8941
9166
|
format: string;
|
|
8942
9167
|
type: string;
|
|
8943
9168
|
};
|
|
9169
|
+
device_custom_metadata: {
|
|
9170
|
+
additionalProperties: {
|
|
9171
|
+
oneOf: {
|
|
9172
|
+
type: string;
|
|
9173
|
+
}[];
|
|
9174
|
+
};
|
|
9175
|
+
description: string;
|
|
9176
|
+
type: string;
|
|
9177
|
+
};
|
|
8944
9178
|
device_id: {
|
|
8945
9179
|
description: string;
|
|
8946
9180
|
format: string;
|
|
@@ -9025,6 +9259,15 @@ declare const _default: {
|
|
|
9025
9259
|
description: string;
|
|
9026
9260
|
type: string;
|
|
9027
9261
|
};
|
|
9262
|
+
connected_account_custom_metadata: {
|
|
9263
|
+
additionalProperties: {
|
|
9264
|
+
oneOf: {
|
|
9265
|
+
type: string;
|
|
9266
|
+
}[];
|
|
9267
|
+
};
|
|
9268
|
+
description: string;
|
|
9269
|
+
type: string;
|
|
9270
|
+
};
|
|
9028
9271
|
connected_account_id: {
|
|
9029
9272
|
description: string;
|
|
9030
9273
|
format: string;
|
|
@@ -9035,6 +9278,15 @@ declare const _default: {
|
|
|
9035
9278
|
format: string;
|
|
9036
9279
|
type: string;
|
|
9037
9280
|
};
|
|
9281
|
+
device_custom_metadata: {
|
|
9282
|
+
additionalProperties: {
|
|
9283
|
+
oneOf: {
|
|
9284
|
+
type: string;
|
|
9285
|
+
}[];
|
|
9286
|
+
};
|
|
9287
|
+
description: string;
|
|
9288
|
+
type: string;
|
|
9289
|
+
};
|
|
9038
9290
|
device_id: {
|
|
9039
9291
|
description: string;
|
|
9040
9292
|
format: string;
|
|
@@ -9120,6 +9372,15 @@ declare const _default: {
|
|
|
9120
9372
|
} | {
|
|
9121
9373
|
description: string;
|
|
9122
9374
|
properties: {
|
|
9375
|
+
connected_account_custom_metadata: {
|
|
9376
|
+
additionalProperties: {
|
|
9377
|
+
oneOf: {
|
|
9378
|
+
type: string;
|
|
9379
|
+
}[];
|
|
9380
|
+
};
|
|
9381
|
+
description: string;
|
|
9382
|
+
type: string;
|
|
9383
|
+
};
|
|
9123
9384
|
connected_account_id: {
|
|
9124
9385
|
description: string;
|
|
9125
9386
|
format: string;
|
|
@@ -9140,6 +9401,15 @@ declare const _default: {
|
|
|
9140
9401
|
format: string;
|
|
9141
9402
|
type: string;
|
|
9142
9403
|
};
|
|
9404
|
+
device_custom_metadata: {
|
|
9405
|
+
additionalProperties: {
|
|
9406
|
+
oneOf: {
|
|
9407
|
+
type: string;
|
|
9408
|
+
}[];
|
|
9409
|
+
};
|
|
9410
|
+
description: string;
|
|
9411
|
+
type: string;
|
|
9412
|
+
};
|
|
9143
9413
|
device_id: {
|
|
9144
9414
|
description: string;
|
|
9145
9415
|
format: string;
|
|
@@ -9236,6 +9506,15 @@ declare const _default: {
|
|
|
9236
9506
|
} | {
|
|
9237
9507
|
description: string;
|
|
9238
9508
|
properties: {
|
|
9509
|
+
connected_account_custom_metadata: {
|
|
9510
|
+
additionalProperties: {
|
|
9511
|
+
oneOf: {
|
|
9512
|
+
type: string;
|
|
9513
|
+
}[];
|
|
9514
|
+
};
|
|
9515
|
+
description: string;
|
|
9516
|
+
type: string;
|
|
9517
|
+
};
|
|
9239
9518
|
connected_account_id: {
|
|
9240
9519
|
description: string;
|
|
9241
9520
|
format: string;
|
|
@@ -9246,6 +9525,15 @@ declare const _default: {
|
|
|
9246
9525
|
format: string;
|
|
9247
9526
|
type: string;
|
|
9248
9527
|
};
|
|
9528
|
+
device_custom_metadata: {
|
|
9529
|
+
additionalProperties: {
|
|
9530
|
+
oneOf: {
|
|
9531
|
+
type: string;
|
|
9532
|
+
}[];
|
|
9533
|
+
};
|
|
9534
|
+
description: string;
|
|
9535
|
+
type: string;
|
|
9536
|
+
};
|
|
9249
9537
|
device_id: {
|
|
9250
9538
|
description: string;
|
|
9251
9539
|
format: string;
|
|
@@ -9352,6 +9640,15 @@ declare const _default: {
|
|
|
9352
9640
|
} | {
|
|
9353
9641
|
description: string;
|
|
9354
9642
|
properties: {
|
|
9643
|
+
connected_account_custom_metadata: {
|
|
9644
|
+
additionalProperties: {
|
|
9645
|
+
oneOf: {
|
|
9646
|
+
type: string;
|
|
9647
|
+
}[];
|
|
9648
|
+
};
|
|
9649
|
+
description: string;
|
|
9650
|
+
type: string;
|
|
9651
|
+
};
|
|
9355
9652
|
connected_account_id: {
|
|
9356
9653
|
description: string;
|
|
9357
9654
|
format: string;
|
|
@@ -9372,6 +9669,15 @@ declare const _default: {
|
|
|
9372
9669
|
format: string;
|
|
9373
9670
|
type: string;
|
|
9374
9671
|
};
|
|
9672
|
+
device_custom_metadata: {
|
|
9673
|
+
additionalProperties: {
|
|
9674
|
+
oneOf: {
|
|
9675
|
+
type: string;
|
|
9676
|
+
}[];
|
|
9677
|
+
};
|
|
9678
|
+
description: string;
|
|
9679
|
+
type: string;
|
|
9680
|
+
};
|
|
9375
9681
|
device_id: {
|
|
9376
9682
|
description: string;
|
|
9377
9683
|
format: string;
|
|
@@ -9456,6 +9762,15 @@ declare const _default: {
|
|
|
9456
9762
|
} | {
|
|
9457
9763
|
description: string;
|
|
9458
9764
|
properties: {
|
|
9765
|
+
connected_account_custom_metadata: {
|
|
9766
|
+
additionalProperties: {
|
|
9767
|
+
oneOf: {
|
|
9768
|
+
type: string;
|
|
9769
|
+
}[];
|
|
9770
|
+
};
|
|
9771
|
+
description: string;
|
|
9772
|
+
type: string;
|
|
9773
|
+
};
|
|
9459
9774
|
connected_account_id: {
|
|
9460
9775
|
description: string;
|
|
9461
9776
|
format: string;
|
|
@@ -9466,6 +9781,15 @@ declare const _default: {
|
|
|
9466
9781
|
format: string;
|
|
9467
9782
|
type: string;
|
|
9468
9783
|
};
|
|
9784
|
+
device_custom_metadata: {
|
|
9785
|
+
additionalProperties: {
|
|
9786
|
+
oneOf: {
|
|
9787
|
+
type: string;
|
|
9788
|
+
}[];
|
|
9789
|
+
};
|
|
9790
|
+
description: string;
|
|
9791
|
+
type: string;
|
|
9792
|
+
};
|
|
9469
9793
|
device_id: {
|
|
9470
9794
|
description: string;
|
|
9471
9795
|
format: string;
|
|
@@ -9552,6 +9876,15 @@ declare const _default: {
|
|
|
9552
9876
|
} | {
|
|
9553
9877
|
description: string;
|
|
9554
9878
|
properties: {
|
|
9879
|
+
connected_account_custom_metadata: {
|
|
9880
|
+
additionalProperties: {
|
|
9881
|
+
oneOf: {
|
|
9882
|
+
type: string;
|
|
9883
|
+
}[];
|
|
9884
|
+
};
|
|
9885
|
+
description: string;
|
|
9886
|
+
type: string;
|
|
9887
|
+
};
|
|
9555
9888
|
connected_account_id: {
|
|
9556
9889
|
description: string;
|
|
9557
9890
|
format: string;
|
|
@@ -9562,6 +9895,15 @@ declare const _default: {
|
|
|
9562
9895
|
format: string;
|
|
9563
9896
|
type: string;
|
|
9564
9897
|
};
|
|
9898
|
+
device_custom_metadata: {
|
|
9899
|
+
additionalProperties: {
|
|
9900
|
+
oneOf: {
|
|
9901
|
+
type: string;
|
|
9902
|
+
}[];
|
|
9903
|
+
};
|
|
9904
|
+
description: string;
|
|
9905
|
+
type: string;
|
|
9906
|
+
};
|
|
9565
9907
|
device_id: {
|
|
9566
9908
|
description: string;
|
|
9567
9909
|
format: string;
|
|
@@ -9673,7 +10015,9 @@ declare const _default: {
|
|
|
9673
10015
|
type: string;
|
|
9674
10016
|
};
|
|
9675
10017
|
access_code_id?: never;
|
|
10018
|
+
connected_account_custom_metadata?: never;
|
|
9676
10019
|
connected_account_id?: never;
|
|
10020
|
+
device_custom_metadata?: never;
|
|
9677
10021
|
device_id?: never;
|
|
9678
10022
|
code?: never;
|
|
9679
10023
|
backup_access_code_id?: never;
|
|
@@ -9732,6 +10076,15 @@ declare const _default: {
|
|
|
9732
10076
|
format: string;
|
|
9733
10077
|
type: string;
|
|
9734
10078
|
};
|
|
10079
|
+
device_custom_metadata: {
|
|
10080
|
+
additionalProperties: {
|
|
10081
|
+
oneOf: {
|
|
10082
|
+
type: string;
|
|
10083
|
+
}[];
|
|
10084
|
+
};
|
|
10085
|
+
description: string;
|
|
10086
|
+
type: string;
|
|
10087
|
+
};
|
|
9735
10088
|
device_id: {
|
|
9736
10089
|
description: string;
|
|
9737
10090
|
format: string;
|
|
@@ -9757,6 +10110,7 @@ declare const _default: {
|
|
|
9757
10110
|
type: string;
|
|
9758
10111
|
};
|
|
9759
10112
|
access_code_id?: never;
|
|
10113
|
+
connected_account_custom_metadata?: never;
|
|
9760
10114
|
connected_account_id?: never;
|
|
9761
10115
|
code?: never;
|
|
9762
10116
|
backup_access_code_id?: never;
|
|
@@ -12534,6 +12888,14 @@ declare const _default: {
|
|
|
12534
12888
|
user_identity: {
|
|
12535
12889
|
description: string;
|
|
12536
12890
|
properties: {
|
|
12891
|
+
acs_user_ids: {
|
|
12892
|
+
description: string;
|
|
12893
|
+
items: {
|
|
12894
|
+
format: string;
|
|
12895
|
+
type: string;
|
|
12896
|
+
};
|
|
12897
|
+
type: string;
|
|
12898
|
+
};
|
|
12537
12899
|
created_at: {
|
|
12538
12900
|
description: string;
|
|
12539
12901
|
format: string;
|
|
@@ -21275,6 +21637,7 @@ declare const _default: {
|
|
|
21275
21637
|
deprecated?: never;
|
|
21276
21638
|
nullable?: never;
|
|
21277
21639
|
'x-deprecated'?: never;
|
|
21640
|
+
items?: never;
|
|
21278
21641
|
};
|
|
21279
21642
|
} | {
|
|
21280
21643
|
in: string;
|
|
@@ -21286,6 +21649,22 @@ declare const _default: {
|
|
|
21286
21649
|
type: string;
|
|
21287
21650
|
'x-deprecated': string;
|
|
21288
21651
|
description?: never;
|
|
21652
|
+
items?: never;
|
|
21653
|
+
};
|
|
21654
|
+
} | {
|
|
21655
|
+
in: string;
|
|
21656
|
+
name: string;
|
|
21657
|
+
schema: {
|
|
21658
|
+
description: string;
|
|
21659
|
+
items: {
|
|
21660
|
+
format: string;
|
|
21661
|
+
type: string;
|
|
21662
|
+
};
|
|
21663
|
+
type: string;
|
|
21664
|
+
format?: never;
|
|
21665
|
+
deprecated?: never;
|
|
21666
|
+
nullable?: never;
|
|
21667
|
+
'x-deprecated'?: never;
|
|
21289
21668
|
};
|
|
21290
21669
|
})[];
|
|
21291
21670
|
responses: {
|
|
@@ -21370,6 +21749,14 @@ declare const _default: {
|
|
|
21370
21749
|
format: string;
|
|
21371
21750
|
type: string;
|
|
21372
21751
|
};
|
|
21752
|
+
acs_entrance_ids: {
|
|
21753
|
+
description: string;
|
|
21754
|
+
items: {
|
|
21755
|
+
format: string;
|
|
21756
|
+
type: string;
|
|
21757
|
+
};
|
|
21758
|
+
type: string;
|
|
21759
|
+
};
|
|
21373
21760
|
acs_system_id: {
|
|
21374
21761
|
description: string;
|
|
21375
21762
|
format: string;
|
|
@@ -29490,6 +29877,80 @@ declare const _default: {
|
|
|
29490
29877
|
'x-title': string;
|
|
29491
29878
|
};
|
|
29492
29879
|
};
|
|
29880
|
+
'/devices/simulate/connect_to_hub': {
|
|
29881
|
+
post: {
|
|
29882
|
+
description: string;
|
|
29883
|
+
operationId: string;
|
|
29884
|
+
requestBody: {
|
|
29885
|
+
content: {
|
|
29886
|
+
'application/json': {
|
|
29887
|
+
schema: {
|
|
29888
|
+
properties: {
|
|
29889
|
+
device_id: {
|
|
29890
|
+
description: string;
|
|
29891
|
+
format: string;
|
|
29892
|
+
type: string;
|
|
29893
|
+
};
|
|
29894
|
+
};
|
|
29895
|
+
required: string[];
|
|
29896
|
+
type: string;
|
|
29897
|
+
};
|
|
29898
|
+
};
|
|
29899
|
+
};
|
|
29900
|
+
};
|
|
29901
|
+
responses: {
|
|
29902
|
+
200: {
|
|
29903
|
+
content: {
|
|
29904
|
+
'application/json': {
|
|
29905
|
+
schema: {
|
|
29906
|
+
properties: {
|
|
29907
|
+
ok: {
|
|
29908
|
+
type: string;
|
|
29909
|
+
};
|
|
29910
|
+
};
|
|
29911
|
+
required: string[];
|
|
29912
|
+
type: string;
|
|
29913
|
+
};
|
|
29914
|
+
};
|
|
29915
|
+
};
|
|
29916
|
+
description: string;
|
|
29917
|
+
};
|
|
29918
|
+
400: {
|
|
29919
|
+
description: string;
|
|
29920
|
+
};
|
|
29921
|
+
401: {
|
|
29922
|
+
description: string;
|
|
29923
|
+
};
|
|
29924
|
+
};
|
|
29925
|
+
security: ({
|
|
29926
|
+
api_key: never[];
|
|
29927
|
+
pat_with_workspace?: never;
|
|
29928
|
+
console_session_with_workspace?: never;
|
|
29929
|
+
client_session_with_customer?: never;
|
|
29930
|
+
} | {
|
|
29931
|
+
pat_with_workspace: never[];
|
|
29932
|
+
api_key?: never;
|
|
29933
|
+
console_session_with_workspace?: never;
|
|
29934
|
+
client_session_with_customer?: never;
|
|
29935
|
+
} | {
|
|
29936
|
+
console_session_with_workspace: never[];
|
|
29937
|
+
api_key?: never;
|
|
29938
|
+
pat_with_workspace?: never;
|
|
29939
|
+
client_session_with_customer?: never;
|
|
29940
|
+
} | {
|
|
29941
|
+
client_session_with_customer: never[];
|
|
29942
|
+
api_key?: never;
|
|
29943
|
+
pat_with_workspace?: never;
|
|
29944
|
+
console_session_with_workspace?: never;
|
|
29945
|
+
})[];
|
|
29946
|
+
summary: string;
|
|
29947
|
+
tags: string[];
|
|
29948
|
+
'x-fern-sdk-group-name': string[];
|
|
29949
|
+
'x-fern-sdk-method-name': string;
|
|
29950
|
+
'x-response-key': null;
|
|
29951
|
+
'x-title': string;
|
|
29952
|
+
};
|
|
29953
|
+
};
|
|
29493
29954
|
'/devices/simulate/disconnect': {
|
|
29494
29955
|
post: {
|
|
29495
29956
|
description: string;
|
|
@@ -29564,6 +30025,80 @@ declare const _default: {
|
|
|
29564
30025
|
'x-title': string;
|
|
29565
30026
|
};
|
|
29566
30027
|
};
|
|
30028
|
+
'/devices/simulate/disconnect_from_hub': {
|
|
30029
|
+
post: {
|
|
30030
|
+
description: string;
|
|
30031
|
+
operationId: string;
|
|
30032
|
+
requestBody: {
|
|
30033
|
+
content: {
|
|
30034
|
+
'application/json': {
|
|
30035
|
+
schema: {
|
|
30036
|
+
properties: {
|
|
30037
|
+
device_id: {
|
|
30038
|
+
description: string;
|
|
30039
|
+
format: string;
|
|
30040
|
+
type: string;
|
|
30041
|
+
};
|
|
30042
|
+
};
|
|
30043
|
+
required: string[];
|
|
30044
|
+
type: string;
|
|
30045
|
+
};
|
|
30046
|
+
};
|
|
30047
|
+
};
|
|
30048
|
+
};
|
|
30049
|
+
responses: {
|
|
30050
|
+
200: {
|
|
30051
|
+
content: {
|
|
30052
|
+
'application/json': {
|
|
30053
|
+
schema: {
|
|
30054
|
+
properties: {
|
|
30055
|
+
ok: {
|
|
30056
|
+
type: string;
|
|
30057
|
+
};
|
|
30058
|
+
};
|
|
30059
|
+
required: string[];
|
|
30060
|
+
type: string;
|
|
30061
|
+
};
|
|
30062
|
+
};
|
|
30063
|
+
};
|
|
30064
|
+
description: string;
|
|
30065
|
+
};
|
|
30066
|
+
400: {
|
|
30067
|
+
description: string;
|
|
30068
|
+
};
|
|
30069
|
+
401: {
|
|
30070
|
+
description: string;
|
|
30071
|
+
};
|
|
30072
|
+
};
|
|
30073
|
+
security: ({
|
|
30074
|
+
api_key: never[];
|
|
30075
|
+
pat_with_workspace?: never;
|
|
30076
|
+
console_session_with_workspace?: never;
|
|
30077
|
+
client_session_with_customer?: never;
|
|
30078
|
+
} | {
|
|
30079
|
+
pat_with_workspace: never[];
|
|
30080
|
+
api_key?: never;
|
|
30081
|
+
console_session_with_workspace?: never;
|
|
30082
|
+
client_session_with_customer?: never;
|
|
30083
|
+
} | {
|
|
30084
|
+
console_session_with_workspace: never[];
|
|
30085
|
+
api_key?: never;
|
|
30086
|
+
pat_with_workspace?: never;
|
|
30087
|
+
client_session_with_customer?: never;
|
|
30088
|
+
} | {
|
|
30089
|
+
client_session_with_customer: never[];
|
|
30090
|
+
api_key?: never;
|
|
30091
|
+
pat_with_workspace?: never;
|
|
30092
|
+
console_session_with_workspace?: never;
|
|
30093
|
+
})[];
|
|
30094
|
+
summary: string;
|
|
30095
|
+
tags: string[];
|
|
30096
|
+
'x-fern-sdk-group-name': string[];
|
|
30097
|
+
'x-fern-sdk-method-name': string;
|
|
30098
|
+
'x-response-key': null;
|
|
30099
|
+
'x-title': string;
|
|
30100
|
+
};
|
|
30101
|
+
};
|
|
29567
30102
|
'/devices/simulate/remove': {
|
|
29568
30103
|
post: {
|
|
29569
30104
|
description: string;
|
|
@@ -32065,6 +32600,7 @@ declare const _default: {
|
|
|
32065
32600
|
'x-fern-sdk-method-name': string;
|
|
32066
32601
|
'x-fern-sdk-return-value': string;
|
|
32067
32602
|
'x-response-key': string;
|
|
32603
|
+
'x-title': string;
|
|
32068
32604
|
};
|
|
32069
32605
|
};
|
|
32070
32606
|
'/locks/simulate/manual_lock_via_keypad': {
|
|
@@ -32135,6 +32671,7 @@ declare const _default: {
|
|
|
32135
32671
|
'x-fern-sdk-method-name': string;
|
|
32136
32672
|
'x-fern-sdk-return-value': string;
|
|
32137
32673
|
'x-response-key': string;
|
|
32674
|
+
'x-title': string;
|
|
32138
32675
|
};
|
|
32139
32676
|
};
|
|
32140
32677
|
'/locks/unlock_door': {
|