@seamapi/types 1.321.0 → 1.321.1
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 +17 -11
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +136 -136
- package/lib/seam/connect/models/acs/acs-credential.d.ts +22 -22
- package/lib/seam/connect/models/acs/acs-credential.js +4 -4
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +32 -32
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +14 -14
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +18 -18
- package/lib/seam/connect/openapi.js +13 -7
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +94 -94
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +4 -4
- package/src/lib/seam/connect/openapi.ts +13 -7
- package/src/lib/seam/connect/route-types.ts +94 -94
package/package.json
CHANGED
|
@@ -70,10 +70,10 @@ const being_deleted = common_acs_credential_warning
|
|
|
70
70
|
})
|
|
71
71
|
.describe('Indicates that this credential is being deleted.')
|
|
72
72
|
|
|
73
|
-
export const
|
|
73
|
+
export const unknown_issue_with_acs_credential = common_acs_credential_warning
|
|
74
74
|
.extend({
|
|
75
75
|
warning_code: z
|
|
76
|
-
.literal('
|
|
76
|
+
.literal('unknown_issue_with_acs_credential')
|
|
77
77
|
.describe(warning_code_description),
|
|
78
78
|
})
|
|
79
79
|
.describe(
|
|
@@ -87,7 +87,7 @@ const acs_credential_warning = z
|
|
|
87
87
|
schedule_externally_modified,
|
|
88
88
|
schedule_modified,
|
|
89
89
|
being_deleted,
|
|
90
|
-
|
|
90
|
+
unknown_issue_with_acs_credential,
|
|
91
91
|
])
|
|
92
92
|
.describe('Warning associated with the `acs_credential`.')
|
|
93
93
|
|
|
@@ -98,7 +98,7 @@ const acs_credential_warning_map = z.object({
|
|
|
98
98
|
.nullable(),
|
|
99
99
|
schedule_modified: schedule_modified.optional().nullable(),
|
|
100
100
|
being_deleted: being_deleted.optional().nullable(),
|
|
101
|
-
|
|
101
|
+
unknown_issue_with_acs_credential: unknown_issue_with_acs_credential
|
|
102
102
|
.optional()
|
|
103
103
|
.nullable(),
|
|
104
104
|
})
|
|
@@ -554,7 +554,7 @@ export default {
|
|
|
554
554
|
warning_code: {
|
|
555
555
|
description:
|
|
556
556
|
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
557
|
-
enum: ['
|
|
557
|
+
enum: ['unknown_issue_with_acs_credential'],
|
|
558
558
|
type: 'string',
|
|
559
559
|
},
|
|
560
560
|
},
|
|
@@ -2031,7 +2031,9 @@ export default {
|
|
|
2031
2031
|
warning_code: {
|
|
2032
2032
|
description:
|
|
2033
2033
|
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
2034
|
-
enum: [
|
|
2034
|
+
enum: [
|
|
2035
|
+
'unknown_issue_with_acs_credential',
|
|
2036
|
+
],
|
|
2035
2037
|
type: 'string',
|
|
2036
2038
|
},
|
|
2037
2039
|
},
|
|
@@ -2358,7 +2360,9 @@ export default {
|
|
|
2358
2360
|
warning_code: {
|
|
2359
2361
|
description:
|
|
2360
2362
|
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
2361
|
-
enum: [
|
|
2363
|
+
enum: [
|
|
2364
|
+
'unknown_issue_with_acs_credential',
|
|
2365
|
+
],
|
|
2362
2366
|
type: 'string',
|
|
2363
2367
|
},
|
|
2364
2368
|
},
|
|
@@ -2818,7 +2822,7 @@ export default {
|
|
|
2818
2822
|
warning_code: {
|
|
2819
2823
|
description:
|
|
2820
2824
|
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
2821
|
-
enum: ['
|
|
2825
|
+
enum: ['unknown_issue_with_acs_credential'],
|
|
2822
2826
|
type: 'string',
|
|
2823
2827
|
},
|
|
2824
2828
|
},
|
|
@@ -3144,7 +3148,7 @@ export default {
|
|
|
3144
3148
|
warning_code: {
|
|
3145
3149
|
description:
|
|
3146
3150
|
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
3147
|
-
enum: ['
|
|
3151
|
+
enum: ['unknown_issue_with_acs_credential'],
|
|
3148
3152
|
type: 'string',
|
|
3149
3153
|
},
|
|
3150
3154
|
},
|
|
@@ -13971,7 +13975,7 @@ export default {
|
|
|
13971
13975
|
warning_code: {
|
|
13972
13976
|
description:
|
|
13973
13977
|
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
13974
|
-
enum: ['
|
|
13978
|
+
enum: ['unknown_issue_with_acs_credential'],
|
|
13975
13979
|
type: 'string',
|
|
13976
13980
|
},
|
|
13977
13981
|
},
|
|
@@ -14401,7 +14405,9 @@ export default {
|
|
|
14401
14405
|
warning_code: {
|
|
14402
14406
|
description:
|
|
14403
14407
|
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
14404
|
-
enum: [
|
|
14408
|
+
enum: [
|
|
14409
|
+
'unknown_issue_with_acs_credential',
|
|
14410
|
+
],
|
|
14405
14411
|
type: 'string',
|
|
14406
14412
|
},
|
|
14407
14413
|
},
|