@seamapi/types 1.100.0 → 1.102.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.
@@ -5322,6 +5322,10 @@ declare const _default: {
5322
5322
  is_multi_phone_sync_credential: {
5323
5323
  type: string;
5324
5324
  };
5325
+ parent_credential_id: {
5326
+ format: string;
5327
+ type: string;
5328
+ };
5325
5329
  starts_at: {
5326
5330
  type: string;
5327
5331
  };
@@ -5455,6 +5459,10 @@ declare const _default: {
5455
5459
  is_multi_phone_sync_credential: {
5456
5460
  type: string;
5457
5461
  };
5462
+ parent_credential_id: {
5463
+ format: string;
5464
+ type: string;
5465
+ };
5458
5466
  starts_at: {
5459
5467
  type: string;
5460
5468
  };
@@ -5633,6 +5641,10 @@ declare const _default: {
5633
5641
  is_multi_phone_sync_credential: {
5634
5642
  type: string;
5635
5643
  };
5644
+ parent_credential_id: {
5645
+ format: string;
5646
+ type: string;
5647
+ };
5636
5648
  starts_at: {
5637
5649
  type: string;
5638
5650
  };
@@ -5827,6 +5839,10 @@ declare const _default: {
5827
5839
  is_multi_phone_sync_credential: {
5828
5840
  type: string;
5829
5841
  };
5842
+ parent_credential_id: {
5843
+ format: string;
5844
+ type: string;
5845
+ };
5830
5846
  starts_at: {
5831
5847
  type: string;
5832
5848
  };
@@ -6000,6 +6016,10 @@ declare const _default: {
6000
6016
  is_multi_phone_sync_credential: {
6001
6017
  type: string;
6002
6018
  };
6019
+ parent_credential_id: {
6020
+ format: string;
6021
+ type: string;
6022
+ };
6003
6023
  starts_at: {
6004
6024
  type: string;
6005
6025
  };
@@ -6146,6 +6166,10 @@ declare const _default: {
6146
6166
  is_multi_phone_sync_credential: {
6147
6167
  type: string;
6148
6168
  };
6169
+ parent_credential_id: {
6170
+ format: string;
6171
+ type: string;
6172
+ };
6149
6173
  starts_at: {
6150
6174
  type: string;
6151
6175
  };
@@ -6279,6 +6303,10 @@ declare const _default: {
6279
6303
  is_multi_phone_sync_credential: {
6280
6304
  type: string;
6281
6305
  };
6306
+ parent_credential_id: {
6307
+ format: string;
6308
+ type: string;
6309
+ };
6282
6310
  starts_at: {
6283
6311
  type: string;
6284
6312
  };
@@ -6414,6 +6442,10 @@ declare const _default: {
6414
6442
  is_multi_phone_sync_credential: {
6415
6443
  type: string;
6416
6444
  };
6445
+ parent_credential_id: {
6446
+ format: string;
6447
+ type: string;
6448
+ };
6417
6449
  starts_at: {
6418
6450
  type: string;
6419
6451
  };
@@ -6546,6 +6578,10 @@ declare const _default: {
6546
6578
  is_multi_phone_sync_credential: {
6547
6579
  type: string;
6548
6580
  };
6581
+ parent_credential_id: {
6582
+ format: string;
6583
+ type: string;
6584
+ };
6549
6585
  starts_at: {
6550
6586
  type: string;
6551
6587
  };
@@ -7000,6 +7036,10 @@ declare const _default: {
7000
7036
  is_multi_phone_sync_credential: {
7001
7037
  type: string;
7002
7038
  };
7039
+ parent_credential_id: {
7040
+ format: string;
7041
+ type: string;
7042
+ };
7003
7043
  starts_at: {
7004
7044
  type: string;
7005
7045
  };
@@ -15664,6 +15704,143 @@ declare const _default: {
15664
15704
  'x-fern-sdk-return-value': string;
15665
15705
  };
15666
15706
  };
15707
+ '/webhooks/update': {
15708
+ post: {
15709
+ operationId: string;
15710
+ requestBody: {
15711
+ content: {
15712
+ 'application/json': {
15713
+ schema: {
15714
+ properties: {
15715
+ event_types: {
15716
+ items: {
15717
+ type: string;
15718
+ };
15719
+ type: string;
15720
+ };
15721
+ webhook_id: {
15722
+ type: string;
15723
+ };
15724
+ };
15725
+ required: string[];
15726
+ type: string;
15727
+ };
15728
+ };
15729
+ };
15730
+ };
15731
+ responses: {
15732
+ 200: {
15733
+ content: {
15734
+ 'application/json': {
15735
+ schema: {
15736
+ properties: {
15737
+ ok: {
15738
+ type: string;
15739
+ };
15740
+ };
15741
+ required: string[];
15742
+ type: string;
15743
+ };
15744
+ };
15745
+ };
15746
+ description: string;
15747
+ };
15748
+ 400: {
15749
+ description: string;
15750
+ };
15751
+ 401: {
15752
+ description: string;
15753
+ };
15754
+ };
15755
+ security: ({
15756
+ access_token: never[];
15757
+ seam_workspace: never[];
15758
+ seam_client_session_token?: never;
15759
+ client_session_token?: never;
15760
+ } | {
15761
+ seam_client_session_token: never[];
15762
+ access_token?: never;
15763
+ seam_workspace?: never;
15764
+ client_session_token?: never;
15765
+ } | {
15766
+ client_session_token: never[];
15767
+ access_token?: never;
15768
+ seam_workspace?: never;
15769
+ seam_client_session_token?: never;
15770
+ })[];
15771
+ summary: string;
15772
+ tags: string[];
15773
+ 'x-fern-sdk-group-name': string[];
15774
+ 'x-fern-sdk-method-name': string;
15775
+ };
15776
+ put: {
15777
+ operationId: string;
15778
+ requestBody: {
15779
+ content: {
15780
+ 'application/json': {
15781
+ schema: {
15782
+ properties: {
15783
+ event_types: {
15784
+ items: {
15785
+ type: string;
15786
+ };
15787
+ type: string;
15788
+ };
15789
+ webhook_id: {
15790
+ type: string;
15791
+ };
15792
+ };
15793
+ required: string[];
15794
+ type: string;
15795
+ };
15796
+ };
15797
+ };
15798
+ };
15799
+ responses: {
15800
+ 200: {
15801
+ content: {
15802
+ 'application/json': {
15803
+ schema: {
15804
+ properties: {
15805
+ ok: {
15806
+ type: string;
15807
+ };
15808
+ };
15809
+ required: string[];
15810
+ type: string;
15811
+ };
15812
+ };
15813
+ };
15814
+ description: string;
15815
+ };
15816
+ 400: {
15817
+ description: string;
15818
+ };
15819
+ 401: {
15820
+ description: string;
15821
+ };
15822
+ };
15823
+ security: ({
15824
+ access_token: never[];
15825
+ seam_workspace: never[];
15826
+ seam_client_session_token?: never;
15827
+ client_session_token?: never;
15828
+ } | {
15829
+ seam_client_session_token: never[];
15830
+ access_token?: never;
15831
+ seam_workspace?: never;
15832
+ client_session_token?: never;
15833
+ } | {
15834
+ client_session_token: never[];
15835
+ access_token?: never;
15836
+ seam_workspace?: never;
15837
+ seam_client_session_token?: never;
15838
+ })[];
15839
+ summary: string;
15840
+ tags: string[];
15841
+ 'x-fern-ignore': boolean;
15842
+ };
15843
+ };
15667
15844
  '/workspaces/create': {
15668
15845
  post: {
15669
15846
  operationId: string;
@@ -16868,6 +17045,7 @@ interface Routes {
16868
17045
  acs_user_id?: string | undefined;
16869
17046
  acs_credential_pool_id?: string | undefined;
16870
17047
  acs_system_id: string;
17048
+ parent_credential_id?: string | undefined;
16871
17049
  display_name: string;
16872
17050
  code?: (string | undefined) | null;
16873
17051
  access_method: 'code' | 'card' | 'mobile_key';
@@ -16911,6 +17089,7 @@ interface Routes {
16911
17089
  acs_user_id?: string | undefined;
16912
17090
  acs_credential_pool_id?: string | undefined;
16913
17091
  acs_system_id: string;
17092
+ parent_credential_id?: string | undefined;
16914
17093
  display_name: string;
16915
17094
  code?: (string | undefined) | null;
16916
17095
  access_method: 'code' | 'card' | 'mobile_key';
@@ -16953,6 +17132,7 @@ interface Routes {
16953
17132
  acs_user_id?: string | undefined;
16954
17133
  acs_credential_pool_id?: string | undefined;
16955
17134
  acs_system_id: string;
17135
+ parent_credential_id?: string | undefined;
16956
17136
  display_name: string;
16957
17137
  code?: (string | undefined) | null;
16958
17138
  access_method: 'code' | 'card' | 'mobile_key';
@@ -16991,6 +17171,7 @@ interface Routes {
16991
17171
  acs_user_id?: string | undefined;
16992
17172
  acs_credential_pool_id?: string | undefined;
16993
17173
  acs_system_id: string;
17174
+ parent_credential_id?: string | undefined;
16994
17175
  display_name: string;
16995
17176
  code?: (string | undefined) | null;
16996
17177
  access_method: 'code' | 'card' | 'mobile_key';
@@ -17023,6 +17204,7 @@ interface Routes {
17023
17204
  acs_user_id?: string | undefined;
17024
17205
  acs_credential_pool_id?: string | undefined;
17025
17206
  acs_system_id: string;
17207
+ parent_credential_id?: string | undefined;
17026
17208
  display_name: string;
17027
17209
  code?: (string | undefined) | null;
17028
17210
  access_method: 'code' | 'card' | 'mobile_key';
@@ -17055,6 +17237,7 @@ interface Routes {
17055
17237
  acs_user_id?: string | undefined;
17056
17238
  acs_credential_pool_id?: string | undefined;
17057
17239
  acs_system_id: string;
17240
+ parent_credential_id?: string | undefined;
17058
17241
  display_name: string;
17059
17242
  code?: (string | undefined) | null;
17060
17243
  access_method: 'code' | 'card' | 'mobile_key';
@@ -17150,6 +17333,7 @@ interface Routes {
17150
17333
  acs_user_id?: string | undefined;
17151
17334
  acs_credential_pool_id?: string | undefined;
17152
17335
  acs_system_id: string;
17336
+ parent_credential_id?: string | undefined;
17153
17337
  display_name: string;
17154
17338
  code?: (string | undefined) | null;
17155
17339
  access_method: 'code' | 'card' | 'mobile_key';
@@ -18145,7 +18329,7 @@ interface Routes {
18145
18329
  }) & ({
18146
18330
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
18147
18331
  code_constraints?: (Array<{
18148
- constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future';
18332
+ constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits';
18149
18333
  } | {
18150
18334
  constraint_type: 'name_length';
18151
18335
  min_length?: number | undefined;
@@ -18629,7 +18813,7 @@ interface Routes {
18629
18813
  }) & ({
18630
18814
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
18631
18815
  code_constraints?: (Array<{
18632
- constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future';
18816
+ constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits';
18633
18817
  } | {
18634
18818
  constraint_type: 'name_length';
18635
18819
  min_length?: number | undefined;
@@ -19432,7 +19616,7 @@ interface Routes {
19432
19616
  }) & ({
19433
19617
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
19434
19618
  code_constraints?: (Array<{
19435
- constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future';
19619
+ constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits';
19436
19620
  } | {
19437
19621
  constraint_type: 'name_length';
19438
19622
  min_length?: number | undefined;
@@ -19893,7 +20077,7 @@ interface Routes {
19893
20077
  }) & ({
19894
20078
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
19895
20079
  code_constraints?: (Array<{
19896
- constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future';
20080
+ constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits';
19897
20081
  } | {
19898
20082
  constraint_type: 'name_length';
19899
20083
  min_length?: number | undefined;
@@ -20377,7 +20561,7 @@ interface Routes {
20377
20561
  }) & ({
20378
20562
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
20379
20563
  code_constraints?: (Array<{
20380
- constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future';
20564
+ constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits';
20381
20565
  } | {
20382
20566
  constraint_type: 'name_length';
20383
20567
  min_length?: number | undefined;
@@ -20838,7 +21022,7 @@ interface Routes {
20838
21022
  }) & ({
20839
21023
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
20840
21024
  code_constraints?: (Array<{
20841
- constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future';
21025
+ constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits';
20842
21026
  } | {
20843
21027
  constraint_type: 'name_length';
20844
21028
  min_length?: number | undefined;
@@ -21891,7 +22075,7 @@ interface Routes {
21891
22075
  }) & ({
21892
22076
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
21893
22077
  code_constraints?: (Array<{
21894
- constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future';
22078
+ constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits';
21895
22079
  } | {
21896
22080
  constraint_type: 'name_length';
21897
22081
  min_length?: number | undefined;
@@ -22405,7 +22589,7 @@ interface Routes {
22405
22589
  }) & ({
22406
22590
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
22407
22591
  code_constraints?: (Array<{
22408
- constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future';
22592
+ constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits';
22409
22593
  } | {
22410
22594
  constraint_type: 'name_length';
22411
22595
  min_length?: number | undefined;
@@ -23091,7 +23275,7 @@ interface Routes {
23091
23275
  }) & ({
23092
23276
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
23093
23277
  code_constraints?: (Array<{
23094
- constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future';
23278
+ constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits';
23095
23279
  } | {
23096
23280
  constraint_type: 'name_length';
23097
23281
  min_length?: number | undefined;
@@ -23464,6 +23648,18 @@ interface Routes {
23464
23648
  }>;
23465
23649
  };
23466
23650
  };
23651
+ '/webhooks/update': {
23652
+ route: '/webhooks/update';
23653
+ method: 'PUT' | 'POST';
23654
+ queryParams: {};
23655
+ jsonBody: {
23656
+ webhook_id: string;
23657
+ event_types: string[];
23658
+ };
23659
+ commonParams: {};
23660
+ formData: {};
23661
+ jsonResponse: {};
23662
+ };
23467
23663
  '/workspaces/create': {
23468
23664
  route: '/workspaces/create';
23469
23665
  method: 'POST';
@@ -5248,6 +5248,10 @@ declare const _default: {
5248
5248
  is_multi_phone_sync_credential: {
5249
5249
  type: string;
5250
5250
  };
5251
+ parent_credential_id: {
5252
+ format: string;
5253
+ type: string;
5254
+ };
5251
5255
  starts_at: {
5252
5256
  type: string;
5253
5257
  };
@@ -5381,6 +5385,10 @@ declare const _default: {
5381
5385
  is_multi_phone_sync_credential: {
5382
5386
  type: string;
5383
5387
  };
5388
+ parent_credential_id: {
5389
+ format: string;
5390
+ type: string;
5391
+ };
5384
5392
  starts_at: {
5385
5393
  type: string;
5386
5394
  };
@@ -5559,6 +5567,10 @@ declare const _default: {
5559
5567
  is_multi_phone_sync_credential: {
5560
5568
  type: string;
5561
5569
  };
5570
+ parent_credential_id: {
5571
+ format: string;
5572
+ type: string;
5573
+ };
5562
5574
  starts_at: {
5563
5575
  type: string;
5564
5576
  };
@@ -5753,6 +5765,10 @@ declare const _default: {
5753
5765
  is_multi_phone_sync_credential: {
5754
5766
  type: string;
5755
5767
  };
5768
+ parent_credential_id: {
5769
+ format: string;
5770
+ type: string;
5771
+ };
5756
5772
  starts_at: {
5757
5773
  type: string;
5758
5774
  };
@@ -5926,6 +5942,10 @@ declare const _default: {
5926
5942
  is_multi_phone_sync_credential: {
5927
5943
  type: string;
5928
5944
  };
5945
+ parent_credential_id: {
5946
+ format: string;
5947
+ type: string;
5948
+ };
5929
5949
  starts_at: {
5930
5950
  type: string;
5931
5951
  };
@@ -6072,6 +6092,10 @@ declare const _default: {
6072
6092
  is_multi_phone_sync_credential: {
6073
6093
  type: string;
6074
6094
  };
6095
+ parent_credential_id: {
6096
+ format: string;
6097
+ type: string;
6098
+ };
6075
6099
  starts_at: {
6076
6100
  type: string;
6077
6101
  };
@@ -6205,6 +6229,10 @@ declare const _default: {
6205
6229
  is_multi_phone_sync_credential: {
6206
6230
  type: string;
6207
6231
  };
6232
+ parent_credential_id: {
6233
+ format: string;
6234
+ type: string;
6235
+ };
6208
6236
  starts_at: {
6209
6237
  type: string;
6210
6238
  };
@@ -6340,6 +6368,10 @@ declare const _default: {
6340
6368
  is_multi_phone_sync_credential: {
6341
6369
  type: string;
6342
6370
  };
6371
+ parent_credential_id: {
6372
+ format: string;
6373
+ type: string;
6374
+ };
6343
6375
  starts_at: {
6344
6376
  type: string;
6345
6377
  };
@@ -6472,6 +6504,10 @@ declare const _default: {
6472
6504
  is_multi_phone_sync_credential: {
6473
6505
  type: string;
6474
6506
  };
6507
+ parent_credential_id: {
6508
+ format: string;
6509
+ type: string;
6510
+ };
6475
6511
  starts_at: {
6476
6512
  type: string;
6477
6513
  };
@@ -6926,6 +6962,10 @@ declare const _default: {
6926
6962
  is_multi_phone_sync_credential: {
6927
6963
  type: string;
6928
6964
  };
6965
+ parent_credential_id: {
6966
+ format: string;
6967
+ type: string;
6968
+ };
6929
6969
  starts_at: {
6930
6970
  type: string;
6931
6971
  };
@@ -15590,6 +15630,143 @@ declare const _default: {
15590
15630
  'x-fern-sdk-return-value': string;
15591
15631
  };
15592
15632
  };
15633
+ '/webhooks/update': {
15634
+ post: {
15635
+ operationId: string;
15636
+ requestBody: {
15637
+ content: {
15638
+ 'application/json': {
15639
+ schema: {
15640
+ properties: {
15641
+ event_types: {
15642
+ items: {
15643
+ type: string;
15644
+ };
15645
+ type: string;
15646
+ };
15647
+ webhook_id: {
15648
+ type: string;
15649
+ };
15650
+ };
15651
+ required: string[];
15652
+ type: string;
15653
+ };
15654
+ };
15655
+ };
15656
+ };
15657
+ responses: {
15658
+ 200: {
15659
+ content: {
15660
+ 'application/json': {
15661
+ schema: {
15662
+ properties: {
15663
+ ok: {
15664
+ type: string;
15665
+ };
15666
+ };
15667
+ required: string[];
15668
+ type: string;
15669
+ };
15670
+ };
15671
+ };
15672
+ description: string;
15673
+ };
15674
+ 400: {
15675
+ description: string;
15676
+ };
15677
+ 401: {
15678
+ description: string;
15679
+ };
15680
+ };
15681
+ security: ({
15682
+ access_token: never[];
15683
+ seam_workspace: never[];
15684
+ seam_client_session_token?: never;
15685
+ client_session_token?: never;
15686
+ } | {
15687
+ seam_client_session_token: never[];
15688
+ access_token?: never;
15689
+ seam_workspace?: never;
15690
+ client_session_token?: never;
15691
+ } | {
15692
+ client_session_token: never[];
15693
+ access_token?: never;
15694
+ seam_workspace?: never;
15695
+ seam_client_session_token?: never;
15696
+ })[];
15697
+ summary: string;
15698
+ tags: string[];
15699
+ 'x-fern-sdk-group-name': string[];
15700
+ 'x-fern-sdk-method-name': string;
15701
+ };
15702
+ put: {
15703
+ operationId: string;
15704
+ requestBody: {
15705
+ content: {
15706
+ 'application/json': {
15707
+ schema: {
15708
+ properties: {
15709
+ event_types: {
15710
+ items: {
15711
+ type: string;
15712
+ };
15713
+ type: string;
15714
+ };
15715
+ webhook_id: {
15716
+ type: string;
15717
+ };
15718
+ };
15719
+ required: string[];
15720
+ type: string;
15721
+ };
15722
+ };
15723
+ };
15724
+ };
15725
+ responses: {
15726
+ 200: {
15727
+ content: {
15728
+ 'application/json': {
15729
+ schema: {
15730
+ properties: {
15731
+ ok: {
15732
+ type: string;
15733
+ };
15734
+ };
15735
+ required: string[];
15736
+ type: string;
15737
+ };
15738
+ };
15739
+ };
15740
+ description: string;
15741
+ };
15742
+ 400: {
15743
+ description: string;
15744
+ };
15745
+ 401: {
15746
+ description: string;
15747
+ };
15748
+ };
15749
+ security: ({
15750
+ access_token: never[];
15751
+ seam_workspace: never[];
15752
+ seam_client_session_token?: never;
15753
+ client_session_token?: never;
15754
+ } | {
15755
+ seam_client_session_token: never[];
15756
+ access_token?: never;
15757
+ seam_workspace?: never;
15758
+ client_session_token?: never;
15759
+ } | {
15760
+ client_session_token: never[];
15761
+ access_token?: never;
15762
+ seam_workspace?: never;
15763
+ seam_client_session_token?: never;
15764
+ })[];
15765
+ summary: string;
15766
+ tags: string[];
15767
+ 'x-fern-ignore': boolean;
15768
+ };
15769
+ };
15593
15770
  '/workspaces/create': {
15594
15771
  post: {
15595
15772
  operationId: string;