@snokam/mcp-api 3.5.0 → 3.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -3130,7 +3130,7 @@
|
|
|
3130
3130
|
]
|
|
3131
3131
|
}
|
|
3132
3132
|
},
|
|
3133
|
-
"/v1.0/reinvoicing/voucher/{
|
|
3133
|
+
"/v1.0/reinvoicing/voucher/{voucherNo}/pdf": {
|
|
3134
3134
|
"get": {
|
|
3135
3135
|
"tags": [
|
|
3136
3136
|
"Reinvoicing"
|
|
@@ -3140,12 +3140,12 @@
|
|
|
3140
3140
|
"operationId": "GetReinvoicingVoucherPdf",
|
|
3141
3141
|
"parameters": [
|
|
3142
3142
|
{
|
|
3143
|
-
"name": "
|
|
3143
|
+
"name": "voucherNo",
|
|
3144
3144
|
"in": "path",
|
|
3145
3145
|
"required": true,
|
|
3146
3146
|
"schema": {
|
|
3147
|
-
"type": "
|
|
3148
|
-
"format": "
|
|
3147
|
+
"type": "integer",
|
|
3148
|
+
"format": "int64"
|
|
3149
3149
|
}
|
|
3150
3150
|
}
|
|
3151
3151
|
],
|
|
@@ -6628,6 +6628,15 @@
|
|
|
6628
6628
|
},
|
|
6629
6629
|
"draft": {
|
|
6630
6630
|
"$ref": "#/components/schemas/subcontractorInvoiceDraft"
|
|
6631
|
+
},
|
|
6632
|
+
"timesheet": {
|
|
6633
|
+
"$ref": "#/components/schemas/timesheet"
|
|
6634
|
+
},
|
|
6635
|
+
"timesheetDocument": {
|
|
6636
|
+
"$ref": "#/components/schemas/voucherDocument"
|
|
6637
|
+
},
|
|
6638
|
+
"timesheetNote": {
|
|
6639
|
+
"type": "string"
|
|
6631
6640
|
}
|
|
6632
6641
|
}
|
|
6633
6642
|
},
|
|
@@ -6726,6 +6735,10 @@
|
|
|
6726
6735
|
"type": "string",
|
|
6727
6736
|
"format": "uuid"
|
|
6728
6737
|
},
|
|
6738
|
+
"voucherNo": {
|
|
6739
|
+
"type": "integer",
|
|
6740
|
+
"format": "int64"
|
|
6741
|
+
},
|
|
6729
6742
|
"supplierCode": {
|
|
6730
6743
|
"type": "integer",
|
|
6731
6744
|
"format": "int64"
|
|
@@ -6783,6 +6796,60 @@
|
|
|
6783
6796
|
}
|
|
6784
6797
|
}
|
|
6785
6798
|
},
|
|
6799
|
+
"timesheet": {
|
|
6800
|
+
"type": "object",
|
|
6801
|
+
"properties": {
|
|
6802
|
+
"consultant": {
|
|
6803
|
+
"type": "string"
|
|
6804
|
+
},
|
|
6805
|
+
"currency": {
|
|
6806
|
+
"type": "string"
|
|
6807
|
+
},
|
|
6808
|
+
"entries": {
|
|
6809
|
+
"type": "array",
|
|
6810
|
+
"items": {
|
|
6811
|
+
"$ref": "#/components/schemas/timesheetEntry"
|
|
6812
|
+
}
|
|
6813
|
+
},
|
|
6814
|
+
"totalHours": {
|
|
6815
|
+
"type": "number",
|
|
6816
|
+
"format": "double"
|
|
6817
|
+
},
|
|
6818
|
+
"totalAmount": {
|
|
6819
|
+
"type": "number",
|
|
6820
|
+
"format": "double"
|
|
6821
|
+
},
|
|
6822
|
+
"rate": {
|
|
6823
|
+
"type": "number",
|
|
6824
|
+
"format": "double",
|
|
6825
|
+
"nullable": true
|
|
6826
|
+
}
|
|
6827
|
+
}
|
|
6828
|
+
},
|
|
6829
|
+
"timesheetEntry": {
|
|
6830
|
+
"type": "object",
|
|
6831
|
+
"properties": {
|
|
6832
|
+
"date": {
|
|
6833
|
+
"type": "string",
|
|
6834
|
+
"format": "date-time"
|
|
6835
|
+
},
|
|
6836
|
+
"activity": {
|
|
6837
|
+
"type": "string"
|
|
6838
|
+
},
|
|
6839
|
+
"hours": {
|
|
6840
|
+
"type": "number",
|
|
6841
|
+
"format": "double"
|
|
6842
|
+
},
|
|
6843
|
+
"rate": {
|
|
6844
|
+
"type": "number",
|
|
6845
|
+
"format": "double"
|
|
6846
|
+
},
|
|
6847
|
+
"amount": {
|
|
6848
|
+
"type": "number",
|
|
6849
|
+
"format": "double"
|
|
6850
|
+
}
|
|
6851
|
+
}
|
|
6852
|
+
},
|
|
6786
6853
|
"timeTransactionRecord": {
|
|
6787
6854
|
"type": "object",
|
|
6788
6855
|
"properties": {
|
|
@@ -3130,7 +3130,7 @@
|
|
|
3130
3130
|
]
|
|
3131
3131
|
}
|
|
3132
3132
|
},
|
|
3133
|
-
"/v1.0/reinvoicing/voucher/{
|
|
3133
|
+
"/v1.0/reinvoicing/voucher/{voucherNo}/pdf": {
|
|
3134
3134
|
"get": {
|
|
3135
3135
|
"tags": [
|
|
3136
3136
|
"Reinvoicing"
|
|
@@ -3140,12 +3140,12 @@
|
|
|
3140
3140
|
"operationId": "GetReinvoicingVoucherPdf",
|
|
3141
3141
|
"parameters": [
|
|
3142
3142
|
{
|
|
3143
|
-
"name": "
|
|
3143
|
+
"name": "voucherNo",
|
|
3144
3144
|
"in": "path",
|
|
3145
3145
|
"required": true,
|
|
3146
3146
|
"schema": {
|
|
3147
|
-
"type": "
|
|
3148
|
-
"format": "
|
|
3147
|
+
"type": "integer",
|
|
3148
|
+
"format": "int64"
|
|
3149
3149
|
}
|
|
3150
3150
|
}
|
|
3151
3151
|
],
|
|
@@ -6628,6 +6628,15 @@
|
|
|
6628
6628
|
},
|
|
6629
6629
|
"draft": {
|
|
6630
6630
|
"$ref": "#/components/schemas/subcontractorInvoiceDraft"
|
|
6631
|
+
},
|
|
6632
|
+
"timesheet": {
|
|
6633
|
+
"$ref": "#/components/schemas/timesheet"
|
|
6634
|
+
},
|
|
6635
|
+
"timesheetDocument": {
|
|
6636
|
+
"$ref": "#/components/schemas/voucherDocument"
|
|
6637
|
+
},
|
|
6638
|
+
"timesheetNote": {
|
|
6639
|
+
"type": "string"
|
|
6631
6640
|
}
|
|
6632
6641
|
}
|
|
6633
6642
|
},
|
|
@@ -6726,6 +6735,10 @@
|
|
|
6726
6735
|
"type": "string",
|
|
6727
6736
|
"format": "uuid"
|
|
6728
6737
|
},
|
|
6738
|
+
"voucherNo": {
|
|
6739
|
+
"type": "integer",
|
|
6740
|
+
"format": "int64"
|
|
6741
|
+
},
|
|
6729
6742
|
"supplierCode": {
|
|
6730
6743
|
"type": "integer",
|
|
6731
6744
|
"format": "int64"
|
|
@@ -6783,6 +6796,60 @@
|
|
|
6783
6796
|
}
|
|
6784
6797
|
}
|
|
6785
6798
|
},
|
|
6799
|
+
"timesheet": {
|
|
6800
|
+
"type": "object",
|
|
6801
|
+
"properties": {
|
|
6802
|
+
"consultant": {
|
|
6803
|
+
"type": "string"
|
|
6804
|
+
},
|
|
6805
|
+
"currency": {
|
|
6806
|
+
"type": "string"
|
|
6807
|
+
},
|
|
6808
|
+
"entries": {
|
|
6809
|
+
"type": "array",
|
|
6810
|
+
"items": {
|
|
6811
|
+
"$ref": "#/components/schemas/timesheetEntry"
|
|
6812
|
+
}
|
|
6813
|
+
},
|
|
6814
|
+
"totalHours": {
|
|
6815
|
+
"type": "number",
|
|
6816
|
+
"format": "double"
|
|
6817
|
+
},
|
|
6818
|
+
"totalAmount": {
|
|
6819
|
+
"type": "number",
|
|
6820
|
+
"format": "double"
|
|
6821
|
+
},
|
|
6822
|
+
"rate": {
|
|
6823
|
+
"type": "number",
|
|
6824
|
+
"format": "double",
|
|
6825
|
+
"nullable": true
|
|
6826
|
+
}
|
|
6827
|
+
}
|
|
6828
|
+
},
|
|
6829
|
+
"timesheetEntry": {
|
|
6830
|
+
"type": "object",
|
|
6831
|
+
"properties": {
|
|
6832
|
+
"date": {
|
|
6833
|
+
"type": "string",
|
|
6834
|
+
"format": "date-time"
|
|
6835
|
+
},
|
|
6836
|
+
"activity": {
|
|
6837
|
+
"type": "string"
|
|
6838
|
+
},
|
|
6839
|
+
"hours": {
|
|
6840
|
+
"type": "number",
|
|
6841
|
+
"format": "double"
|
|
6842
|
+
},
|
|
6843
|
+
"rate": {
|
|
6844
|
+
"type": "number",
|
|
6845
|
+
"format": "double"
|
|
6846
|
+
},
|
|
6847
|
+
"amount": {
|
|
6848
|
+
"type": "number",
|
|
6849
|
+
"format": "double"
|
|
6850
|
+
}
|
|
6851
|
+
}
|
|
6852
|
+
},
|
|
6786
6853
|
"timeTransactionRecord": {
|
|
6787
6854
|
"type": "object",
|
|
6788
6855
|
"properties": {
|