endpoints-sdk-cli 2.4.0 → 2.4.1

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.
@@ -0,0 +1,2023 @@
1
+ /**
2
+ * A function that returns the URL part common to the endpoints.
3
+ */
4
+ export declare const root: () => string;
5
+ /**
6
+ * ヘルスチェック
7
+ *
8
+ */
9
+ export declare const healthCheck: {
10
+ (): string;
11
+ method: "GET";
12
+ };
13
+ /**
14
+ * 問い合わせIDに紐づくゲスト情報提出通知の購読を行う
15
+ *
16
+ */
17
+ export declare const notificationsGuestInformationSubmittedSubscribeByInquiryId: {
18
+ (): string;
19
+ method: "POST";
20
+ };
21
+ /**
22
+ * 問い合わせIDに紐づくゲスト情報提出通知の購読を解除する
23
+ *
24
+ */
25
+ export declare const notificationsGuestInformationSubmittedUnsubscribeByInquiryId: {
26
+ (): string;
27
+ method: "POST";
28
+ };
29
+ /**
30
+ * ゲスト情報提出通知の購読を行う
31
+ *
32
+ */
33
+ export declare const notificationsGuestInformationSubmittedSubscribe: {
34
+ (): string;
35
+ method: "POST";
36
+ };
37
+ /**
38
+ * ゲスト情報提出通知の購読を解除する
39
+ *
40
+ */
41
+ export declare const notificationsGuestInformationSubmittedUnsubscribe: {
42
+ (): string;
43
+ method: "POST";
44
+ };
45
+ /**
46
+ * 問い合わせIDに決済完了通知の購読を行う
47
+ *
48
+ */
49
+ export declare const notificationsPaymentCompletedSubscribeByPaymentOrderId: {
50
+ (): string;
51
+ method: "POST";
52
+ };
53
+ /**
54
+ * 問い合わせIDに決済完了通知の購読を解除する
55
+ *
56
+ */
57
+ export declare const notificationsPaymentCompletedUnsubscribeByPaymentOrderId: {
58
+ (): string;
59
+ method: "POST";
60
+ };
61
+ /**
62
+ * 決済完了通知の購読を行う
63
+ *
64
+ */
65
+ export declare const notificationsPaymentCompletedSubscribe: {
66
+ (): string;
67
+ method: "POST";
68
+ };
69
+ /**
70
+ * 決済完了通知の購読を解除する
71
+ *
72
+ */
73
+ export declare const notificationsPaymentCompletedUnsubscribe: {
74
+ (): string;
75
+ method: "POST";
76
+ };
77
+ /**
78
+ * 問い合わせIDに決済失敗通知の購読を行う
79
+ *
80
+ */
81
+ export declare const notificationsPaymentFailedSubscribeByPaymentOrderId: {
82
+ (): string;
83
+ method: "POST";
84
+ };
85
+ /**
86
+ * 問い合わせIDに決済失敗通知の購読を解除する
87
+ *
88
+ */
89
+ export declare const notificationsPaymentFailedUnsubscribeByPaymentOrderId: {
90
+ (): string;
91
+ method: "POST";
92
+ };
93
+ /**
94
+ * 決済失敗通知の購読を行う
95
+ *
96
+ */
97
+ export declare const notificationsPaymentFailedSubscribe: {
98
+ (): string;
99
+ method: "POST";
100
+ };
101
+ /**
102
+ * 決済失敗通知の購読を解除する
103
+ *
104
+ */
105
+ export declare const notificationsPaymentFailedUnsubscribe: {
106
+ (): string;
107
+ method: "POST";
108
+ };
109
+ /**
110
+ * マンスリー業者が下書き状態のリスティングを作成する
111
+ *
112
+ */
113
+ export declare const managerListingCreateNotReady: {
114
+ (): string;
115
+ method: "POST";
116
+ };
117
+ /**
118
+ * マンスリー業者が自社のリスティングの一覧を取得する
119
+ * @param {number} page 0
120
+ * @param {number} itemsPerPage 100
121
+ */
122
+ export declare const managerListingList: {
123
+ ({ page, itemsPerPage, }: {
124
+ page?: number | undefined;
125
+ itemsPerPage?: number | undefined;
126
+ }): string;
127
+ method: "GET";
128
+ };
129
+ /**
130
+ * マンスリー業者が自社のリスティングを更新する
131
+ *
132
+ */
133
+ export declare const managerListingUpdate: {
134
+ ({ listingId }: {
135
+ listingId: string;
136
+ }): string;
137
+ method: "PUT";
138
+ };
139
+ /**
140
+ * マンスリー業者が自社のリスティングを部分更新する
141
+ *
142
+ */
143
+ export declare const managerListingPatch: {
144
+ ({ listingId }: {
145
+ listingId: string;
146
+ }): string;
147
+ method: "PATCH";
148
+ };
149
+ /**
150
+ * マンスリー業者が自社のリスティングを取得する
151
+ *
152
+ */
153
+ export declare const managerListingGet: {
154
+ ({ listingId }: {
155
+ listingId: string;
156
+ }): string;
157
+ method: "GET";
158
+ };
159
+ /**
160
+ * マンスリー業者が自社のリスティングを登録申請する
161
+ *
162
+ */
163
+ export declare const managerListingRequestForRegistration: {
164
+ ({ listingId, }: {
165
+ listingId: string;
166
+ }): string;
167
+ method: "POST";
168
+ };
169
+ /**
170
+ * マンスリー業者がリスティング登録申請を取り下げる
171
+ *
172
+ */
173
+ export declare const managerListingWithdrawRegistrationRequest: {
174
+ ({ listingId, }: {
175
+ listingId: string;
176
+ }): string;
177
+ method: "DELETE";
178
+ };
179
+ /**
180
+ * マンスリー業者が自社のリスティングを公開可能状態にする
181
+ *
182
+ */
183
+ export declare const managerListingOpen: {
184
+ ({ listingId }: {
185
+ listingId: string;
186
+ }): string;
187
+ method: "POST";
188
+ };
189
+ /**
190
+ * マンスリー業者が自社のリスティングの公開を停止する
191
+ *
192
+ */
193
+ export declare const managerListingClose: {
194
+ ({ listingId }: {
195
+ listingId: string;
196
+ }): string;
197
+ method: "POST";
198
+ };
199
+ /**
200
+ * m2m-coreからのインポートによりリスティングを作成する
201
+ *
202
+ */
203
+ export declare const managerListingCreateFromM2mCore: {
204
+ ({ listingId, }: {
205
+ listingId: string;
206
+ }): string;
207
+ method: "POST";
208
+ };
209
+ /**
210
+ * m2m-coreと連携しているsumycaのリスティングの連携情報を取得する
211
+ *
212
+ */
213
+ export declare const managerListingM2mCoreListingRelations: {
214
+ ({ listingId, }: {
215
+ listingId: string;
216
+ }): string;
217
+ method: "GET";
218
+ };
219
+ /**
220
+ * リスティング画像の表示順を更新する
221
+ *
222
+ */
223
+ export declare const managerListingUpdateImageOrder: {
224
+ ({ listingId, }: {
225
+ listingId: string;
226
+ }): string;
227
+ method: "PUT";
228
+ };
229
+ /**
230
+ * リスティングのメイン画像をアップロードする
231
+ *
232
+ */
233
+ export declare const managerListingUploadMainImage: {
234
+ ({ listingId, }: {
235
+ listingId: string;
236
+ }): string;
237
+ method: "POST";
238
+ };
239
+ /**
240
+ * リスティングの間取り図画像をアップロードする
241
+ *
242
+ */
243
+ export declare const managerListingUploadLayoutImage: {
244
+ ({ listingId, }: {
245
+ listingId: string;
246
+ }): string;
247
+ method: "POST";
248
+ };
249
+ /**
250
+ * リスティングの間取り図画像を削除する
251
+ *
252
+ */
253
+ export declare const managerListingDeleteLayoutImage: {
254
+ ({ listingId, }: {
255
+ listingId: string;
256
+ }): string;
257
+ method: "DELETE";
258
+ };
259
+ /**
260
+ * リスティングに画像を追加する
261
+ *
262
+ */
263
+ export declare const managerListingAddImage: {
264
+ ({ listingId, }: {
265
+ listingId: string;
266
+ }): string;
267
+ method: "POST";
268
+ };
269
+ /**
270
+ * リスティングのカレンダー同期設定を取得する
271
+ *
272
+ */
273
+ export declare const managerListingCalendarSyncSettingsGet: {
274
+ ({ listingId, }: {
275
+ listingId: string;
276
+ }): string;
277
+ method: "GET";
278
+ };
279
+ /**
280
+ * リスティングのカレンダー同期設定を更新する
281
+ *
282
+ */
283
+ export declare const managerListingCalendarSyncSettingsPut: {
284
+ ({ listingId, }: {
285
+ listingId: string;
286
+ }): string;
287
+ method: "PUT";
288
+ };
289
+ /**
290
+ * リスティングを検索する
291
+ * @param {string} keywordIds 1,3,10
292
+ * @param {string} layoutTypes 1LDK,2LDK
293
+ * @param {string} listingTypes Apartment,Mansion
294
+ * @param {number} buildYearAfter 1980
295
+ * @param {number} buildYearBefore 2020
296
+ * @param {number} minSize 10.0
297
+ * @param {number} maxSize 50.2
298
+ * @param {number} minNumGuests 1
299
+ * @param {number} maxNumGuests 3
300
+ * @param {number} minCost 1000
301
+ * @param {number} maxCost 20000
302
+ * @param {number} page 0
303
+ * @param {number} itemsPerPage 20
304
+ * @param {number} maxMinuteWalk 5
305
+ * @param {string} listingName elm
306
+ * @param {string} prefectureName 東京都
307
+ * @param {string} cityName 新宿区
308
+ * @param {string} stationName 新宿駅
309
+ * @param {number} singleBedNum 1
310
+ * @param {number} semiDoubleBedNum 1
311
+ * @param {number} doubleBedNum 1
312
+ * @param {number} queenBedNum 1
313
+ * @param {number} kingBedNum 1
314
+ * @param {number} futonNum 1
315
+ * @param {string} listingNameForManage elm
316
+ * @param {string} listingSaleType onSale
317
+ * @param {string} reservationApprovalRequiredSetting ImmediateReservationRequest
318
+ */
319
+ export declare const mangerListingSearch: {
320
+ ({ keywordIds, layoutTypes, listingTypes, buildYearAfter, buildYearBefore, minSize, maxSize, minNumGuests, maxNumGuests, minCost, maxCost, page, itemsPerPage, maxMinuteWalk, listingName, prefectureName, cityName, stationName, singleBedNum, semiDoubleBedNum, doubleBedNum, queenBedNum, kingBedNum, futonNum, listingNameForManage, listingSaleType, reservationApprovalRequiredSetting, }: {
321
+ keywordIds?: string | undefined;
322
+ layoutTypes?: string | undefined;
323
+ listingTypes?: string | undefined;
324
+ buildYearAfter?: number | undefined;
325
+ buildYearBefore?: number | undefined;
326
+ minSize?: number | undefined;
327
+ maxSize?: number | undefined;
328
+ minNumGuests?: number | undefined;
329
+ maxNumGuests?: number | undefined;
330
+ minCost?: number | undefined;
331
+ maxCost?: number | undefined;
332
+ page?: number | undefined;
333
+ itemsPerPage?: number | undefined;
334
+ maxMinuteWalk?: number | undefined;
335
+ listingName?: string | undefined;
336
+ prefectureName?: string | undefined;
337
+ cityName?: string | undefined;
338
+ stationName?: string | undefined;
339
+ singleBedNum?: number | undefined;
340
+ semiDoubleBedNum?: number | undefined;
341
+ doubleBedNum?: number | undefined;
342
+ queenBedNum?: number | undefined;
343
+ kingBedNum?: number | undefined;
344
+ futonNum?: number | undefined;
345
+ listingNameForManage?: string | undefined;
346
+ listingSaleType?: string | undefined;
347
+ reservationApprovalRequiredSetting?: string | undefined;
348
+ }): string;
349
+ method: "GET";
350
+ };
351
+ /**
352
+ * 指定したidとlocaleのリスティングのローカライズデータを削除する
353
+ *
354
+ */
355
+ export declare const managerListingDeleteLocalizedData: {
356
+ ({ listingId, locale, }: {
357
+ listingId: string;
358
+ locale: string;
359
+ }): string;
360
+ method: "DELETE";
361
+ };
362
+ /**
363
+ * idの配列を受け取りlistingのkeywordに一括追加する
364
+ *
365
+ */
366
+ export declare const managerListingPutKeyword: {
367
+ ({ listingId, }: {
368
+ listingId: string;
369
+ }): string;
370
+ method: "PUT";
371
+ };
372
+ /**
373
+ * idの配列を受け取りlistingの該当するkeywordを一括削除する
374
+ *
375
+ */
376
+ export declare const managerListingPutKeywordRemove: {
377
+ ({ listingId, }: {
378
+ listingId: string;
379
+ }): string;
380
+ method: "PUT";
381
+ };
382
+ /**
383
+ * 管理名で自社の物件を検索する
384
+ * @param {string} nameForManage hoge
385
+ * @param {number} page 0
386
+ * @param {number} itemsPerPage 100
387
+ */
388
+ export declare const managerSearchListingsByNameForManage: {
389
+ ({ nameForManage, page, itemsPerPage, }: {
390
+ nameForManage?: string | undefined;
391
+ page?: number | undefined;
392
+ itemsPerPage?: number | undefined;
393
+ }): string;
394
+ method: "POST";
395
+ };
396
+ /**
397
+ * マンスリー業者が契約書の内容を取得する
398
+ *
399
+ */
400
+ export declare const managerGetContract: {
401
+ ({ inquiryId, revision, }: {
402
+ inquiryId: string;
403
+ revision: string;
404
+ }): string;
405
+ method: "GET";
406
+ };
407
+ /**
408
+ * マンスリー業者が契約書の内容を更新する
409
+ *
410
+ */
411
+ export declare const managerUpdateContract: {
412
+ ({ inquiryId, revision, }: {
413
+ inquiryId: string;
414
+ revision: string;
415
+ }): string;
416
+ method: "PUT";
417
+ };
418
+ /**
419
+ * マンスリー業者が契約書を発行する
420
+ *
421
+ */
422
+ export declare const managerPublishContract: {
423
+ ({ inquiryId, revision, }: {
424
+ inquiryId: string;
425
+ revision: string;
426
+ }): string;
427
+ method: "POST";
428
+ };
429
+ /**
430
+ * 反社チェック結果を取得する
431
+ *
432
+ */
433
+ export declare const managerGetAntisocialAnalyzeResult: {
434
+ ({ inquiryId, revision, }: {
435
+ inquiryId: string;
436
+ revision: string;
437
+ }): string;
438
+ method: "GET";
439
+ };
440
+ /**
441
+ * 既に存在している反社チェックデータを再度実行する
442
+ *
443
+ */
444
+ export declare const managerExecuteAntisocialAnalyze: {
445
+ ({ inquiryId, }: {
446
+ inquiryId: string;
447
+ }): string;
448
+ method: "POST";
449
+ };
450
+ /**
451
+ * 契約書に紐づいているトークンを取得する
452
+ *
453
+ */
454
+ export declare const managerGetContractToken: {
455
+ ({ inquiryId, revision, }: {
456
+ inquiryId: string;
457
+ revision: string;
458
+ }): string;
459
+ method: "GET";
460
+ };
461
+ /**
462
+ * ゲスト身分証画像の一覧を取得する
463
+ *
464
+ */
465
+ export declare const managerGuestIdentificationList: {
466
+ ({ inquiryId, }: {
467
+ inquiryId: string;
468
+ }): string;
469
+ method: "GET";
470
+ };
471
+ /**
472
+ * ゲスト身分証画像の実データ(base64エンコードされた文字列形式)を取得する
473
+ *
474
+ */
475
+ export declare const managerGuestIdentificationGetImageData: {
476
+ ({ inquiryId, imageId, }: {
477
+ inquiryId: string;
478
+ imageId: string;
479
+ }): string;
480
+ method: "GET";
481
+ };
482
+ /**
483
+ * ゲスト身分証画像をアップロードする
484
+ *
485
+ */
486
+ export declare const managerGuestIdentificationUploadImageData: {
487
+ ({ inquiryId, }: {
488
+ inquiryId: string;
489
+ }): string;
490
+ method: "POST";
491
+ };
492
+ /**
493
+ * ゲストの身分証画像を削除する
494
+ *
495
+ */
496
+ export declare const managerGuestIdentificationDeleteImageData: {
497
+ ({ inquiryId, imageId, }: {
498
+ inquiryId: string;
499
+ imageId: string;
500
+ }): string;
501
+ method: "DELETE";
502
+ };
503
+ /**
504
+ * マンスリー業者が契約条項を新規作成する
505
+ *
506
+ */
507
+ export declare const managerContractClauseCreate: {
508
+ (): string;
509
+ method: "POST";
510
+ };
511
+ /**
512
+ * マンスリー業者が契約条項の一覧を取得する
513
+ * @param {number} page 0
514
+ * @param {number} itemsPerPage 100
515
+ */
516
+ export declare const managerContractClauseList: {
517
+ ({ page, itemsPerPage, }: {
518
+ page?: number | undefined;
519
+ itemsPerPage?: number | undefined;
520
+ }): string;
521
+ method: "GET";
522
+ };
523
+ /**
524
+ * マンスリー業者が指定したIDの契約条項を更新する
525
+ *
526
+ */
527
+ export declare const managerContractClauseUpdate: {
528
+ ({ contractClauseId, }: {
529
+ contractClauseId: string;
530
+ }): string;
531
+ method: "PUT";
532
+ };
533
+ /**
534
+ * マンスリー業者が指定したIDの契約条項を取得する
535
+ *
536
+ */
537
+ export declare const managerContractClauseGet: {
538
+ ({ contractClauseId, }: {
539
+ contractClauseId: string;
540
+ }): string;
541
+ method: "GET";
542
+ };
543
+ /**
544
+ * マンスリー管理者がリスティングを取得する
545
+ *
546
+ */
547
+ export declare const adminListingGet: {
548
+ ({ listingId }: {
549
+ listingId: string;
550
+ }): string;
551
+ method: "GET";
552
+ };
553
+ /**
554
+ * 管理者がリスティングの掲載を承認する
555
+ *
556
+ */
557
+ export declare const adminListingAcceptRegistration: {
558
+ ({ listingId, }: {
559
+ listingId: string;
560
+ }): string;
561
+ method: "POST";
562
+ };
563
+ /**
564
+ * 管理者がリスティングを公開する(マンスリー業者の同意がある場合を想定)
565
+ *
566
+ */
567
+ export declare const adminListingOpen: {
568
+ ({ listingId }: {
569
+ listingId: string;
570
+ }): string;
571
+ method: "POST";
572
+ };
573
+ /**
574
+ * (内部向け) リスティングを削除する
575
+ *
576
+ */
577
+ export declare const internalDeleteListing: {
578
+ ({ listingId }: {
579
+ listingId: string;
580
+ }): string;
581
+ method: "DELETE";
582
+ };
583
+ /**
584
+ * マンスリー業者が問い合わせを送信する
585
+ *
586
+ */
587
+ export declare const managerInquiriesCreate: {
588
+ (): string;
589
+ method: "POST";
590
+ };
591
+ /**
592
+ * マンスリー業者が問い合わせ一覧を表示する
593
+ * @param {number} page 0
594
+ * @param {string} status xxx
595
+ * @param {string} contractStatus xxx
596
+ * @param {number} itemsPerPage 100
597
+ * @param {string} guestName foo
598
+ * @param {string} guestEmail foo@example.com
599
+ * @param {string} channel sumyca_form
600
+ * @param {string} createdByUserType Manager
601
+ */
602
+ export declare const managerInquiriesList: {
603
+ ({ page, status, contractStatus, itemsPerPage, guestName, guestEmail, channel, createdByUserType, }: {
604
+ page?: number | undefined;
605
+ status?: string | undefined;
606
+ contractStatus?: string | undefined;
607
+ itemsPerPage?: number | undefined;
608
+ guestName?: string | undefined;
609
+ guestEmail?: string | undefined;
610
+ channel?: string | undefined;
611
+ createdByUserType?: string | undefined;
612
+ }): string;
613
+ method: "GET";
614
+ };
615
+ /**
616
+ * マンスリー業者が問い合わせを更新する
617
+ *
618
+ */
619
+ export declare const managerInquiryUpdate: {
620
+ ({ inquiryId }: {
621
+ inquiryId: string;
622
+ }): string;
623
+ method: "PUT";
624
+ };
625
+ /**
626
+ * マンスリー業者が問い合わせの有効無効を更新する
627
+ *
628
+ */
629
+ export declare const managerInquiryAvailabilityStatusUpdate: {
630
+ ({ inquiryId, }: {
631
+ inquiryId: string;
632
+ }): string;
633
+ method: "PUT";
634
+ };
635
+ /**
636
+ * マンスリー業者が契約書の決済と決済の同期非同期ステータスを更新する
637
+ *
638
+ */
639
+ export declare const managerSyncOfContractsAndPaymentsStatusUpdate: {
640
+ ({ inquiryId, }: {
641
+ inquiryId: string;
642
+ }): string;
643
+ method: "PUT";
644
+ };
645
+ /**
646
+ * マンスリー業者が問い合わせと紐付いている契約書・決済の物件紐付き情報を更新する
647
+ *
648
+ */
649
+ export declare const managerInquiryUpdateListingRelation: {
650
+ ({ inquiryId, listingId, }: {
651
+ inquiryId: string;
652
+ listingId: string;
653
+ }): string;
654
+ method: "PATCH";
655
+ };
656
+ /**
657
+ * マンスリー業者がIDを指定して問い合わせを表示する
658
+ *
659
+ */
660
+ export declare const managerInquiryGet: {
661
+ ({ inquiryId }: {
662
+ inquiryId: string;
663
+ }): string;
664
+ method: "GET";
665
+ };
666
+ /**
667
+ * マンスリー業者がゲスト情報入力フォームを発行する
668
+ *
669
+ */
670
+ export declare const managerInquiriesIssueGuestInformationForm: {
671
+ ({ inquiryId, }: {
672
+ inquiryId: string;
673
+ }): string;
674
+ method: "POST";
675
+ };
676
+ /**
677
+ * マンスリー業者が一時パスワードを再発行する
678
+ *
679
+ */
680
+ export declare const managerInquiriesReissueContractPassword: {
681
+ ({ inquiryId, }: {
682
+ inquiryId: string;
683
+ }): string;
684
+ method: "POST";
685
+ };
686
+ /**
687
+ * マンスリー業者が一時トークンを再発行する
688
+ *
689
+ */
690
+ export declare const managerInquiriesReissueContractToken: {
691
+ ({ inquiryId, }: {
692
+ inquiryId: string;
693
+ }): string;
694
+ method: "POST";
695
+ };
696
+ /**
697
+ * マンスリー業者がゲスト情報を取得する
698
+ *
699
+ */
700
+ export declare const managerInquriesGetAssociatedGuestInformation: {
701
+ ({ inquiryId, }: {
702
+ inquiryId: string;
703
+ }): string;
704
+ method: "GET";
705
+ };
706
+ /**
707
+ * マンスリー業者がゲストを審査する
708
+ *
709
+ */
710
+ export declare const managerInquiriesScreenGuest: {
711
+ ({ inquiryId, }: {
712
+ inquiryId: string;
713
+ }): string;
714
+ method: "PUT";
715
+ };
716
+ /**
717
+ * マンスリー業者がゲストの審査を開始する
718
+ *
719
+ */
720
+ export declare const managerInquiriesStartScreeningGuest: {
721
+ ({ inquiryId, }: {
722
+ inquiryId: string;
723
+ }): string;
724
+ method: "PUT";
725
+ };
726
+ /**
727
+ * マンスリー業者がゲスト用に問い合わせに紐づくトークンを取得する
728
+ *
729
+ */
730
+ export declare const managerInquiriesGetInquiryToken: {
731
+ ({ inquiryId, }: {
732
+ inquiryId: string;
733
+ }): string;
734
+ method: "GET";
735
+ };
736
+ /**
737
+ * マンスリー業者がゲスト用に問い合わせに紐づくトークンを発行する
738
+ *
739
+ */
740
+ export declare const managerInquiriesPublishInquiryToken: {
741
+ ({ inquiryId, }: {
742
+ inquiryId: string;
743
+ }): string;
744
+ method: "POST";
745
+ };
746
+ /**
747
+ * マンスリー業者が契約書の追加決済項目を取得する
748
+ *
749
+ */
750
+ export declare const managerInquiriesGetPaymentOrderItemsForContract: {
751
+ ({ inquiryId, }: {
752
+ inquiryId: string;
753
+ }): string;
754
+ method: "GET";
755
+ };
756
+ /**
757
+ * マンスリー業者が決済注文を作成する
758
+ *
759
+ */
760
+ export declare const managerInquiriesCreatePaymentOrder: {
761
+ ({ inquiryId, }: {
762
+ inquiryId: string;
763
+ }): string;
764
+ method: "POST";
765
+ };
766
+ /**
767
+ * マンスリー業者が問い合わせに紐ずく決済注文を取得する
768
+ *
769
+ */
770
+ export declare const managerInquiriesListPaymentOrders: {
771
+ ({ inquiryId, }: {
772
+ inquiryId: string;
773
+ }): string;
774
+ method: "GET";
775
+ };
776
+ /**
777
+ * マンスリー業者が問い合わせに紐ずく予約を所得する
778
+ *
779
+ */
780
+ export declare const managerInquiriesGetReservation: {
781
+ ({ inquiryId, }: {
782
+ inquiryId: string;
783
+ }): string;
784
+ method: "GET";
785
+ };
786
+ /**
787
+ * マンスリー業者が問い合わせに紐ずくユーザーを取得する
788
+ *
789
+ */
790
+ export declare const managerInquiriesGetAssociationGuest: {
791
+ ({ inquiryId, }: {
792
+ inquiryId: string;
793
+ }): string;
794
+ method: "GET";
795
+ };
796
+ /**
797
+ * 管理者がマンスリー業者情報を作成する
798
+ *
799
+ */
800
+ export declare const adminCompanyCreate: {
801
+ (): string;
802
+ method: "POST";
803
+ };
804
+ /**
805
+ * 指定した都道府県に属する市町村の名前の一覧を取得する
806
+ * @param {string} prefName hoge
807
+ */
808
+ export declare const informationGetCityNamesInPrefecture: {
809
+ ({ prefName, }: {
810
+ prefName?: string | undefined;
811
+ }): string;
812
+ method: "GET";
813
+ };
814
+ /**
815
+ * 指定した地点名の緯度経度を取得する
816
+ * @param {string} locationName hoge
817
+ */
818
+ export declare const informationGetLocationForCompany: {
819
+ ({ locationName, }: {
820
+ locationName?: string | undefined;
821
+ }): string;
822
+ method: "GET";
823
+ };
824
+ /**
825
+ * 指定したカテゴリーのキーワードの一覧を取得する
826
+ * @param {string} categories Furniture,Appliance,Feature
827
+ */
828
+ export declare const informationGetKeywordsByCategories: {
829
+ ({ categories, }: {
830
+ categories?: string | undefined;
831
+ }): string;
832
+ method: "GET";
833
+ };
834
+ /**
835
+ * 指定した都道府県に存在する路線名の一覧を取得する
836
+ * @param {string} prefName hoge
837
+ */
838
+ export declare const informationGetLineNamesByPrefectureNameForCompany: {
839
+ ({ prefName, }: {
840
+ prefName?: string | undefined;
841
+ }): string;
842
+ method: "GET";
843
+ };
844
+ /**
845
+ * 指定した路線に存在する駅名の一覧を取得する
846
+ * @param {string} lineName hoge
847
+ */
848
+ export declare const informationGetStationNamesByLineNameForCompany: {
849
+ ({ lineName, }: {
850
+ lineName?: string | undefined;
851
+ }): string;
852
+ method: "GET";
853
+ };
854
+ /**
855
+ * マンスリー業者がオーナー一覧を取得する
856
+ *
857
+ */
858
+ export declare const managerOwnerList: {
859
+ (): string;
860
+ method: "GET";
861
+ };
862
+ /**
863
+ * マンスリー業者がオーナーをIDを指定して取得する
864
+ *
865
+ */
866
+ export declare const managerOwnerGet: {
867
+ ({ id }: {
868
+ id: string;
869
+ }): string;
870
+ method: "GET";
871
+ };
872
+ /**
873
+ * マンスリー業者がオーナーを作成する
874
+ *
875
+ */
876
+ export declare const managerOwnerCreate: {
877
+ (): string;
878
+ method: "POST";
879
+ };
880
+ /**
881
+ * マンスリー業者がオーナー情報を更新する
882
+ *
883
+ */
884
+ export declare const managerOwnerUpdate: {
885
+ ({ id }: {
886
+ id: string;
887
+ }): string;
888
+ method: "PUT";
889
+ };
890
+ /**
891
+ * マンスリー業者がオーナーを削除する
892
+ *
893
+ */
894
+ export declare const managerOwnerDelete: {
895
+ ({ id }: {
896
+ id: string;
897
+ }): string;
898
+ method: "DELETE";
899
+ };
900
+ /**
901
+ * カレンダーブロックを作成する
902
+ *
903
+ */
904
+ export declare const managerCalendarBlockCreate: {
905
+ (): string;
906
+ method: "POST";
907
+ };
908
+ /**
909
+ * カレンダーブロックを取得する
910
+ *
911
+ */
912
+ export declare const managerCalendarBlockGet: {
913
+ ({ calendarBlockId, }: {
914
+ calendarBlockId: string;
915
+ }): string;
916
+ method: "GET";
917
+ };
918
+ /**
919
+ * カレンダーブロックを更新する
920
+ *
921
+ */
922
+ export declare const managerCalendarBlockUpdate: {
923
+ ({ calendarBlockId, }: {
924
+ calendarBlockId: string;
925
+ }): string;
926
+ method: "PUT";
927
+ };
928
+ /**
929
+ * カレンダーブロックを削除する
930
+ *
931
+ */
932
+ export declare const managerCalendarBlockDelete: {
933
+ ({ calendarBlockId, }: {
934
+ calendarBlockId: string;
935
+ }): string;
936
+ method: "DELETE";
937
+ };
938
+ /**
939
+ * 指定した物件IDのカレンダーブロックで指定した日付範囲に重なるものを取得する
940
+ * @param {string} startDate 2021-01-01
941
+ * @param {string} endDate 2021-12-31
942
+ */
943
+ export declare const managerCalendarBlockFindByListingId: {
944
+ ({ startDate, endDate, listingId, }: {
945
+ startDate?: string | undefined;
946
+ endDate?: string | undefined;
947
+ listingId: string;
948
+ }): string;
949
+ method: "GET";
950
+ };
951
+ /**
952
+ * 在庫カレンダーを検索する
953
+ *
954
+ */
955
+ export declare const managerCalendarAvailableListingsSearch: {
956
+ (): string;
957
+ method: "POST";
958
+ };
959
+ /**
960
+ * カレンダーの宿泊費をインポートを行う
961
+ *
962
+ */
963
+ export declare const managerCalendarImportCalendarRent: {
964
+ (): string;
965
+ method: "POST";
966
+ };
967
+ /**
968
+ * カレンダーの宿泊費をエキスポートを行う
969
+ *
970
+ */
971
+ export declare const managerCalendarExportCalendarRent: {
972
+ (): string;
973
+ method: "POST";
974
+ };
975
+ /**
976
+ * iCalをURLから取得しパースした結果を返す
977
+ *
978
+ */
979
+ export declare const managerICalParse: {
980
+ (): string;
981
+ method: "POST";
982
+ };
983
+ /**
984
+ * マンスリー業者が決済項目を取得する
985
+ *
986
+ */
987
+ export declare const managerPaymentGetPaymentOrder: {
988
+ ({ paymentOrderId, }: {
989
+ paymentOrderId: string;
990
+ }): string;
991
+ method: "GET";
992
+ };
993
+ /**
994
+ * マンスリー業者がveritransと未登録の決済取引を同期する
995
+ *
996
+ */
997
+ export declare const managerPaymentSyncUnregisteredVeritransPaymentTransaction: {
998
+ ({ paymentOrderId, }: {
999
+ paymentOrderId: string;
1000
+ }): string;
1001
+ method: "PUT";
1002
+ };
1003
+ /**
1004
+ * マンスリー業者が決済項目を作成する
1005
+ *
1006
+ */
1007
+ export declare const managerPaymentCreatePaymentOrderItem: {
1008
+ ({ paymentOrderId, }: {
1009
+ paymentOrderId: string;
1010
+ }): string;
1011
+ method: "POST";
1012
+ };
1013
+ /**
1014
+ * マンスリー業者が決済項目を更新する
1015
+ *
1016
+ */
1017
+ export declare const managerPaymentUpdatePaymentOrderItem: {
1018
+ ({ paymentOrderId, paymentOrderItemId, }: {
1019
+ paymentOrderId: string;
1020
+ paymentOrderItemId: string;
1021
+ }): string;
1022
+ method: "PUT";
1023
+ };
1024
+ /**
1025
+ * マンスリー業者が決済項目を削除する
1026
+ *
1027
+ */
1028
+ export declare const managerPaymentDeletePaymentOrderItem: {
1029
+ ({ paymentOrderId, paymentOrderItemId, }: {
1030
+ paymentOrderId: string;
1031
+ paymentOrderItemId: string;
1032
+ }): string;
1033
+ method: "DELETE";
1034
+ };
1035
+ /**
1036
+ * admin権限の管理者が不明な決済ステータスを解決する
1037
+ *
1038
+ */
1039
+ export declare const managerPaymentResolvePaymentOrderUnknownStatus: {
1040
+ ({ paymentOrderId, }: {
1041
+ paymentOrderId: string;
1042
+ }): string;
1043
+ method: "PUT";
1044
+ };
1045
+ /**
1046
+ * 決済取引を出力する
1047
+ * @param {string} yearMonth 2021-09
1048
+ */
1049
+ export declare const exportVeritransPaymentTransactions: {
1050
+ ({ yearMonth, }: {
1051
+ yearMonth?: string | undefined;
1052
+ }): string;
1053
+ method: "GET";
1054
+ };
1055
+ /**
1056
+ * 予約をキャンセルする
1057
+ *
1058
+ */
1059
+ export declare const managerReservationCancel: {
1060
+ ({ id }: {
1061
+ id: string;
1062
+ }): string;
1063
+ method: "PUT";
1064
+ };
1065
+ /**
1066
+ * 予約の期間を変更する
1067
+ *
1068
+ */
1069
+ export declare const managerReservationChangeStaySpan: {
1070
+ ({ id }: {
1071
+ id: string;
1072
+ }): string;
1073
+ method: "PATCH";
1074
+ };
1075
+ /**
1076
+ * 予約を部分更新する
1077
+ *
1078
+ */
1079
+ export declare const managerReservationPatch: {
1080
+ ({ id }: {
1081
+ id: string;
1082
+ }): string;
1083
+ method: "PATCH";
1084
+ };
1085
+ /**
1086
+ * 予約コードで予約を検索する
1087
+ *
1088
+ */
1089
+ export declare const managerReservationSearchByReservationCode: {
1090
+ (): string;
1091
+ method: "POST";
1092
+ };
1093
+ /**
1094
+ * 予約一覧を取得する
1095
+ * @param {string} couponId foo
1096
+ * @param {number} page 0
1097
+ * @param {number} itemsPerPage 20
1098
+ */
1099
+ export declare const managerReservationsList: {
1100
+ ({ couponId, page, itemsPerPage, }: {
1101
+ couponId?: string | undefined;
1102
+ page?: number | undefined;
1103
+ itemsPerPage?: number | undefined;
1104
+ }): string;
1105
+ method: "GET";
1106
+ };
1107
+ /**
1108
+ * ベリトランスアカウントを登録する
1109
+ *
1110
+ */
1111
+ export declare const managerVeritransAccountCreate: {
1112
+ (): string;
1113
+ method: "POST";
1114
+ };
1115
+ /**
1116
+ * 物件とベリトランスアカウントの紐付けを登録する
1117
+ *
1118
+ */
1119
+ export declare const managerListingVeritransAccountRelationRegister: {
1120
+ (): string;
1121
+ method: "POST";
1122
+ };
1123
+ /**
1124
+ * 空欄の決済項目のidを更新する
1125
+ *
1126
+ */
1127
+ export declare const updateAllBlankPaymentOrderItemId: {
1128
+ (): string;
1129
+ method: "PUT";
1130
+ };
1131
+ /**
1132
+ * クーポンを作成する
1133
+ *
1134
+ */
1135
+ export declare const managerCouponCreate: {
1136
+ (): string;
1137
+ method: "POST";
1138
+ };
1139
+ /**
1140
+ * クーポン一覧を取得する
1141
+ *
1142
+ */
1143
+ export declare const managerCouponList: {
1144
+ (): string;
1145
+ method: "GET";
1146
+ };
1147
+ /**
1148
+ * クーポンを編集する
1149
+ *
1150
+ */
1151
+ export declare const managerCouponPath: {
1152
+ ({ couponId }: {
1153
+ couponId: string;
1154
+ }): string;
1155
+ method: "PATCH";
1156
+ };
1157
+ /**
1158
+ * クーポンを取得する
1159
+ *
1160
+ */
1161
+ export declare const managerCouponGet: {
1162
+ ({ couponId }: {
1163
+ couponId: string;
1164
+ }): string;
1165
+ method: "GET";
1166
+ };
1167
+ /**
1168
+ * クーポンと物件の関係を取得する
1169
+ *
1170
+ */
1171
+ export declare const managerCouponListingRelationsGet: {
1172
+ ({ couponId, }: {
1173
+ couponId: string;
1174
+ }): string;
1175
+ method: "GET";
1176
+ };
1177
+ /**
1178
+ * クーポンと物件の関係を複数作成する
1179
+ *
1180
+ */
1181
+ export declare const managerCouponListingRelationsBatchCreate: {
1182
+ (): string;
1183
+ method: "POST";
1184
+ };
1185
+ /**
1186
+ * クーポンと物件の関係を削除する
1187
+ *
1188
+ */
1189
+ export declare const managerCouponListingRelationsDelete: {
1190
+ (): string;
1191
+ method: "DELETE";
1192
+ };
1193
+ /**
1194
+ * 部屋タイプを作成する
1195
+ *
1196
+ */
1197
+ export declare const managerRoomTypeCreate: {
1198
+ (): string;
1199
+ method: "POST";
1200
+ };
1201
+ /**
1202
+ * 部屋タイプを一覧を取得する
1203
+ * @param {number} page 0
1204
+ * @param {number} itemsPerPage 20
1205
+ */
1206
+ export declare const managerRoomTypeList: {
1207
+ ({ page, itemsPerPage, }: {
1208
+ page?: number | undefined;
1209
+ itemsPerPage?: number | undefined;
1210
+ }): string;
1211
+ method: "GET";
1212
+ };
1213
+ /**
1214
+ * 部屋タイプを部分更新する
1215
+ *
1216
+ */
1217
+ export declare const managerRoomTypePatch: {
1218
+ ({ id }: {
1219
+ id: string;
1220
+ }): string;
1221
+ method: "PATCH";
1222
+ };
1223
+ /**
1224
+ * 部屋タイプを取得する
1225
+ *
1226
+ */
1227
+ export declare const managerRoomTypeGet: {
1228
+ ({ id }: {
1229
+ id: string;
1230
+ }): string;
1231
+ method: "GET";
1232
+ };
1233
+ /**
1234
+ * 部屋タイプの代表の部屋を選ぶ
1235
+ *
1236
+ */
1237
+ export declare const managerRoomTypeSelectRepresentListing: {
1238
+ ({ id, }: {
1239
+ id: string;
1240
+ }): string;
1241
+ method: "POST";
1242
+ };
1243
+ /**
1244
+ * 部屋タイプに部屋を連携する
1245
+ *
1246
+ */
1247
+ export declare const managerRoomTypeAssociateListing: {
1248
+ ({ id }: {
1249
+ id: string;
1250
+ }): string;
1251
+ method: "POST";
1252
+ };
1253
+ /**
1254
+ * 部屋タイプから部屋を解除する
1255
+ *
1256
+ */
1257
+ export declare const managerRoomTypeDetachListings: {
1258
+ ({ id }: {
1259
+ id: string;
1260
+ }): string;
1261
+ method: "POST";
1262
+ };
1263
+ /**
1264
+ * 部屋タイプの翻訳データを更新する
1265
+ *
1266
+ */
1267
+ export declare const managerRoomTypeUpdateLocalizedData: {
1268
+ ({ id }: {
1269
+ id: string;
1270
+ }): string;
1271
+ method: "POST";
1272
+ };
1273
+ /**
1274
+ * 部屋タイプの翻訳データを削除する
1275
+ *
1276
+ */
1277
+ export declare const managerRoomTypeDeleteLocalizedData: {
1278
+ ({ id, locale, }: {
1279
+ id: string;
1280
+ locale: string;
1281
+ }): string;
1282
+ method: "DELETE";
1283
+ };
1284
+ export declare const sumyca_managerV3: {
1285
+ healthCheck: {
1286
+ (): string;
1287
+ method: "GET";
1288
+ };
1289
+ notificationsGuestInformationSubmittedSubscribeByInquiryId: {
1290
+ (): string;
1291
+ method: "POST";
1292
+ };
1293
+ notificationsGuestInformationSubmittedUnsubscribeByInquiryId: {
1294
+ (): string;
1295
+ method: "POST";
1296
+ };
1297
+ notificationsGuestInformationSubmittedSubscribe: {
1298
+ (): string;
1299
+ method: "POST";
1300
+ };
1301
+ notificationsGuestInformationSubmittedUnsubscribe: {
1302
+ (): string;
1303
+ method: "POST";
1304
+ };
1305
+ notificationsPaymentCompletedSubscribeByPaymentOrderId: {
1306
+ (): string;
1307
+ method: "POST";
1308
+ };
1309
+ notificationsPaymentCompletedUnsubscribeByPaymentOrderId: {
1310
+ (): string;
1311
+ method: "POST";
1312
+ };
1313
+ notificationsPaymentCompletedSubscribe: {
1314
+ (): string;
1315
+ method: "POST";
1316
+ };
1317
+ notificationsPaymentCompletedUnsubscribe: {
1318
+ (): string;
1319
+ method: "POST";
1320
+ };
1321
+ notificationsPaymentFailedSubscribeByPaymentOrderId: {
1322
+ (): string;
1323
+ method: "POST";
1324
+ };
1325
+ notificationsPaymentFailedUnsubscribeByPaymentOrderId: {
1326
+ (): string;
1327
+ method: "POST";
1328
+ };
1329
+ notificationsPaymentFailedSubscribe: {
1330
+ (): string;
1331
+ method: "POST";
1332
+ };
1333
+ notificationsPaymentFailedUnsubscribe: {
1334
+ (): string;
1335
+ method: "POST";
1336
+ };
1337
+ managerListingCreateNotReady: {
1338
+ (): string;
1339
+ method: "POST";
1340
+ };
1341
+ managerListingList: {
1342
+ ({ page, itemsPerPage, }: {
1343
+ page?: number | undefined;
1344
+ itemsPerPage?: number | undefined;
1345
+ }): string;
1346
+ method: "GET";
1347
+ };
1348
+ managerListingUpdate: {
1349
+ ({ listingId }: {
1350
+ listingId: string;
1351
+ }): string;
1352
+ method: "PUT";
1353
+ };
1354
+ managerListingPatch: {
1355
+ ({ listingId }: {
1356
+ listingId: string;
1357
+ }): string;
1358
+ method: "PATCH";
1359
+ };
1360
+ managerListingGet: {
1361
+ ({ listingId }: {
1362
+ listingId: string;
1363
+ }): string;
1364
+ method: "GET";
1365
+ };
1366
+ managerListingRequestForRegistration: {
1367
+ ({ listingId, }: {
1368
+ listingId: string;
1369
+ }): string;
1370
+ method: "POST";
1371
+ };
1372
+ managerListingWithdrawRegistrationRequest: {
1373
+ ({ listingId, }: {
1374
+ listingId: string;
1375
+ }): string;
1376
+ method: "DELETE";
1377
+ };
1378
+ managerListingOpen: {
1379
+ ({ listingId }: {
1380
+ listingId: string;
1381
+ }): string;
1382
+ method: "POST";
1383
+ };
1384
+ managerListingClose: {
1385
+ ({ listingId }: {
1386
+ listingId: string;
1387
+ }): string;
1388
+ method: "POST";
1389
+ };
1390
+ managerListingCreateFromM2mCore: {
1391
+ ({ listingId, }: {
1392
+ listingId: string;
1393
+ }): string;
1394
+ method: "POST";
1395
+ };
1396
+ managerListingM2mCoreListingRelations: {
1397
+ ({ listingId, }: {
1398
+ listingId: string;
1399
+ }): string;
1400
+ method: "GET";
1401
+ };
1402
+ managerListingUpdateImageOrder: {
1403
+ ({ listingId, }: {
1404
+ listingId: string;
1405
+ }): string;
1406
+ method: "PUT";
1407
+ };
1408
+ managerListingUploadMainImage: {
1409
+ ({ listingId, }: {
1410
+ listingId: string;
1411
+ }): string;
1412
+ method: "POST";
1413
+ };
1414
+ managerListingUploadLayoutImage: {
1415
+ ({ listingId, }: {
1416
+ listingId: string;
1417
+ }): string;
1418
+ method: "POST";
1419
+ };
1420
+ managerListingDeleteLayoutImage: {
1421
+ ({ listingId, }: {
1422
+ listingId: string;
1423
+ }): string;
1424
+ method: "DELETE";
1425
+ };
1426
+ managerListingAddImage: {
1427
+ ({ listingId, }: {
1428
+ listingId: string;
1429
+ }): string;
1430
+ method: "POST";
1431
+ };
1432
+ managerListingCalendarSyncSettingsGet: {
1433
+ ({ listingId, }: {
1434
+ listingId: string;
1435
+ }): string;
1436
+ method: "GET";
1437
+ };
1438
+ managerListingCalendarSyncSettingsPut: {
1439
+ ({ listingId, }: {
1440
+ listingId: string;
1441
+ }): string;
1442
+ method: "PUT";
1443
+ };
1444
+ mangerListingSearch: {
1445
+ ({ keywordIds, layoutTypes, listingTypes, buildYearAfter, buildYearBefore, minSize, maxSize, minNumGuests, maxNumGuests, minCost, maxCost, page, itemsPerPage, maxMinuteWalk, listingName, prefectureName, cityName, stationName, singleBedNum, semiDoubleBedNum, doubleBedNum, queenBedNum, kingBedNum, futonNum, listingNameForManage, listingSaleType, reservationApprovalRequiredSetting, }: {
1446
+ keywordIds?: string | undefined;
1447
+ layoutTypes?: string | undefined;
1448
+ listingTypes?: string | undefined;
1449
+ buildYearAfter?: number | undefined;
1450
+ buildYearBefore?: number | undefined;
1451
+ minSize?: number | undefined;
1452
+ maxSize?: number | undefined;
1453
+ minNumGuests?: number | undefined;
1454
+ maxNumGuests?: number | undefined;
1455
+ minCost?: number | undefined;
1456
+ maxCost?: number | undefined;
1457
+ page?: number | undefined;
1458
+ itemsPerPage?: number | undefined;
1459
+ maxMinuteWalk?: number | undefined;
1460
+ listingName?: string | undefined;
1461
+ prefectureName?: string | undefined;
1462
+ cityName?: string | undefined;
1463
+ stationName?: string | undefined;
1464
+ singleBedNum?: number | undefined;
1465
+ semiDoubleBedNum?: number | undefined;
1466
+ doubleBedNum?: number | undefined;
1467
+ queenBedNum?: number | undefined;
1468
+ kingBedNum?: number | undefined;
1469
+ futonNum?: number | undefined;
1470
+ listingNameForManage?: string | undefined;
1471
+ listingSaleType?: string | undefined;
1472
+ reservationApprovalRequiredSetting?: string | undefined;
1473
+ }): string;
1474
+ method: "GET";
1475
+ };
1476
+ managerListingDeleteLocalizedData: {
1477
+ ({ listingId, locale, }: {
1478
+ listingId: string;
1479
+ locale: string;
1480
+ }): string;
1481
+ method: "DELETE";
1482
+ };
1483
+ managerListingPutKeyword: {
1484
+ ({ listingId, }: {
1485
+ listingId: string;
1486
+ }): string;
1487
+ method: "PUT";
1488
+ };
1489
+ managerListingPutKeywordRemove: {
1490
+ ({ listingId, }: {
1491
+ listingId: string;
1492
+ }): string;
1493
+ method: "PUT";
1494
+ };
1495
+ managerSearchListingsByNameForManage: {
1496
+ ({ nameForManage, page, itemsPerPage, }: {
1497
+ nameForManage?: string | undefined;
1498
+ page?: number | undefined;
1499
+ itemsPerPage?: number | undefined;
1500
+ }): string;
1501
+ method: "POST";
1502
+ };
1503
+ managerGetContract: {
1504
+ ({ inquiryId, revision, }: {
1505
+ inquiryId: string;
1506
+ revision: string;
1507
+ }): string;
1508
+ method: "GET";
1509
+ };
1510
+ managerUpdateContract: {
1511
+ ({ inquiryId, revision, }: {
1512
+ inquiryId: string;
1513
+ revision: string;
1514
+ }): string;
1515
+ method: "PUT";
1516
+ };
1517
+ managerPublishContract: {
1518
+ ({ inquiryId, revision, }: {
1519
+ inquiryId: string;
1520
+ revision: string;
1521
+ }): string;
1522
+ method: "POST";
1523
+ };
1524
+ managerGetAntisocialAnalyzeResult: {
1525
+ ({ inquiryId, revision, }: {
1526
+ inquiryId: string;
1527
+ revision: string;
1528
+ }): string;
1529
+ method: "GET";
1530
+ };
1531
+ managerExecuteAntisocialAnalyze: {
1532
+ ({ inquiryId, }: {
1533
+ inquiryId: string;
1534
+ }): string;
1535
+ method: "POST";
1536
+ };
1537
+ managerGetContractToken: {
1538
+ ({ inquiryId, revision, }: {
1539
+ inquiryId: string;
1540
+ revision: string;
1541
+ }): string;
1542
+ method: "GET";
1543
+ };
1544
+ managerGuestIdentificationList: {
1545
+ ({ inquiryId, }: {
1546
+ inquiryId: string;
1547
+ }): string;
1548
+ method: "GET";
1549
+ };
1550
+ managerGuestIdentificationGetImageData: {
1551
+ ({ inquiryId, imageId, }: {
1552
+ inquiryId: string;
1553
+ imageId: string;
1554
+ }): string;
1555
+ method: "GET";
1556
+ };
1557
+ managerGuestIdentificationUploadImageData: {
1558
+ ({ inquiryId, }: {
1559
+ inquiryId: string;
1560
+ }): string;
1561
+ method: "POST";
1562
+ };
1563
+ managerGuestIdentificationDeleteImageData: {
1564
+ ({ inquiryId, imageId, }: {
1565
+ inquiryId: string;
1566
+ imageId: string;
1567
+ }): string;
1568
+ method: "DELETE";
1569
+ };
1570
+ managerContractClauseCreate: {
1571
+ (): string;
1572
+ method: "POST";
1573
+ };
1574
+ managerContractClauseList: {
1575
+ ({ page, itemsPerPage, }: {
1576
+ page?: number | undefined;
1577
+ itemsPerPage?: number | undefined;
1578
+ }): string;
1579
+ method: "GET";
1580
+ };
1581
+ managerContractClauseUpdate: {
1582
+ ({ contractClauseId, }: {
1583
+ contractClauseId: string;
1584
+ }): string;
1585
+ method: "PUT";
1586
+ };
1587
+ managerContractClauseGet: {
1588
+ ({ contractClauseId, }: {
1589
+ contractClauseId: string;
1590
+ }): string;
1591
+ method: "GET";
1592
+ };
1593
+ adminListingGet: {
1594
+ ({ listingId }: {
1595
+ listingId: string;
1596
+ }): string;
1597
+ method: "GET";
1598
+ };
1599
+ adminListingAcceptRegistration: {
1600
+ ({ listingId, }: {
1601
+ listingId: string;
1602
+ }): string;
1603
+ method: "POST";
1604
+ };
1605
+ adminListingOpen: {
1606
+ ({ listingId }: {
1607
+ listingId: string;
1608
+ }): string;
1609
+ method: "POST";
1610
+ };
1611
+ internalDeleteListing: {
1612
+ ({ listingId }: {
1613
+ listingId: string;
1614
+ }): string;
1615
+ method: "DELETE";
1616
+ };
1617
+ managerInquiriesCreate: {
1618
+ (): string;
1619
+ method: "POST";
1620
+ };
1621
+ managerInquiriesList: {
1622
+ ({ page, status, contractStatus, itemsPerPage, guestName, guestEmail, channel, createdByUserType, }: {
1623
+ page?: number | undefined;
1624
+ status?: string | undefined;
1625
+ contractStatus?: string | undefined;
1626
+ itemsPerPage?: number | undefined;
1627
+ guestName?: string | undefined;
1628
+ guestEmail?: string | undefined;
1629
+ channel?: string | undefined;
1630
+ createdByUserType?: string | undefined;
1631
+ }): string;
1632
+ method: "GET";
1633
+ };
1634
+ managerInquiryUpdate: {
1635
+ ({ inquiryId }: {
1636
+ inquiryId: string;
1637
+ }): string;
1638
+ method: "PUT";
1639
+ };
1640
+ managerInquiryAvailabilityStatusUpdate: {
1641
+ ({ inquiryId, }: {
1642
+ inquiryId: string;
1643
+ }): string;
1644
+ method: "PUT";
1645
+ };
1646
+ managerSyncOfContractsAndPaymentsStatusUpdate: {
1647
+ ({ inquiryId, }: {
1648
+ inquiryId: string;
1649
+ }): string;
1650
+ method: "PUT";
1651
+ };
1652
+ managerInquiryUpdateListingRelation: {
1653
+ ({ inquiryId, listingId, }: {
1654
+ inquiryId: string;
1655
+ listingId: string;
1656
+ }): string;
1657
+ method: "PATCH";
1658
+ };
1659
+ managerInquiryGet: {
1660
+ ({ inquiryId }: {
1661
+ inquiryId: string;
1662
+ }): string;
1663
+ method: "GET";
1664
+ };
1665
+ managerInquiriesIssueGuestInformationForm: {
1666
+ ({ inquiryId, }: {
1667
+ inquiryId: string;
1668
+ }): string;
1669
+ method: "POST";
1670
+ };
1671
+ managerInquiriesReissueContractPassword: {
1672
+ ({ inquiryId, }: {
1673
+ inquiryId: string;
1674
+ }): string;
1675
+ method: "POST";
1676
+ };
1677
+ managerInquiriesReissueContractToken: {
1678
+ ({ inquiryId, }: {
1679
+ inquiryId: string;
1680
+ }): string;
1681
+ method: "POST";
1682
+ };
1683
+ managerInquriesGetAssociatedGuestInformation: {
1684
+ ({ inquiryId, }: {
1685
+ inquiryId: string;
1686
+ }): string;
1687
+ method: "GET";
1688
+ };
1689
+ managerInquiriesScreenGuest: {
1690
+ ({ inquiryId, }: {
1691
+ inquiryId: string;
1692
+ }): string;
1693
+ method: "PUT";
1694
+ };
1695
+ managerInquiriesStartScreeningGuest: {
1696
+ ({ inquiryId, }: {
1697
+ inquiryId: string;
1698
+ }): string;
1699
+ method: "PUT";
1700
+ };
1701
+ managerInquiriesGetInquiryToken: {
1702
+ ({ inquiryId, }: {
1703
+ inquiryId: string;
1704
+ }): string;
1705
+ method: "GET";
1706
+ };
1707
+ managerInquiriesPublishInquiryToken: {
1708
+ ({ inquiryId, }: {
1709
+ inquiryId: string;
1710
+ }): string;
1711
+ method: "POST";
1712
+ };
1713
+ managerInquiriesGetPaymentOrderItemsForContract: {
1714
+ ({ inquiryId, }: {
1715
+ inquiryId: string;
1716
+ }): string;
1717
+ method: "GET";
1718
+ };
1719
+ managerInquiriesCreatePaymentOrder: {
1720
+ ({ inquiryId, }: {
1721
+ inquiryId: string;
1722
+ }): string;
1723
+ method: "POST";
1724
+ };
1725
+ managerInquiriesListPaymentOrders: {
1726
+ ({ inquiryId, }: {
1727
+ inquiryId: string;
1728
+ }): string;
1729
+ method: "GET";
1730
+ };
1731
+ managerInquiriesGetReservation: {
1732
+ ({ inquiryId, }: {
1733
+ inquiryId: string;
1734
+ }): string;
1735
+ method: "GET";
1736
+ };
1737
+ managerInquiriesGetAssociationGuest: {
1738
+ ({ inquiryId, }: {
1739
+ inquiryId: string;
1740
+ }): string;
1741
+ method: "GET";
1742
+ };
1743
+ adminCompanyCreate: {
1744
+ (): string;
1745
+ method: "POST";
1746
+ };
1747
+ informationGetCityNamesInPrefecture: {
1748
+ ({ prefName, }: {
1749
+ prefName?: string | undefined;
1750
+ }): string;
1751
+ method: "GET";
1752
+ };
1753
+ informationGetLocationForCompany: {
1754
+ ({ locationName, }: {
1755
+ locationName?: string | undefined;
1756
+ }): string;
1757
+ method: "GET";
1758
+ };
1759
+ informationGetKeywordsByCategories: {
1760
+ ({ categories, }: {
1761
+ categories?: string | undefined;
1762
+ }): string;
1763
+ method: "GET";
1764
+ };
1765
+ informationGetLineNamesByPrefectureNameForCompany: {
1766
+ ({ prefName, }: {
1767
+ prefName?: string | undefined;
1768
+ }): string;
1769
+ method: "GET";
1770
+ };
1771
+ informationGetStationNamesByLineNameForCompany: {
1772
+ ({ lineName, }: {
1773
+ lineName?: string | undefined;
1774
+ }): string;
1775
+ method: "GET";
1776
+ };
1777
+ managerOwnerList: {
1778
+ (): string;
1779
+ method: "GET";
1780
+ };
1781
+ managerOwnerGet: {
1782
+ ({ id }: {
1783
+ id: string;
1784
+ }): string;
1785
+ method: "GET";
1786
+ };
1787
+ managerOwnerCreate: {
1788
+ (): string;
1789
+ method: "POST";
1790
+ };
1791
+ managerOwnerUpdate: {
1792
+ ({ id }: {
1793
+ id: string;
1794
+ }): string;
1795
+ method: "PUT";
1796
+ };
1797
+ managerOwnerDelete: {
1798
+ ({ id }: {
1799
+ id: string;
1800
+ }): string;
1801
+ method: "DELETE";
1802
+ };
1803
+ managerCalendarBlockCreate: {
1804
+ (): string;
1805
+ method: "POST";
1806
+ };
1807
+ managerCalendarBlockGet: {
1808
+ ({ calendarBlockId, }: {
1809
+ calendarBlockId: string;
1810
+ }): string;
1811
+ method: "GET";
1812
+ };
1813
+ managerCalendarBlockUpdate: {
1814
+ ({ calendarBlockId, }: {
1815
+ calendarBlockId: string;
1816
+ }): string;
1817
+ method: "PUT";
1818
+ };
1819
+ managerCalendarBlockDelete: {
1820
+ ({ calendarBlockId, }: {
1821
+ calendarBlockId: string;
1822
+ }): string;
1823
+ method: "DELETE";
1824
+ };
1825
+ managerCalendarBlockFindByListingId: {
1826
+ ({ startDate, endDate, listingId, }: {
1827
+ startDate?: string | undefined;
1828
+ endDate?: string | undefined;
1829
+ listingId: string;
1830
+ }): string;
1831
+ method: "GET";
1832
+ };
1833
+ managerCalendarAvailableListingsSearch: {
1834
+ (): string;
1835
+ method: "POST";
1836
+ };
1837
+ managerCalendarImportCalendarRent: {
1838
+ (): string;
1839
+ method: "POST";
1840
+ };
1841
+ managerCalendarExportCalendarRent: {
1842
+ (): string;
1843
+ method: "POST";
1844
+ };
1845
+ managerICalParse: {
1846
+ (): string;
1847
+ method: "POST";
1848
+ };
1849
+ managerPaymentGetPaymentOrder: {
1850
+ ({ paymentOrderId, }: {
1851
+ paymentOrderId: string;
1852
+ }): string;
1853
+ method: "GET";
1854
+ };
1855
+ managerPaymentSyncUnregisteredVeritransPaymentTransaction: {
1856
+ ({ paymentOrderId, }: {
1857
+ paymentOrderId: string;
1858
+ }): string;
1859
+ method: "PUT";
1860
+ };
1861
+ managerPaymentCreatePaymentOrderItem: {
1862
+ ({ paymentOrderId, }: {
1863
+ paymentOrderId: string;
1864
+ }): string;
1865
+ method: "POST";
1866
+ };
1867
+ managerPaymentUpdatePaymentOrderItem: {
1868
+ ({ paymentOrderId, paymentOrderItemId, }: {
1869
+ paymentOrderId: string;
1870
+ paymentOrderItemId: string;
1871
+ }): string;
1872
+ method: "PUT";
1873
+ };
1874
+ managerPaymentDeletePaymentOrderItem: {
1875
+ ({ paymentOrderId, paymentOrderItemId, }: {
1876
+ paymentOrderId: string;
1877
+ paymentOrderItemId: string;
1878
+ }): string;
1879
+ method: "DELETE";
1880
+ };
1881
+ managerPaymentResolvePaymentOrderUnknownStatus: {
1882
+ ({ paymentOrderId, }: {
1883
+ paymentOrderId: string;
1884
+ }): string;
1885
+ method: "PUT";
1886
+ };
1887
+ exportVeritransPaymentTransactions: {
1888
+ ({ yearMonth, }: {
1889
+ yearMonth?: string | undefined;
1890
+ }): string;
1891
+ method: "GET";
1892
+ };
1893
+ managerReservationCancel: {
1894
+ ({ id }: {
1895
+ id: string;
1896
+ }): string;
1897
+ method: "PUT";
1898
+ };
1899
+ managerReservationChangeStaySpan: {
1900
+ ({ id }: {
1901
+ id: string;
1902
+ }): string;
1903
+ method: "PATCH";
1904
+ };
1905
+ managerReservationPatch: {
1906
+ ({ id }: {
1907
+ id: string;
1908
+ }): string;
1909
+ method: "PATCH";
1910
+ };
1911
+ managerReservationSearchByReservationCode: {
1912
+ (): string;
1913
+ method: "POST";
1914
+ };
1915
+ managerReservationsList: {
1916
+ ({ couponId, page, itemsPerPage, }: {
1917
+ couponId?: string | undefined;
1918
+ page?: number | undefined;
1919
+ itemsPerPage?: number | undefined;
1920
+ }): string;
1921
+ method: "GET";
1922
+ };
1923
+ managerVeritransAccountCreate: {
1924
+ (): string;
1925
+ method: "POST";
1926
+ };
1927
+ managerListingVeritransAccountRelationRegister: {
1928
+ (): string;
1929
+ method: "POST";
1930
+ };
1931
+ updateAllBlankPaymentOrderItemId: {
1932
+ (): string;
1933
+ method: "PUT";
1934
+ };
1935
+ managerCouponCreate: {
1936
+ (): string;
1937
+ method: "POST";
1938
+ };
1939
+ managerCouponList: {
1940
+ (): string;
1941
+ method: "GET";
1942
+ };
1943
+ managerCouponPath: {
1944
+ ({ couponId }: {
1945
+ couponId: string;
1946
+ }): string;
1947
+ method: "PATCH";
1948
+ };
1949
+ managerCouponGet: {
1950
+ ({ couponId }: {
1951
+ couponId: string;
1952
+ }): string;
1953
+ method: "GET";
1954
+ };
1955
+ managerCouponListingRelationsGet: {
1956
+ ({ couponId, }: {
1957
+ couponId: string;
1958
+ }): string;
1959
+ method: "GET";
1960
+ };
1961
+ managerCouponListingRelationsBatchCreate: {
1962
+ (): string;
1963
+ method: "POST";
1964
+ };
1965
+ managerCouponListingRelationsDelete: {
1966
+ (): string;
1967
+ method: "DELETE";
1968
+ };
1969
+ managerRoomTypeCreate: {
1970
+ (): string;
1971
+ method: "POST";
1972
+ };
1973
+ managerRoomTypeList: {
1974
+ ({ page, itemsPerPage, }: {
1975
+ page?: number | undefined;
1976
+ itemsPerPage?: number | undefined;
1977
+ }): string;
1978
+ method: "GET";
1979
+ };
1980
+ managerRoomTypePatch: {
1981
+ ({ id }: {
1982
+ id: string;
1983
+ }): string;
1984
+ method: "PATCH";
1985
+ };
1986
+ managerRoomTypeGet: {
1987
+ ({ id }: {
1988
+ id: string;
1989
+ }): string;
1990
+ method: "GET";
1991
+ };
1992
+ managerRoomTypeSelectRepresentListing: {
1993
+ ({ id, }: {
1994
+ id: string;
1995
+ }): string;
1996
+ method: "POST";
1997
+ };
1998
+ managerRoomTypeAssociateListing: {
1999
+ ({ id }: {
2000
+ id: string;
2001
+ }): string;
2002
+ method: "POST";
2003
+ };
2004
+ managerRoomTypeDetachListings: {
2005
+ ({ id }: {
2006
+ id: string;
2007
+ }): string;
2008
+ method: "POST";
2009
+ };
2010
+ managerRoomTypeUpdateLocalizedData: {
2011
+ ({ id }: {
2012
+ id: string;
2013
+ }): string;
2014
+ method: "POST";
2015
+ };
2016
+ managerRoomTypeDeleteLocalizedData: {
2017
+ ({ id, locale, }: {
2018
+ id: string;
2019
+ locale: string;
2020
+ }): string;
2021
+ method: "DELETE";
2022
+ };
2023
+ };