@seamapi/types 1.612.0 → 1.613.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 CHANGED
@@ -3255,6 +3255,14 @@ var deleting = common_pending_mutation.extend({
3255
3255
  }).describe(
3256
3256
  "Seam is in the process of pushing a user deletion to the integrated access system."
3257
3257
  );
3258
+ var deferring_creation = common_pending_mutation.extend({
3259
+ mutation_code: zod.z.literal("deferring_creation").describe(
3260
+ "Mutation code to indicate that Seam is intentionally deferring the creation of the user on the access control system until the appropriate time."
3261
+ ),
3262
+ scheduled_at: zod.z.string().datetime().optional().nullable().describe("Optional: When the user creation is scheduled to occur.")
3263
+ }).describe(
3264
+ "User exists in Seam but has not been pushed to the provider yet. Will be created when a credential is issued."
3265
+ );
3258
3266
  var acs_user_info = zod.z.object({
3259
3267
  email_address: zod.z.string().email().nullable().describe("Email address of the access system user."),
3260
3268
  full_name: zod.z.string().nullable().describe("Full name of the access system user."),
@@ -3307,6 +3315,7 @@ var acs_user_pending_mutations = zod.z.discriminatedUnion(
3307
3315
  [
3308
3316
  creating,
3309
3317
  deleting,
3318
+ deferring_creation,
3310
3319
  updating_user_information_mutation,
3311
3320
  updating_access_schedule_mutation,
3312
3321
  updating_suspension_state_mutation,
@@ -3316,6 +3325,7 @@ var acs_user_pending_mutations = zod.z.discriminatedUnion(
3316
3325
  zod.z.object({
3317
3326
  creating: creating.optional().nullable(),
3318
3327
  deleting: deleting.optional().nullable(),
3328
+ deferring_creation: deferring_creation.optional().nullable(),
3319
3329
  updating_access_schedule: updating_access_schedule_mutation.optional().nullable(),
3320
3330
  updating_group_membership: zod.z.map(zod.z.string().uuid(), updating_group_membership_mutation).optional().nullable(),
3321
3331
  updating_suspension_state: updating_suspension_state_mutation.optional().nullable(),
@@ -9186,6 +9196,33 @@ var openapi_default = {
9186
9196
  required: ["created_at", "message", "mutation_code"],
9187
9197
  type: "object"
9188
9198
  },
9199
+ {
9200
+ description: "User exists in Seam but has not been pushed to the provider yet. Will be created when a credential is issued.",
9201
+ properties: {
9202
+ created_at: {
9203
+ description: "Date and time at which the mutation was created.",
9204
+ format: "date-time",
9205
+ type: "string"
9206
+ },
9207
+ message: {
9208
+ description: "Detailed description of the mutation.",
9209
+ type: "string"
9210
+ },
9211
+ mutation_code: {
9212
+ description: "Mutation code to indicate that Seam is intentionally deferring the creation of the user on the access control system until the appropriate time.",
9213
+ enum: ["deferring_creation"],
9214
+ type: "string"
9215
+ },
9216
+ scheduled_at: {
9217
+ description: "Optional: When the user creation is scheduled to occur.",
9218
+ format: "date-time",
9219
+ nullable: true,
9220
+ type: "string"
9221
+ }
9222
+ },
9223
+ required: ["created_at", "message", "mutation_code"],
9224
+ type: "object"
9225
+ },
9189
9226
  {
9190
9227
  properties: {
9191
9228
  created_at: {
@@ -27059,6 +27096,33 @@ var openapi_default = {
27059
27096
  required: ["created_at", "message", "mutation_code"],
27060
27097
  type: "object"
27061
27098
  },
27099
+ {
27100
+ description: "User exists in Seam but has not been pushed to the provider yet. Will be created when a credential is issued.",
27101
+ properties: {
27102
+ created_at: {
27103
+ description: "Date and time at which the mutation was created.",
27104
+ format: "date-time",
27105
+ type: "string"
27106
+ },
27107
+ message: {
27108
+ description: "Detailed description of the mutation.",
27109
+ type: "string"
27110
+ },
27111
+ mutation_code: {
27112
+ description: "Mutation code to indicate that Seam is intentionally deferring the creation of the user on the access control system until the appropriate time.",
27113
+ enum: ["deferring_creation"],
27114
+ type: "string"
27115
+ },
27116
+ scheduled_at: {
27117
+ description: "Optional: When the user creation is scheduled to occur.",
27118
+ format: "date-time",
27119
+ nullable: true,
27120
+ type: "string"
27121
+ }
27122
+ },
27123
+ required: ["created_at", "message", "mutation_code"],
27124
+ type: "object"
27125
+ },
27062
27126
  {
27063
27127
  properties: {
27064
27128
  created_at: {