@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.
@@ -73731,6 +73731,9 @@ declare const _default: {
73731
73731
  'x-deprecated'?: never;
73732
73732
  items?: never;
73733
73733
  minLength?: never;
73734
+ default?: never;
73735
+ exclusiveMinimum?: never;
73736
+ minimum?: never;
73734
73737
  };
73735
73738
  } | {
73736
73739
  in: string;
@@ -73744,6 +73747,9 @@ declare const _default: {
73744
73747
  description?: never;
73745
73748
  items?: never;
73746
73749
  minLength?: never;
73750
+ default?: never;
73751
+ exclusiveMinimum?: never;
73752
+ minimum?: never;
73747
73753
  };
73748
73754
  } | {
73749
73755
  in: string;
@@ -73760,6 +73766,9 @@ declare const _default: {
73760
73766
  nullable?: never;
73761
73767
  'x-deprecated'?: never;
73762
73768
  minLength?: never;
73769
+ default?: never;
73770
+ exclusiveMinimum?: never;
73771
+ minimum?: never;
73763
73772
  };
73764
73773
  } | {
73765
73774
  in: string;
@@ -73773,6 +73782,41 @@ declare const _default: {
73773
73782
  nullable?: never;
73774
73783
  'x-deprecated'?: never;
73775
73784
  items?: never;
73785
+ default?: never;
73786
+ exclusiveMinimum?: never;
73787
+ minimum?: never;
73788
+ };
73789
+ } | {
73790
+ in: string;
73791
+ name: string;
73792
+ schema: {
73793
+ default: number;
73794
+ description: string;
73795
+ exclusiveMinimum: boolean;
73796
+ minimum: number;
73797
+ type: string;
73798
+ format?: never;
73799
+ deprecated?: never;
73800
+ nullable?: never;
73801
+ 'x-deprecated'?: never;
73802
+ items?: never;
73803
+ minLength?: never;
73804
+ };
73805
+ } | {
73806
+ in: string;
73807
+ name: string;
73808
+ schema: {
73809
+ description: string;
73810
+ nullable: boolean;
73811
+ type: string;
73812
+ format?: never;
73813
+ deprecated?: never;
73814
+ 'x-deprecated'?: never;
73815
+ items?: never;
73816
+ minLength?: never;
73817
+ default?: never;
73818
+ exclusiveMinimum?: never;
73819
+ minimum?: never;
73776
73820
  };
73777
73821
  })[];
73778
73822
  responses: {
@@ -73790,6 +73834,9 @@ declare const _default: {
73790
73834
  ok: {
73791
73835
  type: string;
73792
73836
  };
73837
+ pagination: {
73838
+ $ref: string;
73839
+ };
73793
73840
  };
73794
73841
  required: string[];
73795
73842
  type: string;
@@ -73885,6 +73932,13 @@ declare const _default: {
73885
73932
  format: string;
73886
73933
  type: string;
73887
73934
  };
73935
+ limit: {
73936
+ default: number;
73937
+ description: string;
73938
+ exclusiveMinimum: boolean;
73939
+ minimum: number;
73940
+ type: string;
73941
+ };
73888
73942
  location_id: {
73889
73943
  deprecated: boolean;
73890
73944
  format: string;
@@ -73892,6 +73946,11 @@ declare const _default: {
73892
73946
  type: string;
73893
73947
  'x-deprecated': string;
73894
73948
  };
73949
+ page_cursor: {
73950
+ description: string;
73951
+ nullable: boolean;
73952
+ type: string;
73953
+ };
73895
73954
  search: {
73896
73955
  description: string;
73897
73956
  minLength: number;
@@ -73923,6 +73982,9 @@ declare const _default: {
73923
73982
  ok: {
73924
73983
  type: string;
73925
73984
  };
73985
+ pagination: {
73986
+ $ref: string;
73987
+ };
73926
73988
  };
73927
73989
  required: string[];
73928
73990
  type: string;
@@ -125777,6 +125839,10 @@ type Routes = {
125777
125839
  acs_entrance_ids?: string[] | undefined;
125778
125840
  /** String for which to search. Filters returned entrances to include all records that satisfy a partial match using `display_name`. */
125779
125841
  search?: string | undefined;
125842
+ /** Maximum number of records to return per page. */
125843
+ limit?: number;
125844
+ /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
125845
+ page_cursor?: (string | undefined) | null;
125780
125846
  };
125781
125847
  formData: {};
125782
125848
  jsonResponse: {
@@ -125888,6 +125954,15 @@ type Routes = {
125888
125954
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
125889
125955
  can_unlock_with_code?: boolean | undefined;
125890
125956
  }[];
125957
+ /** Information about the current page of results. */
125958
+ pagination: {
125959
+ /** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
125960
+ next_page_cursor: string | null;
125961
+ /** Indicates whether there is another page of results after this one. */
125962
+ has_next_page: boolean;
125963
+ /** URL to get the next page of results. */
125964
+ next_page_url: string | null;
125965
+ };
125891
125966
  };
125892
125967
  };
125893
125968
  '/acs/entrances/list_credentials_with_access': {
package/dist/index.cjs CHANGED
@@ -35799,6 +35799,26 @@ var openapi_default = {
35799
35799
  minLength: 1,
35800
35800
  type: "string"
35801
35801
  }
35802
+ },
35803
+ {
35804
+ in: "query",
35805
+ name: "limit",
35806
+ schema: {
35807
+ default: 900,
35808
+ description: "Maximum number of records to return per page.",
35809
+ exclusiveMinimum: true,
35810
+ minimum: 0,
35811
+ type: "integer"
35812
+ }
35813
+ },
35814
+ {
35815
+ in: "query",
35816
+ name: "page_cursor",
35817
+ schema: {
35818
+ description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
35819
+ nullable: true,
35820
+ type: "string"
35821
+ }
35802
35822
  }
35803
35823
  ],
35804
35824
  responses: {
@@ -35811,9 +35831,10 @@ var openapi_default = {
35811
35831
  items: { $ref: "#/components/schemas/acs_entrance" },
35812
35832
  type: "array"
35813
35833
  },
35814
- ok: { type: "boolean" }
35834
+ ok: { type: "boolean" },
35835
+ pagination: { $ref: "#/components/schemas/pagination" }
35815
35836
  },
35816
- required: ["acs_entrances", "ok"],
35837
+ required: ["acs_entrances", "pagination", "ok"],
35817
35838
  type: "object"
35818
35839
  }
35819
35840
  }
@@ -35876,6 +35897,13 @@ var openapi_default = {
35876
35897
  format: "uuid",
35877
35898
  type: "string"
35878
35899
  },
35900
+ limit: {
35901
+ default: 900,
35902
+ description: "Maximum number of records to return per page.",
35903
+ exclusiveMinimum: true,
35904
+ minimum: 0,
35905
+ type: "integer"
35906
+ },
35879
35907
  location_id: {
35880
35908
  deprecated: true,
35881
35909
  format: "uuid",
@@ -35883,6 +35911,11 @@ var openapi_default = {
35883
35911
  type: "string",
35884
35912
  "x-deprecated": "Use `space_id`."
35885
35913
  },
35914
+ page_cursor: {
35915
+ description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
35916
+ nullable: true,
35917
+ type: "string"
35918
+ },
35886
35919
  search: {
35887
35920
  description: "String for which to search. Filters returned entrances to include all records that satisfy a partial match using `display_name`.",
35888
35921
  minLength: 1,
@@ -35909,9 +35942,10 @@ var openapi_default = {
35909
35942
  items: { $ref: "#/components/schemas/acs_entrance" },
35910
35943
  type: "array"
35911
35944
  },
35912
- ok: { type: "boolean" }
35945
+ ok: { type: "boolean" },
35946
+ pagination: { $ref: "#/components/schemas/pagination" }
35913
35947
  },
35914
- required: ["acs_entrances", "ok"],
35948
+ required: ["acs_entrances", "pagination", "ok"],
35915
35949
  type: "object"
35916
35950
  }
35917
35951
  }