@seamapi/types 1.707.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,9 +19655,13 @@ declare const _default: {
19655
19655
  name: string;
19656
19656
  schema: {
19657
19657
  description: string;
19658
- format: string;
19658
+ items: {
19659
+ format: string;
19660
+ type: string;
19661
+ };
19659
19662
  type: string;
19660
19663
  default?: never;
19664
+ format?: never;
19661
19665
  nullable?: never;
19662
19666
  deprecated?: never;
19663
19667
  'x-deprecated'?: never;
@@ -19668,8 +19672,9 @@ declare const _default: {
19668
19672
  schema: {
19669
19673
  description: string;
19670
19674
  type: string;
19671
- format?: never;
19675
+ items?: never;
19672
19676
  default?: never;
19677
+ format?: never;
19673
19678
  nullable?: never;
19674
19679
  deprecated?: never;
19675
19680
  'x-deprecated'?: never;
@@ -19682,6 +19687,7 @@ declare const _default: {
19682
19687
  description: string;
19683
19688
  format: string;
19684
19689
  type: string;
19690
+ items?: never;
19685
19691
  nullable?: never;
19686
19692
  deprecated?: never;
19687
19693
  'x-deprecated'?: never;
@@ -19693,8 +19699,22 @@ declare const _default: {
19693
19699
  description: string;
19694
19700
  nullable: boolean;
19695
19701
  type: string;
19702
+ items?: never;
19703
+ default?: never;
19696
19704
  format?: never;
19705
+ deprecated?: never;
19706
+ 'x-deprecated'?: never;
19707
+ };
19708
+ } | {
19709
+ in: string;
19710
+ name: string;
19711
+ schema: {
19712
+ description: string;
19713
+ format: string;
19714
+ type: string;
19715
+ items?: never;
19697
19716
  default?: never;
19717
+ nullable?: never;
19698
19718
  deprecated?: never;
19699
19719
  'x-deprecated'?: never;
19700
19720
  };
@@ -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,9 +19803,12 @@ declare const _default: {
19782
19803
  'application/json': {
19783
19804
  schema: {
19784
19805
  properties: {
19785
- access_grant_id: {
19806
+ access_grant_ids: {
19786
19807
  description: string;
19787
- format: string;
19808
+ items: {
19809
+ format: string;
19810
+ type: string;
19811
+ };
19788
19812
  type: string;
19789
19813
  };
19790
19814
  access_grant_key: {
@@ -26914,11 +26914,11 @@ export default {
26914
26914
  parameters: [
26915
26915
  {
26916
26916
  in: 'query',
26917
- name: 'access_grant_id',
26917
+ name: 'access_grant_ids',
26918
26918
  schema: {
26919
- description: 'ID of the access grant to retrieve.',
26920
- format: 'uuid',
26921
- type: 'string',
26919
+ description: 'IDs of the access grants to retrieve.',
26920
+ items: { format: 'uuid', type: 'string' },
26921
+ type: 'array',
26922
26922
  },
26923
26923
  },
26924
26924
  {
@@ -27057,10 +27057,10 @@ export default {
27057
27057
  'application/json': {
27058
27058
  schema: {
27059
27059
  properties: {
27060
- access_grant_id: {
27061
- description: 'ID of the access grant to retrieve.',
27062
- format: 'uuid',
27063
- type: 'string',
27060
+ access_grant_ids: {
27061
+ description: 'IDs of the access grants to retrieve.',
27062
+ items: { format: 'uuid', type: 'string' },
27063
+ type: 'array',
27064
27064
  },
27065
27065
  access_grant_key: {
27066
27066
  description: 'Filter Access Grants by access_grant_key.',