@seamapi/types 1.78.0 → 1.79.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 +2 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +6 -2
- package/lib/seam/connect/openapi.d.ts +4 -1
- package/lib/seam/connect/openapi.js +1 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +1 -1
- package/src/lib/seam/connect/route-types.ts +2 -1
package/dist/connect.d.cts
CHANGED
|
@@ -8422,8 +8422,11 @@ declare const _default: {
|
|
|
8422
8422
|
format: string;
|
|
8423
8423
|
type: string;
|
|
8424
8424
|
};
|
|
8425
|
+
user_identity_id: {
|
|
8426
|
+
format: string;
|
|
8427
|
+
type: string;
|
|
8428
|
+
};
|
|
8425
8429
|
};
|
|
8426
|
-
required: string[];
|
|
8427
8430
|
type: string;
|
|
8428
8431
|
};
|
|
8429
8432
|
};
|
|
@@ -17567,7 +17570,8 @@ interface Routes {
|
|
|
17567
17570
|
queryParams: {};
|
|
17568
17571
|
jsonBody: {};
|
|
17569
17572
|
commonParams: {
|
|
17570
|
-
|
|
17573
|
+
user_identity_id?: string | undefined;
|
|
17574
|
+
acs_system_id?: string | undefined;
|
|
17571
17575
|
};
|
|
17572
17576
|
formData: {};
|
|
17573
17577
|
jsonResponse: {
|
|
@@ -6231,8 +6231,8 @@ export default {
|
|
|
6231
6231
|
schema: {
|
|
6232
6232
|
properties: {
|
|
6233
6233
|
acs_system_id: { format: 'uuid', type: 'string' },
|
|
6234
|
+
user_identity_id: { format: 'uuid', type: 'string' },
|
|
6234
6235
|
},
|
|
6235
|
-
required: ['acs_system_id'],
|
|
6236
6236
|
type: 'object',
|
|
6237
6237
|
},
|
|
6238
6238
|
},
|