@seamapi/types 1.289.1 → 1.290.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.
@@ -6862,6 +6862,10 @@ export interface Routes {
6862
6862
  /**
6863
6863
  * @deprecated Use `external_type_display_name`. */
6864
6864
  system_type_display_name?: string | undefined;
6865
+ location: {
6866
+ /** Time zone in which the `acs_system` is located. */
6867
+ time_zone: string | null;
6868
+ };
6865
6869
  /** Name of the `acs_system`. */
6866
6870
  name: string;
6867
6871
  /** Date and time at which the `acs_system` was created. */
@@ -6967,6 +6971,10 @@ export interface Routes {
6967
6971
  /**
6968
6972
  * @deprecated Use `external_type_display_name`. */
6969
6973
  system_type_display_name?: string | undefined;
6974
+ location: {
6975
+ /** Time zone in which the `acs_system` is located. */
6976
+ time_zone: string | null;
6977
+ };
6970
6978
  /** Name of the `acs_system`. */
6971
6979
  name: string;
6972
6980
  /** Date and time at which the `acs_system` was created. */
@@ -7072,6 +7080,10 @@ export interface Routes {
7072
7080
  /**
7073
7081
  * @deprecated Use `external_type_display_name`. */
7074
7082
  system_type_display_name?: string | undefined;
7083
+ location: {
7084
+ /** Time zone in which the `acs_system` is located. */
7085
+ time_zone: string | null;
7086
+ };
7075
7087
  /** Name of the `acs_system`. */
7076
7088
  name: string;
7077
7089
  /** Date and time at which the `acs_system` was created. */
@@ -25093,6 +25105,10 @@ export interface Routes {
25093
25105
  /**
25094
25106
  * @deprecated Use `external_type_display_name`. */
25095
25107
  system_type_display_name?: string | undefined;
25108
+ location: {
25109
+ /** Time zone in which the `acs_system` is located. */
25110
+ time_zone: string | null;
25111
+ };
25096
25112
  /** Name of the `acs_system`. */
25097
25113
  name: string;
25098
25114
  /** Date and time at which the `acs_system` was created. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.289.1",
3
+ "version": "1.290.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -27,6 +27,13 @@ export const acs_system_capability_flags = z.object({
27
27
  ),
28
28
  })
29
29
 
30
+ export const location = z.object({
31
+ time_zone: z
32
+ .string()
33
+ .nullable()
34
+ .describe('Time zone in which the `acs_system` is located.'),
35
+ })
36
+
30
37
  // If changed, update seam.acs_system.external_type generated column
31
38
  export const acs_system_external_type = z.enum([
32
39
  'pti_site',
@@ -219,6 +226,7 @@ export const acs_system = z
219
226
  deprecated: Use \`external_type_display_name\`.
220
227
  ---
221
228
  `),
229
+ location,
222
230
  name: z.string().describe('Name of the `acs_system`.'),
223
231
  created_at: z
224
232
  .string()
@@ -809,6 +809,17 @@ export default {
809
809
  'Indicates if the `acs_system` is a credential manager.',
810
810
  type: 'boolean',
811
811
  },
812
+ location: {
813
+ properties: {
814
+ time_zone: {
815
+ description: 'Time zone in which the `acs_system` is located.',
816
+ nullable: true,
817
+ type: 'string',
818
+ },
819
+ },
820
+ required: ['time_zone'],
821
+ type: 'object',
822
+ },
812
823
  name: { description: 'Name of the `acs_system`.', type: 'string' },
813
824
  system_type: {
814
825
  deprecated: true,
@@ -893,6 +904,7 @@ export default {
893
904
  required: [
894
905
  'acs_system_id',
895
906
  'is_credential_manager',
907
+ 'location',
896
908
  'name',
897
909
  'created_at',
898
910
  'workspace_id',
@@ -8109,6 +8109,10 @@ export interface Routes {
8109
8109
  /**
8110
8110
  * @deprecated Use `external_type_display_name`. */
8111
8111
  system_type_display_name?: string | undefined
8112
+ location: {
8113
+ /** Time zone in which the `acs_system` is located. */
8114
+ time_zone: string | null
8115
+ }
8112
8116
  /** Name of the `acs_system`. */
8113
8117
  name: string
8114
8118
  /** Date and time at which the `acs_system` was created. */
@@ -8252,6 +8256,10 @@ export interface Routes {
8252
8256
  /**
8253
8257
  * @deprecated Use `external_type_display_name`. */
8254
8258
  system_type_display_name?: string | undefined
8259
+ location: {
8260
+ /** Time zone in which the `acs_system` is located. */
8261
+ time_zone: string | null
8262
+ }
8255
8263
  /** Name of the `acs_system`. */
8256
8264
  name: string
8257
8265
  /** Date and time at which the `acs_system` was created. */
@@ -8395,6 +8403,10 @@ export interface Routes {
8395
8403
  /**
8396
8404
  * @deprecated Use `external_type_display_name`. */
8397
8405
  system_type_display_name?: string | undefined
8406
+ location: {
8407
+ /** Time zone in which the `acs_system` is located. */
8408
+ time_zone: string | null
8409
+ }
8398
8410
  /** Name of the `acs_system`. */
8399
8411
  name: string
8400
8412
  /** Date and time at which the `acs_system` was created. */
@@ -31726,6 +31738,10 @@ export interface Routes {
31726
31738
  /**
31727
31739
  * @deprecated Use `external_type_display_name`. */
31728
31740
  system_type_display_name?: string | undefined
31741
+ location: {
31742
+ /** Time zone in which the `acs_system` is located. */
31743
+ time_zone: string | null
31744
+ }
31729
31745
  /** Name of the `acs_system`. */
31730
31746
  name: string
31731
31747
  /** Date and time at which the `acs_system` was created. */