@neutron.co.id/operasional-interfaces 1.8.3 → 1.8.5

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.
Files changed (29) hide show
  1. package/build/index.cjs +1546 -378
  2. package/build/index.mjs +1546 -378
  3. package/build/style.css +41 -17
  4. package/build/types/components/attendance/attendance.types.d.ts +1 -1
  5. package/build/types/components/attendance/sheets/AttendanceSupervisor.vue.d.ts +2 -0
  6. package/build/types/components/attendance/sheets/index.d.ts +1 -0
  7. package/build/types/components/checkIn/checkIn.types.d.ts +1 -1
  8. package/build/types/components/checkIn/sheets/CheckInSupervisor.vue.d.ts +2 -0
  9. package/build/types/components/checkIn/sheets/index.d.ts +1 -0
  10. package/build/types/components/index.d.ts +1 -0
  11. package/build/types/components/progress/elements/ProgressNoteButton.vue.d.ts +2 -0
  12. package/build/types/components/progress/elements/index.d.ts +1 -0
  13. package/build/types/components/progress/progress.types.d.ts +1 -1
  14. package/build/types/components/progressAccess/index.d.ts +2 -0
  15. package/build/types/components/progressAccess/progressAccess.types.d.ts +2 -0
  16. package/build/types/components/progressAccess/sheets/ProgressAccessCollection.vue.d.ts +2 -0
  17. package/build/types/components/progressAccess/sheets/ProgressAccessSingle.vue.d.ts +2 -0
  18. package/build/types/components/progressAccess/sheets/ProgressAccessSupervisor.vue.d.ts +2 -0
  19. package/build/types/components/progressAccess/sheets/index.d.ts +3 -0
  20. package/build/types/components/responsibility/responsibility.types.d.ts +1 -1
  21. package/build/types/components/responsibility/sheets/ResponsibilitySupervisor.vue.d.ts +2 -0
  22. package/build/types/components/responsibility/sheets/index.d.ts +1 -0
  23. package/build/types/components/submission/sheets/SubmissionSupervisor.vue.d.ts +2 -0
  24. package/build/types/components/submission/sheets/index.d.ts +1 -0
  25. package/build/types/components/submission/submission.types.d.ts +1 -1
  26. package/build/types/gql/graphql.d.ts +304 -6
  27. package/build/types/providers/operasional/operasional.types.d.ts +3 -1
  28. package/build/types/providers/operasional/useOperasional.d.ts +2 -0
  29. package/package.json +6 -6
@@ -680,6 +680,10 @@ export type Attendance = {
680
680
  updatedBy?: Maybe<Scalars['ObjectId']['output']>;
681
681
  /** Who last updated this absensi. */
682
682
  updater?: Maybe<User>;
683
+ /** Siapa yang mengajukan absensi. */
684
+ virtualSubmitStaff?: Maybe<Staff>;
685
+ /** Relation ID of Siapa Mengajukan. */
686
+ virtualSubmitStaffId?: Maybe<Scalars['ObjectId']['output']>;
683
687
  };
684
688
  /** neu:personalia:attendance collection response. */
685
689
  export type AttendanceCollectionResponse = {
@@ -741,6 +745,8 @@ export type AttendanceInput = {
741
745
  updatedAt?: InputMaybe<Scalars['Date']['input']>;
742
746
  /** Relation ID of Updated By. */
743
747
  updatedBy?: InputMaybe<Scalars['ObjectId']['input']>;
748
+ /** Relation ID of Siapa Mengajukan. */
749
+ virtualSubmitStaffId?: InputMaybe<Scalars['ObjectId']['input']>;
744
750
  };
745
751
  /** Single neu:personalia:attendance response. */
746
752
  export type AttendanceSingleResponse = {
@@ -2345,6 +2351,10 @@ export type CheckIn = {
2345
2351
  user?: Maybe<User>;
2346
2352
  /** Relation ID of Pengguna. */
2347
2353
  userId?: Maybe<Scalars['ObjectId']['output']>;
2354
+ /** Karyawan yang hadir. */
2355
+ virtualStaff?: Maybe<Staff>;
2356
+ /** Relation ID of Karyawan. */
2357
+ virtualStaffId?: Maybe<Scalars['ObjectId']['output']>;
2348
2358
  };
2349
2359
  /** neu:tempat:checkIn collection response. */
2350
2360
  export type CheckInCollectionResponse = {
@@ -2398,6 +2408,8 @@ export type CheckInInput = {
2398
2408
  updatedBy?: InputMaybe<Scalars['ObjectId']['input']>;
2399
2409
  /** Relation ID of Pengguna. */
2400
2410
  userId?: InputMaybe<Scalars['ObjectId']['input']>;
2411
+ /** Relation ID of Karyawan. */
2412
+ virtualStaffId?: InputMaybe<Scalars['ObjectId']['input']>;
2401
2413
  };
2402
2414
  /** Single neu:tempat:checkIn response. */
2403
2415
  export type CheckInSingleResponse = {
@@ -5675,6 +5687,8 @@ export type Mutation = {
5675
5687
  createOnePlanType?: Maybe<PlanTypeSingleResponse>;
5676
5688
  /** Create single neu:personalia:progress item. */
5677
5689
  createOneProgress?: Maybe<ProgressSingleResponse>;
5690
+ /** Create single neu:personalia:progressAccess item. */
5691
+ createOneProgressAccess?: Maybe<ProgressAccessSingleResponse>;
5678
5692
  /** Create single neo:tempat:province item. */
5679
5693
  createOneProvince?: Maybe<ProvinceSingleResponse>;
5680
5694
  /** Create single neu:tempat:region item. */
@@ -5813,6 +5827,8 @@ export type Mutation = {
5813
5827
  deleteOnePlanType?: Maybe<PlanTypeSingleResponse>;
5814
5828
  /** Delete single neu:personalia:progress item. */
5815
5829
  deleteOneProgress?: Maybe<ProgressSingleResponse>;
5830
+ /** Delete single neu:personalia:progressAccess item. */
5831
+ deleteOneProgressAccess?: Maybe<ProgressAccessSingleResponse>;
5816
5832
  /** Delete single neo:tempat:province item. */
5817
5833
  deleteOneProvince?: Maybe<ProvinceSingleResponse>;
5818
5834
  /** Delete single neu:tempat:region item. */
@@ -5951,6 +5967,8 @@ export type Mutation = {
5951
5967
  duplicateOnePlanType?: Maybe<PlanTypeSingleResponse>;
5952
5968
  /** Duplicate single neu:personalia:progress item. */
5953
5969
  duplicateOneProgress?: Maybe<ProgressSingleResponse>;
5970
+ /** Duplicate single neu:personalia:progressAccess item. */
5971
+ duplicateOneProgressAccess?: Maybe<ProgressAccessSingleResponse>;
5954
5972
  /** Duplicate single neo:tempat:province item. */
5955
5973
  duplicateOneProvince?: Maybe<ProvinceSingleResponse>;
5956
5974
  /** Duplicate single neu:tempat:region item. */
@@ -6091,6 +6109,8 @@ export type Mutation = {
6091
6109
  executePlanType?: Maybe<ExecuteResponse>;
6092
6110
  /** Execute a custom action on neu:personalia:progress. */
6093
6111
  executeProgress?: Maybe<ExecuteResponse>;
6112
+ /** Execute a custom action on neu:personalia:progressAccess. */
6113
+ executeProgressAccess?: Maybe<ExecuteResponse>;
6094
6114
  /** Execute a custom action on neo:tempat:province. */
6095
6115
  executeProvince?: Maybe<ExecuteResponse>;
6096
6116
  /** Execute a custom action on neu:tempat:region. */
@@ -6230,6 +6250,8 @@ export type Mutation = {
6230
6250
  restoreOnePlanType?: Maybe<PlanTypeSingleResponse>;
6231
6251
  /** Restore single neu:personalia:progress item. */
6232
6252
  restoreOneProgress?: Maybe<ProgressSingleResponse>;
6253
+ /** Restore single neu:personalia:progressAccess item. */
6254
+ restoreOneProgressAccess?: Maybe<ProgressAccessSingleResponse>;
6233
6255
  /** Restore single neo:tempat:province item. */
6234
6256
  restoreOneProvince?: Maybe<ProvinceSingleResponse>;
6235
6257
  /** Restore single neu:tempat:region item. */
@@ -6366,6 +6388,8 @@ export type Mutation = {
6366
6388
  syncManyPlanTypes?: Maybe<SyncManyResponse>;
6367
6389
  /** Sync many neu:personalia:plan items. */
6368
6390
  syncManyPlans?: Maybe<SyncManyResponse>;
6391
+ /** Sync many neu:personalia:progressAccess items. */
6392
+ syncManyProgressAccesses?: Maybe<SyncManyResponse>;
6369
6393
  /** Sync many neu:personalia:progress items. */
6370
6394
  syncManyProgresses?: Maybe<SyncManyResponse>;
6371
6395
  /** Sync many neo:tempat:province items. */
@@ -6506,6 +6530,8 @@ export type Mutation = {
6506
6530
  syncOnePlanType?: Maybe<PlanTypeSingleResponse>;
6507
6531
  /** Sync single neu:personalia:progress item. */
6508
6532
  syncOneProgress?: Maybe<ProgressSingleResponse>;
6533
+ /** Sync single neu:personalia:progressAccess item. */
6534
+ syncOneProgressAccess?: Maybe<ProgressAccessSingleResponse>;
6509
6535
  /** Sync single neo:tempat:province item. */
6510
6536
  syncOneProvince?: Maybe<ProvinceSingleResponse>;
6511
6537
  /** Sync single neu:tempat:region item. */
@@ -6644,6 +6670,8 @@ export type Mutation = {
6644
6670
  updateOnePlanType?: Maybe<PlanTypeSingleResponse>;
6645
6671
  /** Update single neu:personalia:progress item. */
6646
6672
  updateOneProgress?: Maybe<ProgressSingleResponse>;
6673
+ /** Update single neu:personalia:progressAccess item. */
6674
+ updateOneProgressAccess?: Maybe<ProgressAccessSingleResponse>;
6647
6675
  /** Update single neo:tempat:province item. */
6648
6676
  updateOneProvince?: Maybe<ProvinceSingleResponse>;
6649
6677
  /** Update single neu:tempat:region item. */
@@ -6897,6 +6925,11 @@ export type MutationCreateOneProgressArgs = {
6897
6925
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
6898
6926
  shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
6899
6927
  };
6928
+ export type MutationCreateOneProgressAccessArgs = {
6929
+ data: ProgressAccessInput;
6930
+ logs?: InputMaybe<Array<Scalars['String']['input']>>;
6931
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
6932
+ };
6900
6933
  export type MutationCreateOneProvinceArgs = {
6901
6934
  data: ProvinceInput;
6902
6935
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -7242,6 +7275,11 @@ export type MutationDeleteOneProgressArgs = {
7242
7275
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
7243
7276
  shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
7244
7277
  };
7278
+ export type MutationDeleteOneProgressAccessArgs = {
7279
+ id: Scalars['ObjectId']['input'];
7280
+ logs?: InputMaybe<Array<Scalars['String']['input']>>;
7281
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
7282
+ };
7245
7283
  export type MutationDeleteOneProvinceArgs = {
7246
7284
  id: Scalars['ObjectId']['input'];
7247
7285
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -7587,6 +7625,11 @@ export type MutationDuplicateOneProgressArgs = {
7587
7625
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
7588
7626
  shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
7589
7627
  };
7628
+ export type MutationDuplicateOneProgressAccessArgs = {
7629
+ id: Scalars['ObjectId']['input'];
7630
+ logs?: InputMaybe<Array<Scalars['String']['input']>>;
7631
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
7632
+ };
7590
7633
  export type MutationDuplicateOneProvinceArgs = {
7591
7634
  id: Scalars['ObjectId']['input'];
7592
7635
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -7975,6 +8018,12 @@ export type MutationExecuteProgressArgs = {
7975
8018
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
7976
8019
  shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
7977
8020
  };
8021
+ export type MutationExecuteProgressAccessArgs = {
8022
+ action?: InputMaybe<Scalars['String']['input']>;
8023
+ input?: InputMaybe<Scalars['Json']['input']>;
8024
+ logs?: InputMaybe<Array<Scalars['String']['input']>>;
8025
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
8026
+ };
7978
8027
  export type MutationExecuteProvinceArgs = {
7979
8028
  action?: InputMaybe<Scalars['String']['input']>;
7980
8029
  input?: InputMaybe<Scalars['Json']['input']>;
@@ -8351,6 +8400,11 @@ export type MutationRestoreOneProgressArgs = {
8351
8400
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
8352
8401
  shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
8353
8402
  };
8403
+ export type MutationRestoreOneProgressAccessArgs = {
8404
+ id: Scalars['ObjectId']['input'];
8405
+ logs?: InputMaybe<Array<Scalars['String']['input']>>;
8406
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
8407
+ };
8354
8408
  export type MutationRestoreOneProvinceArgs = {
8355
8409
  id: Scalars['ObjectId']['input'];
8356
8410
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -8987,6 +9041,19 @@ export type MutationSyncManyPlansArgs = {
8987
9041
  sort?: InputMaybe<Scalars['Json']['input']>;
8988
9042
  useDry?: InputMaybe<Scalars['Boolean']['input']>;
8989
9043
  };
9044
+ export type MutationSyncManyProgressAccessesArgs = {
9045
+ filter?: InputMaybe<Scalars['Json']['input']>;
9046
+ ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
9047
+ limit?: InputMaybe<Scalars['Int']['input']>;
9048
+ logs?: InputMaybe<Array<Scalars['String']['input']>>;
9049
+ maxSyncedAt?: InputMaybe<Scalars['Date']['input']>;
9050
+ minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
9051
+ page?: InputMaybe<Scalars['Int']['input']>;
9052
+ search?: InputMaybe<Scalars['String']['input']>;
9053
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
9054
+ sort?: InputMaybe<Scalars['Json']['input']>;
9055
+ useDry?: InputMaybe<Scalars['Boolean']['input']>;
9056
+ };
8990
9057
  export type MutationSyncManyProgressesArgs = {
8991
9058
  filter?: InputMaybe<Scalars['Json']['input']>;
8992
9059
  ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
@@ -9593,6 +9660,11 @@ export type MutationSyncOneProgressArgs = {
9593
9660
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
9594
9661
  shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
9595
9662
  };
9663
+ export type MutationSyncOneProgressAccessArgs = {
9664
+ id: Scalars['ObjectId']['input'];
9665
+ logs?: InputMaybe<Array<Scalars['String']['input']>>;
9666
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
9667
+ };
9596
9668
  export type MutationSyncOneProvinceArgs = {
9597
9669
  id: Scalars['ObjectId']['input'];
9598
9670
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -9976,6 +10048,12 @@ export type MutationUpdateOneProgressArgs = {
9976
10048
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
9977
10049
  shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
9978
10050
  };
10051
+ export type MutationUpdateOneProgressAccessArgs = {
10052
+ data: ProgressAccessInput;
10053
+ id: Scalars['ObjectId']['input'];
10054
+ logs?: InputMaybe<Array<Scalars['String']['input']>>;
10055
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
10056
+ };
9979
10057
  export type MutationUpdateOneProvinceArgs = {
9980
10058
  data: ProvinceInput;
9981
10059
  id: Scalars['ObjectId']['input'];
@@ -10880,7 +10958,7 @@ export type Progress = {
10880
10958
  staffIds?: Maybe<Array<Scalars['ObjectId']['output']>>;
10881
10959
  /** Siapa yang mengerjakan. */
10882
10960
  staffs?: Maybe<Array<Staff>>;
10883
- /** Dimulai Pada */
10961
+ /** Tanggal progress. */
10884
10962
  startedAt?: Maybe<Scalars['Date']['output']>;
10885
10963
  /** Relation IDs of Tindaklanjut. */
10886
10964
  submissionIds?: Maybe<Array<Scalars['ObjectId']['output']>>;
@@ -10898,6 +10976,10 @@ export type Progress = {
10898
10976
  updater?: Maybe<User>;
10899
10977
  /** Catatan virtual. */
10900
10978
  virtualIsNotes?: Maybe<Scalars['String']['output']>;
10979
+ /** Relation IDs of Siapa. */
10980
+ virtualStaffIds?: Maybe<Array<Scalars['ObjectId']['output']>>;
10981
+ /** Siapa yang mengerjakan. */
10982
+ virtualStaffs?: Maybe<Array<Staff>>;
10901
10983
  };
10902
10984
  export type ProgressAccessStaffsArgs = {
10903
10985
  filter?: InputMaybe<Scalars['Json']['input']>;
@@ -10944,6 +11026,116 @@ export type ProgressSubmissionsArgs = {
10944
11026
  search?: InputMaybe<Scalars['String']['input']>;
10945
11027
  sort?: InputMaybe<Scalars['Json']['input']>;
10946
11028
  };
11029
+ export type ProgressVirtualStaffsArgs = {
11030
+ filter?: InputMaybe<Scalars['Json']['input']>;
11031
+ ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
11032
+ limit?: InputMaybe<Scalars['Int']['input']>;
11033
+ minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
11034
+ page?: InputMaybe<Scalars['Int']['input']>;
11035
+ search?: InputMaybe<Scalars['String']['input']>;
11036
+ sort?: InputMaybe<Scalars['Json']['input']>;
11037
+ };
11038
+ export type ProgressAccess = {
11039
+ /** When this akses sdm was created. */
11040
+ createdAt?: Maybe<Scalars['Date']['output']>;
11041
+ /** Relation ID of Created By. */
11042
+ createdBy?: Maybe<Scalars['ObjectId']['output']>;
11043
+ /** Who created this akses sdm. */
11044
+ creator?: Maybe<User>;
11045
+ /** When this akses sdm was deleted. */
11046
+ deletedAt?: Maybe<Scalars['Date']['output']>;
11047
+ /** Relation ID of Deleted By. */
11048
+ deletedBy?: Maybe<Scalars['ObjectId']['output']>;
11049
+ /** Who deleted this akses sdm. */
11050
+ deleter?: Maybe<User>;
11051
+ /** Akses SDM */
11052
+ display?: Maybe<Scalars['String']['output']>;
11053
+ /** Akses SDM */
11054
+ flag?: Maybe<Scalars['String']['output']>;
11055
+ /** Object ID. */
11056
+ id?: Maybe<Scalars['ID']['output']>;
11057
+ /** Nama karyawan. */
11058
+ nameStaff?: Maybe<Scalars['String']['output']>;
11059
+ /** When this akses sdm was restored. */
11060
+ restoredAt?: Maybe<Scalars['Date']['output']>;
11061
+ /** Relation ID of Restored By. */
11062
+ restoredBy?: Maybe<Scalars['ObjectId']['output']>;
11063
+ /** Who last restored this akses sdm. */
11064
+ restorer?: Maybe<User>;
11065
+ /** Siapa yang mengawasi. */
11066
+ superviseStaff?: Maybe<Staff>;
11067
+ /** Relation ID of Siapa yang mengawasi. */
11068
+ superviseStaffId?: Maybe<Scalars['ObjectId']['output']>;
11069
+ /** Relation IDs of Siapa yang diawasi. */
11070
+ supervisedStaffIds?: Maybe<Array<Scalars['ObjectId']['output']>>;
11071
+ /** Siapa yang diawasi. */
11072
+ supervisedStaffs?: Maybe<Array<Staff>>;
11073
+ /** When this akses sdm was last synced. */
11074
+ syncedAt?: Maybe<Scalars['Date']['output']>;
11075
+ /** Internal type of this akses sdm. */
11076
+ type__?: Maybe<Scalars['String']['output']>;
11077
+ /** When this akses sdm was last updated. */
11078
+ updatedAt?: Maybe<Scalars['Date']['output']>;
11079
+ /** Relation ID of Updated By. */
11080
+ updatedBy?: Maybe<Scalars['ObjectId']['output']>;
11081
+ /** Who last updated this akses sdm. */
11082
+ updater?: Maybe<User>;
11083
+ };
11084
+ export type ProgressAccessSupervisedStaffsArgs = {
11085
+ filter?: InputMaybe<Scalars['Json']['input']>;
11086
+ ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
11087
+ limit?: InputMaybe<Scalars['Int']['input']>;
11088
+ minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
11089
+ page?: InputMaybe<Scalars['Int']['input']>;
11090
+ search?: InputMaybe<Scalars['String']['input']>;
11091
+ sort?: InputMaybe<Scalars['Json']['input']>;
11092
+ };
11093
+ /** neu:personalia:progressAccess collection response. */
11094
+ export type ProgressAccessCollectionResponse = {
11095
+ /** Response info. */
11096
+ info?: Maybe<Info>;
11097
+ /** Collection of neu:personalia:progressAccess items. */
11098
+ items?: Maybe<Array<ProgressAccess>>;
11099
+ };
11100
+ export type ProgressAccessInput = {
11101
+ /** When this akses sdm was created. */
11102
+ createdAt?: InputMaybe<Scalars['Date']['input']>;
11103
+ /** Relation ID of Created By. */
11104
+ createdBy?: InputMaybe<Scalars['ObjectId']['input']>;
11105
+ /** When this akses sdm was deleted. */
11106
+ deletedAt?: InputMaybe<Scalars['Date']['input']>;
11107
+ /** Relation ID of Deleted By. */
11108
+ deletedBy?: InputMaybe<Scalars['ObjectId']['input']>;
11109
+ /** Akses SDM */
11110
+ display?: InputMaybe<Scalars['String']['input']>;
11111
+ /** Akses SDM */
11112
+ flag?: InputMaybe<Scalars['String']['input']>;
11113
+ /** Nama karyawan. */
11114
+ nameStaff?: InputMaybe<Scalars['String']['input']>;
11115
+ /** When this akses sdm was restored. */
11116
+ restoredAt?: InputMaybe<Scalars['Date']['input']>;
11117
+ /** Relation ID of Restored By. */
11118
+ restoredBy?: InputMaybe<Scalars['ObjectId']['input']>;
11119
+ /** Relation ID of Siapa yang mengawasi. */
11120
+ superviseStaffId?: InputMaybe<Scalars['ObjectId']['input']>;
11121
+ /** Relation IDs of Siapa yang diawasi. */
11122
+ supervisedStaffIds?: InputMaybe<Array<Scalars['ID']['input']>>;
11123
+ /** When this akses sdm was last synced. */
11124
+ syncedAt?: InputMaybe<Scalars['Date']['input']>;
11125
+ /** Internal type of this akses sdm. */
11126
+ type__?: InputMaybe<Scalars['String']['input']>;
11127
+ /** When this akses sdm was last updated. */
11128
+ updatedAt?: InputMaybe<Scalars['Date']['input']>;
11129
+ /** Relation ID of Updated By. */
11130
+ updatedBy?: InputMaybe<Scalars['ObjectId']['input']>;
11131
+ };
11132
+ /** Single neu:personalia:progressAccess response. */
11133
+ export type ProgressAccessSingleResponse = {
11134
+ /** Response info. */
11135
+ info?: Maybe<Info>;
11136
+ /** Single neu:personalia:progressAccess item. */
11137
+ item?: Maybe<ProgressAccess>;
11138
+ };
10947
11139
  /** neu:personalia:progress collection response. */
10948
11140
  export type ProgressCollectionResponse = {
10949
11141
  /** Response info. */
@@ -10986,7 +11178,7 @@ export type ProgressInput = {
10986
11178
  restoredBy?: InputMaybe<Scalars['ObjectId']['input']>;
10987
11179
  /** Relation IDs of Siapa. */
10988
11180
  staffIds?: InputMaybe<Array<Scalars['ID']['input']>>;
10989
- /** Dimulai Pada */
11181
+ /** Tanggal progress. */
10990
11182
  startedAt?: InputMaybe<Scalars['Date']['input']>;
10991
11183
  /** Relation IDs of Tindaklanjut. */
10992
11184
  submissionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
@@ -11000,6 +11192,8 @@ export type ProgressInput = {
11000
11192
  updatedBy?: InputMaybe<Scalars['ObjectId']['input']>;
11001
11193
  /** Catatan virtual. */
11002
11194
  virtualIsNotes?: InputMaybe<Scalars['String']['input']>;
11195
+ /** Relation IDs of Siapa. */
11196
+ virtualStaffIds?: InputMaybe<Array<Scalars['ID']['input']>>;
11003
11197
  };
11004
11198
  /** Single neu:personalia:progress response. */
11005
11199
  export type ProgressSingleResponse = {
@@ -11272,6 +11466,8 @@ export type Query = {
11272
11466
  countPlanTypes?: Maybe<CountResponse>;
11273
11467
  /** Count neu:personalia:plan items. */
11274
11468
  countPlans?: Maybe<CountResponse>;
11469
+ /** Count neu:personalia:progressAccess items. */
11470
+ countProgressAccesses?: Maybe<CountResponse>;
11275
11471
  /** Count neu:personalia:progress items. */
11276
11472
  countProgresses?: Maybe<CountResponse>;
11277
11473
  /** Count neo:tempat:province items. */
@@ -11374,6 +11570,8 @@ export type Query = {
11374
11570
  planTypes?: Maybe<PlanTypeCollectionResponse>;
11375
11571
  plans?: Maybe<PlanCollectionResponse>;
11376
11572
  progress?: Maybe<ProgressSingleResponse>;
11573
+ progressAccess?: Maybe<ProgressAccessSingleResponse>;
11574
+ progressAccesses?: Maybe<ProgressAccessCollectionResponse>;
11377
11575
  progresses?: Maybe<ProgressCollectionResponse>;
11378
11576
  province?: Maybe<ProvinceSingleResponse>;
11379
11577
  provinces?: Maybe<ProvinceCollectionResponse>;
@@ -12191,6 +12389,17 @@ export type QueryCountPlansArgs = {
12191
12389
  shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
12192
12390
  sort?: InputMaybe<Scalars['Json']['input']>;
12193
12391
  };
12392
+ export type QueryCountProgressAccessesArgs = {
12393
+ filter?: InputMaybe<Scalars['Json']['input']>;
12394
+ ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
12395
+ limit?: InputMaybe<Scalars['Int']['input']>;
12396
+ logs?: InputMaybe<Array<Scalars['String']['input']>>;
12397
+ minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
12398
+ page?: InputMaybe<Scalars['Int']['input']>;
12399
+ search?: InputMaybe<Scalars['String']['input']>;
12400
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
12401
+ sort?: InputMaybe<Scalars['Json']['input']>;
12402
+ };
12194
12403
  export type QueryCountProgressesArgs = {
12195
12404
  filter?: InputMaybe<Scalars['Json']['input']>;
12196
12405
  ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
@@ -12836,6 +13045,22 @@ export type QueryProgressArgs = {
12836
13045
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
12837
13046
  shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
12838
13047
  };
13048
+ export type QueryProgressAccessArgs = {
13049
+ id: Scalars['ObjectId']['input'];
13050
+ logs?: InputMaybe<Array<Scalars['String']['input']>>;
13051
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
13052
+ };
13053
+ export type QueryProgressAccessesArgs = {
13054
+ filter?: InputMaybe<Scalars['Json']['input']>;
13055
+ ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
13056
+ limit?: InputMaybe<Scalars['Int']['input']>;
13057
+ logs?: InputMaybe<Array<Scalars['String']['input']>>;
13058
+ minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
13059
+ page?: InputMaybe<Scalars['Int']['input']>;
13060
+ search?: InputMaybe<Scalars['String']['input']>;
13061
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
13062
+ sort?: InputMaybe<Scalars['Json']['input']>;
13063
+ };
12839
13064
  export type QueryProgressesArgs = {
12840
13065
  filter?: InputMaybe<Scalars['Json']['input']>;
12841
13066
  ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
@@ -15071,6 +15296,10 @@ export type Staff = {
15071
15296
  submissionStaffSubmissions?: Maybe<Array<Submission>>;
15072
15297
  /** Inversed relation from Siapa Mengajukan field of neu:personalia:attendance model. */
15073
15298
  submitStaffAttendance?: Maybe<Array<Attendance>>;
15299
+ /** Inversed relation from Siapa yang mengawasi field of neu:personalia:progressAccess model. */
15300
+ superviseStaffProgressAccesses?: Maybe<Array<ProgressAccess>>;
15301
+ /** Inversed relation from Siapa yang diawasi field of neu:personalia:progressAccess model. */
15302
+ supervisedStaffProgressAccesses?: Maybe<Array<ProgressAccess>>;
15074
15303
  /** Inversed relation from Mensupervisi field of neu:personalia:task model. */
15075
15304
  supervisingAssignments?: Maybe<Array<Task>>;
15076
15305
  /** When this karyawan was last synced. */
@@ -15286,6 +15515,24 @@ export type StaffSubmitStaffAttendanceArgs = {
15286
15515
  search?: InputMaybe<Scalars['String']['input']>;
15287
15516
  sort?: InputMaybe<Scalars['Json']['input']>;
15288
15517
  };
15518
+ export type StaffSuperviseStaffProgressAccessesArgs = {
15519
+ filter?: InputMaybe<Scalars['Json']['input']>;
15520
+ ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
15521
+ limit?: InputMaybe<Scalars['Int']['input']>;
15522
+ minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
15523
+ page?: InputMaybe<Scalars['Int']['input']>;
15524
+ search?: InputMaybe<Scalars['String']['input']>;
15525
+ sort?: InputMaybe<Scalars['Json']['input']>;
15526
+ };
15527
+ export type StaffSupervisedStaffProgressAccessesArgs = {
15528
+ filter?: InputMaybe<Scalars['Json']['input']>;
15529
+ ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
15530
+ limit?: InputMaybe<Scalars['Int']['input']>;
15531
+ minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
15532
+ page?: InputMaybe<Scalars['Int']['input']>;
15533
+ search?: InputMaybe<Scalars['String']['input']>;
15534
+ sort?: InputMaybe<Scalars['Json']['input']>;
15535
+ };
15289
15536
  export type StaffSupervisingAssignmentsArgs = {
15290
15537
  filter?: InputMaybe<Scalars['Json']['input']>;
15291
15538
  ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
@@ -16610,7 +16857,7 @@ export type Submission = {
16610
16857
  creator?: Maybe<User>;
16611
16858
  /** Relation IDs of Siapa Memutuskan. */
16612
16859
  decideStaffIds?: Maybe<Array<Scalars['ObjectId']['output']>>;
16613
- /** Siapa yang memutuskan pengajuan. */
16860
+ /** Siapa yang memutuskan. */
16614
16861
  decideStaffs?: Maybe<Array<Staff>>;
16615
16862
  /** Relation IDs of Siapa Menunda. */
16616
16863
  delayStaffIds?: Maybe<Array<Scalars['ObjectId']['output']>>;
@@ -16630,7 +16877,7 @@ export type Submission = {
16630
16877
  flag?: Maybe<Scalars['String']['output']>;
16631
16878
  /** Relation IDs of Siapa Menindaklanjuti. */
16632
16879
  followUpStaffIds?: Maybe<Array<Scalars['ObjectId']['output']>>;
16633
- /** Siapa yang menindaklanjuti pengajuan. */
16880
+ /** Siapa harus tau setelah disposisi disetujui. */
16634
16881
  followUpStaffs?: Maybe<Array<Staff>>;
16635
16882
  /** Object ID. */
16636
16883
  id?: Maybe<Scalars['ID']['output']>;
@@ -16646,7 +16893,7 @@ export type Submission = {
16646
16893
  processedAt?: Maybe<Scalars['Date']['output']>;
16647
16894
  /** Relation IDs of Siapa Menaikkan. */
16648
16895
  raiseStaffIds?: Maybe<Array<Scalars['ObjectId']['output']>>;
16649
- /** Siapa yang menaikkan pengajuan. */
16896
+ /** Siapa Sekretariat, Keuangan atau bagian berkepentingan. */
16650
16897
  raiseStaffs?: Maybe<Array<Staff>>;
16651
16898
  /** Tanggal pengajuan dinaikkan. */
16652
16899
  raisedAt?: Maybe<Scalars['Date']['output']>;
@@ -16664,7 +16911,7 @@ export type Submission = {
16664
16911
  submissionProgresses?: Maybe<Array<Progress>>;
16665
16912
  /** Relation IDs of Siapa Mengajukan. */
16666
16913
  submissionStaffIds?: Maybe<Array<Scalars['ObjectId']['output']>>;
16667
- /** Siapa yang mengajukan pengajuan. */
16914
+ /** Siapa saja yang mengajukan. */
16668
16915
  submissionStaffs?: Maybe<Array<Staff>>;
16669
16916
  /** Relation IDs of Tipe. */
16670
16917
  submissionTypeIds?: Maybe<Array<Scalars['ObjectId']['output']>>;
@@ -16682,6 +16929,10 @@ export type Submission = {
16682
16929
  updatedBy?: Maybe<Scalars['ObjectId']['output']>;
16683
16930
  /** Who last updated this pengajuan. */
16684
16931
  updater?: Maybe<User>;
16932
+ /** Relation IDs of Siapa Menindaklanjuti. */
16933
+ virtualFollowUpStaffIds?: Maybe<Array<Scalars['ObjectId']['output']>>;
16934
+ /** Siapa harus tau setelah disposisi disetujui. */
16935
+ virtualFollowUpStaffs?: Maybe<Array<Staff>>;
16685
16936
  /** Jam kerja dari pengajuan. */
16686
16937
  workingHours?: Maybe<Scalars['Int']['output']>;
16687
16938
  };
@@ -16766,6 +17017,15 @@ export type SubmissionTypeArgs = {
16766
17017
  search?: InputMaybe<Scalars['String']['input']>;
16767
17018
  sort?: InputMaybe<Scalars['Json']['input']>;
16768
17019
  };
17020
+ export type SubmissionVirtualFollowUpStaffsArgs = {
17021
+ filter?: InputMaybe<Scalars['Json']['input']>;
17022
+ ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
17023
+ limit?: InputMaybe<Scalars['Int']['input']>;
17024
+ minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
17025
+ page?: InputMaybe<Scalars['Int']['input']>;
17026
+ search?: InputMaybe<Scalars['String']['input']>;
17027
+ sort?: InputMaybe<Scalars['Json']['input']>;
17028
+ };
16769
17029
  /** neu:personalia:submission collection response. */
16770
17030
  export type SubmissionCollectionResponse = {
16771
17031
  /** Response info. */
@@ -16834,6 +17094,8 @@ export type SubmissionInput = {
16834
17094
  updatedAt?: InputMaybe<Scalars['Date']['input']>;
16835
17095
  /** Relation ID of Updated By. */
16836
17096
  updatedBy?: InputMaybe<Scalars['ObjectId']['input']>;
17097
+ /** Relation IDs of Siapa Menindaklanjuti. */
17098
+ virtualFollowUpStaffIds?: InputMaybe<Array<Scalars['ID']['input']>>;
16837
17099
  /** Jam kerja dari pengajuan. */
16838
17100
  workingHours?: InputMaybe<Scalars['Int']['input']>;
16839
17101
  };
@@ -17191,6 +17453,12 @@ export type Subscription = {
17191
17453
  planTypeUpdated?: Maybe<PlanType>;
17192
17454
  /** One neu:personalia:plan item updated. */
17193
17455
  planUpdated?: Maybe<Plan>;
17456
+ /** One neu:personalia:progressAccess item created. */
17457
+ progressAccessCreated?: Maybe<ProgressAccess>;
17458
+ /** One neu:personalia:progressAccess item deleted. */
17459
+ progressAccessDeleted?: Maybe<ProgressAccess>;
17460
+ /** One neu:personalia:progressAccess item updated. */
17461
+ progressAccessUpdated?: Maybe<ProgressAccess>;
17194
17462
  /** One neu:personalia:progress item created. */
17195
17463
  progressCreated?: Maybe<Progress>;
17196
17464
  /** One neu:personalia:progress item deleted. */
@@ -18566,6 +18834,36 @@ export type SubscriptionPlanUpdatedArgs = {
18566
18834
  shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
18567
18835
  sort?: InputMaybe<Scalars['Json']['input']>;
18568
18836
  };
18837
+ export type SubscriptionProgressAccessCreatedArgs = {
18838
+ filter?: InputMaybe<Scalars['Json']['input']>;
18839
+ ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
18840
+ limit?: InputMaybe<Scalars['Int']['input']>;
18841
+ minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
18842
+ page?: InputMaybe<Scalars['Int']['input']>;
18843
+ search?: InputMaybe<Scalars['String']['input']>;
18844
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
18845
+ sort?: InputMaybe<Scalars['Json']['input']>;
18846
+ };
18847
+ export type SubscriptionProgressAccessDeletedArgs = {
18848
+ filter?: InputMaybe<Scalars['Json']['input']>;
18849
+ ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
18850
+ limit?: InputMaybe<Scalars['Int']['input']>;
18851
+ minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
18852
+ page?: InputMaybe<Scalars['Int']['input']>;
18853
+ search?: InputMaybe<Scalars['String']['input']>;
18854
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
18855
+ sort?: InputMaybe<Scalars['Json']['input']>;
18856
+ };
18857
+ export type SubscriptionProgressAccessUpdatedArgs = {
18858
+ filter?: InputMaybe<Scalars['Json']['input']>;
18859
+ ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
18860
+ limit?: InputMaybe<Scalars['Int']['input']>;
18861
+ minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
18862
+ page?: InputMaybe<Scalars['Int']['input']>;
18863
+ search?: InputMaybe<Scalars['String']['input']>;
18864
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
18865
+ sort?: InputMaybe<Scalars['Json']['input']>;
18866
+ };
18569
18867
  export type SubscriptionProgressCreatedArgs = {
18570
18868
  filter?: InputMaybe<Scalars['Json']['input']>;
18571
18869
  ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
@@ -1,10 +1,12 @@
1
- import { Ref } from 'vue';
1
+ import { ComputedRef, Ref } from 'vue';
2
2
  import { Schema } from '../../types';
3
3
  export interface Input {
4
4
  }
5
5
  export interface Context {
6
6
  isLoading: Ref<boolean>;
7
7
  staff: Ref<Schema.Staff | null>;
8
+ accesses: Ref<Schema.ProgressAccess[]>;
9
+ supervisedStaffIds: ComputedRef<string[]>;
8
10
  setStaff: (data: Schema.Staff) => void;
9
11
  getStaff: () => Promise<void>;
10
12
  init: () => Promise<void>;
@@ -1,6 +1,8 @@
1
1
  export declare function useOperasional(): {
2
2
  isLoading: import("vue").Ref<boolean>;
3
3
  staff: import("vue").Ref<import("../../gql/graphql").Staff | null>;
4
+ accesses: import("vue").Ref<import("../../gql/graphql").ProgressAccess[]>;
5
+ supervisedStaffIds: import("vue").ComputedRef<string[]>;
4
6
  setStaff: (data: import("../../gql/graphql").Staff) => void;
5
7
  getStaff: () => Promise<void>;
6
8
  init: () => Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neutron.co.id/operasional-interfaces",
3
- "version": "1.8.3",
3
+ "version": "1.8.5",
4
4
  "description": "Interface library of Neutron Operasional.",
5
5
  "sideEffects": [
6
6
  "*.css"
@@ -63,8 +63,8 @@
63
63
  "@neon.id/interfaces": "^1.5.0",
64
64
  "@neon.id/office": "^1.3.0",
65
65
  "@neon.id/utils": "^1.1.0",
66
- "@neutron.co.id/personalia-models": "^1.8.2",
67
- "@neutron.co.id/sentral-interfaces": "^1.4.0",
66
+ "@neutron.co.id/personalia-models": "^1.8.4",
67
+ "@neutron.co.id/sentral-interfaces": "^1.4.1-beta.1",
68
68
  "@nuxt/kit": "^3.5.3",
69
69
  "qr-scanner": "^1.4.2",
70
70
  "vue": "^3.3.4"
@@ -137,8 +137,8 @@
137
137
  "@neon.id/interfaces": "^1.5.0",
138
138
  "@neon.id/office": "^1.3.0",
139
139
  "@neon.id/utils": "^1.1.0",
140
- "@neutron.co.id/personalia-models": "^1.8.2",
141
- "@neutron.co.id/sentral-interfaces": "^1.4.0",
140
+ "@neutron.co.id/personalia-models": "^1.8.4",
141
+ "@neutron.co.id/sentral-interfaces": "^1.4.1-beta.1",
142
142
  "@nuxt/kit": "^3.5.3",
143
143
  "qr-scanner": "^1.4.2",
144
144
  "vue": "^3.3.4"
@@ -146,5 +146,5 @@
146
146
  "publishConfig": {
147
147
  "access": "public"
148
148
  },
149
- "build": 112
149
+ "build": 114
150
150
  }