@maxim_mazurok/gapi.client.contactcenteraiplatform-v1alpha1 0.1.20251204 → 0.1.20260108
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 +3 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://contactcenteraiplatform.googleapis.com/$discovery/rest?version=v1alpha1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260108
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -300,9 +300,9 @@ declare namespace gapi.client {
|
|
|
300
300
|
interface ShiftTemplate {
|
|
301
301
|
/** Optional. A list of specific employee IDs that can be assigned to shifts generated by this template. If this field is present, there will be `EmployeeSchedule`s in the response for which the `EmployeeSchedule.employee_id` field is set to one of the IDs in this list. The number of employee schedules with an assigned employee ID will be between `minimum_employee_count` and `maximum_employee_count`. If this field is empty, between `minimum_employee_count` and `maximum_employee_count` employees can be assigned to shifts generated by this template and the employee schedules won't have an assigned employee ID. Currently, only one assignable employee ID is supported. */
|
|
302
302
|
assignableEmployeeIds?: string[];
|
|
303
|
-
/** Fixed number of days off per week. An employee has a given day off if they are not assigned to a shift that starts on that day. A week is 7 days and begins on Sunday. */
|
|
303
|
+
/** Optional. Fixed number of days off per week. An employee has a given day off if they are not assigned to a shift that starts on that day. A week is 7 days and begins on Sunday. */
|
|
304
304
|
daysOffCountPerWeek?: number;
|
|
305
|
-
/** Fixed dates when shifts from this template should not be generated. */
|
|
305
|
+
/** Optional. Fixed dates when shifts from this template should not be generated. */
|
|
306
306
|
daysOffDates?: DateList;
|
|
307
307
|
/** Required. Fixed duration of a shift generated by this template. */
|
|
308
308
|
durationMinutes?: number;
|
package/package.json
CHANGED