@seamapi/types 1.235.1 → 1.237.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 +172 -40
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +238 -54
- 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/openapi.d.ts +71 -42
- package/lib/seam/connect/openapi.js +155 -32
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +65 -0
- package/package.json +2 -2
- package/src/lib/seam/connect/models/acs/acs-user.ts +21 -5
- package/src/lib/seam/connect/openapi.ts +155 -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
|
},
|
|
@@ -3960,6 +3989,7 @@ export default {
|
|
|
3960
3989
|
},
|
|
3961
3990
|
name: { type: 'string' },
|
|
3962
3991
|
prefer_native_scheduling: { type: 'boolean' },
|
|
3992
|
+
preferred_code_length: { format: 'float', type: 'number' },
|
|
3963
3993
|
starts_at: { type: 'string' },
|
|
3964
3994
|
sync: { default: false, type: 'boolean' },
|
|
3965
3995
|
use_backup_access_code_pool: { type: 'boolean' },
|
|
@@ -4856,6 +4886,7 @@ export default {
|
|
|
4856
4886
|
},
|
|
4857
4887
|
name: { type: 'string' },
|
|
4858
4888
|
prefer_native_scheduling: { type: 'boolean' },
|
|
4889
|
+
preferred_code_length: { format: 'float', type: 'number' },
|
|
4859
4890
|
starts_at: { type: 'string' },
|
|
4860
4891
|
sync: { default: false, type: 'boolean' },
|
|
4861
4892
|
type: { enum: ['ongoing', 'time_bound'], type: 'string' },
|
|
@@ -4931,6 +4962,7 @@ export default {
|
|
|
4931
4962
|
},
|
|
4932
4963
|
name: { type: 'string' },
|
|
4933
4964
|
prefer_native_scheduling: { type: 'boolean' },
|
|
4965
|
+
preferred_code_length: { format: 'float', type: 'number' },
|
|
4934
4966
|
starts_at: { type: 'string' },
|
|
4935
4967
|
sync: { default: false, type: 'boolean' },
|
|
4936
4968
|
type: { enum: ['ongoing', 'time_bound'], type: 'string' },
|
|
@@ -5007,6 +5039,7 @@ export default {
|
|
|
5007
5039
|
},
|
|
5008
5040
|
name: { type: 'string' },
|
|
5009
5041
|
prefer_native_scheduling: { type: 'boolean' },
|
|
5042
|
+
preferred_code_length: { format: 'float', type: 'number' },
|
|
5010
5043
|
starts_at: { type: 'string' },
|
|
5011
5044
|
sync: { default: false, type: 'boolean' },
|
|
5012
5045
|
type: { enum: ['ongoing', 'time_bound'], type: 'string' },
|
|
@@ -7518,6 +7551,7 @@ export default {
|
|
|
7518
7551
|
'x-deprecated': 'use email_address.',
|
|
7519
7552
|
},
|
|
7520
7553
|
email_address: { format: 'email', type: 'string' },
|
|
7554
|
+
errors: { $ref: '#/components/schemas/access_code' },
|
|
7521
7555
|
external_type: {
|
|
7522
7556
|
enum: [
|
|
7523
7557
|
'pti_user',
|
|
@@ -7556,19 +7590,65 @@ export default {
|
|
|
7556
7590
|
},
|
|
7557
7591
|
warnings: {
|
|
7558
7592
|
items: {
|
|
7559
|
-
|
|
7560
|
-
|
|
7561
|
-
|
|
7562
|
-
|
|
7593
|
+
oneOf: [
|
|
7594
|
+
{
|
|
7595
|
+
properties: {
|
|
7596
|
+
created_at: {
|
|
7597
|
+
format: 'date-time',
|
|
7598
|
+
type: 'string',
|
|
7599
|
+
},
|
|
7600
|
+
message: { type: 'string' },
|
|
7601
|
+
warning_code: {
|
|
7602
|
+
enum: ['being_deleted'],
|
|
7603
|
+
type: 'string',
|
|
7604
|
+
},
|
|
7605
|
+
},
|
|
7606
|
+
required: [
|
|
7607
|
+
'created_at',
|
|
7608
|
+
'message',
|
|
7609
|
+
'warning_code',
|
|
7610
|
+
],
|
|
7611
|
+
type: 'object',
|
|
7563
7612
|
},
|
|
7564
|
-
|
|
7565
|
-
|
|
7566
|
-
|
|
7567
|
-
|
|
7613
|
+
{
|
|
7614
|
+
properties: {
|
|
7615
|
+
created_at: {
|
|
7616
|
+
format: 'date-time',
|
|
7617
|
+
type: 'string',
|
|
7618
|
+
},
|
|
7619
|
+
message: { type: 'string' },
|
|
7620
|
+
warning_code: {
|
|
7621
|
+
enum: ['salto_ks_user_not_subscribed'],
|
|
7622
|
+
type: 'string',
|
|
7623
|
+
},
|
|
7624
|
+
},
|
|
7625
|
+
required: [
|
|
7626
|
+
'created_at',
|
|
7627
|
+
'message',
|
|
7628
|
+
'warning_code',
|
|
7629
|
+
],
|
|
7630
|
+
type: 'object',
|
|
7568
7631
|
},
|
|
7569
|
-
|
|
7570
|
-
|
|
7571
|
-
|
|
7632
|
+
{
|
|
7633
|
+
properties: {
|
|
7634
|
+
created_at: {
|
|
7635
|
+
format: 'date-time',
|
|
7636
|
+
type: 'string',
|
|
7637
|
+
},
|
|
7638
|
+
message: { type: 'string' },
|
|
7639
|
+
warning_code: {
|
|
7640
|
+
enum: ['salto_site_user_suspended'],
|
|
7641
|
+
type: 'string',
|
|
7642
|
+
},
|
|
7643
|
+
},
|
|
7644
|
+
required: [
|
|
7645
|
+
'created_at',
|
|
7646
|
+
'message',
|
|
7647
|
+
'warning_code',
|
|
7648
|
+
],
|
|
7649
|
+
type: 'object',
|
|
7650
|
+
},
|
|
7651
|
+
],
|
|
7572
7652
|
},
|
|
7573
7653
|
type: 'array',
|
|
7574
7654
|
},
|
|
@@ -7660,6 +7740,7 @@ export default {
|
|
|
7660
7740
|
'x-deprecated': 'use email_address.',
|
|
7661
7741
|
},
|
|
7662
7742
|
email_address: { format: 'email', type: 'string' },
|
|
7743
|
+
errors: { $ref: '#/components/schemas/access_code' },
|
|
7663
7744
|
external_type: {
|
|
7664
7745
|
enum: [
|
|
7665
7746
|
'pti_user',
|
|
@@ -7698,23 +7779,65 @@ export default {
|
|
|
7698
7779
|
},
|
|
7699
7780
|
warnings: {
|
|
7700
7781
|
items: {
|
|
7701
|
-
|
|
7702
|
-
|
|
7703
|
-
|
|
7704
|
-
|
|
7782
|
+
oneOf: [
|
|
7783
|
+
{
|
|
7784
|
+
properties: {
|
|
7785
|
+
created_at: {
|
|
7786
|
+
format: 'date-time',
|
|
7787
|
+
type: 'string',
|
|
7788
|
+
},
|
|
7789
|
+
message: { type: 'string' },
|
|
7790
|
+
warning_code: {
|
|
7791
|
+
enum: ['being_deleted'],
|
|
7792
|
+
type: 'string',
|
|
7793
|
+
},
|
|
7794
|
+
},
|
|
7795
|
+
required: [
|
|
7796
|
+
'created_at',
|
|
7797
|
+
'message',
|
|
7798
|
+
'warning_code',
|
|
7799
|
+
],
|
|
7800
|
+
type: 'object',
|
|
7705
7801
|
},
|
|
7706
|
-
|
|
7707
|
-
|
|
7708
|
-
|
|
7709
|
-
|
|
7802
|
+
{
|
|
7803
|
+
properties: {
|
|
7804
|
+
created_at: {
|
|
7805
|
+
format: 'date-time',
|
|
7806
|
+
type: 'string',
|
|
7807
|
+
},
|
|
7808
|
+
message: { type: 'string' },
|
|
7809
|
+
warning_code: {
|
|
7810
|
+
enum: ['salto_ks_user_not_subscribed'],
|
|
7811
|
+
type: 'string',
|
|
7812
|
+
},
|
|
7813
|
+
},
|
|
7814
|
+
required: [
|
|
7815
|
+
'created_at',
|
|
7816
|
+
'message',
|
|
7817
|
+
'warning_code',
|
|
7818
|
+
],
|
|
7819
|
+
type: 'object',
|
|
7820
|
+
},
|
|
7821
|
+
{
|
|
7822
|
+
properties: {
|
|
7823
|
+
created_at: {
|
|
7824
|
+
format: 'date-time',
|
|
7825
|
+
type: 'string',
|
|
7826
|
+
},
|
|
7827
|
+
message: { type: 'string' },
|
|
7828
|
+
warning_code: {
|
|
7829
|
+
enum: ['salto_site_user_suspended'],
|
|
7830
|
+
type: 'string',
|
|
7831
|
+
},
|
|
7832
|
+
},
|
|
7833
|
+
required: [
|
|
7834
|
+
'created_at',
|
|
7835
|
+
'message',
|
|
7836
|
+
'warning_code',
|
|
7837
|
+
],
|
|
7838
|
+
type: 'object',
|
|
7710
7839
|
},
|
|
7711
|
-
},
|
|
7712
|
-
required: [
|
|
7713
|
-
'created_at',
|
|
7714
|
-
'message',
|
|
7715
|
-
'warning_code',
|
|
7716
7840
|
],
|
|
7717
|
-
type: 'object',
|
|
7718
7841
|
},
|
|
7719
7842
|
type: 'array',
|
|
7720
7843
|
},
|