@neutron.co.id/operasional-interfaces 1.8.2 → 1.8.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/build/index.cjs +894 -288
- package/build/index.mjs +895 -289
- package/build/style.css +42 -13
- package/build/types/components/index.d.ts +1 -0
- package/build/types/components/plan/plan.types.d.ts +1 -1
- package/build/types/components/progress/progress.types.d.ts +1 -1
- package/build/types/components/progress/sheets/ProgressNote.vue.d.ts +2 -0
- package/build/types/components/progress/sheets/index.d.ts +1 -0
- package/build/types/components/progressAccess/index.d.ts +2 -0
- package/build/types/components/progressAccess/progressAccess.types.d.ts +2 -0
- package/build/types/components/progressAccess/sheets/ProgressAccessCollection.vue.d.ts +2 -0
- package/build/types/components/progressAccess/sheets/ProgressAccessSingle.vue.d.ts +2 -0
- package/build/types/components/progressAccess/sheets/ProgressAccessSupervisor.vue.d.ts +2 -0
- package/build/types/components/progressAccess/sheets/index.d.ts +3 -0
- package/build/types/components/submission/submission.types.d.ts +1 -1
- package/build/types/components/target/target.types.d.ts +1 -1
- package/build/types/components/task/task.types.d.ts +1 -1
- package/build/types/gql/graphql.d.ts +308 -9
- package/build/types/providers/operasional/operasional.types.d.ts +3 -1
- package/build/types/providers/operasional/useOperasional.d.ts +2 -0
- package/package.json +4 -4
|
@@ -658,7 +658,7 @@ export type Attendance = {
|
|
|
658
658
|
restoredBy?: Maybe<Scalars['ObjectId']['output']>;
|
|
659
659
|
/** Who last restored this absensi. */
|
|
660
660
|
restorer?: Maybe<User>;
|
|
661
|
-
/**
|
|
661
|
+
/** Tanggal absensi. */
|
|
662
662
|
startedAt?: Maybe<Scalars['Date']['output']>;
|
|
663
663
|
/** Status dari absensi. */
|
|
664
664
|
status?: Maybe<Scalars['String']['output']>;
|
|
@@ -723,7 +723,7 @@ export type AttendanceInput = {
|
|
|
723
723
|
restoredAt?: InputMaybe<Scalars['Date']['input']>;
|
|
724
724
|
/** Relation ID of Restored By. */
|
|
725
725
|
restoredBy?: InputMaybe<Scalars['ObjectId']['input']>;
|
|
726
|
-
/**
|
|
726
|
+
/** Tanggal absensi. */
|
|
727
727
|
startedAt?: InputMaybe<Scalars['Date']['input']>;
|
|
728
728
|
/** Status dari absensi. */
|
|
729
729
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -5675,6 +5675,8 @@ export type Mutation = {
|
|
|
5675
5675
|
createOnePlanType?: Maybe<PlanTypeSingleResponse>;
|
|
5676
5676
|
/** Create single neu:personalia:progress item. */
|
|
5677
5677
|
createOneProgress?: Maybe<ProgressSingleResponse>;
|
|
5678
|
+
/** Create single neu:personalia:progressAccess item. */
|
|
5679
|
+
createOneProgressAccess?: Maybe<ProgressAccessSingleResponse>;
|
|
5678
5680
|
/** Create single neo:tempat:province item. */
|
|
5679
5681
|
createOneProvince?: Maybe<ProvinceSingleResponse>;
|
|
5680
5682
|
/** Create single neu:tempat:region item. */
|
|
@@ -5813,6 +5815,8 @@ export type Mutation = {
|
|
|
5813
5815
|
deleteOnePlanType?: Maybe<PlanTypeSingleResponse>;
|
|
5814
5816
|
/** Delete single neu:personalia:progress item. */
|
|
5815
5817
|
deleteOneProgress?: Maybe<ProgressSingleResponse>;
|
|
5818
|
+
/** Delete single neu:personalia:progressAccess item. */
|
|
5819
|
+
deleteOneProgressAccess?: Maybe<ProgressAccessSingleResponse>;
|
|
5816
5820
|
/** Delete single neo:tempat:province item. */
|
|
5817
5821
|
deleteOneProvince?: Maybe<ProvinceSingleResponse>;
|
|
5818
5822
|
/** Delete single neu:tempat:region item. */
|
|
@@ -5951,6 +5955,8 @@ export type Mutation = {
|
|
|
5951
5955
|
duplicateOnePlanType?: Maybe<PlanTypeSingleResponse>;
|
|
5952
5956
|
/** Duplicate single neu:personalia:progress item. */
|
|
5953
5957
|
duplicateOneProgress?: Maybe<ProgressSingleResponse>;
|
|
5958
|
+
/** Duplicate single neu:personalia:progressAccess item. */
|
|
5959
|
+
duplicateOneProgressAccess?: Maybe<ProgressAccessSingleResponse>;
|
|
5954
5960
|
/** Duplicate single neo:tempat:province item. */
|
|
5955
5961
|
duplicateOneProvince?: Maybe<ProvinceSingleResponse>;
|
|
5956
5962
|
/** Duplicate single neu:tempat:region item. */
|
|
@@ -6091,6 +6097,8 @@ export type Mutation = {
|
|
|
6091
6097
|
executePlanType?: Maybe<ExecuteResponse>;
|
|
6092
6098
|
/** Execute a custom action on neu:personalia:progress. */
|
|
6093
6099
|
executeProgress?: Maybe<ExecuteResponse>;
|
|
6100
|
+
/** Execute a custom action on neu:personalia:progressAccess. */
|
|
6101
|
+
executeProgressAccess?: Maybe<ExecuteResponse>;
|
|
6094
6102
|
/** Execute a custom action on neo:tempat:province. */
|
|
6095
6103
|
executeProvince?: Maybe<ExecuteResponse>;
|
|
6096
6104
|
/** Execute a custom action on neu:tempat:region. */
|
|
@@ -6230,6 +6238,8 @@ export type Mutation = {
|
|
|
6230
6238
|
restoreOnePlanType?: Maybe<PlanTypeSingleResponse>;
|
|
6231
6239
|
/** Restore single neu:personalia:progress item. */
|
|
6232
6240
|
restoreOneProgress?: Maybe<ProgressSingleResponse>;
|
|
6241
|
+
/** Restore single neu:personalia:progressAccess item. */
|
|
6242
|
+
restoreOneProgressAccess?: Maybe<ProgressAccessSingleResponse>;
|
|
6233
6243
|
/** Restore single neo:tempat:province item. */
|
|
6234
6244
|
restoreOneProvince?: Maybe<ProvinceSingleResponse>;
|
|
6235
6245
|
/** Restore single neu:tempat:region item. */
|
|
@@ -6366,6 +6376,8 @@ export type Mutation = {
|
|
|
6366
6376
|
syncManyPlanTypes?: Maybe<SyncManyResponse>;
|
|
6367
6377
|
/** Sync many neu:personalia:plan items. */
|
|
6368
6378
|
syncManyPlans?: Maybe<SyncManyResponse>;
|
|
6379
|
+
/** Sync many neu:personalia:progressAccess items. */
|
|
6380
|
+
syncManyProgressAccesses?: Maybe<SyncManyResponse>;
|
|
6369
6381
|
/** Sync many neu:personalia:progress items. */
|
|
6370
6382
|
syncManyProgresses?: Maybe<SyncManyResponse>;
|
|
6371
6383
|
/** Sync many neo:tempat:province items. */
|
|
@@ -6506,6 +6518,8 @@ export type Mutation = {
|
|
|
6506
6518
|
syncOnePlanType?: Maybe<PlanTypeSingleResponse>;
|
|
6507
6519
|
/** Sync single neu:personalia:progress item. */
|
|
6508
6520
|
syncOneProgress?: Maybe<ProgressSingleResponse>;
|
|
6521
|
+
/** Sync single neu:personalia:progressAccess item. */
|
|
6522
|
+
syncOneProgressAccess?: Maybe<ProgressAccessSingleResponse>;
|
|
6509
6523
|
/** Sync single neo:tempat:province item. */
|
|
6510
6524
|
syncOneProvince?: Maybe<ProvinceSingleResponse>;
|
|
6511
6525
|
/** Sync single neu:tempat:region item. */
|
|
@@ -6644,6 +6658,8 @@ export type Mutation = {
|
|
|
6644
6658
|
updateOnePlanType?: Maybe<PlanTypeSingleResponse>;
|
|
6645
6659
|
/** Update single neu:personalia:progress item. */
|
|
6646
6660
|
updateOneProgress?: Maybe<ProgressSingleResponse>;
|
|
6661
|
+
/** Update single neu:personalia:progressAccess item. */
|
|
6662
|
+
updateOneProgressAccess?: Maybe<ProgressAccessSingleResponse>;
|
|
6647
6663
|
/** Update single neo:tempat:province item. */
|
|
6648
6664
|
updateOneProvince?: Maybe<ProvinceSingleResponse>;
|
|
6649
6665
|
/** Update single neu:tempat:region item. */
|
|
@@ -6897,6 +6913,11 @@ export type MutationCreateOneProgressArgs = {
|
|
|
6897
6913
|
logs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6898
6914
|
shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6899
6915
|
};
|
|
6916
|
+
export type MutationCreateOneProgressAccessArgs = {
|
|
6917
|
+
data: ProgressAccessInput;
|
|
6918
|
+
logs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6919
|
+
shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6920
|
+
};
|
|
6900
6921
|
export type MutationCreateOneProvinceArgs = {
|
|
6901
6922
|
data: ProvinceInput;
|
|
6902
6923
|
logs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -7242,6 +7263,11 @@ export type MutationDeleteOneProgressArgs = {
|
|
|
7242
7263
|
logs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7243
7264
|
shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7244
7265
|
};
|
|
7266
|
+
export type MutationDeleteOneProgressAccessArgs = {
|
|
7267
|
+
id: Scalars['ObjectId']['input'];
|
|
7268
|
+
logs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7269
|
+
shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7270
|
+
};
|
|
7245
7271
|
export type MutationDeleteOneProvinceArgs = {
|
|
7246
7272
|
id: Scalars['ObjectId']['input'];
|
|
7247
7273
|
logs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -7587,6 +7613,11 @@ export type MutationDuplicateOneProgressArgs = {
|
|
|
7587
7613
|
logs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7588
7614
|
shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7589
7615
|
};
|
|
7616
|
+
export type MutationDuplicateOneProgressAccessArgs = {
|
|
7617
|
+
id: Scalars['ObjectId']['input'];
|
|
7618
|
+
logs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7619
|
+
shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7620
|
+
};
|
|
7590
7621
|
export type MutationDuplicateOneProvinceArgs = {
|
|
7591
7622
|
id: Scalars['ObjectId']['input'];
|
|
7592
7623
|
logs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -7975,6 +8006,12 @@ export type MutationExecuteProgressArgs = {
|
|
|
7975
8006
|
logs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7976
8007
|
shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7977
8008
|
};
|
|
8009
|
+
export type MutationExecuteProgressAccessArgs = {
|
|
8010
|
+
action?: InputMaybe<Scalars['String']['input']>;
|
|
8011
|
+
input?: InputMaybe<Scalars['Json']['input']>;
|
|
8012
|
+
logs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
8013
|
+
shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
8014
|
+
};
|
|
7978
8015
|
export type MutationExecuteProvinceArgs = {
|
|
7979
8016
|
action?: InputMaybe<Scalars['String']['input']>;
|
|
7980
8017
|
input?: InputMaybe<Scalars['Json']['input']>;
|
|
@@ -8351,6 +8388,11 @@ export type MutationRestoreOneProgressArgs = {
|
|
|
8351
8388
|
logs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
8352
8389
|
shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
8353
8390
|
};
|
|
8391
|
+
export type MutationRestoreOneProgressAccessArgs = {
|
|
8392
|
+
id: Scalars['ObjectId']['input'];
|
|
8393
|
+
logs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
8394
|
+
shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
8395
|
+
};
|
|
8354
8396
|
export type MutationRestoreOneProvinceArgs = {
|
|
8355
8397
|
id: Scalars['ObjectId']['input'];
|
|
8356
8398
|
logs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -8987,6 +9029,19 @@ export type MutationSyncManyPlansArgs = {
|
|
|
8987
9029
|
sort?: InputMaybe<Scalars['Json']['input']>;
|
|
8988
9030
|
useDry?: InputMaybe<Scalars['Boolean']['input']>;
|
|
8989
9031
|
};
|
|
9032
|
+
export type MutationSyncManyProgressAccessesArgs = {
|
|
9033
|
+
filter?: InputMaybe<Scalars['Json']['input']>;
|
|
9034
|
+
ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
|
|
9035
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
9036
|
+
logs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
9037
|
+
maxSyncedAt?: InputMaybe<Scalars['Date']['input']>;
|
|
9038
|
+
minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
|
|
9039
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
9040
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
9041
|
+
shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
9042
|
+
sort?: InputMaybe<Scalars['Json']['input']>;
|
|
9043
|
+
useDry?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9044
|
+
};
|
|
8990
9045
|
export type MutationSyncManyProgressesArgs = {
|
|
8991
9046
|
filter?: InputMaybe<Scalars['Json']['input']>;
|
|
8992
9047
|
ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
|
|
@@ -9593,6 +9648,11 @@ export type MutationSyncOneProgressArgs = {
|
|
|
9593
9648
|
logs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
9594
9649
|
shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
9595
9650
|
};
|
|
9651
|
+
export type MutationSyncOneProgressAccessArgs = {
|
|
9652
|
+
id: Scalars['ObjectId']['input'];
|
|
9653
|
+
logs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
9654
|
+
shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
9655
|
+
};
|
|
9596
9656
|
export type MutationSyncOneProvinceArgs = {
|
|
9597
9657
|
id: Scalars['ObjectId']['input'];
|
|
9598
9658
|
logs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -9976,6 +10036,12 @@ export type MutationUpdateOneProgressArgs = {
|
|
|
9976
10036
|
logs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
9977
10037
|
shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
9978
10038
|
};
|
|
10039
|
+
export type MutationUpdateOneProgressAccessArgs = {
|
|
10040
|
+
data: ProgressAccessInput;
|
|
10041
|
+
id: Scalars['ObjectId']['input'];
|
|
10042
|
+
logs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
10043
|
+
shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
10044
|
+
};
|
|
9979
10045
|
export type MutationUpdateOneProvinceArgs = {
|
|
9980
10046
|
data: ProvinceInput;
|
|
9981
10047
|
id: Scalars['ObjectId']['input'];
|
|
@@ -10830,6 +10896,10 @@ export type Pong = {
|
|
|
10830
10896
|
state?: Maybe<Scalars['String']['output']>;
|
|
10831
10897
|
};
|
|
10832
10898
|
export type Progress = {
|
|
10899
|
+
/** Relation IDs of Siapa Bisa Akses Catatan. */
|
|
10900
|
+
accessStaffIds?: Maybe<Array<Scalars['ObjectId']['output']>>;
|
|
10901
|
+
/** Siapa bisa akses catatan. */
|
|
10902
|
+
accessStaffs?: Maybe<Array<Staff>>;
|
|
10833
10903
|
/** When this progress was created. */
|
|
10834
10904
|
createdAt?: Maybe<Scalars['Date']['output']>;
|
|
10835
10905
|
/** Relation ID of Created By. */
|
|
@@ -10860,6 +10930,8 @@ export type Progress = {
|
|
|
10860
10930
|
planIds?: Maybe<Array<Scalars['ObjectId']['output']>>;
|
|
10861
10931
|
/** Rencana. */
|
|
10862
10932
|
plans?: Maybe<Array<Plan>>;
|
|
10933
|
+
/** Prioritas dari progress ini. */
|
|
10934
|
+
priority?: Maybe<Scalars['String']['output']>;
|
|
10863
10935
|
/** Tanggungjawab yang diprogress. */
|
|
10864
10936
|
responsibilities?: Maybe<Array<Responsibility>>;
|
|
10865
10937
|
/** Relation IDs of Tanggungjawab. */
|
|
@@ -10870,11 +10942,11 @@ export type Progress = {
|
|
|
10870
10942
|
restoredBy?: Maybe<Scalars['ObjectId']['output']>;
|
|
10871
10943
|
/** Who last restored this progress. */
|
|
10872
10944
|
restorer?: Maybe<User>;
|
|
10873
|
-
/** Relation
|
|
10874
|
-
staffIds?: Maybe<Scalars['ObjectId']['output']
|
|
10945
|
+
/** Relation IDs of Siapa. */
|
|
10946
|
+
staffIds?: Maybe<Array<Scalars['ObjectId']['output']>>;
|
|
10875
10947
|
/** Siapa yang mengerjakan. */
|
|
10876
|
-
staffs?: Maybe<Staff
|
|
10877
|
-
/**
|
|
10948
|
+
staffs?: Maybe<Array<Staff>>;
|
|
10949
|
+
/** Tanggal progress. */
|
|
10878
10950
|
startedAt?: Maybe<Scalars['Date']['output']>;
|
|
10879
10951
|
/** Relation IDs of Tindaklanjut. */
|
|
10880
10952
|
submissionIds?: Maybe<Array<Scalars['ObjectId']['output']>>;
|
|
@@ -10893,6 +10965,15 @@ export type Progress = {
|
|
|
10893
10965
|
/** Catatan virtual. */
|
|
10894
10966
|
virtualIsNotes?: Maybe<Scalars['String']['output']>;
|
|
10895
10967
|
};
|
|
10968
|
+
export type ProgressAccessStaffsArgs = {
|
|
10969
|
+
filter?: InputMaybe<Scalars['Json']['input']>;
|
|
10970
|
+
ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
|
|
10971
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
10972
|
+
minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
|
|
10973
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
10974
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
10975
|
+
sort?: InputMaybe<Scalars['Json']['input']>;
|
|
10976
|
+
};
|
|
10896
10977
|
export type ProgressPlansArgs = {
|
|
10897
10978
|
filter?: InputMaybe<Scalars['Json']['input']>;
|
|
10898
10979
|
ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
|
|
@@ -10911,6 +10992,15 @@ export type ProgressResponsibilitiesArgs = {
|
|
|
10911
10992
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
10912
10993
|
sort?: InputMaybe<Scalars['Json']['input']>;
|
|
10913
10994
|
};
|
|
10995
|
+
export type ProgressStaffsArgs = {
|
|
10996
|
+
filter?: InputMaybe<Scalars['Json']['input']>;
|
|
10997
|
+
ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
|
|
10998
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
10999
|
+
minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
|
|
11000
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
11001
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
11002
|
+
sort?: InputMaybe<Scalars['Json']['input']>;
|
|
11003
|
+
};
|
|
10914
11004
|
export type ProgressSubmissionsArgs = {
|
|
10915
11005
|
filter?: InputMaybe<Scalars['Json']['input']>;
|
|
10916
11006
|
ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
|
|
@@ -10920,6 +11010,107 @@ export type ProgressSubmissionsArgs = {
|
|
|
10920
11010
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
10921
11011
|
sort?: InputMaybe<Scalars['Json']['input']>;
|
|
10922
11012
|
};
|
|
11013
|
+
export type ProgressAccess = {
|
|
11014
|
+
/** When this akses progress was created. */
|
|
11015
|
+
createdAt?: Maybe<Scalars['Date']['output']>;
|
|
11016
|
+
/** Relation ID of Created By. */
|
|
11017
|
+
createdBy?: Maybe<Scalars['ObjectId']['output']>;
|
|
11018
|
+
/** Who created this akses progress. */
|
|
11019
|
+
creator?: Maybe<User>;
|
|
11020
|
+
/** When this akses progress was deleted. */
|
|
11021
|
+
deletedAt?: Maybe<Scalars['Date']['output']>;
|
|
11022
|
+
/** Relation ID of Deleted By. */
|
|
11023
|
+
deletedBy?: Maybe<Scalars['ObjectId']['output']>;
|
|
11024
|
+
/** Who deleted this akses progress. */
|
|
11025
|
+
deleter?: Maybe<User>;
|
|
11026
|
+
/** Akses Progress */
|
|
11027
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
11028
|
+
/** Akses Progress */
|
|
11029
|
+
flag?: Maybe<Scalars['String']['output']>;
|
|
11030
|
+
/** Object ID. */
|
|
11031
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
11032
|
+
/** Nama karyawan. */
|
|
11033
|
+
nameStaff?: Maybe<Scalars['String']['output']>;
|
|
11034
|
+
/** When this akses progress was restored. */
|
|
11035
|
+
restoredAt?: Maybe<Scalars['Date']['output']>;
|
|
11036
|
+
/** Relation ID of Restored By. */
|
|
11037
|
+
restoredBy?: Maybe<Scalars['ObjectId']['output']>;
|
|
11038
|
+
/** Who last restored this akses progress. */
|
|
11039
|
+
restorer?: Maybe<User>;
|
|
11040
|
+
/** Siapa yang mengawasi. */
|
|
11041
|
+
superviseStaff?: Maybe<Staff>;
|
|
11042
|
+
/** Relation ID of Siapa yang mengawasi. */
|
|
11043
|
+
superviseStaffId?: Maybe<Scalars['ObjectId']['output']>;
|
|
11044
|
+
/** Relation IDs of Siapa yang diawasi. */
|
|
11045
|
+
supervisedStaffIds?: Maybe<Array<Scalars['ObjectId']['output']>>;
|
|
11046
|
+
/** Siapa yang diawasi. */
|
|
11047
|
+
supervisedStaffs?: Maybe<Array<Staff>>;
|
|
11048
|
+
/** When this akses progress was last synced. */
|
|
11049
|
+
syncedAt?: Maybe<Scalars['Date']['output']>;
|
|
11050
|
+
/** Internal type of this akses progress. */
|
|
11051
|
+
type__?: Maybe<Scalars['String']['output']>;
|
|
11052
|
+
/** When this akses progress was last updated. */
|
|
11053
|
+
updatedAt?: Maybe<Scalars['Date']['output']>;
|
|
11054
|
+
/** Relation ID of Updated By. */
|
|
11055
|
+
updatedBy?: Maybe<Scalars['ObjectId']['output']>;
|
|
11056
|
+
/** Who last updated this akses progress. */
|
|
11057
|
+
updater?: Maybe<User>;
|
|
11058
|
+
};
|
|
11059
|
+
export type ProgressAccessSupervisedStaffsArgs = {
|
|
11060
|
+
filter?: InputMaybe<Scalars['Json']['input']>;
|
|
11061
|
+
ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
|
|
11062
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
11063
|
+
minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
|
|
11064
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
11065
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
11066
|
+
sort?: InputMaybe<Scalars['Json']['input']>;
|
|
11067
|
+
};
|
|
11068
|
+
/** neu:personalia:progressAccess collection response. */
|
|
11069
|
+
export type ProgressAccessCollectionResponse = {
|
|
11070
|
+
/** Response info. */
|
|
11071
|
+
info?: Maybe<Info>;
|
|
11072
|
+
/** Collection of neu:personalia:progressAccess items. */
|
|
11073
|
+
items?: Maybe<Array<ProgressAccess>>;
|
|
11074
|
+
};
|
|
11075
|
+
export type ProgressAccessInput = {
|
|
11076
|
+
/** When this akses progress was created. */
|
|
11077
|
+
createdAt?: InputMaybe<Scalars['Date']['input']>;
|
|
11078
|
+
/** Relation ID of Created By. */
|
|
11079
|
+
createdBy?: InputMaybe<Scalars['ObjectId']['input']>;
|
|
11080
|
+
/** When this akses progress was deleted. */
|
|
11081
|
+
deletedAt?: InputMaybe<Scalars['Date']['input']>;
|
|
11082
|
+
/** Relation ID of Deleted By. */
|
|
11083
|
+
deletedBy?: InputMaybe<Scalars['ObjectId']['input']>;
|
|
11084
|
+
/** Akses Progress */
|
|
11085
|
+
display?: InputMaybe<Scalars['String']['input']>;
|
|
11086
|
+
/** Akses Progress */
|
|
11087
|
+
flag?: InputMaybe<Scalars['String']['input']>;
|
|
11088
|
+
/** Nama karyawan. */
|
|
11089
|
+
nameStaff?: InputMaybe<Scalars['String']['input']>;
|
|
11090
|
+
/** When this akses progress was restored. */
|
|
11091
|
+
restoredAt?: InputMaybe<Scalars['Date']['input']>;
|
|
11092
|
+
/** Relation ID of Restored By. */
|
|
11093
|
+
restoredBy?: InputMaybe<Scalars['ObjectId']['input']>;
|
|
11094
|
+
/** Relation ID of Siapa yang mengawasi. */
|
|
11095
|
+
superviseStaffId?: InputMaybe<Scalars['ObjectId']['input']>;
|
|
11096
|
+
/** Relation IDs of Siapa yang diawasi. */
|
|
11097
|
+
supervisedStaffIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
11098
|
+
/** When this akses progress was last synced. */
|
|
11099
|
+
syncedAt?: InputMaybe<Scalars['Date']['input']>;
|
|
11100
|
+
/** Internal type of this akses progress. */
|
|
11101
|
+
type__?: InputMaybe<Scalars['String']['input']>;
|
|
11102
|
+
/** When this akses progress was last updated. */
|
|
11103
|
+
updatedAt?: InputMaybe<Scalars['Date']['input']>;
|
|
11104
|
+
/** Relation ID of Updated By. */
|
|
11105
|
+
updatedBy?: InputMaybe<Scalars['ObjectId']['input']>;
|
|
11106
|
+
};
|
|
11107
|
+
/** Single neu:personalia:progressAccess response. */
|
|
11108
|
+
export type ProgressAccessSingleResponse = {
|
|
11109
|
+
/** Response info. */
|
|
11110
|
+
info?: Maybe<Info>;
|
|
11111
|
+
/** Single neu:personalia:progressAccess item. */
|
|
11112
|
+
item?: Maybe<ProgressAccess>;
|
|
11113
|
+
};
|
|
10923
11114
|
/** neu:personalia:progress collection response. */
|
|
10924
11115
|
export type ProgressCollectionResponse = {
|
|
10925
11116
|
/** Response info. */
|
|
@@ -10928,6 +11119,8 @@ export type ProgressCollectionResponse = {
|
|
|
10928
11119
|
items?: Maybe<Array<Progress>>;
|
|
10929
11120
|
};
|
|
10930
11121
|
export type ProgressInput = {
|
|
11122
|
+
/** Relation IDs of Siapa Bisa Akses Catatan. */
|
|
11123
|
+
accessStaffIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
10931
11124
|
/** When this progress was created. */
|
|
10932
11125
|
createdAt?: InputMaybe<Scalars['Date']['input']>;
|
|
10933
11126
|
/** Relation ID of Created By. */
|
|
@@ -10950,15 +11143,17 @@ export type ProgressInput = {
|
|
|
10950
11143
|
nameStaff?: InputMaybe<Scalars['String']['input']>;
|
|
10951
11144
|
/** Relation IDs of Rencana. */
|
|
10952
11145
|
planIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
11146
|
+
/** Prioritas dari progress ini. */
|
|
11147
|
+
priority?: InputMaybe<Scalars['String']['input']>;
|
|
10953
11148
|
/** Relation IDs of Tanggungjawab. */
|
|
10954
11149
|
responsibilityIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
10955
11150
|
/** When this progress was restored. */
|
|
10956
11151
|
restoredAt?: InputMaybe<Scalars['Date']['input']>;
|
|
10957
11152
|
/** Relation ID of Restored By. */
|
|
10958
11153
|
restoredBy?: InputMaybe<Scalars['ObjectId']['input']>;
|
|
10959
|
-
/** Relation
|
|
10960
|
-
staffIds?: InputMaybe<Scalars['
|
|
10961
|
-
/**
|
|
11154
|
+
/** Relation IDs of Siapa. */
|
|
11155
|
+
staffIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
11156
|
+
/** Tanggal progress. */
|
|
10962
11157
|
startedAt?: InputMaybe<Scalars['Date']['input']>;
|
|
10963
11158
|
/** Relation IDs of Tindaklanjut. */
|
|
10964
11159
|
submissionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -11244,6 +11439,8 @@ export type Query = {
|
|
|
11244
11439
|
countPlanTypes?: Maybe<CountResponse>;
|
|
11245
11440
|
/** Count neu:personalia:plan items. */
|
|
11246
11441
|
countPlans?: Maybe<CountResponse>;
|
|
11442
|
+
/** Count neu:personalia:progressAccess items. */
|
|
11443
|
+
countProgressAccesses?: Maybe<CountResponse>;
|
|
11247
11444
|
/** Count neu:personalia:progress items. */
|
|
11248
11445
|
countProgresses?: Maybe<CountResponse>;
|
|
11249
11446
|
/** Count neo:tempat:province items. */
|
|
@@ -11346,6 +11543,8 @@ export type Query = {
|
|
|
11346
11543
|
planTypes?: Maybe<PlanTypeCollectionResponse>;
|
|
11347
11544
|
plans?: Maybe<PlanCollectionResponse>;
|
|
11348
11545
|
progress?: Maybe<ProgressSingleResponse>;
|
|
11546
|
+
progressAccess?: Maybe<ProgressAccessSingleResponse>;
|
|
11547
|
+
progressAccesses?: Maybe<ProgressAccessCollectionResponse>;
|
|
11349
11548
|
progresses?: Maybe<ProgressCollectionResponse>;
|
|
11350
11549
|
province?: Maybe<ProvinceSingleResponse>;
|
|
11351
11550
|
provinces?: Maybe<ProvinceCollectionResponse>;
|
|
@@ -12163,6 +12362,17 @@ export type QueryCountPlansArgs = {
|
|
|
12163
12362
|
shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
12164
12363
|
sort?: InputMaybe<Scalars['Json']['input']>;
|
|
12165
12364
|
};
|
|
12365
|
+
export type QueryCountProgressAccessesArgs = {
|
|
12366
|
+
filter?: InputMaybe<Scalars['Json']['input']>;
|
|
12367
|
+
ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
|
|
12368
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
12369
|
+
logs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
12370
|
+
minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
|
|
12371
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
12372
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
12373
|
+
shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
12374
|
+
sort?: InputMaybe<Scalars['Json']['input']>;
|
|
12375
|
+
};
|
|
12166
12376
|
export type QueryCountProgressesArgs = {
|
|
12167
12377
|
filter?: InputMaybe<Scalars['Json']['input']>;
|
|
12168
12378
|
ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
|
|
@@ -12808,6 +13018,22 @@ export type QueryProgressArgs = {
|
|
|
12808
13018
|
logs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
12809
13019
|
shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
12810
13020
|
};
|
|
13021
|
+
export type QueryProgressAccessArgs = {
|
|
13022
|
+
id: Scalars['ObjectId']['input'];
|
|
13023
|
+
logs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
13024
|
+
shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
13025
|
+
};
|
|
13026
|
+
export type QueryProgressAccessesArgs = {
|
|
13027
|
+
filter?: InputMaybe<Scalars['Json']['input']>;
|
|
13028
|
+
ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
|
|
13029
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
13030
|
+
logs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
13031
|
+
minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
|
|
13032
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
13033
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
13034
|
+
shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
13035
|
+
sort?: InputMaybe<Scalars['Json']['input']>;
|
|
13036
|
+
};
|
|
12811
13037
|
export type QueryProgressesArgs = {
|
|
12812
13038
|
filter?: InputMaybe<Scalars['Json']['input']>;
|
|
12813
13039
|
ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
|
|
@@ -14957,6 +15183,8 @@ export type SortItem = {
|
|
|
14957
15183
|
handle: Scalars['String']['input'];
|
|
14958
15184
|
};
|
|
14959
15185
|
export type Staff = {
|
|
15186
|
+
/** Inversed relation from Siapa Bisa Akses Catatan field of neu:personalia:progress model. */
|
|
15187
|
+
accessStaffProgresses?: Maybe<Array<Progress>>;
|
|
14960
15188
|
/** Inversed relation from Siapa Menyetujui field of neu:personalia:submission model. */
|
|
14961
15189
|
agreedStaffSubmissions?: Maybe<Array<Submission>>;
|
|
14962
15190
|
/** Tanggal lahir karyawan. */
|
|
@@ -15041,6 +15269,10 @@ export type Staff = {
|
|
|
15041
15269
|
submissionStaffSubmissions?: Maybe<Array<Submission>>;
|
|
15042
15270
|
/** Inversed relation from Siapa Mengajukan field of neu:personalia:attendance model. */
|
|
15043
15271
|
submitStaffAttendance?: Maybe<Array<Attendance>>;
|
|
15272
|
+
/** Inversed relation from Siapa yang mengawasi field of neu:personalia:progressAccess model. */
|
|
15273
|
+
superviseStaffProgressAccesses?: Maybe<Array<ProgressAccess>>;
|
|
15274
|
+
/** Inversed relation from Siapa yang diawasi field of neu:personalia:progressAccess model. */
|
|
15275
|
+
supervisedStaffProgressAccesses?: Maybe<Array<ProgressAccess>>;
|
|
15044
15276
|
/** Inversed relation from Mensupervisi field of neu:personalia:task model. */
|
|
15045
15277
|
supervisingAssignments?: Maybe<Array<Task>>;
|
|
15046
15278
|
/** When this karyawan was last synced. */
|
|
@@ -15058,6 +15290,15 @@ export type Staff = {
|
|
|
15058
15290
|
/** Relation ID of Pengguna. */
|
|
15059
15291
|
userId?: Maybe<Scalars['ObjectId']['output']>;
|
|
15060
15292
|
};
|
|
15293
|
+
export type StaffAccessStaffProgressesArgs = {
|
|
15294
|
+
filter?: InputMaybe<Scalars['Json']['input']>;
|
|
15295
|
+
ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
|
|
15296
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
15297
|
+
minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
|
|
15298
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
15299
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
15300
|
+
sort?: InputMaybe<Scalars['Json']['input']>;
|
|
15301
|
+
};
|
|
15061
15302
|
export type StaffAgreedStaffSubmissionsArgs = {
|
|
15062
15303
|
filter?: InputMaybe<Scalars['Json']['input']>;
|
|
15063
15304
|
ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
|
|
@@ -15247,6 +15488,24 @@ export type StaffSubmitStaffAttendanceArgs = {
|
|
|
15247
15488
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
15248
15489
|
sort?: InputMaybe<Scalars['Json']['input']>;
|
|
15249
15490
|
};
|
|
15491
|
+
export type StaffSuperviseStaffProgressAccessesArgs = {
|
|
15492
|
+
filter?: InputMaybe<Scalars['Json']['input']>;
|
|
15493
|
+
ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
|
|
15494
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
15495
|
+
minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
|
|
15496
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
15497
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
15498
|
+
sort?: InputMaybe<Scalars['Json']['input']>;
|
|
15499
|
+
};
|
|
15500
|
+
export type StaffSupervisedStaffProgressAccessesArgs = {
|
|
15501
|
+
filter?: InputMaybe<Scalars['Json']['input']>;
|
|
15502
|
+
ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
|
|
15503
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
15504
|
+
minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
|
|
15505
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
15506
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
15507
|
+
sort?: InputMaybe<Scalars['Json']['input']>;
|
|
15508
|
+
};
|
|
15250
15509
|
export type StaffSupervisingAssignmentsArgs = {
|
|
15251
15510
|
filter?: InputMaybe<Scalars['Json']['input']>;
|
|
15252
15511
|
ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
|
|
@@ -16643,6 +16902,8 @@ export type Submission = {
|
|
|
16643
16902
|
updatedBy?: Maybe<Scalars['ObjectId']['output']>;
|
|
16644
16903
|
/** Who last updated this pengajuan. */
|
|
16645
16904
|
updater?: Maybe<User>;
|
|
16905
|
+
/** Jam kerja dari pengajuan. */
|
|
16906
|
+
workingHours?: Maybe<Scalars['Int']['output']>;
|
|
16646
16907
|
};
|
|
16647
16908
|
export type SubmissionAgreedStaffsArgs = {
|
|
16648
16909
|
filter?: InputMaybe<Scalars['Json']['input']>;
|
|
@@ -16793,6 +17054,8 @@ export type SubmissionInput = {
|
|
|
16793
17054
|
updatedAt?: InputMaybe<Scalars['Date']['input']>;
|
|
16794
17055
|
/** Relation ID of Updated By. */
|
|
16795
17056
|
updatedBy?: InputMaybe<Scalars['ObjectId']['input']>;
|
|
17057
|
+
/** Jam kerja dari pengajuan. */
|
|
17058
|
+
workingHours?: InputMaybe<Scalars['Int']['input']>;
|
|
16796
17059
|
};
|
|
16797
17060
|
/** Single neu:personalia:submission response. */
|
|
16798
17061
|
export type SubmissionSingleResponse = {
|
|
@@ -17148,6 +17411,12 @@ export type Subscription = {
|
|
|
17148
17411
|
planTypeUpdated?: Maybe<PlanType>;
|
|
17149
17412
|
/** One neu:personalia:plan item updated. */
|
|
17150
17413
|
planUpdated?: Maybe<Plan>;
|
|
17414
|
+
/** One neu:personalia:progressAccess item created. */
|
|
17415
|
+
progressAccessCreated?: Maybe<ProgressAccess>;
|
|
17416
|
+
/** One neu:personalia:progressAccess item deleted. */
|
|
17417
|
+
progressAccessDeleted?: Maybe<ProgressAccess>;
|
|
17418
|
+
/** One neu:personalia:progressAccess item updated. */
|
|
17419
|
+
progressAccessUpdated?: Maybe<ProgressAccess>;
|
|
17151
17420
|
/** One neu:personalia:progress item created. */
|
|
17152
17421
|
progressCreated?: Maybe<Progress>;
|
|
17153
17422
|
/** One neu:personalia:progress item deleted. */
|
|
@@ -18523,6 +18792,36 @@ export type SubscriptionPlanUpdatedArgs = {
|
|
|
18523
18792
|
shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
18524
18793
|
sort?: InputMaybe<Scalars['Json']['input']>;
|
|
18525
18794
|
};
|
|
18795
|
+
export type SubscriptionProgressAccessCreatedArgs = {
|
|
18796
|
+
filter?: InputMaybe<Scalars['Json']['input']>;
|
|
18797
|
+
ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
|
|
18798
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
18799
|
+
minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
|
|
18800
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
18801
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
18802
|
+
shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
18803
|
+
sort?: InputMaybe<Scalars['Json']['input']>;
|
|
18804
|
+
};
|
|
18805
|
+
export type SubscriptionProgressAccessDeletedArgs = {
|
|
18806
|
+
filter?: InputMaybe<Scalars['Json']['input']>;
|
|
18807
|
+
ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
|
|
18808
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
18809
|
+
minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
|
|
18810
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
18811
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
18812
|
+
shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
18813
|
+
sort?: InputMaybe<Scalars['Json']['input']>;
|
|
18814
|
+
};
|
|
18815
|
+
export type SubscriptionProgressAccessUpdatedArgs = {
|
|
18816
|
+
filter?: InputMaybe<Scalars['Json']['input']>;
|
|
18817
|
+
ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
|
|
18818
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
18819
|
+
minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
|
|
18820
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
18821
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
18822
|
+
shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
18823
|
+
sort?: InputMaybe<Scalars['Json']['input']>;
|
|
18824
|
+
};
|
|
18526
18825
|
export type SubscriptionProgressCreatedArgs = {
|
|
18527
18826
|
filter?: InputMaybe<Scalars['Json']['input']>;
|
|
18528
18827
|
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
|
+
"version": "1.8.4",
|
|
4
4
|
"description": "Interface library of Neutron Operasional.",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"*.css"
|
|
@@ -63,7 +63,7 @@
|
|
|
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.
|
|
66
|
+
"@neutron.co.id/personalia-models": "^1.8.3",
|
|
67
67
|
"@neutron.co.id/sentral-interfaces": "^1.4.0",
|
|
68
68
|
"@nuxt/kit": "^3.5.3",
|
|
69
69
|
"qr-scanner": "^1.4.2",
|
|
@@ -137,7 +137,7 @@
|
|
|
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.
|
|
140
|
+
"@neutron.co.id/personalia-models": "^1.8.3",
|
|
141
141
|
"@neutron.co.id/sentral-interfaces": "^1.4.0",
|
|
142
142
|
"@nuxt/kit": "^3.5.3",
|
|
143
143
|
"qr-scanner": "^1.4.2",
|
|
@@ -146,5 +146,5 @@
|
|
|
146
146
|
"publishConfig": {
|
|
147
147
|
"access": "public"
|
|
148
148
|
},
|
|
149
|
-
"build":
|
|
149
|
+
"build": 113
|
|
150
150
|
}
|