@seamapi/types 1.236.0 → 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 +168 -40
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +220 -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 +55 -42
- package/lib/seam/connect/openapi.js +151 -32
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +63 -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 +151 -32
- package/src/lib/seam/connect/route-types.ts +126 -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
|
},
|
|
@@ -7522,6 +7551,7 @@ export default {
|
|
|
7522
7551
|
'x-deprecated': 'use email_address.',
|
|
7523
7552
|
},
|
|
7524
7553
|
email_address: { format: 'email', type: 'string' },
|
|
7554
|
+
errors: { $ref: '#/components/schemas/access_code' },
|
|
7525
7555
|
external_type: {
|
|
7526
7556
|
enum: [
|
|
7527
7557
|
'pti_user',
|
|
@@ -7560,19 +7590,65 @@ export default {
|
|
|
7560
7590
|
},
|
|
7561
7591
|
warnings: {
|
|
7562
7592
|
items: {
|
|
7563
|
-
|
|
7564
|
-
|
|
7565
|
-
|
|
7566
|
-
|
|
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',
|
|
7567
7612
|
},
|
|
7568
|
-
|
|
7569
|
-
|
|
7570
|
-
|
|
7571
|
-
|
|
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',
|
|
7572
7631
|
},
|
|
7573
|
-
|
|
7574
|
-
|
|
7575
|
-
|
|
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
|
+
],
|
|
7576
7652
|
},
|
|
7577
7653
|
type: 'array',
|
|
7578
7654
|
},
|
|
@@ -7664,6 +7740,7 @@ export default {
|
|
|
7664
7740
|
'x-deprecated': 'use email_address.',
|
|
7665
7741
|
},
|
|
7666
7742
|
email_address: { format: 'email', type: 'string' },
|
|
7743
|
+
errors: { $ref: '#/components/schemas/access_code' },
|
|
7667
7744
|
external_type: {
|
|
7668
7745
|
enum: [
|
|
7669
7746
|
'pti_user',
|
|
@@ -7702,23 +7779,65 @@ export default {
|
|
|
7702
7779
|
},
|
|
7703
7780
|
warnings: {
|
|
7704
7781
|
items: {
|
|
7705
|
-
|
|
7706
|
-
|
|
7707
|
-
|
|
7708
|
-
|
|
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',
|
|
7709
7801
|
},
|
|
7710
|
-
|
|
7711
|
-
|
|
7712
|
-
|
|
7713
|
-
|
|
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',
|
|
7714
7839
|
},
|
|
7715
|
-
},
|
|
7716
|
-
required: [
|
|
7717
|
-
'created_at',
|
|
7718
|
-
'message',
|
|
7719
|
-
'warning_code',
|
|
7720
7840
|
],
|
|
7721
|
-
type: 'object',
|
|
7722
7841
|
},
|
|
7723
7842
|
type: 'array',
|
|
7724
7843
|
},
|