@seamapi/types 1.742.0 → 1.743.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
@@ -2917,6 +2917,13 @@ var deferring_user_membership_update = common_pending_mutation3.extend({
2917
2917
  }).describe(
2918
2918
  "A scheduled user membership change is pending for this access group."
2919
2919
  );
2920
+ var deferring_deletion = common_pending_mutation3.extend({
2921
+ mutation_code: zod.z.literal("deferring_deletion").describe(
2922
+ "Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes."
2923
+ )
2924
+ }).describe(
2925
+ "This access group is scheduled for automatic deletion when its access window expires."
2926
+ );
2920
2927
  var acs_access_group_pending_mutations = zod.z.discriminatedUnion(
2921
2928
  "mutation_code",
2922
2929
  [
@@ -2926,7 +2933,8 @@ var acs_access_group_pending_mutations = zod.z.discriminatedUnion(
2926
2933
  updating_access_schedule,
2927
2934
  updating_user_membership,
2928
2935
  updating_entrance_membership,
2929
- deferring_user_membership_update
2936
+ deferring_user_membership_update,
2937
+ deferring_deletion
2930
2938
  ]
2931
2939
  );
2932
2940
  zod.z.object({
@@ -2936,7 +2944,8 @@ zod.z.object({
2936
2944
  updating_access_schedule: updating_access_schedule.optional().nullable(),
2937
2945
  updating_user_membership: zod.z.record(zod.z.string().uuid(), updating_user_membership).optional().nullable(),
2938
2946
  updating_entrance_membership: zod.z.record(zod.z.string().uuid(), updating_entrance_membership).optional().nullable(),
2939
- deferring_user_membership_update: zod.z.record(zod.z.string().uuid(), deferring_user_membership_update).optional().nullable()
2947
+ deferring_user_membership_update: zod.z.record(zod.z.string().uuid(), deferring_user_membership_update).optional().nullable(),
2948
+ deferring_deletion: deferring_deletion.optional().nullable()
2940
2949
  });
2941
2950
 
2942
2951
  // src/lib/seam/connect/models/acs/acs-access-group.ts
@@ -9252,6 +9261,27 @@ var openapi_default = {
9252
9261
  "variant"
9253
9262
  ],
9254
9263
  type: "object"
9264
+ },
9265
+ {
9266
+ description: "This access group is scheduled for automatic deletion when its access window expires.",
9267
+ properties: {
9268
+ created_at: {
9269
+ description: "Date and time at which the mutation was created.",
9270
+ format: "date-time",
9271
+ type: "string"
9272
+ },
9273
+ message: {
9274
+ description: "Detailed description of the mutation.",
9275
+ type: "string"
9276
+ },
9277
+ mutation_code: {
9278
+ description: "Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes.",
9279
+ enum: ["deferring_deletion"],
9280
+ type: "string"
9281
+ }
9282
+ },
9283
+ required: ["created_at", "message", "mutation_code"],
9284
+ type: "object"
9255
9285
  }
9256
9286
  ]
9257
9287
  },
@@ -31132,6 +31162,27 @@ var openapi_default = {
31132
31162
  "variant"
31133
31163
  ],
31134
31164
  type: "object"
31165
+ },
31166
+ {
31167
+ description: "This access group is scheduled for automatic deletion when its access window expires.",
31168
+ properties: {
31169
+ created_at: {
31170
+ description: "Date and time at which the mutation was created.",
31171
+ format: "date-time",
31172
+ type: "string"
31173
+ },
31174
+ message: {
31175
+ description: "Detailed description of the mutation.",
31176
+ type: "string"
31177
+ },
31178
+ mutation_code: {
31179
+ description: "Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes.",
31180
+ enum: ["deferring_deletion"],
31181
+ type: "string"
31182
+ }
31183
+ },
31184
+ required: ["created_at", "message", "mutation_code"],
31185
+ type: "object"
31135
31186
  }
31136
31187
  ]
31137
31188
  },