@seamapi/types 1.117.0 → 1.118.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 +1 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +4 -0
- package/lib/seam/connect/openapi.d.ts +3 -0
- package/lib/seam/connect/openapi.js +1 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +1 -0
- package/src/lib/seam/connect/route-types.ts +1 -0
|
@@ -1643,6 +1643,7 @@ export interface Routes {
|
|
|
1643
1643
|
user_identifier_key?: string | undefined;
|
|
1644
1644
|
connect_webview_id?: string | undefined;
|
|
1645
1645
|
without_user_identifier_key?: boolean | undefined;
|
|
1646
|
+
user_identity_id?: string | undefined;
|
|
1646
1647
|
};
|
|
1647
1648
|
formData: {};
|
|
1648
1649
|
jsonResponse: {
|
package/package.json
CHANGED
|
@@ -6864,6 +6864,7 @@ export default {
|
|
|
6864
6864
|
client_session_id: { type: 'string' },
|
|
6865
6865
|
connect_webview_id: { type: 'string' },
|
|
6866
6866
|
user_identifier_key: { type: 'string' },
|
|
6867
|
+
user_identity_id: { type: 'string' },
|
|
6867
6868
|
without_user_identifier_key: { type: 'boolean' },
|
|
6868
6869
|
},
|
|
6869
6870
|
type: 'object',
|
|
@@ -1838,6 +1838,7 @@ export interface Routes {
|
|
|
1838
1838
|
user_identifier_key?: string | undefined
|
|
1839
1839
|
connect_webview_id?: string | undefined
|
|
1840
1840
|
without_user_identifier_key?: boolean | undefined
|
|
1841
|
+
user_identity_id?: string | undefined
|
|
1841
1842
|
}
|
|
1842
1843
|
formData: {}
|
|
1843
1844
|
jsonResponse: {
|