@seamapi/types 1.236.0 → 1.238.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 +173 -42
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +223 -56
- package/lib/seam/connect/models/acs/acs-user.d.ts +178 -14
- package/lib/seam/connect/models/acs/acs-user.js +19 -4
- package/lib/seam/connect/models/acs/acs-user.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/openapi.d.ts +55 -42
- package/lib/seam/connect/openapi.js +153 -32
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +65 -2
- package/package.json +2 -2
- package/src/lib/seam/connect/models/acs/acs-user.ts +21 -5
- package/src/lib/seam/connect/models/devices/device-provider.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +153 -32
- package/src/lib/seam/connect/route-types.ts +128 -35
|
@@ -655,6 +655,7 @@ export default {
|
|
|
655
655
|
'x-deprecated': 'use email_address.',
|
|
656
656
|
},
|
|
657
657
|
email_address: { format: 'email', type: 'string' },
|
|
658
|
+
errors: {},
|
|
658
659
|
external_type: {
|
|
659
660
|
enum: [
|
|
660
661
|
'pti_user',
|
|
@@ -682,13 +683,41 @@ export default {
|
|
|
682
683
|
user_identity_phone_number: { nullable: true, type: 'string' },
|
|
683
684
|
warnings: {
|
|
684
685
|
items: {
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
686
|
+
oneOf: [
|
|
687
|
+
{
|
|
688
|
+
properties: {
|
|
689
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
690
|
+
message: { type: 'string' },
|
|
691
|
+
warning_code: { enum: ['being_deleted'], type: 'string' },
|
|
692
|
+
},
|
|
693
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
694
|
+
type: 'object',
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
properties: {
|
|
698
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
699
|
+
message: { type: 'string' },
|
|
700
|
+
warning_code: {
|
|
701
|
+
enum: ['salto_ks_user_not_subscribed'],
|
|
702
|
+
type: 'string',
|
|
703
|
+
},
|
|
704
|
+
},
|
|
705
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
706
|
+
type: 'object',
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
properties: {
|
|
710
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
711
|
+
message: { type: 'string' },
|
|
712
|
+
warning_code: {
|
|
713
|
+
enum: ['salto_site_user_suspended'],
|
|
714
|
+
type: 'string',
|
|
715
|
+
},
|
|
716
|
+
},
|
|
717
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
718
|
+
type: 'object',
|
|
719
|
+
},
|
|
720
|
+
],
|
|
692
721
|
},
|
|
693
722
|
type: 'array',
|
|
694
723
|
},
|
|
@@ -3138,6 +3167,7 @@ export default {
|
|
|
3138
3167
|
'tedee',
|
|
3139
3168
|
'honeywell_resideo',
|
|
3140
3169
|
'latch',
|
|
3170
|
+
'akiles',
|
|
3141
3171
|
],
|
|
3142
3172
|
type: 'string',
|
|
3143
3173
|
},
|
|
@@ -7522,6 +7552,7 @@ export default {
|
|
|
7522
7552
|
'x-deprecated': 'use email_address.',
|
|
7523
7553
|
},
|
|
7524
7554
|
email_address: { format: 'email', type: 'string' },
|
|
7555
|
+
errors: { $ref: '#/components/schemas/access_code' },
|
|
7525
7556
|
external_type: {
|
|
7526
7557
|
enum: [
|
|
7527
7558
|
'pti_user',
|
|
@@ -7560,19 +7591,65 @@ export default {
|
|
|
7560
7591
|
},
|
|
7561
7592
|
warnings: {
|
|
7562
7593
|
items: {
|
|
7563
|
-
|
|
7564
|
-
|
|
7565
|
-
|
|
7566
|
-
|
|
7594
|
+
oneOf: [
|
|
7595
|
+
{
|
|
7596
|
+
properties: {
|
|
7597
|
+
created_at: {
|
|
7598
|
+
format: 'date-time',
|
|
7599
|
+
type: 'string',
|
|
7600
|
+
},
|
|
7601
|
+
message: { type: 'string' },
|
|
7602
|
+
warning_code: {
|
|
7603
|
+
enum: ['being_deleted'],
|
|
7604
|
+
type: 'string',
|
|
7605
|
+
},
|
|
7606
|
+
},
|
|
7607
|
+
required: [
|
|
7608
|
+
'created_at',
|
|
7609
|
+
'message',
|
|
7610
|
+
'warning_code',
|
|
7611
|
+
],
|
|
7612
|
+
type: 'object',
|
|
7567
7613
|
},
|
|
7568
|
-
|
|
7569
|
-
|
|
7570
|
-
|
|
7571
|
-
|
|
7614
|
+
{
|
|
7615
|
+
properties: {
|
|
7616
|
+
created_at: {
|
|
7617
|
+
format: 'date-time',
|
|
7618
|
+
type: 'string',
|
|
7619
|
+
},
|
|
7620
|
+
message: { type: 'string' },
|
|
7621
|
+
warning_code: {
|
|
7622
|
+
enum: ['salto_ks_user_not_subscribed'],
|
|
7623
|
+
type: 'string',
|
|
7624
|
+
},
|
|
7625
|
+
},
|
|
7626
|
+
required: [
|
|
7627
|
+
'created_at',
|
|
7628
|
+
'message',
|
|
7629
|
+
'warning_code',
|
|
7630
|
+
],
|
|
7631
|
+
type: 'object',
|
|
7572
7632
|
},
|
|
7573
|
-
|
|
7574
|
-
|
|
7575
|
-
|
|
7633
|
+
{
|
|
7634
|
+
properties: {
|
|
7635
|
+
created_at: {
|
|
7636
|
+
format: 'date-time',
|
|
7637
|
+
type: 'string',
|
|
7638
|
+
},
|
|
7639
|
+
message: { type: 'string' },
|
|
7640
|
+
warning_code: {
|
|
7641
|
+
enum: ['salto_site_user_suspended'],
|
|
7642
|
+
type: 'string',
|
|
7643
|
+
},
|
|
7644
|
+
},
|
|
7645
|
+
required: [
|
|
7646
|
+
'created_at',
|
|
7647
|
+
'message',
|
|
7648
|
+
'warning_code',
|
|
7649
|
+
],
|
|
7650
|
+
type: 'object',
|
|
7651
|
+
},
|
|
7652
|
+
],
|
|
7576
7653
|
},
|
|
7577
7654
|
type: 'array',
|
|
7578
7655
|
},
|
|
@@ -7664,6 +7741,7 @@ export default {
|
|
|
7664
7741
|
'x-deprecated': 'use email_address.',
|
|
7665
7742
|
},
|
|
7666
7743
|
email_address: { format: 'email', type: 'string' },
|
|
7744
|
+
errors: { $ref: '#/components/schemas/access_code' },
|
|
7667
7745
|
external_type: {
|
|
7668
7746
|
enum: [
|
|
7669
7747
|
'pti_user',
|
|
@@ -7702,23 +7780,65 @@ export default {
|
|
|
7702
7780
|
},
|
|
7703
7781
|
warnings: {
|
|
7704
7782
|
items: {
|
|
7705
|
-
|
|
7706
|
-
|
|
7707
|
-
|
|
7708
|
-
|
|
7783
|
+
oneOf: [
|
|
7784
|
+
{
|
|
7785
|
+
properties: {
|
|
7786
|
+
created_at: {
|
|
7787
|
+
format: 'date-time',
|
|
7788
|
+
type: 'string',
|
|
7789
|
+
},
|
|
7790
|
+
message: { type: 'string' },
|
|
7791
|
+
warning_code: {
|
|
7792
|
+
enum: ['being_deleted'],
|
|
7793
|
+
type: 'string',
|
|
7794
|
+
},
|
|
7795
|
+
},
|
|
7796
|
+
required: [
|
|
7797
|
+
'created_at',
|
|
7798
|
+
'message',
|
|
7799
|
+
'warning_code',
|
|
7800
|
+
],
|
|
7801
|
+
type: 'object',
|
|
7709
7802
|
},
|
|
7710
|
-
|
|
7711
|
-
|
|
7712
|
-
|
|
7713
|
-
|
|
7803
|
+
{
|
|
7804
|
+
properties: {
|
|
7805
|
+
created_at: {
|
|
7806
|
+
format: 'date-time',
|
|
7807
|
+
type: 'string',
|
|
7808
|
+
},
|
|
7809
|
+
message: { type: 'string' },
|
|
7810
|
+
warning_code: {
|
|
7811
|
+
enum: ['salto_ks_user_not_subscribed'],
|
|
7812
|
+
type: 'string',
|
|
7813
|
+
},
|
|
7814
|
+
},
|
|
7815
|
+
required: [
|
|
7816
|
+
'created_at',
|
|
7817
|
+
'message',
|
|
7818
|
+
'warning_code',
|
|
7819
|
+
],
|
|
7820
|
+
type: 'object',
|
|
7821
|
+
},
|
|
7822
|
+
{
|
|
7823
|
+
properties: {
|
|
7824
|
+
created_at: {
|
|
7825
|
+
format: 'date-time',
|
|
7826
|
+
type: 'string',
|
|
7827
|
+
},
|
|
7828
|
+
message: { type: 'string' },
|
|
7829
|
+
warning_code: {
|
|
7830
|
+
enum: ['salto_site_user_suspended'],
|
|
7831
|
+
type: 'string',
|
|
7832
|
+
},
|
|
7833
|
+
},
|
|
7834
|
+
required: [
|
|
7835
|
+
'created_at',
|
|
7836
|
+
'message',
|
|
7837
|
+
'warning_code',
|
|
7838
|
+
],
|
|
7839
|
+
type: 'object',
|
|
7714
7840
|
},
|
|
7715
|
-
},
|
|
7716
|
-
required: [
|
|
7717
|
-
'created_at',
|
|
7718
|
-
'message',
|
|
7719
|
-
'warning_code',
|
|
7720
7841
|
],
|
|
7721
|
-
type: 'object',
|
|
7722
7842
|
},
|
|
7723
7843
|
type: 'array',
|
|
7724
7844
|
},
|
|
@@ -8597,6 +8717,7 @@ export default {
|
|
|
8597
8717
|
'tedee',
|
|
8598
8718
|
'honeywell_resideo',
|
|
8599
8719
|
'latch',
|
|
8720
|
+
'akiles',
|
|
8600
8721
|
'yale_access',
|
|
8601
8722
|
'hid_cm',
|
|
8602
8723
|
'google_nest',
|