@worknice/js-sdk 0.4.3-rc.2 → 0.4.3-rc.4
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/dist/api/_generated.d.ts
CHANGED
|
@@ -1160,6 +1160,7 @@ type EmailNotificationSettings = {
|
|
|
1160
1160
|
assignmentAssigned: Scalars['Boolean']['output'];
|
|
1161
1161
|
assignmentExpired: Scalars['Boolean']['output'];
|
|
1162
1162
|
assignmentExpiringSoon: Scalars['Boolean']['output'];
|
|
1163
|
+
assignmentReassigned: Scalars['Boolean']['output'];
|
|
1163
1164
|
assignmentSubmitted: Scalars['Boolean']['output'];
|
|
1164
1165
|
leaveRequestApproved: Scalars['Boolean']['output'];
|
|
1165
1166
|
leaveRequestCancelled: Scalars['Boolean']['output'];
|
|
@@ -1175,6 +1176,7 @@ type EmailNotificationSettingsInput = {
|
|
|
1175
1176
|
assignmentAssigned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1176
1177
|
assignmentExpired?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1177
1178
|
assignmentExpiringSoon?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1179
|
+
assignmentReassigned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1178
1180
|
assignmentSubmitted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1179
1181
|
leaveRequestApproved?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1180
1182
|
leaveRequestCancelled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -3518,6 +3520,8 @@ declare enum NotificationType {
|
|
|
3518
3520
|
AssignmentExpired = "ASSIGNMENT_EXPIRED",
|
|
3519
3521
|
/** Sent to the person responsible for an assignment (i.e. an admin) when it will be expiring soon. */
|
|
3520
3522
|
AssignmentExpiringSoon = "ASSIGNMENT_EXPIRING_SOON",
|
|
3523
|
+
/** Sent to the owner of a assignment when an admin reassigns an assignment. */
|
|
3524
|
+
AssignmentReassigned = "ASSIGNMENT_REASSIGNED",
|
|
3521
3525
|
/** Sent to the person responsible for an assignment (i.e. an admin) when it has expired. */
|
|
3522
3526
|
AssignmentSubmitted = "ASSIGNMENT_SUBMITTED",
|
|
3523
3527
|
/** Sent to the owner when a leave request is approved. */
|
package/dist/api/_generated.js
CHANGED
|
@@ -202,6 +202,7 @@ var NotificationType = /* @__PURE__ */ ((NotificationType2) => {
|
|
|
202
202
|
NotificationType2["AssignmentAssigned"] = "ASSIGNMENT_ASSIGNED";
|
|
203
203
|
NotificationType2["AssignmentExpired"] = "ASSIGNMENT_EXPIRED";
|
|
204
204
|
NotificationType2["AssignmentExpiringSoon"] = "ASSIGNMENT_EXPIRING_SOON";
|
|
205
|
+
NotificationType2["AssignmentReassigned"] = "ASSIGNMENT_REASSIGNED";
|
|
205
206
|
NotificationType2["AssignmentSubmitted"] = "ASSIGNMENT_SUBMITTED";
|
|
206
207
|
NotificationType2["LeaveRequestApproved"] = "LEAVE_REQUEST_APPROVED";
|
|
207
208
|
NotificationType2["LeaveRequestCancelled"] = "LEAVE_REQUEST_CANCELLED";
|