@seamapi/types 1.393.0 → 1.394.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.
@@ -9090,6 +9090,8 @@ export interface Routes {
9090
9090
  acs_access_group_id: string | null;
9091
9091
  };
9092
9092
  }> | undefined;
9093
+ /** The last time an internal sync job completed for this ACS user. */
9094
+ last_successful_sync_at: string | null;
9093
9095
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
9094
9096
  full_name?: string | undefined;
9095
9097
  /**
@@ -15068,6 +15070,8 @@ export interface Routes {
15068
15070
  acs_access_group_id: string | null;
15069
15071
  };
15070
15072
  }> | undefined;
15073
+ /** The last time an internal sync job completed for this ACS user. */
15074
+ last_successful_sync_at: string | null;
15071
15075
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
15072
15076
  full_name?: string | undefined;
15073
15077
  /**
@@ -15278,6 +15282,8 @@ export interface Routes {
15278
15282
  acs_access_group_id: string | null;
15279
15283
  };
15280
15284
  }> | undefined;
15285
+ /** The last time an internal sync job completed for this ACS user. */
15286
+ last_successful_sync_at: string | null;
15281
15287
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
15282
15288
  full_name?: string | undefined;
15283
15289
  /**
@@ -15484,6 +15490,8 @@ export interface Routes {
15484
15490
  acs_access_group_id: string | null;
15485
15491
  };
15486
15492
  }> | undefined;
15493
+ /** The last time an internal sync job completed for this ACS user. */
15494
+ last_successful_sync_at: string | null;
15487
15495
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
15488
15496
  full_name?: string | undefined;
15489
15497
  /**
@@ -15799,6 +15807,8 @@ export interface Routes {
15799
15807
  acs_access_group_id: string | null;
15800
15808
  };
15801
15809
  }> | undefined;
15810
+ /** The last time an internal sync job completed for this ACS user. */
15811
+ last_successful_sync_at: string | null;
15802
15812
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
15803
15813
  full_name?: string | undefined;
15804
15814
  /**
@@ -15995,6 +16005,8 @@ export interface Routes {
15995
16005
  acs_access_group_id: string | null;
15996
16006
  };
15997
16007
  }> | undefined;
16008
+ /** The last time an internal sync job completed for this ACS user. */
16009
+ last_successful_sync_at: string | null;
15998
16010
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
15999
16011
  full_name?: string | undefined;
16000
16012
  /**
@@ -53513,6 +53525,8 @@ export interface Routes {
53513
53525
  acs_access_group_id: string | null;
53514
53526
  };
53515
53527
  }> | undefined;
53528
+ /** The last time an internal sync job completed for this ACS user. */
53529
+ last_successful_sync_at: string | null;
53516
53530
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
53517
53531
  full_name?: string | undefined;
53518
53532
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.393.0",
3
+ "version": "1.394.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -92,7 +92,7 @@
92
92
  "zod": "^3.24.0"
93
93
  },
94
94
  "devDependencies": {
95
- "@seamapi/blueprint": "^0.40.0",
95
+ "@seamapi/blueprint": "^0.41.0",
96
96
  "@types/node": "^20.8.10",
97
97
  "concurrently": "^8.2.0",
98
98
  "del-cli": "^5.0.0",
@@ -337,6 +337,12 @@ const common_acs_user = z
337
337
  .describe(
338
338
  'Pending mutations associated with the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). Seam is in the process of pushing these mutations to the integrated access system.',
339
339
  ),
340
+ last_successful_sync_at: z.string().datetime().nullable().describe(`
341
+ ---
342
+ undocumented: Only used internally.
343
+ ---
344
+ The last time an internal sync job completed for this ACS user.
345
+ `),
340
346
  })
341
347
  .merge(user_fields)
342
348
 
@@ -2954,6 +2954,14 @@ export default {
2954
2954
  'Indicates whether the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users).',
2955
2955
  type: 'boolean',
2956
2956
  },
2957
+ last_successful_sync_at: {
2958
+ description:
2959
+ 'The last time an internal sync job completed for this ACS user.',
2960
+ format: 'date-time',
2961
+ nullable: true,
2962
+ type: 'string',
2963
+ 'x-undocumented': 'Only used internally.',
2964
+ },
2957
2965
  pending_mutations: {
2958
2966
  description:
2959
2967
  'Pending mutations associated with the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). Seam is in the process of pushing these mutations to the integrated access system.',
@@ -3348,6 +3356,7 @@ export default {
3348
3356
  'display_name',
3349
3357
  'warnings',
3350
3358
  'errors',
3359
+ 'last_successful_sync_at',
3351
3360
  'is_managed',
3352
3361
  ],
3353
3362
  type: 'object',
@@ -17304,6 +17313,14 @@ export default {
17304
17313
  'Indicates whether the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users).',
17305
17314
  type: 'boolean',
17306
17315
  },
17316
+ last_successful_sync_at: {
17317
+ description:
17318
+ 'The last time an internal sync job completed for this ACS user.',
17319
+ format: 'date-time',
17320
+ nullable: true,
17321
+ type: 'string',
17322
+ 'x-undocumented': 'Only used internally.',
17323
+ },
17307
17324
  pending_mutations: {
17308
17325
  description:
17309
17326
  'Pending mutations associated with the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). Seam is in the process of pushing these mutations to the integrated access system.',
@@ -17698,6 +17715,7 @@ export default {
17698
17715
  'display_name',
17699
17716
  'warnings',
17700
17717
  'errors',
17718
+ 'last_successful_sync_at',
17701
17719
  'is_managed',
17702
17720
  ],
17703
17721
  type: 'object',
@@ -10403,6 +10403,8 @@ export interface Routes {
10403
10403
  }
10404
10404
  >
10405
10405
  | undefined
10406
+ /** The last time an internal sync job completed for this ACS user. */
10407
+ last_successful_sync_at: string | null
10406
10408
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
10407
10409
  full_name?: string | undefined
10408
10410
  /**
@@ -17501,6 +17503,8 @@ export interface Routes {
17501
17503
  }
17502
17504
  >
17503
17505
  | undefined
17506
+ /** The last time an internal sync job completed for this ACS user. */
17507
+ last_successful_sync_at: string | null
17504
17508
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
17505
17509
  full_name?: string | undefined
17506
17510
  /**
@@ -17744,6 +17748,8 @@ export interface Routes {
17744
17748
  }
17745
17749
  >
17746
17750
  | undefined
17751
+ /** The last time an internal sync job completed for this ACS user. */
17752
+ last_successful_sync_at: string | null
17747
17753
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
17748
17754
  full_name?: string | undefined
17749
17755
  /**
@@ -17983,6 +17989,8 @@ export interface Routes {
17983
17989
  }
17984
17990
  >
17985
17991
  | undefined
17992
+ /** The last time an internal sync job completed for this ACS user. */
17993
+ last_successful_sync_at: string | null
17986
17994
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
17987
17995
  full_name?: string | undefined
17988
17996
  /**
@@ -18354,6 +18362,8 @@ export interface Routes {
18354
18362
  }
18355
18363
  >
18356
18364
  | undefined
18365
+ /** The last time an internal sync job completed for this ACS user. */
18366
+ last_successful_sync_at: string | null
18357
18367
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
18358
18368
  full_name?: string | undefined
18359
18369
  /**
@@ -18583,6 +18593,8 @@ export interface Routes {
18583
18593
  }
18584
18594
  >
18585
18595
  | undefined
18596
+ /** The last time an internal sync job completed for this ACS user. */
18597
+ last_successful_sync_at: string | null
18586
18598
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
18587
18599
  full_name?: string | undefined
18588
18600
  /**
@@ -64028,6 +64040,8 @@ export interface Routes {
64028
64040
  }
64029
64041
  >
64030
64042
  | undefined
64043
+ /** The last time an internal sync job completed for this ACS user. */
64044
+ last_successful_sync_at: string | null
64031
64045
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
64032
64046
  full_name?: string | undefined
64033
64047
  /**