@seamapi/types 1.26.2 → 1.27.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.
@@ -175,6 +175,12 @@ declare const _default: {
175
175
  format: string;
176
176
  type: string;
177
177
  };
178
+ connected_account_ids: {
179
+ items: {
180
+ type: string;
181
+ };
182
+ type: string;
183
+ };
178
184
  created_at: {
179
185
  format: string;
180
186
  type: string;
@@ -12238,6 +12244,7 @@ interface Routes {
12238
12244
  system_type_display_name: string;
12239
12245
  name: string;
12240
12246
  created_at: string;
12247
+ connected_account_ids: string[];
12241
12248
  };
12242
12249
  };
12243
12250
  };
@@ -12261,6 +12268,7 @@ interface Routes {
12261
12268
  system_type_display_name: string;
12262
12269
  name: string;
12263
12270
  created_at: string;
12271
+ connected_account_ids: string[];
12264
12272
  }>;
12265
12273
  };
12266
12274
  };
@@ -124,6 +124,12 @@ declare const _default: {
124
124
  format: string;
125
125
  type: string;
126
126
  };
127
+ connected_account_ids: {
128
+ items: {
129
+ type: string;
130
+ };
131
+ type: string;
132
+ };
127
133
  created_at: {
128
134
  format: string;
129
135
  type: string;
@@ -93,6 +93,7 @@ export default {
93
93
  acs_system: {
94
94
  properties: {
95
95
  acs_system_id: { format: 'uuid', type: 'string' },
96
+ connected_account_ids: { items: { type: 'string' }, type: 'array' },
96
97
  created_at: { format: 'date-time', type: 'string' },
97
98
  external_type: { enum: ['pti_site', 'alta_org'], type: 'string' },
98
99
  external_type_display_name: { type: 'string' },
@@ -115,6 +116,7 @@ export default {
115
116
  'system_type_display_name',
116
117
  'name',
117
118
  'created_at',
119
+ 'connected_account_ids',
118
120
  ],
119
121
  type: 'object',
120
122
  },