nazar-salary 2.7.0 → 2.7.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/index.d.ts +4 -4
- package/index.js +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -336,7 +336,7 @@ declare module 'nazar-salary' {
|
|
|
336
336
|
description?: string;
|
|
337
337
|
format: PriceFormat;
|
|
338
338
|
lesson_type: LessonType;
|
|
339
|
-
lessons_per_month: 8 | 12;
|
|
339
|
+
lessons_per_month: 8 | 12 | 16;
|
|
340
340
|
duration_minutes: number;
|
|
341
341
|
rate_per_lesson: number;
|
|
342
342
|
created_at: number;
|
|
@@ -348,7 +348,7 @@ declare module 'nazar-salary' {
|
|
|
348
348
|
description?: string;
|
|
349
349
|
format: PriceFormat;
|
|
350
350
|
lesson_type: LessonType;
|
|
351
|
-
lessons_per_month: 8 | 12;
|
|
351
|
+
lessons_per_month: 8 | 12 | 16;
|
|
352
352
|
duration_minutes: number;
|
|
353
353
|
rate_per_lesson: number;
|
|
354
354
|
}
|
|
@@ -358,7 +358,7 @@ declare module 'nazar-salary' {
|
|
|
358
358
|
description?: string;
|
|
359
359
|
format?: PriceFormat;
|
|
360
360
|
lesson_type?: LessonType;
|
|
361
|
-
lessons_per_month?: 8 | 12;
|
|
361
|
+
lessons_per_month?: 8 | 12 | 16;
|
|
362
362
|
rate_per_lesson?: number;
|
|
363
363
|
}
|
|
364
364
|
|
|
@@ -370,7 +370,7 @@ declare module 'nazar-salary' {
|
|
|
370
370
|
id: number;
|
|
371
371
|
format: PriceFormat;
|
|
372
372
|
lesson_type: LessonType;
|
|
373
|
-
lessons_per_month: 8 | 12;
|
|
373
|
+
lessons_per_month: 8 | 12 | 16;
|
|
374
374
|
duration_minutes: number;
|
|
375
375
|
rate_per_lesson: number;
|
|
376
376
|
created_at: number;
|
package/index.js
CHANGED
|
@@ -398,7 +398,7 @@ class SalaryAPI {
|
|
|
398
398
|
* @param {string} [data.description] - Description
|
|
399
399
|
* @param {string} data.format - Format: individual, duet, trio, group
|
|
400
400
|
* @param {string} data.lesson_type - Lesson type: online, offline
|
|
401
|
-
* @param {number} data.lessons_per_month - Lessons per month: 8 or 12
|
|
401
|
+
* @param {number} data.lessons_per_month - Lessons per month: 8 or 12 or 16
|
|
402
402
|
* @param {number} data.duration_minutes - Duration in minutes
|
|
403
403
|
* @param {number} data.rate_per_lesson - Rate per lesson in tenge
|
|
404
404
|
* @returns {Promise<object>}
|
|
@@ -433,7 +433,7 @@ class SalaryAPI {
|
|
|
433
433
|
* @param {string} [data.description] - Description
|
|
434
434
|
* @param {string} [data.format] - Format: individual, duet, trio, group
|
|
435
435
|
* @param {string} [data.lesson_type] - Lesson type: online, offline
|
|
436
|
-
* @param {number} [data.lessons_per_month] - Lessons per month: 8 or 12
|
|
436
|
+
* @param {number} [data.lessons_per_month] - Lessons per month: 8 or 12 or 16
|
|
437
437
|
* @param {number} [data.rate_per_lesson] - Rate per lesson in tenge
|
|
438
438
|
* @returns {Promise<object>}
|
|
439
439
|
*/
|