@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
|
@@ -724,7 +724,7 @@ export default {
|
|
|
724
724
|
oneOf: [
|
|
725
725
|
{
|
|
726
726
|
description:
|
|
727
|
-
'Indicates that the user was deleted from the ACS system outside of Seam.',
|
|
727
|
+
'Indicates that the ACS user was deleted from the ACS system outside of Seam.',
|
|
728
728
|
properties: {
|
|
729
729
|
created_at: {
|
|
730
730
|
description:
|
|
@@ -733,7 +733,7 @@ export default {
|
|
|
733
733
|
type: 'string',
|
|
734
734
|
},
|
|
735
735
|
error_code: {
|
|
736
|
-
enum: ['
|
|
736
|
+
enum: ['deleted_externally'],
|
|
737
737
|
type: 'string',
|
|
738
738
|
},
|
|
739
739
|
message: {
|
|
@@ -769,6 +769,8 @@ export default {
|
|
|
769
769
|
type: 'object',
|
|
770
770
|
},
|
|
771
771
|
{
|
|
772
|
+
description:
|
|
773
|
+
"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.",
|
|
772
774
|
properties: {
|
|
773
775
|
created_at: {
|
|
774
776
|
description:
|
|
@@ -776,8 +778,27 @@ export default {
|
|
|
776
778
|
format: 'date-time',
|
|
777
779
|
type: 'string',
|
|
778
780
|
},
|
|
779
|
-
|
|
780
|
-
|
|
781
|
+
message: {
|
|
782
|
+
description:
|
|
783
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
784
|
+
type: 'string',
|
|
785
|
+
},
|
|
786
|
+
warning_code: {
|
|
787
|
+
enum: ['failed_to_create_on_acs_system'],
|
|
788
|
+
type: 'string',
|
|
789
|
+
},
|
|
790
|
+
},
|
|
791
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
792
|
+
type: 'object',
|
|
793
|
+
},
|
|
794
|
+
{
|
|
795
|
+
description:
|
|
796
|
+
"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.",
|
|
797
|
+
properties: {
|
|
798
|
+
created_at: {
|
|
799
|
+
description:
|
|
800
|
+
'Date and time at which Seam created the error.',
|
|
801
|
+
format: 'date-time',
|
|
781
802
|
type: 'string',
|
|
782
803
|
},
|
|
783
804
|
message: {
|
|
@@ -785,8 +806,35 @@ export default {
|
|
|
785
806
|
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
786
807
|
type: 'string',
|
|
787
808
|
},
|
|
809
|
+
warning_code: {
|
|
810
|
+
enum: ['failed_to_update_on_acs_system'],
|
|
811
|
+
type: 'string',
|
|
812
|
+
},
|
|
788
813
|
},
|
|
789
|
-
required: ['created_at', 'message', '
|
|
814
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
815
|
+
type: 'object',
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
description:
|
|
819
|
+
"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.",
|
|
820
|
+
properties: {
|
|
821
|
+
created_at: {
|
|
822
|
+
description:
|
|
823
|
+
'Date and time at which Seam created the error.',
|
|
824
|
+
format: 'date-time',
|
|
825
|
+
type: 'string',
|
|
826
|
+
},
|
|
827
|
+
message: {
|
|
828
|
+
description:
|
|
829
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
830
|
+
type: 'string',
|
|
831
|
+
},
|
|
832
|
+
warning_code: {
|
|
833
|
+
enum: ['failed_to_delete_on_acs_system'],
|
|
834
|
+
type: 'string',
|
|
835
|
+
},
|
|
836
|
+
},
|
|
837
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
790
838
|
type: 'object',
|
|
791
839
|
},
|
|
792
840
|
],
|
|
@@ -837,8 +885,17 @@ export default {
|
|
|
837
885
|
description:
|
|
838
886
|
"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.",
|
|
839
887
|
properties: {
|
|
840
|
-
created_at: {
|
|
841
|
-
|
|
888
|
+
created_at: {
|
|
889
|
+
description:
|
|
890
|
+
'Date and time at which Seam created the error.',
|
|
891
|
+
format: 'date-time',
|
|
892
|
+
type: 'string',
|
|
893
|
+
},
|
|
894
|
+
message: {
|
|
895
|
+
description:
|
|
896
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
897
|
+
type: 'string',
|
|
898
|
+
},
|
|
842
899
|
warning_code: {
|
|
843
900
|
enum: ['failed_to_update_on_acs_system'],
|
|
844
901
|
type: 'string',
|
|
@@ -861,18 +918,6 @@ export default {
|
|
|
861
918
|
required: ['created_at', 'message', 'warning_code'],
|
|
862
919
|
type: 'object',
|
|
863
920
|
},
|
|
864
|
-
{
|
|
865
|
-
properties: {
|
|
866
|
-
created_at: { format: 'date-time', type: 'string' },
|
|
867
|
-
message: { type: 'string' },
|
|
868
|
-
warning_code: {
|
|
869
|
-
enum: ['salto_site_user_suspended'],
|
|
870
|
-
type: 'string',
|
|
871
|
-
},
|
|
872
|
-
},
|
|
873
|
-
required: ['created_at', 'message', 'warning_code'],
|
|
874
|
-
type: 'object',
|
|
875
|
-
},
|
|
876
921
|
],
|
|
877
922
|
},
|
|
878
923
|
type: 'array',
|
|
@@ -7910,7 +7955,7 @@ export default {
|
|
|
7910
7955
|
oneOf: [
|
|
7911
7956
|
{
|
|
7912
7957
|
description:
|
|
7913
|
-
'Indicates that the user was deleted from the ACS system outside of Seam.',
|
|
7958
|
+
'Indicates that the ACS user was deleted from the ACS system outside of Seam.',
|
|
7914
7959
|
properties: {
|
|
7915
7960
|
created_at: {
|
|
7916
7961
|
description:
|
|
@@ -7919,7 +7964,7 @@ export default {
|
|
|
7919
7964
|
type: 'string',
|
|
7920
7965
|
},
|
|
7921
7966
|
error_code: {
|
|
7922
|
-
enum: ['
|
|
7967
|
+
enum: ['deleted_externally'],
|
|
7923
7968
|
type: 'string',
|
|
7924
7969
|
},
|
|
7925
7970
|
message: {
|
|
@@ -7965,6 +8010,8 @@ export default {
|
|
|
7965
8010
|
type: 'object',
|
|
7966
8011
|
},
|
|
7967
8012
|
{
|
|
8013
|
+
description:
|
|
8014
|
+
"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.",
|
|
7968
8015
|
properties: {
|
|
7969
8016
|
created_at: {
|
|
7970
8017
|
description:
|
|
@@ -7972,8 +8019,31 @@ export default {
|
|
|
7972
8019
|
format: 'date-time',
|
|
7973
8020
|
type: 'string',
|
|
7974
8021
|
},
|
|
7975
|
-
|
|
7976
|
-
|
|
8022
|
+
message: {
|
|
8023
|
+
description:
|
|
8024
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
8025
|
+
type: 'string',
|
|
8026
|
+
},
|
|
8027
|
+
warning_code: {
|
|
8028
|
+
enum: ['failed_to_create_on_acs_system'],
|
|
8029
|
+
type: 'string',
|
|
8030
|
+
},
|
|
8031
|
+
},
|
|
8032
|
+
required: [
|
|
8033
|
+
'created_at',
|
|
8034
|
+
'message',
|
|
8035
|
+
'warning_code',
|
|
8036
|
+
],
|
|
8037
|
+
type: 'object',
|
|
8038
|
+
},
|
|
8039
|
+
{
|
|
8040
|
+
description:
|
|
8041
|
+
"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.",
|
|
8042
|
+
properties: {
|
|
8043
|
+
created_at: {
|
|
8044
|
+
description:
|
|
8045
|
+
'Date and time at which Seam created the error.',
|
|
8046
|
+
format: 'date-time',
|
|
7977
8047
|
type: 'string',
|
|
7978
8048
|
},
|
|
7979
8049
|
message: {
|
|
@@ -7981,11 +8051,42 @@ export default {
|
|
|
7981
8051
|
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
7982
8052
|
type: 'string',
|
|
7983
8053
|
},
|
|
8054
|
+
warning_code: {
|
|
8055
|
+
enum: ['failed_to_update_on_acs_system'],
|
|
8056
|
+
type: 'string',
|
|
8057
|
+
},
|
|
7984
8058
|
},
|
|
7985
8059
|
required: [
|
|
7986
8060
|
'created_at',
|
|
7987
8061
|
'message',
|
|
7988
|
-
'
|
|
8062
|
+
'warning_code',
|
|
8063
|
+
],
|
|
8064
|
+
type: 'object',
|
|
8065
|
+
},
|
|
8066
|
+
{
|
|
8067
|
+
description:
|
|
8068
|
+
"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.",
|
|
8069
|
+
properties: {
|
|
8070
|
+
created_at: {
|
|
8071
|
+
description:
|
|
8072
|
+
'Date and time at which Seam created the error.',
|
|
8073
|
+
format: 'date-time',
|
|
8074
|
+
type: 'string',
|
|
8075
|
+
},
|
|
8076
|
+
message: {
|
|
8077
|
+
description:
|
|
8078
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
8079
|
+
type: 'string',
|
|
8080
|
+
},
|
|
8081
|
+
warning_code: {
|
|
8082
|
+
enum: ['failed_to_delete_on_acs_system'],
|
|
8083
|
+
type: 'string',
|
|
8084
|
+
},
|
|
8085
|
+
},
|
|
8086
|
+
required: [
|
|
8087
|
+
'created_at',
|
|
8088
|
+
'message',
|
|
8089
|
+
'warning_code',
|
|
7989
8090
|
],
|
|
7990
8091
|
type: 'object',
|
|
7991
8092
|
},
|
|
@@ -8060,10 +8161,16 @@ export default {
|
|
|
8060
8161
|
"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.",
|
|
8061
8162
|
properties: {
|
|
8062
8163
|
created_at: {
|
|
8164
|
+
description:
|
|
8165
|
+
'Date and time at which Seam created the error.',
|
|
8063
8166
|
format: 'date-time',
|
|
8064
8167
|
type: 'string',
|
|
8065
8168
|
},
|
|
8066
|
-
message: {
|
|
8169
|
+
message: {
|
|
8170
|
+
description:
|
|
8171
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
8172
|
+
type: 'string',
|
|
8173
|
+
},
|
|
8067
8174
|
warning_code: {
|
|
8068
8175
|
enum: ['failed_to_update_on_acs_system'],
|
|
8069
8176
|
type: 'string',
|
|
@@ -8097,25 +8204,6 @@ export default {
|
|
|
8097
8204
|
],
|
|
8098
8205
|
type: 'object',
|
|
8099
8206
|
},
|
|
8100
|
-
{
|
|
8101
|
-
properties: {
|
|
8102
|
-
created_at: {
|
|
8103
|
-
format: 'date-time',
|
|
8104
|
-
type: 'string',
|
|
8105
|
-
},
|
|
8106
|
-
message: { type: 'string' },
|
|
8107
|
-
warning_code: {
|
|
8108
|
-
enum: ['salto_site_user_suspended'],
|
|
8109
|
-
type: 'string',
|
|
8110
|
-
},
|
|
8111
|
-
},
|
|
8112
|
-
required: [
|
|
8113
|
-
'created_at',
|
|
8114
|
-
'message',
|
|
8115
|
-
'warning_code',
|
|
8116
|
-
],
|
|
8117
|
-
type: 'object',
|
|
8118
|
-
},
|
|
8119
8207
|
],
|
|
8120
8208
|
},
|
|
8121
8209
|
type: 'array',
|
|
@@ -8208,7 +8296,7 @@ export default {
|
|
|
8208
8296
|
oneOf: [
|
|
8209
8297
|
{
|
|
8210
8298
|
description:
|
|
8211
|
-
'Indicates that the user was deleted from the ACS system outside of Seam.',
|
|
8299
|
+
'Indicates that the ACS user was deleted from the ACS system outside of Seam.',
|
|
8212
8300
|
properties: {
|
|
8213
8301
|
created_at: {
|
|
8214
8302
|
description:
|
|
@@ -8217,7 +8305,7 @@ export default {
|
|
|
8217
8305
|
type: 'string',
|
|
8218
8306
|
},
|
|
8219
8307
|
error_code: {
|
|
8220
|
-
enum: ['
|
|
8308
|
+
enum: ['deleted_externally'],
|
|
8221
8309
|
type: 'string',
|
|
8222
8310
|
},
|
|
8223
8311
|
message: {
|
|
@@ -8263,6 +8351,8 @@ export default {
|
|
|
8263
8351
|
type: 'object',
|
|
8264
8352
|
},
|
|
8265
8353
|
{
|
|
8354
|
+
description:
|
|
8355
|
+
"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.",
|
|
8266
8356
|
properties: {
|
|
8267
8357
|
created_at: {
|
|
8268
8358
|
description:
|
|
@@ -8270,8 +8360,31 @@ export default {
|
|
|
8270
8360
|
format: 'date-time',
|
|
8271
8361
|
type: 'string',
|
|
8272
8362
|
},
|
|
8273
|
-
|
|
8274
|
-
|
|
8363
|
+
message: {
|
|
8364
|
+
description:
|
|
8365
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
8366
|
+
type: 'string',
|
|
8367
|
+
},
|
|
8368
|
+
warning_code: {
|
|
8369
|
+
enum: ['failed_to_create_on_acs_system'],
|
|
8370
|
+
type: 'string',
|
|
8371
|
+
},
|
|
8372
|
+
},
|
|
8373
|
+
required: [
|
|
8374
|
+
'created_at',
|
|
8375
|
+
'message',
|
|
8376
|
+
'warning_code',
|
|
8377
|
+
],
|
|
8378
|
+
type: 'object',
|
|
8379
|
+
},
|
|
8380
|
+
{
|
|
8381
|
+
description:
|
|
8382
|
+
"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.",
|
|
8383
|
+
properties: {
|
|
8384
|
+
created_at: {
|
|
8385
|
+
description:
|
|
8386
|
+
'Date and time at which Seam created the error.',
|
|
8387
|
+
format: 'date-time',
|
|
8275
8388
|
type: 'string',
|
|
8276
8389
|
},
|
|
8277
8390
|
message: {
|
|
@@ -8279,11 +8392,42 @@ export default {
|
|
|
8279
8392
|
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
8280
8393
|
type: 'string',
|
|
8281
8394
|
},
|
|
8395
|
+
warning_code: {
|
|
8396
|
+
enum: ['failed_to_update_on_acs_system'],
|
|
8397
|
+
type: 'string',
|
|
8398
|
+
},
|
|
8282
8399
|
},
|
|
8283
8400
|
required: [
|
|
8284
8401
|
'created_at',
|
|
8285
8402
|
'message',
|
|
8286
|
-
'
|
|
8403
|
+
'warning_code',
|
|
8404
|
+
],
|
|
8405
|
+
type: 'object',
|
|
8406
|
+
},
|
|
8407
|
+
{
|
|
8408
|
+
description:
|
|
8409
|
+
"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.",
|
|
8410
|
+
properties: {
|
|
8411
|
+
created_at: {
|
|
8412
|
+
description:
|
|
8413
|
+
'Date and time at which Seam created the error.',
|
|
8414
|
+
format: 'date-time',
|
|
8415
|
+
type: 'string',
|
|
8416
|
+
},
|
|
8417
|
+
message: {
|
|
8418
|
+
description:
|
|
8419
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
8420
|
+
type: 'string',
|
|
8421
|
+
},
|
|
8422
|
+
warning_code: {
|
|
8423
|
+
enum: ['failed_to_delete_on_acs_system'],
|
|
8424
|
+
type: 'string',
|
|
8425
|
+
},
|
|
8426
|
+
},
|
|
8427
|
+
required: [
|
|
8428
|
+
'created_at',
|
|
8429
|
+
'message',
|
|
8430
|
+
'warning_code',
|
|
8287
8431
|
],
|
|
8288
8432
|
type: 'object',
|
|
8289
8433
|
},
|
|
@@ -8358,10 +8502,16 @@ export default {
|
|
|
8358
8502
|
"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.",
|
|
8359
8503
|
properties: {
|
|
8360
8504
|
created_at: {
|
|
8505
|
+
description:
|
|
8506
|
+
'Date and time at which Seam created the error.',
|
|
8361
8507
|
format: 'date-time',
|
|
8362
8508
|
type: 'string',
|
|
8363
8509
|
},
|
|
8364
|
-
message: {
|
|
8510
|
+
message: {
|
|
8511
|
+
description:
|
|
8512
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
8513
|
+
type: 'string',
|
|
8514
|
+
},
|
|
8365
8515
|
warning_code: {
|
|
8366
8516
|
enum: ['failed_to_update_on_acs_system'],
|
|
8367
8517
|
type: 'string',
|
|
@@ -8395,25 +8545,6 @@ export default {
|
|
|
8395
8545
|
],
|
|
8396
8546
|
type: 'object',
|
|
8397
8547
|
},
|
|
8398
|
-
{
|
|
8399
|
-
properties: {
|
|
8400
|
-
created_at: {
|
|
8401
|
-
format: 'date-time',
|
|
8402
|
-
type: 'string',
|
|
8403
|
-
},
|
|
8404
|
-
message: { type: 'string' },
|
|
8405
|
-
warning_code: {
|
|
8406
|
-
enum: ['salto_site_user_suspended'],
|
|
8407
|
-
type: 'string',
|
|
8408
|
-
},
|
|
8409
|
-
},
|
|
8410
|
-
required: [
|
|
8411
|
-
'created_at',
|
|
8412
|
-
'message',
|
|
8413
|
-
'warning_code',
|
|
8414
|
-
],
|
|
8415
|
-
type: 'object',
|
|
8416
|
-
},
|
|
8417
8548
|
],
|
|
8418
8549
|
},
|
|
8419
8550
|
type: 'array',
|