endpoints-sdk-cli 2.2.0 → 2.3.2
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 +11 -11
- package/lib/classes/Config.js +4 -4
- package/lib/classes/Repository.d.ts +1 -0
- package/lib/classes/Repository.js +9 -9
- package/lib/commands/add.js +2 -1
- package/lib/commands/install.js +8 -7
- package/lib/commands/update.js +7 -6
- package/lib/makeFiles.js +9 -8
- package/lib/templates/files/endpoints.js +5 -4
- package/lib/templates/files/index.js +1 -1
- package/lib/templates/files/indexFile.js +5 -4
- package/lib/templates/functions/endpoint.js +9 -7
- package/lib/templates/functions/index.js +2 -2
- package/lib/templates/functions/root.js +4 -3
- package/lib/templates/index.js +2 -2
- package/lib/utils/camelCase.js +3 -2
- package/lib/utils/format.js +3 -2
- package/lib/utils/unique.js +3 -2
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
- package/CHANGELOG.md +0 -2625
- package/lib/endpoints/m2m-core.d.ts +0 -4
- package/lib/endpoints/m2m-core.js +0 -7
- package/lib/endpoints/m2m-core.v1.d.ts +0 -527
- package/lib/endpoints/m2m-core.v1.js +0 -1084
- package/lib/endpoints/m2m-notifications.d.ts +0 -4
- package/lib/endpoints/m2m-notifications.js +0 -7
- package/lib/endpoints/m2m-notifications.v1.d.ts +0 -50
- package/lib/endpoints/m2m-notifications.v1.js +0 -133
- package/lib/endpoints/m2m-users.d.ts +0 -4
- package/lib/endpoints/m2m-users.js +0 -7
- package/lib/endpoints/m2m-users.v1.d.ts +0 -210
- package/lib/endpoints/m2m-users.v1.js +0 -529
|
@@ -1,527 +0,0 @@
|
|
|
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: () => string;
|
|
10
|
-
/**
|
|
11
|
-
* 都道府県の一覧を返す
|
|
12
|
-
*
|
|
13
|
-
*/
|
|
14
|
-
export declare const listPrefectures: () => string;
|
|
15
|
-
/**
|
|
16
|
-
* 指定された都道府県の中の市町村区の一覧を返す
|
|
17
|
-
*
|
|
18
|
-
*/
|
|
19
|
-
export declare const listCities: ({ id }: {
|
|
20
|
-
id: string;
|
|
21
|
-
}) => string;
|
|
22
|
-
/**
|
|
23
|
-
* 利用可能期間で検索する
|
|
24
|
-
*
|
|
25
|
-
*/
|
|
26
|
-
export declare const findListingsBySpan: () => string;
|
|
27
|
-
/**
|
|
28
|
-
* 物件名で検索する
|
|
29
|
-
*
|
|
30
|
-
*/
|
|
31
|
-
export declare const listingSearchByName: () => string;
|
|
32
|
-
/**
|
|
33
|
-
* リスティング詳細の情報
|
|
34
|
-
*
|
|
35
|
-
*/
|
|
36
|
-
export declare const listingDetail: ({ id }: {
|
|
37
|
-
id: string;
|
|
38
|
-
}) => string;
|
|
39
|
-
/**
|
|
40
|
-
* リスティングを更新する
|
|
41
|
-
*
|
|
42
|
-
*/
|
|
43
|
-
export declare const updateListing: ({ id }: {
|
|
44
|
-
id: string;
|
|
45
|
-
}) => string;
|
|
46
|
-
/**
|
|
47
|
-
* 物件個別に設定されたすべての自動価格設定関連情報を取得する
|
|
48
|
-
*
|
|
49
|
-
*/
|
|
50
|
-
export declare const listingGetAutoPricingSetting: ({ id }: {
|
|
51
|
-
id: string;
|
|
52
|
-
}) => string;
|
|
53
|
-
/**
|
|
54
|
-
* 物件個別に設定されたすべての自動価格設定関連情報を更新する
|
|
55
|
-
*
|
|
56
|
-
*/
|
|
57
|
-
export declare const listingUpdateAutoPricingSetting: ({ id }: {
|
|
58
|
-
id: string;
|
|
59
|
-
}) => string;
|
|
60
|
-
/**
|
|
61
|
-
* 自動価格設定により設定される価格のプレビューを取得する
|
|
62
|
-
*
|
|
63
|
-
*/
|
|
64
|
-
export declare const listingAutoPricingPricing: ({ id }: {
|
|
65
|
-
id: string;
|
|
66
|
-
}) => string;
|
|
67
|
-
/**
|
|
68
|
-
* 自動価格設定により設定される価格のプレビューを、設定を保存せずに取得する
|
|
69
|
-
*
|
|
70
|
-
*/
|
|
71
|
-
export declare const listingAutoPricingPricingWithoutSave: ({ id, }: {
|
|
72
|
-
id: string;
|
|
73
|
-
}) => string;
|
|
74
|
-
/**
|
|
75
|
-
* リスティングイベントを再通知する
|
|
76
|
-
*
|
|
77
|
-
*/
|
|
78
|
-
export declare const listingRenotify: ({ id }: {
|
|
79
|
-
id: string;
|
|
80
|
-
}) => string;
|
|
81
|
-
/**
|
|
82
|
-
* 予約を再通知する
|
|
83
|
-
*
|
|
84
|
-
*/
|
|
85
|
-
export declare const listingRenotifyReservations: ({ id }: {
|
|
86
|
-
id: string;
|
|
87
|
-
}) => string;
|
|
88
|
-
/**
|
|
89
|
-
* Matsuriのリスティング情報を設定する
|
|
90
|
-
*
|
|
91
|
-
*/
|
|
92
|
-
export declare const listingSetMatsuriListingInfo: ({ id }: {
|
|
93
|
-
id: string;
|
|
94
|
-
}) => string;
|
|
95
|
-
/**
|
|
96
|
-
* 収支管理用のリスティング情報を取得する
|
|
97
|
-
*
|
|
98
|
-
*/
|
|
99
|
-
export declare const listingGetListingInfoForDepositManagement: () => string;
|
|
100
|
-
/**
|
|
101
|
-
* 施設を作成する
|
|
102
|
-
*
|
|
103
|
-
*/
|
|
104
|
-
export declare const propertyCreate: () => string;
|
|
105
|
-
/**
|
|
106
|
-
* 施設を編集する
|
|
107
|
-
*
|
|
108
|
-
*/
|
|
109
|
-
export declare const propertyEdit: ({ id }: {
|
|
110
|
-
id: string;
|
|
111
|
-
}) => string;
|
|
112
|
-
/**
|
|
113
|
-
* 施設の一覧を取得する
|
|
114
|
-
*
|
|
115
|
-
*/
|
|
116
|
-
export declare const propertyList: () => string;
|
|
117
|
-
/**
|
|
118
|
-
* 施設を取得する
|
|
119
|
-
*
|
|
120
|
-
*/
|
|
121
|
-
export declare const propertyGet: ({ id }: {
|
|
122
|
-
id: string;
|
|
123
|
-
}) => string;
|
|
124
|
-
/**
|
|
125
|
-
* 施設に紐づく部屋の一覧を取得する
|
|
126
|
-
*
|
|
127
|
-
*/
|
|
128
|
-
export declare const propertyListRooms: ({ id }: {
|
|
129
|
-
id: string;
|
|
130
|
-
}) => string;
|
|
131
|
-
/**
|
|
132
|
-
* OTAからの予約を通知する
|
|
133
|
-
*
|
|
134
|
-
*/
|
|
135
|
-
export declare const notificationReservationOta: () => string;
|
|
136
|
-
/**
|
|
137
|
-
* カスタム自動価格調整ポリシーを新規作成する
|
|
138
|
-
*
|
|
139
|
-
*/
|
|
140
|
-
export declare const autoPricingPolicyCreate: () => string;
|
|
141
|
-
/**
|
|
142
|
-
* カスタム自動価格調整ポリシーの一覧を取得する
|
|
143
|
-
* @param {number} page 3
|
|
144
|
-
*/
|
|
145
|
-
export declare const autoPricingPolicyList: ({ page }: {
|
|
146
|
-
page?: number | undefined;
|
|
147
|
-
}) => string;
|
|
148
|
-
/**
|
|
149
|
-
* 指定idの自動価格設定ポリシーを取得する
|
|
150
|
-
*
|
|
151
|
-
*/
|
|
152
|
-
export declare const autoPricingPolicyGet: ({ id }: {
|
|
153
|
-
id: string;
|
|
154
|
-
}) => string;
|
|
155
|
-
/**
|
|
156
|
-
* 指定idの自動価格設定ポリシーを更新する
|
|
157
|
-
*
|
|
158
|
-
*/
|
|
159
|
-
export declare const autoPricingPolicyUpdate: ({ id }: {
|
|
160
|
-
id: string;
|
|
161
|
-
}) => string;
|
|
162
|
-
/**
|
|
163
|
-
* 指定idのカスタム自動価格調整ポリシーを削除する
|
|
164
|
-
*
|
|
165
|
-
*/
|
|
166
|
-
export declare const autoPricingPolicyDelete: ({ id }: {
|
|
167
|
-
id: string;
|
|
168
|
-
}) => string;
|
|
169
|
-
/**
|
|
170
|
-
* リスティングのオーナーを作成する
|
|
171
|
-
*
|
|
172
|
-
*/
|
|
173
|
-
export declare const ownerCreate: () => string;
|
|
174
|
-
/**
|
|
175
|
-
* 部屋タイプに対して手動作成を作成する
|
|
176
|
-
*
|
|
177
|
-
*/
|
|
178
|
-
export declare const createRoomTypeManually: ({ id }: {
|
|
179
|
-
id: string;
|
|
180
|
-
}) => string;
|
|
181
|
-
/**
|
|
182
|
-
* 予約の移動を行う
|
|
183
|
-
*
|
|
184
|
-
*/
|
|
185
|
-
export declare const transferRoomTypeReservation: ({ id }: {
|
|
186
|
-
id: string;
|
|
187
|
-
}) => string;
|
|
188
|
-
/**
|
|
189
|
-
* 部屋タイプに対して専有を作成する
|
|
190
|
-
*
|
|
191
|
-
*/
|
|
192
|
-
export declare const createRoomTypeProprietary: ({ id }: {
|
|
193
|
-
id: string;
|
|
194
|
-
}) => string;
|
|
195
|
-
/**
|
|
196
|
-
* 部屋タイプとOTA上の物件を紐付ける
|
|
197
|
-
*
|
|
198
|
-
*/
|
|
199
|
-
export declare const associateToOTA: ({ id }: {
|
|
200
|
-
id: string;
|
|
201
|
-
}) => string;
|
|
202
|
-
/**
|
|
203
|
-
* 部屋タイプとOTA上の物件を紐付けを解除する
|
|
204
|
-
*
|
|
205
|
-
*/
|
|
206
|
-
export declare const detachFromOTA: ({ id, otaType, otaId, }: {
|
|
207
|
-
id: string;
|
|
208
|
-
otaType: string;
|
|
209
|
-
otaId: string;
|
|
210
|
-
}) => string;
|
|
211
|
-
/**
|
|
212
|
-
* 専有を削除する
|
|
213
|
-
*
|
|
214
|
-
*/
|
|
215
|
-
export declare const deleteRoomTypeProprietary: ({ id, proprietaryId, }: {
|
|
216
|
-
id: string;
|
|
217
|
-
proprietaryId: string;
|
|
218
|
-
}) => string;
|
|
219
|
-
/**
|
|
220
|
-
* 部屋タイプに対して手動作成の更新を行う
|
|
221
|
-
*
|
|
222
|
-
*/
|
|
223
|
-
export declare const editRoomTypeManually: ({ id }: {
|
|
224
|
-
id: string;
|
|
225
|
-
}) => string;
|
|
226
|
-
/**
|
|
227
|
-
* 部屋タイプに対して専有の更新を行う
|
|
228
|
-
*
|
|
229
|
-
*/
|
|
230
|
-
export declare const editRoomTypeProprietary: ({ id }: {
|
|
231
|
-
id: string;
|
|
232
|
-
}) => string;
|
|
233
|
-
/**
|
|
234
|
-
* OTA予約の固定状況,メモを更新する
|
|
235
|
-
*
|
|
236
|
-
*/
|
|
237
|
-
export declare const updateOTAReservation: ({ id }: {
|
|
238
|
-
id: string;
|
|
239
|
-
}) => string;
|
|
240
|
-
/**
|
|
241
|
-
* 部屋タイプを取得する
|
|
242
|
-
*
|
|
243
|
-
*/
|
|
244
|
-
export declare const getRoomType: ({ id }: {
|
|
245
|
-
id: string;
|
|
246
|
-
}) => string;
|
|
247
|
-
/**
|
|
248
|
-
* 部屋のカレンダー情報を取得する
|
|
249
|
-
* @param {string} startDate 2020-01-01
|
|
250
|
-
* @param {string} endDate 2020-12-31
|
|
251
|
-
*/
|
|
252
|
-
export declare const getRoomCalendar: ({ startDate, endDate, id, }: {
|
|
253
|
-
startDate?: string | undefined;
|
|
254
|
-
endDate?: string | undefined;
|
|
255
|
-
id: string;
|
|
256
|
-
}) => string;
|
|
257
|
-
/**
|
|
258
|
-
* 部屋タイプに紐づく予約と専有を取得する
|
|
259
|
-
*
|
|
260
|
-
*/
|
|
261
|
-
export declare const getReservationsAndProprietariesByRoomTypeId: ({ roomTypeId, }: {
|
|
262
|
-
roomTypeId: string;
|
|
263
|
-
}) => string;
|
|
264
|
-
/**
|
|
265
|
-
* 一時発行トークンを使って外部ユーザーがカレンダーを閲覧できるようにする
|
|
266
|
-
* @param {number} page 0
|
|
267
|
-
* @param {number} itemNum 30
|
|
268
|
-
* @param {string} nameQuery hoge
|
|
269
|
-
* @param {string} startDate 2020-10-01
|
|
270
|
-
* @param {string} endDate 2020-11-30
|
|
271
|
-
* @param {string} tokenId foo
|
|
272
|
-
* @param {string} token bar
|
|
273
|
-
*/
|
|
274
|
-
export declare const getRoomCalendarByTemporalToken: ({ page, itemNum, nameQuery, startDate, endDate, tokenId, token, }: {
|
|
275
|
-
page?: number | undefined;
|
|
276
|
-
itemNum?: number | undefined;
|
|
277
|
-
nameQuery?: string | undefined;
|
|
278
|
-
startDate?: string | undefined;
|
|
279
|
-
endDate?: string | undefined;
|
|
280
|
-
tokenId?: string | undefined;
|
|
281
|
-
token?: string | undefined;
|
|
282
|
-
}) => string;
|
|
283
|
-
/**
|
|
284
|
-
* リスティングをインポートする
|
|
285
|
-
*
|
|
286
|
-
*/
|
|
287
|
-
export declare const importListing: () => string;
|
|
288
|
-
/**
|
|
289
|
-
* リスティングの予約をインポートする
|
|
290
|
-
*
|
|
291
|
-
*/
|
|
292
|
-
export declare const importListingReservations: ({ id }: {
|
|
293
|
-
id: string;
|
|
294
|
-
}) => string;
|
|
295
|
-
/**
|
|
296
|
-
* 部屋タイプに適切な運用形態が入るように修正するためのもの
|
|
297
|
-
*
|
|
298
|
-
*/
|
|
299
|
-
export declare const importOperationType: () => string;
|
|
300
|
-
/**
|
|
301
|
-
* 割り当て失敗予約の一覧を取得する
|
|
302
|
-
*
|
|
303
|
-
*/
|
|
304
|
-
export declare const assignFailedReservations: () => string;
|
|
305
|
-
/**
|
|
306
|
-
* 予約の詳細を取得する
|
|
307
|
-
*
|
|
308
|
-
*/
|
|
309
|
-
export declare const reservationDetail: ({ id }: {
|
|
310
|
-
id: string;
|
|
311
|
-
}) => string;
|
|
312
|
-
/**
|
|
313
|
-
* stayTypeを更新する
|
|
314
|
-
*
|
|
315
|
-
*/
|
|
316
|
-
export declare const updateStayType: ({ id }: {
|
|
317
|
-
id: string;
|
|
318
|
-
}) => string;
|
|
319
|
-
/**
|
|
320
|
-
* 自社のairbnbのカレンダーを表示
|
|
321
|
-
*
|
|
322
|
-
*/
|
|
323
|
-
export declare const showAirbnbCalendar: () => string;
|
|
324
|
-
/**
|
|
325
|
-
* 自社のairbnbのカレンダーを更新
|
|
326
|
-
*
|
|
327
|
-
*/
|
|
328
|
-
export declare const applyAirbnbCalendar: () => string;
|
|
329
|
-
/**
|
|
330
|
-
* 最新の部屋タイプの日毎の稼働状況を取得する
|
|
331
|
-
*
|
|
332
|
-
*/
|
|
333
|
-
export declare const getLatestOccupancyCalendar: () => string;
|
|
334
|
-
/**
|
|
335
|
-
* 実績を月単位で出力
|
|
336
|
-
*
|
|
337
|
-
*/
|
|
338
|
-
export declare const exportAchievement: () => string;
|
|
339
|
-
/**
|
|
340
|
-
* 予約詳細を出力
|
|
341
|
-
*
|
|
342
|
-
*/
|
|
343
|
-
export declare const exportReservationDetails: () => string;
|
|
344
|
-
/**
|
|
345
|
-
* 売上情報を登録する
|
|
346
|
-
*
|
|
347
|
-
*/
|
|
348
|
-
export declare const saveMinpakuAndMonthlySales: () => string;
|
|
349
|
-
/**
|
|
350
|
-
* 予約Idから売り上げを取得する
|
|
351
|
-
*
|
|
352
|
-
*/
|
|
353
|
-
export declare const findSalesByReservationId: ({ reservationId, }: {
|
|
354
|
-
reservationId: string;
|
|
355
|
-
}) => string;
|
|
356
|
-
/**
|
|
357
|
-
* 追加売り上げを作成する
|
|
358
|
-
*
|
|
359
|
-
*/
|
|
360
|
-
export declare const registerAdditionalSales: () => string;
|
|
361
|
-
/**
|
|
362
|
-
* 手動管理お問い合わせidと予約idの紐付けを行う
|
|
363
|
-
*
|
|
364
|
-
*/
|
|
365
|
-
export declare const registerInquiryReservationRelation: () => string;
|
|
366
|
-
/**
|
|
367
|
-
* 手動管理お問い合わせidと予約idの紐付けを取得する
|
|
368
|
-
*
|
|
369
|
-
*/
|
|
370
|
-
export declare const getInquiryReservationRelation: ({ reservationId, }: {
|
|
371
|
-
reservationId: string;
|
|
372
|
-
}) => string;
|
|
373
|
-
/**
|
|
374
|
-
* 一時発行トークンを発行する
|
|
375
|
-
*
|
|
376
|
-
*/
|
|
377
|
-
export declare const generateTemporalToken: () => string;
|
|
378
|
-
/**
|
|
379
|
-
* 一時発行トークンを破棄する
|
|
380
|
-
*
|
|
381
|
-
*/
|
|
382
|
-
export declare const revokeTemporalToken: ({ tokenId }: {
|
|
383
|
-
tokenId: string;
|
|
384
|
-
}) => string;
|
|
385
|
-
export declare const m2mCore_v1: {
|
|
386
|
-
healthCheck: () => string;
|
|
387
|
-
listPrefectures: () => string;
|
|
388
|
-
listCities: ({ id }: {
|
|
389
|
-
id: string;
|
|
390
|
-
}) => string;
|
|
391
|
-
findListingsBySpan: () => string;
|
|
392
|
-
listingSearchByName: () => string;
|
|
393
|
-
listingDetail: ({ id }: {
|
|
394
|
-
id: string;
|
|
395
|
-
}) => string;
|
|
396
|
-
updateListing: ({ id }: {
|
|
397
|
-
id: string;
|
|
398
|
-
}) => string;
|
|
399
|
-
listingGetAutoPricingSetting: ({ id }: {
|
|
400
|
-
id: string;
|
|
401
|
-
}) => string;
|
|
402
|
-
listingUpdateAutoPricingSetting: ({ id }: {
|
|
403
|
-
id: string;
|
|
404
|
-
}) => string;
|
|
405
|
-
listingAutoPricingPricing: ({ id }: {
|
|
406
|
-
id: string;
|
|
407
|
-
}) => string;
|
|
408
|
-
listingAutoPricingPricingWithoutSave: ({ id, }: {
|
|
409
|
-
id: string;
|
|
410
|
-
}) => string;
|
|
411
|
-
listingRenotify: ({ id }: {
|
|
412
|
-
id: string;
|
|
413
|
-
}) => string;
|
|
414
|
-
listingRenotifyReservations: ({ id }: {
|
|
415
|
-
id: string;
|
|
416
|
-
}) => string;
|
|
417
|
-
listingSetMatsuriListingInfo: ({ id }: {
|
|
418
|
-
id: string;
|
|
419
|
-
}) => string;
|
|
420
|
-
listingGetListingInfoForDepositManagement: () => string;
|
|
421
|
-
propertyCreate: () => string;
|
|
422
|
-
propertyEdit: ({ id }: {
|
|
423
|
-
id: string;
|
|
424
|
-
}) => string;
|
|
425
|
-
propertyList: () => string;
|
|
426
|
-
propertyGet: ({ id }: {
|
|
427
|
-
id: string;
|
|
428
|
-
}) => string;
|
|
429
|
-
propertyListRooms: ({ id }: {
|
|
430
|
-
id: string;
|
|
431
|
-
}) => string;
|
|
432
|
-
notificationReservationOta: () => string;
|
|
433
|
-
autoPricingPolicyCreate: () => string;
|
|
434
|
-
autoPricingPolicyList: ({ page }: {
|
|
435
|
-
page?: number | undefined;
|
|
436
|
-
}) => string;
|
|
437
|
-
autoPricingPolicyGet: ({ id }: {
|
|
438
|
-
id: string;
|
|
439
|
-
}) => string;
|
|
440
|
-
autoPricingPolicyUpdate: ({ id }: {
|
|
441
|
-
id: string;
|
|
442
|
-
}) => string;
|
|
443
|
-
autoPricingPolicyDelete: ({ id }: {
|
|
444
|
-
id: string;
|
|
445
|
-
}) => string;
|
|
446
|
-
ownerCreate: () => string;
|
|
447
|
-
createRoomTypeManually: ({ id }: {
|
|
448
|
-
id: string;
|
|
449
|
-
}) => string;
|
|
450
|
-
transferRoomTypeReservation: ({ id }: {
|
|
451
|
-
id: string;
|
|
452
|
-
}) => string;
|
|
453
|
-
createRoomTypeProprietary: ({ id }: {
|
|
454
|
-
id: string;
|
|
455
|
-
}) => string;
|
|
456
|
-
associateToOTA: ({ id }: {
|
|
457
|
-
id: string;
|
|
458
|
-
}) => string;
|
|
459
|
-
detachFromOTA: ({ id, otaType, otaId, }: {
|
|
460
|
-
id: string;
|
|
461
|
-
otaType: string;
|
|
462
|
-
otaId: string;
|
|
463
|
-
}) => string;
|
|
464
|
-
deleteRoomTypeProprietary: ({ id, proprietaryId, }: {
|
|
465
|
-
id: string;
|
|
466
|
-
proprietaryId: string;
|
|
467
|
-
}) => string;
|
|
468
|
-
editRoomTypeManually: ({ id }: {
|
|
469
|
-
id: string;
|
|
470
|
-
}) => string;
|
|
471
|
-
editRoomTypeProprietary: ({ id }: {
|
|
472
|
-
id: string;
|
|
473
|
-
}) => string;
|
|
474
|
-
updateOTAReservation: ({ id }: {
|
|
475
|
-
id: string;
|
|
476
|
-
}) => string;
|
|
477
|
-
getRoomType: ({ id }: {
|
|
478
|
-
id: string;
|
|
479
|
-
}) => string;
|
|
480
|
-
getRoomCalendar: ({ startDate, endDate, id, }: {
|
|
481
|
-
startDate?: string | undefined;
|
|
482
|
-
endDate?: string | undefined;
|
|
483
|
-
id: string;
|
|
484
|
-
}) => string;
|
|
485
|
-
getReservationsAndProprietariesByRoomTypeId: ({ roomTypeId, }: {
|
|
486
|
-
roomTypeId: string;
|
|
487
|
-
}) => string;
|
|
488
|
-
getRoomCalendarByTemporalToken: ({ page, itemNum, nameQuery, startDate, endDate, tokenId, token, }: {
|
|
489
|
-
page?: number | undefined;
|
|
490
|
-
itemNum?: number | undefined;
|
|
491
|
-
nameQuery?: string | undefined;
|
|
492
|
-
startDate?: string | undefined;
|
|
493
|
-
endDate?: string | undefined;
|
|
494
|
-
tokenId?: string | undefined;
|
|
495
|
-
token?: string | undefined;
|
|
496
|
-
}) => string;
|
|
497
|
-
importListing: () => string;
|
|
498
|
-
importListingReservations: ({ id }: {
|
|
499
|
-
id: string;
|
|
500
|
-
}) => string;
|
|
501
|
-
importOperationType: () => string;
|
|
502
|
-
assignFailedReservations: () => string;
|
|
503
|
-
reservationDetail: ({ id }: {
|
|
504
|
-
id: string;
|
|
505
|
-
}) => string;
|
|
506
|
-
updateStayType: ({ id }: {
|
|
507
|
-
id: string;
|
|
508
|
-
}) => string;
|
|
509
|
-
showAirbnbCalendar: () => string;
|
|
510
|
-
applyAirbnbCalendar: () => string;
|
|
511
|
-
getLatestOccupancyCalendar: () => string;
|
|
512
|
-
exportAchievement: () => string;
|
|
513
|
-
exportReservationDetails: () => string;
|
|
514
|
-
saveMinpakuAndMonthlySales: () => string;
|
|
515
|
-
findSalesByReservationId: ({ reservationId, }: {
|
|
516
|
-
reservationId: string;
|
|
517
|
-
}) => string;
|
|
518
|
-
registerAdditionalSales: () => string;
|
|
519
|
-
registerInquiryReservationRelation: () => string;
|
|
520
|
-
getInquiryReservationRelation: ({ reservationId, }: {
|
|
521
|
-
reservationId: string;
|
|
522
|
-
}) => string;
|
|
523
|
-
generateTemporalToken: () => string;
|
|
524
|
-
revokeTemporalToken: ({ tokenId }: {
|
|
525
|
-
tokenId: string;
|
|
526
|
-
}) => string;
|
|
527
|
-
};
|