@seamapi/types 1.18.0 → 1.18.1
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 +6 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +7 -8
- package/lib/seam/connect/openapi.d.ts +5 -7
- package/lib/seam/connect/openapi.js +6 -3
- 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 +6 -3
- package/src/lib/seam/connect/route-types.ts +2 -1
|
@@ -598,7 +598,7 @@ export interface Routes {
|
|
|
598
598
|
jsonBody: {};
|
|
599
599
|
commonParams: {
|
|
600
600
|
acs_user_id: string;
|
|
601
|
-
code
|
|
601
|
+
code: string;
|
|
602
602
|
};
|
|
603
603
|
formData: {};
|
|
604
604
|
jsonResponse: {
|
|
@@ -2613,6 +2613,7 @@ export interface Routes {
|
|
|
2613
2613
|
jsonBody: {};
|
|
2614
2614
|
commonParams: {
|
|
2615
2615
|
device_id: string;
|
|
2616
|
+
user_identifier_key?: string | undefined;
|
|
2616
2617
|
};
|
|
2617
2618
|
formData: {};
|
|
2618
2619
|
jsonResponse: {
|
package/package.json
CHANGED
|
@@ -3031,9 +3031,9 @@ export default {
|
|
|
3031
3031
|
schema: {
|
|
3032
3032
|
properties: {
|
|
3033
3033
|
acs_user_id: { format: 'uuid', type: 'string' },
|
|
3034
|
-
code: {
|
|
3034
|
+
code: { pattern: '^\\d+$', type: 'string' },
|
|
3035
3035
|
},
|
|
3036
|
-
required: ['acs_user_id'],
|
|
3036
|
+
required: ['acs_user_id', 'code'],
|
|
3037
3037
|
type: 'object',
|
|
3038
3038
|
},
|
|
3039
3039
|
},
|
|
@@ -6660,7 +6660,10 @@ export default {
|
|
|
6660
6660
|
content: {
|
|
6661
6661
|
'application/json': {
|
|
6662
6662
|
schema: {
|
|
6663
|
-
properties: {
|
|
6663
|
+
properties: {
|
|
6664
|
+
device_id: { format: 'uuid', type: 'string' },
|
|
6665
|
+
user_identifier_key: { type: 'string' },
|
|
6666
|
+
},
|
|
6664
6667
|
required: ['device_id'],
|
|
6665
6668
|
type: 'object',
|
|
6666
6669
|
},
|
|
@@ -612,7 +612,7 @@ export interface Routes {
|
|
|
612
612
|
jsonBody: {}
|
|
613
613
|
commonParams: {
|
|
614
614
|
acs_user_id: string
|
|
615
|
-
code
|
|
615
|
+
code: string
|
|
616
616
|
}
|
|
617
617
|
formData: {}
|
|
618
618
|
jsonResponse: {
|
|
@@ -3516,6 +3516,7 @@ export interface Routes {
|
|
|
3516
3516
|
jsonBody: {}
|
|
3517
3517
|
commonParams: {
|
|
3518
3518
|
device_id: string
|
|
3519
|
+
user_identifier_key?: string | undefined
|
|
3519
3520
|
}
|
|
3520
3521
|
formData: {}
|
|
3521
3522
|
jsonResponse: {
|