@seamapi/types 1.262.1 → 1.263.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.
@@ -15533,6 +15533,189 @@ declare const _default: {
15533
15533
  'x-response-key': null;
15534
15534
  };
15535
15535
  };
15536
+ '/access_codes/update_multiple': {
15537
+ patch: {
15538
+ operationId: string;
15539
+ requestBody: {
15540
+ content: {
15541
+ 'application/json': {
15542
+ schema: {
15543
+ properties: {
15544
+ allow_external_modification: {
15545
+ type: string;
15546
+ };
15547
+ code: {
15548
+ maxLength: number;
15549
+ minLength: number;
15550
+ pattern: string;
15551
+ type: string;
15552
+ };
15553
+ common_code_key: {
15554
+ type: string;
15555
+ };
15556
+ ends_at: {
15557
+ type: string;
15558
+ };
15559
+ is_external_modification_allowed: {
15560
+ type: string;
15561
+ };
15562
+ name: {
15563
+ type: string;
15564
+ };
15565
+ prefer_native_scheduling: {
15566
+ type: string;
15567
+ };
15568
+ starts_at: {
15569
+ type: string;
15570
+ };
15571
+ };
15572
+ required: string[];
15573
+ type: string;
15574
+ };
15575
+ };
15576
+ };
15577
+ };
15578
+ responses: {
15579
+ 200: {
15580
+ content: {
15581
+ 'application/json': {
15582
+ schema: {
15583
+ properties: {
15584
+ ok: {
15585
+ type: string;
15586
+ };
15587
+ };
15588
+ required: string[];
15589
+ type: string;
15590
+ };
15591
+ };
15592
+ };
15593
+ description: string;
15594
+ };
15595
+ 400: {
15596
+ description: string;
15597
+ };
15598
+ 401: {
15599
+ description: string;
15600
+ };
15601
+ };
15602
+ security: ({
15603
+ client_session: never[];
15604
+ pat_with_workspace?: never;
15605
+ console_session?: never;
15606
+ api_key?: never;
15607
+ } | {
15608
+ pat_with_workspace: never[];
15609
+ client_session?: never;
15610
+ console_session?: never;
15611
+ api_key?: never;
15612
+ } | {
15613
+ console_session: never[];
15614
+ client_session?: never;
15615
+ pat_with_workspace?: never;
15616
+ api_key?: never;
15617
+ } | {
15618
+ api_key: never[];
15619
+ client_session?: never;
15620
+ pat_with_workspace?: never;
15621
+ console_session?: never;
15622
+ })[];
15623
+ summary: string;
15624
+ tags: string[];
15625
+ 'x-fern-ignore': boolean;
15626
+ };
15627
+ post: {
15628
+ operationId: string;
15629
+ requestBody: {
15630
+ content: {
15631
+ 'application/json': {
15632
+ schema: {
15633
+ properties: {
15634
+ allow_external_modification: {
15635
+ type: string;
15636
+ };
15637
+ code: {
15638
+ maxLength: number;
15639
+ minLength: number;
15640
+ pattern: string;
15641
+ type: string;
15642
+ };
15643
+ common_code_key: {
15644
+ type: string;
15645
+ };
15646
+ ends_at: {
15647
+ type: string;
15648
+ };
15649
+ is_external_modification_allowed: {
15650
+ type: string;
15651
+ };
15652
+ name: {
15653
+ type: string;
15654
+ };
15655
+ prefer_native_scheduling: {
15656
+ type: string;
15657
+ };
15658
+ starts_at: {
15659
+ type: string;
15660
+ };
15661
+ };
15662
+ required: string[];
15663
+ type: string;
15664
+ };
15665
+ };
15666
+ };
15667
+ };
15668
+ responses: {
15669
+ 200: {
15670
+ content: {
15671
+ 'application/json': {
15672
+ schema: {
15673
+ properties: {
15674
+ ok: {
15675
+ type: string;
15676
+ };
15677
+ };
15678
+ required: string[];
15679
+ type: string;
15680
+ };
15681
+ };
15682
+ };
15683
+ description: string;
15684
+ };
15685
+ 400: {
15686
+ description: string;
15687
+ };
15688
+ 401: {
15689
+ description: string;
15690
+ };
15691
+ };
15692
+ security: ({
15693
+ client_session: never[];
15694
+ pat_with_workspace?: never;
15695
+ console_session?: never;
15696
+ api_key?: never;
15697
+ } | {
15698
+ pat_with_workspace: never[];
15699
+ client_session?: never;
15700
+ console_session?: never;
15701
+ api_key?: never;
15702
+ } | {
15703
+ console_session: never[];
15704
+ client_session?: never;
15705
+ pat_with_workspace?: never;
15706
+ api_key?: never;
15707
+ } | {
15708
+ api_key: never[];
15709
+ client_session?: never;
15710
+ pat_with_workspace?: never;
15711
+ console_session?: never;
15712
+ })[];
15713
+ summary: string;
15714
+ tags: string[];
15715
+ 'x-fern-sdk-group-name': string[];
15716
+ 'x-fern-sdk-method-name': string;
15717
+ };
15718
+ };
15536
15719
  '/acs/access_groups/add_user': {
15537
15720
  post: {
15538
15721
  operationId: string;
@@ -30908,6 +31091,24 @@ interface Routes {
30908
31091
  };
30909
31092
  };
30910
31093
  };
31094
+ '/access_codes/update_multiple': {
31095
+ route: '/access_codes/update_multiple';
31096
+ method: 'POST' | 'PATCH';
31097
+ queryParams: {};
31098
+ jsonBody: {
31099
+ allow_external_modification?: boolean | undefined;
31100
+ is_external_modification_allowed?: boolean | undefined;
31101
+ code?: string | undefined;
31102
+ ends_at?: string | undefined;
31103
+ starts_at?: string | undefined;
31104
+ name?: string | undefined;
31105
+ prefer_native_scheduling?: boolean | undefined;
31106
+ common_code_key: string;
31107
+ };
31108
+ commonParams: {};
31109
+ formData: {};
31110
+ jsonResponse: {};
31111
+ };
30911
31112
  '/acs/access_groups/add_user': {
30912
31113
  route: '/acs/access_groups/add_user';
30913
31114
  method: 'PUT' | 'POST';
@@ -5788,6 +5788,189 @@ declare const _default: {
5788
5788
  'x-response-key': null;
5789
5789
  };
5790
5790
  };
5791
+ '/access_codes/update_multiple': {
5792
+ patch: {
5793
+ operationId: string;
5794
+ requestBody: {
5795
+ content: {
5796
+ 'application/json': {
5797
+ schema: {
5798
+ properties: {
5799
+ allow_external_modification: {
5800
+ type: string;
5801
+ };
5802
+ code: {
5803
+ maxLength: number;
5804
+ minLength: number;
5805
+ pattern: string;
5806
+ type: string;
5807
+ };
5808
+ common_code_key: {
5809
+ type: string;
5810
+ };
5811
+ ends_at: {
5812
+ type: string;
5813
+ };
5814
+ is_external_modification_allowed: {
5815
+ type: string;
5816
+ };
5817
+ name: {
5818
+ type: string;
5819
+ };
5820
+ prefer_native_scheduling: {
5821
+ type: string;
5822
+ };
5823
+ starts_at: {
5824
+ type: string;
5825
+ };
5826
+ };
5827
+ required: string[];
5828
+ type: string;
5829
+ };
5830
+ };
5831
+ };
5832
+ };
5833
+ responses: {
5834
+ 200: {
5835
+ content: {
5836
+ 'application/json': {
5837
+ schema: {
5838
+ properties: {
5839
+ ok: {
5840
+ type: string;
5841
+ };
5842
+ };
5843
+ required: string[];
5844
+ type: string;
5845
+ };
5846
+ };
5847
+ };
5848
+ description: string;
5849
+ };
5850
+ 400: {
5851
+ description: string;
5852
+ };
5853
+ 401: {
5854
+ description: string;
5855
+ };
5856
+ };
5857
+ security: ({
5858
+ client_session: never[];
5859
+ pat_with_workspace?: never;
5860
+ console_session?: never;
5861
+ api_key?: never;
5862
+ } | {
5863
+ pat_with_workspace: never[];
5864
+ client_session?: never;
5865
+ console_session?: never;
5866
+ api_key?: never;
5867
+ } | {
5868
+ console_session: never[];
5869
+ client_session?: never;
5870
+ pat_with_workspace?: never;
5871
+ api_key?: never;
5872
+ } | {
5873
+ api_key: never[];
5874
+ client_session?: never;
5875
+ pat_with_workspace?: never;
5876
+ console_session?: never;
5877
+ })[];
5878
+ summary: string;
5879
+ tags: string[];
5880
+ 'x-fern-ignore': boolean;
5881
+ };
5882
+ post: {
5883
+ operationId: string;
5884
+ requestBody: {
5885
+ content: {
5886
+ 'application/json': {
5887
+ schema: {
5888
+ properties: {
5889
+ allow_external_modification: {
5890
+ type: string;
5891
+ };
5892
+ code: {
5893
+ maxLength: number;
5894
+ minLength: number;
5895
+ pattern: string;
5896
+ type: string;
5897
+ };
5898
+ common_code_key: {
5899
+ type: string;
5900
+ };
5901
+ ends_at: {
5902
+ type: string;
5903
+ };
5904
+ is_external_modification_allowed: {
5905
+ type: string;
5906
+ };
5907
+ name: {
5908
+ type: string;
5909
+ };
5910
+ prefer_native_scheduling: {
5911
+ type: string;
5912
+ };
5913
+ starts_at: {
5914
+ type: string;
5915
+ };
5916
+ };
5917
+ required: string[];
5918
+ type: string;
5919
+ };
5920
+ };
5921
+ };
5922
+ };
5923
+ responses: {
5924
+ 200: {
5925
+ content: {
5926
+ 'application/json': {
5927
+ schema: {
5928
+ properties: {
5929
+ ok: {
5930
+ type: string;
5931
+ };
5932
+ };
5933
+ required: string[];
5934
+ type: string;
5935
+ };
5936
+ };
5937
+ };
5938
+ description: string;
5939
+ };
5940
+ 400: {
5941
+ description: string;
5942
+ };
5943
+ 401: {
5944
+ description: string;
5945
+ };
5946
+ };
5947
+ security: ({
5948
+ client_session: never[];
5949
+ pat_with_workspace?: never;
5950
+ console_session?: never;
5951
+ api_key?: never;
5952
+ } | {
5953
+ pat_with_workspace: never[];
5954
+ client_session?: never;
5955
+ console_session?: never;
5956
+ api_key?: never;
5957
+ } | {
5958
+ console_session: never[];
5959
+ client_session?: never;
5960
+ pat_with_workspace?: never;
5961
+ api_key?: never;
5962
+ } | {
5963
+ api_key: never[];
5964
+ client_session?: never;
5965
+ pat_with_workspace?: never;
5966
+ console_session?: never;
5967
+ })[];
5968
+ summary: string;
5969
+ tags: string[];
5970
+ 'x-fern-sdk-group-name': string[];
5971
+ 'x-fern-sdk-method-name': string;
5972
+ };
5973
+ };
5791
5974
  '/acs/access_groups/add_user': {
5792
5975
  post: {
5793
5976
  operationId: string;
@@ -5744,6 +5744,115 @@ export default {
5744
5744
  'x-response-key': null,
5745
5745
  },
5746
5746
  },
5747
+ '/access_codes/update_multiple': {
5748
+ patch: {
5749
+ operationId: 'accessCodesUpdateMultiplePatch',
5750
+ requestBody: {
5751
+ content: {
5752
+ 'application/json': {
5753
+ schema: {
5754
+ properties: {
5755
+ allow_external_modification: { type: 'boolean' },
5756
+ code: {
5757
+ maxLength: 9,
5758
+ minLength: 4,
5759
+ pattern: '^\\d+$',
5760
+ type: 'string',
5761
+ },
5762
+ common_code_key: { type: 'string' },
5763
+ ends_at: { type: 'string' },
5764
+ is_external_modification_allowed: { type: 'boolean' },
5765
+ name: { type: 'string' },
5766
+ prefer_native_scheduling: { type: 'boolean' },
5767
+ starts_at: { type: 'string' },
5768
+ },
5769
+ required: ['common_code_key'],
5770
+ type: 'object',
5771
+ },
5772
+ },
5773
+ },
5774
+ },
5775
+ responses: {
5776
+ 200: {
5777
+ content: {
5778
+ 'application/json': {
5779
+ schema: {
5780
+ properties: { ok: { type: 'boolean' } },
5781
+ required: ['ok'],
5782
+ type: 'object',
5783
+ },
5784
+ },
5785
+ },
5786
+ description: 'OK',
5787
+ },
5788
+ 400: { description: 'Bad Request' },
5789
+ 401: { description: 'Unauthorized' },
5790
+ },
5791
+ security: [
5792
+ { client_session: [] },
5793
+ { pat_with_workspace: [] },
5794
+ { console_session: [] },
5795
+ { api_key: [] },
5796
+ ],
5797
+ summary: '/access_codes/update_multiple',
5798
+ tags: ['/access_codes'],
5799
+ 'x-fern-ignore': true,
5800
+ },
5801
+ post: {
5802
+ operationId: 'accessCodesUpdateMultiplePost',
5803
+ requestBody: {
5804
+ content: {
5805
+ 'application/json': {
5806
+ schema: {
5807
+ properties: {
5808
+ allow_external_modification: { type: 'boolean' },
5809
+ code: {
5810
+ maxLength: 9,
5811
+ minLength: 4,
5812
+ pattern: '^\\d+$',
5813
+ type: 'string',
5814
+ },
5815
+ common_code_key: { type: 'string' },
5816
+ ends_at: { type: 'string' },
5817
+ is_external_modification_allowed: { type: 'boolean' },
5818
+ name: { type: 'string' },
5819
+ prefer_native_scheduling: { type: 'boolean' },
5820
+ starts_at: { type: 'string' },
5821
+ },
5822
+ required: ['common_code_key'],
5823
+ type: 'object',
5824
+ },
5825
+ },
5826
+ },
5827
+ },
5828
+ responses: {
5829
+ 200: {
5830
+ content: {
5831
+ 'application/json': {
5832
+ schema: {
5833
+ properties: { ok: { type: 'boolean' } },
5834
+ required: ['ok'],
5835
+ type: 'object',
5836
+ },
5837
+ },
5838
+ },
5839
+ description: 'OK',
5840
+ },
5841
+ 400: { description: 'Bad Request' },
5842
+ 401: { description: 'Unauthorized' },
5843
+ },
5844
+ security: [
5845
+ { client_session: [] },
5846
+ { pat_with_workspace: [] },
5847
+ { console_session: [] },
5848
+ { api_key: [] },
5849
+ ],
5850
+ summary: '/access_codes/update_multiple',
5851
+ tags: ['/access_codes'],
5852
+ 'x-fern-sdk-group-name': ['access_codes'],
5853
+ 'x-fern-sdk-method-name': 'update_multiple',
5854
+ },
5855
+ },
5747
5856
  '/acs/access_groups/add_user': {
5748
5857
  post: {
5749
5858
  operationId: 'acsAccessGroupsAddUserPost',