@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
package/dist/connect.d.cts
CHANGED
|
@@ -4465,13 +4465,8 @@ declare const _default: {
|
|
|
4465
4465
|
type: string;
|
|
4466
4466
|
};
|
|
4467
4467
|
code: {
|
|
4468
|
-
|
|
4469
|
-
|
|
4470
|
-
type: string;
|
|
4471
|
-
} | {
|
|
4472
|
-
pattern?: never;
|
|
4473
|
-
type?: never;
|
|
4474
|
-
})[];
|
|
4468
|
+
pattern: string;
|
|
4469
|
+
type: string;
|
|
4475
4470
|
};
|
|
4476
4471
|
};
|
|
4477
4472
|
required: string[];
|
|
@@ -9265,6 +9260,9 @@ declare const _default: {
|
|
|
9265
9260
|
format: string;
|
|
9266
9261
|
type: string;
|
|
9267
9262
|
};
|
|
9263
|
+
user_identifier_key: {
|
|
9264
|
+
type: string;
|
|
9265
|
+
};
|
|
9268
9266
|
};
|
|
9269
9267
|
required: string[];
|
|
9270
9268
|
type: string;
|
|
@@ -11237,7 +11235,7 @@ interface Routes {
|
|
|
11237
11235
|
jsonBody: {};
|
|
11238
11236
|
commonParams: {
|
|
11239
11237
|
acs_user_id: string;
|
|
11240
|
-
code
|
|
11238
|
+
code: string;
|
|
11241
11239
|
};
|
|
11242
11240
|
formData: {};
|
|
11243
11241
|
jsonResponse: {
|
|
@@ -13252,6 +13250,7 @@ interface Routes {
|
|
|
13252
13250
|
jsonBody: {};
|
|
13253
13251
|
commonParams: {
|
|
13254
13252
|
device_id: string;
|
|
13253
|
+
user_identifier_key?: string | undefined;
|
|
13255
13254
|
};
|
|
13256
13255
|
formData: {};
|
|
13257
13256
|
jsonResponse: {
|
|
@@ -4414,13 +4414,8 @@ declare const _default: {
|
|
|
4414
4414
|
type: string;
|
|
4415
4415
|
};
|
|
4416
4416
|
code: {
|
|
4417
|
-
|
|
4418
|
-
|
|
4419
|
-
type: string;
|
|
4420
|
-
} | {
|
|
4421
|
-
pattern?: never;
|
|
4422
|
-
type?: never;
|
|
4423
|
-
})[];
|
|
4417
|
+
pattern: string;
|
|
4418
|
+
type: string;
|
|
4424
4419
|
};
|
|
4425
4420
|
};
|
|
4426
4421
|
required: string[];
|
|
@@ -9214,6 +9209,9 @@ declare const _default: {
|
|
|
9214
9209
|
format: string;
|
|
9215
9210
|
type: string;
|
|
9216
9211
|
};
|
|
9212
|
+
user_identifier_key: {
|
|
9213
|
+
type: string;
|
|
9214
|
+
};
|
|
9217
9215
|
};
|
|
9218
9216
|
required: string[];
|
|
9219
9217
|
type: string;
|
|
@@ -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
|
},
|