@seamapi/types 1.700.0 → 1.701.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.
@@ -72703,6 +72703,32 @@ declare const _default: {
72703
72703
  schema: {
72704
72704
  description: string;
72705
72705
  type: string;
72706
+ default?: never;
72707
+ format?: never;
72708
+ nullable?: never;
72709
+ deprecated?: never;
72710
+ 'x-deprecated'?: never;
72711
+ };
72712
+ } | {
72713
+ in: string;
72714
+ name: string;
72715
+ schema: {
72716
+ default: number;
72717
+ description: string;
72718
+ format: string;
72719
+ type: string;
72720
+ nullable?: never;
72721
+ deprecated?: never;
72722
+ 'x-deprecated'?: never;
72723
+ };
72724
+ } | {
72725
+ in: string;
72726
+ name: string;
72727
+ schema: {
72728
+ description: string;
72729
+ nullable: boolean;
72730
+ type: string;
72731
+ default?: never;
72706
72732
  format?: never;
72707
72733
  deprecated?: never;
72708
72734
  'x-deprecated'?: never;
@@ -72714,6 +72740,8 @@ declare const _default: {
72714
72740
  description: string;
72715
72741
  format: string;
72716
72742
  type: string;
72743
+ default?: never;
72744
+ nullable?: never;
72717
72745
  deprecated?: never;
72718
72746
  'x-deprecated'?: never;
72719
72747
  };
@@ -72726,6 +72754,8 @@ declare const _default: {
72726
72754
  type: string;
72727
72755
  'x-deprecated': string;
72728
72756
  description?: never;
72757
+ default?: never;
72758
+ nullable?: never;
72729
72759
  };
72730
72760
  })[];
72731
72761
  responses: {
@@ -72743,6 +72773,9 @@ declare const _default: {
72743
72773
  ok: {
72744
72774
  type: string;
72745
72775
  };
72776
+ pagination: {
72777
+ $ref: string;
72778
+ };
72746
72779
  };
72747
72780
  required: string[];
72748
72781
  type: string;
@@ -72814,12 +72847,23 @@ declare const _default: {
72814
72847
  description: string;
72815
72848
  type: string;
72816
72849
  };
72850
+ limit: {
72851
+ default: number;
72852
+ description: string;
72853
+ format: string;
72854
+ type: string;
72855
+ };
72817
72856
  location_id: {
72818
72857
  deprecated: boolean;
72819
72858
  format: string;
72820
72859
  type: string;
72821
72860
  'x-deprecated': string;
72822
72861
  };
72862
+ page_cursor: {
72863
+ description: string;
72864
+ nullable: boolean;
72865
+ type: string;
72866
+ };
72823
72867
  reservation_key: {
72824
72868
  description: string;
72825
72869
  type: string;
@@ -72855,6 +72899,9 @@ declare const _default: {
72855
72899
  ok: {
72856
72900
  type: string;
72857
72901
  };
72902
+ pagination: {
72903
+ $ref: string;
72904
+ };
72858
72905
  };
72859
72906
  required: string[];
72860
72907
  type: string;
@@ -126675,6 +126722,10 @@ type Routes = {
126675
126722
  commonParams: {
126676
126723
  /** Customer key for which you want to list access grants. */
126677
126724
  customer_key?: string | undefined;
126725
+ /** Numerical limit on the number of access grants to return. */
126726
+ limit?: number;
126727
+ /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
126728
+ page_cursor?: (string | undefined) | null;
126678
126729
  /** ID of user identity by which you want to filter the list of Access Grants. */
126679
126730
  user_identity_id?: string | undefined;
126680
126731
  /** ID of the access system by which you want to filter the list of Access Grants. */
@@ -126759,6 +126810,15 @@ type Routes = {
126759
126810
  /** ID of the customization profile associated with the Access Grant. */
126760
126811
  customization_profile_id?: string | undefined;
126761
126812
  }[];
126813
+ /** Information about the current page of results. */
126814
+ pagination: {
126815
+ /** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
126816
+ next_page_cursor: string | null;
126817
+ /** Indicates whether there is another page of results after this one. */
126818
+ has_next_page: boolean;
126819
+ /** URL to get the next page of results. */
126820
+ next_page_url: string | null;
126821
+ };
126762
126822
  };
126763
126823
  maxDuration: undefined;
126764
126824
  };
package/dist/index.cjs CHANGED
@@ -32832,6 +32832,25 @@ var openapi_default = {
32832
32832
  type: "string"
32833
32833
  }
32834
32834
  },
32835
+ {
32836
+ in: "query",
32837
+ name: "limit",
32838
+ schema: {
32839
+ default: 500,
32840
+ description: "Numerical limit on the number of access grants to return.",
32841
+ format: "float",
32842
+ type: "number"
32843
+ }
32844
+ },
32845
+ {
32846
+ in: "query",
32847
+ name: "page_cursor",
32848
+ schema: {
32849
+ description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
32850
+ nullable: true,
32851
+ type: "string"
32852
+ }
32853
+ },
32835
32854
  {
32836
32855
  in: "query",
32837
32856
  name: "user_identity_id",
@@ -32905,9 +32924,10 @@ var openapi_default = {
32905
32924
  items: { $ref: "#/components/schemas/access_grant" },
32906
32925
  type: "array"
32907
32926
  },
32908
- ok: { type: "boolean" }
32927
+ ok: { type: "boolean" },
32928
+ pagination: { $ref: "#/components/schemas/pagination" }
32909
32929
  },
32910
- required: ["access_grants", "ok"],
32930
+ required: ["access_grants", "pagination", "ok"],
32911
32931
  type: "object"
32912
32932
  }
32913
32933
  }
@@ -32958,12 +32978,23 @@ var openapi_default = {
32958
32978
  description: "Customer key for which you want to list access grants.",
32959
32979
  type: "string"
32960
32980
  },
32981
+ limit: {
32982
+ default: 500,
32983
+ description: "Numerical limit on the number of access grants to return.",
32984
+ format: "float",
32985
+ type: "number"
32986
+ },
32961
32987
  location_id: {
32962
32988
  deprecated: true,
32963
32989
  format: "uuid",
32964
32990
  type: "string",
32965
32991
  "x-deprecated": "Use `space_id`."
32966
32992
  },
32993
+ page_cursor: {
32994
+ description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
32995
+ nullable: true,
32996
+ type: "string"
32997
+ },
32967
32998
  reservation_key: {
32968
32999
  description: "Filter Access Grants by reservation_key.",
32969
33000
  type: "string"
@@ -32994,9 +33025,10 @@ var openapi_default = {
32994
33025
  items: { $ref: "#/components/schemas/access_grant" },
32995
33026
  type: "array"
32996
33027
  },
32997
- ok: { type: "boolean" }
33028
+ ok: { type: "boolean" },
33029
+ pagination: { $ref: "#/components/schemas/pagination" }
32998
33030
  },
32999
- required: ["access_grants", "ok"],
33031
+ required: ["access_grants", "pagination", "ok"],
33000
33032
  type: "object"
33001
33033
  }
33002
33034
  }