@seamapi/types 1.890.0 → 1.891.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 +60 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +8 -0
- package/dist/index.cjs +60 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +60 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +68 -0
- package/src/lib/seam/connect/route-types.ts +8 -0
|
@@ -80480,6 +80480,10 @@ export type Routes = {
|
|
|
80480
80480
|
connected_account_id?: string | undefined;
|
|
80481
80481
|
/** Filter spaces by space_key. */
|
|
80482
80482
|
space_key?: string | undefined;
|
|
80483
|
+
/** Filter spaces to only include those whose parent space has the specified `parent_space_id`. */
|
|
80484
|
+
parent_space_id?: string | undefined;
|
|
80485
|
+
/** Filter spaces to only include those whose parent space has the specified `parent_space_key`. */
|
|
80486
|
+
parent_space_key?: string | undefined;
|
|
80483
80487
|
};
|
|
80484
80488
|
formData: {};
|
|
80485
80489
|
jsonResponse: {
|
|
@@ -83731,6 +83735,10 @@ export type Routes = {
|
|
|
83731
83735
|
connected_account_id?: string | undefined;
|
|
83732
83736
|
/** Filter spaces by space_key. */
|
|
83733
83737
|
space_key?: string | undefined;
|
|
83738
|
+
/** Filter spaces to only include those whose parent space has the specified `parent_space_id`. */
|
|
83739
|
+
parent_space_id?: string | undefined;
|
|
83740
|
+
/** Filter spaces to only include those whose parent space has the specified `parent_space_key`. */
|
|
83741
|
+
parent_space_key?: string | undefined;
|
|
83734
83742
|
/** Maximum number of records to return per page. */
|
|
83735
83743
|
limit?: number;
|
|
83736
83744
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
package/package.json
CHANGED
|
@@ -75125,6 +75125,27 @@ const openapi: OpenAPISpec = {
|
|
|
75125
75125
|
type: 'string',
|
|
75126
75126
|
},
|
|
75127
75127
|
},
|
|
75128
|
+
{
|
|
75129
|
+
in: 'query',
|
|
75130
|
+
name: 'parent_space_id',
|
|
75131
|
+
schema: {
|
|
75132
|
+
description:
|
|
75133
|
+
'Filter spaces to only include those whose parent space has the specified `parent_space_id`.',
|
|
75134
|
+
format: 'uuid',
|
|
75135
|
+
type: 'string',
|
|
75136
|
+
'x-undocumented': 'Only used internally.',
|
|
75137
|
+
},
|
|
75138
|
+
},
|
|
75139
|
+
{
|
|
75140
|
+
in: 'query',
|
|
75141
|
+
name: 'parent_space_key',
|
|
75142
|
+
schema: {
|
|
75143
|
+
description:
|
|
75144
|
+
'Filter spaces to only include those whose parent space has the specified `parent_space_key`.',
|
|
75145
|
+
type: 'string',
|
|
75146
|
+
'x-undocumented': 'Only used internally.',
|
|
75147
|
+
},
|
|
75148
|
+
},
|
|
75128
75149
|
],
|
|
75129
75150
|
responses: {
|
|
75130
75151
|
200: {
|
|
@@ -75178,6 +75199,19 @@ const openapi: OpenAPISpec = {
|
|
|
75178
75199
|
'x-draft': 'Needs review.',
|
|
75179
75200
|
'x-undocumented': 'Only used internally.',
|
|
75180
75201
|
},
|
|
75202
|
+
parent_space_id: {
|
|
75203
|
+
description:
|
|
75204
|
+
'Filter spaces to only include those whose parent space has the specified `parent_space_id`.',
|
|
75205
|
+
format: 'uuid',
|
|
75206
|
+
type: 'string',
|
|
75207
|
+
'x-undocumented': 'Only used internally.',
|
|
75208
|
+
},
|
|
75209
|
+
parent_space_key: {
|
|
75210
|
+
description:
|
|
75211
|
+
'Filter spaces to only include those whose parent space has the specified `parent_space_key`.',
|
|
75212
|
+
type: 'string',
|
|
75213
|
+
'x-undocumented': 'Only used internally.',
|
|
75214
|
+
},
|
|
75181
75215
|
search: {
|
|
75182
75216
|
description:
|
|
75183
75217
|
'String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.',
|
|
@@ -77813,6 +77847,27 @@ const openapi: OpenAPISpec = {
|
|
|
77813
77847
|
type: 'string',
|
|
77814
77848
|
},
|
|
77815
77849
|
},
|
|
77850
|
+
{
|
|
77851
|
+
in: 'query',
|
|
77852
|
+
name: 'parent_space_id',
|
|
77853
|
+
schema: {
|
|
77854
|
+
description:
|
|
77855
|
+
'Filter spaces to only include those whose parent space has the specified `parent_space_id`.',
|
|
77856
|
+
format: 'uuid',
|
|
77857
|
+
type: 'string',
|
|
77858
|
+
'x-undocumented': 'Only used internally.',
|
|
77859
|
+
},
|
|
77860
|
+
},
|
|
77861
|
+
{
|
|
77862
|
+
in: 'query',
|
|
77863
|
+
name: 'parent_space_key',
|
|
77864
|
+
schema: {
|
|
77865
|
+
description:
|
|
77866
|
+
'Filter spaces to only include those whose parent space has the specified `parent_space_key`.',
|
|
77867
|
+
type: 'string',
|
|
77868
|
+
'x-undocumented': 'Only used internally.',
|
|
77869
|
+
},
|
|
77870
|
+
},
|
|
77816
77871
|
{
|
|
77817
77872
|
in: 'query',
|
|
77818
77873
|
name: 'limit',
|
|
@@ -77905,6 +77960,19 @@ const openapi: OpenAPISpec = {
|
|
|
77905
77960
|
nullable: true,
|
|
77906
77961
|
type: 'string',
|
|
77907
77962
|
},
|
|
77963
|
+
parent_space_id: {
|
|
77964
|
+
description:
|
|
77965
|
+
'Filter spaces to only include those whose parent space has the specified `parent_space_id`.',
|
|
77966
|
+
format: 'uuid',
|
|
77967
|
+
type: 'string',
|
|
77968
|
+
'x-undocumented': 'Only used internally.',
|
|
77969
|
+
},
|
|
77970
|
+
parent_space_key: {
|
|
77971
|
+
description:
|
|
77972
|
+
'Filter spaces to only include those whose parent space has the specified `parent_space_key`.',
|
|
77973
|
+
type: 'string',
|
|
77974
|
+
'x-undocumented': 'Only used internally.',
|
|
77975
|
+
},
|
|
77908
77976
|
search: {
|
|
77909
77977
|
description:
|
|
77910
77978
|
'String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`, `space_key`, or `customer_key`.',
|
|
@@ -96147,6 +96147,10 @@ export type Routes = {
|
|
|
96147
96147
|
connected_account_id?: string | undefined
|
|
96148
96148
|
/** Filter spaces by space_key. */
|
|
96149
96149
|
space_key?: string | undefined
|
|
96150
|
+
/** Filter spaces to only include those whose parent space has the specified `parent_space_id`. */
|
|
96151
|
+
parent_space_id?: string | undefined
|
|
96152
|
+
/** Filter spaces to only include those whose parent space has the specified `parent_space_key`. */
|
|
96153
|
+
parent_space_key?: string | undefined
|
|
96150
96154
|
}
|
|
96151
96155
|
formData: {}
|
|
96152
96156
|
jsonResponse: {
|
|
@@ -100041,6 +100045,10 @@ export type Routes = {
|
|
|
100041
100045
|
connected_account_id?: string | undefined
|
|
100042
100046
|
/** Filter spaces by space_key. */
|
|
100043
100047
|
space_key?: string | undefined
|
|
100048
|
+
/** Filter spaces to only include those whose parent space has the specified `parent_space_id`. */
|
|
100049
|
+
parent_space_id?: string | undefined
|
|
100050
|
+
/** Filter spaces to only include those whose parent space has the specified `parent_space_key`. */
|
|
100051
|
+
parent_space_key?: string | undefined
|
|
100044
100052
|
/** Maximum number of records to return per page. */
|
|
100045
100053
|
limit?: number
|
|
100046
100054
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|