@seamapi/types 1.706.0 → 1.708.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.
@@ -73011,11 +73011,28 @@ declare const _default: {
73011
73011
  description: string;
73012
73012
  operationId: string;
73013
73013
  parameters: ({
73014
+ in: string;
73015
+ name: string;
73016
+ schema: {
73017
+ description: string;
73018
+ items: {
73019
+ format: string;
73020
+ type: string;
73021
+ };
73022
+ type: string;
73023
+ default?: never;
73024
+ format?: never;
73025
+ nullable?: never;
73026
+ deprecated?: never;
73027
+ 'x-deprecated'?: never;
73028
+ };
73029
+ } | {
73014
73030
  in: string;
73015
73031
  name: string;
73016
73032
  schema: {
73017
73033
  description: string;
73018
73034
  type: string;
73035
+ items?: never;
73019
73036
  default?: never;
73020
73037
  format?: never;
73021
73038
  nullable?: never;
@@ -73030,6 +73047,7 @@ declare const _default: {
73030
73047
  description: string;
73031
73048
  format: string;
73032
73049
  type: string;
73050
+ items?: never;
73033
73051
  nullable?: never;
73034
73052
  deprecated?: never;
73035
73053
  'x-deprecated'?: never;
@@ -73041,6 +73059,7 @@ declare const _default: {
73041
73059
  description: string;
73042
73060
  nullable: boolean;
73043
73061
  type: string;
73062
+ items?: never;
73044
73063
  default?: never;
73045
73064
  format?: never;
73046
73065
  deprecated?: never;
@@ -73053,6 +73072,7 @@ declare const _default: {
73053
73072
  description: string;
73054
73073
  format: string;
73055
73074
  type: string;
73075
+ items?: never;
73056
73076
  default?: never;
73057
73077
  nullable?: never;
73058
73078
  deprecated?: never;
@@ -73067,6 +73087,7 @@ declare const _default: {
73067
73087
  type: string;
73068
73088
  'x-deprecated': string;
73069
73089
  description?: never;
73090
+ items?: never;
73070
73091
  default?: never;
73071
73092
  nullable?: never;
73072
73093
  };
@@ -73142,6 +73163,14 @@ declare const _default: {
73142
73163
  'application/json': {
73143
73164
  schema: {
73144
73165
  properties: {
73166
+ access_grant_ids: {
73167
+ description: string;
73168
+ items: {
73169
+ format: string;
73170
+ type: string;
73171
+ };
73172
+ type: string;
73173
+ };
73145
73174
  access_grant_key: {
73146
73175
  description: string;
73147
73176
  type: string;
@@ -127057,6 +127086,8 @@ type Routes = {
127057
127086
  queryParams: {};
127058
127087
  jsonBody: {};
127059
127088
  commonParams: {
127089
+ /** IDs of the access grants to retrieve. */
127090
+ access_grant_ids?: string[] | undefined;
127060
127091
  /** Customer key for which you want to list access grants. */
127061
127092
  customer_key?: string | undefined;
127062
127093
  /** Numerical limit on the number of access grants to return. */
package/dist/index.cjs CHANGED
@@ -32921,6 +32921,15 @@ var openapi_default = {
32921
32921
  description: "Gets an Access Grant.",
32922
32922
  operationId: "accessGrantsListGet",
32923
32923
  parameters: [
32924
+ {
32925
+ in: "query",
32926
+ name: "access_grant_ids",
32927
+ schema: {
32928
+ description: "IDs of the access grants to retrieve.",
32929
+ items: { format: "uuid", type: "string" },
32930
+ type: "array"
32931
+ }
32932
+ },
32924
32933
  {
32925
32934
  in: "query",
32926
32935
  name: "customer_key",
@@ -33057,6 +33066,11 @@ var openapi_default = {
33057
33066
  "application/json": {
33058
33067
  schema: {
33059
33068
  properties: {
33069
+ access_grant_ids: {
33070
+ description: "IDs of the access grants to retrieve.",
33071
+ items: { format: "uuid", type: "string" },
33072
+ type: "array"
33073
+ },
33060
33074
  access_grant_key: {
33061
33075
  description: "Filter Access Grants by access_grant_key.",
33062
33076
  type: "string"