@seamapi/types 1.814.0 → 1.815.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 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +26 -0
- package/dist/index.cjs +14 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +24 -0
- package/lib/seam/connect/openapi.js +14 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +16 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
|
@@ -39350,6 +39350,7 @@ declare const _default: {
|
|
|
39350
39350
|
description: string;
|
|
39351
39351
|
type: string;
|
|
39352
39352
|
additionalProperties?: never;
|
|
39353
|
+
format?: never;
|
|
39353
39354
|
minLength?: never;
|
|
39354
39355
|
default?: never;
|
|
39355
39356
|
exclusiveMinimum?: never;
|
|
@@ -39367,6 +39368,21 @@ declare const _default: {
|
|
|
39367
39368
|
};
|
|
39368
39369
|
description: string;
|
|
39369
39370
|
type: string;
|
|
39371
|
+
format?: never;
|
|
39372
|
+
minLength?: never;
|
|
39373
|
+
default?: never;
|
|
39374
|
+
exclusiveMinimum?: never;
|
|
39375
|
+
minimum?: never;
|
|
39376
|
+
nullable?: never;
|
|
39377
|
+
};
|
|
39378
|
+
} | {
|
|
39379
|
+
in: string;
|
|
39380
|
+
name: string;
|
|
39381
|
+
schema: {
|
|
39382
|
+
description: string;
|
|
39383
|
+
format: string;
|
|
39384
|
+
type: string;
|
|
39385
|
+
additionalProperties?: never;
|
|
39370
39386
|
minLength?: never;
|
|
39371
39387
|
default?: never;
|
|
39372
39388
|
exclusiveMinimum?: never;
|
|
@@ -39381,6 +39397,7 @@ declare const _default: {
|
|
|
39381
39397
|
minLength: number;
|
|
39382
39398
|
type: string;
|
|
39383
39399
|
additionalProperties?: never;
|
|
39400
|
+
format?: never;
|
|
39384
39401
|
default?: never;
|
|
39385
39402
|
exclusiveMinimum?: never;
|
|
39386
39403
|
minimum?: never;
|
|
@@ -39396,6 +39413,7 @@ declare const _default: {
|
|
|
39396
39413
|
minimum: number;
|
|
39397
39414
|
type: string;
|
|
39398
39415
|
additionalProperties?: never;
|
|
39416
|
+
format?: never;
|
|
39399
39417
|
minLength?: never;
|
|
39400
39418
|
nullable?: never;
|
|
39401
39419
|
};
|
|
@@ -39407,6 +39425,7 @@ declare const _default: {
|
|
|
39407
39425
|
nullable: boolean;
|
|
39408
39426
|
type: string;
|
|
39409
39427
|
additionalProperties?: never;
|
|
39428
|
+
format?: never;
|
|
39410
39429
|
minLength?: never;
|
|
39411
39430
|
default?: never;
|
|
39412
39431
|
exclusiveMinimum?: never;
|
|
@@ -39513,6 +39532,11 @@ declare const _default: {
|
|
|
39513
39532
|
minLength: number;
|
|
39514
39533
|
type: string;
|
|
39515
39534
|
};
|
|
39535
|
+
space_id: {
|
|
39536
|
+
description: string;
|
|
39537
|
+
format: string;
|
|
39538
|
+
type: string;
|
|
39539
|
+
};
|
|
39516
39540
|
user_identifier_key: {
|
|
39517
39541
|
description: string;
|
|
39518
39542
|
type: string;
|
|
@@ -45531,6 +45531,15 @@ export default {
|
|
|
45531
45531
|
type: 'string',
|
|
45532
45532
|
},
|
|
45533
45533
|
},
|
|
45534
|
+
{
|
|
45535
|
+
in: 'query',
|
|
45536
|
+
name: 'space_id',
|
|
45537
|
+
schema: {
|
|
45538
|
+
description: 'ID of the space by which you want to filter connected accounts.',
|
|
45539
|
+
format: 'uuid',
|
|
45540
|
+
type: 'string',
|
|
45541
|
+
},
|
|
45542
|
+
},
|
|
45534
45543
|
{
|
|
45535
45544
|
in: 'query',
|
|
45536
45545
|
name: 'search',
|
|
@@ -45634,6 +45643,11 @@ export default {
|
|
|
45634
45643
|
minLength: 1,
|
|
45635
45644
|
type: 'string',
|
|
45636
45645
|
},
|
|
45646
|
+
space_id: {
|
|
45647
|
+
description: 'ID of the space by which you want to filter connected accounts.',
|
|
45648
|
+
format: 'uuid',
|
|
45649
|
+
type: 'string',
|
|
45650
|
+
},
|
|
45637
45651
|
user_identifier_key: {
|
|
45638
45652
|
description: 'Your user ID for the user by which you want to filter connected accounts.',
|
|
45639
45653
|
type: 'string',
|