@seamapi/types 1.241.0 → 1.242.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 +204 -95
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +250 -120
- package/lib/seam/connect/models/acs/acs-user.d.ts +169 -140
- package/lib/seam/connect/models/acs/acs-user.js +32 -30
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +36 -18
- package/lib/seam/connect/openapi.js +173 -69
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +112 -42
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-user.ts +41 -35
- package/src/lib/seam/connect/openapi.ts +200 -69
- package/src/lib/seam/connect/route-types.ts +119 -42
|
@@ -680,7 +680,7 @@ export default {
|
|
|
680
680
|
description: 'Error associated with the `acs_user`.',
|
|
681
681
|
oneOf: [
|
|
682
682
|
{
|
|
683
|
-
description: 'Indicates that the user was deleted from the ACS system outside of Seam.',
|
|
683
|
+
description: 'Indicates that the ACS user was deleted from the ACS system outside of Seam.',
|
|
684
684
|
properties: {
|
|
685
685
|
created_at: {
|
|
686
686
|
description: 'Date and time at which Seam created the error.',
|
|
@@ -688,7 +688,7 @@ export default {
|
|
|
688
688
|
type: 'string',
|
|
689
689
|
},
|
|
690
690
|
error_code: {
|
|
691
|
-
enum: ['
|
|
691
|
+
enum: ['deleted_externally'],
|
|
692
692
|
type: 'string',
|
|
693
693
|
},
|
|
694
694
|
message: {
|
|
@@ -720,22 +720,63 @@ export default {
|
|
|
720
720
|
type: 'object',
|
|
721
721
|
},
|
|
722
722
|
{
|
|
723
|
+
description: "Indicates that the user was not created on the ACS system. This is likely due to an internal unexpected error. Please contact Seam's support if you encounter this.",
|
|
723
724
|
properties: {
|
|
724
725
|
created_at: {
|
|
725
726
|
description: 'Date and time at which Seam created the error.',
|
|
726
727
|
format: 'date-time',
|
|
727
728
|
type: 'string',
|
|
728
729
|
},
|
|
729
|
-
|
|
730
|
-
|
|
730
|
+
message: {
|
|
731
|
+
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
732
|
+
type: 'string',
|
|
733
|
+
},
|
|
734
|
+
warning_code: {
|
|
735
|
+
enum: ['failed_to_create_on_acs_system'],
|
|
736
|
+
type: 'string',
|
|
737
|
+
},
|
|
738
|
+
},
|
|
739
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
740
|
+
type: 'object',
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
description: "Indicates that the user was not updated on the ACS system. This is likely due to an internal unexpected error. Please contact Seam's support if you encounter this.",
|
|
744
|
+
properties: {
|
|
745
|
+
created_at: {
|
|
746
|
+
description: 'Date and time at which Seam created the error.',
|
|
747
|
+
format: 'date-time',
|
|
731
748
|
type: 'string',
|
|
732
749
|
},
|
|
733
750
|
message: {
|
|
734
751
|
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
735
752
|
type: 'string',
|
|
736
753
|
},
|
|
754
|
+
warning_code: {
|
|
755
|
+
enum: ['failed_to_update_on_acs_system'],
|
|
756
|
+
type: 'string',
|
|
757
|
+
},
|
|
737
758
|
},
|
|
738
|
-
required: ['created_at', 'message', '
|
|
759
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
760
|
+
type: 'object',
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
description: "Indicates that the user was not deleted on the ACS system. This is likely due to an internal unexpected error. Please contact Seam's support if you encounter this.",
|
|
764
|
+
properties: {
|
|
765
|
+
created_at: {
|
|
766
|
+
description: 'Date and time at which Seam created the error.',
|
|
767
|
+
format: 'date-time',
|
|
768
|
+
type: 'string',
|
|
769
|
+
},
|
|
770
|
+
message: {
|
|
771
|
+
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
772
|
+
type: 'string',
|
|
773
|
+
},
|
|
774
|
+
warning_code: {
|
|
775
|
+
enum: ['failed_to_delete_on_acs_system'],
|
|
776
|
+
type: 'string',
|
|
777
|
+
},
|
|
778
|
+
},
|
|
779
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
739
780
|
type: 'object',
|
|
740
781
|
},
|
|
741
782
|
],
|
|
@@ -784,8 +825,15 @@ export default {
|
|
|
784
825
|
{
|
|
785
826
|
description: "Indicates that the user was not updated on the ACS system. This is likely due to an internal unexpected error. Please contact Seam's support if you encounter this.",
|
|
786
827
|
properties: {
|
|
787
|
-
created_at: {
|
|
788
|
-
|
|
828
|
+
created_at: {
|
|
829
|
+
description: 'Date and time at which Seam created the error.',
|
|
830
|
+
format: 'date-time',
|
|
831
|
+
type: 'string',
|
|
832
|
+
},
|
|
833
|
+
message: {
|
|
834
|
+
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
835
|
+
type: 'string',
|
|
836
|
+
},
|
|
789
837
|
warning_code: {
|
|
790
838
|
enum: ['failed_to_update_on_acs_system'],
|
|
791
839
|
type: 'string',
|
|
@@ -807,18 +855,6 @@ export default {
|
|
|
807
855
|
required: ['created_at', 'message', 'warning_code'],
|
|
808
856
|
type: 'object',
|
|
809
857
|
},
|
|
810
|
-
{
|
|
811
|
-
properties: {
|
|
812
|
-
created_at: { format: 'date-time', type: 'string' },
|
|
813
|
-
message: { type: 'string' },
|
|
814
|
-
warning_code: {
|
|
815
|
-
enum: ['salto_site_user_suspended'],
|
|
816
|
-
type: 'string',
|
|
817
|
-
},
|
|
818
|
-
},
|
|
819
|
-
required: ['created_at', 'message', 'warning_code'],
|
|
820
|
-
type: 'object',
|
|
821
|
-
},
|
|
822
858
|
],
|
|
823
859
|
},
|
|
824
860
|
type: 'array',
|
|
@@ -7784,7 +7820,7 @@ export default {
|
|
|
7784
7820
|
description: 'Error associated with the `acs_user`.',
|
|
7785
7821
|
oneOf: [
|
|
7786
7822
|
{
|
|
7787
|
-
description: 'Indicates that the user was deleted from the ACS system outside of Seam.',
|
|
7823
|
+
description: 'Indicates that the ACS user was deleted from the ACS system outside of Seam.',
|
|
7788
7824
|
properties: {
|
|
7789
7825
|
created_at: {
|
|
7790
7826
|
description: 'Date and time at which Seam created the error.',
|
|
@@ -7792,7 +7828,7 @@ export default {
|
|
|
7792
7828
|
type: 'string',
|
|
7793
7829
|
},
|
|
7794
7830
|
error_code: {
|
|
7795
|
-
enum: ['
|
|
7831
|
+
enum: ['deleted_externally'],
|
|
7796
7832
|
type: 'string',
|
|
7797
7833
|
},
|
|
7798
7834
|
message: {
|
|
@@ -7834,25 +7870,74 @@ export default {
|
|
|
7834
7870
|
type: 'object',
|
|
7835
7871
|
},
|
|
7836
7872
|
{
|
|
7873
|
+
description: "Indicates that the user was not created on the ACS system. This is likely due to an internal unexpected error. Please contact Seam's support if you encounter this.",
|
|
7837
7874
|
properties: {
|
|
7838
7875
|
created_at: {
|
|
7839
7876
|
description: 'Date and time at which Seam created the error.',
|
|
7840
7877
|
format: 'date-time',
|
|
7841
7878
|
type: 'string',
|
|
7842
7879
|
},
|
|
7843
|
-
|
|
7844
|
-
|
|
7880
|
+
message: {
|
|
7881
|
+
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
7882
|
+
type: 'string',
|
|
7883
|
+
},
|
|
7884
|
+
warning_code: {
|
|
7885
|
+
enum: ['failed_to_create_on_acs_system'],
|
|
7886
|
+
type: 'string',
|
|
7887
|
+
},
|
|
7888
|
+
},
|
|
7889
|
+
required: [
|
|
7890
|
+
'created_at',
|
|
7891
|
+
'message',
|
|
7892
|
+
'warning_code',
|
|
7893
|
+
],
|
|
7894
|
+
type: 'object',
|
|
7895
|
+
},
|
|
7896
|
+
{
|
|
7897
|
+
description: "Indicates that the user was not updated on the ACS system. This is likely due to an internal unexpected error. Please contact Seam's support if you encounter this.",
|
|
7898
|
+
properties: {
|
|
7899
|
+
created_at: {
|
|
7900
|
+
description: 'Date and time at which Seam created the error.',
|
|
7901
|
+
format: 'date-time',
|
|
7845
7902
|
type: 'string',
|
|
7846
7903
|
},
|
|
7847
7904
|
message: {
|
|
7848
7905
|
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
7849
7906
|
type: 'string',
|
|
7850
7907
|
},
|
|
7908
|
+
warning_code: {
|
|
7909
|
+
enum: ['failed_to_update_on_acs_system'],
|
|
7910
|
+
type: 'string',
|
|
7911
|
+
},
|
|
7851
7912
|
},
|
|
7852
7913
|
required: [
|
|
7853
7914
|
'created_at',
|
|
7854
7915
|
'message',
|
|
7855
|
-
'
|
|
7916
|
+
'warning_code',
|
|
7917
|
+
],
|
|
7918
|
+
type: 'object',
|
|
7919
|
+
},
|
|
7920
|
+
{
|
|
7921
|
+
description: "Indicates that the user was not deleted on the ACS system. This is likely due to an internal unexpected error. Please contact Seam's support if you encounter this.",
|
|
7922
|
+
properties: {
|
|
7923
|
+
created_at: {
|
|
7924
|
+
description: 'Date and time at which Seam created the error.',
|
|
7925
|
+
format: 'date-time',
|
|
7926
|
+
type: 'string',
|
|
7927
|
+
},
|
|
7928
|
+
message: {
|
|
7929
|
+
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
7930
|
+
type: 'string',
|
|
7931
|
+
},
|
|
7932
|
+
warning_code: {
|
|
7933
|
+
enum: ['failed_to_delete_on_acs_system'],
|
|
7934
|
+
type: 'string',
|
|
7935
|
+
},
|
|
7936
|
+
},
|
|
7937
|
+
required: [
|
|
7938
|
+
'created_at',
|
|
7939
|
+
'message',
|
|
7940
|
+
'warning_code',
|
|
7856
7941
|
],
|
|
7857
7942
|
type: 'object',
|
|
7858
7943
|
},
|
|
@@ -7924,10 +8009,14 @@ export default {
|
|
|
7924
8009
|
description: "Indicates that the user was not updated on the ACS system. This is likely due to an internal unexpected error. Please contact Seam's support if you encounter this.",
|
|
7925
8010
|
properties: {
|
|
7926
8011
|
created_at: {
|
|
8012
|
+
description: 'Date and time at which Seam created the error.',
|
|
7927
8013
|
format: 'date-time',
|
|
7928
8014
|
type: 'string',
|
|
7929
8015
|
},
|
|
7930
|
-
message: {
|
|
8016
|
+
message: {
|
|
8017
|
+
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
8018
|
+
type: 'string',
|
|
8019
|
+
},
|
|
7931
8020
|
warning_code: {
|
|
7932
8021
|
enum: ['failed_to_update_on_acs_system'],
|
|
7933
8022
|
type: 'string',
|
|
@@ -7960,25 +8049,6 @@ export default {
|
|
|
7960
8049
|
],
|
|
7961
8050
|
type: 'object',
|
|
7962
8051
|
},
|
|
7963
|
-
{
|
|
7964
|
-
properties: {
|
|
7965
|
-
created_at: {
|
|
7966
|
-
format: 'date-time',
|
|
7967
|
-
type: 'string',
|
|
7968
|
-
},
|
|
7969
|
-
message: { type: 'string' },
|
|
7970
|
-
warning_code: {
|
|
7971
|
-
enum: ['salto_site_user_suspended'],
|
|
7972
|
-
type: 'string',
|
|
7973
|
-
},
|
|
7974
|
-
},
|
|
7975
|
-
required: [
|
|
7976
|
-
'created_at',
|
|
7977
|
-
'message',
|
|
7978
|
-
'warning_code',
|
|
7979
|
-
],
|
|
7980
|
-
type: 'object',
|
|
7981
|
-
},
|
|
7982
8052
|
],
|
|
7983
8053
|
},
|
|
7984
8054
|
type: 'array',
|
|
@@ -8069,7 +8139,7 @@ export default {
|
|
|
8069
8139
|
description: 'Error associated with the `acs_user`.',
|
|
8070
8140
|
oneOf: [
|
|
8071
8141
|
{
|
|
8072
|
-
description: 'Indicates that the user was deleted from the ACS system outside of Seam.',
|
|
8142
|
+
description: 'Indicates that the ACS user was deleted from the ACS system outside of Seam.',
|
|
8073
8143
|
properties: {
|
|
8074
8144
|
created_at: {
|
|
8075
8145
|
description: 'Date and time at which Seam created the error.',
|
|
@@ -8077,7 +8147,7 @@ export default {
|
|
|
8077
8147
|
type: 'string',
|
|
8078
8148
|
},
|
|
8079
8149
|
error_code: {
|
|
8080
|
-
enum: ['
|
|
8150
|
+
enum: ['deleted_externally'],
|
|
8081
8151
|
type: 'string',
|
|
8082
8152
|
},
|
|
8083
8153
|
message: {
|
|
@@ -8119,25 +8189,74 @@ export default {
|
|
|
8119
8189
|
type: 'object',
|
|
8120
8190
|
},
|
|
8121
8191
|
{
|
|
8192
|
+
description: "Indicates that the user was not created on the ACS system. This is likely due to an internal unexpected error. Please contact Seam's support if you encounter this.",
|
|
8122
8193
|
properties: {
|
|
8123
8194
|
created_at: {
|
|
8124
8195
|
description: 'Date and time at which Seam created the error.',
|
|
8125
8196
|
format: 'date-time',
|
|
8126
8197
|
type: 'string',
|
|
8127
8198
|
},
|
|
8128
|
-
|
|
8129
|
-
|
|
8199
|
+
message: {
|
|
8200
|
+
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
8201
|
+
type: 'string',
|
|
8202
|
+
},
|
|
8203
|
+
warning_code: {
|
|
8204
|
+
enum: ['failed_to_create_on_acs_system'],
|
|
8205
|
+
type: 'string',
|
|
8206
|
+
},
|
|
8207
|
+
},
|
|
8208
|
+
required: [
|
|
8209
|
+
'created_at',
|
|
8210
|
+
'message',
|
|
8211
|
+
'warning_code',
|
|
8212
|
+
],
|
|
8213
|
+
type: 'object',
|
|
8214
|
+
},
|
|
8215
|
+
{
|
|
8216
|
+
description: "Indicates that the user was not updated on the ACS system. This is likely due to an internal unexpected error. Please contact Seam's support if you encounter this.",
|
|
8217
|
+
properties: {
|
|
8218
|
+
created_at: {
|
|
8219
|
+
description: 'Date and time at which Seam created the error.',
|
|
8220
|
+
format: 'date-time',
|
|
8130
8221
|
type: 'string',
|
|
8131
8222
|
},
|
|
8132
8223
|
message: {
|
|
8133
8224
|
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
8134
8225
|
type: 'string',
|
|
8135
8226
|
},
|
|
8227
|
+
warning_code: {
|
|
8228
|
+
enum: ['failed_to_update_on_acs_system'],
|
|
8229
|
+
type: 'string',
|
|
8230
|
+
},
|
|
8136
8231
|
},
|
|
8137
8232
|
required: [
|
|
8138
8233
|
'created_at',
|
|
8139
8234
|
'message',
|
|
8140
|
-
'
|
|
8235
|
+
'warning_code',
|
|
8236
|
+
],
|
|
8237
|
+
type: 'object',
|
|
8238
|
+
},
|
|
8239
|
+
{
|
|
8240
|
+
description: "Indicates that the user was not deleted on the ACS system. This is likely due to an internal unexpected error. Please contact Seam's support if you encounter this.",
|
|
8241
|
+
properties: {
|
|
8242
|
+
created_at: {
|
|
8243
|
+
description: 'Date and time at which Seam created the error.',
|
|
8244
|
+
format: 'date-time',
|
|
8245
|
+
type: 'string',
|
|
8246
|
+
},
|
|
8247
|
+
message: {
|
|
8248
|
+
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
8249
|
+
type: 'string',
|
|
8250
|
+
},
|
|
8251
|
+
warning_code: {
|
|
8252
|
+
enum: ['failed_to_delete_on_acs_system'],
|
|
8253
|
+
type: 'string',
|
|
8254
|
+
},
|
|
8255
|
+
},
|
|
8256
|
+
required: [
|
|
8257
|
+
'created_at',
|
|
8258
|
+
'message',
|
|
8259
|
+
'warning_code',
|
|
8141
8260
|
],
|
|
8142
8261
|
type: 'object',
|
|
8143
8262
|
},
|
|
@@ -8209,10 +8328,14 @@ export default {
|
|
|
8209
8328
|
description: "Indicates that the user was not updated on the ACS system. This is likely due to an internal unexpected error. Please contact Seam's support if you encounter this.",
|
|
8210
8329
|
properties: {
|
|
8211
8330
|
created_at: {
|
|
8331
|
+
description: 'Date and time at which Seam created the error.',
|
|
8212
8332
|
format: 'date-time',
|
|
8213
8333
|
type: 'string',
|
|
8214
8334
|
},
|
|
8215
|
-
message: {
|
|
8335
|
+
message: {
|
|
8336
|
+
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
8337
|
+
type: 'string',
|
|
8338
|
+
},
|
|
8216
8339
|
warning_code: {
|
|
8217
8340
|
enum: ['failed_to_update_on_acs_system'],
|
|
8218
8341
|
type: 'string',
|
|
@@ -8245,25 +8368,6 @@ export default {
|
|
|
8245
8368
|
],
|
|
8246
8369
|
type: 'object',
|
|
8247
8370
|
},
|
|
8248
|
-
{
|
|
8249
|
-
properties: {
|
|
8250
|
-
created_at: {
|
|
8251
|
-
format: 'date-time',
|
|
8252
|
-
type: 'string',
|
|
8253
|
-
},
|
|
8254
|
-
message: { type: 'string' },
|
|
8255
|
-
warning_code: {
|
|
8256
|
-
enum: ['salto_site_user_suspended'],
|
|
8257
|
-
type: 'string',
|
|
8258
|
-
},
|
|
8259
|
-
},
|
|
8260
|
-
required: [
|
|
8261
|
-
'created_at',
|
|
8262
|
-
'message',
|
|
8263
|
-
'warning_code',
|
|
8264
|
-
],
|
|
8265
|
-
type: 'object',
|
|
8266
|
-
},
|
|
8267
8371
|
],
|
|
8268
8372
|
},
|
|
8269
8373
|
type: 'array',
|