@seamapi/types 1.441.2 → 1.442.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 +41 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +52 -1
- package/dist/index.cjs +41 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +46 -0
- package/lib/seam/connect/openapi.js +41 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +6 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +45 -0
- package/src/lib/seam/connect/route-types.ts +6 -1
|
@@ -21642,6 +21642,7 @@ declare const _default: {
|
|
|
21642
21642
|
nullable?: never;
|
|
21643
21643
|
'x-deprecated'?: never;
|
|
21644
21644
|
items?: never;
|
|
21645
|
+
minLength?: never;
|
|
21645
21646
|
};
|
|
21646
21647
|
} | {
|
|
21647
21648
|
in: string;
|
|
@@ -21654,6 +21655,7 @@ declare const _default: {
|
|
|
21654
21655
|
'x-deprecated': string;
|
|
21655
21656
|
description?: never;
|
|
21656
21657
|
items?: never;
|
|
21658
|
+
minLength?: never;
|
|
21657
21659
|
};
|
|
21658
21660
|
} | {
|
|
21659
21661
|
in: string;
|
|
@@ -21669,6 +21671,20 @@ declare const _default: {
|
|
|
21669
21671
|
deprecated?: never;
|
|
21670
21672
|
nullable?: never;
|
|
21671
21673
|
'x-deprecated'?: never;
|
|
21674
|
+
minLength?: never;
|
|
21675
|
+
};
|
|
21676
|
+
} | {
|
|
21677
|
+
in: string;
|
|
21678
|
+
name: string;
|
|
21679
|
+
schema: {
|
|
21680
|
+
description: string;
|
|
21681
|
+
minLength: number;
|
|
21682
|
+
type: string;
|
|
21683
|
+
format?: never;
|
|
21684
|
+
deprecated?: never;
|
|
21685
|
+
nullable?: never;
|
|
21686
|
+
'x-deprecated'?: never;
|
|
21687
|
+
items?: never;
|
|
21672
21688
|
};
|
|
21673
21689
|
})[];
|
|
21674
21690
|
responses: {
|
|
@@ -21778,6 +21794,11 @@ declare const _default: {
|
|
|
21778
21794
|
type: string;
|
|
21779
21795
|
'x-deprecated': string;
|
|
21780
21796
|
};
|
|
21797
|
+
search: {
|
|
21798
|
+
description: string;
|
|
21799
|
+
minLength: number;
|
|
21800
|
+
type: string;
|
|
21801
|
+
};
|
|
21781
21802
|
space_id: {
|
|
21782
21803
|
description: string;
|
|
21783
21804
|
format: string;
|
|
@@ -38028,6 +38049,15 @@ declare const _default: {
|
|
|
38028
38049
|
get: {
|
|
38029
38050
|
description: string;
|
|
38030
38051
|
operationId: string;
|
|
38052
|
+
parameters: {
|
|
38053
|
+
in: string;
|
|
38054
|
+
name: string;
|
|
38055
|
+
schema: {
|
|
38056
|
+
description: string;
|
|
38057
|
+
minLength: number;
|
|
38058
|
+
type: string;
|
|
38059
|
+
};
|
|
38060
|
+
}[];
|
|
38031
38061
|
responses: {
|
|
38032
38062
|
200: {
|
|
38033
38063
|
content: {
|
|
@@ -38083,6 +38113,22 @@ declare const _default: {
|
|
|
38083
38113
|
post: {
|
|
38084
38114
|
description: string;
|
|
38085
38115
|
operationId: string;
|
|
38116
|
+
requestBody: {
|
|
38117
|
+
content: {
|
|
38118
|
+
'application/json': {
|
|
38119
|
+
schema: {
|
|
38120
|
+
properties: {
|
|
38121
|
+
search: {
|
|
38122
|
+
description: string;
|
|
38123
|
+
minLength: number;
|
|
38124
|
+
type: string;
|
|
38125
|
+
};
|
|
38126
|
+
};
|
|
38127
|
+
type: string;
|
|
38128
|
+
};
|
|
38129
|
+
};
|
|
38130
|
+
};
|
|
38131
|
+
};
|
|
38086
38132
|
responses: {
|
|
38087
38133
|
200: {
|
|
38088
38134
|
content: {
|
|
@@ -29106,6 +29106,15 @@ export default {
|
|
|
29106
29106
|
type: 'array',
|
|
29107
29107
|
},
|
|
29108
29108
|
},
|
|
29109
|
+
{
|
|
29110
|
+
in: 'query',
|
|
29111
|
+
name: 'search',
|
|
29112
|
+
schema: {
|
|
29113
|
+
description: 'String for which to search. Filters returned entrances to include all records that satisfy a partial match using `display_name`.',
|
|
29114
|
+
minLength: 1,
|
|
29115
|
+
type: 'string',
|
|
29116
|
+
},
|
|
29117
|
+
},
|
|
29109
29118
|
],
|
|
29110
29119
|
responses: {
|
|
29111
29120
|
200: {
|
|
@@ -29188,6 +29197,11 @@ export default {
|
|
|
29188
29197
|
type: 'string',
|
|
29189
29198
|
'x-deprecated': 'Use `space_id`.',
|
|
29190
29199
|
},
|
|
29200
|
+
search: {
|
|
29201
|
+
description: 'String for which to search. Filters returned entrances to include all records that satisfy a partial match using `display_name`.',
|
|
29202
|
+
minLength: 1,
|
|
29203
|
+
type: 'string',
|
|
29204
|
+
},
|
|
29191
29205
|
space_id: {
|
|
29192
29206
|
description: 'ID of the space for which you want to list entrances.',
|
|
29193
29207
|
format: 'uuid',
|
|
@@ -43501,6 +43515,17 @@ export default {
|
|
|
43501
43515
|
get: {
|
|
43502
43516
|
description: 'Returns a list of all spaces.',
|
|
43503
43517
|
operationId: 'spacesListGet',
|
|
43518
|
+
parameters: [
|
|
43519
|
+
{
|
|
43520
|
+
in: 'query',
|
|
43521
|
+
name: 'search',
|
|
43522
|
+
schema: {
|
|
43523
|
+
description: 'String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.',
|
|
43524
|
+
minLength: 1,
|
|
43525
|
+
type: 'string',
|
|
43526
|
+
},
|
|
43527
|
+
},
|
|
43528
|
+
],
|
|
43504
43529
|
responses: {
|
|
43505
43530
|
200: {
|
|
43506
43531
|
content: {
|
|
@@ -43540,6 +43565,22 @@ export default {
|
|
|
43540
43565
|
post: {
|
|
43541
43566
|
description: 'Returns a list of all spaces.',
|
|
43542
43567
|
operationId: 'spacesListPost',
|
|
43568
|
+
requestBody: {
|
|
43569
|
+
content: {
|
|
43570
|
+
'application/json': {
|
|
43571
|
+
schema: {
|
|
43572
|
+
properties: {
|
|
43573
|
+
search: {
|
|
43574
|
+
description: 'String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.',
|
|
43575
|
+
minLength: 1,
|
|
43576
|
+
type: 'string',
|
|
43577
|
+
},
|
|
43578
|
+
},
|
|
43579
|
+
type: 'object',
|
|
43580
|
+
},
|
|
43581
|
+
},
|
|
43582
|
+
},
|
|
43583
|
+
},
|
|
43543
43584
|
responses: {
|
|
43544
43585
|
200: {
|
|
43545
43586
|
content: {
|