endpoints-sdk-cli 2.3.3 → 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.
- package/README.md +23 -4
- package/lib/classes/Config.d.ts +21 -7
- package/lib/classes/Config.js +5 -11
- package/lib/commands/install.js +2 -2
- package/lib/endpoints/m2m-core.d.ts +4 -0
- package/lib/endpoints/m2m-core.js +7 -0
- package/lib/endpoints/m2m-core.v1.d.ts +5784 -0
- package/lib/endpoints/m2m-core.v1.js +7657 -0
- package/lib/endpoints/m2m-notifications.d.ts +4 -0
- package/lib/endpoints/m2m-notifications.js +7 -0
- package/lib/endpoints/m2m-notifications.v1.d.ts +86 -0
- package/lib/endpoints/m2m-notifications.v1.js +146 -0
- package/lib/endpoints/m2m-users.d.ts +4 -0
- package/lib/endpoints/m2m-users.js +7 -0
- package/lib/endpoints/m2m-users.v1.d.ts +220 -0
- package/lib/endpoints/m2m-users.v1.js +577 -0
- package/lib/endpoints/sumyca.d.ts +8 -0
- package/lib/endpoints/sumyca.guest-v3.d.ts +1104 -0
- package/lib/endpoints/sumyca.guest-v3.js +1294 -0
- package/lib/endpoints/sumyca.js +9 -0
- package/lib/endpoints/sumyca.manager-v3.d.ts +2023 -0
- package/lib/endpoints/sumyca.manager-v3.js +2610 -0
- package/lib/endpoints/sumyca.v3.d.ts +3027 -0
- package/lib/endpoints/sumyca.v3.js +3756 -0
- package/lib/makeFiles.d.ts +2 -1
- package/lib/makeFiles.js +2 -2
- package/lib/templates/files/endpoints.d.ts +3 -2
- package/lib/templates/files/endpoints.js +3 -2
- package/lib/templates/functions/root.d.ts +3 -3
- package/lib/templates/functions/root.js +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +3 -2
- package/schema.json +52 -0
|
@@ -0,0 +1,1104 @@
|
|
|
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
|
+
* トークまたは、パスワードを送り、契約書の内容を表示する
|
|
15
|
+
*
|
|
16
|
+
*/
|
|
17
|
+
export declare const readContract: {
|
|
18
|
+
({ inquiryId, revision, }: {
|
|
19
|
+
inquiryId: string;
|
|
20
|
+
revision: string;
|
|
21
|
+
}): string;
|
|
22
|
+
method: "POST";
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* ゲストが契約者情報を提出する
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
|
+
export declare const contractSubmitGuestInformation: {
|
|
29
|
+
({ inquiryId, revision, }: {
|
|
30
|
+
inquiryId: string;
|
|
31
|
+
revision: string;
|
|
32
|
+
}): string;
|
|
33
|
+
method: "POST";
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* 法人ゲストが契約者情報を提出する
|
|
37
|
+
*
|
|
38
|
+
*/
|
|
39
|
+
export declare const contractSubmitCorporationInformation: {
|
|
40
|
+
({ inquiryId, revision, }: {
|
|
41
|
+
inquiryId: string;
|
|
42
|
+
revision: string;
|
|
43
|
+
}): string;
|
|
44
|
+
method: "POST";
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* パスワードを送り、契約書に同意する
|
|
48
|
+
*
|
|
49
|
+
*/
|
|
50
|
+
export declare const contractAgree: {
|
|
51
|
+
({ inquiryId, revision, }: {
|
|
52
|
+
inquiryId: string;
|
|
53
|
+
revision: string;
|
|
54
|
+
}): string;
|
|
55
|
+
method: "POST";
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* 契約書作成に必要な入居者人数を取得する
|
|
59
|
+
*
|
|
60
|
+
*/
|
|
61
|
+
export declare const contractGetResidentCount: {
|
|
62
|
+
({ inquiryId, revision, }: {
|
|
63
|
+
inquiryId: string;
|
|
64
|
+
revision: string;
|
|
65
|
+
}): string;
|
|
66
|
+
method: "GET";
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* ゲストが身分証明書の画像をアップロードする
|
|
70
|
+
*
|
|
71
|
+
*/
|
|
72
|
+
export declare const guestIdentificationUploadImage: {
|
|
73
|
+
({ inquiryId, }: {
|
|
74
|
+
inquiryId: string;
|
|
75
|
+
}): string;
|
|
76
|
+
method: "POST";
|
|
77
|
+
};
|
|
78
|
+
/**
|
|
79
|
+
* ゲストが自分に紐づいている問い合わせの一覧を閲覧する
|
|
80
|
+
*
|
|
81
|
+
*/
|
|
82
|
+
export declare const authListContracts: {
|
|
83
|
+
(): string;
|
|
84
|
+
method: "GET";
|
|
85
|
+
};
|
|
86
|
+
/**
|
|
87
|
+
* ゲストが自分に紐づいている問い合わせを閲覧する
|
|
88
|
+
*
|
|
89
|
+
*/
|
|
90
|
+
export declare const authGetContract: {
|
|
91
|
+
({ inquiryId }: {
|
|
92
|
+
inquiryId: string;
|
|
93
|
+
}): string;
|
|
94
|
+
method: "GET";
|
|
95
|
+
};
|
|
96
|
+
/**
|
|
97
|
+
* 契約書の内容を表示する
|
|
98
|
+
*
|
|
99
|
+
*/
|
|
100
|
+
export declare const authReadContract: {
|
|
101
|
+
({ inquiryId, revision, }: {
|
|
102
|
+
inquiryId: string;
|
|
103
|
+
revision: string;
|
|
104
|
+
}): string;
|
|
105
|
+
method: "POST";
|
|
106
|
+
};
|
|
107
|
+
/**
|
|
108
|
+
* ゲストが契約者情報を取得する
|
|
109
|
+
*
|
|
110
|
+
*/
|
|
111
|
+
export declare const authContractGetGuestInformation: {
|
|
112
|
+
({ inquiryId, revision, }: {
|
|
113
|
+
inquiryId: string;
|
|
114
|
+
revision: string;
|
|
115
|
+
}): string;
|
|
116
|
+
method: "GET";
|
|
117
|
+
};
|
|
118
|
+
/**
|
|
119
|
+
* 法人ゲストが契約者情報を取得する
|
|
120
|
+
*
|
|
121
|
+
*/
|
|
122
|
+
export declare const authContractGetCorporationInformation: {
|
|
123
|
+
({ inquiryId, revision, }: {
|
|
124
|
+
inquiryId: string;
|
|
125
|
+
revision: string;
|
|
126
|
+
}): string;
|
|
127
|
+
method: "GET";
|
|
128
|
+
};
|
|
129
|
+
/**
|
|
130
|
+
* ゲストが契約者情報を更新する
|
|
131
|
+
*
|
|
132
|
+
*/
|
|
133
|
+
export declare const authContractUpdateGuestInformation: {
|
|
134
|
+
({ inquiryId, revision, }: {
|
|
135
|
+
inquiryId: string;
|
|
136
|
+
revision: string;
|
|
137
|
+
}): string;
|
|
138
|
+
method: "PUT";
|
|
139
|
+
};
|
|
140
|
+
/**
|
|
141
|
+
* 法人ゲストが契約者情報を更新する
|
|
142
|
+
*
|
|
143
|
+
*/
|
|
144
|
+
export declare const authContractUpdateCorporationInformation: {
|
|
145
|
+
({ inquiryId, revision, }: {
|
|
146
|
+
inquiryId: string;
|
|
147
|
+
revision: string;
|
|
148
|
+
}): string;
|
|
149
|
+
method: "PUT";
|
|
150
|
+
};
|
|
151
|
+
/**
|
|
152
|
+
* 個人ゲストが契約者情報を確定させる
|
|
153
|
+
*
|
|
154
|
+
*/
|
|
155
|
+
export declare const authContractSubmitGuestInformationForIndividual: {
|
|
156
|
+
({ inquiryId, revision, }: {
|
|
157
|
+
inquiryId: string;
|
|
158
|
+
revision: string;
|
|
159
|
+
}): string;
|
|
160
|
+
method: "POST";
|
|
161
|
+
};
|
|
162
|
+
/**
|
|
163
|
+
* 契約者情報を確定させる
|
|
164
|
+
*
|
|
165
|
+
*/
|
|
166
|
+
export declare const authContractSubmitGuestInformation: {
|
|
167
|
+
({ inquiryId, revision, }: {
|
|
168
|
+
inquiryId: string;
|
|
169
|
+
revision: string;
|
|
170
|
+
}): string;
|
|
171
|
+
method: "POST";
|
|
172
|
+
};
|
|
173
|
+
/**
|
|
174
|
+
* パスワードを送り、契約書に同意する
|
|
175
|
+
*
|
|
176
|
+
*/
|
|
177
|
+
export declare const authContractAgree: {
|
|
178
|
+
({ inquiryId, revision, }: {
|
|
179
|
+
inquiryId: string;
|
|
180
|
+
revision: string;
|
|
181
|
+
}): string;
|
|
182
|
+
method: "POST";
|
|
183
|
+
};
|
|
184
|
+
/**
|
|
185
|
+
* ゲスト身分証画像の一覧を取得する
|
|
186
|
+
*
|
|
187
|
+
*/
|
|
188
|
+
export declare const authGuestIdentificationList: {
|
|
189
|
+
({ inquiryId, }: {
|
|
190
|
+
inquiryId: string;
|
|
191
|
+
}): string;
|
|
192
|
+
method: "GET";
|
|
193
|
+
};
|
|
194
|
+
/**
|
|
195
|
+
* ゲスト身分証画像の実データ(base64エンコードされた文字列形式)を取得する
|
|
196
|
+
*
|
|
197
|
+
*/
|
|
198
|
+
export declare const authGuestIdentificationGetImageData: {
|
|
199
|
+
({ inquiryId, imageId, }: {
|
|
200
|
+
inquiryId: string;
|
|
201
|
+
imageId: string;
|
|
202
|
+
}): string;
|
|
203
|
+
method: "GET";
|
|
204
|
+
};
|
|
205
|
+
/**
|
|
206
|
+
* ゲスト身分証画像をアップロードする
|
|
207
|
+
*
|
|
208
|
+
*/
|
|
209
|
+
export declare const authGuestIdentificationUploadImageData: {
|
|
210
|
+
({ inquiryId, }: {
|
|
211
|
+
inquiryId: string;
|
|
212
|
+
}): string;
|
|
213
|
+
method: "POST";
|
|
214
|
+
};
|
|
215
|
+
/**
|
|
216
|
+
* ゲスト身分証画像を追加アップロードする
|
|
217
|
+
*
|
|
218
|
+
*/
|
|
219
|
+
export declare const authGuestIdentificationAdditionalUploadImageData: {
|
|
220
|
+
({ inquiryId, }: {
|
|
221
|
+
inquiryId: string;
|
|
222
|
+
}): string;
|
|
223
|
+
method: "POST";
|
|
224
|
+
};
|
|
225
|
+
/**
|
|
226
|
+
* ゲストの身分証画像を削除する
|
|
227
|
+
*
|
|
228
|
+
*/
|
|
229
|
+
export declare const authGuestIdentificationDeleteImageData: {
|
|
230
|
+
({ inquiryId, imageId, }: {
|
|
231
|
+
inquiryId: string;
|
|
232
|
+
imageId: string;
|
|
233
|
+
}): string;
|
|
234
|
+
method: "DELETE";
|
|
235
|
+
};
|
|
236
|
+
/**
|
|
237
|
+
* 公開されているリスティングを取得する
|
|
238
|
+
* @param {string} locale jp
|
|
239
|
+
*/
|
|
240
|
+
export declare const listingGet: {
|
|
241
|
+
({ locale, listingId, }: {
|
|
242
|
+
locale?: string | undefined;
|
|
243
|
+
listingId: string;
|
|
244
|
+
}): string;
|
|
245
|
+
method: "GET";
|
|
246
|
+
};
|
|
247
|
+
/**
|
|
248
|
+
* 指定した入居期間と入居人数に対する合計料金を取得する
|
|
249
|
+
* @param {string} startDate 2020-04-02
|
|
250
|
+
* @param {string} endDate 2020-05-23
|
|
251
|
+
* @param {number} persons 3
|
|
252
|
+
*/
|
|
253
|
+
export declare const listingGetTotalCostForDateSpanAndPersons: {
|
|
254
|
+
({ startDate, endDate, persons, listingId, }: {
|
|
255
|
+
startDate?: string | undefined;
|
|
256
|
+
endDate?: string | undefined;
|
|
257
|
+
persons?: number | undefined;
|
|
258
|
+
listingId: string;
|
|
259
|
+
}): string;
|
|
260
|
+
method: "GET";
|
|
261
|
+
};
|
|
262
|
+
/**
|
|
263
|
+
* カレンダーの在庫情報を取得する
|
|
264
|
+
* @param {string} startDate 2020-04-02
|
|
265
|
+
* @param {string} endDate 2020-05-23
|
|
266
|
+
*/
|
|
267
|
+
export declare const getCalendarsByListingIdAndDateSpan: {
|
|
268
|
+
({ startDate, endDate, listingId, }: {
|
|
269
|
+
startDate?: string | undefined;
|
|
270
|
+
endDate?: string | undefined;
|
|
271
|
+
listingId: string;
|
|
272
|
+
}): string;
|
|
273
|
+
method: "GET";
|
|
274
|
+
};
|
|
275
|
+
/**
|
|
276
|
+
* 地点名及びキーワードなどの条件によるリスティング検索結果を取得する
|
|
277
|
+
* @param {string} locationName 新宿
|
|
278
|
+
* @param {number} radius 5.0
|
|
279
|
+
* @param {string} keywordIds 1,3,10
|
|
280
|
+
* @param {string} layoutTypes 1LDK,2LDK
|
|
281
|
+
* @param {string} listingTypes Apartment,Mansion
|
|
282
|
+
* @param {number} buildYearAfter 1980
|
|
283
|
+
* @param {number} buildYearBefore 2020
|
|
284
|
+
* @param {number} minSize 10.0
|
|
285
|
+
* @param {number} maxSize 50.2
|
|
286
|
+
* @param {number} minNumGuests 1
|
|
287
|
+
* @param {number} maxNumGuests 3
|
|
288
|
+
* @param {number} minCost 1000
|
|
289
|
+
* @param {number} maxCost 20000
|
|
290
|
+
* @param {number} page 0
|
|
291
|
+
* @param {number} itemsPerPage 20
|
|
292
|
+
* @param {string} reservationApprovalRequiredSetting ImmediateReservationRequest
|
|
293
|
+
* @param {number} maxMinuteWalk 5
|
|
294
|
+
* @param {string} listingSaleType onSale
|
|
295
|
+
* @param {string} locale ja
|
|
296
|
+
*/
|
|
297
|
+
export declare const searchListingsByLocationNameAndConditions: {
|
|
298
|
+
({ locationName, radius, keywordIds, layoutTypes, listingTypes, buildYearAfter, buildYearBefore, minSize, maxSize, minNumGuests, maxNumGuests, minCost, maxCost, page, itemsPerPage, reservationApprovalRequiredSetting, maxMinuteWalk, listingSaleType, locale, }: {
|
|
299
|
+
locationName?: string | undefined;
|
|
300
|
+
radius?: number | undefined;
|
|
301
|
+
keywordIds?: string | undefined;
|
|
302
|
+
layoutTypes?: string | undefined;
|
|
303
|
+
listingTypes?: string | undefined;
|
|
304
|
+
buildYearAfter?: number | undefined;
|
|
305
|
+
buildYearBefore?: number | undefined;
|
|
306
|
+
minSize?: number | undefined;
|
|
307
|
+
maxSize?: number | undefined;
|
|
308
|
+
minNumGuests?: number | undefined;
|
|
309
|
+
maxNumGuests?: number | undefined;
|
|
310
|
+
minCost?: number | undefined;
|
|
311
|
+
maxCost?: number | undefined;
|
|
312
|
+
page?: number | undefined;
|
|
313
|
+
itemsPerPage?: number | undefined;
|
|
314
|
+
reservationApprovalRequiredSetting?: string | undefined;
|
|
315
|
+
maxMinuteWalk?: number | undefined;
|
|
316
|
+
listingSaleType?: string | undefined;
|
|
317
|
+
locale?: string | undefined;
|
|
318
|
+
}): string;
|
|
319
|
+
method: "GET";
|
|
320
|
+
};
|
|
321
|
+
/**
|
|
322
|
+
* 複数条件によるリスティング検索結果を取得する
|
|
323
|
+
* @param {string} stations 東京駅,池袋駅
|
|
324
|
+
* @param {string} prefecture 東京都
|
|
325
|
+
* @param {string} cities 渋谷区,豊島区
|
|
326
|
+
* @param {string} keywordIds 1,3,10
|
|
327
|
+
* @param {string} layoutTypes 1LDK,2LDK
|
|
328
|
+
* @param {string} listingTypes Apartment,Mansion
|
|
329
|
+
* @param {number} buildYearAfter 1980
|
|
330
|
+
* @param {number} buildYearBefore 2020
|
|
331
|
+
* @param {number} minSize 10.0
|
|
332
|
+
* @param {number} maxSize 50.2
|
|
333
|
+
* @param {number} minNumGuests 1
|
|
334
|
+
* @param {number} maxNumGuests 3
|
|
335
|
+
* @param {number} minCost 1000
|
|
336
|
+
* @param {number} maxCost 20000
|
|
337
|
+
* @param {number} page 0
|
|
338
|
+
* @param {number} itemsPerPage 20
|
|
339
|
+
* @param {string} reservationApprovalRequiredSetting ImmediateReservationRequest
|
|
340
|
+
* @param {number} maxMinuteWalk 5
|
|
341
|
+
* @param {string} listingSaleType onSale
|
|
342
|
+
* @param {string} locale ja
|
|
343
|
+
*/
|
|
344
|
+
export declare const searchListingsByMultipleConditions: {
|
|
345
|
+
({ stations, prefecture, cities, keywordIds, layoutTypes, listingTypes, buildYearAfter, buildYearBefore, minSize, maxSize, minNumGuests, maxNumGuests, minCost, maxCost, page, itemsPerPage, reservationApprovalRequiredSetting, maxMinuteWalk, listingSaleType, locale, }: {
|
|
346
|
+
stations?: string | undefined;
|
|
347
|
+
prefecture?: string | undefined;
|
|
348
|
+
cities?: string | undefined;
|
|
349
|
+
keywordIds?: string | undefined;
|
|
350
|
+
layoutTypes?: string | undefined;
|
|
351
|
+
listingTypes?: string | undefined;
|
|
352
|
+
buildYearAfter?: number | undefined;
|
|
353
|
+
buildYearBefore?: number | undefined;
|
|
354
|
+
minSize?: number | undefined;
|
|
355
|
+
maxSize?: number | undefined;
|
|
356
|
+
minNumGuests?: number | undefined;
|
|
357
|
+
maxNumGuests?: number | undefined;
|
|
358
|
+
minCost?: number | undefined;
|
|
359
|
+
maxCost?: number | undefined;
|
|
360
|
+
page?: number | undefined;
|
|
361
|
+
itemsPerPage?: number | undefined;
|
|
362
|
+
reservationApprovalRequiredSetting?: string | undefined;
|
|
363
|
+
maxMinuteWalk?: number | undefined;
|
|
364
|
+
listingSaleType?: string | undefined;
|
|
365
|
+
locale?: string | undefined;
|
|
366
|
+
}): string;
|
|
367
|
+
method: "GET";
|
|
368
|
+
};
|
|
369
|
+
/**
|
|
370
|
+
* 地点名及びキーワードなどの条件による部屋タイプ情報を含めたリスティング検索結果を取得する
|
|
371
|
+
* @param {string} locationName 新宿
|
|
372
|
+
* @param {number} radius 5.0
|
|
373
|
+
* @param {string} keywordIds 1,3,10
|
|
374
|
+
* @param {string} layoutTypes 1LDK,2LDK
|
|
375
|
+
* @param {string} listingTypes Apartment,Mansion
|
|
376
|
+
* @param {number} buildYearAfter 1980
|
|
377
|
+
* @param {number} buildYearBefore 2020
|
|
378
|
+
* @param {number} minSize 10.0
|
|
379
|
+
* @param {number} maxSize 50.2
|
|
380
|
+
* @param {number} minNumGuests 1
|
|
381
|
+
* @param {number} maxNumGuests 3
|
|
382
|
+
* @param {number} minCost 1000
|
|
383
|
+
* @param {number} maxCost 20000
|
|
384
|
+
* @param {number} page 0
|
|
385
|
+
* @param {number} itemsPerPage 20
|
|
386
|
+
* @param {string} reservationApprovalRequiredSetting ImmediateReservationRequest
|
|
387
|
+
* @param {number} maxMinuteWalk 5
|
|
388
|
+
* @param {string} listingSaleType onSale
|
|
389
|
+
* @param {string} locale ja
|
|
390
|
+
*/
|
|
391
|
+
export declare const searchListingsWithRoomTypeByLocationNameAndMultipleConditions: {
|
|
392
|
+
({ locationName, radius, keywordIds, layoutTypes, listingTypes, buildYearAfter, buildYearBefore, minSize, maxSize, minNumGuests, maxNumGuests, minCost, maxCost, page, itemsPerPage, reservationApprovalRequiredSetting, maxMinuteWalk, listingSaleType, locale, }: {
|
|
393
|
+
locationName?: string | undefined;
|
|
394
|
+
radius?: number | undefined;
|
|
395
|
+
keywordIds?: string | undefined;
|
|
396
|
+
layoutTypes?: string | undefined;
|
|
397
|
+
listingTypes?: string | undefined;
|
|
398
|
+
buildYearAfter?: number | undefined;
|
|
399
|
+
buildYearBefore?: number | undefined;
|
|
400
|
+
minSize?: number | undefined;
|
|
401
|
+
maxSize?: number | undefined;
|
|
402
|
+
minNumGuests?: number | undefined;
|
|
403
|
+
maxNumGuests?: number | undefined;
|
|
404
|
+
minCost?: number | undefined;
|
|
405
|
+
maxCost?: number | undefined;
|
|
406
|
+
page?: number | undefined;
|
|
407
|
+
itemsPerPage?: number | undefined;
|
|
408
|
+
reservationApprovalRequiredSetting?: string | undefined;
|
|
409
|
+
maxMinuteWalk?: number | undefined;
|
|
410
|
+
listingSaleType?: string | undefined;
|
|
411
|
+
locale?: string | undefined;
|
|
412
|
+
}): string;
|
|
413
|
+
method: "GET";
|
|
414
|
+
};
|
|
415
|
+
/**
|
|
416
|
+
* セール中の物件をセールタイプ更新日時順に取得する
|
|
417
|
+
* @param {number} page 0
|
|
418
|
+
* @param {number} itemsPerPage 30
|
|
419
|
+
*/
|
|
420
|
+
export declare const getSaleTypeOnSaleListingsSortedBySaleTypeUpdatedAtAsc: {
|
|
421
|
+
({ page, itemsPerPage, }: {
|
|
422
|
+
page?: number | undefined;
|
|
423
|
+
itemsPerPage?: number | undefined;
|
|
424
|
+
}): string;
|
|
425
|
+
method: "GET";
|
|
426
|
+
};
|
|
427
|
+
/**
|
|
428
|
+
* メールアドレスとパスワードでサインアップする
|
|
429
|
+
*
|
|
430
|
+
*/
|
|
431
|
+
export declare const guestUserSignUpWithPassword: {
|
|
432
|
+
(): string;
|
|
433
|
+
method: "POST";
|
|
434
|
+
};
|
|
435
|
+
/**
|
|
436
|
+
* OAuthを使ってサインアップする
|
|
437
|
+
*
|
|
438
|
+
*/
|
|
439
|
+
export declare const guestuserSignUpWithOAuth: {
|
|
440
|
+
(): string;
|
|
441
|
+
method: "POST";
|
|
442
|
+
};
|
|
443
|
+
/**
|
|
444
|
+
* メールアドレスとパスワードでサインインする
|
|
445
|
+
*
|
|
446
|
+
*/
|
|
447
|
+
export declare const guestUserSigninWithPassword: {
|
|
448
|
+
(): string;
|
|
449
|
+
method: "POST";
|
|
450
|
+
};
|
|
451
|
+
/**
|
|
452
|
+
* OAuthでサインインする
|
|
453
|
+
*
|
|
454
|
+
*/
|
|
455
|
+
export declare const guestUserSigninWithOAuth: {
|
|
456
|
+
(): string;
|
|
457
|
+
method: "POST";
|
|
458
|
+
};
|
|
459
|
+
/**
|
|
460
|
+
* パスワードリセットを行うメールを送信する
|
|
461
|
+
*
|
|
462
|
+
*/
|
|
463
|
+
export declare const guestUserSendPasswordResetEmail: {
|
|
464
|
+
(): string;
|
|
465
|
+
method: "POST";
|
|
466
|
+
};
|
|
467
|
+
/**
|
|
468
|
+
* パスワードをリセットする
|
|
469
|
+
*
|
|
470
|
+
*/
|
|
471
|
+
export declare const guestUserResetPassword: {
|
|
472
|
+
(): string;
|
|
473
|
+
method: "POST";
|
|
474
|
+
};
|
|
475
|
+
/**
|
|
476
|
+
* 問い合わせとゲストの紐付けを行う
|
|
477
|
+
* @param {string} token foo
|
|
478
|
+
*/
|
|
479
|
+
export declare const guestUserAssociateWithInquiry: {
|
|
480
|
+
({ token, }: {
|
|
481
|
+
token?: string | undefined;
|
|
482
|
+
}): string;
|
|
483
|
+
method: "POST";
|
|
484
|
+
};
|
|
485
|
+
/**
|
|
486
|
+
* ゲストが今すぐ予約を行う
|
|
487
|
+
*
|
|
488
|
+
*/
|
|
489
|
+
export declare const reservationReserveImmediately: {
|
|
490
|
+
(): string;
|
|
491
|
+
method: "POST";
|
|
492
|
+
};
|
|
493
|
+
/**
|
|
494
|
+
* (内部向け) リスティングを削除する
|
|
495
|
+
*
|
|
496
|
+
*/
|
|
497
|
+
export declare const internalDeleteListing: {
|
|
498
|
+
({ listingId }: {
|
|
499
|
+
listingId: string;
|
|
500
|
+
}): string;
|
|
501
|
+
method: "DELETE";
|
|
502
|
+
};
|
|
503
|
+
/**
|
|
504
|
+
* ゲストが問い合わせを送信する
|
|
505
|
+
*
|
|
506
|
+
*/
|
|
507
|
+
export declare const inquiryCreate: {
|
|
508
|
+
(): string;
|
|
509
|
+
method: "POST";
|
|
510
|
+
};
|
|
511
|
+
/**
|
|
512
|
+
* ゲストが問い合わせに紐ずく決済を取得する
|
|
513
|
+
*
|
|
514
|
+
*/
|
|
515
|
+
export declare const inquiryGetPaymentOrders: {
|
|
516
|
+
({ inquiryId, }: {
|
|
517
|
+
inquiryId: string;
|
|
518
|
+
}): string;
|
|
519
|
+
method: "GET";
|
|
520
|
+
};
|
|
521
|
+
/**
|
|
522
|
+
* ゲストが問い合わせに紐ずく予約を取得する
|
|
523
|
+
*
|
|
524
|
+
*/
|
|
525
|
+
export declare const inquiryGetReservation: {
|
|
526
|
+
({ inquiryId }: {
|
|
527
|
+
inquiryId: string;
|
|
528
|
+
}): string;
|
|
529
|
+
method: "GET";
|
|
530
|
+
};
|
|
531
|
+
/**
|
|
532
|
+
* ゲストがveritranaのトークンを取得するために必要なAPIKEYを取得する
|
|
533
|
+
*
|
|
534
|
+
*/
|
|
535
|
+
export declare const inquiryGetVeritransTokenApiKey: {
|
|
536
|
+
({ inquiryId, }: {
|
|
537
|
+
inquiryId: string;
|
|
538
|
+
}): string;
|
|
539
|
+
method: "GET";
|
|
540
|
+
};
|
|
541
|
+
/**
|
|
542
|
+
* ゲストが問い合わせに紐ずくクーポンを取得する
|
|
543
|
+
*
|
|
544
|
+
*/
|
|
545
|
+
export declare const inquiryGetCoupon: {
|
|
546
|
+
({ inquiryId }: {
|
|
547
|
+
inquiryId: string;
|
|
548
|
+
}): string;
|
|
549
|
+
method: "GET";
|
|
550
|
+
};
|
|
551
|
+
/**
|
|
552
|
+
* ゲストがカテゴリページから問い合わせを送信する
|
|
553
|
+
*
|
|
554
|
+
*/
|
|
555
|
+
export declare const inquiryCreateForCategoryPage: {
|
|
556
|
+
(): string;
|
|
557
|
+
method: "POST";
|
|
558
|
+
};
|
|
559
|
+
/**
|
|
560
|
+
* 指定した都道府県に属する市町村の名前の一覧を取得する
|
|
561
|
+
* @param {string} prefName hoge
|
|
562
|
+
*/
|
|
563
|
+
export declare const informationGetCityNamesInPrefecture: {
|
|
564
|
+
({ prefName, }: {
|
|
565
|
+
prefName?: string | undefined;
|
|
566
|
+
}): string;
|
|
567
|
+
method: "GET";
|
|
568
|
+
};
|
|
569
|
+
/**
|
|
570
|
+
* 指定したカテゴリーのキーワードの一覧を取得する
|
|
571
|
+
* @param {string} categories Furniture,Appliance,Feature
|
|
572
|
+
*/
|
|
573
|
+
export declare const informationGetKeywordsByCategories: {
|
|
574
|
+
({ categories, }: {
|
|
575
|
+
categories?: string | undefined;
|
|
576
|
+
}): string;
|
|
577
|
+
method: "GET";
|
|
578
|
+
};
|
|
579
|
+
/**
|
|
580
|
+
* ゲストが決済を行う
|
|
581
|
+
*
|
|
582
|
+
*/
|
|
583
|
+
export declare const paymentOrdersPayConditional: {
|
|
584
|
+
({ paymentOrderId, }: {
|
|
585
|
+
paymentOrderId: string;
|
|
586
|
+
}): string;
|
|
587
|
+
method: "POST";
|
|
588
|
+
};
|
|
589
|
+
/**
|
|
590
|
+
* ゲストが3Dセキュア決済を行う
|
|
591
|
+
*
|
|
592
|
+
*/
|
|
593
|
+
export declare const paymentOrdersPayConditional3DSecure: {
|
|
594
|
+
({ paymentOrderId, }: {
|
|
595
|
+
paymentOrderId: string;
|
|
596
|
+
}): string;
|
|
597
|
+
method: "POST";
|
|
598
|
+
};
|
|
599
|
+
/**
|
|
600
|
+
* 決済通知を受け取る
|
|
601
|
+
*
|
|
602
|
+
*/
|
|
603
|
+
export declare const paymentNotification: {
|
|
604
|
+
({ paymentOrderId, }: {
|
|
605
|
+
paymentOrderId: string;
|
|
606
|
+
}): string;
|
|
607
|
+
method: "POST";
|
|
608
|
+
};
|
|
609
|
+
/**
|
|
610
|
+
* ゲストが今すぐ予約で作成された問い合わせの決済を行う
|
|
611
|
+
*
|
|
612
|
+
*/
|
|
613
|
+
export declare const paymentOrdersPayForInstantBook: {
|
|
614
|
+
({ paymentOrderId, }: {
|
|
615
|
+
paymentOrderId: string;
|
|
616
|
+
}): string;
|
|
617
|
+
method: "POST";
|
|
618
|
+
};
|
|
619
|
+
/**
|
|
620
|
+
* ゲストの決済結果の取得
|
|
621
|
+
* @param {number} sincePaymentTime 1666262441
|
|
622
|
+
*/
|
|
623
|
+
export declare const paymentResult: {
|
|
624
|
+
({ sincePaymentTime, paymentOrderId, }: {
|
|
625
|
+
sincePaymentTime?: number | undefined;
|
|
626
|
+
paymentOrderId: string;
|
|
627
|
+
}): string;
|
|
628
|
+
method: "GET";
|
|
629
|
+
};
|
|
630
|
+
/**
|
|
631
|
+
* 予約一覧を取得する
|
|
632
|
+
* @param {string} couponId foo
|
|
633
|
+
* @param {number} page 0
|
|
634
|
+
* @param {number} itemsPerPage 20
|
|
635
|
+
*/
|
|
636
|
+
export declare const managerReservationsList: {
|
|
637
|
+
({ couponId, page, itemsPerPage, }: {
|
|
638
|
+
couponId?: string | undefined;
|
|
639
|
+
page?: number | undefined;
|
|
640
|
+
itemsPerPage?: number | undefined;
|
|
641
|
+
}): string;
|
|
642
|
+
method: "GET";
|
|
643
|
+
};
|
|
644
|
+
/**
|
|
645
|
+
* 空欄の決済項目のidを更新する
|
|
646
|
+
*
|
|
647
|
+
*/
|
|
648
|
+
export declare const updateAllBlankPaymentOrderItemId: {
|
|
649
|
+
(): string;
|
|
650
|
+
method: "PUT";
|
|
651
|
+
};
|
|
652
|
+
/**
|
|
653
|
+
* 問い合わせとゲストの紐付けを行う
|
|
654
|
+
* @param {string} couponCode ask3kd
|
|
655
|
+
* @param {string} listingId 1a1969fa-2684-412b-846d-2913d6991aa5
|
|
656
|
+
*/
|
|
657
|
+
export declare const guestCouponGetByCouponCode: {
|
|
658
|
+
({ couponCode, listingId, }: {
|
|
659
|
+
couponCode?: string | undefined;
|
|
660
|
+
listingId?: string | undefined;
|
|
661
|
+
}): string;
|
|
662
|
+
method: "GET";
|
|
663
|
+
};
|
|
664
|
+
/**
|
|
665
|
+
* 公開されている部屋タイプの日ごとのカレンダーを取得する
|
|
666
|
+
*
|
|
667
|
+
*/
|
|
668
|
+
export declare const roomTypeCalendarGetByRoomTypeId: {
|
|
669
|
+
({ roomTypeId, }: {
|
|
670
|
+
roomTypeId: string;
|
|
671
|
+
}): string;
|
|
672
|
+
method: "POST";
|
|
673
|
+
};
|
|
674
|
+
/**
|
|
675
|
+
* 部屋タイプと代表の部屋を取得する
|
|
676
|
+
* @param {string} locale ja
|
|
677
|
+
*/
|
|
678
|
+
export declare const roomTypeGetRepresentListing: {
|
|
679
|
+
({ locale, roomTypeId, }: {
|
|
680
|
+
locale?: string | undefined;
|
|
681
|
+
roomTypeId: string;
|
|
682
|
+
}): string;
|
|
683
|
+
method: "GET";
|
|
684
|
+
};
|
|
685
|
+
/**
|
|
686
|
+
* 指定した宿泊可能な期間と入居人数に対する宿泊契約の合計料金を取得する
|
|
687
|
+
* @param {string} startDate 2020-04-02
|
|
688
|
+
* @param {string} endDate 2020-05-23
|
|
689
|
+
* @param {number} persons 3
|
|
690
|
+
*/
|
|
691
|
+
export declare const roomTypeGetHotelStayTotalCostForAvailableDateSpanAndPersons: {
|
|
692
|
+
({ startDate, endDate, persons, roomTypeId, }: {
|
|
693
|
+
startDate?: string | undefined;
|
|
694
|
+
endDate?: string | undefined;
|
|
695
|
+
persons?: number | undefined;
|
|
696
|
+
roomTypeId: string;
|
|
697
|
+
}): string;
|
|
698
|
+
method: "GET";
|
|
699
|
+
};
|
|
700
|
+
export declare const sumyca_guestV3: {
|
|
701
|
+
healthCheck: {
|
|
702
|
+
(): string;
|
|
703
|
+
method: "GET";
|
|
704
|
+
};
|
|
705
|
+
readContract: {
|
|
706
|
+
({ inquiryId, revision, }: {
|
|
707
|
+
inquiryId: string;
|
|
708
|
+
revision: string;
|
|
709
|
+
}): string;
|
|
710
|
+
method: "POST";
|
|
711
|
+
};
|
|
712
|
+
contractSubmitGuestInformation: {
|
|
713
|
+
({ inquiryId, revision, }: {
|
|
714
|
+
inquiryId: string;
|
|
715
|
+
revision: string;
|
|
716
|
+
}): string;
|
|
717
|
+
method: "POST";
|
|
718
|
+
};
|
|
719
|
+
contractSubmitCorporationInformation: {
|
|
720
|
+
({ inquiryId, revision, }: {
|
|
721
|
+
inquiryId: string;
|
|
722
|
+
revision: string;
|
|
723
|
+
}): string;
|
|
724
|
+
method: "POST";
|
|
725
|
+
};
|
|
726
|
+
contractAgree: {
|
|
727
|
+
({ inquiryId, revision, }: {
|
|
728
|
+
inquiryId: string;
|
|
729
|
+
revision: string;
|
|
730
|
+
}): string;
|
|
731
|
+
method: "POST";
|
|
732
|
+
};
|
|
733
|
+
contractGetResidentCount: {
|
|
734
|
+
({ inquiryId, revision, }: {
|
|
735
|
+
inquiryId: string;
|
|
736
|
+
revision: string;
|
|
737
|
+
}): string;
|
|
738
|
+
method: "GET";
|
|
739
|
+
};
|
|
740
|
+
guestIdentificationUploadImage: {
|
|
741
|
+
({ inquiryId, }: {
|
|
742
|
+
inquiryId: string;
|
|
743
|
+
}): string;
|
|
744
|
+
method: "POST";
|
|
745
|
+
};
|
|
746
|
+
authListContracts: {
|
|
747
|
+
(): string;
|
|
748
|
+
method: "GET";
|
|
749
|
+
};
|
|
750
|
+
authGetContract: {
|
|
751
|
+
({ inquiryId }: {
|
|
752
|
+
inquiryId: string;
|
|
753
|
+
}): string;
|
|
754
|
+
method: "GET";
|
|
755
|
+
};
|
|
756
|
+
authReadContract: {
|
|
757
|
+
({ inquiryId, revision, }: {
|
|
758
|
+
inquiryId: string;
|
|
759
|
+
revision: string;
|
|
760
|
+
}): string;
|
|
761
|
+
method: "POST";
|
|
762
|
+
};
|
|
763
|
+
authContractGetGuestInformation: {
|
|
764
|
+
({ inquiryId, revision, }: {
|
|
765
|
+
inquiryId: string;
|
|
766
|
+
revision: string;
|
|
767
|
+
}): string;
|
|
768
|
+
method: "GET";
|
|
769
|
+
};
|
|
770
|
+
authContractGetCorporationInformation: {
|
|
771
|
+
({ inquiryId, revision, }: {
|
|
772
|
+
inquiryId: string;
|
|
773
|
+
revision: string;
|
|
774
|
+
}): string;
|
|
775
|
+
method: "GET";
|
|
776
|
+
};
|
|
777
|
+
authContractUpdateGuestInformation: {
|
|
778
|
+
({ inquiryId, revision, }: {
|
|
779
|
+
inquiryId: string;
|
|
780
|
+
revision: string;
|
|
781
|
+
}): string;
|
|
782
|
+
method: "PUT";
|
|
783
|
+
};
|
|
784
|
+
authContractUpdateCorporationInformation: {
|
|
785
|
+
({ inquiryId, revision, }: {
|
|
786
|
+
inquiryId: string;
|
|
787
|
+
revision: string;
|
|
788
|
+
}): string;
|
|
789
|
+
method: "PUT";
|
|
790
|
+
};
|
|
791
|
+
authContractSubmitGuestInformationForIndividual: {
|
|
792
|
+
({ inquiryId, revision, }: {
|
|
793
|
+
inquiryId: string;
|
|
794
|
+
revision: string;
|
|
795
|
+
}): string;
|
|
796
|
+
method: "POST";
|
|
797
|
+
};
|
|
798
|
+
authContractSubmitGuestInformation: {
|
|
799
|
+
({ inquiryId, revision, }: {
|
|
800
|
+
inquiryId: string;
|
|
801
|
+
revision: string;
|
|
802
|
+
}): string;
|
|
803
|
+
method: "POST";
|
|
804
|
+
};
|
|
805
|
+
authContractAgree: {
|
|
806
|
+
({ inquiryId, revision, }: {
|
|
807
|
+
inquiryId: string;
|
|
808
|
+
revision: string;
|
|
809
|
+
}): string;
|
|
810
|
+
method: "POST";
|
|
811
|
+
};
|
|
812
|
+
authGuestIdentificationList: {
|
|
813
|
+
({ inquiryId, }: {
|
|
814
|
+
inquiryId: string;
|
|
815
|
+
}): string;
|
|
816
|
+
method: "GET";
|
|
817
|
+
};
|
|
818
|
+
authGuestIdentificationGetImageData: {
|
|
819
|
+
({ inquiryId, imageId, }: {
|
|
820
|
+
inquiryId: string;
|
|
821
|
+
imageId: string;
|
|
822
|
+
}): string;
|
|
823
|
+
method: "GET";
|
|
824
|
+
};
|
|
825
|
+
authGuestIdentificationUploadImageData: {
|
|
826
|
+
({ inquiryId, }: {
|
|
827
|
+
inquiryId: string;
|
|
828
|
+
}): string;
|
|
829
|
+
method: "POST";
|
|
830
|
+
};
|
|
831
|
+
authGuestIdentificationAdditionalUploadImageData: {
|
|
832
|
+
({ inquiryId, }: {
|
|
833
|
+
inquiryId: string;
|
|
834
|
+
}): string;
|
|
835
|
+
method: "POST";
|
|
836
|
+
};
|
|
837
|
+
authGuestIdentificationDeleteImageData: {
|
|
838
|
+
({ inquiryId, imageId, }: {
|
|
839
|
+
inquiryId: string;
|
|
840
|
+
imageId: string;
|
|
841
|
+
}): string;
|
|
842
|
+
method: "DELETE";
|
|
843
|
+
};
|
|
844
|
+
listingGet: {
|
|
845
|
+
({ locale, listingId, }: {
|
|
846
|
+
locale?: string | undefined;
|
|
847
|
+
listingId: string;
|
|
848
|
+
}): string;
|
|
849
|
+
method: "GET";
|
|
850
|
+
};
|
|
851
|
+
listingGetTotalCostForDateSpanAndPersons: {
|
|
852
|
+
({ startDate, endDate, persons, listingId, }: {
|
|
853
|
+
startDate?: string | undefined;
|
|
854
|
+
endDate?: string | undefined;
|
|
855
|
+
persons?: number | undefined;
|
|
856
|
+
listingId: string;
|
|
857
|
+
}): string;
|
|
858
|
+
method: "GET";
|
|
859
|
+
};
|
|
860
|
+
getCalendarsByListingIdAndDateSpan: {
|
|
861
|
+
({ startDate, endDate, listingId, }: {
|
|
862
|
+
startDate?: string | undefined;
|
|
863
|
+
endDate?: string | undefined;
|
|
864
|
+
listingId: string;
|
|
865
|
+
}): string;
|
|
866
|
+
method: "GET";
|
|
867
|
+
};
|
|
868
|
+
searchListingsByLocationNameAndConditions: {
|
|
869
|
+
({ locationName, radius, keywordIds, layoutTypes, listingTypes, buildYearAfter, buildYearBefore, minSize, maxSize, minNumGuests, maxNumGuests, minCost, maxCost, page, itemsPerPage, reservationApprovalRequiredSetting, maxMinuteWalk, listingSaleType, locale, }: {
|
|
870
|
+
locationName?: string | undefined;
|
|
871
|
+
radius?: number | undefined;
|
|
872
|
+
keywordIds?: string | undefined;
|
|
873
|
+
layoutTypes?: string | undefined;
|
|
874
|
+
listingTypes?: string | undefined;
|
|
875
|
+
buildYearAfter?: number | undefined;
|
|
876
|
+
buildYearBefore?: number | undefined;
|
|
877
|
+
minSize?: number | undefined;
|
|
878
|
+
maxSize?: number | undefined;
|
|
879
|
+
minNumGuests?: number | undefined;
|
|
880
|
+
maxNumGuests?: number | undefined;
|
|
881
|
+
minCost?: number | undefined;
|
|
882
|
+
maxCost?: number | undefined;
|
|
883
|
+
page?: number | undefined;
|
|
884
|
+
itemsPerPage?: number | undefined;
|
|
885
|
+
reservationApprovalRequiredSetting?: string | undefined;
|
|
886
|
+
maxMinuteWalk?: number | undefined;
|
|
887
|
+
listingSaleType?: string | undefined;
|
|
888
|
+
locale?: string | undefined;
|
|
889
|
+
}): string;
|
|
890
|
+
method: "GET";
|
|
891
|
+
};
|
|
892
|
+
searchListingsByMultipleConditions: {
|
|
893
|
+
({ stations, prefecture, cities, keywordIds, layoutTypes, listingTypes, buildYearAfter, buildYearBefore, minSize, maxSize, minNumGuests, maxNumGuests, minCost, maxCost, page, itemsPerPage, reservationApprovalRequiredSetting, maxMinuteWalk, listingSaleType, locale, }: {
|
|
894
|
+
stations?: string | undefined;
|
|
895
|
+
prefecture?: string | undefined;
|
|
896
|
+
cities?: string | undefined;
|
|
897
|
+
keywordIds?: string | undefined;
|
|
898
|
+
layoutTypes?: string | undefined;
|
|
899
|
+
listingTypes?: string | undefined;
|
|
900
|
+
buildYearAfter?: number | undefined;
|
|
901
|
+
buildYearBefore?: number | undefined;
|
|
902
|
+
minSize?: number | undefined;
|
|
903
|
+
maxSize?: number | undefined;
|
|
904
|
+
minNumGuests?: number | undefined;
|
|
905
|
+
maxNumGuests?: number | undefined;
|
|
906
|
+
minCost?: number | undefined;
|
|
907
|
+
maxCost?: number | undefined;
|
|
908
|
+
page?: number | undefined;
|
|
909
|
+
itemsPerPage?: number | undefined;
|
|
910
|
+
reservationApprovalRequiredSetting?: string | undefined;
|
|
911
|
+
maxMinuteWalk?: number | undefined;
|
|
912
|
+
listingSaleType?: string | undefined;
|
|
913
|
+
locale?: string | undefined;
|
|
914
|
+
}): string;
|
|
915
|
+
method: "GET";
|
|
916
|
+
};
|
|
917
|
+
searchListingsWithRoomTypeByLocationNameAndMultipleConditions: {
|
|
918
|
+
({ locationName, radius, keywordIds, layoutTypes, listingTypes, buildYearAfter, buildYearBefore, minSize, maxSize, minNumGuests, maxNumGuests, minCost, maxCost, page, itemsPerPage, reservationApprovalRequiredSetting, maxMinuteWalk, listingSaleType, locale, }: {
|
|
919
|
+
locationName?: string | undefined;
|
|
920
|
+
radius?: number | undefined;
|
|
921
|
+
keywordIds?: string | undefined;
|
|
922
|
+
layoutTypes?: string | undefined;
|
|
923
|
+
listingTypes?: string | undefined;
|
|
924
|
+
buildYearAfter?: number | undefined;
|
|
925
|
+
buildYearBefore?: number | undefined;
|
|
926
|
+
minSize?: number | undefined;
|
|
927
|
+
maxSize?: number | undefined;
|
|
928
|
+
minNumGuests?: number | undefined;
|
|
929
|
+
maxNumGuests?: number | undefined;
|
|
930
|
+
minCost?: number | undefined;
|
|
931
|
+
maxCost?: number | undefined;
|
|
932
|
+
page?: number | undefined;
|
|
933
|
+
itemsPerPage?: number | undefined;
|
|
934
|
+
reservationApprovalRequiredSetting?: string | undefined;
|
|
935
|
+
maxMinuteWalk?: number | undefined;
|
|
936
|
+
listingSaleType?: string | undefined;
|
|
937
|
+
locale?: string | undefined;
|
|
938
|
+
}): string;
|
|
939
|
+
method: "GET";
|
|
940
|
+
};
|
|
941
|
+
getSaleTypeOnSaleListingsSortedBySaleTypeUpdatedAtAsc: {
|
|
942
|
+
({ page, itemsPerPage, }: {
|
|
943
|
+
page?: number | undefined;
|
|
944
|
+
itemsPerPage?: number | undefined;
|
|
945
|
+
}): string;
|
|
946
|
+
method: "GET";
|
|
947
|
+
};
|
|
948
|
+
guestUserSignUpWithPassword: {
|
|
949
|
+
(): string;
|
|
950
|
+
method: "POST";
|
|
951
|
+
};
|
|
952
|
+
guestuserSignUpWithOAuth: {
|
|
953
|
+
(): string;
|
|
954
|
+
method: "POST";
|
|
955
|
+
};
|
|
956
|
+
guestUserSigninWithPassword: {
|
|
957
|
+
(): string;
|
|
958
|
+
method: "POST";
|
|
959
|
+
};
|
|
960
|
+
guestUserSigninWithOAuth: {
|
|
961
|
+
(): string;
|
|
962
|
+
method: "POST";
|
|
963
|
+
};
|
|
964
|
+
guestUserSendPasswordResetEmail: {
|
|
965
|
+
(): string;
|
|
966
|
+
method: "POST";
|
|
967
|
+
};
|
|
968
|
+
guestUserResetPassword: {
|
|
969
|
+
(): string;
|
|
970
|
+
method: "POST";
|
|
971
|
+
};
|
|
972
|
+
guestUserAssociateWithInquiry: {
|
|
973
|
+
({ token, }: {
|
|
974
|
+
token?: string | undefined;
|
|
975
|
+
}): string;
|
|
976
|
+
method: "POST";
|
|
977
|
+
};
|
|
978
|
+
reservationReserveImmediately: {
|
|
979
|
+
(): string;
|
|
980
|
+
method: "POST";
|
|
981
|
+
};
|
|
982
|
+
internalDeleteListing: {
|
|
983
|
+
({ listingId }: {
|
|
984
|
+
listingId: string;
|
|
985
|
+
}): string;
|
|
986
|
+
method: "DELETE";
|
|
987
|
+
};
|
|
988
|
+
inquiryCreate: {
|
|
989
|
+
(): string;
|
|
990
|
+
method: "POST";
|
|
991
|
+
};
|
|
992
|
+
inquiryGetPaymentOrders: {
|
|
993
|
+
({ inquiryId, }: {
|
|
994
|
+
inquiryId: string;
|
|
995
|
+
}): string;
|
|
996
|
+
method: "GET";
|
|
997
|
+
};
|
|
998
|
+
inquiryGetReservation: {
|
|
999
|
+
({ inquiryId }: {
|
|
1000
|
+
inquiryId: string;
|
|
1001
|
+
}): string;
|
|
1002
|
+
method: "GET";
|
|
1003
|
+
};
|
|
1004
|
+
inquiryGetVeritransTokenApiKey: {
|
|
1005
|
+
({ inquiryId, }: {
|
|
1006
|
+
inquiryId: string;
|
|
1007
|
+
}): string;
|
|
1008
|
+
method: "GET";
|
|
1009
|
+
};
|
|
1010
|
+
inquiryGetCoupon: {
|
|
1011
|
+
({ inquiryId }: {
|
|
1012
|
+
inquiryId: string;
|
|
1013
|
+
}): string;
|
|
1014
|
+
method: "GET";
|
|
1015
|
+
};
|
|
1016
|
+
inquiryCreateForCategoryPage: {
|
|
1017
|
+
(): string;
|
|
1018
|
+
method: "POST";
|
|
1019
|
+
};
|
|
1020
|
+
informationGetCityNamesInPrefecture: {
|
|
1021
|
+
({ prefName, }: {
|
|
1022
|
+
prefName?: string | undefined;
|
|
1023
|
+
}): string;
|
|
1024
|
+
method: "GET";
|
|
1025
|
+
};
|
|
1026
|
+
informationGetKeywordsByCategories: {
|
|
1027
|
+
({ categories, }: {
|
|
1028
|
+
categories?: string | undefined;
|
|
1029
|
+
}): string;
|
|
1030
|
+
method: "GET";
|
|
1031
|
+
};
|
|
1032
|
+
paymentOrdersPayConditional: {
|
|
1033
|
+
({ paymentOrderId, }: {
|
|
1034
|
+
paymentOrderId: string;
|
|
1035
|
+
}): string;
|
|
1036
|
+
method: "POST";
|
|
1037
|
+
};
|
|
1038
|
+
paymentOrdersPayConditional3DSecure: {
|
|
1039
|
+
({ paymentOrderId, }: {
|
|
1040
|
+
paymentOrderId: string;
|
|
1041
|
+
}): string;
|
|
1042
|
+
method: "POST";
|
|
1043
|
+
};
|
|
1044
|
+
paymentNotification: {
|
|
1045
|
+
({ paymentOrderId, }: {
|
|
1046
|
+
paymentOrderId: string;
|
|
1047
|
+
}): string;
|
|
1048
|
+
method: "POST";
|
|
1049
|
+
};
|
|
1050
|
+
paymentOrdersPayForInstantBook: {
|
|
1051
|
+
({ paymentOrderId, }: {
|
|
1052
|
+
paymentOrderId: string;
|
|
1053
|
+
}): string;
|
|
1054
|
+
method: "POST";
|
|
1055
|
+
};
|
|
1056
|
+
paymentResult: {
|
|
1057
|
+
({ sincePaymentTime, paymentOrderId, }: {
|
|
1058
|
+
sincePaymentTime?: number | undefined;
|
|
1059
|
+
paymentOrderId: string;
|
|
1060
|
+
}): string;
|
|
1061
|
+
method: "GET";
|
|
1062
|
+
};
|
|
1063
|
+
managerReservationsList: {
|
|
1064
|
+
({ couponId, page, itemsPerPage, }: {
|
|
1065
|
+
couponId?: string | undefined;
|
|
1066
|
+
page?: number | undefined;
|
|
1067
|
+
itemsPerPage?: number | undefined;
|
|
1068
|
+
}): string;
|
|
1069
|
+
method: "GET";
|
|
1070
|
+
};
|
|
1071
|
+
updateAllBlankPaymentOrderItemId: {
|
|
1072
|
+
(): string;
|
|
1073
|
+
method: "PUT";
|
|
1074
|
+
};
|
|
1075
|
+
guestCouponGetByCouponCode: {
|
|
1076
|
+
({ couponCode, listingId, }: {
|
|
1077
|
+
couponCode?: string | undefined;
|
|
1078
|
+
listingId?: string | undefined;
|
|
1079
|
+
}): string;
|
|
1080
|
+
method: "GET";
|
|
1081
|
+
};
|
|
1082
|
+
roomTypeCalendarGetByRoomTypeId: {
|
|
1083
|
+
({ roomTypeId, }: {
|
|
1084
|
+
roomTypeId: string;
|
|
1085
|
+
}): string;
|
|
1086
|
+
method: "POST";
|
|
1087
|
+
};
|
|
1088
|
+
roomTypeGetRepresentListing: {
|
|
1089
|
+
({ locale, roomTypeId, }: {
|
|
1090
|
+
locale?: string | undefined;
|
|
1091
|
+
roomTypeId: string;
|
|
1092
|
+
}): string;
|
|
1093
|
+
method: "GET";
|
|
1094
|
+
};
|
|
1095
|
+
roomTypeGetHotelStayTotalCostForAvailableDateSpanAndPersons: {
|
|
1096
|
+
({ startDate, endDate, persons, roomTypeId, }: {
|
|
1097
|
+
startDate?: string | undefined;
|
|
1098
|
+
endDate?: string | undefined;
|
|
1099
|
+
persons?: number | undefined;
|
|
1100
|
+
roomTypeId: string;
|
|
1101
|
+
}): string;
|
|
1102
|
+
method: "GET";
|
|
1103
|
+
};
|
|
1104
|
+
};
|