@neutron.co.id/operasional-modules 1.8.6 → 1.9.0
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/build/personalia/module.mjs +11 -11
- package/build/personalia/plugin.mjs +1 -1
- package/build/personalia/resources/attendance/attendance.model.d.ts +1 -1
- package/build/personalia/resources/attendance/attendance.resource.d.ts +1 -1
- package/build/personalia/resources/checkIn/checkIn.model.d.ts +1 -1
- package/build/personalia/resources/checkIn/checkIn.resource.d.ts +1 -1
- package/build/personalia/resources/index.d.ts +9 -9
- package/build/personalia/resources/index.mjs +9 -9
- package/build/personalia/resources/plan/plan.model.d.ts +1 -1
- package/build/personalia/resources/plan/plan.resource.d.ts +1 -1
- package/build/personalia/resources/planType/planType.model.d.ts +1 -1
- package/build/personalia/resources/planType/planType.resource.d.ts +1 -1
- package/build/personalia/resources/progress/progress.model.d.ts +1 -1
- package/build/personalia/resources/progress/progress.resource.d.ts +1 -1
- package/build/personalia/resources/responsibility/responsibility.model.d.ts +1 -1
- package/build/personalia/resources/responsibility/responsibility.resource.d.ts +1 -1
- package/build/personalia/resources/staff/staff.model.d.ts +1 -1
- package/build/personalia/resources/staff/staff.resource.d.ts +1 -1
- package/build/personalia/resources/submission/submission.model.d.ts +1 -1
- package/build/personalia/resources/submission/submission.resource.d.ts +1 -1
- package/build/personalia/resources/target/target.model.d.ts +1 -1
- package/build/personalia/resources/target/target.resource.d.ts +1 -1
- package/build/personalia/resources/task/task.model.d.ts +1 -1
- package/build/personalia/resources/task/task.resource.d.ts +1 -1
- package/build/personalia/views.mjs +2 -2
- package/package.json +32 -21
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import { Module } from "@neon.id/context";
|
|
2
2
|
import {
|
|
3
|
-
|
|
4
|
-
TaskResource,
|
|
5
|
-
SituationTypeResource,
|
|
6
|
-
SituationResource,
|
|
3
|
+
AttendanceResource,
|
|
7
4
|
CheckInResource,
|
|
5
|
+
PlanResource,
|
|
6
|
+
PlanTypeResource,
|
|
7
|
+
ProgressAccessResource,
|
|
8
|
+
ProgressResource,
|
|
9
|
+
ResponsibilityResource,
|
|
10
|
+
ResponsibilityTypeResource,
|
|
11
|
+
SituationResource,
|
|
12
|
+
SituationTypeResource,
|
|
13
|
+
StaffResource,
|
|
8
14
|
SubmissionResource,
|
|
9
15
|
SubmissionTypeResource,
|
|
10
|
-
ResponsibilityTypeResource,
|
|
11
|
-
ResponsibilityResource,
|
|
12
16
|
TargetResource,
|
|
13
|
-
|
|
14
|
-
PlanResource,
|
|
15
|
-
ProgressResource,
|
|
16
|
-
AttendanceResource,
|
|
17
|
-
ProgressAccessResource
|
|
17
|
+
TaskResource
|
|
18
18
|
} from "./resources/index.mjs";
|
|
19
19
|
export const PersonaliaModule = Module.define({
|
|
20
20
|
definition: "neu:operasional:personalia",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { OfficePage } from "#components";
|
|
2
2
|
import { defineNuxtPlugin, useRouter } from "#imports";
|
|
3
3
|
import { useModuleStore } from "@neon.id/context";
|
|
4
|
-
import { PersonaliaModule } from "./module.mjs";
|
|
5
4
|
import { defineAsyncComponent } from "vue";
|
|
5
|
+
import { PersonaliaModule } from "./module.mjs";
|
|
6
6
|
import * as views from "./views.mjs";
|
|
7
7
|
export default defineNuxtPlugin((app) => {
|
|
8
8
|
console.log("plugin:neu:operasional:personalia");
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const AttendanceModel: import("@neon.id/model").Model<"neu:personalia:attendance", "
|
|
1
|
+
export declare const AttendanceModel: import("@neon.id/model").Model<"neu:personalia:attendance", "status" | "type" | "submitStaff" | "decideStaff" | "submittedAt" | "startedAt" | "endedAt" | "notes" | "nameStaff" | "branch" | "virtualSubmitStaff" | "attendanceAt" | "homeAt" | "earlyAt" | "comeAt" | "lateAt">;
|
|
2
2
|
export type TAttendanceModel = typeof AttendanceModel;
|
|
3
3
|
export declare const fragments: {
|
|
4
4
|
item: Schema.Attendance;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { Resource } from '@neon.id/context';
|
|
2
|
-
export declare const AttendanceResource: Resource<Schema.Attendance, import("@neon.id/model").Model<"neu:personalia:attendance", "
|
|
2
|
+
export declare const AttendanceResource: Resource<Schema.Attendance, import("@neon.id/model").Model<"neu:personalia:attendance", "status" | "type" | "submitStaff" | "decideStaff" | "submittedAt" | "startedAt" | "endedAt" | "notes" | "nameStaff" | "branch" | "virtualSubmitStaff" | "attendanceAt" | "homeAt" | "earlyAt" | "comeAt" | "lateAt">>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const CheckInModel: import("@neon.id/model").Model<"neu:tempat:checkIn", "type" | "
|
|
1
|
+
export declare const CheckInModel: import("@neon.id/model").Model<"neu:tempat:checkIn", "staff" | "type" | "user" | "branch" | "checkInAt" | "building" | "note" | "student" | "teacher" | "virtualStaff" | "informationCheckIn">;
|
|
2
2
|
export type TCheckInModel = typeof CheckInModel;
|
|
3
3
|
export declare const fragments: {
|
|
4
4
|
item: Schema.CheckIn;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { Resource } from '@neon.id/context';
|
|
2
|
-
export declare const CheckInResource: Resource<Schema.CheckIn, import("@neon.id/model").Model<"neu:tempat:checkIn", "type" | "
|
|
2
|
+
export declare const CheckInResource: Resource<Schema.CheckIn, import("@neon.id/model").Model<"neu:tempat:checkIn", "staff" | "type" | "user" | "branch" | "checkInAt" | "building" | "note" | "student" | "teacher" | "virtualStaff" | "informationCheckIn">>;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
+
export * from './attendance';
|
|
1
2
|
export * from './checkIn';
|
|
2
|
-
export * from './
|
|
3
|
+
export * from './plan';
|
|
4
|
+
export * from './planType';
|
|
5
|
+
export * from './progress';
|
|
6
|
+
export * from './progressAccess';
|
|
7
|
+
export * from './responsibility';
|
|
8
|
+
export * from './responsibilityType';
|
|
3
9
|
export * from './situation';
|
|
4
10
|
export * from './situationType';
|
|
5
|
-
export * from './
|
|
11
|
+
export * from './staff';
|
|
6
12
|
export * from './submission';
|
|
7
13
|
export * from './submissionType';
|
|
8
|
-
export * from './responsibilityType';
|
|
9
|
-
export * from './responsibility';
|
|
10
14
|
export * from './target';
|
|
11
|
-
export * from './
|
|
12
|
-
export * from './plan';
|
|
13
|
-
export * from './progress';
|
|
14
|
-
export * from './attendance';
|
|
15
|
-
export * from './progressAccess';
|
|
15
|
+
export * from './task';
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
+
export * from "./attendance/index.mjs";
|
|
1
2
|
export * from "./checkIn/index.mjs";
|
|
2
|
-
export * from "./
|
|
3
|
+
export * from "./plan/index.mjs";
|
|
4
|
+
export * from "./planType/index.mjs";
|
|
5
|
+
export * from "./progress/index.mjs";
|
|
6
|
+
export * from "./progressAccess/index.mjs";
|
|
7
|
+
export * from "./responsibility/index.mjs";
|
|
8
|
+
export * from "./responsibilityType/index.mjs";
|
|
3
9
|
export * from "./situation/index.mjs";
|
|
4
10
|
export * from "./situationType/index.mjs";
|
|
5
|
-
export * from "./
|
|
11
|
+
export * from "./staff/index.mjs";
|
|
6
12
|
export * from "./submission/index.mjs";
|
|
7
13
|
export * from "./submissionType/index.mjs";
|
|
8
|
-
export * from "./responsibilityType/index.mjs";
|
|
9
|
-
export * from "./responsibility/index.mjs";
|
|
10
14
|
export * from "./target/index.mjs";
|
|
11
|
-
export * from "./
|
|
12
|
-
export * from "./plan/index.mjs";
|
|
13
|
-
export * from "./progress/index.mjs";
|
|
14
|
-
export * from "./attendance/index.mjs";
|
|
15
|
-
export * from "./progressAccess/index.mjs";
|
|
15
|
+
export * from "./task/index.mjs";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const PlanModel: import("@neon.id/model").Model<"neu:personalia:plan", "
|
|
1
|
+
export declare const PlanModel: import("@neon.id/model").Model<"neu:personalia:plan", "startedAt" | "endedAt" | "name" | "branches" | "domain" | "planTypes" | "stages" | "target" | "detail" | "staffs">;
|
|
2
2
|
export type TPlanModel = typeof PlanModel;
|
|
3
3
|
export declare const fragments: {
|
|
4
4
|
item: Schema.Plan;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { Resource } from '@neon.id/context';
|
|
2
|
-
export declare const PlanResource: Resource<Schema.Plan, import("@neon.id/model").Model<"neu:personalia:plan", "
|
|
2
|
+
export declare const PlanResource: Resource<Schema.Plan, import("@neon.id/model").Model<"neu:personalia:plan", "startedAt" | "endedAt" | "name" | "branches" | "domain" | "planTypes" | "stages" | "target" | "detail" | "staffs">>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const PlanTypeModel: import("@neon.id/model").Model<"neu:personalia:planType", "name" | "
|
|
1
|
+
export declare const PlanTypeModel: import("@neon.id/model").Model<"neu:personalia:planType", "name" | "nameStaff" | "branches" | "domain" | "staffs">;
|
|
2
2
|
export type TPlanTypeModel = typeof PlanTypeModel;
|
|
3
3
|
export declare const fragments: {
|
|
4
4
|
item: Schema.PlanType;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { Resource } from '@neon.id/context';
|
|
2
|
-
export declare const PlanTypeResource: Resource<Schema.PlanType, import("@neon.id/model").Model<"neu:personalia:planType", "name" | "
|
|
2
|
+
export declare const PlanTypeResource: Resource<Schema.PlanType, import("@neon.id/model").Model<"neu:personalia:planType", "name" | "nameStaff" | "branches" | "domain" | "staffs">>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const ProgressModel: import("@neon.id/model").Model<"neu:personalia:progress", "
|
|
1
|
+
export declare const ProgressModel: import("@neon.id/model").Model<"neu:personalia:progress", "startedAt" | "endedAt" | "nameStaff" | "branches" | "detail" | "staffs" | "plans" | "virtualIsNotes" | "accessStaffs" | "priority" | "submissions" | "virtualStaffs" | "responsibilities" | "isNotes">;
|
|
2
2
|
export type TProgressModel = typeof ProgressModel;
|
|
3
3
|
export declare const fragments: {
|
|
4
4
|
item: Schema.Progress;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { Resource } from '@neon.id/context';
|
|
2
|
-
export declare const ProgressResource: Resource<Schema.Progress, import("@neon.id/model").Model<"neu:personalia:progress", "
|
|
2
|
+
export declare const ProgressResource: Resource<Schema.Progress, import("@neon.id/model").Model<"neu:personalia:progress", "startedAt" | "endedAt" | "nameStaff" | "branches" | "detail" | "staffs" | "plans" | "virtualIsNotes" | "accessStaffs" | "priority" | "submissions" | "virtualStaffs" | "responsibilities" | "isNotes">>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const ResponsibilityModel: import("@neon.id/model").Model<"neu:personalia:responsibility", "title" | "branches" | "
|
|
1
|
+
export declare const ResponsibilityModel: import("@neon.id/model").Model<"neu:personalia:responsibility", "nameStaff" | "title" | "branches" | "detail" | "condition" | "responsibilityType" | "staffWorks" | "staffSupervises" | "score" | "lastProgress" | "result">;
|
|
2
2
|
export type TResponsibilityModel = typeof ResponsibilityModel;
|
|
3
3
|
export declare const fragments: {
|
|
4
4
|
item: Schema.Responsibility;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { Resource } from '@neon.id/context';
|
|
2
|
-
export declare const ResponsibilityResource: Resource<Schema.Responsibility, import("@neon.id/model").Model<"neu:personalia:responsibility", "title" | "branches" | "
|
|
2
|
+
export declare const ResponsibilityResource: Resource<Schema.Responsibility, import("@neon.id/model").Model<"neu:personalia:responsibility", "nameStaff" | "title" | "branches" | "detail" | "condition" | "responsibilityType" | "staffWorks" | "staffSupervises" | "score" | "lastProgress" | "result">>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const StaffModel: import("@neon.id/model").Model<"neu:personalia:staff", "user" | "
|
|
1
|
+
export declare const StaffModel: import("@neon.id/model").Model<"neu:personalia:staff", "user" | "name" | "branch" | "image" | "note" | "branches" | "nik" | "birthPlace" | "birthDate">;
|
|
2
2
|
export type TStaffModel = typeof StaffModel;
|
|
3
3
|
export declare const fragments: {
|
|
4
4
|
item: Schema.Staff;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { Resource } from '@neon.id/context';
|
|
2
|
-
export declare const StaffResource: Resource<Schema.Staff, import("@neon.id/model").Model<"neu:personalia:staff", "user" | "
|
|
2
|
+
export declare const StaffResource: Resource<Schema.Staff, import("@neon.id/model").Model<"neu:personalia:staff", "user" | "name" | "branch" | "image" | "note" | "branches" | "nik" | "birthPlace" | "birthDate">>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const SubmissionModel: import("@neon.id/model").Model<"neu:personalia:submission", "type" | "
|
|
1
|
+
export declare const SubmissionModel: import("@neon.id/model").Model<"neu:personalia:submission", "status" | "type" | "nameStaff" | "image" | "title" | "branches" | "raisedAt" | "submissionStaffs" | "raiseStaffs" | "decideStaffs" | "followUpStaffs" | "nominal" | "preparedAt" | "processedAt" | "agreedStaffs" | "delayStaffs" | "virtualFollowUpStaffs" | "specifications" | "document" | "workingHours">;
|
|
2
2
|
export type TSubmissionModel = typeof SubmissionModel;
|
|
3
3
|
export declare const fragments: {
|
|
4
4
|
item: Schema.Submission;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { Resource } from '@neon.id/context';
|
|
2
|
-
export declare const SubmissionResource: Resource<Schema.Submission, import("@neon.id/model").Model<"neu:personalia:submission", "type" | "
|
|
2
|
+
export declare const SubmissionResource: Resource<Schema.Submission, import("@neon.id/model").Model<"neu:personalia:submission", "status" | "type" | "nameStaff" | "image" | "title" | "branches" | "raisedAt" | "submissionStaffs" | "raiseStaffs" | "decideStaffs" | "followUpStaffs" | "nominal" | "preparedAt" | "processedAt" | "agreedStaffs" | "delayStaffs" | "virtualFollowUpStaffs" | "specifications" | "document" | "workingHours">>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const TargetModel: import("@neon.id/model").Model<"neu:personalia:target", "
|
|
1
|
+
export declare const TargetModel: import("@neon.id/model").Model<"neu:personalia:target", "startedAt" | "endedAt" | "name" | "branches" | "stages" | "condition" | "targetEst" | "actualInvoice" | "school">;
|
|
2
2
|
export type TTargetModel = typeof TargetModel;
|
|
3
3
|
export declare const fragments: {
|
|
4
4
|
item: Schema.Target;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { Resource } from '@neon.id/context';
|
|
2
|
-
export declare const TargetResource: Resource<Schema.Target, import("@neon.id/model").Model<"neu:personalia:target", "
|
|
2
|
+
export declare const TargetResource: Resource<Schema.Target, import("@neon.id/model").Model<"neu:personalia:target", "startedAt" | "endedAt" | "name" | "branches" | "stages" | "condition" | "targetEst" | "actualInvoice" | "school">>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const TaskModel: import("@neon.id/model").Model<"neu:personalia:task", "
|
|
1
|
+
export declare const TaskModel: import("@neon.id/model").Model<"neu:personalia:task", "status" | "user" | "branches" | "priority" | "employeeNameTrimmed" | "giveAssignments" | "doingAssignments" | "supervisingAssignments" | "helpAssignments" | "estimatedStartDate" | "estimatedEndDate" | "estimatedHourDoingAssignment" | "estimatedHourCommunicationAssignment" | "estimatedHourCognitiveAssignment" | "estimatedHourCreativeAssignment" | "taskName" | "estimatedHourByDay" | "internalServiceDescription" | "externalServiceDescription" | "resultAssignment" | "estimatedRealizedAssignmentStart" | "estimatedRealizedAssignmentEnd" | "images">;
|
|
2
2
|
export type TTaskModel = typeof TaskModel;
|
|
3
3
|
export declare const fragments: {
|
|
4
4
|
item: Schema.Task;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { Resource } from '@neon.id/context';
|
|
2
|
-
export declare const TaskResource: Resource<Schema.Task, import("@neon.id/model").Model<"neu:personalia:task", "
|
|
2
|
+
export declare const TaskResource: Resource<Schema.Task, import("@neon.id/model").Model<"neu:personalia:task", "status" | "user" | "branches" | "priority" | "employeeNameTrimmed" | "giveAssignments" | "doingAssignments" | "supervisingAssignments" | "helpAssignments" | "estimatedStartDate" | "estimatedEndDate" | "estimatedHourDoingAssignment" | "estimatedHourCommunicationAssignment" | "estimatedHourCognitiveAssignment" | "estimatedHourCreativeAssignment" | "taskName" | "estimatedHourByDay" | "internalServiceDescription" | "externalServiceDescription" | "resultAssignment" | "estimatedRealizedAssignmentStart" | "estimatedRealizedAssignmentEnd" | "images">>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { AttendanceCollectionView, AttendanceSingleView, AttendanceCollectionStaffView, AttendanceSingleStaffView, AttendanceCollectionManagerView, AttendanceSingleManagerView, AttendanceCollectionSupervisorView, AttendanceSingleSupervisorView,
|
|
2
|
-
export { AttendanceCollectionView, AttendanceSingleView, AttendanceCollectionStaffView, AttendanceSingleStaffView, AttendanceCollectionManagerView, AttendanceSingleManagerView, AttendanceCollectionSupervisorView, AttendanceSingleSupervisorView,
|
|
1
|
+
import { CheckInCollectionView, CheckInSingleView, CheckInCollectionExternalView, CheckInSingleExternalView, CheckInCollectionSupervisorView, CheckInSingleSupervisorView, AttendanceCollectionView, AttendanceSingleView, AttendanceCollectionStaffView, AttendanceSingleStaffView, AttendanceCollectionManagerView, AttendanceSingleManagerView, AttendanceCollectionSupervisorView, AttendanceSingleSupervisorView, PlanTypeCollectionView, PlanTypeSingleView, PlanCollectionView, PlanSingleView, PlanCollectionStaffView, PlanSingleStaffView, ProgressCollectionView, ProgressCollectionNoteView, ProgressSingleNoteView, ProgressSingleView, ProgressSingleYesterdayView, ProgressSingleTomorrowView, ProgressCollectionSupervisorView, ResponsibilityCollectionView, ResponsibilitySingleView, ResponsibilityCollectionStaffView, ResponsibilitySingleStaffView, ResponsibilityCollectionSupervisorView, ResponsibilitySingleSupervisorView, ResponsibilityTypeCollectionView, ResponsibilityTypeSingleView, SituationCollectionView, SituationSingleView, SituationCollectionWorkView, SituationSingleWorkView, SituationCollectionSupportiveView, SituationSingleSupportiveView, ProgressAccessCollectionView, ProgressAccessSingleView, ProgressAccessCollectionSupervisorView, ProgressAccessSingleSupervisorView, SituationTypeCollectionView, SituationTypeSingleView, StaffCollectionView, StaffSingleView, StaffCollectionOperasionalView, StaffSingleOperasionalView, SubmissionCollectionView, SubmissionSingleView, SubmissionCollectionStaffView, SubmissionSingleStaffView, SubmissionCollectionFollowUpView, SubmissionSingleFollowUpView, SubmissionCollectionAuditView, SubmissionSingleAuditView, SubmissionCollectionDecisionView, SubmissionSingleDecisionView, SubmissionCollectionWaitingDecisionView, SubmissionSingleWaitingDecisionView, SubmissionCollectionSupervisorView, SubmissionSingleSupervisorView, SubmissionTypeCollectionView, SubmissionTypeSingleView, TargetCollectionView, TargetSingleView, TargetCollectionBranchView, TargetSingleBranchView, TaskCollectionView, TaskSingleView, TaskCollectionPlanView, TaskSinglePlanView, TaskCollectionWorkView, TaskSingleWorkView } from './resources'
|
|
2
|
+
export { CheckInCollectionView, CheckInSingleView, CheckInCollectionExternalView, CheckInSingleExternalView, CheckInCollectionSupervisorView, CheckInSingleSupervisorView, AttendanceCollectionView, AttendanceSingleView, AttendanceCollectionStaffView, AttendanceSingleStaffView, AttendanceCollectionManagerView, AttendanceSingleManagerView, AttendanceCollectionSupervisorView, AttendanceSingleSupervisorView, PlanTypeCollectionView, PlanTypeSingleView, PlanCollectionView, PlanSingleView, PlanCollectionStaffView, PlanSingleStaffView, ProgressCollectionView, ProgressCollectionNoteView, ProgressSingleNoteView, ProgressSingleView, ProgressSingleYesterdayView, ProgressSingleTomorrowView, ProgressCollectionSupervisorView, ResponsibilityCollectionView, ResponsibilitySingleView, ResponsibilityCollectionStaffView, ResponsibilitySingleStaffView, ResponsibilityCollectionSupervisorView, ResponsibilitySingleSupervisorView, ResponsibilityTypeCollectionView, ResponsibilityTypeSingleView, SituationCollectionView, SituationSingleView, SituationCollectionWorkView, SituationSingleWorkView, SituationCollectionSupportiveView, SituationSingleSupportiveView, ProgressAccessCollectionView, ProgressAccessSingleView, ProgressAccessCollectionSupervisorView, ProgressAccessSingleSupervisorView, SituationTypeCollectionView, SituationTypeSingleView, StaffCollectionView, StaffSingleView, StaffCollectionOperasionalView, StaffSingleOperasionalView, SubmissionCollectionView, SubmissionSingleView, SubmissionCollectionStaffView, SubmissionSingleStaffView, SubmissionCollectionFollowUpView, SubmissionSingleFollowUpView, SubmissionCollectionAuditView, SubmissionSingleAuditView, SubmissionCollectionDecisionView, SubmissionSingleDecisionView, SubmissionCollectionWaitingDecisionView, SubmissionSingleWaitingDecisionView, SubmissionCollectionSupervisorView, SubmissionSingleSupervisorView, SubmissionTypeCollectionView, SubmissionTypeSingleView, TargetCollectionView, TargetSingleView, TargetCollectionBranchView, TargetSingleBranchView, TaskCollectionView, TaskSingleView, TaskCollectionPlanView, TaskSinglePlanView, TaskCollectionWorkView, TaskSingleWorkView }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neutron.co.id/operasional-modules",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.0",
|
|
4
4
|
"description": "Modules of Neutron Operasional.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"contributors": [
|
|
@@ -35,37 +35,48 @@
|
|
|
35
35
|
"build/**"
|
|
36
36
|
],
|
|
37
37
|
"scripts": {
|
|
38
|
-
"build": "unbuild",
|
|
39
|
-
"
|
|
40
|
-
"
|
|
38
|
+
"build": "yarn reset && unbuild",
|
|
39
|
+
"cargo": "yarn cargo",
|
|
40
|
+
"reset": "rm -rf dist build .output && yarn warm",
|
|
41
|
+
"warm": "nuxt prepare"
|
|
41
42
|
},
|
|
42
43
|
"dependencies": {
|
|
43
|
-
"@
|
|
44
|
-
"@
|
|
44
|
+
"@neon.id/context": "^1.7.0",
|
|
45
|
+
"@neon.id/interfaces": "^1.10.0",
|
|
46
|
+
"@neon.id/office": "^1.9.0",
|
|
47
|
+
"@neon.id/query": "^1.2.0",
|
|
48
|
+
"@neutron.co.id/operasional-interfaces": "^1.9.0",
|
|
49
|
+
"@neutron.co.id/personalia-models": "^1.9.0",
|
|
50
|
+
"@nuxt/kit": "^3.6.5"
|
|
45
51
|
},
|
|
46
52
|
"devDependencies": {
|
|
47
|
-
"@
|
|
48
|
-
"@graphql-codegen/client-preset": "4.0.1",
|
|
53
|
+
"@neon.id/cli": "0.8.0",
|
|
49
54
|
"@neon.id/types": "1.52.0",
|
|
50
|
-
"@types/eslint": "8.
|
|
51
|
-
"@types/node": "20.
|
|
52
|
-
"@types/prettier": "
|
|
55
|
+
"@types/eslint": "8.44.2",
|
|
56
|
+
"@types/node": "20.4.9",
|
|
57
|
+
"@types/prettier": "3.0.0",
|
|
53
58
|
"@vortex.so/eslint-plugin": "0.7.0",
|
|
54
|
-
"eslint": "8.
|
|
55
|
-
"globby": "13.2.
|
|
56
|
-
"magicast": "0.2.
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
+
"eslint": "8.46.0",
|
|
60
|
+
"globby": "13.2.2",
|
|
61
|
+
"magicast": "0.2.10",
|
|
62
|
+
"nuxt": "3.6.5",
|
|
63
|
+
"prettier": "3.0.1",
|
|
64
|
+
"typescript": "5.1.6",
|
|
59
65
|
"unbuild": "1.2.1",
|
|
60
|
-
"vite": "4.
|
|
61
|
-
"vitest": "0.
|
|
66
|
+
"vite": "4.4.9",
|
|
67
|
+
"vitest": "0.34.1"
|
|
62
68
|
},
|
|
63
69
|
"peerDependencies": {
|
|
64
|
-
"@
|
|
65
|
-
"@
|
|
70
|
+
"@neon.id/context": "^1.7.0",
|
|
71
|
+
"@neon.id/interfaces": "^1.10.0",
|
|
72
|
+
"@neon.id/office": "^1.9.0",
|
|
73
|
+
"@neon.id/query": "^1.2.0",
|
|
74
|
+
"@neutron.co.id/operasional-interfaces": "^1.9.0",
|
|
75
|
+
"@neutron.co.id/personalia-models": "^1.9.0",
|
|
76
|
+
"@nuxt/kit": "^3.6.5"
|
|
66
77
|
},
|
|
67
78
|
"publishConfig": {
|
|
68
79
|
"access": "public"
|
|
69
80
|
},
|
|
70
|
-
"build":
|
|
81
|
+
"build": 67
|
|
71
82
|
}
|