@careflair/common 1.0.55 → 1.0.57
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/enums/index.d.ts +9 -2
- package/dist/enums/index.js +7 -0
- package/package.json +1 -1
package/dist/enums/index.d.ts
CHANGED
|
@@ -269,8 +269,12 @@ export declare enum NotificationType {
|
|
|
269
269
|
IDENTITY_VERIFICATION_DECLINED = "identityVerificationDeclined",
|
|
270
270
|
NDIS_SCREENING_APPROVED = "ndisScreeningApproved",
|
|
271
271
|
NDIS_SCREENING_DECLINED = "ndisScreeningDeclined",
|
|
272
|
+
NDIS_SCREENING_EXPIRED = "ndisScreeningExpired",
|
|
273
|
+
NDIS_SCREENING_REVOKED = "ndisScreeningRevoked",
|
|
272
274
|
WORKING_WITH_CHILDREN_APPROVED = "workingWithChildrenApproved",
|
|
273
275
|
WORKING_WITH_CHILDREN_DECLINED = "workingWithChildrenDeclined",
|
|
276
|
+
WORKING_WITH_CHILDREN_EXPIRED = "workingWithChildrenExpired",
|
|
277
|
+
WORKING_WITH_CHILDREN_REVOKED = "workingWithChildrenRevoked",
|
|
274
278
|
NEW_JOB_OPPORTUNITY = "newJobOpportunity"
|
|
275
279
|
}
|
|
276
280
|
export declare enum AltCommunication {
|
|
@@ -364,7 +368,8 @@ export declare enum screeningAndChildrenCheckStatus {
|
|
|
364
368
|
PENDING = "pending",
|
|
365
369
|
APPROVED = "approved",
|
|
366
370
|
DECLINED = "declined",
|
|
367
|
-
EXPIRED = "expired"
|
|
371
|
+
EXPIRED = "expired",
|
|
372
|
+
REVOKED = "revoked"
|
|
368
373
|
}
|
|
369
374
|
/** Job application (proposal) status – matches Prisma JobApplication.status */
|
|
370
375
|
export declare enum JobApplicationStatus {
|
|
@@ -407,6 +412,8 @@ export declare enum PushNotificationType {
|
|
|
407
412
|
ID_VERIFICATION_DECLINED = "id_verification_declined",
|
|
408
413
|
NDIS_SCREENING_APPROVED = "ndis_screening_approved",
|
|
409
414
|
NDIS_SCREENING_DECLINED = "ndis_screening_declined",
|
|
415
|
+
NDIS_SCREENING_REVOKED = "ndis_screening_revoked",
|
|
410
416
|
WWCC_APPROVED = "wwcc_approved",
|
|
411
|
-
WWCC_DECLINED = "wwcc_declined"
|
|
417
|
+
WWCC_DECLINED = "wwcc_declined",
|
|
418
|
+
WWCC_REVOKED = "wwcc_revoked"
|
|
412
419
|
}
|
package/dist/enums/index.js
CHANGED
|
@@ -307,9 +307,13 @@ var NotificationType;
|
|
|
307
307
|
// NDIS Worker Screening Check Notifications
|
|
308
308
|
NotificationType["NDIS_SCREENING_APPROVED"] = "ndisScreeningApproved";
|
|
309
309
|
NotificationType["NDIS_SCREENING_DECLINED"] = "ndisScreeningDeclined";
|
|
310
|
+
NotificationType["NDIS_SCREENING_EXPIRED"] = "ndisScreeningExpired";
|
|
311
|
+
NotificationType["NDIS_SCREENING_REVOKED"] = "ndisScreeningRevoked";
|
|
310
312
|
// Working with Children Check Notifications
|
|
311
313
|
NotificationType["WORKING_WITH_CHILDREN_APPROVED"] = "workingWithChildrenApproved";
|
|
312
314
|
NotificationType["WORKING_WITH_CHILDREN_DECLINED"] = "workingWithChildrenDeclined";
|
|
315
|
+
NotificationType["WORKING_WITH_CHILDREN_EXPIRED"] = "workingWithChildrenExpired";
|
|
316
|
+
NotificationType["WORKING_WITH_CHILDREN_REVOKED"] = "workingWithChildrenRevoked";
|
|
313
317
|
// Job Notifications
|
|
314
318
|
NotificationType["NEW_JOB_OPPORTUNITY"] = "newJobOpportunity";
|
|
315
319
|
})(NotificationType || (exports.NotificationType = NotificationType = {}));
|
|
@@ -434,6 +438,7 @@ var screeningAndChildrenCheckStatus;
|
|
|
434
438
|
screeningAndChildrenCheckStatus["APPROVED"] = "approved";
|
|
435
439
|
screeningAndChildrenCheckStatus["DECLINED"] = "declined";
|
|
436
440
|
screeningAndChildrenCheckStatus["EXPIRED"] = "expired";
|
|
441
|
+
screeningAndChildrenCheckStatus["REVOKED"] = "revoked";
|
|
437
442
|
})(screeningAndChildrenCheckStatus || (exports.screeningAndChildrenCheckStatus = screeningAndChildrenCheckStatus = {}));
|
|
438
443
|
/** Job application (proposal) status – matches Prisma JobApplication.status */
|
|
439
444
|
var JobApplicationStatus;
|
|
@@ -507,6 +512,8 @@ var PushNotificationType;
|
|
|
507
512
|
PushNotificationType["ID_VERIFICATION_DECLINED"] = "id_verification_declined";
|
|
508
513
|
PushNotificationType["NDIS_SCREENING_APPROVED"] = "ndis_screening_approved";
|
|
509
514
|
PushNotificationType["NDIS_SCREENING_DECLINED"] = "ndis_screening_declined";
|
|
515
|
+
PushNotificationType["NDIS_SCREENING_REVOKED"] = "ndis_screening_revoked";
|
|
510
516
|
PushNotificationType["WWCC_APPROVED"] = "wwcc_approved";
|
|
511
517
|
PushNotificationType["WWCC_DECLINED"] = "wwcc_declined";
|
|
518
|
+
PushNotificationType["WWCC_REVOKED"] = "wwcc_revoked";
|
|
512
519
|
})(PushNotificationType || (exports.PushNotificationType = PushNotificationType = {}));
|