@seamapi/types 1.483.0 → 1.485.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.
@@ -61410,6 +61410,9 @@ declare const _default: {
61410
61410
  ok: {
61411
61411
  type: string;
61412
61412
  };
61413
+ pagination: {
61414
+ $ref: string;
61415
+ };
61413
61416
  };
61414
61417
  required: string[];
61415
61418
  type: string;
@@ -61542,6 +61545,11 @@ declare const _default: {
61542
61545
  format: string;
61543
61546
  type: string;
61544
61547
  };
61548
+ page_cursor: {
61549
+ description: string;
61550
+ nullable: boolean;
61551
+ type: string;
61552
+ };
61545
61553
  };
61546
61554
  type: string;
61547
61555
  oneOf?: never;
@@ -61565,6 +61573,9 @@ declare const _default: {
61565
61573
  ok: {
61566
61574
  type: string;
61567
61575
  };
61576
+ pagination: {
61577
+ $ref: string;
61578
+ };
61568
61579
  };
61569
61580
  required: string[];
61570
61581
  type: string;
@@ -63238,22 +63249,32 @@ declare const _default: {
63238
63249
  api_key: never[];
63239
63250
  access_token?: never;
63240
63251
  console_session_with_workspace?: never;
63252
+ client_session_with_customer?: never;
63241
63253
  client_session?: never;
63242
63254
  } | {
63243
63255
  access_token: never[];
63244
63256
  api_key?: never;
63245
63257
  console_session_with_workspace?: never;
63258
+ client_session_with_customer?: never;
63246
63259
  client_session?: never;
63247
63260
  } | {
63248
63261
  console_session_with_workspace: never[];
63249
63262
  api_key?: never;
63250
63263
  access_token?: never;
63264
+ client_session_with_customer?: never;
63265
+ client_session?: never;
63266
+ } | {
63267
+ client_session_with_customer: never[];
63268
+ api_key?: never;
63269
+ access_token?: never;
63270
+ console_session_with_workspace?: never;
63251
63271
  client_session?: never;
63252
63272
  } | {
63253
63273
  client_session: never[];
63254
63274
  api_key?: never;
63255
63275
  access_token?: never;
63256
63276
  console_session_with_workspace?: never;
63277
+ client_session_with_customer?: never;
63257
63278
  })[];
63258
63279
  summary: string;
63259
63280
  tags: string[];
@@ -63314,22 +63335,32 @@ declare const _default: {
63314
63335
  api_key: never[];
63315
63336
  access_token?: never;
63316
63337
  console_session_with_workspace?: never;
63338
+ client_session_with_customer?: never;
63317
63339
  client_session?: never;
63318
63340
  } | {
63319
63341
  access_token: never[];
63320
63342
  api_key?: never;
63321
63343
  console_session_with_workspace?: never;
63344
+ client_session_with_customer?: never;
63322
63345
  client_session?: never;
63323
63346
  } | {
63324
63347
  console_session_with_workspace: never[];
63325
63348
  api_key?: never;
63326
63349
  access_token?: never;
63350
+ client_session_with_customer?: never;
63351
+ client_session?: never;
63352
+ } | {
63353
+ client_session_with_customer: never[];
63354
+ api_key?: never;
63355
+ access_token?: never;
63356
+ console_session_with_workspace?: never;
63327
63357
  client_session?: never;
63328
63358
  } | {
63329
63359
  client_session: never[];
63330
63360
  api_key?: never;
63331
63361
  access_token?: never;
63332
63362
  console_session_with_workspace?: never;
63363
+ client_session_with_customer?: never;
63333
63364
  })[];
63334
63365
  summary: string;
63335
63366
  tags: string[];
@@ -108435,6 +108466,8 @@ type Routes = {
108435
108466
  created_before?: Date | undefined;
108436
108467
  /** Indicates whether you want to retrieve only multi-phone sync credentials or non-multi-phone sync credentials. */
108437
108468
  is_multi_phone_sync_credential?: boolean | undefined;
108469
+ /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
108470
+ page_cursor?: (string | undefined) | null;
108438
108471
  };
108439
108472
  formData: {};
108440
108473
  jsonResponse: {
@@ -108569,6 +108602,15 @@ type Routes = {
108569
108602
  } | undefined;
108570
108603
  is_managed: true;
108571
108604
  }[];
108605
+ /** Information about the current page of results. */
108606
+ pagination: {
108607
+ /** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
108608
+ next_page_cursor: string | null;
108609
+ /** Indicates whether there is another page of results after this one. */
108610
+ has_next_page: boolean;
108611
+ /** URL to get the next page of results. */
108612
+ next_page_url: string | null;
108613
+ };
108572
108614
  };
108573
108615
  };
108574
108616
  '/acs/credentials/list_accessible_entrances': {
package/dist/index.cjs CHANGED
@@ -33924,9 +33924,10 @@ var openapi_default = {
33924
33924
  items: { $ref: "#/components/schemas/acs_credential" },
33925
33925
  type: "array"
33926
33926
  },
33927
- ok: { type: "boolean" }
33927
+ ok: { type: "boolean" },
33928
+ pagination: { $ref: "#/components/schemas/pagination" }
33928
33929
  },
33929
- required: ["acs_credentials", "ok"],
33930
+ required: ["acs_credentials", "pagination", "ok"],
33930
33931
  type: "object"
33931
33932
  }
33932
33933
  }
@@ -34028,6 +34029,11 @@ var openapi_default = {
34028
34029
  description: "Number of credentials to return.",
34029
34030
  format: "float",
34030
34031
  type: "number"
34032
+ },
34033
+ page_cursor: {
34034
+ description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
34035
+ nullable: true,
34036
+ type: "string"
34031
34037
  }
34032
34038
  },
34033
34039
  type: "object"
@@ -34047,9 +34053,10 @@ var openapi_default = {
34047
34053
  items: { $ref: "#/components/schemas/acs_credential" },
34048
34054
  type: "array"
34049
34055
  },
34050
- ok: { type: "boolean" }
34056
+ ok: { type: "boolean" },
34057
+ pagination: { $ref: "#/components/schemas/pagination" }
34051
34058
  },
34052
- required: ["acs_credentials", "ok"],
34059
+ required: ["acs_credentials", "pagination", "ok"],
34053
34060
  type: "object"
34054
34061
  }
34055
34062
  }
@@ -35415,6 +35422,7 @@ var openapi_default = {
35415
35422
  { api_key: [] },
35416
35423
  { access_token: [] },
35417
35424
  { console_session_with_workspace: [] },
35425
+ { client_session_with_customer: [] },
35418
35426
  { client_session: [] }
35419
35427
  ],
35420
35428
  summary: "/acs/entrances/get",
@@ -35468,6 +35476,7 @@ var openapi_default = {
35468
35476
  { api_key: [] },
35469
35477
  { access_token: [] },
35470
35478
  { console_session_with_workspace: [] },
35479
+ { client_session_with_customer: [] },
35471
35480
  { client_session: [] }
35472
35481
  ],
35473
35482
  summary: "/acs/entrances/get",