@seamapi/types 1.511.0 → 1.512.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 +14 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +8 -3
- package/dist/index.cjs +14 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +5 -2
- package/lib/seam/connect/openapi.js +14 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +14 -2
- package/src/lib/seam/connect/route-types.ts +3 -1
|
@@ -38658,7 +38658,9 @@ export type Routes = {
|
|
|
38658
38658
|
jsonBody: {};
|
|
38659
38659
|
commonParams: {
|
|
38660
38660
|
/** ID of the instant key to get. */
|
|
38661
|
-
instant_key_id
|
|
38661
|
+
instant_key_id?: string | undefined;
|
|
38662
|
+
/** URL of the instant key to get. */
|
|
38663
|
+
instant_key_url?: string | undefined;
|
|
38662
38664
|
};
|
|
38663
38665
|
formData: {};
|
|
38664
38666
|
jsonResponse: {
|
package/package.json
CHANGED
|
@@ -43584,13 +43584,21 @@ export default {
|
|
|
43584
43584
|
{
|
|
43585
43585
|
in: 'query',
|
|
43586
43586
|
name: 'instant_key_id',
|
|
43587
|
-
required: true,
|
|
43588
43587
|
schema: {
|
|
43589
43588
|
description: 'ID of the instant key to get.',
|
|
43590
43589
|
format: 'uuid',
|
|
43591
43590
|
type: 'string',
|
|
43592
43591
|
},
|
|
43593
43592
|
},
|
|
43593
|
+
{
|
|
43594
|
+
in: 'query',
|
|
43595
|
+
name: 'instant_key_url',
|
|
43596
|
+
schema: {
|
|
43597
|
+
description: 'URL of the instant key to get.',
|
|
43598
|
+
format: 'uri',
|
|
43599
|
+
type: 'string',
|
|
43600
|
+
},
|
|
43601
|
+
},
|
|
43594
43602
|
],
|
|
43595
43603
|
responses: {
|
|
43596
43604
|
200: {
|
|
@@ -43638,8 +43646,12 @@ export default {
|
|
|
43638
43646
|
format: 'uuid',
|
|
43639
43647
|
type: 'string',
|
|
43640
43648
|
},
|
|
43649
|
+
instant_key_url: {
|
|
43650
|
+
description: 'URL of the instant key to get.',
|
|
43651
|
+
format: 'uri',
|
|
43652
|
+
type: 'string',
|
|
43653
|
+
},
|
|
43641
43654
|
},
|
|
43642
|
-
required: ['instant_key_id'],
|
|
43643
43655
|
type: 'object',
|
|
43644
43656
|
},
|
|
43645
43657
|
},
|
|
@@ -45653,7 +45653,9 @@ export type Routes = {
|
|
|
45653
45653
|
jsonBody: {}
|
|
45654
45654
|
commonParams: {
|
|
45655
45655
|
/** ID of the instant key to get. */
|
|
45656
|
-
instant_key_id
|
|
45656
|
+
instant_key_id?: string | undefined
|
|
45657
|
+
/** URL of the instant key to get. */
|
|
45658
|
+
instant_key_url?: string | undefined
|
|
45657
45659
|
}
|
|
45658
45660
|
formData: {}
|
|
45659
45661
|
jsonResponse: {
|