@seamapi/types 1.497.0 → 1.498.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.
@@ -22866,6 +22866,9 @@ declare const _default: {
22866
22866
  'x-deprecated'?: never;
22867
22867
  items?: never;
22868
22868
  minLength?: never;
22869
+ default?: never;
22870
+ exclusiveMinimum?: never;
22871
+ minimum?: never;
22869
22872
  };
22870
22873
  } | {
22871
22874
  in: string;
@@ -22879,6 +22882,9 @@ declare const _default: {
22879
22882
  description?: never;
22880
22883
  items?: never;
22881
22884
  minLength?: never;
22885
+ default?: never;
22886
+ exclusiveMinimum?: never;
22887
+ minimum?: never;
22882
22888
  };
22883
22889
  } | {
22884
22890
  in: string;
@@ -22895,6 +22901,9 @@ declare const _default: {
22895
22901
  nullable?: never;
22896
22902
  'x-deprecated'?: never;
22897
22903
  minLength?: never;
22904
+ default?: never;
22905
+ exclusiveMinimum?: never;
22906
+ minimum?: never;
22898
22907
  };
22899
22908
  } | {
22900
22909
  in: string;
@@ -22908,6 +22917,41 @@ declare const _default: {
22908
22917
  nullable?: never;
22909
22918
  'x-deprecated'?: never;
22910
22919
  items?: never;
22920
+ default?: never;
22921
+ exclusiveMinimum?: never;
22922
+ minimum?: never;
22923
+ };
22924
+ } | {
22925
+ in: string;
22926
+ name: string;
22927
+ schema: {
22928
+ default: number;
22929
+ description: string;
22930
+ exclusiveMinimum: boolean;
22931
+ minimum: number;
22932
+ type: string;
22933
+ format?: never;
22934
+ deprecated?: never;
22935
+ nullable?: never;
22936
+ 'x-deprecated'?: never;
22937
+ items?: never;
22938
+ minLength?: never;
22939
+ };
22940
+ } | {
22941
+ in: string;
22942
+ name: string;
22943
+ schema: {
22944
+ description: string;
22945
+ nullable: boolean;
22946
+ type: string;
22947
+ format?: never;
22948
+ deprecated?: never;
22949
+ 'x-deprecated'?: never;
22950
+ items?: never;
22951
+ minLength?: never;
22952
+ default?: never;
22953
+ exclusiveMinimum?: never;
22954
+ minimum?: never;
22911
22955
  };
22912
22956
  })[];
22913
22957
  responses: {
@@ -22925,6 +22969,9 @@ declare const _default: {
22925
22969
  ok: {
22926
22970
  type: string;
22927
22971
  };
22972
+ pagination: {
22973
+ $ref: string;
22974
+ };
22928
22975
  };
22929
22976
  required: string[];
22930
22977
  type: string;
@@ -23020,6 +23067,13 @@ declare const _default: {
23020
23067
  format: string;
23021
23068
  type: string;
23022
23069
  };
23070
+ limit: {
23071
+ default: number;
23072
+ description: string;
23073
+ exclusiveMinimum: boolean;
23074
+ minimum: number;
23075
+ type: string;
23076
+ };
23023
23077
  location_id: {
23024
23078
  deprecated: boolean;
23025
23079
  format: string;
@@ -23027,6 +23081,11 @@ declare const _default: {
23027
23081
  type: string;
23028
23082
  'x-deprecated': string;
23029
23083
  };
23084
+ page_cursor: {
23085
+ description: string;
23086
+ nullable: boolean;
23087
+ type: string;
23088
+ };
23030
23089
  search: {
23031
23090
  description: string;
23032
23091
  minLength: number;
@@ -23058,6 +23117,9 @@ declare const _default: {
23058
23117
  ok: {
23059
23118
  type: string;
23060
23119
  };
23120
+ pagination: {
23121
+ $ref: string;
23122
+ };
23061
23123
  };
23062
23124
  required: string[];
23063
23125
  type: string;
@@ -30256,6 +30256,26 @@ export default {
30256
30256
  type: 'string',
30257
30257
  },
30258
30258
  },
30259
+ {
30260
+ in: 'query',
30261
+ name: 'limit',
30262
+ schema: {
30263
+ default: 900,
30264
+ description: 'Maximum number of records to return per page.',
30265
+ exclusiveMinimum: true,
30266
+ minimum: 0,
30267
+ type: 'integer',
30268
+ },
30269
+ },
30270
+ {
30271
+ in: 'query',
30272
+ name: 'page_cursor',
30273
+ schema: {
30274
+ description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
30275
+ nullable: true,
30276
+ type: 'string',
30277
+ },
30278
+ },
30259
30279
  ],
30260
30280
  responses: {
30261
30281
  200: {
@@ -30268,8 +30288,9 @@ export default {
30268
30288
  type: 'array',
30269
30289
  },
30270
30290
  ok: { type: 'boolean' },
30291
+ pagination: { $ref: '#/components/schemas/pagination' },
30271
30292
  },
30272
- required: ['acs_entrances', 'ok'],
30293
+ required: ['acs_entrances', 'pagination', 'ok'],
30273
30294
  type: 'object',
30274
30295
  },
30275
30296
  },
@@ -30332,6 +30353,13 @@ export default {
30332
30353
  format: 'uuid',
30333
30354
  type: 'string',
30334
30355
  },
30356
+ limit: {
30357
+ default: 900,
30358
+ description: 'Maximum number of records to return per page.',
30359
+ exclusiveMinimum: true,
30360
+ minimum: 0,
30361
+ type: 'integer',
30362
+ },
30335
30363
  location_id: {
30336
30364
  deprecated: true,
30337
30365
  format: 'uuid',
@@ -30339,6 +30367,11 @@ export default {
30339
30367
  type: 'string',
30340
30368
  'x-deprecated': 'Use `space_id`.',
30341
30369
  },
30370
+ page_cursor: {
30371
+ description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
30372
+ nullable: true,
30373
+ type: 'string',
30374
+ },
30342
30375
  search: {
30343
30376
  description: 'String for which to search. Filters returned entrances to include all records that satisfy a partial match using `display_name`.',
30344
30377
  minLength: 1,
@@ -30366,8 +30399,9 @@ export default {
30366
30399
  type: 'array',
30367
30400
  },
30368
30401
  ok: { type: 'boolean' },
30402
+ pagination: { $ref: '#/components/schemas/pagination' },
30369
30403
  },
30370
- required: ['acs_entrances', 'ok'],
30404
+ required: ['acs_entrances', 'pagination', 'ok'],
30371
30405
  type: 'object',
30372
30406
  },
30373
30407
  },