@seamapi/types 1.238.0 → 1.240.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 +90 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +119 -0
- package/lib/seam/connect/models/acs/acs-system.d.ts +45 -0
- package/lib/seam/connect/models/acs/acs-system.js +9 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-user.d.ts +79 -0
- package/lib/seam/connect/models/acs/acs-user.js +5 -0
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +1 -1
- 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.js +74 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +56 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +11 -0
- package/src/lib/seam/connect/models/acs/acs-user.ts +8 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +77 -0
- package/src/lib/seam/connect/route-types.ts +67 -0
|
@@ -530,6 +530,26 @@ export default {
|
|
|
530
530
|
required: ['created_at', 'message', 'error_code'],
|
|
531
531
|
type: 'object',
|
|
532
532
|
},
|
|
533
|
+
{
|
|
534
|
+
properties: {
|
|
535
|
+
created_at: {
|
|
536
|
+
description: 'Date and time at which Seam created the error.',
|
|
537
|
+
format: 'date-time',
|
|
538
|
+
type: 'string',
|
|
539
|
+
},
|
|
540
|
+
error_code: {
|
|
541
|
+
description: "Indicates that the Seam Integration user site is blocked. This means that Seam does not have permission to access Salto resources. Go to Salto Dashboard to remove 'Seam Integration' block",
|
|
542
|
+
enum: ['salto_seam_integration_blocked'],
|
|
543
|
+
type: 'string',
|
|
544
|
+
},
|
|
545
|
+
message: {
|
|
546
|
+
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
547
|
+
type: 'string',
|
|
548
|
+
},
|
|
549
|
+
},
|
|
550
|
+
required: ['created_at', 'message', 'error_code'],
|
|
551
|
+
type: 'object',
|
|
552
|
+
},
|
|
533
553
|
],
|
|
534
554
|
},
|
|
535
555
|
type: 'array',
|
|
@@ -693,6 +713,18 @@ export default {
|
|
|
693
713
|
required: ['created_at', 'message', 'warning_code'],
|
|
694
714
|
type: 'object',
|
|
695
715
|
},
|
|
716
|
+
{
|
|
717
|
+
properties: {
|
|
718
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
719
|
+
message: { type: 'string' },
|
|
720
|
+
warning_code: {
|
|
721
|
+
enum: ['failed_to_update_acs_user_on_acs_system'],
|
|
722
|
+
type: 'string',
|
|
723
|
+
},
|
|
724
|
+
},
|
|
725
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
726
|
+
type: 'object',
|
|
727
|
+
},
|
|
696
728
|
{
|
|
697
729
|
properties: {
|
|
698
730
|
created_at: { format: 'date-time', type: 'string' },
|
|
@@ -7611,6 +7643,27 @@ export default {
|
|
|
7611
7643
|
],
|
|
7612
7644
|
type: 'object',
|
|
7613
7645
|
},
|
|
7646
|
+
{
|
|
7647
|
+
properties: {
|
|
7648
|
+
created_at: {
|
|
7649
|
+
format: 'date-time',
|
|
7650
|
+
type: 'string',
|
|
7651
|
+
},
|
|
7652
|
+
message: { type: 'string' },
|
|
7653
|
+
warning_code: {
|
|
7654
|
+
enum: [
|
|
7655
|
+
'failed_to_update_acs_user_on_acs_system',
|
|
7656
|
+
],
|
|
7657
|
+
type: 'string',
|
|
7658
|
+
},
|
|
7659
|
+
},
|
|
7660
|
+
required: [
|
|
7661
|
+
'created_at',
|
|
7662
|
+
'message',
|
|
7663
|
+
'warning_code',
|
|
7664
|
+
],
|
|
7665
|
+
type: 'object',
|
|
7666
|
+
},
|
|
7614
7667
|
{
|
|
7615
7668
|
properties: {
|
|
7616
7669
|
created_at: {
|
|
@@ -7800,6 +7853,27 @@ export default {
|
|
|
7800
7853
|
],
|
|
7801
7854
|
type: 'object',
|
|
7802
7855
|
},
|
|
7856
|
+
{
|
|
7857
|
+
properties: {
|
|
7858
|
+
created_at: {
|
|
7859
|
+
format: 'date-time',
|
|
7860
|
+
type: 'string',
|
|
7861
|
+
},
|
|
7862
|
+
message: { type: 'string' },
|
|
7863
|
+
warning_code: {
|
|
7864
|
+
enum: [
|
|
7865
|
+
'failed_to_update_acs_user_on_acs_system',
|
|
7866
|
+
],
|
|
7867
|
+
type: 'string',
|
|
7868
|
+
},
|
|
7869
|
+
},
|
|
7870
|
+
required: [
|
|
7871
|
+
'created_at',
|
|
7872
|
+
'message',
|
|
7873
|
+
'warning_code',
|
|
7874
|
+
],
|
|
7875
|
+
type: 'object',
|
|
7876
|
+
},
|
|
7803
7877
|
{
|
|
7804
7878
|
properties: {
|
|
7805
7879
|
created_at: {
|