@seamapi/types 1.758.0 → 1.759.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 +36 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +54 -0
- package/dist/index.cjs +36 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +41 -0
- package/lib/seam/connect/openapi.js +34 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +13 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +38 -2
- package/src/lib/seam/connect/route-types.ts +13 -0
|
@@ -24819,6 +24819,8 @@ declare const _default: {
|
|
|
24819
24819
|
description: string;
|
|
24820
24820
|
format: string;
|
|
24821
24821
|
type: string;
|
|
24822
|
+
default?: never;
|
|
24823
|
+
nullable?: never;
|
|
24822
24824
|
};
|
|
24823
24825
|
} | {
|
|
24824
24826
|
in: string;
|
|
@@ -24827,6 +24829,28 @@ declare const _default: {
|
|
|
24827
24829
|
description: string;
|
|
24828
24830
|
type: string;
|
|
24829
24831
|
format?: never;
|
|
24832
|
+
default?: never;
|
|
24833
|
+
nullable?: never;
|
|
24834
|
+
};
|
|
24835
|
+
} | {
|
|
24836
|
+
in: string;
|
|
24837
|
+
name: string;
|
|
24838
|
+
schema: {
|
|
24839
|
+
default: number;
|
|
24840
|
+
description: string;
|
|
24841
|
+
format: string;
|
|
24842
|
+
type: string;
|
|
24843
|
+
nullable?: never;
|
|
24844
|
+
};
|
|
24845
|
+
} | {
|
|
24846
|
+
in: string;
|
|
24847
|
+
name: string;
|
|
24848
|
+
schema: {
|
|
24849
|
+
description: string;
|
|
24850
|
+
nullable: boolean;
|
|
24851
|
+
type: string;
|
|
24852
|
+
format?: never;
|
|
24853
|
+
default?: never;
|
|
24830
24854
|
};
|
|
24831
24855
|
})[];
|
|
24832
24856
|
responses: {
|
|
@@ -25259,6 +25283,9 @@ declare const _default: {
|
|
|
25259
25283
|
ok: {
|
|
25260
25284
|
type: string;
|
|
25261
25285
|
};
|
|
25286
|
+
pagination: {
|
|
25287
|
+
$ref: string;
|
|
25288
|
+
};
|
|
25262
25289
|
};
|
|
25263
25290
|
required: string[];
|
|
25264
25291
|
type: string;
|
|
@@ -25322,6 +25349,17 @@ declare const _default: {
|
|
|
25322
25349
|
format: string;
|
|
25323
25350
|
type: string;
|
|
25324
25351
|
};
|
|
25352
|
+
limit: {
|
|
25353
|
+
default: number;
|
|
25354
|
+
description: string;
|
|
25355
|
+
format: string;
|
|
25356
|
+
type: string;
|
|
25357
|
+
};
|
|
25358
|
+
page_cursor: {
|
|
25359
|
+
description: string;
|
|
25360
|
+
nullable: boolean;
|
|
25361
|
+
type: string;
|
|
25362
|
+
};
|
|
25325
25363
|
reservation_key: {
|
|
25326
25364
|
description: string;
|
|
25327
25365
|
type: string;
|
|
@@ -25767,6 +25805,9 @@ declare const _default: {
|
|
|
25767
25805
|
ok: {
|
|
25768
25806
|
type: string;
|
|
25769
25807
|
};
|
|
25808
|
+
pagination: {
|
|
25809
|
+
$ref: string;
|
|
25810
|
+
};
|
|
25770
25811
|
};
|
|
25771
25812
|
required: string[];
|
|
25772
25813
|
type: string;
|
|
@@ -32484,6 +32484,25 @@ export default {
|
|
|
32484
32484
|
type: 'string',
|
|
32485
32485
|
},
|
|
32486
32486
|
},
|
|
32487
|
+
{
|
|
32488
|
+
in: 'query',
|
|
32489
|
+
name: 'limit',
|
|
32490
|
+
schema: {
|
|
32491
|
+
default: 500,
|
|
32492
|
+
description: 'Numerical limit on the number of unmanaged access grants to return.',
|
|
32493
|
+
format: 'float',
|
|
32494
|
+
type: 'number',
|
|
32495
|
+
},
|
|
32496
|
+
},
|
|
32497
|
+
{
|
|
32498
|
+
in: 'query',
|
|
32499
|
+
name: 'page_cursor',
|
|
32500
|
+
schema: {
|
|
32501
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
32502
|
+
nullable: true,
|
|
32503
|
+
type: 'string',
|
|
32504
|
+
},
|
|
32505
|
+
},
|
|
32487
32506
|
],
|
|
32488
32507
|
responses: {
|
|
32489
32508
|
200: {
|
|
@@ -32992,8 +33011,9 @@ export default {
|
|
|
32992
33011
|
type: 'array',
|
|
32993
33012
|
},
|
|
32994
33013
|
ok: { type: 'boolean' },
|
|
33014
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
32995
33015
|
},
|
|
32996
|
-
required: ['access_grants', 'ok'],
|
|
33016
|
+
required: ['access_grants', 'pagination', 'ok'],
|
|
32997
33017
|
type: 'object',
|
|
32998
33018
|
},
|
|
32999
33019
|
},
|
|
@@ -33036,6 +33056,17 @@ export default {
|
|
|
33036
33056
|
format: 'uuid',
|
|
33037
33057
|
type: 'string',
|
|
33038
33058
|
},
|
|
33059
|
+
limit: {
|
|
33060
|
+
default: 500,
|
|
33061
|
+
description: 'Numerical limit on the number of unmanaged access grants to return.',
|
|
33062
|
+
format: 'float',
|
|
33063
|
+
type: 'number',
|
|
33064
|
+
},
|
|
33065
|
+
page_cursor: {
|
|
33066
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
33067
|
+
nullable: true,
|
|
33068
|
+
type: 'string',
|
|
33069
|
+
},
|
|
33039
33070
|
reservation_key: {
|
|
33040
33071
|
description: 'Filter unmanaged Access Grants by reservation_key.',
|
|
33041
33072
|
type: 'string',
|
|
@@ -33558,8 +33589,9 @@ export default {
|
|
|
33558
33589
|
type: 'array',
|
|
33559
33590
|
},
|
|
33560
33591
|
ok: { type: 'boolean' },
|
|
33592
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
33561
33593
|
},
|
|
33562
|
-
required: ['access_grants', 'ok'],
|
|
33594
|
+
required: ['access_grants', 'pagination', 'ok'],
|
|
33563
33595
|
type: 'object',
|
|
33564
33596
|
},
|
|
33565
33597
|
},
|