@seamapi/types 1.836.0 → 1.838.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.
Files changed (32) hide show
  1. package/dist/connect.cjs +144 -12
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +661 -232
  4. package/dist/index.cjs +144 -12
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/acs/acs-credential.d.ts +7 -7
  7. package/lib/seam/connect/models/acs/acs-credential.js +1 -0
  8. package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
  9. package/lib/seam/connect/models/acs/acs-credentials/pending-mutations.d.ts +101 -0
  10. package/lib/seam/connect/models/acs/acs-credentials/pending-mutations.js +19 -1
  11. package/lib/seam/connect/models/acs/acs-credentials/pending-mutations.js.map +1 -1
  12. package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +125 -7
  13. package/lib/seam/connect/models/acs/acs-users/acs-user.js +1 -0
  14. package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -1
  15. package/lib/seam/connect/models/acs/acs-users/pending-mutations.d.ts +101 -0
  16. package/lib/seam/connect/models/acs/acs-users/pending-mutations.js +30 -0
  17. package/lib/seam/connect/models/acs/acs-users/pending-mutations.js.map +1 -1
  18. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -24
  19. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +10 -10
  20. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -14
  21. package/lib/seam/connect/models/batch.d.ts +210 -52
  22. package/lib/seam/connect/models/phones/phone-session.d.ts +12 -12
  23. package/lib/seam/connect/openapi.js +115 -0
  24. package/lib/seam/connect/openapi.js.map +1 -1
  25. package/lib/seam/connect/route-types.d.ts +297 -144
  26. package/package.json +1 -1
  27. package/src/lib/seam/connect/models/acs/acs-credential.ts +1 -0
  28. package/src/lib/seam/connect/models/acs/acs-credentials/pending-mutations.ts +24 -1
  29. package/src/lib/seam/connect/models/acs/acs-users/acs-user.ts +1 -0
  30. package/src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts +35 -0
  31. package/src/lib/seam/connect/openapi.ts +121 -0
  32. package/src/lib/seam/connect/route-types.ts +306 -0
@@ -5861,7 +5861,7 @@ export declare const batch: z.ZodObject<{
5861
5861
  workspace_id: z.ZodString;
5862
5862
  created_at: z.ZodString;
5863
5863
  display_name: z.ZodString;
5864
- external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user", "dormakaba_community_user", "salto_space_user"]>>;
5864
+ external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user", "dormakaba_community_user", "salto_space_user", "avigilon_alta_user"]>>;
5865
5865
  external_type_display_name: z.ZodOptional<z.ZodString>;
5866
5866
  is_suspended: z.ZodOptional<z.ZodBoolean>;
5867
5867
  access_schedule: z.ZodOptional<z.ZodObject<{
@@ -6257,6 +6257,45 @@ export declare const batch: z.ZodObject<{
6257
6257
  mutation_code: "deferring_group_membership_update";
6258
6258
  variant: "removing" | "adding";
6259
6259
  acs_access_group_id: string;
6260
+ }>, z.ZodObject<{
6261
+ created_at: z.ZodString;
6262
+ message: z.ZodString;
6263
+ } & {
6264
+ mutation_code: z.ZodLiteral<"updating_credential_assignment">;
6265
+ from: z.ZodObject<{
6266
+ acs_credential_id: z.ZodNullable<z.ZodString>;
6267
+ }, "strip", z.ZodTypeAny, {
6268
+ acs_credential_id: string | null;
6269
+ }, {
6270
+ acs_credential_id: string | null;
6271
+ }>;
6272
+ to: z.ZodObject<{
6273
+ acs_credential_id: z.ZodNullable<z.ZodString>;
6274
+ }, "strip", z.ZodTypeAny, {
6275
+ acs_credential_id: string | null;
6276
+ }, {
6277
+ acs_credential_id: string | null;
6278
+ }>;
6279
+ }, "strip", z.ZodTypeAny, {
6280
+ message: string;
6281
+ created_at: string;
6282
+ mutation_code: "updating_credential_assignment";
6283
+ from: {
6284
+ acs_credential_id: string | null;
6285
+ };
6286
+ to: {
6287
+ acs_credential_id: string | null;
6288
+ };
6289
+ }, {
6290
+ message: string;
6291
+ created_at: string;
6292
+ mutation_code: "updating_credential_assignment";
6293
+ from: {
6294
+ acs_credential_id: string | null;
6295
+ };
6296
+ to: {
6297
+ acs_credential_id: string | null;
6298
+ };
6260
6299
  }>]>, "many">>;
6261
6300
  last_successful_sync_at: z.ZodNullable<z.ZodString>;
6262
6301
  connected_account_id: z.ZodString;
@@ -6394,9 +6433,19 @@ export declare const batch: z.ZodObject<{
6394
6433
  mutation_code: "deferring_group_membership_update";
6395
6434
  variant: "removing" | "adding";
6396
6435
  acs_access_group_id: string;
6436
+ } | {
6437
+ message: string;
6438
+ created_at: string;
6439
+ mutation_code: "updating_credential_assignment";
6440
+ from: {
6441
+ acs_credential_id: string | null;
6442
+ };
6443
+ to: {
6444
+ acs_credential_id: string | null;
6445
+ };
6397
6446
  })[] | undefined;
6398
6447
  user_identity_id?: string | undefined;
6399
- external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
6448
+ external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | "avigilon_alta_user" | undefined;
6400
6449
  external_type_display_name?: string | undefined;
6401
6450
  access_schedule?: {
6402
6451
  starts_at: string;
@@ -6531,9 +6580,19 @@ export declare const batch: z.ZodObject<{
6531
6580
  mutation_code: "deferring_group_membership_update";
6532
6581
  variant: "removing" | "adding";
6533
6582
  acs_access_group_id: string;
6583
+ } | {
6584
+ message: string;
6585
+ created_at: string;
6586
+ mutation_code: "updating_credential_assignment";
6587
+ from: {
6588
+ acs_credential_id: string | null;
6589
+ };
6590
+ to: {
6591
+ acs_credential_id: string | null;
6592
+ };
6534
6593
  })[] | undefined;
6535
6594
  user_identity_id?: string | undefined;
6536
- external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
6595
+ external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | "avigilon_alta_user" | undefined;
6537
6596
  external_type_display_name?: string | undefined;
6538
6597
  access_schedule?: {
6539
6598
  starts_at: string;
@@ -7088,7 +7147,7 @@ export declare const batch: z.ZodObject<{
7088
7147
  is_issued: z.ZodOptional<z.ZodBoolean>;
7089
7148
  issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7090
7149
  access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
7091
- external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card", "salto_ks_tag"]>>;
7150
+ external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card", "salto_ks_tag", "avigilon_alta_credential"]>>;
7092
7151
  external_type_display_name: z.ZodOptional<z.ZodString>;
7093
7152
  created_at: z.ZodString;
7094
7153
  workspace_id: z.ZodString;
@@ -7302,7 +7361,7 @@ export declare const batch: z.ZodObject<{
7302
7361
  issued_at?: string | null | undefined;
7303
7362
  is_issued?: boolean | undefined;
7304
7363
  acs_user_id?: string | undefined;
7305
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
7364
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
7306
7365
  external_type_display_name?: string | undefined;
7307
7366
  acs_credential_pool_id?: string | undefined;
7308
7367
  parent_acs_credential_id?: string | undefined;
@@ -7374,7 +7433,7 @@ export declare const batch: z.ZodObject<{
7374
7433
  issued_at?: string | null | undefined;
7375
7434
  is_issued?: boolean | undefined;
7376
7435
  acs_user_id?: string | undefined;
7377
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
7436
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
7378
7437
  external_type_display_name?: string | undefined;
7379
7438
  acs_credential_pool_id?: string | undefined;
7380
7439
  parent_acs_credential_id?: string | undefined;
@@ -7398,7 +7457,7 @@ export declare const batch: z.ZodObject<{
7398
7457
  is_issued: z.ZodOptional<z.ZodBoolean>;
7399
7458
  issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7400
7459
  access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
7401
- external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card", "salto_ks_tag"]>>;
7460
+ external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card", "salto_ks_tag", "avigilon_alta_credential"]>>;
7402
7461
  external_type_display_name: z.ZodOptional<z.ZodString>;
7403
7462
  created_at: z.ZodString;
7404
7463
  workspace_id: z.ZodString;
@@ -7612,7 +7671,7 @@ export declare const batch: z.ZodObject<{
7612
7671
  issued_at?: string | null | undefined;
7613
7672
  is_issued?: boolean | undefined;
7614
7673
  acs_user_id?: string | undefined;
7615
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
7674
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
7616
7675
  external_type_display_name?: string | undefined;
7617
7676
  acs_credential_pool_id?: string | undefined;
7618
7677
  parent_acs_credential_id?: string | undefined;
@@ -7684,7 +7743,7 @@ export declare const batch: z.ZodObject<{
7684
7743
  issued_at?: string | null | undefined;
7685
7744
  is_issued?: boolean | undefined;
7686
7745
  acs_user_id?: string | undefined;
7687
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
7746
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
7688
7747
  external_type_display_name?: string | undefined;
7689
7748
  acs_credential_pool_id?: string | undefined;
7690
7749
  parent_acs_credential_id?: string | undefined;
@@ -7993,7 +8052,7 @@ export declare const batch: z.ZodObject<{
7993
8052
  is_issued: z.ZodOptional<z.ZodBoolean>;
7994
8053
  issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7995
8054
  access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
7996
- external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card", "salto_ks_tag"]>>;
8055
+ external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card", "salto_ks_tag", "avigilon_alta_credential"]>>;
7997
8056
  external_type_display_name: z.ZodOptional<z.ZodString>;
7998
8057
  created_at: z.ZodString;
7999
8058
  workspace_id: z.ZodString;
@@ -8207,7 +8266,7 @@ export declare const batch: z.ZodObject<{
8207
8266
  issued_at?: string | null | undefined;
8208
8267
  is_issued?: boolean | undefined;
8209
8268
  acs_user_id?: string | undefined;
8210
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
8269
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
8211
8270
  external_type_display_name?: string | undefined;
8212
8271
  acs_credential_pool_id?: string | undefined;
8213
8272
  parent_acs_credential_id?: string | undefined;
@@ -8279,7 +8338,7 @@ export declare const batch: z.ZodObject<{
8279
8338
  issued_at?: string | null | undefined;
8280
8339
  is_issued?: boolean | undefined;
8281
8340
  acs_user_id?: string | undefined;
8282
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
8341
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
8283
8342
  external_type_display_name?: string | undefined;
8284
8343
  acs_credential_pool_id?: string | undefined;
8285
8344
  parent_acs_credential_id?: string | undefined;
@@ -8302,7 +8361,7 @@ export declare const batch: z.ZodObject<{
8302
8361
  is_issued: z.ZodOptional<z.ZodBoolean>;
8303
8362
  issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8304
8363
  access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
8305
- external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card", "salto_ks_tag"]>>;
8364
+ external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card", "salto_ks_tag", "avigilon_alta_credential"]>>;
8306
8365
  external_type_display_name: z.ZodOptional<z.ZodString>;
8307
8366
  created_at: z.ZodString;
8308
8367
  workspace_id: z.ZodString;
@@ -8516,7 +8575,7 @@ export declare const batch: z.ZodObject<{
8516
8575
  issued_at?: string | null | undefined;
8517
8576
  is_issued?: boolean | undefined;
8518
8577
  acs_user_id?: string | undefined;
8519
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
8578
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
8520
8579
  external_type_display_name?: string | undefined;
8521
8580
  acs_credential_pool_id?: string | undefined;
8522
8581
  parent_acs_credential_id?: string | undefined;
@@ -8588,7 +8647,7 @@ export declare const batch: z.ZodObject<{
8588
8647
  issued_at?: string | null | undefined;
8589
8648
  is_issued?: boolean | undefined;
8590
8649
  acs_user_id?: string | undefined;
8591
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
8650
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
8592
8651
  external_type_display_name?: string | undefined;
8593
8652
  acs_credential_pool_id?: string | undefined;
8594
8653
  parent_acs_credential_id?: string | undefined;
@@ -8697,7 +8756,7 @@ export declare const batch: z.ZodObject<{
8697
8756
  issued_at?: string | null | undefined;
8698
8757
  is_issued?: boolean | undefined;
8699
8758
  acs_user_id?: string | undefined;
8700
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
8759
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
8701
8760
  external_type_display_name?: string | undefined;
8702
8761
  acs_credential_pool_id?: string | undefined;
8703
8762
  parent_acs_credential_id?: string | undefined;
@@ -8769,7 +8828,7 @@ export declare const batch: z.ZodObject<{
8769
8828
  issued_at?: string | null | undefined;
8770
8829
  is_issued?: boolean | undefined;
8771
8830
  acs_user_id?: string | undefined;
8772
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
8831
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
8773
8832
  external_type_display_name?: string | undefined;
8774
8833
  acs_credential_pool_id?: string | undefined;
8775
8834
  parent_acs_credential_id?: string | undefined;
@@ -8868,7 +8927,7 @@ export declare const batch: z.ZodObject<{
8868
8927
  issued_at?: string | null | undefined;
8869
8928
  is_issued?: boolean | undefined;
8870
8929
  acs_user_id?: string | undefined;
8871
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
8930
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
8872
8931
  external_type_display_name?: string | undefined;
8873
8932
  acs_credential_pool_id?: string | undefined;
8874
8933
  parent_acs_credential_id?: string | undefined;
@@ -8940,7 +8999,7 @@ export declare const batch: z.ZodObject<{
8940
8999
  issued_at?: string | null | undefined;
8941
9000
  is_issued?: boolean | undefined;
8942
9001
  acs_user_id?: string | undefined;
8943
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
9002
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
8944
9003
  external_type_display_name?: string | undefined;
8945
9004
  acs_credential_pool_id?: string | undefined;
8946
9005
  parent_acs_credential_id?: string | undefined;
@@ -9044,7 +9103,7 @@ export declare const batch: z.ZodObject<{
9044
9103
  issued_at?: string | null | undefined;
9045
9104
  is_issued?: boolean | undefined;
9046
9105
  acs_user_id?: string | undefined;
9047
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
9106
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
9048
9107
  external_type_display_name?: string | undefined;
9049
9108
  acs_credential_pool_id?: string | undefined;
9050
9109
  parent_acs_credential_id?: string | undefined;
@@ -9116,7 +9175,7 @@ export declare const batch: z.ZodObject<{
9116
9175
  issued_at?: string | null | undefined;
9117
9176
  is_issued?: boolean | undefined;
9118
9177
  acs_user_id?: string | undefined;
9119
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
9178
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
9120
9179
  external_type_display_name?: string | undefined;
9121
9180
  acs_credential_pool_id?: string | undefined;
9122
9181
  parent_acs_credential_id?: string | undefined;
@@ -9221,7 +9280,7 @@ export declare const batch: z.ZodObject<{
9221
9280
  issued_at?: string | null | undefined;
9222
9281
  is_issued?: boolean | undefined;
9223
9282
  acs_user_id?: string | undefined;
9224
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
9283
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
9225
9284
  external_type_display_name?: string | undefined;
9226
9285
  acs_credential_pool_id?: string | undefined;
9227
9286
  parent_acs_credential_id?: string | undefined;
@@ -9293,7 +9352,7 @@ export declare const batch: z.ZodObject<{
9293
9352
  issued_at?: string | null | undefined;
9294
9353
  is_issued?: boolean | undefined;
9295
9354
  acs_user_id?: string | undefined;
9296
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
9355
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
9297
9356
  external_type_display_name?: string | undefined;
9298
9357
  acs_credential_pool_id?: string | undefined;
9299
9358
  parent_acs_credential_id?: string | undefined;
@@ -9456,7 +9515,7 @@ export declare const batch: z.ZodObject<{
9456
9515
  is_issued: z.ZodOptional<z.ZodBoolean>;
9457
9516
  issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
9458
9517
  access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
9459
- external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card", "salto_ks_tag"]>>;
9518
+ external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card", "salto_ks_tag", "avigilon_alta_credential"]>>;
9460
9519
  external_type_display_name: z.ZodOptional<z.ZodString>;
9461
9520
  created_at: z.ZodString;
9462
9521
  workspace_id: z.ZodString;
@@ -9670,7 +9729,7 @@ export declare const batch: z.ZodObject<{
9670
9729
  issued_at?: string | null | undefined;
9671
9730
  is_issued?: boolean | undefined;
9672
9731
  acs_user_id?: string | undefined;
9673
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
9732
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
9674
9733
  external_type_display_name?: string | undefined;
9675
9734
  acs_credential_pool_id?: string | undefined;
9676
9735
  parent_acs_credential_id?: string | undefined;
@@ -9742,7 +9801,7 @@ export declare const batch: z.ZodObject<{
9742
9801
  issued_at?: string | null | undefined;
9743
9802
  is_issued?: boolean | undefined;
9744
9803
  acs_user_id?: string | undefined;
9745
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
9804
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
9746
9805
  external_type_display_name?: string | undefined;
9747
9806
  acs_credential_pool_id?: string | undefined;
9748
9807
  parent_acs_credential_id?: string | undefined;
@@ -9765,7 +9824,7 @@ export declare const batch: z.ZodObject<{
9765
9824
  is_issued: z.ZodOptional<z.ZodBoolean>;
9766
9825
  issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
9767
9826
  access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
9768
- external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card", "salto_ks_tag"]>>;
9827
+ external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card", "salto_ks_tag", "avigilon_alta_credential"]>>;
9769
9828
  external_type_display_name: z.ZodOptional<z.ZodString>;
9770
9829
  created_at: z.ZodString;
9771
9830
  workspace_id: z.ZodString;
@@ -9979,7 +10038,7 @@ export declare const batch: z.ZodObject<{
9979
10038
  issued_at?: string | null | undefined;
9980
10039
  is_issued?: boolean | undefined;
9981
10040
  acs_user_id?: string | undefined;
9982
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
10041
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
9983
10042
  external_type_display_name?: string | undefined;
9984
10043
  acs_credential_pool_id?: string | undefined;
9985
10044
  parent_acs_credential_id?: string | undefined;
@@ -10051,7 +10110,7 @@ export declare const batch: z.ZodObject<{
10051
10110
  issued_at?: string | null | undefined;
10052
10111
  is_issued?: boolean | undefined;
10053
10112
  acs_user_id?: string | undefined;
10054
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
10113
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
10055
10114
  external_type_display_name?: string | undefined;
10056
10115
  acs_credential_pool_id?: string | undefined;
10057
10116
  parent_acs_credential_id?: string | undefined;
@@ -10128,7 +10187,7 @@ export declare const batch: z.ZodObject<{
10128
10187
  issued_at?: string | null | undefined;
10129
10188
  is_issued?: boolean | undefined;
10130
10189
  acs_user_id?: string | undefined;
10131
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
10190
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
10132
10191
  external_type_display_name?: string | undefined;
10133
10192
  acs_credential_pool_id?: string | undefined;
10134
10193
  parent_acs_credential_id?: string | undefined;
@@ -10200,7 +10259,7 @@ export declare const batch: z.ZodObject<{
10200
10259
  issued_at?: string | null | undefined;
10201
10260
  is_issued?: boolean | undefined;
10202
10261
  acs_user_id?: string | undefined;
10203
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
10262
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
10204
10263
  external_type_display_name?: string | undefined;
10205
10264
  acs_credential_pool_id?: string | undefined;
10206
10265
  parent_acs_credential_id?: string | undefined;
@@ -10278,7 +10337,7 @@ export declare const batch: z.ZodObject<{
10278
10337
  issued_at?: string | null | undefined;
10279
10338
  is_issued?: boolean | undefined;
10280
10339
  acs_user_id?: string | undefined;
10281
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
10340
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
10282
10341
  external_type_display_name?: string | undefined;
10283
10342
  acs_credential_pool_id?: string | undefined;
10284
10343
  parent_acs_credential_id?: string | undefined;
@@ -10350,7 +10409,7 @@ export declare const batch: z.ZodObject<{
10350
10409
  issued_at?: string | null | undefined;
10351
10410
  is_issued?: boolean | undefined;
10352
10411
  acs_user_id?: string | undefined;
10353
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
10412
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
10354
10413
  external_type_display_name?: string | undefined;
10355
10414
  acs_credential_pool_id?: string | undefined;
10356
10415
  parent_acs_credential_id?: string | undefined;
@@ -11743,7 +11802,7 @@ export declare const batch: z.ZodObject<{
11743
11802
  workspace_id: z.ZodString;
11744
11803
  created_at: z.ZodString;
11745
11804
  display_name: z.ZodString;
11746
- external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user", "dormakaba_community_user", "salto_space_user"]>>;
11805
+ external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user", "dormakaba_community_user", "salto_space_user", "avigilon_alta_user"]>>;
11747
11806
  external_type_display_name: z.ZodOptional<z.ZodString>;
11748
11807
  is_suspended: z.ZodOptional<z.ZodBoolean>;
11749
11808
  access_schedule: z.ZodOptional<z.ZodObject<{
@@ -12139,6 +12198,45 @@ export declare const batch: z.ZodObject<{
12139
12198
  mutation_code: "deferring_group_membership_update";
12140
12199
  variant: "removing" | "adding";
12141
12200
  acs_access_group_id: string;
12201
+ }>, z.ZodObject<{
12202
+ created_at: z.ZodString;
12203
+ message: z.ZodString;
12204
+ } & {
12205
+ mutation_code: z.ZodLiteral<"updating_credential_assignment">;
12206
+ from: z.ZodObject<{
12207
+ acs_credential_id: z.ZodNullable<z.ZodString>;
12208
+ }, "strip", z.ZodTypeAny, {
12209
+ acs_credential_id: string | null;
12210
+ }, {
12211
+ acs_credential_id: string | null;
12212
+ }>;
12213
+ to: z.ZodObject<{
12214
+ acs_credential_id: z.ZodNullable<z.ZodString>;
12215
+ }, "strip", z.ZodTypeAny, {
12216
+ acs_credential_id: string | null;
12217
+ }, {
12218
+ acs_credential_id: string | null;
12219
+ }>;
12220
+ }, "strip", z.ZodTypeAny, {
12221
+ message: string;
12222
+ created_at: string;
12223
+ mutation_code: "updating_credential_assignment";
12224
+ from: {
12225
+ acs_credential_id: string | null;
12226
+ };
12227
+ to: {
12228
+ acs_credential_id: string | null;
12229
+ };
12230
+ }, {
12231
+ message: string;
12232
+ created_at: string;
12233
+ mutation_code: "updating_credential_assignment";
12234
+ from: {
12235
+ acs_credential_id: string | null;
12236
+ };
12237
+ to: {
12238
+ acs_credential_id: string | null;
12239
+ };
12142
12240
  }>]>, "many">>;
12143
12241
  last_successful_sync_at: z.ZodNullable<z.ZodString>;
12144
12242
  connected_account_id: z.ZodString;
@@ -12276,9 +12374,19 @@ export declare const batch: z.ZodObject<{
12276
12374
  mutation_code: "deferring_group_membership_update";
12277
12375
  variant: "removing" | "adding";
12278
12376
  acs_access_group_id: string;
12377
+ } | {
12378
+ message: string;
12379
+ created_at: string;
12380
+ mutation_code: "updating_credential_assignment";
12381
+ from: {
12382
+ acs_credential_id: string | null;
12383
+ };
12384
+ to: {
12385
+ acs_credential_id: string | null;
12386
+ };
12279
12387
  })[] | undefined;
12280
12388
  user_identity_id?: string | undefined;
12281
- external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
12389
+ external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | "avigilon_alta_user" | undefined;
12282
12390
  external_type_display_name?: string | undefined;
12283
12391
  access_schedule?: {
12284
12392
  starts_at: string;
@@ -12413,9 +12521,19 @@ export declare const batch: z.ZodObject<{
12413
12521
  mutation_code: "deferring_group_membership_update";
12414
12522
  variant: "removing" | "adding";
12415
12523
  acs_access_group_id: string;
12524
+ } | {
12525
+ message: string;
12526
+ created_at: string;
12527
+ mutation_code: "updating_credential_assignment";
12528
+ from: {
12529
+ acs_credential_id: string | null;
12530
+ };
12531
+ to: {
12532
+ acs_credential_id: string | null;
12533
+ };
12416
12534
  })[] | undefined;
12417
12535
  user_identity_id?: string | undefined;
12418
- external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
12536
+ external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | "avigilon_alta_user" | undefined;
12419
12537
  external_type_display_name?: string | undefined;
12420
12538
  access_schedule?: {
12421
12539
  starts_at: string;
@@ -27167,9 +27285,19 @@ export declare const batch: z.ZodObject<{
27167
27285
  mutation_code: "deferring_group_membership_update";
27168
27286
  variant: "removing" | "adding";
27169
27287
  acs_access_group_id: string;
27288
+ } | {
27289
+ message: string;
27290
+ created_at: string;
27291
+ mutation_code: "updating_credential_assignment";
27292
+ from: {
27293
+ acs_credential_id: string | null;
27294
+ };
27295
+ to: {
27296
+ acs_credential_id: string | null;
27297
+ };
27170
27298
  })[] | undefined;
27171
27299
  user_identity_id?: string | undefined;
27172
- external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
27300
+ external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | "avigilon_alta_user" | undefined;
27173
27301
  external_type_display_name?: string | undefined;
27174
27302
  access_schedule?: {
27175
27303
  starts_at: string;
@@ -27358,7 +27486,7 @@ export declare const batch: z.ZodObject<{
27358
27486
  issued_at?: string | null | undefined;
27359
27487
  is_issued?: boolean | undefined;
27360
27488
  acs_user_id?: string | undefined;
27361
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
27489
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
27362
27490
  external_type_display_name?: string | undefined;
27363
27491
  acs_credential_pool_id?: string | undefined;
27364
27492
  parent_acs_credential_id?: string | undefined;
@@ -27431,7 +27559,7 @@ export declare const batch: z.ZodObject<{
27431
27559
  issued_at?: string | null | undefined;
27432
27560
  is_issued?: boolean | undefined;
27433
27561
  acs_user_id?: string | undefined;
27434
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
27562
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
27435
27563
  external_type_display_name?: string | undefined;
27436
27564
  acs_credential_pool_id?: string | undefined;
27437
27565
  parent_acs_credential_id?: string | undefined;
@@ -27711,7 +27839,7 @@ export declare const batch: z.ZodObject<{
27711
27839
  issued_at?: string | null | undefined;
27712
27840
  is_issued?: boolean | undefined;
27713
27841
  acs_user_id?: string | undefined;
27714
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
27842
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
27715
27843
  external_type_display_name?: string | undefined;
27716
27844
  acs_credential_pool_id?: string | undefined;
27717
27845
  parent_acs_credential_id?: string | undefined;
@@ -27783,7 +27911,7 @@ export declare const batch: z.ZodObject<{
27783
27911
  issued_at?: string | null | undefined;
27784
27912
  is_issued?: boolean | undefined;
27785
27913
  acs_user_id?: string | undefined;
27786
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
27914
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
27787
27915
  external_type_display_name?: string | undefined;
27788
27916
  acs_credential_pool_id?: string | undefined;
27789
27917
  parent_acs_credential_id?: string | undefined;
@@ -27994,7 +28122,7 @@ export declare const batch: z.ZodObject<{
27994
28122
  issued_at?: string | null | undefined;
27995
28123
  is_issued?: boolean | undefined;
27996
28124
  acs_user_id?: string | undefined;
27997
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
28125
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
27998
28126
  external_type_display_name?: string | undefined;
27999
28127
  acs_credential_pool_id?: string | undefined;
28000
28128
  parent_acs_credential_id?: string | undefined;
@@ -28066,7 +28194,7 @@ export declare const batch: z.ZodObject<{
28066
28194
  issued_at?: string | null | undefined;
28067
28195
  is_issued?: boolean | undefined;
28068
28196
  acs_user_id?: string | undefined;
28069
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
28197
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
28070
28198
  external_type_display_name?: string | undefined;
28071
28199
  acs_credential_pool_id?: string | undefined;
28072
28200
  parent_acs_credential_id?: string | undefined;
@@ -28340,9 +28468,19 @@ export declare const batch: z.ZodObject<{
28340
28468
  mutation_code: "deferring_group_membership_update";
28341
28469
  variant: "removing" | "adding";
28342
28470
  acs_access_group_id: string;
28471
+ } | {
28472
+ message: string;
28473
+ created_at: string;
28474
+ mutation_code: "updating_credential_assignment";
28475
+ from: {
28476
+ acs_credential_id: string | null;
28477
+ };
28478
+ to: {
28479
+ acs_credential_id: string | null;
28480
+ };
28343
28481
  })[] | undefined;
28344
28482
  user_identity_id?: string | undefined;
28345
- external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
28483
+ external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | "avigilon_alta_user" | undefined;
28346
28484
  external_type_display_name?: string | undefined;
28347
28485
  access_schedule?: {
28348
28486
  starts_at: string;
@@ -32147,9 +32285,19 @@ export declare const batch: z.ZodObject<{
32147
32285
  mutation_code: "deferring_group_membership_update";
32148
32286
  variant: "removing" | "adding";
32149
32287
  acs_access_group_id: string;
32288
+ } | {
32289
+ message: string;
32290
+ created_at: string;
32291
+ mutation_code: "updating_credential_assignment";
32292
+ from: {
32293
+ acs_credential_id: string | null;
32294
+ };
32295
+ to: {
32296
+ acs_credential_id: string | null;
32297
+ };
32150
32298
  })[] | undefined;
32151
32299
  user_identity_id?: string | undefined;
32152
- external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
32300
+ external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | "avigilon_alta_user" | undefined;
32153
32301
  external_type_display_name?: string | undefined;
32154
32302
  access_schedule?: {
32155
32303
  starts_at: string;
@@ -32338,7 +32486,7 @@ export declare const batch: z.ZodObject<{
32338
32486
  issued_at?: string | null | undefined;
32339
32487
  is_issued?: boolean | undefined;
32340
32488
  acs_user_id?: string | undefined;
32341
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
32489
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
32342
32490
  external_type_display_name?: string | undefined;
32343
32491
  acs_credential_pool_id?: string | undefined;
32344
32492
  parent_acs_credential_id?: string | undefined;
@@ -32411,7 +32559,7 @@ export declare const batch: z.ZodObject<{
32411
32559
  issued_at?: string | null | undefined;
32412
32560
  is_issued?: boolean | undefined;
32413
32561
  acs_user_id?: string | undefined;
32414
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
32562
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
32415
32563
  external_type_display_name?: string | undefined;
32416
32564
  acs_credential_pool_id?: string | undefined;
32417
32565
  parent_acs_credential_id?: string | undefined;
@@ -32691,7 +32839,7 @@ export declare const batch: z.ZodObject<{
32691
32839
  issued_at?: string | null | undefined;
32692
32840
  is_issued?: boolean | undefined;
32693
32841
  acs_user_id?: string | undefined;
32694
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
32842
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
32695
32843
  external_type_display_name?: string | undefined;
32696
32844
  acs_credential_pool_id?: string | undefined;
32697
32845
  parent_acs_credential_id?: string | undefined;
@@ -32763,7 +32911,7 @@ export declare const batch: z.ZodObject<{
32763
32911
  issued_at?: string | null | undefined;
32764
32912
  is_issued?: boolean | undefined;
32765
32913
  acs_user_id?: string | undefined;
32766
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
32914
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
32767
32915
  external_type_display_name?: string | undefined;
32768
32916
  acs_credential_pool_id?: string | undefined;
32769
32917
  parent_acs_credential_id?: string | undefined;
@@ -32974,7 +33122,7 @@ export declare const batch: z.ZodObject<{
32974
33122
  issued_at?: string | null | undefined;
32975
33123
  is_issued?: boolean | undefined;
32976
33124
  acs_user_id?: string | undefined;
32977
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
33125
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
32978
33126
  external_type_display_name?: string | undefined;
32979
33127
  acs_credential_pool_id?: string | undefined;
32980
33128
  parent_acs_credential_id?: string | undefined;
@@ -33046,7 +33194,7 @@ export declare const batch: z.ZodObject<{
33046
33194
  issued_at?: string | null | undefined;
33047
33195
  is_issued?: boolean | undefined;
33048
33196
  acs_user_id?: string | undefined;
33049
- external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | undefined;
33197
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
33050
33198
  external_type_display_name?: string | undefined;
33051
33199
  acs_credential_pool_id?: string | undefined;
33052
33200
  parent_acs_credential_id?: string | undefined;
@@ -33320,9 +33468,19 @@ export declare const batch: z.ZodObject<{
33320
33468
  mutation_code: "deferring_group_membership_update";
33321
33469
  variant: "removing" | "adding";
33322
33470
  acs_access_group_id: string;
33471
+ } | {
33472
+ message: string;
33473
+ created_at: string;
33474
+ mutation_code: "updating_credential_assignment";
33475
+ from: {
33476
+ acs_credential_id: string | null;
33477
+ };
33478
+ to: {
33479
+ acs_credential_id: string | null;
33480
+ };
33323
33481
  })[] | undefined;
33324
33482
  user_identity_id?: string | undefined;
33325
- external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
33483
+ external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | "avigilon_alta_user" | undefined;
33326
33484
  external_type_display_name?: string | undefined;
33327
33485
  access_schedule?: {
33328
33486
  starts_at: string;