@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.
- package/dist/connect.cjs +3 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +8 -0
- package/lib/seam/connect/openapi.d.ts +6 -0
- package/lib/seam/connect/openapi.js +2 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/lib/seam/connect/unstable/models/acs/system.d.ts +3 -0
- package/lib/seam/connect/unstable/models/acs/system.js +1 -0
- package/lib/seam/connect/unstable/models/acs/system.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +2 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
- package/src/lib/seam/connect/unstable/models/acs/system.ts +1 -0
package/dist/connect.d.cts
CHANGED
|
@@ -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
|
};
|
|
@@ -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
|
},
|