@seamapi/types 1.452.0 → 1.453.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 +38 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +56 -0
- package/dist/index.cjs +38 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +43 -0
- package/lib/seam/connect/openapi.js +36 -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 +40 -2
- package/src/lib/seam/connect/route-types.ts +13 -0
|
@@ -15266,6 +15266,8 @@ declare const _default: {
|
|
|
15266
15266
|
description: string;
|
|
15267
15267
|
format: string;
|
|
15268
15268
|
type: string;
|
|
15269
|
+
default?: never;
|
|
15270
|
+
nullable?: never;
|
|
15269
15271
|
};
|
|
15270
15272
|
} | {
|
|
15271
15273
|
in: string;
|
|
@@ -15275,6 +15277,30 @@ declare const _default: {
|
|
|
15275
15277
|
description: string;
|
|
15276
15278
|
type: string;
|
|
15277
15279
|
format?: never;
|
|
15280
|
+
default?: never;
|
|
15281
|
+
nullable?: never;
|
|
15282
|
+
};
|
|
15283
|
+
} | {
|
|
15284
|
+
in: string;
|
|
15285
|
+
name: string;
|
|
15286
|
+
required: boolean;
|
|
15287
|
+
schema: {
|
|
15288
|
+
default: number;
|
|
15289
|
+
description: string;
|
|
15290
|
+
format: string;
|
|
15291
|
+
type: string;
|
|
15292
|
+
nullable?: never;
|
|
15293
|
+
};
|
|
15294
|
+
} | {
|
|
15295
|
+
in: string;
|
|
15296
|
+
name: string;
|
|
15297
|
+
required: boolean;
|
|
15298
|
+
schema: {
|
|
15299
|
+
description: string;
|
|
15300
|
+
nullable: boolean;
|
|
15301
|
+
type: string;
|
|
15302
|
+
format?: never;
|
|
15303
|
+
default?: never;
|
|
15278
15304
|
};
|
|
15279
15305
|
})[];
|
|
15280
15306
|
responses: {
|
|
@@ -15292,6 +15318,9 @@ declare const _default: {
|
|
|
15292
15318
|
ok: {
|
|
15293
15319
|
type: string;
|
|
15294
15320
|
};
|
|
15321
|
+
pagination: {
|
|
15322
|
+
$ref: string;
|
|
15323
|
+
};
|
|
15295
15324
|
};
|
|
15296
15325
|
required: string[];
|
|
15297
15326
|
type: string;
|
|
@@ -15349,6 +15378,17 @@ declare const _default: {
|
|
|
15349
15378
|
format: string;
|
|
15350
15379
|
type: string;
|
|
15351
15380
|
};
|
|
15381
|
+
limit: {
|
|
15382
|
+
default: number;
|
|
15383
|
+
description: string;
|
|
15384
|
+
format: string;
|
|
15385
|
+
type: string;
|
|
15386
|
+
};
|
|
15387
|
+
page_cursor: {
|
|
15388
|
+
description: string;
|
|
15389
|
+
nullable: boolean;
|
|
15390
|
+
type: string;
|
|
15391
|
+
};
|
|
15352
15392
|
user_identifier_key: {
|
|
15353
15393
|
description: string;
|
|
15354
15394
|
type: string;
|
|
@@ -15375,6 +15415,9 @@ declare const _default: {
|
|
|
15375
15415
|
ok: {
|
|
15376
15416
|
type: string;
|
|
15377
15417
|
};
|
|
15418
|
+
pagination: {
|
|
15419
|
+
$ref: string;
|
|
15420
|
+
};
|
|
15378
15421
|
};
|
|
15379
15422
|
required: string[];
|
|
15380
15423
|
type: string;
|
|
@@ -23948,6 +23948,27 @@ export default {
|
|
|
23948
23948
|
type: 'string',
|
|
23949
23949
|
},
|
|
23950
23950
|
},
|
|
23951
|
+
{
|
|
23952
|
+
in: 'query',
|
|
23953
|
+
name: 'limit',
|
|
23954
|
+
required: false,
|
|
23955
|
+
schema: {
|
|
23956
|
+
default: 300000,
|
|
23957
|
+
description: 'Numerical limit on the number of unmanaged access codes to return.',
|
|
23958
|
+
format: 'float',
|
|
23959
|
+
type: 'number',
|
|
23960
|
+
},
|
|
23961
|
+
},
|
|
23962
|
+
{
|
|
23963
|
+
in: 'query',
|
|
23964
|
+
name: 'page_cursor',
|
|
23965
|
+
required: false,
|
|
23966
|
+
schema: {
|
|
23967
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
23968
|
+
nullable: true,
|
|
23969
|
+
type: 'string',
|
|
23970
|
+
},
|
|
23971
|
+
},
|
|
23951
23972
|
],
|
|
23952
23973
|
responses: {
|
|
23953
23974
|
200: {
|
|
@@ -23962,8 +23983,9 @@ export default {
|
|
|
23962
23983
|
type: 'array',
|
|
23963
23984
|
},
|
|
23964
23985
|
ok: { type: 'boolean' },
|
|
23986
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
23965
23987
|
},
|
|
23966
|
-
required: ['access_codes', 'ok'],
|
|
23988
|
+
required: ['access_codes', 'pagination', 'ok'],
|
|
23967
23989
|
type: 'object',
|
|
23968
23990
|
},
|
|
23969
23991
|
},
|
|
@@ -24000,6 +24022,17 @@ export default {
|
|
|
24000
24022
|
format: 'uuid',
|
|
24001
24023
|
type: 'string',
|
|
24002
24024
|
},
|
|
24025
|
+
limit: {
|
|
24026
|
+
default: 300000,
|
|
24027
|
+
description: 'Numerical limit on the number of unmanaged access codes to return.',
|
|
24028
|
+
format: 'float',
|
|
24029
|
+
type: 'number',
|
|
24030
|
+
},
|
|
24031
|
+
page_cursor: {
|
|
24032
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
24033
|
+
nullable: true,
|
|
24034
|
+
type: 'string',
|
|
24035
|
+
},
|
|
24003
24036
|
user_identifier_key: {
|
|
24004
24037
|
description: 'Your user ID for the user by which to filter unmanaged access codes.',
|
|
24005
24038
|
type: 'string',
|
|
@@ -24024,8 +24057,9 @@ export default {
|
|
|
24024
24057
|
type: 'array',
|
|
24025
24058
|
},
|
|
24026
24059
|
ok: { type: 'boolean' },
|
|
24060
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
24027
24061
|
},
|
|
24028
|
-
required: ['access_codes', 'ok'],
|
|
24062
|
+
required: ['access_codes', 'pagination', 'ok'],
|
|
24029
24063
|
type: 'object',
|
|
24030
24064
|
},
|
|
24031
24065
|
},
|