@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
package/dist/connect.d.cts
CHANGED
|
@@ -9517,6 +9517,9 @@ declare const _default: {
|
|
|
9517
9517
|
user_identifier_key: {
|
|
9518
9518
|
type: string;
|
|
9519
9519
|
};
|
|
9520
|
+
user_identity_id: {
|
|
9521
|
+
type: string;
|
|
9522
|
+
};
|
|
9520
9523
|
without_user_identifier_key: {
|
|
9521
9524
|
type: string;
|
|
9522
9525
|
};
|
|
@@ -18687,6 +18690,7 @@ interface Routes {
|
|
|
18687
18690
|
user_identifier_key?: string | undefined;
|
|
18688
18691
|
connect_webview_id?: string | undefined;
|
|
18689
18692
|
without_user_identifier_key?: boolean | undefined;
|
|
18693
|
+
user_identity_id?: string | undefined;
|
|
18690
18694
|
};
|
|
18691
18695
|
formData: {};
|
|
18692
18696
|
jsonResponse: {
|
|
@@ -6795,6 +6795,7 @@ export default {
|
|
|
6795
6795
|
client_session_id: { type: 'string' },
|
|
6796
6796
|
connect_webview_id: { type: 'string' },
|
|
6797
6797
|
user_identifier_key: { type: 'string' },
|
|
6798
|
+
user_identity_id: { type: 'string' },
|
|
6798
6799
|
without_user_identifier_key: { type: 'boolean' },
|
|
6799
6800
|
},
|
|
6800
6801
|
type: 'object',
|