@seamapi/types 1.239.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 +59 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +70 -0
- 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/openapi.js +54 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +28 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-user.ts +8 -0
- package/src/lib/seam/connect/openapi.ts +54 -0
- package/src/lib/seam/connect/route-types.ts +35 -0
package/dist/connect.cjs
CHANGED
|
@@ -1313,16 +1313,21 @@ var acs_users_being_deleted = common_acs_users_warning.extend({
|
|
|
1313
1313
|
var acs_users_salto_ks_user_not_subscribed = common_acs_users_warning.extend({
|
|
1314
1314
|
warning_code: zod.z.literal("salto_ks_user_not_subscribed")
|
|
1315
1315
|
});
|
|
1316
|
+
var acs_users_failed_to_update_acs_user_on_acs_system = common_acs_users_warning.extend({
|
|
1317
|
+
warning_code: zod.z.literal("failed_to_update_acs_user_on_acs_system")
|
|
1318
|
+
});
|
|
1316
1319
|
var acs_users_salto_site_user_suspended = common_acs_users_warning.extend({
|
|
1317
1320
|
warning_code: zod.z.literal("salto_site_user_suspended")
|
|
1318
1321
|
});
|
|
1319
1322
|
zod.z.object({
|
|
1320
1323
|
being_deleted: acs_users_being_deleted.optional().nullable(),
|
|
1324
|
+
failed_to_update_acs_user_on_acs_system: acs_users_failed_to_update_acs_user_on_acs_system.optional().nullable(),
|
|
1321
1325
|
salto_ks_user_not_subscribed: acs_users_salto_ks_user_not_subscribed.optional().nullable(),
|
|
1322
1326
|
salto_site_user_suspended: acs_users_salto_site_user_suspended.optional().nullable()
|
|
1323
1327
|
});
|
|
1324
1328
|
var acs_users_warning = zod.z.union([
|
|
1325
1329
|
acs_users_being_deleted,
|
|
1330
|
+
acs_users_failed_to_update_acs_user_on_acs_system,
|
|
1326
1331
|
acs_users_salto_ks_user_not_subscribed,
|
|
1327
1332
|
acs_users_salto_site_user_suspended
|
|
1328
1333
|
]);
|
|
@@ -2969,6 +2974,18 @@ var openapi_default = {
|
|
|
2969
2974
|
required: ["created_at", "message", "warning_code"],
|
|
2970
2975
|
type: "object"
|
|
2971
2976
|
},
|
|
2977
|
+
{
|
|
2978
|
+
properties: {
|
|
2979
|
+
created_at: { format: "date-time", type: "string" },
|
|
2980
|
+
message: { type: "string" },
|
|
2981
|
+
warning_code: {
|
|
2982
|
+
enum: ["failed_to_update_acs_user_on_acs_system"],
|
|
2983
|
+
type: "string"
|
|
2984
|
+
}
|
|
2985
|
+
},
|
|
2986
|
+
required: ["created_at", "message", "warning_code"],
|
|
2987
|
+
type: "object"
|
|
2988
|
+
},
|
|
2972
2989
|
{
|
|
2973
2990
|
properties: {
|
|
2974
2991
|
created_at: { format: "date-time", type: "string" },
|
|
@@ -9887,6 +9904,27 @@ var openapi_default = {
|
|
|
9887
9904
|
],
|
|
9888
9905
|
type: "object"
|
|
9889
9906
|
},
|
|
9907
|
+
{
|
|
9908
|
+
properties: {
|
|
9909
|
+
created_at: {
|
|
9910
|
+
format: "date-time",
|
|
9911
|
+
type: "string"
|
|
9912
|
+
},
|
|
9913
|
+
message: { type: "string" },
|
|
9914
|
+
warning_code: {
|
|
9915
|
+
enum: [
|
|
9916
|
+
"failed_to_update_acs_user_on_acs_system"
|
|
9917
|
+
],
|
|
9918
|
+
type: "string"
|
|
9919
|
+
}
|
|
9920
|
+
},
|
|
9921
|
+
required: [
|
|
9922
|
+
"created_at",
|
|
9923
|
+
"message",
|
|
9924
|
+
"warning_code"
|
|
9925
|
+
],
|
|
9926
|
+
type: "object"
|
|
9927
|
+
},
|
|
9890
9928
|
{
|
|
9891
9929
|
properties: {
|
|
9892
9930
|
created_at: {
|
|
@@ -10076,6 +10114,27 @@ var openapi_default = {
|
|
|
10076
10114
|
],
|
|
10077
10115
|
type: "object"
|
|
10078
10116
|
},
|
|
10117
|
+
{
|
|
10118
|
+
properties: {
|
|
10119
|
+
created_at: {
|
|
10120
|
+
format: "date-time",
|
|
10121
|
+
type: "string"
|
|
10122
|
+
},
|
|
10123
|
+
message: { type: "string" },
|
|
10124
|
+
warning_code: {
|
|
10125
|
+
enum: [
|
|
10126
|
+
"failed_to_update_acs_user_on_acs_system"
|
|
10127
|
+
],
|
|
10128
|
+
type: "string"
|
|
10129
|
+
}
|
|
10130
|
+
},
|
|
10131
|
+
required: [
|
|
10132
|
+
"created_at",
|
|
10133
|
+
"message",
|
|
10134
|
+
"warning_code"
|
|
10135
|
+
],
|
|
10136
|
+
type: "object"
|
|
10137
|
+
},
|
|
10079
10138
|
{
|
|
10080
10139
|
properties: {
|
|
10081
10140
|
created_at: {
|