@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.
@@ -19655,6 +19655,10 @@ declare const _default: {
19655
19655
  name: string;
19656
19656
  schema: {
19657
19657
  description: string;
19658
+ items: {
19659
+ format: string;
19660
+ type: string;
19661
+ };
19658
19662
  type: string;
19659
19663
  default?: never;
19660
19664
  format?: never;
@@ -19662,6 +19666,19 @@ declare const _default: {
19662
19666
  deprecated?: never;
19663
19667
  'x-deprecated'?: never;
19664
19668
  };
19669
+ } | {
19670
+ in: string;
19671
+ name: string;
19672
+ schema: {
19673
+ description: string;
19674
+ type: string;
19675
+ items?: never;
19676
+ default?: never;
19677
+ format?: never;
19678
+ nullable?: never;
19679
+ deprecated?: never;
19680
+ 'x-deprecated'?: never;
19681
+ };
19665
19682
  } | {
19666
19683
  in: string;
19667
19684
  name: string;
@@ -19670,6 +19687,7 @@ declare const _default: {
19670
19687
  description: string;
19671
19688
  format: string;
19672
19689
  type: string;
19690
+ items?: never;
19673
19691
  nullable?: never;
19674
19692
  deprecated?: never;
19675
19693
  'x-deprecated'?: never;
@@ -19681,6 +19699,7 @@ declare const _default: {
19681
19699
  description: string;
19682
19700
  nullable: boolean;
19683
19701
  type: string;
19702
+ items?: never;
19684
19703
  default?: never;
19685
19704
  format?: never;
19686
19705
  deprecated?: never;
@@ -19693,6 +19712,7 @@ declare const _default: {
19693
19712
  description: string;
19694
19713
  format: string;
19695
19714
  type: string;
19715
+ items?: never;
19696
19716
  default?: never;
19697
19717
  nullable?: never;
19698
19718
  deprecated?: never;
@@ -19707,6 +19727,7 @@ declare const _default: {
19707
19727
  type: string;
19708
19728
  'x-deprecated': string;
19709
19729
  description?: never;
19730
+ items?: never;
19710
19731
  default?: never;
19711
19732
  nullable?: never;
19712
19733
  };
@@ -19782,6 +19803,14 @@ declare const _default: {
19782
19803
  'application/json': {
19783
19804
  schema: {
19784
19805
  properties: {
19806
+ access_grant_ids: {
19807
+ description: string;
19808
+ items: {
19809
+ format: string;
19810
+ type: string;
19811
+ };
19812
+ type: string;
19813
+ };
19785
19814
  access_grant_key: {
19786
19815
  description: string;
19787
19816
  type: string;
@@ -26912,6 +26912,15 @@ export default {
26912
26912
  description: 'Gets an Access Grant.',
26913
26913
  operationId: 'accessGrantsListGet',
26914
26914
  parameters: [
26915
+ {
26916
+ in: 'query',
26917
+ name: 'access_grant_ids',
26918
+ schema: {
26919
+ description: 'IDs of the access grants to retrieve.',
26920
+ items: { format: 'uuid', type: 'string' },
26921
+ type: 'array',
26922
+ },
26923
+ },
26915
26924
  {
26916
26925
  in: 'query',
26917
26926
  name: 'customer_key',
@@ -27048,6 +27057,11 @@ export default {
27048
27057
  'application/json': {
27049
27058
  schema: {
27050
27059
  properties: {
27060
+ access_grant_ids: {
27061
+ description: 'IDs of the access grants to retrieve.',
27062
+ items: { format: 'uuid', type: 'string' },
27063
+ type: 'array',
27064
+ },
27051
27065
  access_grant_key: {
27052
27066
  description: 'Filter Access Grants by access_grant_key.',
27053
27067
  type: 'string',