@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
|
@@ -1157,7 +1157,8 @@ export interface Routes {
|
|
|
1157
1157
|
queryParams: {};
|
|
1158
1158
|
jsonBody: {};
|
|
1159
1159
|
commonParams: {
|
|
1160
|
-
|
|
1160
|
+
user_identity_id?: string | undefined;
|
|
1161
|
+
acs_system_id?: string | undefined;
|
|
1161
1162
|
};
|
|
1162
1163
|
formData: {};
|
|
1163
1164
|
jsonResponse: {
|
package/package.json
CHANGED
|
@@ -6317,8 +6317,8 @@ export default {
|
|
|
6317
6317
|
schema: {
|
|
6318
6318
|
properties: {
|
|
6319
6319
|
acs_system_id: { format: 'uuid', type: 'string' },
|
|
6320
|
+
user_identity_id: { format: 'uuid', type: 'string' },
|
|
6320
6321
|
},
|
|
6321
|
-
required: ['acs_system_id'],
|
|
6322
6322
|
type: 'object',
|
|
6323
6323
|
},
|
|
6324
6324
|
},
|