@seamapi/types 1.414.2 → 1.415.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.
@@ -42649,6 +42649,11 @@ declare const _default: {
42649
42649
  format: string;
42650
42650
  type: string;
42651
42651
  };
42652
+ page_cursor: {
42653
+ description: string;
42654
+ nullable: boolean;
42655
+ type: string;
42656
+ };
42652
42657
  user_identifier_key: {
42653
42658
  description: string;
42654
42659
  type: string;
@@ -42674,6 +42679,9 @@ declare const _default: {
42674
42679
  ok: {
42675
42680
  type: string;
42676
42681
  };
42682
+ pagination: {
42683
+ $ref: string;
42684
+ };
42677
42685
  };
42678
42686
  required: string[];
42679
42687
  type: string;
@@ -75587,6 +75595,8 @@ interface Routes {
75587
75595
  custom_metadata_has?: Record<string, string | boolean> | undefined;
75588
75596
  /** Maximum number of records to return per page. */
75589
75597
  limit?: number;
75598
+ /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
75599
+ page_cursor?: (string | undefined) | null;
75590
75600
  };
75591
75601
  formData: {};
75592
75602
  jsonResponse: {
@@ -75633,6 +75643,15 @@ interface Routes {
75633
75643
  /** Selected provider of the Connect Webview, one of the [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
75634
75644
  selected_provider: string | null;
75635
75645
  }>;
75646
+ /** Information about the current page of results. */
75647
+ pagination: {
75648
+ /** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
75649
+ next_page_cursor: string | null;
75650
+ /** Indicates whether there is another page of results after this one. */
75651
+ has_next_page: boolean;
75652
+ /** URL to get the next page of results. */
75653
+ next_page_url: string | null;
75654
+ };
75636
75655
  };
75637
75656
  };
75638
75657
  '/connected_accounts/delete': {
@@ -20970,6 +20970,11 @@ declare const _default: {
20970
20970
  format: string;
20971
20971
  type: string;
20972
20972
  };
20973
+ page_cursor: {
20974
+ description: string;
20975
+ nullable: boolean;
20976
+ type: string;
20977
+ };
20973
20978
  user_identifier_key: {
20974
20979
  description: string;
20975
20980
  type: string;
@@ -20995,6 +21000,9 @@ declare const _default: {
20995
21000
  ok: {
20996
21001
  type: string;
20997
21002
  };
21003
+ pagination: {
21004
+ $ref: string;
21005
+ };
20998
21006
  };
20999
21007
  required: string[];
21000
21008
  type: string;
@@ -26818,6 +26818,11 @@ export default {
26818
26818
  format: 'float',
26819
26819
  type: 'number',
26820
26820
  },
26821
+ page_cursor: {
26822
+ description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
26823
+ nullable: true,
26824
+ type: 'string',
26825
+ },
26821
26826
  user_identifier_key: {
26822
26827
  description: 'Your user ID for the user by which you want to filter Connect Webviews.',
26823
26828
  type: 'string',
@@ -26839,8 +26844,9 @@ export default {
26839
26844
  type: 'array',
26840
26845
  },
26841
26846
  ok: { type: 'boolean' },
26847
+ pagination: { $ref: '#/components/schemas/pagination' },
26842
26848
  },
26843
- required: ['connect_webviews', 'ok'],
26849
+ required: ['connect_webviews', 'pagination', 'ok'],
26844
26850
  type: 'object',
26845
26851
  },
26846
26852
  },