@things-factory/operato-gangsters 6.2.82 → 6.2.85
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-client/menu.d.ts +13 -0
- package/dist-client/menu.js +27 -0
- package/dist-client/menu.js.map +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/package.json +28 -27
- package/schema.graphql +890 -38
- package/translations/ko.json +8 -1
package/schema.graphql
CHANGED
|
@@ -441,7 +441,7 @@ type AppBinding {
|
|
|
441
441
|
creator: User!
|
|
442
442
|
description: String
|
|
443
443
|
domains: [Domain!]!
|
|
444
|
-
email:
|
|
444
|
+
email: EmailAddress!
|
|
445
445
|
id: ID!
|
|
446
446
|
locale: String
|
|
447
447
|
name: String!
|
|
@@ -504,7 +504,7 @@ type Application {
|
|
|
504
504
|
creator: User
|
|
505
505
|
description: String
|
|
506
506
|
domain: Domain!
|
|
507
|
-
email:
|
|
507
|
+
email: EmailAddress!
|
|
508
508
|
icon: String
|
|
509
509
|
id: ID!
|
|
510
510
|
name: String!
|
|
@@ -524,7 +524,7 @@ type ApplicationList {
|
|
|
524
524
|
|
|
525
525
|
input ApplicationPatch {
|
|
526
526
|
description: String
|
|
527
|
-
email:
|
|
527
|
+
email: EmailAddress
|
|
528
528
|
icon: String
|
|
529
529
|
name: String
|
|
530
530
|
redirectUrl: String
|
|
@@ -1002,7 +1002,7 @@ type Contact {
|
|
|
1002
1002
|
deletedAt: DateTimeISO
|
|
1003
1003
|
department: String
|
|
1004
1004
|
domain: Domain
|
|
1005
|
-
email:
|
|
1005
|
+
email: EmailAddress
|
|
1006
1006
|
id: ID!
|
|
1007
1007
|
items: [ContactItem!]
|
|
1008
1008
|
name: String
|
|
@@ -1035,7 +1035,7 @@ input ContactPatch {
|
|
|
1035
1035
|
company: String
|
|
1036
1036
|
cuFlag: String
|
|
1037
1037
|
department: String
|
|
1038
|
-
email:
|
|
1038
|
+
email: EmailAddress
|
|
1039
1039
|
id: ID
|
|
1040
1040
|
items: [ContactItemPatch!]
|
|
1041
1041
|
name: String
|
|
@@ -1066,7 +1066,7 @@ scalar DateTimeISO
|
|
|
1066
1066
|
"""Entity for Department"""
|
|
1067
1067
|
type Department {
|
|
1068
1068
|
active: Boolean
|
|
1069
|
-
children: [Department!]!
|
|
1069
|
+
children(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): [Department!]!
|
|
1070
1070
|
controlNo: String!
|
|
1071
1071
|
createdAt: DateTimeISO
|
|
1072
1072
|
creator: User
|
|
@@ -1117,9 +1117,11 @@ type Domain {
|
|
|
1117
1117
|
children: Domain
|
|
1118
1118
|
contentImage: String
|
|
1119
1119
|
createdAt: DateTimeISO
|
|
1120
|
+
deletedAt: DateTimeISO
|
|
1120
1121
|
description: String
|
|
1121
1122
|
extType: String
|
|
1122
1123
|
id: ID!
|
|
1124
|
+
iplist: Object
|
|
1123
1125
|
name: String!
|
|
1124
1126
|
owner: String
|
|
1125
1127
|
ownerUser: User
|
|
@@ -1168,6 +1170,11 @@ input DomainUserRoleInput {
|
|
|
1168
1170
|
users: [NewUserByDomainWizardInput!]!
|
|
1169
1171
|
}
|
|
1170
1172
|
|
|
1173
|
+
"""
|
|
1174
|
+
A field whose value conforms to the standard internet email address format as specified in HTML Spec: https://html.spec.whatwg.org/multipage/input.html#valid-e-mail-address.
|
|
1175
|
+
"""
|
|
1176
|
+
scalar EmailAddress @specifiedBy(url: "https://html.spec.whatwg.org/multipage/input.html#valid-e-mail-address")
|
|
1177
|
+
|
|
1171
1178
|
"""Entity for Employee"""
|
|
1172
1179
|
type Employee {
|
|
1173
1180
|
active: Boolean
|
|
@@ -1181,7 +1188,7 @@ type Employee {
|
|
|
1181
1188
|
deletedAt: DateTimeISO
|
|
1182
1189
|
department: Department
|
|
1183
1190
|
domain: Domain
|
|
1184
|
-
email:
|
|
1191
|
+
email: EmailAddress
|
|
1185
1192
|
extension: String
|
|
1186
1193
|
hiredOn: String
|
|
1187
1194
|
id: ID!
|
|
@@ -1552,7 +1559,7 @@ type InstallableActivityList {
|
|
|
1552
1559
|
type Invitation {
|
|
1553
1560
|
createdAt: DateTimeISO
|
|
1554
1561
|
creator: User
|
|
1555
|
-
email:
|
|
1562
|
+
email: EmailAddress!
|
|
1556
1563
|
id: ID!
|
|
1557
1564
|
reference: String!
|
|
1558
1565
|
token: String!
|
|
@@ -1566,6 +1573,11 @@ type InvitationList {
|
|
|
1566
1573
|
total: Int
|
|
1567
1574
|
}
|
|
1568
1575
|
|
|
1576
|
+
"""
|
|
1577
|
+
A field whose value is a JSON Web Token (JWT): https://jwt.io/introduction.
|
|
1578
|
+
"""
|
|
1579
|
+
scalar JWT
|
|
1580
|
+
|
|
1569
1581
|
"""Entity for LiteMenu"""
|
|
1570
1582
|
type LiteMenu {
|
|
1571
1583
|
active: Boolean
|
|
@@ -2016,7 +2028,7 @@ type Mutation {
|
|
|
2016
2028
|
|
|
2017
2029
|
"""To attach a contact on Employee"""
|
|
2018
2030
|
attachContact(contactId: String!, id: String!): Employee!
|
|
2019
|
-
cancelInvitation(email:
|
|
2031
|
+
cancelInvitation(email: EmailAddress!, reference: String!, type: String!): Boolean!
|
|
2020
2032
|
|
|
2021
2033
|
"""To clone a Board from existing Board"""
|
|
2022
2034
|
cloneBoard(id: String!, patch: BoardPatch!, targetGroupId: String, targetSubdomain: String!): Board!
|
|
@@ -2146,6 +2158,18 @@ type Mutation {
|
|
|
2146
2158
|
"""To create new Setting"""
|
|
2147
2159
|
createSetting(setting: NewSetting!): Setting!
|
|
2148
2160
|
|
|
2161
|
+
"""To create new StateRegister"""
|
|
2162
|
+
createStateRegister(stateRegister: NewStateRegister!): StateRegister!
|
|
2163
|
+
|
|
2164
|
+
"""To create new TaxAuditResult"""
|
|
2165
|
+
createTaxAuditResult(taxAuditResult: NewTaxAuditResult!): TaxAuditResult!
|
|
2166
|
+
|
|
2167
|
+
"""To create new TaxInvoice"""
|
|
2168
|
+
createTaxInvoice(taxInvoice: NewTaxInvoice!): TaxInvoice!
|
|
2169
|
+
|
|
2170
|
+
"""To create new TaxInvoiceItem"""
|
|
2171
|
+
createTaxInvoiceItem(taxInvoiceItem: NewTaxInvoiceItem!): TaxInvoiceItem!
|
|
2172
|
+
|
|
2149
2173
|
"""To create new Terminology"""
|
|
2150
2174
|
createTerminology(terminology: NewTerminology!): Terminology!
|
|
2151
2175
|
|
|
@@ -2241,7 +2265,7 @@ type Mutation {
|
|
|
2241
2265
|
deleteDomain(name: String!): Domain!
|
|
2242
2266
|
|
|
2243
2267
|
"""To delete domain user"""
|
|
2244
|
-
deleteDomainUser(email:
|
|
2268
|
+
deleteDomainUser(email: EmailAddress!): Boolean!
|
|
2245
2269
|
|
|
2246
2270
|
"""To delete multiple domains (Only superuser is granted this privilege.)"""
|
|
2247
2271
|
deleteDomains(names: [String!]!): Boolean!
|
|
@@ -2381,9 +2405,39 @@ type Mutation {
|
|
|
2381
2405
|
"""To delete multiple settings"""
|
|
2382
2406
|
deleteSettings(names: [String!]!): Boolean!
|
|
2383
2407
|
|
|
2408
|
+
"""To delete StateRegister"""
|
|
2409
|
+
deleteStateRegister(id: String!): Boolean!
|
|
2410
|
+
|
|
2411
|
+
"""To delete multiple StateRegisters"""
|
|
2412
|
+
deleteStateRegisters(ids: [String!]!): Boolean!
|
|
2413
|
+
|
|
2384
2414
|
"""To delete multiple steps"""
|
|
2385
2415
|
deleteSteps(ids: [String!]!): Boolean!
|
|
2386
2416
|
|
|
2417
|
+
"""To delete TaxAuditResult"""
|
|
2418
|
+
deleteTaxAuditResult(id: String!): Boolean!
|
|
2419
|
+
|
|
2420
|
+
"""To delete multiple TaxAuditResults"""
|
|
2421
|
+
deleteTaxAuditResults(ids: [String!]!): Boolean!
|
|
2422
|
+
|
|
2423
|
+
"""To delete TaxInvoice"""
|
|
2424
|
+
deleteTaxInvoice(id: String!): Boolean!
|
|
2425
|
+
|
|
2426
|
+
"""To delete multiple Tax Invoice Api"""
|
|
2427
|
+
deleteTaxInvoiceApis(ids: [String!]!): Boolean!
|
|
2428
|
+
|
|
2429
|
+
"""To delete multiple TaxInvoiceCompanies"""
|
|
2430
|
+
deleteTaxInvoiceCompanies(ids: [String!]!): Boolean!
|
|
2431
|
+
|
|
2432
|
+
"""To delete TaxInvoiceItem"""
|
|
2433
|
+
deleteTaxInvoiceItem(id: String!): Boolean!
|
|
2434
|
+
|
|
2435
|
+
"""To delete multiple TaxInvoiceItems"""
|
|
2436
|
+
deleteTaxInvoiceItems(ids: [String!]!): Boolean!
|
|
2437
|
+
|
|
2438
|
+
"""To delete multiple TaxInvoices"""
|
|
2439
|
+
deleteTaxInvoices(ids: [String!]!): Boolean!
|
|
2440
|
+
|
|
2387
2441
|
"""To delete multiple Terminologies"""
|
|
2388
2442
|
deleteTerminologies(ids: [String!]!): Boolean!
|
|
2389
2443
|
|
|
@@ -2397,7 +2451,7 @@ type Mutation {
|
|
|
2397
2451
|
deleteThemes(ids: [String!]!): Boolean!
|
|
2398
2452
|
|
|
2399
2453
|
"""To delete a user"""
|
|
2400
|
-
deleteUser(email:
|
|
2454
|
+
deleteUser(email: EmailAddress!): Boolean!
|
|
2401
2455
|
|
|
2402
2456
|
"""To delete some users"""
|
|
2403
2457
|
deleteUsers(emails: [String!]!): Boolean!
|
|
@@ -2489,6 +2543,21 @@ type Mutation {
|
|
|
2489
2543
|
"""To import multiple scenarios"""
|
|
2490
2544
|
importScenarios(scenarios: [ScenarioPatch!]!): Boolean!
|
|
2491
2545
|
|
|
2546
|
+
"""To import multiple StateRegisters"""
|
|
2547
|
+
importStateRegisters(stateRegisters: [StateRegisterPatch!]!): Boolean!
|
|
2548
|
+
|
|
2549
|
+
"""To import multiple TaxAuditResults"""
|
|
2550
|
+
importTaxAuditResults(taxAuditResults: [TaxAuditResultPatch!]!): Boolean!
|
|
2551
|
+
|
|
2552
|
+
"""To import multiple TaxInvoiceCompanies"""
|
|
2553
|
+
importTaxInvoiceCompanies(taxInvoiceCompanies: [TaxInvoiceCompanyPatch!]!): Boolean!
|
|
2554
|
+
|
|
2555
|
+
"""To import multiple TaxInvoiceItems"""
|
|
2556
|
+
importTaxInvoiceItems(taxInvoiceItems: [TaxInvoiceItemPatch!]!): Boolean!
|
|
2557
|
+
|
|
2558
|
+
"""To import multiple TaxInvoices"""
|
|
2559
|
+
importTaxInvoices(taxInvoices: [TaxInvoicePatch!]!): Boolean!
|
|
2560
|
+
|
|
2492
2561
|
"""To import multiple Terminologies"""
|
|
2493
2562
|
importTerminologies(terminologies: [TerminologyPatch!]!): Boolean!
|
|
2494
2563
|
|
|
@@ -2500,7 +2569,7 @@ type Mutation {
|
|
|
2500
2569
|
inviteCustomer(customerDomainName: String!): Boolean!
|
|
2501
2570
|
|
|
2502
2571
|
"""To invite new user"""
|
|
2503
|
-
inviteUser(email:
|
|
2572
|
+
inviteUser(email: EmailAddress!): Boolean!
|
|
2504
2573
|
|
|
2505
2574
|
"""To issue standard ActivityInstance"""
|
|
2506
2575
|
issueActivityInstance(activityInstance: ActivityInstanceIssue!): ActivityInstance!
|
|
@@ -2567,7 +2636,7 @@ type Mutation {
|
|
|
2567
2636
|
|
|
2568
2637
|
"""To save ActivityThread information"""
|
|
2569
2638
|
saveActivityThread(id: String!, save: ActivityThreadSave!): ActivityThread!
|
|
2570
|
-
sendInvitation(email:
|
|
2639
|
+
sendInvitation(email: EmailAddress!, reference: String!, type: String!): Invitation!
|
|
2571
2640
|
singleUpload(file: Upload!): Attachment!
|
|
2572
2641
|
|
|
2573
2642
|
"""To start posting activity based on the schedule of the given activity"""
|
|
@@ -2604,7 +2673,7 @@ type Mutation {
|
|
|
2604
2673
|
terminateContract(partnerName: String!): Boolean!
|
|
2605
2674
|
|
|
2606
2675
|
"""To transfer owner of domain"""
|
|
2607
|
-
transferOwner(email:
|
|
2676
|
+
transferOwner(email: EmailAddress!): Boolean!
|
|
2608
2677
|
|
|
2609
2678
|
"""To modify Activity information"""
|
|
2610
2679
|
updateActivity(id: String!, patch: ActivityPatch!): Activity!
|
|
@@ -2651,7 +2720,7 @@ type Mutation {
|
|
|
2651
2720
|
"""To update domain (Only superuser is granted this privilege.)"""
|
|
2652
2721
|
updateDomain(name: String!, patch: DomainPatch!): Domain!
|
|
2653
2722
|
|
|
2654
|
-
"""To update multiple domains"""
|
|
2723
|
+
"""To update multiple domains (Only superuser is granted this privilege.)"""
|
|
2655
2724
|
updateDomains(patches: [DomainPatch!]!): Boolean!
|
|
2656
2725
|
|
|
2657
2726
|
"""To modify Employee information"""
|
|
@@ -2754,9 +2823,27 @@ type Mutation {
|
|
|
2754
2823
|
"""To modify multiple Settings' information"""
|
|
2755
2824
|
updateMultipleSetting(patches: [SettingPatch!]!): [Setting!]!
|
|
2756
2825
|
|
|
2826
|
+
"""To modify multiple StateRegisters' information"""
|
|
2827
|
+
updateMultipleStateRegister(patches: [StateRegisterPatch!]!): [StateRegister!]!
|
|
2828
|
+
|
|
2757
2829
|
"""To modify multiple steps' in a scenario"""
|
|
2758
2830
|
updateMultipleStep(patches: [StepPatch!]!, scenarioId: String!): [Step!]!
|
|
2759
2831
|
|
|
2832
|
+
"""To modify multiple TaxAuditResults' information"""
|
|
2833
|
+
updateMultipleTaxAuditResult(patches: [TaxAuditResultPatch!]!): [TaxAuditResult!]!
|
|
2834
|
+
|
|
2835
|
+
"""To modify multiple TaxInvoices' information"""
|
|
2836
|
+
updateMultipleTaxInvoice(patches: [TaxInvoicePatch!]!): [TaxInvoice!]!
|
|
2837
|
+
|
|
2838
|
+
"""To modify multiple Tax Invoice Api information"""
|
|
2839
|
+
updateMultipleTaxInvoiceApis(patches: [TaxInvoiceApiPatch!]!): [TaxInvoiceApi!]!
|
|
2840
|
+
|
|
2841
|
+
"""To modify multiple TaxInvoiceCompanies' information"""
|
|
2842
|
+
updateMultipleTaxInvoiceCompany(patches: [TaxInvoiceCompanyPatch!]!): [TaxInvoiceCompany!]!
|
|
2843
|
+
|
|
2844
|
+
"""To modify multiple TaxInvoiceItems' information"""
|
|
2845
|
+
updateMultipleTaxInvoiceItem(patches: [TaxInvoiceItemPatch!]!): [TaxInvoiceItem!]!
|
|
2846
|
+
|
|
2760
2847
|
"""To modify multiple Terminologies' information"""
|
|
2761
2848
|
updateMultipleTerminologies(patches: [TerminologyPatch!]!): [Terminology!]!
|
|
2762
2849
|
|
|
@@ -2802,9 +2889,27 @@ type Mutation {
|
|
|
2802
2889
|
"""To modify scenario information"""
|
|
2803
2890
|
updateScenario(name: String!, patch: ScenarioPatch!): Scenario!
|
|
2804
2891
|
|
|
2892
|
+
"""To update secure IP list for domain"""
|
|
2893
|
+
updateSecureIPList(iplist: Object!): Object
|
|
2894
|
+
|
|
2805
2895
|
"""To modify Setting information"""
|
|
2806
2896
|
updateSetting(name: String!, patch: SettingPatch!): Setting!
|
|
2807
2897
|
|
|
2898
|
+
"""To modify StateRegister information"""
|
|
2899
|
+
updateStateRegister(id: String!, patch: StateRegisterPatch!): StateRegister!
|
|
2900
|
+
|
|
2901
|
+
"""To update state of StateRegister by name"""
|
|
2902
|
+
updateStateRegisterByName(name: String!, state: Object!): StateRegister!
|
|
2903
|
+
|
|
2904
|
+
"""To modify TaxAuditResult information"""
|
|
2905
|
+
updateTaxAuditResult(id: String!, patch: TaxAuditResultPatch!): TaxAuditResult!
|
|
2906
|
+
|
|
2907
|
+
"""To modify TaxInvoice information"""
|
|
2908
|
+
updateTaxInvoice(id: String!, patch: TaxInvoicePatch!): TaxInvoice!
|
|
2909
|
+
|
|
2910
|
+
"""To modify TaxInvoiceItem information"""
|
|
2911
|
+
updateTaxInvoiceItem(id: String!, patch: TaxInvoiceItemPatch!): TaxInvoiceItem!
|
|
2912
|
+
|
|
2808
2913
|
"""To modify Terminology information"""
|
|
2809
2914
|
updateTerminology(id: String!, patch: TerminologyPatch!): Terminology!
|
|
2810
2915
|
|
|
@@ -2812,7 +2917,7 @@ type Mutation {
|
|
|
2812
2917
|
updateTheme(id: String!, patch: ThemePatch!): Theme!
|
|
2813
2918
|
|
|
2814
2919
|
"""To modify user information"""
|
|
2815
|
-
updateUser(email:
|
|
2920
|
+
updateUser(email: EmailAddress!, patch: UserPatch!): User!
|
|
2816
2921
|
|
|
2817
2922
|
"""To update roles for a user"""
|
|
2818
2923
|
updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, userId: String!): User!
|
|
@@ -2876,7 +2981,7 @@ input NewAppliance {
|
|
|
2876
2981
|
|
|
2877
2982
|
input NewApplication {
|
|
2878
2983
|
description: String
|
|
2879
|
-
email:
|
|
2984
|
+
email: EmailAddress
|
|
2880
2985
|
icon: String
|
|
2881
2986
|
name: String!
|
|
2882
2987
|
redirectUrl: String
|
|
@@ -2959,7 +3064,7 @@ input NewContact {
|
|
|
2959
3064
|
address: String
|
|
2960
3065
|
company: String
|
|
2961
3066
|
department: String
|
|
2962
|
-
email:
|
|
3067
|
+
email: EmailAddress
|
|
2963
3068
|
items: [ContactItemPatch!]
|
|
2964
3069
|
name: String!
|
|
2965
3070
|
note: String
|
|
@@ -3262,7 +3367,7 @@ input NewOauth2Client {
|
|
|
3262
3367
|
description: String
|
|
3263
3368
|
grantType: String
|
|
3264
3369
|
icon: String
|
|
3265
|
-
jwtToken:
|
|
3370
|
+
jwtToken: JWT
|
|
3266
3371
|
name: String!
|
|
3267
3372
|
password: String
|
|
3268
3373
|
refreshToken: String
|
|
@@ -3330,6 +3435,123 @@ input NewSetting {
|
|
|
3330
3435
|
value: String
|
|
3331
3436
|
}
|
|
3332
3437
|
|
|
3438
|
+
input NewStateRegister {
|
|
3439
|
+
description: String
|
|
3440
|
+
name: String!
|
|
3441
|
+
refBy: String
|
|
3442
|
+
state: Object
|
|
3443
|
+
ttl: Int
|
|
3444
|
+
type: String
|
|
3445
|
+
}
|
|
3446
|
+
|
|
3447
|
+
input NewTaxAuditResult {
|
|
3448
|
+
active: Boolean
|
|
3449
|
+
description: String
|
|
3450
|
+
name: String!
|
|
3451
|
+
params: String
|
|
3452
|
+
state: TaxAuditResultStatus
|
|
3453
|
+
thumbnail: Upload
|
|
3454
|
+
}
|
|
3455
|
+
|
|
3456
|
+
input NewTaxInvoice {
|
|
3457
|
+
agentAddress: String
|
|
3458
|
+
agentBranchIdentification: String
|
|
3459
|
+
agentBusinessName: String
|
|
3460
|
+
agentBusinessRegistrationCategory: String
|
|
3461
|
+
agentBusinessRegistrationNumber: String
|
|
3462
|
+
agentBusinessType: String
|
|
3463
|
+
agentContactCellPhone: String
|
|
3464
|
+
agentContactEmail: String
|
|
3465
|
+
agentContactName: String
|
|
3466
|
+
agentContactPhone: String
|
|
3467
|
+
agentDepartment: String
|
|
3468
|
+
agentIndustryType: String
|
|
3469
|
+
agentRepresentativeName: String
|
|
3470
|
+
apiRefId: String
|
|
3471
|
+
approvalNo: String
|
|
3472
|
+
buyer1stContactCellPhone: String
|
|
3473
|
+
buyer1stContactEmail: String
|
|
3474
|
+
buyer1stContactName: String
|
|
3475
|
+
buyer1stContactPhone: String
|
|
3476
|
+
buyer1stDepartment: String
|
|
3477
|
+
buyer2ndContactCellPhone: String
|
|
3478
|
+
buyer2ndContactEmail: String
|
|
3479
|
+
buyer2ndContactName: String
|
|
3480
|
+
buyer2ndContactPhone: String
|
|
3481
|
+
buyer2ndDepartment: String
|
|
3482
|
+
buyerAddress: String
|
|
3483
|
+
buyerBranchIdentification: String
|
|
3484
|
+
buyerBusinessName: String!
|
|
3485
|
+
buyerBusinessRegistrationCategory: String!
|
|
3486
|
+
buyerBusinessRegistrationNumber: String!
|
|
3487
|
+
buyerBusinessType: String
|
|
3488
|
+
buyerIndustryType: String
|
|
3489
|
+
buyerRepresentativeName: String!
|
|
3490
|
+
category: String!
|
|
3491
|
+
invoiceType: String!
|
|
3492
|
+
issueDate: String!
|
|
3493
|
+
name: String
|
|
3494
|
+
originalApprovalNo: String
|
|
3495
|
+
paymentAmountAccountsReceivable: Int
|
|
3496
|
+
paymentAmountCash: Int
|
|
3497
|
+
paymentAmountCheck: Int
|
|
3498
|
+
paymentAmountPromissoryNote: Int
|
|
3499
|
+
purpose: String!
|
|
3500
|
+
remark0: String
|
|
3501
|
+
remark1: String
|
|
3502
|
+
remark2: String
|
|
3503
|
+
revisedReason: String
|
|
3504
|
+
signatureDate: String
|
|
3505
|
+
supplierAddress: String
|
|
3506
|
+
supplierBranchIdentification: String
|
|
3507
|
+
supplierBusinessName: String!
|
|
3508
|
+
supplierBusinessRegistrationCategory: String!
|
|
3509
|
+
supplierBusinessRegistrationNumber: String!
|
|
3510
|
+
supplierBusinessType: String
|
|
3511
|
+
supplierContactCellPhone: String
|
|
3512
|
+
supplierContactEmail: String
|
|
3513
|
+
supplierContactName: String
|
|
3514
|
+
supplierContactPhone: String
|
|
3515
|
+
supplierDepartment: String
|
|
3516
|
+
supplierIndustryType: String
|
|
3517
|
+
supplierRepresentativeName: String!
|
|
3518
|
+
supplyAmount: Int!
|
|
3519
|
+
taxAmount: Int
|
|
3520
|
+
totalAmount: Int!
|
|
3521
|
+
}
|
|
3522
|
+
|
|
3523
|
+
input NewTaxInvoiceItem {
|
|
3524
|
+
"""품목명"""
|
|
3525
|
+
itemName: String!
|
|
3526
|
+
|
|
3527
|
+
"""수량(소수점 2자리까지 허용)"""
|
|
3528
|
+
quantity: Int!
|
|
3529
|
+
|
|
3530
|
+
"""비고"""
|
|
3531
|
+
remark: String
|
|
3532
|
+
|
|
3533
|
+
"""아이템 일련번호"""
|
|
3534
|
+
sequence: Int!
|
|
3535
|
+
|
|
3536
|
+
"""규격"""
|
|
3537
|
+
specification: String!
|
|
3538
|
+
|
|
3539
|
+
"""공급년월일(YYYYMMDD)"""
|
|
3540
|
+
supplyDate: String!
|
|
3541
|
+
|
|
3542
|
+
"""공급가액"""
|
|
3543
|
+
supplyPrice: Int!
|
|
3544
|
+
|
|
3545
|
+
"""세금계산서 번호"""
|
|
3546
|
+
taxInvoiceId: String!
|
|
3547
|
+
|
|
3548
|
+
"""세액"""
|
|
3549
|
+
taxPrice: Int!
|
|
3550
|
+
|
|
3551
|
+
"""단가(소수점 2자리까지 허용)"""
|
|
3552
|
+
unitPrice: Int!
|
|
3553
|
+
}
|
|
3554
|
+
|
|
3333
3555
|
input NewTerminology {
|
|
3334
3556
|
category: String!
|
|
3335
3557
|
description: String
|
|
@@ -3348,7 +3570,7 @@ input NewTheme {
|
|
|
3348
3570
|
|
|
3349
3571
|
input NewUser {
|
|
3350
3572
|
description: String
|
|
3351
|
-
email:
|
|
3573
|
+
email: EmailAddress!
|
|
3352
3574
|
name: String!
|
|
3353
3575
|
password: String
|
|
3354
3576
|
roles: [ObjectRef!]
|
|
@@ -3356,7 +3578,7 @@ input NewUser {
|
|
|
3356
3578
|
}
|
|
3357
3579
|
|
|
3358
3580
|
input NewUserByDomainWizardInput {
|
|
3359
|
-
email:
|
|
3581
|
+
email: EmailAddress!
|
|
3360
3582
|
isInvitee: Boolean
|
|
3361
3583
|
name: String!
|
|
3362
3584
|
owner: Boolean!
|
|
@@ -3465,7 +3687,7 @@ type Oauth2Client {
|
|
|
3465
3687
|
grantType: String
|
|
3466
3688
|
icon: String
|
|
3467
3689
|
id: ID!
|
|
3468
|
-
jwtToken:
|
|
3690
|
+
jwtToken: JWT
|
|
3469
3691
|
name: String!
|
|
3470
3692
|
password: String
|
|
3471
3693
|
refreshToken: String
|
|
@@ -3495,7 +3717,7 @@ input Oauth2ClientPatch {
|
|
|
3495
3717
|
description: String
|
|
3496
3718
|
grantType: String
|
|
3497
3719
|
icon: String
|
|
3498
|
-
jwtToken:
|
|
3720
|
+
jwtToken: JWT
|
|
3499
3721
|
name: String
|
|
3500
3722
|
password: String
|
|
3501
3723
|
refreshToken: String
|
|
@@ -3538,22 +3760,24 @@ input ObjectRefForEmployee {
|
|
|
3538
3760
|
|
|
3539
3761
|
"""Field description"""
|
|
3540
3762
|
description: String
|
|
3541
|
-
email:
|
|
3763
|
+
email: EmailAddress
|
|
3542
3764
|
hiredOn: String
|
|
3543
3765
|
|
|
3544
3766
|
"""Field id"""
|
|
3545
3767
|
id: ID!
|
|
3546
3768
|
jobPosition: String
|
|
3769
|
+
jobResponsibility: String
|
|
3547
3770
|
|
|
3548
3771
|
"""Field name"""
|
|
3549
3772
|
name: String
|
|
3550
3773
|
photo: String
|
|
3774
|
+
type: EmployeeType
|
|
3551
3775
|
}
|
|
3552
3776
|
|
|
3553
3777
|
input ObjectRefForUser {
|
|
3554
3778
|
"""Field description"""
|
|
3555
3779
|
description: String
|
|
3556
|
-
email:
|
|
3780
|
+
email: EmailAddress
|
|
3557
3781
|
|
|
3558
3782
|
"""Field id"""
|
|
3559
3783
|
id: ID!
|
|
@@ -3751,6 +3975,7 @@ type Privilege {
|
|
|
3751
3975
|
description: String
|
|
3752
3976
|
id: ID!
|
|
3753
3977
|
name: String!
|
|
3978
|
+
privilege: String!
|
|
3754
3979
|
roles: [Role!]
|
|
3755
3980
|
updatedAt: DateTimeISO
|
|
3756
3981
|
updater: User
|
|
@@ -3914,9 +4139,6 @@ type Query {
|
|
|
3914
4139
|
"""To fetch a Board Model by name"""
|
|
3915
4140
|
boardByName(name: String!): Board
|
|
3916
4141
|
|
|
3917
|
-
"""Board Usage Permissions"""
|
|
3918
|
-
boardPermissions: [String!]!
|
|
3919
|
-
|
|
3920
4142
|
"""To fetch the latest Board published"""
|
|
3921
4143
|
boardPublished(id: String!): BoardHistory!
|
|
3922
4144
|
|
|
@@ -3955,7 +4177,7 @@ type Query {
|
|
|
3955
4177
|
checkUserBelongsDomain: Boolean!
|
|
3956
4178
|
|
|
3957
4179
|
"""..."""
|
|
3958
|
-
checkUserExistence(email:
|
|
4180
|
+
checkUserExistence(email: EmailAddress!): Boolean!
|
|
3959
4181
|
|
|
3960
4182
|
"""To fetch common approval lines"""
|
|
3961
4183
|
commonApprovalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
|
|
@@ -4009,7 +4231,7 @@ type Query {
|
|
|
4009
4231
|
domains(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
|
|
4010
4232
|
|
|
4011
4233
|
"""To fetch domains with given privilege for user"""
|
|
4012
|
-
domainsWithPrivilege(category: String!,
|
|
4234
|
+
domainsWithPrivilege(category: String!, privilege: String!): [Domain!]!
|
|
4013
4235
|
|
|
4014
4236
|
"""To fetch the tasks(ActivityThreads) which has done by me"""
|
|
4015
4237
|
doneList(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityThreadList!
|
|
@@ -4065,7 +4287,7 @@ type Query {
|
|
|
4065
4287
|
groups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): GroupList!
|
|
4066
4288
|
|
|
4067
4289
|
"""To query whether I have the given permission"""
|
|
4068
|
-
hasPrivilege(category: String!,
|
|
4290
|
+
hasPrivilege(category: String!, privilege: String!): Boolean!
|
|
4069
4291
|
i18nCompletion(input: i18nCompletionInput!): i18nCompletionOutput!
|
|
4070
4292
|
imageCompletion(input: ImageCompletionInput!): ImageCompletionOutput!
|
|
4071
4293
|
|
|
@@ -4077,7 +4299,7 @@ type Query {
|
|
|
4077
4299
|
|
|
4078
4300
|
"""To fetch integration Analyses"""
|
|
4079
4301
|
integrationAnalysis: Object!
|
|
4080
|
-
invitation(email:
|
|
4302
|
+
invitation(email: EmailAddress!, reference: String!, type: String!): Invitation!
|
|
4081
4303
|
invitations(reference: String!, type: String!): InvitationList!
|
|
4082
4304
|
|
|
4083
4305
|
"""To fetch a LiteMenu"""
|
|
@@ -4199,9 +4421,6 @@ type Query {
|
|
|
4199
4421
|
"""To fetch multiple PrinterDevices"""
|
|
4200
4422
|
printerDevices(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PrinterDeviceList!
|
|
4201
4423
|
|
|
4202
|
-
"""To fetch privilege"""
|
|
4203
|
-
privilege(category: String!, name: String!): Privilege!
|
|
4204
|
-
|
|
4205
4424
|
"""To fetch multiple privileges"""
|
|
4206
4425
|
privileges(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PrivilegeList!
|
|
4207
4426
|
|
|
@@ -4230,6 +4449,9 @@ type Query {
|
|
|
4230
4449
|
scenarios(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScenarioList!
|
|
4231
4450
|
searchCustomers(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
|
|
4232
4451
|
|
|
4452
|
+
"""To fetch domain"""
|
|
4453
|
+
secureIPList: Object
|
|
4454
|
+
|
|
4233
4455
|
"""To fetch a Setting"""
|
|
4234
4456
|
setting(name: String!, partnerDomainId: String): Setting!
|
|
4235
4457
|
|
|
@@ -4239,6 +4461,15 @@ type Query {
|
|
|
4239
4461
|
"""To fetch the list of activities I can start"""
|
|
4240
4462
|
startableActivities(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityList!
|
|
4241
4463
|
|
|
4464
|
+
"""To fetch a StateRegister"""
|
|
4465
|
+
stateRegister(id: String!): StateRegister
|
|
4466
|
+
|
|
4467
|
+
"""To fetch a StateRegister by name"""
|
|
4468
|
+
stateRegisterByName(name: String!): StateRegister
|
|
4469
|
+
|
|
4470
|
+
"""To fetch multiple StateRegisters"""
|
|
4471
|
+
stateRegisters(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): StateRegisterList!
|
|
4472
|
+
|
|
4242
4473
|
"""To fetch a step"""
|
|
4243
4474
|
step(name: String!): Step!
|
|
4244
4475
|
|
|
@@ -4257,6 +4488,36 @@ type Query {
|
|
|
4257
4488
|
"""To fetch the connector from a task-type"""
|
|
4258
4489
|
taskTypesByConnection(connectionName: String!): TaskTypeList!
|
|
4259
4490
|
|
|
4491
|
+
"""To fetch a TaxAuditResult"""
|
|
4492
|
+
taxAuditResult(id: String!): TaxAuditResult
|
|
4493
|
+
|
|
4494
|
+
"""To fetch multiple TaxAuditResults"""
|
|
4495
|
+
taxAuditResults(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): TaxAuditResultList!
|
|
4496
|
+
|
|
4497
|
+
"""To fetch a TaxInvoice"""
|
|
4498
|
+
taxInvoice(id: String!): TaxInvoice
|
|
4499
|
+
|
|
4500
|
+
"""To fetch a Tax Invoice Api"""
|
|
4501
|
+
taxInvoiceApi(id: String!): TaxInvoiceApi
|
|
4502
|
+
|
|
4503
|
+
"""To fetch multiple Tax Invoice Api"""
|
|
4504
|
+
taxInvoiceApis(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): TaxInvoiceApiList!
|
|
4505
|
+
|
|
4506
|
+
"""To fetch multiple Tax Invoice Companies"""
|
|
4507
|
+
taxInvoiceCompanies(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): TaxInvoiceCompanyList!
|
|
4508
|
+
|
|
4509
|
+
"""To fetch a Tax Invoice Company"""
|
|
4510
|
+
taxInvoiceCompany(id: String!): TaxInvoiceCompany
|
|
4511
|
+
|
|
4512
|
+
"""To fetch a TaxInvoiceItem"""
|
|
4513
|
+
taxInvoiceItem(id: String!): TaxInvoiceItem
|
|
4514
|
+
|
|
4515
|
+
"""To fetch multiple TaxInvoiceItems"""
|
|
4516
|
+
taxInvoiceItems(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): TaxInvoiceItemList!
|
|
4517
|
+
|
|
4518
|
+
"""To fetch multiple TaxInvoices"""
|
|
4519
|
+
taxInvoices(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): TaxInvoiceList!
|
|
4520
|
+
|
|
4260
4521
|
"""To fetch multiple Terminologies"""
|
|
4261
4522
|
terminologies(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): TerminologyList!
|
|
4262
4523
|
|
|
@@ -4273,7 +4534,7 @@ type Query {
|
|
|
4273
4534
|
todoList(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityThreadList!
|
|
4274
4535
|
|
|
4275
4536
|
"""To fetch user"""
|
|
4276
|
-
user(email:
|
|
4537
|
+
user(email: EmailAddress!): User!
|
|
4277
4538
|
|
|
4278
4539
|
"""To fetch Menus by role"""
|
|
4279
4540
|
userMenus: [Menu!]!
|
|
@@ -4462,6 +4723,40 @@ input Sorting {
|
|
|
4462
4723
|
name: String!
|
|
4463
4724
|
}
|
|
4464
4725
|
|
|
4726
|
+
"""Entity for StateRegister"""
|
|
4727
|
+
type StateRegister {
|
|
4728
|
+
createdAt: DateTimeISO
|
|
4729
|
+
creator: User
|
|
4730
|
+
description: String
|
|
4731
|
+
domain: Domain
|
|
4732
|
+
id: ID!
|
|
4733
|
+
name: String
|
|
4734
|
+
refBy: String
|
|
4735
|
+
state: Object
|
|
4736
|
+
ttl: Int
|
|
4737
|
+
type: String
|
|
4738
|
+
updatedAt: DateTimeISO
|
|
4739
|
+
updater: User
|
|
4740
|
+
writer: User
|
|
4741
|
+
wroteAt: DateTimeISO
|
|
4742
|
+
}
|
|
4743
|
+
|
|
4744
|
+
type StateRegisterList {
|
|
4745
|
+
items: [StateRegister!]!
|
|
4746
|
+
total: Int!
|
|
4747
|
+
}
|
|
4748
|
+
|
|
4749
|
+
input StateRegisterPatch {
|
|
4750
|
+
cuFlag: String
|
|
4751
|
+
description: String
|
|
4752
|
+
id: ID
|
|
4753
|
+
name: String
|
|
4754
|
+
refBy: String
|
|
4755
|
+
state: Object
|
|
4756
|
+
ttl: Int
|
|
4757
|
+
type: String
|
|
4758
|
+
}
|
|
4759
|
+
|
|
4465
4760
|
type Step {
|
|
4466
4761
|
connection: String
|
|
4467
4762
|
createdAt: DateTimeISO
|
|
@@ -4532,6 +4827,563 @@ type TaskTypeList {
|
|
|
4532
4827
|
total: Int!
|
|
4533
4828
|
}
|
|
4534
4829
|
|
|
4830
|
+
"""Entity for TaxAuditResult"""
|
|
4831
|
+
type TaxAuditResult {
|
|
4832
|
+
active: Boolean
|
|
4833
|
+
createdAt: DateTimeISO
|
|
4834
|
+
creator: User
|
|
4835
|
+
deletedAt: DateTimeISO
|
|
4836
|
+
description: String
|
|
4837
|
+
domain: Domain
|
|
4838
|
+
id: ID!
|
|
4839
|
+
name: String
|
|
4840
|
+
params: String
|
|
4841
|
+
state: String
|
|
4842
|
+
thumbnail: String
|
|
4843
|
+
updatedAt: DateTimeISO
|
|
4844
|
+
updater: User
|
|
4845
|
+
version: Float
|
|
4846
|
+
}
|
|
4847
|
+
|
|
4848
|
+
type TaxAuditResultList {
|
|
4849
|
+
items: [TaxAuditResult!]!
|
|
4850
|
+
total: Int!
|
|
4851
|
+
}
|
|
4852
|
+
|
|
4853
|
+
input TaxAuditResultPatch {
|
|
4854
|
+
active: Boolean
|
|
4855
|
+
cuFlag: String
|
|
4856
|
+
description: String
|
|
4857
|
+
id: ID
|
|
4858
|
+
name: String
|
|
4859
|
+
state: TaxAuditResultStatus
|
|
4860
|
+
thumbnail: Upload
|
|
4861
|
+
}
|
|
4862
|
+
|
|
4863
|
+
"""state enumeration of a taxAuditResult"""
|
|
4864
|
+
enum TaxAuditResultStatus {
|
|
4865
|
+
STATUS_A
|
|
4866
|
+
STATUS_B
|
|
4867
|
+
}
|
|
4868
|
+
|
|
4869
|
+
"""Entity for TaxInvoice"""
|
|
4870
|
+
type TaxInvoice {
|
|
4871
|
+
"""수탁사업자 주소"""
|
|
4872
|
+
agentAddress: String
|
|
4873
|
+
|
|
4874
|
+
"""수탁사업자 종사업장 식별코드"""
|
|
4875
|
+
agentBranchIdentification: String
|
|
4876
|
+
|
|
4877
|
+
"""수탁사업자 사업자명"""
|
|
4878
|
+
agentBusinessName: String
|
|
4879
|
+
|
|
4880
|
+
"""수탁사업자 사업자등록번호 구분 코드"""
|
|
4881
|
+
agentBusinessRegistrationCategory: String
|
|
4882
|
+
|
|
4883
|
+
"""수탁사업자 사업자등록번호 (nnnnnnnnnn)"""
|
|
4884
|
+
agentBusinessRegistrationNumber: String
|
|
4885
|
+
|
|
4886
|
+
"""수탁사업자 업태"""
|
|
4887
|
+
agentBusinessType: String
|
|
4888
|
+
|
|
4889
|
+
"""수탁사업자 담당자 핸드폰번호"""
|
|
4890
|
+
agentContactCellPhone: String
|
|
4891
|
+
|
|
4892
|
+
"""수탁사업자 담당자 이메일"""
|
|
4893
|
+
agentContactEmail: String
|
|
4894
|
+
|
|
4895
|
+
"""수탁사업자 담당자명"""
|
|
4896
|
+
agentContactName: String
|
|
4897
|
+
|
|
4898
|
+
"""수탁사업자 담당자 전화번호"""
|
|
4899
|
+
agentContactPhone: String
|
|
4900
|
+
|
|
4901
|
+
"""수탁사업자 담당부서"""
|
|
4902
|
+
agentDepartment: String
|
|
4903
|
+
|
|
4904
|
+
"""수탁사업자 업종"""
|
|
4905
|
+
agentIndustryType: String
|
|
4906
|
+
|
|
4907
|
+
"""수탁사업자 대표자명"""
|
|
4908
|
+
agentRepresentativeName: String
|
|
4909
|
+
|
|
4910
|
+
"""승인 번호"""
|
|
4911
|
+
approvalNo: String
|
|
4912
|
+
|
|
4913
|
+
"""공급받는자 1st 담당자 핸드폰번호"""
|
|
4914
|
+
buyer1stContactCellPhone: String
|
|
4915
|
+
|
|
4916
|
+
"""공급받는자 1st 담당자 이메일"""
|
|
4917
|
+
buyer1stContactEmail: String
|
|
4918
|
+
|
|
4919
|
+
"""공급받는자 1st 담당자명"""
|
|
4920
|
+
buyer1stContactName: String
|
|
4921
|
+
|
|
4922
|
+
"""공급받는자 1st 담당자 전화번호"""
|
|
4923
|
+
buyer1stContactPhone: String
|
|
4924
|
+
|
|
4925
|
+
"""공급받는자 1st 담당부서"""
|
|
4926
|
+
buyer1stDepartment: String
|
|
4927
|
+
|
|
4928
|
+
"""공급받는자 2nd 담당자 핸드폰번호"""
|
|
4929
|
+
buyer2ndContactCellPhone: String
|
|
4930
|
+
|
|
4931
|
+
"""공급받는자 2nd 담당자 이메일"""
|
|
4932
|
+
buyer2ndContactEmail: String
|
|
4933
|
+
|
|
4934
|
+
"""공급받는자 2nd 담당자명"""
|
|
4935
|
+
buyer2ndContactName: String
|
|
4936
|
+
|
|
4937
|
+
"""공급받는자 2nd 담당자 전화번호"""
|
|
4938
|
+
buyer2ndContactPhone: String
|
|
4939
|
+
|
|
4940
|
+
"""공급받는자 2nd 담당부서"""
|
|
4941
|
+
buyer2ndDepartment: String
|
|
4942
|
+
|
|
4943
|
+
"""공급받는자 주소"""
|
|
4944
|
+
buyerAddress: String
|
|
4945
|
+
|
|
4946
|
+
"""공급받는자 종사업장 식별 코드"""
|
|
4947
|
+
buyerBranchIdentification: String
|
|
4948
|
+
|
|
4949
|
+
"""공급받는자 사업자명"""
|
|
4950
|
+
buyerBusinessName: String!
|
|
4951
|
+
|
|
4952
|
+
"""공급받는자 사업자등록번호 구분 코드"""
|
|
4953
|
+
buyerBusinessRegistrationCategory: String!
|
|
4954
|
+
|
|
4955
|
+
"""공급받는자 사업자등록번호"""
|
|
4956
|
+
buyerBusinessRegistrationNumber: String!
|
|
4957
|
+
|
|
4958
|
+
"""공급받는자 업태"""
|
|
4959
|
+
buyerBusinessType: String
|
|
4960
|
+
|
|
4961
|
+
"""공급받는자 업종"""
|
|
4962
|
+
buyerIndustryType: String
|
|
4963
|
+
|
|
4964
|
+
"""공급받는자 대표자명"""
|
|
4965
|
+
buyerRepresentativeName: String!
|
|
4966
|
+
|
|
4967
|
+
"""세금계산서 구분 (매출: 10, 매입: 20, NTS: 30)"""
|
|
4968
|
+
category: String!
|
|
4969
|
+
createdAt: DateTimeISO
|
|
4970
|
+
creator: User
|
|
4971
|
+
deletedAt: DateTimeISO
|
|
4972
|
+
domain: Domain
|
|
4973
|
+
id: ID!
|
|
4974
|
+
|
|
4975
|
+
"""세금계산서 종류 코드 (일반, 영세율, 위수탁)"""
|
|
4976
|
+
invoiceType: String!
|
|
4977
|
+
|
|
4978
|
+
"""세금계산서 작성 일자 (YYYYMMDD)"""
|
|
4979
|
+
issueDate: String!
|
|
4980
|
+
|
|
4981
|
+
"""이름"""
|
|
4982
|
+
name: String
|
|
4983
|
+
|
|
4984
|
+
"""원 승인 번호 (계산서 수정시 원래의 승인 번호)"""
|
|
4985
|
+
originalApprovalNo: String
|
|
4986
|
+
|
|
4987
|
+
"""결제 금액 - 외상 미수금"""
|
|
4988
|
+
paymentAmountAccountsReceivable: Float
|
|
4989
|
+
|
|
4990
|
+
"""결제 금액 - 현금"""
|
|
4991
|
+
paymentAmountCash: Float
|
|
4992
|
+
|
|
4993
|
+
"""결제 금액 - 수표"""
|
|
4994
|
+
paymentAmountCheck: Float
|
|
4995
|
+
|
|
4996
|
+
"""결제 금액 - 어음"""
|
|
4997
|
+
paymentAmountPromissoryNote: Float
|
|
4998
|
+
|
|
4999
|
+
"""세금계산서의 영수/청구 구분 지시자 코드"""
|
|
5000
|
+
purpose: String!
|
|
5001
|
+
|
|
5002
|
+
"""비고0"""
|
|
5003
|
+
remark0: String
|
|
5004
|
+
|
|
5005
|
+
"""비고1"""
|
|
5006
|
+
remark1: String
|
|
5007
|
+
|
|
5008
|
+
"""비고2"""
|
|
5009
|
+
remark2: String
|
|
5010
|
+
|
|
5011
|
+
"""수정 사유 코드"""
|
|
5012
|
+
revisedReason: String
|
|
5013
|
+
|
|
5014
|
+
"""세금계산서 전자 서명 일자 (YYYYMMDD)"""
|
|
5015
|
+
signatureDate: String
|
|
5016
|
+
|
|
5017
|
+
"""공급자 주소"""
|
|
5018
|
+
supplierAddress: String
|
|
5019
|
+
|
|
5020
|
+
"""종사업장 식별 코드"""
|
|
5021
|
+
supplierBranchIdentification: String
|
|
5022
|
+
|
|
5023
|
+
"""공급자 사업자명"""
|
|
5024
|
+
supplierBusinessName: String!
|
|
5025
|
+
|
|
5026
|
+
"""공급자 사업자등록번호 구분 코드"""
|
|
5027
|
+
supplierBusinessRegistrationCategory: String!
|
|
5028
|
+
|
|
5029
|
+
"""공급자 사업자등록번호"""
|
|
5030
|
+
supplierBusinessRegistrationNumber: String!
|
|
5031
|
+
|
|
5032
|
+
"""공급자 업태"""
|
|
5033
|
+
supplierBusinessType: String
|
|
5034
|
+
|
|
5035
|
+
"""공급자 담당자 핸드폰 번호"""
|
|
5036
|
+
supplierContactCellPhone: String
|
|
5037
|
+
|
|
5038
|
+
"""공급자 담당자 이메일"""
|
|
5039
|
+
supplierContactEmail: String
|
|
5040
|
+
|
|
5041
|
+
"""공급자 담당자명"""
|
|
5042
|
+
supplierContactName: String
|
|
5043
|
+
|
|
5044
|
+
"""공급자 담당자 전화번호"""
|
|
5045
|
+
supplierContactPhone: String
|
|
5046
|
+
|
|
5047
|
+
"""공급자 담당 부서"""
|
|
5048
|
+
supplierDepartment: String
|
|
5049
|
+
|
|
5050
|
+
"""공급자 업종"""
|
|
5051
|
+
supplierIndustryType: String
|
|
5052
|
+
|
|
5053
|
+
"""공급자 대표자명"""
|
|
5054
|
+
supplierRepresentativeName: String!
|
|
5055
|
+
|
|
5056
|
+
"""공급 가액"""
|
|
5057
|
+
supplyAmount: Float!
|
|
5058
|
+
|
|
5059
|
+
"""세액"""
|
|
5060
|
+
taxAmount: Float
|
|
5061
|
+
taxInvoiceItems: [TaxInvoiceItem!]
|
|
5062
|
+
|
|
5063
|
+
"""총액 = 공급 가액 + 세액"""
|
|
5064
|
+
totalAmount: Float!
|
|
5065
|
+
updatedAt: DateTimeISO
|
|
5066
|
+
updater: User
|
|
5067
|
+
version: Float
|
|
5068
|
+
}
|
|
5069
|
+
|
|
5070
|
+
"""Entity for Tax Invoice Api"""
|
|
5071
|
+
type TaxInvoiceApi {
|
|
5072
|
+
"""주소"""
|
|
5073
|
+
address: String
|
|
5074
|
+
|
|
5075
|
+
"""API 계정 ID"""
|
|
5076
|
+
apiAccountId: String
|
|
5077
|
+
|
|
5078
|
+
"""API 계정 비밀번호"""
|
|
5079
|
+
apiAccountPassword: String
|
|
5080
|
+
|
|
5081
|
+
"""API Key"""
|
|
5082
|
+
apiKey: String
|
|
5083
|
+
attributes: Object
|
|
5084
|
+
|
|
5085
|
+
"""종사업장 식별 코드"""
|
|
5086
|
+
branchIdentification: String
|
|
5087
|
+
|
|
5088
|
+
"""사업자명"""
|
|
5089
|
+
businessName: String
|
|
5090
|
+
|
|
5091
|
+
"""사업자등록번호"""
|
|
5092
|
+
businessRegistrationNumber: String
|
|
5093
|
+
|
|
5094
|
+
"""업태"""
|
|
5095
|
+
businessType: String
|
|
5096
|
+
|
|
5097
|
+
"""담당자 핸드폰 번호"""
|
|
5098
|
+
contactCellPhone: String
|
|
5099
|
+
|
|
5100
|
+
"""담당자 이메일"""
|
|
5101
|
+
contactEmail: String
|
|
5102
|
+
|
|
5103
|
+
"""담당자명"""
|
|
5104
|
+
contactName: String
|
|
5105
|
+
|
|
5106
|
+
"""담당자 전화번호"""
|
|
5107
|
+
contactPhone: String
|
|
5108
|
+
createdAt: DateTimeISO
|
|
5109
|
+
creator: User
|
|
5110
|
+
deletedAt: DateTimeISO
|
|
5111
|
+
|
|
5112
|
+
"""담당 부서"""
|
|
5113
|
+
department: String
|
|
5114
|
+
description: String
|
|
5115
|
+
domain: Domain
|
|
5116
|
+
id: ID!
|
|
5117
|
+
|
|
5118
|
+
"""업종"""
|
|
5119
|
+
industryType: String
|
|
5120
|
+
name: String!
|
|
5121
|
+
|
|
5122
|
+
"""대표자명"""
|
|
5123
|
+
representativeName: String
|
|
5124
|
+
updatedAt: DateTimeISO
|
|
5125
|
+
updater: User
|
|
5126
|
+
version: Float
|
|
5127
|
+
}
|
|
5128
|
+
|
|
5129
|
+
type TaxInvoiceApiList {
|
|
5130
|
+
items: [TaxInvoiceApi!]!
|
|
5131
|
+
total: Int!
|
|
5132
|
+
}
|
|
5133
|
+
|
|
5134
|
+
input TaxInvoiceApiPatch {
|
|
5135
|
+
address: String
|
|
5136
|
+
apiAccountId: String
|
|
5137
|
+
apiAccountPassword: String
|
|
5138
|
+
apiKey: String
|
|
5139
|
+
branchIdentification: String
|
|
5140
|
+
businessName: String
|
|
5141
|
+
businessRegistrationNumber: String
|
|
5142
|
+
businessType: String
|
|
5143
|
+
contactCellPhone: String
|
|
5144
|
+
contactEmail: String
|
|
5145
|
+
contactName: String
|
|
5146
|
+
contactPhone: String
|
|
5147
|
+
cuFlag: String
|
|
5148
|
+
department: String
|
|
5149
|
+
description: String
|
|
5150
|
+
id: ID
|
|
5151
|
+
industryType: String
|
|
5152
|
+
name: String
|
|
5153
|
+
representativeName: String
|
|
5154
|
+
}
|
|
5155
|
+
|
|
5156
|
+
"""Entity for TaxInvoice Company"""
|
|
5157
|
+
type TaxInvoiceCompany {
|
|
5158
|
+
"""주소"""
|
|
5159
|
+
address: String
|
|
5160
|
+
attributes: Object
|
|
5161
|
+
|
|
5162
|
+
"""종사업장 식별 코드"""
|
|
5163
|
+
branchIdentification: String
|
|
5164
|
+
|
|
5165
|
+
"""사업자명"""
|
|
5166
|
+
businessName: String
|
|
5167
|
+
|
|
5168
|
+
"""사업자등록번호"""
|
|
5169
|
+
businessRegistrationNumber: String
|
|
5170
|
+
|
|
5171
|
+
"""업태"""
|
|
5172
|
+
businessType: String
|
|
5173
|
+
|
|
5174
|
+
"""담당자 핸드폰 번호"""
|
|
5175
|
+
contactCellPhone: String
|
|
5176
|
+
|
|
5177
|
+
"""담당자 이메일"""
|
|
5178
|
+
contactEmail: String
|
|
5179
|
+
|
|
5180
|
+
"""담당자명"""
|
|
5181
|
+
contactName: String
|
|
5182
|
+
|
|
5183
|
+
"""담당자 전화번호"""
|
|
5184
|
+
contactPhone: String
|
|
5185
|
+
convertedType: String!
|
|
5186
|
+
createdAt: DateTimeISO
|
|
5187
|
+
creator: User
|
|
5188
|
+
deletedAt: DateTimeISO
|
|
5189
|
+
|
|
5190
|
+
"""담당 부서"""
|
|
5191
|
+
department: String
|
|
5192
|
+
description: String
|
|
5193
|
+
domain: Domain
|
|
5194
|
+
id: ID!
|
|
5195
|
+
|
|
5196
|
+
"""업종"""
|
|
5197
|
+
industryType: String
|
|
5198
|
+
name: String!
|
|
5199
|
+
|
|
5200
|
+
"""대표자명"""
|
|
5201
|
+
representativeName: String
|
|
5202
|
+
type: Float!
|
|
5203
|
+
updatedAt: DateTimeISO
|
|
5204
|
+
updater: User
|
|
5205
|
+
version: Float
|
|
5206
|
+
}
|
|
5207
|
+
|
|
5208
|
+
type TaxInvoiceCompanyList {
|
|
5209
|
+
items: [TaxInvoiceCompany!]!
|
|
5210
|
+
total: Int!
|
|
5211
|
+
}
|
|
5212
|
+
|
|
5213
|
+
input TaxInvoiceCompanyPatch {
|
|
5214
|
+
address: String
|
|
5215
|
+
attributes: Object
|
|
5216
|
+
branchIdentification: String
|
|
5217
|
+
businessName: String
|
|
5218
|
+
businessRegistrationNumber: String
|
|
5219
|
+
businessType: String
|
|
5220
|
+
contactCellPhone: String
|
|
5221
|
+
contactEmail: String
|
|
5222
|
+
contactName: String
|
|
5223
|
+
contactPhone: String
|
|
5224
|
+
cuFlag: String
|
|
5225
|
+
department: String
|
|
5226
|
+
description: String
|
|
5227
|
+
id: ID
|
|
5228
|
+
industryType: String
|
|
5229
|
+
name: String
|
|
5230
|
+
representativeName: String
|
|
5231
|
+
type: Float
|
|
5232
|
+
}
|
|
5233
|
+
|
|
5234
|
+
"""Entity for TaxInvoiceItem"""
|
|
5235
|
+
type TaxInvoiceItem {
|
|
5236
|
+
createdAt: DateTimeISO
|
|
5237
|
+
creator: User
|
|
5238
|
+
deletedAt: DateTimeISO
|
|
5239
|
+
domain: Domain
|
|
5240
|
+
id: ID!
|
|
5241
|
+
|
|
5242
|
+
"""품목명"""
|
|
5243
|
+
itemName: String!
|
|
5244
|
+
|
|
5245
|
+
"""수량 (소수점 2자리까지 허용)"""
|
|
5246
|
+
quantity: Float!
|
|
5247
|
+
|
|
5248
|
+
"""비고"""
|
|
5249
|
+
remark: String
|
|
5250
|
+
|
|
5251
|
+
"""아이템 일련번호"""
|
|
5252
|
+
sequence: Float
|
|
5253
|
+
|
|
5254
|
+
"""규격"""
|
|
5255
|
+
specification: String!
|
|
5256
|
+
|
|
5257
|
+
"""공급년월일(YYYYMMDD)"""
|
|
5258
|
+
supplyDate: String!
|
|
5259
|
+
|
|
5260
|
+
"""공급 가액"""
|
|
5261
|
+
supplyPrice: Float!
|
|
5262
|
+
taxInvoice: TaxInvoice!
|
|
5263
|
+
|
|
5264
|
+
"""세액"""
|
|
5265
|
+
taxPrice: Float!
|
|
5266
|
+
thumbnail: String!
|
|
5267
|
+
|
|
5268
|
+
"""단가 (소수점 2자리까지 허용)"""
|
|
5269
|
+
unitPrice: Float!
|
|
5270
|
+
version: Float
|
|
5271
|
+
}
|
|
5272
|
+
|
|
5273
|
+
type TaxInvoiceItemList {
|
|
5274
|
+
items: [TaxInvoiceItem!]!
|
|
5275
|
+
total: Int!
|
|
5276
|
+
}
|
|
5277
|
+
|
|
5278
|
+
input TaxInvoiceItemPatch {
|
|
5279
|
+
cuFlag: String
|
|
5280
|
+
id: ID!
|
|
5281
|
+
|
|
5282
|
+
"""품목명"""
|
|
5283
|
+
itemName: String!
|
|
5284
|
+
|
|
5285
|
+
"""수량(소수점 2자리까지 허용)"""
|
|
5286
|
+
quantity: Int!
|
|
5287
|
+
|
|
5288
|
+
"""비고"""
|
|
5289
|
+
remark: String
|
|
5290
|
+
|
|
5291
|
+
"""아이템 일련번호"""
|
|
5292
|
+
sequence: Int!
|
|
5293
|
+
|
|
5294
|
+
"""규격"""
|
|
5295
|
+
specification: String!
|
|
5296
|
+
|
|
5297
|
+
"""공급년월일(YYYYMMDD)"""
|
|
5298
|
+
supplyDate: String!
|
|
5299
|
+
|
|
5300
|
+
"""공급가액"""
|
|
5301
|
+
supplyPrice: Int!
|
|
5302
|
+
|
|
5303
|
+
"""세금계산서 번호"""
|
|
5304
|
+
taxInvoiceId: String!
|
|
5305
|
+
|
|
5306
|
+
"""세액"""
|
|
5307
|
+
taxPrice: Int!
|
|
5308
|
+
|
|
5309
|
+
"""단가(소수점 2자리까지 허용)"""
|
|
5310
|
+
unitPrice: Int!
|
|
5311
|
+
}
|
|
5312
|
+
|
|
5313
|
+
type TaxInvoiceList {
|
|
5314
|
+
items: [TaxInvoice!]!
|
|
5315
|
+
total: Int!
|
|
5316
|
+
}
|
|
5317
|
+
|
|
5318
|
+
input TaxInvoicePatch {
|
|
5319
|
+
agentAddress: String
|
|
5320
|
+
agentBranchIdentification: String
|
|
5321
|
+
agentBusinessName: String
|
|
5322
|
+
agentBusinessRegistrationCategory: String
|
|
5323
|
+
agentBusinessRegistrationNumber: String
|
|
5324
|
+
agentBusinessType: String
|
|
5325
|
+
agentContactCellPhone: String
|
|
5326
|
+
agentContactEmail: String
|
|
5327
|
+
agentContactName: String
|
|
5328
|
+
agentContactPhone: String
|
|
5329
|
+
agentDepartment: String
|
|
5330
|
+
agentIndustryType: String
|
|
5331
|
+
agentRepresentativeName: String
|
|
5332
|
+
apiRefId: String
|
|
5333
|
+
approvalNo: String
|
|
5334
|
+
buyer1stContactCellPhone: String
|
|
5335
|
+
buyer1stContactEmail: String
|
|
5336
|
+
buyer1stContactName: String
|
|
5337
|
+
buyer1stContactPhone: String
|
|
5338
|
+
buyer1stDepartment: String
|
|
5339
|
+
buyer2ndContactCellPhone: String
|
|
5340
|
+
buyer2ndContactEmail: String
|
|
5341
|
+
buyer2ndContactName: String
|
|
5342
|
+
buyer2ndContactPhone: String
|
|
5343
|
+
buyer2ndDepartment: String
|
|
5344
|
+
buyerAddress: String
|
|
5345
|
+
buyerBranchIdentification: String
|
|
5346
|
+
buyerBusinessName: String!
|
|
5347
|
+
buyerBusinessRegistrationCategory: String!
|
|
5348
|
+
buyerBusinessRegistrationNumber: String!
|
|
5349
|
+
buyerBusinessType: String
|
|
5350
|
+
buyerIndustryType: String
|
|
5351
|
+
buyerRepresentativeName: String!
|
|
5352
|
+
category: String!
|
|
5353
|
+
cuFlag: String
|
|
5354
|
+
id: ID!
|
|
5355
|
+
invoiceType: String!
|
|
5356
|
+
issueDate: String!
|
|
5357
|
+
name: String
|
|
5358
|
+
originalApprovalNo: String
|
|
5359
|
+
paymentAmountAccountsReceivable: Int
|
|
5360
|
+
paymentAmountCash: Int
|
|
5361
|
+
paymentAmountCheck: Int
|
|
5362
|
+
paymentAmountPromissoryNote: Int
|
|
5363
|
+
purpose: String!
|
|
5364
|
+
remark0: String
|
|
5365
|
+
remark1: String
|
|
5366
|
+
remark2: String
|
|
5367
|
+
revisedReason: String
|
|
5368
|
+
signatureDate: String
|
|
5369
|
+
supplierAddress: String
|
|
5370
|
+
supplierBranchIdentification: String
|
|
5371
|
+
supplierBusinessName: String!
|
|
5372
|
+
supplierBusinessRegistrationCategory: String!
|
|
5373
|
+
supplierBusinessRegistrationNumber: String!
|
|
5374
|
+
supplierBusinessType: String
|
|
5375
|
+
supplierContactCellPhone: String
|
|
5376
|
+
supplierContactEmail: String
|
|
5377
|
+
supplierContactName: String
|
|
5378
|
+
supplierContactPhone: String
|
|
5379
|
+
supplierDepartment: String
|
|
5380
|
+
supplierIndustryType: String
|
|
5381
|
+
supplierRepresentativeName: String!
|
|
5382
|
+
supplyAmount: Int!
|
|
5383
|
+
taxAmount: Int
|
|
5384
|
+
totalAmount: Int!
|
|
5385
|
+
}
|
|
5386
|
+
|
|
4535
5387
|
"""Entity for Terminology"""
|
|
4536
5388
|
type Terminology {
|
|
4537
5389
|
category: String!
|
|
@@ -4604,7 +5456,7 @@ type User {
|
|
|
4604
5456
|
creator: User
|
|
4605
5457
|
description: String
|
|
4606
5458
|
domains: [Domain!]!
|
|
4607
|
-
email:
|
|
5459
|
+
email: EmailAddress!
|
|
4608
5460
|
id: ID!
|
|
4609
5461
|
locale: String
|
|
4610
5462
|
name: String!
|
|
@@ -4628,7 +5480,7 @@ input UserPatch {
|
|
|
4628
5480
|
cuFlag: String
|
|
4629
5481
|
description: String
|
|
4630
5482
|
domains: [ObjectRef!]
|
|
4631
|
-
email:
|
|
5483
|
+
email: EmailAddress
|
|
4632
5484
|
id: ID
|
|
4633
5485
|
name: String
|
|
4634
5486
|
password: String
|