@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.
@@ -86542,6 +86542,8 @@ declare const _default: {
86542
86542
  description: string;
86543
86543
  format: string;
86544
86544
  type: string;
86545
+ default?: never;
86546
+ nullable?: never;
86545
86547
  };
86546
86548
  } | {
86547
86549
  in: string;
@@ -86550,6 +86552,28 @@ declare const _default: {
86550
86552
  description: string;
86551
86553
  type: string;
86552
86554
  format?: never;
86555
+ default?: never;
86556
+ nullable?: never;
86557
+ };
86558
+ } | {
86559
+ in: string;
86560
+ name: string;
86561
+ schema: {
86562
+ default: number;
86563
+ description: string;
86564
+ format: string;
86565
+ type: string;
86566
+ nullable?: never;
86567
+ };
86568
+ } | {
86569
+ in: string;
86570
+ name: string;
86571
+ schema: {
86572
+ description: string;
86573
+ nullable: boolean;
86574
+ type: string;
86575
+ format?: never;
86576
+ default?: never;
86553
86577
  };
86554
86578
  })[];
86555
86579
  responses: {
@@ -86982,6 +87006,9 @@ declare const _default: {
86982
87006
  ok: {
86983
87007
  type: string;
86984
87008
  };
87009
+ pagination: {
87010
+ $ref: string;
87011
+ };
86985
87012
  };
86986
87013
  required: string[];
86987
87014
  type: string;
@@ -87045,6 +87072,17 @@ declare const _default: {
87045
87072
  format: string;
87046
87073
  type: string;
87047
87074
  };
87075
+ limit: {
87076
+ default: number;
87077
+ description: string;
87078
+ format: string;
87079
+ type: string;
87080
+ };
87081
+ page_cursor: {
87082
+ description: string;
87083
+ nullable: boolean;
87084
+ type: string;
87085
+ };
87048
87086
  reservation_key: {
87049
87087
  description: string;
87050
87088
  type: string;
@@ -87490,6 +87528,9 @@ declare const _default: {
87490
87528
  ok: {
87491
87529
  type: string;
87492
87530
  };
87531
+ pagination: {
87532
+ $ref: string;
87533
+ };
87493
87534
  };
87494
87535
  required: string[];
87495
87536
  type: string;
@@ -145917,6 +145958,10 @@ type Routes = {
145917
145958
  acs_entrance_id?: string | undefined;
145918
145959
  /** Filter unmanaged Access Grants by reservation_key. */
145919
145960
  reservation_key?: string | undefined;
145961
+ /** Numerical limit on the number of unmanaged access grants to return. */
145962
+ limit?: number;
145963
+ /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
145964
+ page_cursor?: (string | undefined) | null;
145920
145965
  };
145921
145966
  formData: {};
145922
145967
  jsonResponse: {
@@ -146069,6 +146114,15 @@ type Routes = {
146069
146114
  /** ID of user identity to which the Access Grant gives access. */
146070
146115
  user_identity_id?: string | undefined;
146071
146116
  }[];
146117
+ /** Information about the current page of results. */
146118
+ pagination: {
146119
+ /** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
146120
+ next_page_cursor: string | null;
146121
+ /** Indicates whether there is another page of results after this one. */
146122
+ has_next_page: boolean;
146123
+ /** URL to get the next page of results. */
146124
+ next_page_url: string | null;
146125
+ };
146072
146126
  };
146073
146127
  maxDuration: undefined;
146074
146128
  };
package/dist/index.cjs CHANGED
@@ -39044,6 +39044,25 @@ var openapi_default = {
39044
39044
  description: "Filter unmanaged Access Grants by reservation_key.",
39045
39045
  type: "string"
39046
39046
  }
39047
+ },
39048
+ {
39049
+ in: "query",
39050
+ name: "limit",
39051
+ schema: {
39052
+ default: 500,
39053
+ description: "Numerical limit on the number of unmanaged access grants to return.",
39054
+ format: "float",
39055
+ type: "number"
39056
+ }
39057
+ },
39058
+ {
39059
+ in: "query",
39060
+ name: "page_cursor",
39061
+ schema: {
39062
+ description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
39063
+ nullable: true,
39064
+ type: "string"
39065
+ }
39047
39066
  }
39048
39067
  ],
39049
39068
  responses: {
@@ -39552,9 +39571,10 @@ var openapi_default = {
39552
39571
  },
39553
39572
  type: "array"
39554
39573
  },
39555
- ok: { type: "boolean" }
39574
+ ok: { type: "boolean" },
39575
+ pagination: { $ref: "#/components/schemas/pagination" }
39556
39576
  },
39557
- required: ["access_grants", "ok"],
39577
+ required: ["access_grants", "pagination", "ok"],
39558
39578
  type: "object"
39559
39579
  }
39560
39580
  }
@@ -39597,6 +39617,17 @@ var openapi_default = {
39597
39617
  format: "uuid",
39598
39618
  type: "string"
39599
39619
  },
39620
+ limit: {
39621
+ default: 500,
39622
+ description: "Numerical limit on the number of unmanaged access grants to return.",
39623
+ format: "float",
39624
+ type: "number"
39625
+ },
39626
+ page_cursor: {
39627
+ description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
39628
+ nullable: true,
39629
+ type: "string"
39630
+ },
39600
39631
  reservation_key: {
39601
39632
  description: "Filter unmanaged Access Grants by reservation_key.",
39602
39633
  type: "string"
@@ -40118,9 +40149,10 @@ var openapi_default = {
40118
40149
  },
40119
40150
  type: "array"
40120
40151
  },
40121
- ok: { type: "boolean" }
40152
+ ok: { type: "boolean" },
40153
+ pagination: { $ref: "#/components/schemas/pagination" }
40122
40154
  },
40123
- required: ["access_grants", "ok"],
40155
+ required: ["access_grants", "pagination", "ok"],
40124
40156
  type: "object"
40125
40157
  }
40126
40158
  }