@vrplatform/api 1.3.1-stage.2074 → 1.3.1-stage.2076

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.
@@ -747,6 +747,127 @@ export interface paths {
747
747
  patch?: never;
748
748
  trace?: never;
749
749
  };
750
+ "/internal/booking-channels": {
751
+ parameters: {
752
+ query?: never;
753
+ header?: never;
754
+ path?: never;
755
+ cookie?: never;
756
+ };
757
+ /** @description List booking channels for the icon management overview */
758
+ get: operations["getInternalBookingChannels"];
759
+ put?: never;
760
+ post?: never;
761
+ delete?: never;
762
+ options?: never;
763
+ head?: never;
764
+ patch?: never;
765
+ trace?: never;
766
+ };
767
+ "/internal/booking-channels/bulk-generate-icon-candidates": {
768
+ parameters: {
769
+ query?: never;
770
+ header?: never;
771
+ path?: never;
772
+ cookie?: never;
773
+ };
774
+ get?: never;
775
+ put?: never;
776
+ /** @description Generate icon candidates for many booking channels in one backend-owned bulk request */
777
+ post: operations["postInternalBookingChannelsBulkGenerateIconCandidates"];
778
+ delete?: never;
779
+ options?: never;
780
+ head?: never;
781
+ patch?: never;
782
+ trace?: never;
783
+ };
784
+ "/internal/booking-channels/bulk-set-icon": {
785
+ parameters: {
786
+ query?: never;
787
+ header?: never;
788
+ path?: never;
789
+ cookie?: never;
790
+ };
791
+ get?: never;
792
+ put?: never;
793
+ /** @description Copy the current selected icon from one booking channel to many target booking channels */
794
+ post: operations["postInternalBookingChannelsBulkSetIcon"];
795
+ delete?: never;
796
+ options?: never;
797
+ head?: never;
798
+ patch?: never;
799
+ trace?: never;
800
+ };
801
+ "/internal/booking-channels/generate-icon-candidates": {
802
+ parameters: {
803
+ query?: never;
804
+ header?: never;
805
+ path?: never;
806
+ cookie?: never;
807
+ };
808
+ get?: never;
809
+ put?: never;
810
+ /** @description Generate and persist booking channel icon candidates from uniqueRef */
811
+ post: operations["postInternalBookingChannelsGenerateIconCandidates"];
812
+ delete?: never;
813
+ options?: never;
814
+ head?: never;
815
+ patch?: never;
816
+ trace?: never;
817
+ };
818
+ "/internal/booking-channels/{bookingChannelId}/icon-candidates": {
819
+ parameters: {
820
+ query?: never;
821
+ header?: never;
822
+ path?: never;
823
+ cookie?: never;
824
+ };
825
+ /** @description List icon candidates for a booking channel */
826
+ get: operations["getInternalBookingChannelsByBookingChannelIdIconCandidates"];
827
+ put?: never;
828
+ /** @description Upload or reference an icon asset, store it in Cloudflare Images, and create a manual booking channel icon candidate */
829
+ post: operations["postInternalBookingChannelsByBookingChannelIdIconCandidates"];
830
+ delete?: never;
831
+ options?: never;
832
+ head?: never;
833
+ patch?: never;
834
+ trace?: never;
835
+ };
836
+ "/internal/booking-channels/{bookingChannelId}/icon-candidates/{candidateId}": {
837
+ parameters: {
838
+ query?: never;
839
+ header?: never;
840
+ path?: never;
841
+ cookie?: never;
842
+ };
843
+ get?: never;
844
+ put?: never;
845
+ post?: never;
846
+ /** @description Delete a booking channel icon candidate */
847
+ delete: operations["deleteInternalBookingChannelsByBookingChannelIdIconCandidatesByCandidateId"];
848
+ options?: never;
849
+ head?: never;
850
+ /** @description Update mutable booking channel icon candidate metadata */
851
+ patch: operations["patchInternalBookingChannelsByBookingChannelIdIconCandidatesByCandidateId"];
852
+ trace?: never;
853
+ };
854
+ "/internal/booking-channels/{bookingChannelId}/selected-icon": {
855
+ parameters: {
856
+ query?: never;
857
+ header?: never;
858
+ path?: never;
859
+ cookie?: never;
860
+ };
861
+ get?: never;
862
+ /** @description Set or clear the selected icon candidate for a booking channel */
863
+ put: operations["putInternalBookingChannelsByBookingChannelIdSelectedIcon"];
864
+ post?: never;
865
+ delete?: never;
866
+ options?: never;
867
+ head?: never;
868
+ patch?: never;
869
+ trace?: never;
870
+ };
750
871
  "/legacy/payouts": {
751
872
  parameters: {
752
873
  query?: never;
@@ -11509,6 +11630,1072 @@ export interface operations {
11509
11630
  };
11510
11631
  };
11511
11632
  };
11633
+ getInternalBookingChannels: {
11634
+ parameters: {
11635
+ query?: never;
11636
+ header?: never;
11637
+ path?: never;
11638
+ cookie?: never;
11639
+ };
11640
+ requestBody?: never;
11641
+ responses: {
11642
+ /** @description Successful response */
11643
+ 200: {
11644
+ headers: {
11645
+ [name: string]: unknown;
11646
+ };
11647
+ content: {
11648
+ "application/json": {
11649
+ data: {
11650
+ /** Format: uuid */
11651
+ id: string;
11652
+ uniqueRef: string;
11653
+ channelRef: string | null;
11654
+ icon: string | null;
11655
+ color: string | null;
11656
+ lastGenerateRun: string | null;
11657
+ usageCount: number;
11658
+ iconCandidateCount: number;
11659
+ selectedBookingChannelIconCandidateId: string | null;
11660
+ }[];
11661
+ };
11662
+ };
11663
+ };
11664
+ /** @description Bad request */
11665
+ 400: {
11666
+ headers: {
11667
+ [name: string]: unknown;
11668
+ };
11669
+ content: {
11670
+ "application/json": {
11671
+ code: string;
11672
+ message: string;
11673
+ issues?: {
11674
+ message: string;
11675
+ }[];
11676
+ context?: unknown;
11677
+ };
11678
+ };
11679
+ };
11680
+ /** @description Unauthorized */
11681
+ 401: {
11682
+ headers: {
11683
+ [name: string]: unknown;
11684
+ };
11685
+ content: {
11686
+ "application/json": {
11687
+ code: string;
11688
+ message: string;
11689
+ issues?: {
11690
+ message: string;
11691
+ }[];
11692
+ context?: unknown;
11693
+ };
11694
+ };
11695
+ };
11696
+ /** @description Forbidden */
11697
+ 403: {
11698
+ headers: {
11699
+ [name: string]: unknown;
11700
+ };
11701
+ content: {
11702
+ "application/json": {
11703
+ code: string;
11704
+ message: string;
11705
+ issues?: {
11706
+ message: string;
11707
+ }[];
11708
+ context?: unknown;
11709
+ };
11710
+ };
11711
+ };
11712
+ /** @description Not found */
11713
+ 404: {
11714
+ headers: {
11715
+ [name: string]: unknown;
11716
+ };
11717
+ content: {
11718
+ "application/json": {
11719
+ code: string;
11720
+ message: string;
11721
+ issues?: {
11722
+ message: string;
11723
+ }[];
11724
+ context?: unknown;
11725
+ };
11726
+ };
11727
+ };
11728
+ /** @description Internal server error */
11729
+ 500: {
11730
+ headers: {
11731
+ [name: string]: unknown;
11732
+ };
11733
+ content: {
11734
+ "application/json": {
11735
+ code: string;
11736
+ message: string;
11737
+ issues?: {
11738
+ message: string;
11739
+ }[];
11740
+ context?: unknown;
11741
+ };
11742
+ };
11743
+ };
11744
+ };
11745
+ };
11746
+ postInternalBookingChannelsBulkGenerateIconCandidates: {
11747
+ parameters: {
11748
+ query?: never;
11749
+ header?: never;
11750
+ path?: never;
11751
+ cookie?: never;
11752
+ };
11753
+ requestBody?: {
11754
+ content: {
11755
+ "application/json": {
11756
+ bookingChannelIds: string[];
11757
+ };
11758
+ };
11759
+ };
11760
+ responses: {
11761
+ /** @description Successful response */
11762
+ 200: {
11763
+ headers: {
11764
+ [name: string]: unknown;
11765
+ };
11766
+ content: {
11767
+ "application/json": {
11768
+ successes: {
11769
+ /** Format: uuid */
11770
+ bookingChannelId: string;
11771
+ uniqueRef: string;
11772
+ generatedCandidateCount: number;
11773
+ }[];
11774
+ failures: {
11775
+ /** Format: uuid */
11776
+ bookingChannelId: string;
11777
+ uniqueRef: string | null;
11778
+ investigatedHomepageUrl: string | null;
11779
+ investigatedDomain: string | null;
11780
+ error: string;
11781
+ }[];
11782
+ };
11783
+ };
11784
+ };
11785
+ /** @description Bad request */
11786
+ 400: {
11787
+ headers: {
11788
+ [name: string]: unknown;
11789
+ };
11790
+ content: {
11791
+ "application/json": {
11792
+ code: string;
11793
+ message: string;
11794
+ issues?: {
11795
+ message: string;
11796
+ }[];
11797
+ context?: unknown;
11798
+ };
11799
+ };
11800
+ };
11801
+ /** @description Unauthorized */
11802
+ 401: {
11803
+ headers: {
11804
+ [name: string]: unknown;
11805
+ };
11806
+ content: {
11807
+ "application/json": {
11808
+ code: string;
11809
+ message: string;
11810
+ issues?: {
11811
+ message: string;
11812
+ }[];
11813
+ context?: unknown;
11814
+ };
11815
+ };
11816
+ };
11817
+ /** @description Forbidden */
11818
+ 403: {
11819
+ headers: {
11820
+ [name: string]: unknown;
11821
+ };
11822
+ content: {
11823
+ "application/json": {
11824
+ code: string;
11825
+ message: string;
11826
+ issues?: {
11827
+ message: string;
11828
+ }[];
11829
+ context?: unknown;
11830
+ };
11831
+ };
11832
+ };
11833
+ /** @description Not found */
11834
+ 404: {
11835
+ headers: {
11836
+ [name: string]: unknown;
11837
+ };
11838
+ content: {
11839
+ "application/json": {
11840
+ code: string;
11841
+ message: string;
11842
+ issues?: {
11843
+ message: string;
11844
+ }[];
11845
+ context?: unknown;
11846
+ };
11847
+ };
11848
+ };
11849
+ /** @description Internal server error */
11850
+ 500: {
11851
+ headers: {
11852
+ [name: string]: unknown;
11853
+ };
11854
+ content: {
11855
+ "application/json": {
11856
+ code: string;
11857
+ message: string;
11858
+ issues?: {
11859
+ message: string;
11860
+ }[];
11861
+ context?: unknown;
11862
+ };
11863
+ };
11864
+ };
11865
+ };
11866
+ };
11867
+ postInternalBookingChannelsBulkSetIcon: {
11868
+ parameters: {
11869
+ query?: never;
11870
+ header?: never;
11871
+ path?: never;
11872
+ cookie?: never;
11873
+ };
11874
+ requestBody?: {
11875
+ content: {
11876
+ "application/json": {
11877
+ /** Format: uuid */
11878
+ sourceBookingChannelId: string;
11879
+ targetBookingChannelIds: string[];
11880
+ };
11881
+ };
11882
+ };
11883
+ responses: {
11884
+ /** @description Successful response */
11885
+ 200: {
11886
+ headers: {
11887
+ [name: string]: unknown;
11888
+ };
11889
+ content: {
11890
+ "application/json": {
11891
+ /** Format: uuid */
11892
+ sourceBookingChannelId: string;
11893
+ successes: {
11894
+ /** Format: uuid */
11895
+ bookingChannelId: string;
11896
+ }[];
11897
+ failures: {
11898
+ /** Format: uuid */
11899
+ bookingChannelId: string;
11900
+ error: string;
11901
+ }[];
11902
+ };
11903
+ };
11904
+ };
11905
+ /** @description Bad request */
11906
+ 400: {
11907
+ headers: {
11908
+ [name: string]: unknown;
11909
+ };
11910
+ content: {
11911
+ "application/json": {
11912
+ code: string;
11913
+ message: string;
11914
+ issues?: {
11915
+ message: string;
11916
+ }[];
11917
+ context?: unknown;
11918
+ };
11919
+ };
11920
+ };
11921
+ /** @description Unauthorized */
11922
+ 401: {
11923
+ headers: {
11924
+ [name: string]: unknown;
11925
+ };
11926
+ content: {
11927
+ "application/json": {
11928
+ code: string;
11929
+ message: string;
11930
+ issues?: {
11931
+ message: string;
11932
+ }[];
11933
+ context?: unknown;
11934
+ };
11935
+ };
11936
+ };
11937
+ /** @description Forbidden */
11938
+ 403: {
11939
+ headers: {
11940
+ [name: string]: unknown;
11941
+ };
11942
+ content: {
11943
+ "application/json": {
11944
+ code: string;
11945
+ message: string;
11946
+ issues?: {
11947
+ message: string;
11948
+ }[];
11949
+ context?: unknown;
11950
+ };
11951
+ };
11952
+ };
11953
+ /** @description Not found */
11954
+ 404: {
11955
+ headers: {
11956
+ [name: string]: unknown;
11957
+ };
11958
+ content: {
11959
+ "application/json": {
11960
+ code: string;
11961
+ message: string;
11962
+ issues?: {
11963
+ message: string;
11964
+ }[];
11965
+ context?: unknown;
11966
+ };
11967
+ };
11968
+ };
11969
+ /** @description Internal server error */
11970
+ 500: {
11971
+ headers: {
11972
+ [name: string]: unknown;
11973
+ };
11974
+ content: {
11975
+ "application/json": {
11976
+ code: string;
11977
+ message: string;
11978
+ issues?: {
11979
+ message: string;
11980
+ }[];
11981
+ context?: unknown;
11982
+ };
11983
+ };
11984
+ };
11985
+ };
11986
+ };
11987
+ postInternalBookingChannelsGenerateIconCandidates: {
11988
+ parameters: {
11989
+ query?: never;
11990
+ header?: never;
11991
+ path?: never;
11992
+ cookie?: never;
11993
+ };
11994
+ requestBody?: {
11995
+ content: {
11996
+ "application/json": {
11997
+ uniqueRef: string;
11998
+ };
11999
+ };
12000
+ };
12001
+ responses: {
12002
+ /** @description Successful response */
12003
+ 200: {
12004
+ headers: {
12005
+ [name: string]: unknown;
12006
+ };
12007
+ content: {
12008
+ "application/json": {
12009
+ /** Format: uuid */
12010
+ bookingChannelId: string;
12011
+ uniqueRef: string;
12012
+ channelRef: string | null;
12013
+ candidates: {
12014
+ /** Format: uuid */
12015
+ id: string;
12016
+ /** Format: uuid */
12017
+ bookingChannelId: string;
12018
+ cloudflareImageId: string | null;
12019
+ icon: string | null;
12020
+ color: string | null;
12021
+ source: string | null;
12022
+ comment: string | null;
12023
+ isSelected: boolean;
12024
+ createdAt: string;
12025
+ updatedAt: string;
12026
+ }[];
12027
+ };
12028
+ };
12029
+ };
12030
+ /** @description Bad request */
12031
+ 400: {
12032
+ headers: {
12033
+ [name: string]: unknown;
12034
+ };
12035
+ content: {
12036
+ "application/json": {
12037
+ code: string;
12038
+ message: string;
12039
+ issues?: {
12040
+ message: string;
12041
+ }[];
12042
+ context?: unknown;
12043
+ };
12044
+ };
12045
+ };
12046
+ /** @description Unauthorized */
12047
+ 401: {
12048
+ headers: {
12049
+ [name: string]: unknown;
12050
+ };
12051
+ content: {
12052
+ "application/json": {
12053
+ code: string;
12054
+ message: string;
12055
+ issues?: {
12056
+ message: string;
12057
+ }[];
12058
+ context?: unknown;
12059
+ };
12060
+ };
12061
+ };
12062
+ /** @description Forbidden */
12063
+ 403: {
12064
+ headers: {
12065
+ [name: string]: unknown;
12066
+ };
12067
+ content: {
12068
+ "application/json": {
12069
+ code: string;
12070
+ message: string;
12071
+ issues?: {
12072
+ message: string;
12073
+ }[];
12074
+ context?: unknown;
12075
+ };
12076
+ };
12077
+ };
12078
+ /** @description Not found */
12079
+ 404: {
12080
+ headers: {
12081
+ [name: string]: unknown;
12082
+ };
12083
+ content: {
12084
+ "application/json": {
12085
+ code: string;
12086
+ message: string;
12087
+ issues?: {
12088
+ message: string;
12089
+ }[];
12090
+ context?: unknown;
12091
+ };
12092
+ };
12093
+ };
12094
+ /** @description Internal server error */
12095
+ 500: {
12096
+ headers: {
12097
+ [name: string]: unknown;
12098
+ };
12099
+ content: {
12100
+ "application/json": {
12101
+ code: string;
12102
+ message: string;
12103
+ issues?: {
12104
+ message: string;
12105
+ }[];
12106
+ context?: unknown;
12107
+ };
12108
+ };
12109
+ };
12110
+ };
12111
+ };
12112
+ getInternalBookingChannelsByBookingChannelIdIconCandidates: {
12113
+ parameters: {
12114
+ query?: never;
12115
+ header?: never;
12116
+ path: {
12117
+ bookingChannelId: string;
12118
+ };
12119
+ cookie?: never;
12120
+ };
12121
+ requestBody?: never;
12122
+ responses: {
12123
+ /** @description Successful response */
12124
+ 200: {
12125
+ headers: {
12126
+ [name: string]: unknown;
12127
+ };
12128
+ content: {
12129
+ "application/json": {
12130
+ data: {
12131
+ /** Format: uuid */
12132
+ id: string;
12133
+ /** Format: uuid */
12134
+ bookingChannelId: string;
12135
+ cloudflareImageId: string | null;
12136
+ icon: string | null;
12137
+ color: string | null;
12138
+ source: string | null;
12139
+ comment: string | null;
12140
+ isSelected: boolean;
12141
+ createdAt: string;
12142
+ updatedAt: string;
12143
+ }[];
12144
+ };
12145
+ };
12146
+ };
12147
+ /** @description Bad request */
12148
+ 400: {
12149
+ headers: {
12150
+ [name: string]: unknown;
12151
+ };
12152
+ content: {
12153
+ "application/json": {
12154
+ code: string;
12155
+ message: string;
12156
+ issues?: {
12157
+ message: string;
12158
+ }[];
12159
+ context?: unknown;
12160
+ };
12161
+ };
12162
+ };
12163
+ /** @description Unauthorized */
12164
+ 401: {
12165
+ headers: {
12166
+ [name: string]: unknown;
12167
+ };
12168
+ content: {
12169
+ "application/json": {
12170
+ code: string;
12171
+ message: string;
12172
+ issues?: {
12173
+ message: string;
12174
+ }[];
12175
+ context?: unknown;
12176
+ };
12177
+ };
12178
+ };
12179
+ /** @description Forbidden */
12180
+ 403: {
12181
+ headers: {
12182
+ [name: string]: unknown;
12183
+ };
12184
+ content: {
12185
+ "application/json": {
12186
+ code: string;
12187
+ message: string;
12188
+ issues?: {
12189
+ message: string;
12190
+ }[];
12191
+ context?: unknown;
12192
+ };
12193
+ };
12194
+ };
12195
+ /** @description Not found */
12196
+ 404: {
12197
+ headers: {
12198
+ [name: string]: unknown;
12199
+ };
12200
+ content: {
12201
+ "application/json": {
12202
+ code: string;
12203
+ message: string;
12204
+ issues?: {
12205
+ message: string;
12206
+ }[];
12207
+ context?: unknown;
12208
+ };
12209
+ };
12210
+ };
12211
+ /** @description Internal server error */
12212
+ 500: {
12213
+ headers: {
12214
+ [name: string]: unknown;
12215
+ };
12216
+ content: {
12217
+ "application/json": {
12218
+ code: string;
12219
+ message: string;
12220
+ issues?: {
12221
+ message: string;
12222
+ }[];
12223
+ context?: unknown;
12224
+ };
12225
+ };
12226
+ };
12227
+ };
12228
+ };
12229
+ postInternalBookingChannelsByBookingChannelIdIconCandidates: {
12230
+ parameters: {
12231
+ query?: never;
12232
+ header?: never;
12233
+ path: {
12234
+ bookingChannelId: string;
12235
+ };
12236
+ cookie?: never;
12237
+ };
12238
+ requestBody?: never;
12239
+ responses: {
12240
+ /** @description Successful response */
12241
+ 200: {
12242
+ headers: {
12243
+ [name: string]: unknown;
12244
+ };
12245
+ content: {
12246
+ "application/json": {
12247
+ /** Format: uuid */
12248
+ id: string;
12249
+ /** Format: uuid */
12250
+ bookingChannelId: string;
12251
+ cloudflareImageId: string | null;
12252
+ icon: string | null;
12253
+ color: string | null;
12254
+ source: string | null;
12255
+ comment: string | null;
12256
+ isSelected: boolean;
12257
+ createdAt: string;
12258
+ updatedAt: string;
12259
+ };
12260
+ };
12261
+ };
12262
+ /** @description Bad request */
12263
+ 400: {
12264
+ headers: {
12265
+ [name: string]: unknown;
12266
+ };
12267
+ content: {
12268
+ "application/json": {
12269
+ code: string;
12270
+ message: string;
12271
+ issues?: {
12272
+ message: string;
12273
+ }[];
12274
+ context?: unknown;
12275
+ };
12276
+ };
12277
+ };
12278
+ /** @description Unauthorized */
12279
+ 401: {
12280
+ headers: {
12281
+ [name: string]: unknown;
12282
+ };
12283
+ content: {
12284
+ "application/json": {
12285
+ code: string;
12286
+ message: string;
12287
+ issues?: {
12288
+ message: string;
12289
+ }[];
12290
+ context?: unknown;
12291
+ };
12292
+ };
12293
+ };
12294
+ /** @description Forbidden */
12295
+ 403: {
12296
+ headers: {
12297
+ [name: string]: unknown;
12298
+ };
12299
+ content: {
12300
+ "application/json": {
12301
+ code: string;
12302
+ message: string;
12303
+ issues?: {
12304
+ message: string;
12305
+ }[];
12306
+ context?: unknown;
12307
+ };
12308
+ };
12309
+ };
12310
+ /** @description Not found */
12311
+ 404: {
12312
+ headers: {
12313
+ [name: string]: unknown;
12314
+ };
12315
+ content: {
12316
+ "application/json": {
12317
+ code: string;
12318
+ message: string;
12319
+ issues?: {
12320
+ message: string;
12321
+ }[];
12322
+ context?: unknown;
12323
+ };
12324
+ };
12325
+ };
12326
+ /** @description Internal server error */
12327
+ 500: {
12328
+ headers: {
12329
+ [name: string]: unknown;
12330
+ };
12331
+ content: {
12332
+ "application/json": {
12333
+ code: string;
12334
+ message: string;
12335
+ issues?: {
12336
+ message: string;
12337
+ }[];
12338
+ context?: unknown;
12339
+ };
12340
+ };
12341
+ };
12342
+ };
12343
+ };
12344
+ deleteInternalBookingChannelsByBookingChannelIdIconCandidatesByCandidateId: {
12345
+ parameters: {
12346
+ query?: never;
12347
+ header?: never;
12348
+ path: {
12349
+ bookingChannelId: string;
12350
+ candidateId: string;
12351
+ };
12352
+ cookie?: never;
12353
+ };
12354
+ requestBody?: {
12355
+ content: {
12356
+ "application/json": Record<string, never>;
12357
+ };
12358
+ };
12359
+ responses: {
12360
+ /** @description Successful response */
12361
+ 200: {
12362
+ headers: {
12363
+ [name: string]: unknown;
12364
+ };
12365
+ content: {
12366
+ "application/json": {
12367
+ /** Format: uuid */
12368
+ id: string;
12369
+ uniqueRef: string;
12370
+ channelRef: string | null;
12371
+ icon: string | null;
12372
+ color: string | null;
12373
+ selectedBookingChannelIconCandidateId: string | null;
12374
+ candidateCount: number;
12375
+ };
12376
+ };
12377
+ };
12378
+ /** @description Bad request */
12379
+ 400: {
12380
+ headers: {
12381
+ [name: string]: unknown;
12382
+ };
12383
+ content: {
12384
+ "application/json": {
12385
+ code: string;
12386
+ message: string;
12387
+ issues?: {
12388
+ message: string;
12389
+ }[];
12390
+ context?: unknown;
12391
+ };
12392
+ };
12393
+ };
12394
+ /** @description Unauthorized */
12395
+ 401: {
12396
+ headers: {
12397
+ [name: string]: unknown;
12398
+ };
12399
+ content: {
12400
+ "application/json": {
12401
+ code: string;
12402
+ message: string;
12403
+ issues?: {
12404
+ message: string;
12405
+ }[];
12406
+ context?: unknown;
12407
+ };
12408
+ };
12409
+ };
12410
+ /** @description Forbidden */
12411
+ 403: {
12412
+ headers: {
12413
+ [name: string]: unknown;
12414
+ };
12415
+ content: {
12416
+ "application/json": {
12417
+ code: string;
12418
+ message: string;
12419
+ issues?: {
12420
+ message: string;
12421
+ }[];
12422
+ context?: unknown;
12423
+ };
12424
+ };
12425
+ };
12426
+ /** @description Not found */
12427
+ 404: {
12428
+ headers: {
12429
+ [name: string]: unknown;
12430
+ };
12431
+ content: {
12432
+ "application/json": {
12433
+ code: string;
12434
+ message: string;
12435
+ issues?: {
12436
+ message: string;
12437
+ }[];
12438
+ context?: unknown;
12439
+ };
12440
+ };
12441
+ };
12442
+ /** @description Internal server error */
12443
+ 500: {
12444
+ headers: {
12445
+ [name: string]: unknown;
12446
+ };
12447
+ content: {
12448
+ "application/json": {
12449
+ code: string;
12450
+ message: string;
12451
+ issues?: {
12452
+ message: string;
12453
+ }[];
12454
+ context?: unknown;
12455
+ };
12456
+ };
12457
+ };
12458
+ };
12459
+ };
12460
+ patchInternalBookingChannelsByBookingChannelIdIconCandidatesByCandidateId: {
12461
+ parameters: {
12462
+ query?: never;
12463
+ header?: never;
12464
+ path: {
12465
+ bookingChannelId: string;
12466
+ candidateId: string;
12467
+ };
12468
+ cookie?: never;
12469
+ };
12470
+ requestBody?: {
12471
+ content: {
12472
+ "application/json": {
12473
+ comment: string | null;
12474
+ };
12475
+ };
12476
+ };
12477
+ responses: {
12478
+ /** @description Successful response */
12479
+ 200: {
12480
+ headers: {
12481
+ [name: string]: unknown;
12482
+ };
12483
+ content: {
12484
+ "application/json": {
12485
+ /** Format: uuid */
12486
+ id: string;
12487
+ /** Format: uuid */
12488
+ bookingChannelId: string;
12489
+ cloudflareImageId: string | null;
12490
+ icon: string | null;
12491
+ color: string | null;
12492
+ source: string | null;
12493
+ comment: string | null;
12494
+ isSelected: boolean;
12495
+ createdAt: string;
12496
+ updatedAt: string;
12497
+ };
12498
+ };
12499
+ };
12500
+ /** @description Bad request */
12501
+ 400: {
12502
+ headers: {
12503
+ [name: string]: unknown;
12504
+ };
12505
+ content: {
12506
+ "application/json": {
12507
+ code: string;
12508
+ message: string;
12509
+ issues?: {
12510
+ message: string;
12511
+ }[];
12512
+ context?: unknown;
12513
+ };
12514
+ };
12515
+ };
12516
+ /** @description Unauthorized */
12517
+ 401: {
12518
+ headers: {
12519
+ [name: string]: unknown;
12520
+ };
12521
+ content: {
12522
+ "application/json": {
12523
+ code: string;
12524
+ message: string;
12525
+ issues?: {
12526
+ message: string;
12527
+ }[];
12528
+ context?: unknown;
12529
+ };
12530
+ };
12531
+ };
12532
+ /** @description Forbidden */
12533
+ 403: {
12534
+ headers: {
12535
+ [name: string]: unknown;
12536
+ };
12537
+ content: {
12538
+ "application/json": {
12539
+ code: string;
12540
+ message: string;
12541
+ issues?: {
12542
+ message: string;
12543
+ }[];
12544
+ context?: unknown;
12545
+ };
12546
+ };
12547
+ };
12548
+ /** @description Not found */
12549
+ 404: {
12550
+ headers: {
12551
+ [name: string]: unknown;
12552
+ };
12553
+ content: {
12554
+ "application/json": {
12555
+ code: string;
12556
+ message: string;
12557
+ issues?: {
12558
+ message: string;
12559
+ }[];
12560
+ context?: unknown;
12561
+ };
12562
+ };
12563
+ };
12564
+ /** @description Internal server error */
12565
+ 500: {
12566
+ headers: {
12567
+ [name: string]: unknown;
12568
+ };
12569
+ content: {
12570
+ "application/json": {
12571
+ code: string;
12572
+ message: string;
12573
+ issues?: {
12574
+ message: string;
12575
+ }[];
12576
+ context?: unknown;
12577
+ };
12578
+ };
12579
+ };
12580
+ };
12581
+ };
12582
+ putInternalBookingChannelsByBookingChannelIdSelectedIcon: {
12583
+ parameters: {
12584
+ query?: never;
12585
+ header?: never;
12586
+ path: {
12587
+ bookingChannelId: string;
12588
+ };
12589
+ cookie?: never;
12590
+ };
12591
+ requestBody?: {
12592
+ content: {
12593
+ "application/json": {
12594
+ candidateId: string | null;
12595
+ };
12596
+ };
12597
+ };
12598
+ responses: {
12599
+ /** @description Successful response */
12600
+ 200: {
12601
+ headers: {
12602
+ [name: string]: unknown;
12603
+ };
12604
+ content: {
12605
+ "application/json": {
12606
+ /** Format: uuid */
12607
+ id: string;
12608
+ uniqueRef: string;
12609
+ channelRef: string | null;
12610
+ icon: string | null;
12611
+ color: string | null;
12612
+ selectedBookingChannelIconCandidateId: string | null;
12613
+ candidateCount: number;
12614
+ };
12615
+ };
12616
+ };
12617
+ /** @description Bad request */
12618
+ 400: {
12619
+ headers: {
12620
+ [name: string]: unknown;
12621
+ };
12622
+ content: {
12623
+ "application/json": {
12624
+ code: string;
12625
+ message: string;
12626
+ issues?: {
12627
+ message: string;
12628
+ }[];
12629
+ context?: unknown;
12630
+ };
12631
+ };
12632
+ };
12633
+ /** @description Unauthorized */
12634
+ 401: {
12635
+ headers: {
12636
+ [name: string]: unknown;
12637
+ };
12638
+ content: {
12639
+ "application/json": {
12640
+ code: string;
12641
+ message: string;
12642
+ issues?: {
12643
+ message: string;
12644
+ }[];
12645
+ context?: unknown;
12646
+ };
12647
+ };
12648
+ };
12649
+ /** @description Forbidden */
12650
+ 403: {
12651
+ headers: {
12652
+ [name: string]: unknown;
12653
+ };
12654
+ content: {
12655
+ "application/json": {
12656
+ code: string;
12657
+ message: string;
12658
+ issues?: {
12659
+ message: string;
12660
+ }[];
12661
+ context?: unknown;
12662
+ };
12663
+ };
12664
+ };
12665
+ /** @description Not found */
12666
+ 404: {
12667
+ headers: {
12668
+ [name: string]: unknown;
12669
+ };
12670
+ content: {
12671
+ "application/json": {
12672
+ code: string;
12673
+ message: string;
12674
+ issues?: {
12675
+ message: string;
12676
+ }[];
12677
+ context?: unknown;
12678
+ };
12679
+ };
12680
+ };
12681
+ /** @description Internal server error */
12682
+ 500: {
12683
+ headers: {
12684
+ [name: string]: unknown;
12685
+ };
12686
+ content: {
12687
+ "application/json": {
12688
+ code: string;
12689
+ message: string;
12690
+ issues?: {
12691
+ message: string;
12692
+ }[];
12693
+ context?: unknown;
12694
+ };
12695
+ };
12696
+ };
12697
+ };
12698
+ };
11512
12699
  getPaymentsDeprecated: {
11513
12700
  parameters: {
11514
12701
  query?: {
@@ -20237,7 +21424,7 @@ export interface operations {
20237
21424
  accountType?: "ledger" | "bank" | "recurringFee" | "nonPosting";
20238
21425
  /** @description comma separated journal entry types */
20239
21426
  types?: string;
20240
- /** @description comma separated entity types "reservation" | "deposit" | "expense" | "recurringFee" | "transfer" */
21427
+ /** @description comma separated entity types "reservation" | "deposit" | "expense" | "recurringFee" | "transfer" | "payout" */
20241
21428
  entityTypes?: string;
20242
21429
  /** @description comma separated booking channel refs */
20243
21430
  bookingChannels?: string;
@@ -20495,7 +21682,7 @@ export interface operations {
20495
21682
  accountType?: "ledger" | "bank" | "recurringFee" | "nonPosting";
20496
21683
  /** @description comma separated journal entry types */
20497
21684
  types?: string;
20498
- /** @description comma separated entity types "reservation" | "deposit" | "expense" | "recurringFee" | "transfer" */
21685
+ /** @description comma separated entity types "reservation" | "deposit" | "expense" | "recurringFee" | "transfer" | "payout" */
20499
21686
  entityTypes?: string;
20500
21687
  /** @description comma separated booking channel refs */
20501
21688
  bookingChannels?: string;
@@ -21125,7 +22312,7 @@ export interface operations {
21125
22312
  accountType?: "ledger" | "bank" | "recurringFee" | "nonPosting";
21126
22313
  /** @description comma separated journal entry types */
21127
22314
  types?: string;
21128
- /** @description comma separated entity types "reservation" | "deposit" | "expense" | "recurringFee" | "transfer" */
22315
+ /** @description comma separated entity types "reservation" | "deposit" | "expense" | "recurringFee" | "transfer" | "payout" */
21129
22316
  entityTypes?: string;
21130
22317
  /** @description comma separated booking channel refs */
21131
22318
  bookingChannels?: string;
@@ -21382,7 +22569,7 @@ export interface operations {
21382
22569
  accountType?: "ledger" | "bank" | "recurringFee" | "nonPosting";
21383
22570
  /** @description comma separated journal entry types */
21384
22571
  types?: string;
21385
- /** @description comma separated entity types "reservation" | "deposit" | "expense" | "recurringFee" | "transfer" */
22572
+ /** @description comma separated entity types "reservation" | "deposit" | "expense" | "recurringFee" | "transfer" | "payout" */
21386
22573
  entityTypes?: string;
21387
22574
  /** @description comma separated booking channel refs */
21388
22575
  bookingChannels?: string;