@neutron.co.id/operasional-interfaces 1.7.1 → 1.8.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.
@@ -22,7 +22,7 @@ export type Incremental<T> = T | {
22
22
  /** All built-in and custom scalars, mapped to their actual values */
23
23
  export type Scalars = {
24
24
  ID: {
25
- input: string | number;
25
+ input: string;
26
26
  output: string;
27
27
  };
28
28
  String: {
@@ -613,6 +613,142 @@ export type AreaSingleResponse = {
613
613
  /** Single neu:tempat:area item. */
614
614
  item?: Maybe<Area>;
615
615
  };
616
+ export type Attendance = {
617
+ /** Tanggal absensi. */
618
+ attendanceAt?: Maybe<Scalars['Date']['output']>;
619
+ /** Jam Datang kerja. */
620
+ comeAt?: Maybe<Scalars['Date']['output']>;
621
+ /** When this absensi was created. */
622
+ createdAt?: Maybe<Scalars['Date']['output']>;
623
+ /** Relation ID of Created By. */
624
+ createdBy?: Maybe<Scalars['ObjectId']['output']>;
625
+ /** Who created this absensi. */
626
+ creator?: Maybe<User>;
627
+ /** Siapa yang memutuskan absensi. */
628
+ decideStaff?: Maybe<Staff>;
629
+ /** Relation ID of Siapa Memutuskan. */
630
+ decideStaffId?: Maybe<Scalars['ObjectId']['output']>;
631
+ /** When this absensi was deleted. */
632
+ deletedAt?: Maybe<Scalars['Date']['output']>;
633
+ /** Relation ID of Deleted By. */
634
+ deletedBy?: Maybe<Scalars['ObjectId']['output']>;
635
+ /** Who deleted this absensi. */
636
+ deleter?: Maybe<User>;
637
+ /** Absensi */
638
+ display?: Maybe<Scalars['String']['output']>;
639
+ /** Jam pulang lebih awal. */
640
+ earlyAt?: Maybe<Scalars['Date']['output']>;
641
+ /** Jam selesai. */
642
+ endedAt?: Maybe<Scalars['Date']['output']>;
643
+ /** Absensi */
644
+ flag?: Maybe<Scalars['String']['output']>;
645
+ /** Jam pulang kerja. */
646
+ homeAt?: Maybe<Scalars['Date']['output']>;
647
+ /** Object ID. */
648
+ id?: Maybe<Scalars['ID']['output']>;
649
+ /** Jam datang terlambat. */
650
+ lateAt?: Maybe<Scalars['Date']['output']>;
651
+ /** Nama karyawan. */
652
+ nameStaff?: Maybe<Scalars['String']['output']>;
653
+ /** Catatan dari absensi. */
654
+ notes?: Maybe<Scalars['String']['output']>;
655
+ /** When this absensi was restored. */
656
+ restoredAt?: Maybe<Scalars['Date']['output']>;
657
+ /** Relation ID of Restored By. */
658
+ restoredBy?: Maybe<Scalars['ObjectId']['output']>;
659
+ /** Who last restored this absensi. */
660
+ restorer?: Maybe<User>;
661
+ /** Jam mulai. */
662
+ startedAt?: Maybe<Scalars['Date']['output']>;
663
+ /** Status dari absensi. */
664
+ status?: Maybe<Scalars['String']['output']>;
665
+ /** Siapa yang mengajukan absensi. */
666
+ submitStaff?: Maybe<Staff>;
667
+ /** Relation ID of Siapa Mengajukan. */
668
+ submitStaffId?: Maybe<Scalars['ObjectId']['output']>;
669
+ /** Tanggal absensi diajukan. */
670
+ submittedAt?: Maybe<Scalars['Date']['output']>;
671
+ /** When this absensi was last synced. */
672
+ syncedAt?: Maybe<Scalars['Date']['output']>;
673
+ /** Tipe Absensi. */
674
+ type?: Maybe<Scalars['String']['output']>;
675
+ /** Internal type of this absensi. */
676
+ type__?: Maybe<Scalars['String']['output']>;
677
+ /** When this absensi was last updated. */
678
+ updatedAt?: Maybe<Scalars['Date']['output']>;
679
+ /** Relation ID of Updated By. */
680
+ updatedBy?: Maybe<Scalars['ObjectId']['output']>;
681
+ /** Who last updated this absensi. */
682
+ updater?: Maybe<User>;
683
+ };
684
+ /** neu:personalia:attendance collection response. */
685
+ export type AttendanceCollectionResponse = {
686
+ /** Response info. */
687
+ info?: Maybe<Info>;
688
+ /** Collection of neu:personalia:attendance items. */
689
+ items?: Maybe<Array<Attendance>>;
690
+ };
691
+ export type AttendanceInput = {
692
+ /** Tanggal absensi. */
693
+ attendanceAt?: InputMaybe<Scalars['Date']['input']>;
694
+ /** Jam Datang kerja. */
695
+ comeAt?: InputMaybe<Scalars['Date']['input']>;
696
+ /** When this absensi was created. */
697
+ createdAt?: InputMaybe<Scalars['Date']['input']>;
698
+ /** Relation ID of Created By. */
699
+ createdBy?: InputMaybe<Scalars['ObjectId']['input']>;
700
+ /** Relation ID of Siapa Memutuskan. */
701
+ decideStaffId?: InputMaybe<Scalars['ObjectId']['input']>;
702
+ /** When this absensi was deleted. */
703
+ deletedAt?: InputMaybe<Scalars['Date']['input']>;
704
+ /** Relation ID of Deleted By. */
705
+ deletedBy?: InputMaybe<Scalars['ObjectId']['input']>;
706
+ /** Absensi */
707
+ display?: InputMaybe<Scalars['String']['input']>;
708
+ /** Jam pulang lebih awal. */
709
+ earlyAt?: InputMaybe<Scalars['Date']['input']>;
710
+ /** Jam selesai. */
711
+ endedAt?: InputMaybe<Scalars['Date']['input']>;
712
+ /** Absensi */
713
+ flag?: InputMaybe<Scalars['String']['input']>;
714
+ /** Jam pulang kerja. */
715
+ homeAt?: InputMaybe<Scalars['Date']['input']>;
716
+ /** Jam datang terlambat. */
717
+ lateAt?: InputMaybe<Scalars['Date']['input']>;
718
+ /** Nama karyawan. */
719
+ nameStaff?: InputMaybe<Scalars['String']['input']>;
720
+ /** Catatan dari absensi. */
721
+ notes?: InputMaybe<Scalars['String']['input']>;
722
+ /** When this absensi was restored. */
723
+ restoredAt?: InputMaybe<Scalars['Date']['input']>;
724
+ /** Relation ID of Restored By. */
725
+ restoredBy?: InputMaybe<Scalars['ObjectId']['input']>;
726
+ /** Jam mulai. */
727
+ startedAt?: InputMaybe<Scalars['Date']['input']>;
728
+ /** Status dari absensi. */
729
+ status?: InputMaybe<Scalars['String']['input']>;
730
+ /** Relation ID of Siapa Mengajukan. */
731
+ submitStaffId?: InputMaybe<Scalars['ObjectId']['input']>;
732
+ /** Tanggal absensi diajukan. */
733
+ submittedAt?: InputMaybe<Scalars['Date']['input']>;
734
+ /** When this absensi was last synced. */
735
+ syncedAt?: InputMaybe<Scalars['Date']['input']>;
736
+ /** Tipe Absensi. */
737
+ type?: InputMaybe<Scalars['String']['input']>;
738
+ /** Internal type of this absensi. */
739
+ type__?: InputMaybe<Scalars['String']['input']>;
740
+ /** When this absensi was last updated. */
741
+ updatedAt?: InputMaybe<Scalars['Date']['input']>;
742
+ /** Relation ID of Updated By. */
743
+ updatedBy?: InputMaybe<Scalars['ObjectId']['input']>;
744
+ };
745
+ /** Single neu:personalia:attendance response. */
746
+ export type AttendanceSingleResponse = {
747
+ /** Response info. */
748
+ info?: Maybe<Info>;
749
+ /** Single neu:personalia:attendance item. */
750
+ item?: Maybe<Attendance>;
751
+ };
616
752
  export type Branch = {
617
753
  /** Wilayah cabang. */
618
754
  area?: Maybe<Area>;
@@ -676,7 +812,7 @@ export type Branch = {
676
812
  flag?: Maybe<Scalars['String']['output']>;
677
813
  /** Inversed relation from Cabang Siswa field of neu:penilaian:gradingInsert model. */
678
814
  gradingInsertStudents?: Maybe<Array<GradingInsert>>;
679
- /** Inversed relation from Cabang Rasionalisasi field of neu:penilaian:gradingInsert model. */
815
+ /** Inversed relation from Cabang field of neu:penilaian:gradingInsert model. */
680
816
  gradingInserts?: Maybe<Array<GradingInsert>>;
681
817
  /** Inversed relation from Cabang Siswa field of neu:penilaian:gradingRasionalization model. */
682
818
  gradingRasionalizations?: Maybe<Array<GradingRasionalization>>;
@@ -2836,6 +2972,8 @@ export type DisciplineBranch = {
2836
2972
  subject?: Maybe<Subject>;
2837
2973
  /** Relation ID of Subject. */
2838
2974
  subjectId?: Maybe<Scalars['ObjectId']['output']>;
2975
+ /** Summary of this branch. */
2976
+ summary?: Maybe<Scalars['String']['output']>;
2839
2977
  /** When this discipline branch was last synced. */
2840
2978
  syncedAt?: Maybe<Scalars['Date']['output']>;
2841
2979
  /** Internal type of this discipline branch. */
@@ -2901,6 +3039,8 @@ export type DisciplineBranchInput = {
2901
3039
  studentCharacter?: InputMaybe<Scalars['String']['input']>;
2902
3040
  /** Relation ID of Subject. */
2903
3041
  subjectId?: InputMaybe<Scalars['ObjectId']['input']>;
3042
+ /** Summary of this branch. */
3043
+ summary?: InputMaybe<Scalars['String']['input']>;
2904
3044
  /** When this discipline branch was last synced. */
2905
3045
  syncedAt?: InputMaybe<Scalars['Date']['input']>;
2906
3046
  /** Internal type of this discipline branch. */
@@ -3150,6 +3290,8 @@ export type GradingComparator = {
3150
3290
  province?: Maybe<Province>;
3151
3291
  /** Relation ID of Provinsi. */
3152
3292
  provinceId?: Maybe<Scalars['ObjectId']['output']>;
3293
+ /** Indeks sekolah dalam persen (%). */
3294
+ rank?: Maybe<Scalars['Float']['output']>;
3153
3295
  /** When this komparator penilaian was restored. */
3154
3296
  restoredAt?: Maybe<Scalars['Date']['output']>;
3155
3297
  /** Relation ID of Restored By. */
@@ -3312,6 +3454,8 @@ export type GradingComparatorInput = {
3312
3454
  overrideComparison?: InputMaybe<Scalars['Any']['input']>;
3313
3455
  /** Relation ID of Provinsi. */
3314
3456
  provinceId?: InputMaybe<Scalars['ObjectId']['input']>;
3457
+ /** Indeks sekolah dalam persen (%). */
3458
+ rank?: InputMaybe<Scalars['Float']['input']>;
3315
3459
  /** When this komparator penilaian was restored. */
3316
3460
  restoredAt?: InputMaybe<Scalars['Date']['input']>;
3317
3461
  /** Relation ID of Restored By. */
@@ -3820,14 +3964,16 @@ export type GradingInsert = {
3820
3964
  allFillPercentage?: Maybe<Scalars['Float']['output']>;
3821
3965
  /** Scores */
3822
3966
  allScores?: Maybe<Scalars['Json']['output']>;
3823
- /** Cabang dimana nilai didaftarkan. */
3967
+ /** Cabang yang akan mencetak rasionalisasi. */
3824
3968
  branch?: Maybe<Branch>;
3825
- /** Relation ID of Cabang Rasionalisasi. */
3969
+ /** Relation ID of Cabang. */
3826
3970
  branchId?: Maybe<Scalars['ObjectId']['output']>;
3827
3971
  /** Temporary. */
3828
3972
  cached?: Maybe<Scalars['Json']['output']>;
3829
3973
  /** Status kalkulasi. */
3830
3974
  calculationStatus?: Maybe<Scalars['String']['output']>;
3975
+ /** CERF */
3976
+ cerf?: Maybe<Scalars['String']['output']>;
3831
3977
  /** Universitas pilihan pertama. */
3832
3978
  choosenSchoolOne?: Maybe<GradingComparator>;
3833
3979
  /** Relation ID of Universitas Pilihan Pertama. */
@@ -3880,6 +4026,8 @@ export type GradingInsert = {
3880
4026
  gradingTypeId?: Maybe<Scalars['ObjectId']['output']>;
3881
4027
  /** Object ID. */
3882
4028
  id?: Maybe<Scalars['ID']['output']>;
4029
+ /** IELTS */
4030
+ ielts?: Maybe<Scalars['Int']['output']>;
3883
4031
  /** Catatan penilaian. */
3884
4032
  note?: Maybe<Scalars['String']['output']>;
3885
4033
  /** Universitas pilihan lainnya. */
@@ -3912,6 +4060,8 @@ export type GradingInsert = {
3912
4060
  smt1Agama?: Maybe<Scalars['Float']['output']>;
3913
4061
  /** Antropologi */
3914
4062
  smt1Antro?: Maybe<Scalars['Float']['output']>;
4063
+ /** Bahasa Arab */
4064
+ smt1Arab?: Maybe<Scalars['Float']['output']>;
3915
4065
  /** Bahasa Asing */
3916
4066
  smt1Asing?: Maybe<Scalars['Float']['output']>;
3917
4067
  /** Biologi */
@@ -3930,26 +4080,42 @@ export type GradingInsert = {
3930
4080
  smt1Infor?: Maybe<Scalars['Float']['output']>;
3931
4081
  /** Pendidikan Jasmani */
3932
4082
  smt1Jas?: Maybe<Scalars['Float']['output']>;
4083
+ /** Bahasa Jepang */
4084
+ smt1Jepang?: Maybe<Scalars['Float']['output']>;
4085
+ /** Bahasa Jerman */
4086
+ smt1Jerman?: Maybe<Scalars['Float']['output']>;
3933
4087
  /** Kimia */
3934
4088
  smt1Kim?: Maybe<Scalars['Float']['output']>;
4089
+ /** Bahasa Korea */
4090
+ smt1Korea?: Maybe<Scalars['Float']['output']>;
4091
+ /** Bahasa Mandarin */
4092
+ smt1Mandarin?: Maybe<Scalars['Float']['output']>;
3935
4093
  /** Matematika */
3936
4094
  smt1Math?: Maybe<Scalars['Float']['output']>;
3937
4095
  /** Matematika Lanjut */
3938
4096
  smt1MathAdd?: Maybe<Scalars['Float']['output']>;
3939
4097
  /** Pendidikan Pancasila */
3940
4098
  smt1Panca?: Maybe<Scalars['Float']['output']>;
4099
+ /** Bahasa Perancis */
4100
+ smt1Perancis?: Maybe<Scalars['Float']['output']>;
3941
4101
  /** Sejarah */
3942
4102
  smt1Sej?: Maybe<Scalars['Float']['output']>;
3943
4103
  /** Seni Budaya */
3944
4104
  smt1Seni?: Maybe<Scalars['Float']['output']>;
3945
4105
  /** Sosiologi */
3946
4106
  smt1Sosio?: Maybe<Scalars['Float']['output']>;
4107
+ /** Bahasa Spanyol */
4108
+ smt1Spanyol?: Maybe<Scalars['Float']['output']>;
3947
4109
  /** Pelajaran yang tidak pelajari oleh siswa. */
3948
4110
  smt1UnlearnedSubject?: Maybe<Array<Scalars['Json']['output']>>;
4111
+ /** Kewirausahaan */
4112
+ smt1Wirausaha?: Maybe<Scalars['Float']['output']>;
3949
4113
  /** Agama */
3950
4114
  smt2Agama?: Maybe<Scalars['Float']['output']>;
3951
4115
  /** Antropologi */
3952
4116
  smt2Antro?: Maybe<Scalars['Float']['output']>;
4117
+ /** Bahasa Arab */
4118
+ smt2Arab?: Maybe<Scalars['Float']['output']>;
3953
4119
  /** Bahasa Asing */
3954
4120
  smt2Asing?: Maybe<Scalars['Float']['output']>;
3955
4121
  /** Biologi */
@@ -3968,26 +4134,42 @@ export type GradingInsert = {
3968
4134
  smt2Infor?: Maybe<Scalars['Float']['output']>;
3969
4135
  /** Pendidikan Jasmani */
3970
4136
  smt2Jas?: Maybe<Scalars['Float']['output']>;
4137
+ /** Bahasa Jepang */
4138
+ smt2Jepang?: Maybe<Scalars['Float']['output']>;
4139
+ /** Bahasa Jerman */
4140
+ smt2Jerman?: Maybe<Scalars['Float']['output']>;
3971
4141
  /** Kimia */
3972
4142
  smt2Kim?: Maybe<Scalars['Float']['output']>;
4143
+ /** Bahasa Korea */
4144
+ smt2Korea?: Maybe<Scalars['Float']['output']>;
4145
+ /** Bahasa Mandarin */
4146
+ smt2Mandarin?: Maybe<Scalars['Float']['output']>;
3973
4147
  /** Matematika */
3974
4148
  smt2Math?: Maybe<Scalars['Float']['output']>;
3975
4149
  /** Matematika Lanjut */
3976
4150
  smt2MathAdd?: Maybe<Scalars['Float']['output']>;
3977
4151
  /** Pendidikan Pancasila */
3978
4152
  smt2Panca?: Maybe<Scalars['Float']['output']>;
4153
+ /** Bahasa Perancis */
4154
+ smt2Perancis?: Maybe<Scalars['Float']['output']>;
3979
4155
  /** Sejarah */
3980
4156
  smt2Sej?: Maybe<Scalars['Float']['output']>;
3981
4157
  /** Seni Budaya */
3982
4158
  smt2Seni?: Maybe<Scalars['Float']['output']>;
3983
4159
  /** Sosiologi */
3984
4160
  smt2Sosio?: Maybe<Scalars['Float']['output']>;
4161
+ /** Bahasa Spanyol */
4162
+ smt2Spanyol?: Maybe<Scalars['Float']['output']>;
3985
4163
  /** Pelajaran yang tidak pelajari oleh siswa. */
3986
4164
  smt2UnlearnedSubject?: Maybe<Array<Scalars['Json']['output']>>;
4165
+ /** Kewirausahaan */
4166
+ smt2Wirausaha?: Maybe<Scalars['Float']['output']>;
3987
4167
  /** Agama */
3988
4168
  smt3Agama?: Maybe<Scalars['Float']['output']>;
3989
4169
  /** Antropologi */
3990
4170
  smt3Antro?: Maybe<Scalars['Float']['output']>;
4171
+ /** Bahasa Arab */
4172
+ smt3Arab?: Maybe<Scalars['Float']['output']>;
3991
4173
  /** Bahasa Asing */
3992
4174
  smt3Asing?: Maybe<Scalars['Float']['output']>;
3993
4175
  /** Biologi */
@@ -4006,26 +4188,42 @@ export type GradingInsert = {
4006
4188
  smt3Infor?: Maybe<Scalars['Float']['output']>;
4007
4189
  /** Pendidikan Jasmani */
4008
4190
  smt3Jas?: Maybe<Scalars['Float']['output']>;
4191
+ /** Bahasa Jepang */
4192
+ smt3Jepang?: Maybe<Scalars['Float']['output']>;
4193
+ /** Bahasa Jerman */
4194
+ smt3Jerman?: Maybe<Scalars['Float']['output']>;
4009
4195
  /** Kimia */
4010
4196
  smt3Kim?: Maybe<Scalars['Float']['output']>;
4197
+ /** Bahasa Korea */
4198
+ smt3Korea?: Maybe<Scalars['Float']['output']>;
4199
+ /** Bahasa Mandarin */
4200
+ smt3Mandarin?: Maybe<Scalars['Float']['output']>;
4011
4201
  /** Matematika */
4012
4202
  smt3Math?: Maybe<Scalars['Float']['output']>;
4013
4203
  /** Matematika Lanjut */
4014
4204
  smt3MathAdd?: Maybe<Scalars['Float']['output']>;
4015
4205
  /** Pendidikan Pancasila */
4016
4206
  smt3Panca?: Maybe<Scalars['Float']['output']>;
4207
+ /** Bahasa Perancis */
4208
+ smt3Perancis?: Maybe<Scalars['Float']['output']>;
4017
4209
  /** Sejarah */
4018
4210
  smt3Sej?: Maybe<Scalars['Float']['output']>;
4019
4211
  /** Seni Budaya */
4020
4212
  smt3Seni?: Maybe<Scalars['Float']['output']>;
4021
4213
  /** Sosiologi */
4022
4214
  smt3Sosio?: Maybe<Scalars['Float']['output']>;
4215
+ /** Bahasa Spanyol */
4216
+ smt3Spanyol?: Maybe<Scalars['Float']['output']>;
4023
4217
  /** Pelajaran yang tidak pelajari oleh siswa. */
4024
4218
  smt3UnlearnedSubject?: Maybe<Array<Scalars['Json']['output']>>;
4219
+ /** Kewirausahaan */
4220
+ smt3Wirausaha?: Maybe<Scalars['Float']['output']>;
4025
4221
  /** Agama */
4026
4222
  smt4Agama?: Maybe<Scalars['Float']['output']>;
4027
4223
  /** Antropologi */
4028
4224
  smt4Antro?: Maybe<Scalars['Float']['output']>;
4225
+ /** Bahasa Arab */
4226
+ smt4Arab?: Maybe<Scalars['Float']['output']>;
4029
4227
  /** Bahasa Asing */
4030
4228
  smt4Asing?: Maybe<Scalars['Float']['output']>;
4031
4229
  /** Biologi */
@@ -4044,26 +4242,42 @@ export type GradingInsert = {
4044
4242
  smt4Infor?: Maybe<Scalars['Float']['output']>;
4045
4243
  /** Pendidikan Jasmani */
4046
4244
  smt4Jas?: Maybe<Scalars['Float']['output']>;
4245
+ /** Bahasa Jepang */
4246
+ smt4Jepang?: Maybe<Scalars['Float']['output']>;
4247
+ /** Bahasa Jerman */
4248
+ smt4Jerman?: Maybe<Scalars['Float']['output']>;
4047
4249
  /** Kimia */
4048
4250
  smt4Kim?: Maybe<Scalars['Float']['output']>;
4251
+ /** Bahasa Korea */
4252
+ smt4Korea?: Maybe<Scalars['Float']['output']>;
4253
+ /** Bahasa Mandarin */
4254
+ smt4Mandarin?: Maybe<Scalars['Float']['output']>;
4049
4255
  /** Matematika */
4050
4256
  smt4Math?: Maybe<Scalars['Float']['output']>;
4051
4257
  /** Matematika Lanjut */
4052
4258
  smt4MathAdd?: Maybe<Scalars['Float']['output']>;
4053
4259
  /** Pendidikan Pancasila */
4054
4260
  smt4Panca?: Maybe<Scalars['Float']['output']>;
4261
+ /** Bahasa Perancis */
4262
+ smt4Perancis?: Maybe<Scalars['Float']['output']>;
4055
4263
  /** Sejarah */
4056
4264
  smt4Sej?: Maybe<Scalars['Float']['output']>;
4057
4265
  /** Seni Budaya */
4058
4266
  smt4Seni?: Maybe<Scalars['Float']['output']>;
4059
4267
  /** Sosiologi */
4060
4268
  smt4Sosio?: Maybe<Scalars['Float']['output']>;
4269
+ /** Bahasa Spanyol */
4270
+ smt4Spanyol?: Maybe<Scalars['Float']['output']>;
4061
4271
  /** Pelajaran yang tidak pelajari oleh siswa. */
4062
4272
  smt4UnlearnedSubject?: Maybe<Array<Scalars['Json']['output']>>;
4273
+ /** Kewirausahaan */
4274
+ smt4Wirausaha?: Maybe<Scalars['Float']['output']>;
4063
4275
  /** Agama */
4064
4276
  smt5Agama?: Maybe<Scalars['Float']['output']>;
4065
4277
  /** Antropologi */
4066
4278
  smt5Antro?: Maybe<Scalars['Float']['output']>;
4279
+ /** Bahasa Arab */
4280
+ smt5Arab?: Maybe<Scalars['Float']['output']>;
4067
4281
  /** Bahasa Asing */
4068
4282
  smt5Asing?: Maybe<Scalars['Float']['output']>;
4069
4283
  /** Biologi */
@@ -4082,26 +4296,42 @@ export type GradingInsert = {
4082
4296
  smt5Infor?: Maybe<Scalars['Float']['output']>;
4083
4297
  /** Pendidikan Jasmani */
4084
4298
  smt5Jas?: Maybe<Scalars['Float']['output']>;
4299
+ /** Bahasa Jepang */
4300
+ smt5Jepang?: Maybe<Scalars['Float']['output']>;
4301
+ /** Bahasa Jerman */
4302
+ smt5Jerman?: Maybe<Scalars['Float']['output']>;
4085
4303
  /** Kimia */
4086
4304
  smt5Kim?: Maybe<Scalars['Float']['output']>;
4305
+ /** Bahasa Korea */
4306
+ smt5Korea?: Maybe<Scalars['Float']['output']>;
4307
+ /** Bahasa Mandarin */
4308
+ smt5Mandarin?: Maybe<Scalars['Float']['output']>;
4087
4309
  /** Matematika */
4088
4310
  smt5Math?: Maybe<Scalars['Float']['output']>;
4089
4311
  /** Matematika Lanjut */
4090
4312
  smt5MathAdd?: Maybe<Scalars['Float']['output']>;
4091
4313
  /** Pendidikan Pancasila */
4092
4314
  smt5Panca?: Maybe<Scalars['Float']['output']>;
4315
+ /** Bahasa Perancis */
4316
+ smt5Perancis?: Maybe<Scalars['Float']['output']>;
4093
4317
  /** Sejarah */
4094
4318
  smt5Sej?: Maybe<Scalars['Float']['output']>;
4095
4319
  /** Seni Budaya */
4096
4320
  smt5Seni?: Maybe<Scalars['Float']['output']>;
4097
4321
  /** Sosiologi */
4098
4322
  smt5Sosio?: Maybe<Scalars['Float']['output']>;
4323
+ /** Bahasa Spanyol */
4324
+ smt5Spanyol?: Maybe<Scalars['Float']['output']>;
4099
4325
  /** Pelajaran yang tidak pelajari oleh siswa. */
4100
4326
  smt5UnlearnedSubject?: Maybe<Array<Scalars['Json']['output']>>;
4327
+ /** Kewirausahaan */
4328
+ smt5Wirausaha?: Maybe<Scalars['Float']['output']>;
4101
4329
  /** Agama */
4102
4330
  smt6Agama?: Maybe<Scalars['Float']['output']>;
4103
4331
  /** Antropologi */
4104
4332
  smt6Antro?: Maybe<Scalars['Float']['output']>;
4333
+ /** Bahasa Arab */
4334
+ smt6Arab?: Maybe<Scalars['Float']['output']>;
4105
4335
  /** Bahasa Asing */
4106
4336
  smt6Asing?: Maybe<Scalars['Float']['output']>;
4107
4337
  /** Biologi */
@@ -4120,22 +4350,36 @@ export type GradingInsert = {
4120
4350
  smt6Infor?: Maybe<Scalars['Float']['output']>;
4121
4351
  /** Pendidikan Jasmani */
4122
4352
  smt6Jas?: Maybe<Scalars['Float']['output']>;
4353
+ /** Bahasa Jepang */
4354
+ smt6Jepang?: Maybe<Scalars['Float']['output']>;
4355
+ /** Bahasa Jerman */
4356
+ smt6Jerman?: Maybe<Scalars['Float']['output']>;
4123
4357
  /** Kimia */
4124
4358
  smt6Kim?: Maybe<Scalars['Float']['output']>;
4359
+ /** Bahasa Korea */
4360
+ smt6Korea?: Maybe<Scalars['Float']['output']>;
4361
+ /** Bahasa Mandarin */
4362
+ smt6Mandarin?: Maybe<Scalars['Float']['output']>;
4125
4363
  /** Matematika */
4126
4364
  smt6Math?: Maybe<Scalars['Float']['output']>;
4127
4365
  /** Matematika Lanjut */
4128
4366
  smt6MathAdd?: Maybe<Scalars['Float']['output']>;
4129
4367
  /** Pendidikan Pancasila */
4130
4368
  smt6Panca?: Maybe<Scalars['Float']['output']>;
4369
+ /** Bahasa Perancis */
4370
+ smt6Perancis?: Maybe<Scalars['Float']['output']>;
4131
4371
  /** Sejarah */
4132
4372
  smt6Sej?: Maybe<Scalars['Float']['output']>;
4133
4373
  /** Seni Budaya */
4134
4374
  smt6Seni?: Maybe<Scalars['Float']['output']>;
4135
4375
  /** Sosiologi */
4136
4376
  smt6Sosio?: Maybe<Scalars['Float']['output']>;
4377
+ /** Bahasa Spanyol */
4378
+ smt6Spanyol?: Maybe<Scalars['Float']['output']>;
4137
4379
  /** Pelajaran yang tidak pelajari oleh siswa. */
4138
4380
  smt6UnlearnedSubject?: Maybe<Array<Scalars['Json']['output']>>;
4381
+ /** Kewirausahaan */
4382
+ smt6Wirausaha?: Maybe<Scalars['Float']['output']>;
4139
4383
  /** Nama sekolah. */
4140
4384
  sourceSchool?: Maybe<School>;
4141
4385
  /** Relation ID of Asal Sekolah. */
@@ -4158,6 +4402,10 @@ export type GradingInsert = {
4158
4402
  teacherIds?: Maybe<Array<Scalars['ObjectId']['output']>>;
4159
4403
  /** Nama konsultan. */
4160
4404
  teachers?: Maybe<Array<Teacher>>;
4405
+ /** TOEFL IBT */
4406
+ toeflIbt?: Maybe<Scalars['Float']['output']>;
4407
+ /** TOEFL ITP */
4408
+ toeflItp?: Maybe<Scalars['Float']['output']>;
4161
4409
  /** Internal type of this nilai rapor. */
4162
4410
  type__?: Maybe<Scalars['String']['output']>;
4163
4411
  /** When this nilai rapor was last updated. */
@@ -4167,7 +4415,7 @@ export type GradingInsert = {
4167
4415
  /** Who last updated this nilai rapor. */
4168
4416
  updater?: Maybe<User>;
4169
4417
  /** Nilai UTBK. */
4170
- utbkScore?: Maybe<Scalars['Float']['output']>;
4418
+ utbkScore?: Maybe<Scalars['String']['output']>;
4171
4419
  };
4172
4420
  export type GradingInsertAcceptedSchoolArgs = {
4173
4421
  filter?: InputMaybe<Scalars['Json']['input']>;
@@ -4250,12 +4498,14 @@ export type GradingInsertInput = {
4250
4498
  allFillPercentage?: InputMaybe<Scalars['Float']['input']>;
4251
4499
  /** Scores */
4252
4500
  allScores?: InputMaybe<Scalars['Any']['input']>;
4253
- /** Relation ID of Cabang Rasionalisasi. */
4501
+ /** Relation ID of Cabang. */
4254
4502
  branchId?: InputMaybe<Scalars['ObjectId']['input']>;
4255
4503
  /** Temporary. */
4256
4504
  cached?: InputMaybe<Scalars['Any']['input']>;
4257
4505
  /** Status kalkulasi. */
4258
4506
  calculationStatus?: InputMaybe<Scalars['String']['input']>;
4507
+ /** CERF */
4508
+ cerf?: InputMaybe<Scalars['String']['input']>;
4259
4509
  /** Relation ID of Universitas Pilihan Pertama. */
4260
4510
  choosenSchoolOneId?: InputMaybe<Scalars['ObjectId']['input']>;
4261
4511
  /** Relation ID of Universitas Pilihan Kedua. */
@@ -4288,6 +4538,8 @@ export type GradingInsertInput = {
4288
4538
  gradingId?: InputMaybe<Scalars['ObjectId']['input']>;
4289
4539
  /** Relation ID of Tipe Penilaian. */
4290
4540
  gradingTypeId?: InputMaybe<Scalars['ObjectId']['input']>;
4541
+ /** IELTS */
4542
+ ielts?: InputMaybe<Scalars['Int']['input']>;
4291
4543
  /** Catatan penilaian. */
4292
4544
  note?: InputMaybe<Scalars['String']['input']>;
4293
4545
  /** Relation IDs of Universitas Pilihan Lainnya. */
@@ -4316,6 +4568,8 @@ export type GradingInsertInput = {
4316
4568
  smt1Agama?: InputMaybe<Scalars['Float']['input']>;
4317
4569
  /** Antropologi */
4318
4570
  smt1Antro?: InputMaybe<Scalars['Float']['input']>;
4571
+ /** Bahasa Arab */
4572
+ smt1Arab?: InputMaybe<Scalars['Float']['input']>;
4319
4573
  /** Bahasa Asing */
4320
4574
  smt1Asing?: InputMaybe<Scalars['Float']['input']>;
4321
4575
  /** Biologi */
@@ -4334,26 +4588,42 @@ export type GradingInsertInput = {
4334
4588
  smt1Infor?: InputMaybe<Scalars['Float']['input']>;
4335
4589
  /** Pendidikan Jasmani */
4336
4590
  smt1Jas?: InputMaybe<Scalars['Float']['input']>;
4591
+ /** Bahasa Jepang */
4592
+ smt1Jepang?: InputMaybe<Scalars['Float']['input']>;
4593
+ /** Bahasa Jerman */
4594
+ smt1Jerman?: InputMaybe<Scalars['Float']['input']>;
4337
4595
  /** Kimia */
4338
4596
  smt1Kim?: InputMaybe<Scalars['Float']['input']>;
4597
+ /** Bahasa Korea */
4598
+ smt1Korea?: InputMaybe<Scalars['Float']['input']>;
4599
+ /** Bahasa Mandarin */
4600
+ smt1Mandarin?: InputMaybe<Scalars['Float']['input']>;
4339
4601
  /** Matematika */
4340
4602
  smt1Math?: InputMaybe<Scalars['Float']['input']>;
4341
4603
  /** Matematika Lanjut */
4342
4604
  smt1MathAdd?: InputMaybe<Scalars['Float']['input']>;
4343
4605
  /** Pendidikan Pancasila */
4344
4606
  smt1Panca?: InputMaybe<Scalars['Float']['input']>;
4607
+ /** Bahasa Perancis */
4608
+ smt1Perancis?: InputMaybe<Scalars['Float']['input']>;
4345
4609
  /** Sejarah */
4346
4610
  smt1Sej?: InputMaybe<Scalars['Float']['input']>;
4347
4611
  /** Seni Budaya */
4348
4612
  smt1Seni?: InputMaybe<Scalars['Float']['input']>;
4349
4613
  /** Sosiologi */
4350
4614
  smt1Sosio?: InputMaybe<Scalars['Float']['input']>;
4615
+ /** Bahasa Spanyol */
4616
+ smt1Spanyol?: InputMaybe<Scalars['Float']['input']>;
4351
4617
  /** Pelajaran yang tidak pelajari oleh siswa. */
4352
4618
  smt1UnlearnedSubject?: InputMaybe<Array<Scalars['Any']['input']>>;
4619
+ /** Kewirausahaan */
4620
+ smt1Wirausaha?: InputMaybe<Scalars['Float']['input']>;
4353
4621
  /** Agama */
4354
4622
  smt2Agama?: InputMaybe<Scalars['Float']['input']>;
4355
4623
  /** Antropologi */
4356
4624
  smt2Antro?: InputMaybe<Scalars['Float']['input']>;
4625
+ /** Bahasa Arab */
4626
+ smt2Arab?: InputMaybe<Scalars['Float']['input']>;
4357
4627
  /** Bahasa Asing */
4358
4628
  smt2Asing?: InputMaybe<Scalars['Float']['input']>;
4359
4629
  /** Biologi */
@@ -4372,26 +4642,42 @@ export type GradingInsertInput = {
4372
4642
  smt2Infor?: InputMaybe<Scalars['Float']['input']>;
4373
4643
  /** Pendidikan Jasmani */
4374
4644
  smt2Jas?: InputMaybe<Scalars['Float']['input']>;
4645
+ /** Bahasa Jepang */
4646
+ smt2Jepang?: InputMaybe<Scalars['Float']['input']>;
4647
+ /** Bahasa Jerman */
4648
+ smt2Jerman?: InputMaybe<Scalars['Float']['input']>;
4375
4649
  /** Kimia */
4376
4650
  smt2Kim?: InputMaybe<Scalars['Float']['input']>;
4651
+ /** Bahasa Korea */
4652
+ smt2Korea?: InputMaybe<Scalars['Float']['input']>;
4653
+ /** Bahasa Mandarin */
4654
+ smt2Mandarin?: InputMaybe<Scalars['Float']['input']>;
4377
4655
  /** Matematika */
4378
4656
  smt2Math?: InputMaybe<Scalars['Float']['input']>;
4379
4657
  /** Matematika Lanjut */
4380
4658
  smt2MathAdd?: InputMaybe<Scalars['Float']['input']>;
4381
4659
  /** Pendidikan Pancasila */
4382
4660
  smt2Panca?: InputMaybe<Scalars['Float']['input']>;
4661
+ /** Bahasa Perancis */
4662
+ smt2Perancis?: InputMaybe<Scalars['Float']['input']>;
4383
4663
  /** Sejarah */
4384
4664
  smt2Sej?: InputMaybe<Scalars['Float']['input']>;
4385
4665
  /** Seni Budaya */
4386
4666
  smt2Seni?: InputMaybe<Scalars['Float']['input']>;
4387
4667
  /** Sosiologi */
4388
4668
  smt2Sosio?: InputMaybe<Scalars['Float']['input']>;
4669
+ /** Bahasa Spanyol */
4670
+ smt2Spanyol?: InputMaybe<Scalars['Float']['input']>;
4389
4671
  /** Pelajaran yang tidak pelajari oleh siswa. */
4390
4672
  smt2UnlearnedSubject?: InputMaybe<Array<Scalars['Any']['input']>>;
4673
+ /** Kewirausahaan */
4674
+ smt2Wirausaha?: InputMaybe<Scalars['Float']['input']>;
4391
4675
  /** Agama */
4392
4676
  smt3Agama?: InputMaybe<Scalars['Float']['input']>;
4393
4677
  /** Antropologi */
4394
4678
  smt3Antro?: InputMaybe<Scalars['Float']['input']>;
4679
+ /** Bahasa Arab */
4680
+ smt3Arab?: InputMaybe<Scalars['Float']['input']>;
4395
4681
  /** Bahasa Asing */
4396
4682
  smt3Asing?: InputMaybe<Scalars['Float']['input']>;
4397
4683
  /** Biologi */
@@ -4410,26 +4696,42 @@ export type GradingInsertInput = {
4410
4696
  smt3Infor?: InputMaybe<Scalars['Float']['input']>;
4411
4697
  /** Pendidikan Jasmani */
4412
4698
  smt3Jas?: InputMaybe<Scalars['Float']['input']>;
4699
+ /** Bahasa Jepang */
4700
+ smt3Jepang?: InputMaybe<Scalars['Float']['input']>;
4701
+ /** Bahasa Jerman */
4702
+ smt3Jerman?: InputMaybe<Scalars['Float']['input']>;
4413
4703
  /** Kimia */
4414
4704
  smt3Kim?: InputMaybe<Scalars['Float']['input']>;
4705
+ /** Bahasa Korea */
4706
+ smt3Korea?: InputMaybe<Scalars['Float']['input']>;
4707
+ /** Bahasa Mandarin */
4708
+ smt3Mandarin?: InputMaybe<Scalars['Float']['input']>;
4415
4709
  /** Matematika */
4416
4710
  smt3Math?: InputMaybe<Scalars['Float']['input']>;
4417
4711
  /** Matematika Lanjut */
4418
4712
  smt3MathAdd?: InputMaybe<Scalars['Float']['input']>;
4419
4713
  /** Pendidikan Pancasila */
4420
4714
  smt3Panca?: InputMaybe<Scalars['Float']['input']>;
4715
+ /** Bahasa Perancis */
4716
+ smt3Perancis?: InputMaybe<Scalars['Float']['input']>;
4421
4717
  /** Sejarah */
4422
4718
  smt3Sej?: InputMaybe<Scalars['Float']['input']>;
4423
4719
  /** Seni Budaya */
4424
4720
  smt3Seni?: InputMaybe<Scalars['Float']['input']>;
4425
4721
  /** Sosiologi */
4426
4722
  smt3Sosio?: InputMaybe<Scalars['Float']['input']>;
4723
+ /** Bahasa Spanyol */
4724
+ smt3Spanyol?: InputMaybe<Scalars['Float']['input']>;
4427
4725
  /** Pelajaran yang tidak pelajari oleh siswa. */
4428
4726
  smt3UnlearnedSubject?: InputMaybe<Array<Scalars['Any']['input']>>;
4727
+ /** Kewirausahaan */
4728
+ smt3Wirausaha?: InputMaybe<Scalars['Float']['input']>;
4429
4729
  /** Agama */
4430
4730
  smt4Agama?: InputMaybe<Scalars['Float']['input']>;
4431
4731
  /** Antropologi */
4432
4732
  smt4Antro?: InputMaybe<Scalars['Float']['input']>;
4733
+ /** Bahasa Arab */
4734
+ smt4Arab?: InputMaybe<Scalars['Float']['input']>;
4433
4735
  /** Bahasa Asing */
4434
4736
  smt4Asing?: InputMaybe<Scalars['Float']['input']>;
4435
4737
  /** Biologi */
@@ -4448,26 +4750,42 @@ export type GradingInsertInput = {
4448
4750
  smt4Infor?: InputMaybe<Scalars['Float']['input']>;
4449
4751
  /** Pendidikan Jasmani */
4450
4752
  smt4Jas?: InputMaybe<Scalars['Float']['input']>;
4753
+ /** Bahasa Jepang */
4754
+ smt4Jepang?: InputMaybe<Scalars['Float']['input']>;
4755
+ /** Bahasa Jerman */
4756
+ smt4Jerman?: InputMaybe<Scalars['Float']['input']>;
4451
4757
  /** Kimia */
4452
4758
  smt4Kim?: InputMaybe<Scalars['Float']['input']>;
4759
+ /** Bahasa Korea */
4760
+ smt4Korea?: InputMaybe<Scalars['Float']['input']>;
4761
+ /** Bahasa Mandarin */
4762
+ smt4Mandarin?: InputMaybe<Scalars['Float']['input']>;
4453
4763
  /** Matematika */
4454
4764
  smt4Math?: InputMaybe<Scalars['Float']['input']>;
4455
4765
  /** Matematika Lanjut */
4456
4766
  smt4MathAdd?: InputMaybe<Scalars['Float']['input']>;
4457
4767
  /** Pendidikan Pancasila */
4458
4768
  smt4Panca?: InputMaybe<Scalars['Float']['input']>;
4769
+ /** Bahasa Perancis */
4770
+ smt4Perancis?: InputMaybe<Scalars['Float']['input']>;
4459
4771
  /** Sejarah */
4460
4772
  smt4Sej?: InputMaybe<Scalars['Float']['input']>;
4461
4773
  /** Seni Budaya */
4462
4774
  smt4Seni?: InputMaybe<Scalars['Float']['input']>;
4463
4775
  /** Sosiologi */
4464
4776
  smt4Sosio?: InputMaybe<Scalars['Float']['input']>;
4777
+ /** Bahasa Spanyol */
4778
+ smt4Spanyol?: InputMaybe<Scalars['Float']['input']>;
4465
4779
  /** Pelajaran yang tidak pelajari oleh siswa. */
4466
4780
  smt4UnlearnedSubject?: InputMaybe<Array<Scalars['Any']['input']>>;
4781
+ /** Kewirausahaan */
4782
+ smt4Wirausaha?: InputMaybe<Scalars['Float']['input']>;
4467
4783
  /** Agama */
4468
4784
  smt5Agama?: InputMaybe<Scalars['Float']['input']>;
4469
4785
  /** Antropologi */
4470
4786
  smt5Antro?: InputMaybe<Scalars['Float']['input']>;
4787
+ /** Bahasa Arab */
4788
+ smt5Arab?: InputMaybe<Scalars['Float']['input']>;
4471
4789
  /** Bahasa Asing */
4472
4790
  smt5Asing?: InputMaybe<Scalars['Float']['input']>;
4473
4791
  /** Biologi */
@@ -4486,26 +4804,42 @@ export type GradingInsertInput = {
4486
4804
  smt5Infor?: InputMaybe<Scalars['Float']['input']>;
4487
4805
  /** Pendidikan Jasmani */
4488
4806
  smt5Jas?: InputMaybe<Scalars['Float']['input']>;
4807
+ /** Bahasa Jepang */
4808
+ smt5Jepang?: InputMaybe<Scalars['Float']['input']>;
4809
+ /** Bahasa Jerman */
4810
+ smt5Jerman?: InputMaybe<Scalars['Float']['input']>;
4489
4811
  /** Kimia */
4490
4812
  smt5Kim?: InputMaybe<Scalars['Float']['input']>;
4813
+ /** Bahasa Korea */
4814
+ smt5Korea?: InputMaybe<Scalars['Float']['input']>;
4815
+ /** Bahasa Mandarin */
4816
+ smt5Mandarin?: InputMaybe<Scalars['Float']['input']>;
4491
4817
  /** Matematika */
4492
4818
  smt5Math?: InputMaybe<Scalars['Float']['input']>;
4493
4819
  /** Matematika Lanjut */
4494
4820
  smt5MathAdd?: InputMaybe<Scalars['Float']['input']>;
4495
4821
  /** Pendidikan Pancasila */
4496
4822
  smt5Panca?: InputMaybe<Scalars['Float']['input']>;
4823
+ /** Bahasa Perancis */
4824
+ smt5Perancis?: InputMaybe<Scalars['Float']['input']>;
4497
4825
  /** Sejarah */
4498
4826
  smt5Sej?: InputMaybe<Scalars['Float']['input']>;
4499
4827
  /** Seni Budaya */
4500
4828
  smt5Seni?: InputMaybe<Scalars['Float']['input']>;
4501
4829
  /** Sosiologi */
4502
4830
  smt5Sosio?: InputMaybe<Scalars['Float']['input']>;
4831
+ /** Bahasa Spanyol */
4832
+ smt5Spanyol?: InputMaybe<Scalars['Float']['input']>;
4503
4833
  /** Pelajaran yang tidak pelajari oleh siswa. */
4504
4834
  smt5UnlearnedSubject?: InputMaybe<Array<Scalars['Any']['input']>>;
4835
+ /** Kewirausahaan */
4836
+ smt5Wirausaha?: InputMaybe<Scalars['Float']['input']>;
4505
4837
  /** Agama */
4506
4838
  smt6Agama?: InputMaybe<Scalars['Float']['input']>;
4507
4839
  /** Antropologi */
4508
4840
  smt6Antro?: InputMaybe<Scalars['Float']['input']>;
4841
+ /** Bahasa Arab */
4842
+ smt6Arab?: InputMaybe<Scalars['Float']['input']>;
4509
4843
  /** Bahasa Asing */
4510
4844
  smt6Asing?: InputMaybe<Scalars['Float']['input']>;
4511
4845
  /** Biologi */
@@ -4524,22 +4858,36 @@ export type GradingInsertInput = {
4524
4858
  smt6Infor?: InputMaybe<Scalars['Float']['input']>;
4525
4859
  /** Pendidikan Jasmani */
4526
4860
  smt6Jas?: InputMaybe<Scalars['Float']['input']>;
4861
+ /** Bahasa Jepang */
4862
+ smt6Jepang?: InputMaybe<Scalars['Float']['input']>;
4863
+ /** Bahasa Jerman */
4864
+ smt6Jerman?: InputMaybe<Scalars['Float']['input']>;
4527
4865
  /** Kimia */
4528
4866
  smt6Kim?: InputMaybe<Scalars['Float']['input']>;
4867
+ /** Bahasa Korea */
4868
+ smt6Korea?: InputMaybe<Scalars['Float']['input']>;
4869
+ /** Bahasa Mandarin */
4870
+ smt6Mandarin?: InputMaybe<Scalars['Float']['input']>;
4529
4871
  /** Matematika */
4530
4872
  smt6Math?: InputMaybe<Scalars['Float']['input']>;
4531
4873
  /** Matematika Lanjut */
4532
4874
  smt6MathAdd?: InputMaybe<Scalars['Float']['input']>;
4533
4875
  /** Pendidikan Pancasila */
4534
4876
  smt6Panca?: InputMaybe<Scalars['Float']['input']>;
4877
+ /** Bahasa Perancis */
4878
+ smt6Perancis?: InputMaybe<Scalars['Float']['input']>;
4535
4879
  /** Sejarah */
4536
4880
  smt6Sej?: InputMaybe<Scalars['Float']['input']>;
4537
4881
  /** Seni Budaya */
4538
4882
  smt6Seni?: InputMaybe<Scalars['Float']['input']>;
4539
4883
  /** Sosiologi */
4540
4884
  smt6Sosio?: InputMaybe<Scalars['Float']['input']>;
4885
+ /** Bahasa Spanyol */
4886
+ smt6Spanyol?: InputMaybe<Scalars['Float']['input']>;
4541
4887
  /** Pelajaran yang tidak pelajari oleh siswa. */
4542
4888
  smt6UnlearnedSubject?: InputMaybe<Array<Scalars['Any']['input']>>;
4889
+ /** Kewirausahaan */
4890
+ smt6Wirausaha?: InputMaybe<Scalars['Float']['input']>;
4543
4891
  /** Relation ID of Asal Sekolah. */
4544
4892
  sourceSchoolId?: InputMaybe<Scalars['ObjectId']['input']>;
4545
4893
  /** Relation IDs of Cabang Siswa. */
@@ -4552,6 +4900,10 @@ export type GradingInsertInput = {
4552
4900
  teacherId?: InputMaybe<Scalars['ObjectId']['input']>;
4553
4901
  /** Relation IDs of Konsultan. */
4554
4902
  teacherIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4903
+ /** TOEFL IBT */
4904
+ toeflIbt?: InputMaybe<Scalars['Float']['input']>;
4905
+ /** TOEFL ITP */
4906
+ toeflItp?: InputMaybe<Scalars['Float']['input']>;
4555
4907
  /** Internal type of this nilai rapor. */
4556
4908
  type__?: InputMaybe<Scalars['String']['input']>;
4557
4909
  /** When this nilai rapor was last updated. */
@@ -4559,7 +4911,7 @@ export type GradingInsertInput = {
4559
4911
  /** Relation ID of Updated By. */
4560
4912
  updatedBy?: InputMaybe<Scalars['ObjectId']['input']>;
4561
4913
  /** Nilai UTBK. */
4562
- utbkScore?: InputMaybe<Scalars['Float']['input']>;
4914
+ utbkScore?: InputMaybe<Scalars['String']['input']>;
4563
4915
  };
4564
4916
  /** Single neu:penilaian:gradingInsert response. */
4565
4917
  export type GradingInsertSingleResponse = {
@@ -5255,6 +5607,8 @@ export type Mutation = {
5255
5607
  createOneApplication?: Maybe<ApplicationSingleResponse>;
5256
5608
  /** Create single neu:tempat:area item. */
5257
5609
  createOneArea?: Maybe<AreaSingleResponse>;
5610
+ /** Create single neu:personalia:attendance item. */
5611
+ createOneAttendance?: Maybe<AttendanceSingleResponse>;
5258
5612
  /** Create single neu:tempat:branch item. */
5259
5613
  createOneBranch?: Maybe<BranchSingleResponse>;
5260
5614
  /** Create single neu:tempat:brand item. */
@@ -5391,6 +5745,8 @@ export type Mutation = {
5391
5745
  deleteOneApplication?: Maybe<ApplicationSingleResponse>;
5392
5746
  /** Delete single neu:tempat:area item. */
5393
5747
  deleteOneArea?: Maybe<AreaSingleResponse>;
5748
+ /** Delete single neu:personalia:attendance item. */
5749
+ deleteOneAttendance?: Maybe<AttendanceSingleResponse>;
5394
5750
  /** Delete single neu:tempat:branch item. */
5395
5751
  deleteOneBranch?: Maybe<BranchSingleResponse>;
5396
5752
  /** Delete single neu:tempat:brand item. */
@@ -5527,6 +5883,8 @@ export type Mutation = {
5527
5883
  duplicateOneApplication?: Maybe<ApplicationSingleResponse>;
5528
5884
  /** Duplicate single neu:tempat:area item. */
5529
5885
  duplicateOneArea?: Maybe<AreaSingleResponse>;
5886
+ /** Duplicate single neu:personalia:attendance item. */
5887
+ duplicateOneAttendance?: Maybe<AttendanceSingleResponse>;
5530
5888
  /** Duplicate single neu:tempat:branch item. */
5531
5889
  duplicateOneBranch?: Maybe<BranchSingleResponse>;
5532
5890
  /** Duplicate single neu:tempat:brand item. */
@@ -5665,6 +6023,8 @@ export type Mutation = {
5665
6023
  executeApplication?: Maybe<ExecuteResponse>;
5666
6024
  /** Execute a custom action on neu:tempat:area. */
5667
6025
  executeArea?: Maybe<ExecuteResponse>;
6026
+ /** Execute a custom action on neu:personalia:attendance. */
6027
+ executeAttendance?: Maybe<ExecuteResponse>;
5668
6028
  /** Execute a custom action on neu:tempat:branch. */
5669
6029
  executeBranch?: Maybe<ExecuteResponse>;
5670
6030
  /** Execute a custom action on neu:tempat:brand. */
@@ -5802,6 +6162,8 @@ export type Mutation = {
5802
6162
  restoreOneApplication?: Maybe<ApplicationSingleResponse>;
5803
6163
  /** Restore single neu:tempat:area item. */
5804
6164
  restoreOneArea?: Maybe<AreaSingleResponse>;
6165
+ /** Restore single neu:personalia:attendance item. */
6166
+ restoreOneAttendance?: Maybe<AttendanceSingleResponse>;
5805
6167
  /** Restore single neu:tempat:branch item. */
5806
6168
  restoreOneBranch?: Maybe<BranchSingleResponse>;
5807
6169
  /** Restore single neu:tempat:brand item. */
@@ -5938,6 +6300,8 @@ export type Mutation = {
5938
6300
  syncManyApplications?: Maybe<SyncManyResponse>;
5939
6301
  /** Sync many neu:tempat:area items. */
5940
6302
  syncManyAreas?: Maybe<SyncManyResponse>;
6303
+ /** Sync many neu:personalia:attendance items. */
6304
+ syncManyAttendances?: Maybe<SyncManyResponse>;
5941
6305
  /** Sync many neu:tempat:branch items. */
5942
6306
  syncManyBranches?: Maybe<SyncManyResponse>;
5943
6307
  /** Sync many neu:tempat:brand items. */
@@ -6074,6 +6438,8 @@ export type Mutation = {
6074
6438
  syncOneApplication?: Maybe<ApplicationSingleResponse>;
6075
6439
  /** Sync single neu:tempat:area item. */
6076
6440
  syncOneArea?: Maybe<AreaSingleResponse>;
6441
+ /** Sync single neu:personalia:attendance item. */
6442
+ syncOneAttendance?: Maybe<AttendanceSingleResponse>;
6077
6443
  /** Sync single neu:tempat:branch item. */
6078
6444
  syncOneBranch?: Maybe<BranchSingleResponse>;
6079
6445
  /** Sync single neu:tempat:brand item. */
@@ -6210,6 +6576,8 @@ export type Mutation = {
6210
6576
  updateOneApplication?: Maybe<ApplicationSingleResponse>;
6211
6577
  /** Update single neu:tempat:area item. */
6212
6578
  updateOneArea?: Maybe<AreaSingleResponse>;
6579
+ /** Update single neu:personalia:attendance item. */
6580
+ updateOneAttendance?: Maybe<AttendanceSingleResponse>;
6213
6581
  /** Update single neu:tempat:branch item. */
6214
6582
  updateOneBranch?: Maybe<BranchSingleResponse>;
6215
6583
  /** Update single neu:tempat:brand item. */
@@ -6359,6 +6727,11 @@ export type MutationCreateOneAreaArgs = {
6359
6727
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
6360
6728
  shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
6361
6729
  };
6730
+ export type MutationCreateOneAttendanceArgs = {
6731
+ data: AttendanceInput;
6732
+ logs?: InputMaybe<Array<Scalars['String']['input']>>;
6733
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
6734
+ };
6362
6735
  export type MutationCreateOneBranchArgs = {
6363
6736
  data: BranchInput;
6364
6737
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -6699,6 +7072,11 @@ export type MutationDeleteOneAreaArgs = {
6699
7072
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
6700
7073
  shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
6701
7074
  };
7075
+ export type MutationDeleteOneAttendanceArgs = {
7076
+ id: Scalars['ObjectId']['input'];
7077
+ logs?: InputMaybe<Array<Scalars['String']['input']>>;
7078
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
7079
+ };
6702
7080
  export type MutationDeleteOneBranchArgs = {
6703
7081
  id: Scalars['ObjectId']['input'];
6704
7082
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -7039,6 +7417,11 @@ export type MutationDuplicateOneAreaArgs = {
7039
7417
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
7040
7418
  shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
7041
7419
  };
7420
+ export type MutationDuplicateOneAttendanceArgs = {
7421
+ id: Scalars['ObjectId']['input'];
7422
+ logs?: InputMaybe<Array<Scalars['String']['input']>>;
7423
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
7424
+ };
7042
7425
  export type MutationDuplicateOneBranchArgs = {
7043
7426
  id: Scalars['ObjectId']['input'];
7044
7427
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -7388,6 +7771,12 @@ export type MutationExecuteAreaArgs = {
7388
7771
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
7389
7772
  shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
7390
7773
  };
7774
+ export type MutationExecuteAttendanceArgs = {
7775
+ action?: InputMaybe<Scalars['String']['input']>;
7776
+ input?: InputMaybe<Scalars['Json']['input']>;
7777
+ logs?: InputMaybe<Array<Scalars['String']['input']>>;
7778
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
7779
+ };
7391
7780
  export type MutationExecuteBranchArgs = {
7392
7781
  action?: InputMaybe<Scalars['String']['input']>;
7393
7782
  input?: InputMaybe<Scalars['Json']['input']>;
@@ -7792,6 +8181,11 @@ export type MutationRestoreOneAreaArgs = {
7792
8181
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
7793
8182
  shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
7794
8183
  };
8184
+ export type MutationRestoreOneAttendanceArgs = {
8185
+ id: Scalars['ObjectId']['input'];
8186
+ logs?: InputMaybe<Array<Scalars['String']['input']>>;
8187
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
8188
+ };
7795
8189
  export type MutationRestoreOneBranchArgs = {
7796
8190
  id: Scalars['ObjectId']['input'];
7797
8191
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -8164,6 +8558,19 @@ export type MutationSyncManyAreasArgs = {
8164
8558
  sort?: InputMaybe<Scalars['Json']['input']>;
8165
8559
  useDry?: InputMaybe<Scalars['Boolean']['input']>;
8166
8560
  };
8561
+ export type MutationSyncManyAttendancesArgs = {
8562
+ filter?: InputMaybe<Scalars['Json']['input']>;
8563
+ ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
8564
+ limit?: InputMaybe<Scalars['Int']['input']>;
8565
+ logs?: InputMaybe<Array<Scalars['String']['input']>>;
8566
+ maxSyncedAt?: InputMaybe<Scalars['Date']['input']>;
8567
+ minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
8568
+ page?: InputMaybe<Scalars['Int']['input']>;
8569
+ search?: InputMaybe<Scalars['String']['input']>;
8570
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
8571
+ sort?: InputMaybe<Scalars['Json']['input']>;
8572
+ useDry?: InputMaybe<Scalars['Boolean']['input']>;
8573
+ };
8167
8574
  export type MutationSyncManyBranchesArgs = {
8168
8575
  filter?: InputMaybe<Scalars['Json']['input']>;
8169
8576
  ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
@@ -9016,6 +9423,11 @@ export type MutationSyncOneAreaArgs = {
9016
9423
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
9017
9424
  shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
9018
9425
  };
9426
+ export type MutationSyncOneAttendanceArgs = {
9427
+ id: Scalars['ObjectId']['input'];
9428
+ logs?: InputMaybe<Array<Scalars['String']['input']>>;
9429
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
9430
+ };
9019
9431
  export type MutationSyncOneBranchArgs = {
9020
9432
  id: Scalars['ObjectId']['input'];
9021
9433
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -9360,6 +9772,12 @@ export type MutationUpdateOneAreaArgs = {
9360
9772
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
9361
9773
  shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
9362
9774
  };
9775
+ export type MutationUpdateOneAttendanceArgs = {
9776
+ data: AttendanceInput;
9777
+ id: Scalars['ObjectId']['input'];
9778
+ logs?: InputMaybe<Array<Scalars['String']['input']>>;
9779
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
9780
+ };
9363
9781
  export type MutationUpdateOneBranchArgs = {
9364
9782
  data: BranchInput;
9365
9783
  id: Scalars['ObjectId']['input'];
@@ -10117,7 +10535,7 @@ export type Plan = {
10117
10535
  /** Domain dari tipe rencana. */
10118
10536
  domain?: Maybe<Scalars['String']['output']>;
10119
10537
  /** Estimasi selesai dari rencana. */
10120
- endedEst?: Maybe<Scalars['Date']['output']>;
10538
+ endedAt?: Maybe<Scalars['Date']['output']>;
10121
10539
  /** Rencana */
10122
10540
  flag?: Maybe<Scalars['String']['output']>;
10123
10541
  /** Object ID. */
@@ -10145,7 +10563,7 @@ export type Plan = {
10145
10563
  /** Segmentasi dari rencana. */
10146
10564
  stages?: Maybe<Array<Stage>>;
10147
10565
  /** Estimasi mulai dari rencana. */
10148
- startedEst?: Maybe<Scalars['Date']['output']>;
10566
+ startedAt?: Maybe<Scalars['Date']['output']>;
10149
10567
  /** When this rencana was last synced. */
10150
10568
  syncedAt?: Maybe<Scalars['Date']['output']>;
10151
10569
  /** Sasaran dari rencana. */
@@ -10240,7 +10658,7 @@ export type PlanInput = {
10240
10658
  /** Domain dari tipe rencana. */
10241
10659
  domain?: InputMaybe<Scalars['String']['input']>;
10242
10660
  /** Estimasi selesai dari rencana. */
10243
- endedEst?: InputMaybe<Scalars['Date']['input']>;
10661
+ endedAt?: InputMaybe<Scalars['Date']['input']>;
10244
10662
  /** Rencana */
10245
10663
  flag?: InputMaybe<Scalars['String']['input']>;
10246
10664
  /** Nama dari rencana. */
@@ -10256,7 +10674,7 @@ export type PlanInput = {
10256
10674
  /** Relation IDs of Segmentasi. */
10257
10675
  stageIds?: InputMaybe<Array<Scalars['ID']['input']>>;
10258
10676
  /** Estimasi mulai dari rencana. */
10259
- startedEst?: InputMaybe<Scalars['Date']['input']>;
10677
+ startedAt?: InputMaybe<Scalars['Date']['input']>;
10260
10678
  /** When this rencana was last synced. */
10261
10679
  syncedAt?: InputMaybe<Scalars['Date']['input']>;
10262
10680
  /** Relation IDs of Sasaran. */
@@ -10429,11 +10847,13 @@ export type Progress = {
10429
10847
  /** Progress */
10430
10848
  display?: Maybe<Scalars['String']['output']>;
10431
10849
  /** Berakhir Pada */
10432
- endedEst?: Maybe<Scalars['Date']['output']>;
10850
+ endedAt?: Maybe<Scalars['Date']['output']>;
10433
10851
  /** Progress */
10434
10852
  flag?: Maybe<Scalars['String']['output']>;
10435
10853
  /** Object ID. */
10436
10854
  id?: Maybe<Scalars['ID']['output']>;
10855
+ /** Apakah ada catatan terkait progress ini? */
10856
+ isNotes?: Maybe<Scalars['Boolean']['output']>;
10437
10857
  /** Nama karyawan. */
10438
10858
  nameStaff?: Maybe<Scalars['String']['output']>;
10439
10859
  /** Relation IDs of Rencana. */
@@ -10450,12 +10870,12 @@ export type Progress = {
10450
10870
  restoredBy?: Maybe<Scalars['ObjectId']['output']>;
10451
10871
  /** Who last restored this progress. */
10452
10872
  restorer?: Maybe<User>;
10453
- /** Siapa yang mengerjakan. */
10454
- staff?: Maybe<Staff>;
10455
10873
  /** Relation ID of Siapa. */
10456
- staffId?: Maybe<Scalars['ObjectId']['output']>;
10874
+ staffIds?: Maybe<Scalars['ObjectId']['output']>;
10875
+ /** Siapa yang mengerjakan. */
10876
+ staffs?: Maybe<Staff>;
10457
10877
  /** Dimulai Pada */
10458
- startedEst?: Maybe<Scalars['Date']['output']>;
10878
+ startedAt?: Maybe<Scalars['Date']['output']>;
10459
10879
  /** Relation IDs of Tindaklanjut. */
10460
10880
  submissionIds?: Maybe<Array<Scalars['ObjectId']['output']>>;
10461
10881
  /** Tindaklanjut dari progress ini. */
@@ -10470,6 +10890,8 @@ export type Progress = {
10470
10890
  updatedBy?: Maybe<Scalars['ObjectId']['output']>;
10471
10891
  /** Who last updated this progress. */
10472
10892
  updater?: Maybe<User>;
10893
+ /** Catatan virtual. */
10894
+ virtualIsNotes?: Maybe<Scalars['String']['output']>;
10473
10895
  };
10474
10896
  export type ProgressPlansArgs = {
10475
10897
  filter?: InputMaybe<Scalars['Json']['input']>;
@@ -10519,9 +10941,11 @@ export type ProgressInput = {
10519
10941
  /** Progress */
10520
10942
  display?: InputMaybe<Scalars['String']['input']>;
10521
10943
  /** Berakhir Pada */
10522
- endedEst?: InputMaybe<Scalars['Date']['input']>;
10944
+ endedAt?: InputMaybe<Scalars['Date']['input']>;
10523
10945
  /** Progress */
10524
10946
  flag?: InputMaybe<Scalars['String']['input']>;
10947
+ /** Apakah ada catatan terkait progress ini? */
10948
+ isNotes?: InputMaybe<Scalars['Boolean']['input']>;
10525
10949
  /** Nama karyawan. */
10526
10950
  nameStaff?: InputMaybe<Scalars['String']['input']>;
10527
10951
  /** Relation IDs of Rencana. */
@@ -10533,9 +10957,9 @@ export type ProgressInput = {
10533
10957
  /** Relation ID of Restored By. */
10534
10958
  restoredBy?: InputMaybe<Scalars['ObjectId']['input']>;
10535
10959
  /** Relation ID of Siapa. */
10536
- staffId?: InputMaybe<Scalars['ObjectId']['input']>;
10960
+ staffIds?: InputMaybe<Scalars['ObjectId']['input']>;
10537
10961
  /** Dimulai Pada */
10538
- startedEst?: InputMaybe<Scalars['Date']['input']>;
10962
+ startedAt?: InputMaybe<Scalars['Date']['input']>;
10539
10963
  /** Relation IDs of Tindaklanjut. */
10540
10964
  submissionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
10541
10965
  /** When this progress was last synced. */
@@ -10546,6 +10970,8 @@ export type ProgressInput = {
10546
10970
  updatedAt?: InputMaybe<Scalars['Date']['input']>;
10547
10971
  /** Relation ID of Updated By. */
10548
10972
  updatedBy?: InputMaybe<Scalars['ObjectId']['input']>;
10973
+ /** Catatan virtual. */
10974
+ virtualIsNotes?: InputMaybe<Scalars['String']['input']>;
10549
10975
  };
10550
10976
  /** Single neu:personalia:progress response. */
10551
10977
  export type ProgressSingleResponse = {
@@ -10714,6 +11140,8 @@ export type Query = {
10714
11140
  applications?: Maybe<ApplicationCollectionResponse>;
10715
11141
  area?: Maybe<AreaSingleResponse>;
10716
11142
  areas?: Maybe<AreaCollectionResponse>;
11143
+ attendance?: Maybe<AttendanceSingleResponse>;
11144
+ attendances?: Maybe<AttendanceCollectionResponse>;
10717
11145
  branch?: Maybe<BranchSingleResponse>;
10718
11146
  branches?: Maybe<BranchCollectionResponse>;
10719
11147
  brand?: Maybe<BrandSingleResponse>;
@@ -10750,6 +11178,8 @@ export type Query = {
10750
11178
  countApplications?: Maybe<CountResponse>;
10751
11179
  /** Count neu:tempat:area items. */
10752
11180
  countAreas?: Maybe<CountResponse>;
11181
+ /** Count neu:personalia:attendance items. */
11182
+ countAttendances?: Maybe<CountResponse>;
10753
11183
  /** Count neu:tempat:branch items. */
10754
11184
  countBranches?: Maybe<CountResponse>;
10755
11185
  /** Count neu:tempat:brand items. */
@@ -11086,6 +11516,22 @@ export type QueryAreasArgs = {
11086
11516
  shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
11087
11517
  sort?: InputMaybe<Scalars['Json']['input']>;
11088
11518
  };
11519
+ export type QueryAttendanceArgs = {
11520
+ id: Scalars['ObjectId']['input'];
11521
+ logs?: InputMaybe<Array<Scalars['String']['input']>>;
11522
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
11523
+ };
11524
+ export type QueryAttendancesArgs = {
11525
+ filter?: InputMaybe<Scalars['Json']['input']>;
11526
+ ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
11527
+ limit?: InputMaybe<Scalars['Int']['input']>;
11528
+ logs?: InputMaybe<Array<Scalars['String']['input']>>;
11529
+ minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
11530
+ page?: InputMaybe<Scalars['Int']['input']>;
11531
+ search?: InputMaybe<Scalars['String']['input']>;
11532
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
11533
+ sort?: InputMaybe<Scalars['Json']['input']>;
11534
+ };
11089
11535
  export type QueryBranchArgs = {
11090
11536
  id: Scalars['ObjectId']['input'];
11091
11537
  logs?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -11354,6 +11800,17 @@ export type QueryCountAreasArgs = {
11354
11800
  shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
11355
11801
  sort?: InputMaybe<Scalars['Json']['input']>;
11356
11802
  };
11803
+ export type QueryCountAttendancesArgs = {
11804
+ filter?: InputMaybe<Scalars['Json']['input']>;
11805
+ ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
11806
+ limit?: InputMaybe<Scalars['Int']['input']>;
11807
+ logs?: InputMaybe<Array<Scalars['String']['input']>>;
11808
+ minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
11809
+ page?: InputMaybe<Scalars['Int']['input']>;
11810
+ search?: InputMaybe<Scalars['String']['input']>;
11811
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
11812
+ sort?: InputMaybe<Scalars['Json']['input']>;
11813
+ };
11357
11814
  export type QueryCountBranchesArgs = {
11358
11815
  filter?: InputMaybe<Scalars['Json']['input']>;
11359
11816
  ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
@@ -13376,12 +13833,16 @@ export type RoomSingleResponse = {
13376
13833
  item?: Maybe<Room>;
13377
13834
  };
13378
13835
  export type School = {
13836
+ /** School Accreditation. */
13837
+ accreditation?: Maybe<Scalars['String']['output']>;
13379
13838
  /** Relation IDs of Additional Stages. */
13380
13839
  additionalStageIds?: Maybe<Array<Scalars['ObjectId']['output']>>;
13381
13840
  /** Additional Stages of this school. */
13382
13841
  additionalStages?: Maybe<Array<Stage>>;
13383
13842
  /** Address of this school. */
13384
13843
  address?: Maybe<Scalars['String']['output']>;
13844
+ /** Detail Address of the school. */
13845
+ addressDetail?: Maybe<Scalars['String']['output']>;
13385
13846
  /** Inversed relation from Sekolah Tingkat S1 field of neu:akademik:student model. */
13386
13847
  bachelorStudents?: Maybe<Array<Student>>;
13387
13848
  /** Chain of this school. */
@@ -13392,6 +13853,8 @@ export type School = {
13392
13853
  city?: Maybe<City>;
13393
13854
  /** Relation ID of City. */
13394
13855
  cityId?: Maybe<Scalars['ObjectId']['output']>;
13856
+ /** Contacts of this school. */
13857
+ contacts?: Maybe<Array<Scalars['Json']['output']>>;
13395
13858
  /** Country of this school. */
13396
13859
  country?: Maybe<Country>;
13397
13860
  /** Relation ID of Country. */
@@ -13410,8 +13873,6 @@ export type School = {
13410
13873
  deletedBy?: Maybe<Scalars['ObjectId']['output']>;
13411
13874
  /** Who deleted this school. */
13412
13875
  deleter?: Maybe<User>;
13413
- /** Description of this school. */
13414
- description?: Maybe<Scalars['String']['output']>;
13415
13876
  /** DIKTI Code. */
13416
13877
  diktiCode?: Maybe<Scalars['String']['output']>;
13417
13878
  /** DIKTI ID. */
@@ -13436,8 +13897,12 @@ export type School = {
13436
13897
  id?: Maybe<Scalars['ID']['output']>;
13437
13898
  /** Inversed relation from Sekolah Tingkat SMP field of neu:akademik:student model. */
13438
13899
  juniorStudents?: Maybe<Array<Student>>;
13900
+ /** Labels of this school. */
13901
+ labels?: Maybe<Array<Scalars['Json']['output']>>;
13439
13902
  /** Latitude point of this school. */
13440
13903
  latitude?: Maybe<Scalars['String']['output']>;
13904
+ /** Logo must be 1:1 ratio. */
13905
+ logo?: Maybe<Scalars['Json']['output']>;
13441
13906
  /** Longitude point of this school. */
13442
13907
  longitude?: Maybe<Scalars['String']['output']>;
13443
13908
  /** Inversed relation from Sekolah Tingkat S2-S3 field of neu:akademik:student model. */
@@ -13448,12 +13913,20 @@ export type School = {
13448
13913
  note?: Maybe<Scalars['String']['output']>;
13449
13914
  /** Nomor Pokok Sekolah Nasional. */
13450
13915
  npsn?: Maybe<Scalars['String']['output']>;
13916
+ /** Path of this school. */
13917
+ path?: Maybe<Scalars['String']['output']>;
13451
13918
  /** Inversed relation from Sekolah Tingkat TK field of neu:akademik:student model. */
13452
13919
  playgroupStudents?: Maybe<Array<Student>>;
13920
+ /** Profile of this school. */
13921
+ profile?: Maybe<Scalars['String']['output']>;
13453
13922
  /** Province of the school. */
13454
13923
  province?: Maybe<Province>;
13455
13924
  /** Relation ID of Province. */
13456
13925
  provinceId?: Maybe<Scalars['ObjectId']['output']>;
13926
+ /** Publishing status of school. */
13927
+ publishing?: Maybe<Scalars['String']['output']>;
13928
+ /** Region of the school. */
13929
+ region?: Maybe<Scalars['String']['output']>;
13457
13930
  /** When this school was restored. */
13458
13931
  restoredAt?: Maybe<Scalars['Date']['output']>;
13459
13932
  /** Relation ID of Restored By. */
@@ -13462,6 +13935,8 @@ export type School = {
13462
13935
  restorer?: Maybe<User>;
13463
13936
  /** Inversed relation from Sekolah Tingkat SMA field of neu:akademik:student model. */
13464
13937
  seniorStudents?: Maybe<Array<Student>>;
13938
+ /** School slug, will be used for school URL. */
13939
+ slug?: Maybe<Scalars['String']['output']>;
13465
13940
  /** Inversed relation from Asal Sekolah field of neu:penilaian:gradingInsert model. */
13466
13941
  sourceGradingInserts?: Maybe<Array<GradingInsert>>;
13467
13942
  /** Inversed relation from Sekolah field of neu:penilaian:gradingRasionalization model. */
@@ -13484,7 +13959,7 @@ export type School = {
13484
13959
  syncedAt?: Maybe<Scalars['Date']['output']>;
13485
13960
  /** Inversed relation from Sekolah Lanjutan field of neu:akademik:testimonial model. */
13486
13961
  testimonials?: Maybe<Array<Testimonial>>;
13487
- /** School type. */
13962
+ /** Type of this school.. */
13488
13963
  type?: Maybe<Scalars['String']['output']>;
13489
13964
  /** Internal type of this school. */
13490
13965
  type__?: Maybe<Scalars['String']['output']>;
@@ -13620,14 +14095,20 @@ export type SchoolCollectionResponse = {
13620
14095
  items?: Maybe<Array<School>>;
13621
14096
  };
13622
14097
  export type SchoolInput = {
14098
+ /** School Accreditation. */
14099
+ accreditation?: InputMaybe<Scalars['String']['input']>;
13623
14100
  /** Relation IDs of Additional Stages. */
13624
14101
  additionalStageIds?: InputMaybe<Array<Scalars['ID']['input']>>;
13625
14102
  /** Address of this school. */
13626
14103
  address?: InputMaybe<Scalars['String']['input']>;
14104
+ /** Detail Address of the school. */
14105
+ addressDetail?: InputMaybe<Scalars['String']['input']>;
13627
14106
  /** Relation ID of Chain. */
13628
14107
  chainId?: InputMaybe<Scalars['ObjectId']['input']>;
13629
14108
  /** Relation ID of City. */
13630
14109
  cityId?: InputMaybe<Scalars['ObjectId']['input']>;
14110
+ /** Contacts of this school. */
14111
+ contacts?: InputMaybe<Array<Scalars['Any']['input']>>;
13631
14112
  /** Relation ID of Country. */
13632
14113
  countryId?: InputMaybe<Scalars['ObjectId']['input']>;
13633
14114
  /** Cover of this school. */
@@ -13640,8 +14121,6 @@ export type SchoolInput = {
13640
14121
  deletedAt?: InputMaybe<Scalars['Date']['input']>;
13641
14122
  /** Relation ID of Deleted By. */
13642
14123
  deletedBy?: InputMaybe<Scalars['ObjectId']['input']>;
13643
- /** Description of this school. */
13644
- description?: InputMaybe<Scalars['String']['input']>;
13645
14124
  /** DIKTI Code. */
13646
14125
  diktiCode?: InputMaybe<Scalars['String']['input']>;
13647
14126
  /** DIKTI ID. */
@@ -13656,8 +14135,12 @@ export type SchoolInput = {
13656
14135
  districtId?: InputMaybe<Scalars['ObjectId']['input']>;
13657
14136
  /** School */
13658
14137
  flag?: InputMaybe<Scalars['String']['input']>;
14138
+ /** Labels of this school. */
14139
+ labels?: InputMaybe<Array<Scalars['Any']['input']>>;
13659
14140
  /** Latitude point of this school. */
13660
14141
  latitude?: InputMaybe<Scalars['String']['input']>;
14142
+ /** Logo must be 1:1 ratio. */
14143
+ logo?: InputMaybe<Scalars['Any']['input']>;
13661
14144
  /** Longitude point of this school. */
13662
14145
  longitude?: InputMaybe<Scalars['String']['input']>;
13663
14146
  /** School name. */
@@ -13666,12 +14149,22 @@ export type SchoolInput = {
13666
14149
  note?: InputMaybe<Scalars['String']['input']>;
13667
14150
  /** Nomor Pokok Sekolah Nasional. */
13668
14151
  npsn?: InputMaybe<Scalars['String']['input']>;
14152
+ /** Path of this school. */
14153
+ path?: InputMaybe<Scalars['String']['input']>;
14154
+ /** Profile of this school. */
14155
+ profile?: InputMaybe<Scalars['String']['input']>;
13669
14156
  /** Relation ID of Province. */
13670
14157
  provinceId?: InputMaybe<Scalars['ObjectId']['input']>;
14158
+ /** Publishing status of school. */
14159
+ publishing?: InputMaybe<Scalars['String']['input']>;
14160
+ /** Region of the school. */
14161
+ region?: InputMaybe<Scalars['String']['input']>;
13671
14162
  /** When this school was restored. */
13672
14163
  restoredAt?: InputMaybe<Scalars['Date']['input']>;
13673
14164
  /** Relation ID of Restored By. */
13674
14165
  restoredBy?: InputMaybe<Scalars['ObjectId']['input']>;
14166
+ /** School slug, will be used for school URL. */
14167
+ slug?: InputMaybe<Scalars['String']['input']>;
13675
14168
  /** Relation ID of Stage. */
13676
14169
  stageId?: InputMaybe<Scalars['ObjectId']['input']>;
13677
14170
  /** Relation ID of Stage Variant. */
@@ -13682,7 +14175,7 @@ export type SchoolInput = {
13682
14175
  subdistrictId?: InputMaybe<Scalars['ObjectId']['input']>;
13683
14176
  /** When this school was last synced. */
13684
14177
  syncedAt?: InputMaybe<Scalars['Date']['input']>;
13685
- /** School type. */
14178
+ /** Type of this school.. */
13686
14179
  type?: InputMaybe<Scalars['String']['input']>;
13687
14180
  /** Internal type of this school. */
13688
14181
  type__?: InputMaybe<Scalars['String']['input']>;
@@ -13767,7 +14260,7 @@ export type SchoolRankGroup = {
13767
14260
  gradingTypes?: Maybe<Array<GradingType>>;
13768
14261
  /** Object ID. */
13769
14262
  id?: Maybe<Scalars['ID']['output']>;
13770
- /** Name of this discipline. */
14263
+ /** Name of this rank group. */
13771
14264
  name?: Maybe<Scalars['String']['output']>;
13772
14265
  /** When this rank group was restored. */
13773
14266
  restoredAt?: Maybe<Scalars['Date']['output']>;
@@ -13823,7 +14316,7 @@ export type SchoolRankGroupInput = {
13823
14316
  endedAt?: InputMaybe<Scalars['Date']['input']>;
13824
14317
  /** Rank Group */
13825
14318
  flag?: InputMaybe<Scalars['String']['input']>;
13826
- /** Name of this discipline. */
14319
+ /** Name of this rank group. */
13827
14320
  name?: InputMaybe<Scalars['String']['input']>;
13828
14321
  /** When this rank group was restored. */
13829
14322
  restoredAt?: InputMaybe<Scalars['Date']['input']>;
@@ -14486,6 +14979,8 @@ export type Staff = {
14486
14979
  createdBy?: Maybe<Scalars['ObjectId']['output']>;
14487
14980
  /** Who created this karyawan. */
14488
14981
  creator?: Maybe<User>;
14982
+ /** Inversed relation from Siapa Memutuskan field of neu:personalia:attendance model. */
14983
+ decideStaffAttendance?: Maybe<Array<Attendance>>;
14489
14984
  /** Inversed relation from Siapa Memutuskan field of neu:personalia:submission model. */
14490
14985
  decideStaffSubmissions?: Maybe<Array<Submission>>;
14491
14986
  /** Inversed relation from Siapa Menunda field of neu:personalia:submission model. */
@@ -14544,6 +15039,8 @@ export type Staff = {
14544
15039
  staffWorkResponsibilities?: Maybe<Array<Responsibility>>;
14545
15040
  /** Inversed relation from Siapa Mengajukan field of neu:personalia:submission model. */
14546
15041
  submissionStaffSubmissions?: Maybe<Array<Submission>>;
15042
+ /** Inversed relation from Siapa Mengajukan field of neu:personalia:attendance model. */
15043
+ submitStaffAttendance?: Maybe<Array<Attendance>>;
14547
15044
  /** Inversed relation from Mensupervisi field of neu:personalia:task model. */
14548
15045
  supervisingAssignments?: Maybe<Array<Task>>;
14549
15046
  /** When this karyawan was last synced. */
@@ -14588,6 +15085,15 @@ export type StaffCheckInsArgs = {
14588
15085
  search?: InputMaybe<Scalars['String']['input']>;
14589
15086
  sort?: InputMaybe<Scalars['Json']['input']>;
14590
15087
  };
15088
+ export type StaffDecideStaffAttendanceArgs = {
15089
+ filter?: InputMaybe<Scalars['Json']['input']>;
15090
+ ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
15091
+ limit?: InputMaybe<Scalars['Int']['input']>;
15092
+ minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
15093
+ page?: InputMaybe<Scalars['Int']['input']>;
15094
+ search?: InputMaybe<Scalars['String']['input']>;
15095
+ sort?: InputMaybe<Scalars['Json']['input']>;
15096
+ };
14591
15097
  export type StaffDecideStaffSubmissionsArgs = {
14592
15098
  filter?: InputMaybe<Scalars['Json']['input']>;
14593
15099
  ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
@@ -14732,6 +15238,15 @@ export type StaffSubmissionStaffSubmissionsArgs = {
14732
15238
  search?: InputMaybe<Scalars['String']['input']>;
14733
15239
  sort?: InputMaybe<Scalars['Json']['input']>;
14734
15240
  };
15241
+ export type StaffSubmitStaffAttendanceArgs = {
15242
+ filter?: InputMaybe<Scalars['Json']['input']>;
15243
+ ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
15244
+ limit?: InputMaybe<Scalars['Int']['input']>;
15245
+ minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
15246
+ page?: InputMaybe<Scalars['Int']['input']>;
15247
+ search?: InputMaybe<Scalars['String']['input']>;
15248
+ sort?: InputMaybe<Scalars['Json']['input']>;
15249
+ };
14735
15250
  export type StaffSupervisingAssignmentsArgs = {
14736
15251
  filter?: InputMaybe<Scalars['Json']['input']>;
14737
15252
  ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
@@ -14855,6 +15370,8 @@ export type Stage = {
14855
15370
  /** Inversed relation from Segmentasi field of neu:personalia:plan model. */
14856
15371
  stagePlans?: Maybe<Array<Plan>>;
14857
15372
  /** Inversed relation from Jenjang Studi field of neu:akademik:studyLevel model. */
15373
+ stageStudies?: Maybe<Array<StudyLevel>>;
15374
+ /** Inversed relation from Jenjang Studi field of neu:akademik:studyLevel model. */
14858
15375
  stageStudyLevels?: Maybe<Array<StudyLevel>>;
14859
15376
  /** Inversed relation from Jenjang field of neu:personalia:target model. */
14860
15377
  stageTargets?: Maybe<Array<Target>>;
@@ -14962,6 +15479,15 @@ export type StageStagePlansArgs = {
14962
15479
  search?: InputMaybe<Scalars['String']['input']>;
14963
15480
  sort?: InputMaybe<Scalars['Json']['input']>;
14964
15481
  };
15482
+ export type StageStageStudiesArgs = {
15483
+ filter?: InputMaybe<Scalars['Json']['input']>;
15484
+ ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
15485
+ limit?: InputMaybe<Scalars['Int']['input']>;
15486
+ minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
15487
+ page?: InputMaybe<Scalars['Int']['input']>;
15488
+ search?: InputMaybe<Scalars['String']['input']>;
15489
+ sort?: InputMaybe<Scalars['Json']['input']>;
15490
+ };
14965
15491
  export type StageStageStudyLevelsArgs = {
14966
15492
  filter?: InputMaybe<Scalars['Json']['input']>;
14967
15493
  ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
@@ -15659,6 +16185,10 @@ export type StudyLevel = {
15659
16185
  stage?: Maybe<Stage>;
15660
16186
  /** Relation ID of Jenjang Studi. */
15661
16187
  stageId?: Maybe<Scalars['ObjectId']['output']>;
16188
+ /** Relation IDs of Jenjang Studi. */
16189
+ stageIds?: Maybe<Array<Scalars['ObjectId']['output']>>;
16190
+ /** Jenjang studi dari tingkat studi ini. */
16191
+ stages?: Maybe<Array<Stage>>;
15662
16192
  /** Level status. */
15663
16193
  status?: Maybe<Scalars['String']['output']>;
15664
16194
  /** Inversed relation from Tingkat Studi field of neu:akademik:student model. */
@@ -15683,6 +16213,15 @@ export type StudyLevelBranchesArgs = {
15683
16213
  search?: InputMaybe<Scalars['String']['input']>;
15684
16214
  sort?: InputMaybe<Scalars['Json']['input']>;
15685
16215
  };
16216
+ export type StudyLevelStagesArgs = {
16217
+ filter?: InputMaybe<Scalars['Json']['input']>;
16218
+ ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
16219
+ limit?: InputMaybe<Scalars['Int']['input']>;
16220
+ minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
16221
+ page?: InputMaybe<Scalars['Int']['input']>;
16222
+ search?: InputMaybe<Scalars['String']['input']>;
16223
+ sort?: InputMaybe<Scalars['Json']['input']>;
16224
+ };
15686
16225
  export type StudyLevelStudentsArgs = {
15687
16226
  filter?: InputMaybe<Scalars['Json']['input']>;
15688
16227
  ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
@@ -15724,6 +16263,8 @@ export type StudyLevelInput = {
15724
16263
  restoredBy?: InputMaybe<Scalars['ObjectId']['input']>;
15725
16264
  /** Relation ID of Jenjang Studi. */
15726
16265
  stageId?: InputMaybe<Scalars['ObjectId']['input']>;
16266
+ /** Relation IDs of Jenjang Studi. */
16267
+ stageIds?: InputMaybe<Array<Scalars['ID']['input']>>;
15727
16268
  /** Level status. */
15728
16269
  status?: InputMaybe<Scalars['String']['input']>;
15729
16270
  /** When this tingkat studi was last synced. */
@@ -16409,6 +16950,12 @@ export type Subscription = {
16409
16950
  areaDeleted?: Maybe<Area>;
16410
16951
  /** One neu:tempat:area item updated. */
16411
16952
  areaUpdated?: Maybe<Area>;
16953
+ /** One neu:personalia:attendance item created. */
16954
+ attendanceCreated?: Maybe<Attendance>;
16955
+ /** One neu:personalia:attendance item deleted. */
16956
+ attendanceDeleted?: Maybe<Attendance>;
16957
+ /** One neu:personalia:attendance item updated. */
16958
+ attendanceUpdated?: Maybe<Attendance>;
16412
16959
  /** One neu:tempat:branch item created. */
16413
16960
  branchCreated?: Maybe<Branch>;
16414
16961
  /** One neu:tempat:branch item deleted. */
@@ -16986,6 +17533,36 @@ export type SubscriptionAreaUpdatedArgs = {
16986
17533
  shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
16987
17534
  sort?: InputMaybe<Scalars['Json']['input']>;
16988
17535
  };
17536
+ export type SubscriptionAttendanceCreatedArgs = {
17537
+ filter?: InputMaybe<Scalars['Json']['input']>;
17538
+ ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
17539
+ limit?: InputMaybe<Scalars['Int']['input']>;
17540
+ minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
17541
+ page?: InputMaybe<Scalars['Int']['input']>;
17542
+ search?: InputMaybe<Scalars['String']['input']>;
17543
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
17544
+ sort?: InputMaybe<Scalars['Json']['input']>;
17545
+ };
17546
+ export type SubscriptionAttendanceDeletedArgs = {
17547
+ filter?: InputMaybe<Scalars['Json']['input']>;
17548
+ ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
17549
+ limit?: InputMaybe<Scalars['Int']['input']>;
17550
+ minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
17551
+ page?: InputMaybe<Scalars['Int']['input']>;
17552
+ search?: InputMaybe<Scalars['String']['input']>;
17553
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
17554
+ sort?: InputMaybe<Scalars['Json']['input']>;
17555
+ };
17556
+ export type SubscriptionAttendanceUpdatedArgs = {
17557
+ filter?: InputMaybe<Scalars['Json']['input']>;
17558
+ ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
17559
+ limit?: InputMaybe<Scalars['Int']['input']>;
17560
+ minUpdatedAt?: InputMaybe<Scalars['Date']['input']>;
17561
+ page?: InputMaybe<Scalars['Int']['input']>;
17562
+ search?: InputMaybe<Scalars['String']['input']>;
17563
+ shortcuts?: InputMaybe<Array<Scalars['String']['input']>>;
17564
+ sort?: InputMaybe<Scalars['Json']['input']>;
17565
+ };
16989
17566
  export type SubscriptionBranchCreatedArgs = {
16990
17567
  filter?: InputMaybe<Scalars['Json']['input']>;
16991
17568
  ids?: InputMaybe<Array<Scalars['ObjectId']['input']>>;
@@ -18847,7 +19424,7 @@ export type Target = {
18847
19424
  /** Sasaran */
18848
19425
  display?: Maybe<Scalars['String']['output']>;
18849
19426
  /** Estimasi selesai dari sasaran. */
18850
- endedEst?: Maybe<Scalars['Date']['output']>;
19427
+ endedAt?: Maybe<Scalars['Date']['output']>;
18851
19428
  /** Sasaran */
18852
19429
  flag?: Maybe<Scalars['String']['output']>;
18853
19430
  /** Object ID. */
@@ -18869,7 +19446,7 @@ export type Target = {
18869
19446
  /** Jenjang dari sasaran. */
18870
19447
  stages?: Maybe<Array<Stage>>;
18871
19448
  /** Estimasi mulai dari sasaran. */
18872
- startedEst?: Maybe<Scalars['Date']['output']>;
19449
+ startedAt?: Maybe<Scalars['Date']['output']>;
18873
19450
  /** When this sasaran was last synced. */
18874
19451
  syncedAt?: Maybe<Scalars['Date']['output']>;
18875
19452
  /** Estimasi sasaran. */
@@ -18937,7 +19514,7 @@ export type TargetInput = {
18937
19514
  /** Sasaran */
18938
19515
  display?: InputMaybe<Scalars['String']['input']>;
18939
19516
  /** Estimasi selesai dari sasaran. */
18940
- endedEst?: InputMaybe<Scalars['Date']['input']>;
19517
+ endedAt?: InputMaybe<Scalars['Date']['input']>;
18941
19518
  /** Sasaran */
18942
19519
  flag?: InputMaybe<Scalars['String']['input']>;
18943
19520
  /** Sasaran. */
@@ -18951,7 +19528,7 @@ export type TargetInput = {
18951
19528
  /** Relation IDs of Jenjang. */
18952
19529
  stageIds?: InputMaybe<Array<Scalars['ID']['input']>>;
18953
19530
  /** Estimasi mulai dari sasaran. */
18954
- startedEst?: InputMaybe<Scalars['Date']['input']>;
19531
+ startedAt?: InputMaybe<Scalars['Date']['input']>;
18955
19532
  /** When this sasaran was last synced. */
18956
19533
  syncedAt?: InputMaybe<Scalars['Date']['input']>;
18957
19534
  /** Estimasi sasaran. */