@yunzhanghu/sdk-nodejs 1.0.25 → 1.0.26

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yunzhanghu/sdk-nodejs",
3
- "version": "1.0.25",
3
+ "version": "1.0.26",
4
4
  "description": "云账户 SDK for Node.js",
5
5
  "main": "yzh/index.js",
6
6
  "scripts": {
@@ -150,6 +150,12 @@ interface CalcTaxDetail {
150
150
  personal_tax_rate: string;
151
151
  /** 预扣个税速算扣除数 */
152
152
  deduct_tax: string;
153
+ /** 预扣城建附加税 */
154
+ additional_urban_tax: string;
155
+ /** 预扣教育附加税 */
156
+ additional_tuition_tax: string;
157
+ /** 预扣地方教育附加税 */
158
+ additional_local_tuition_tax: string;
153
159
  }
154
160
 
155
161
  /** CalculationYearH5UrlRequest 连续劳务年度税费测算-H5 请求 */
@@ -736,6 +736,12 @@ interface TaxDetail {
736
736
  user_received_additional_tax: string;
737
737
  /** 平台企业实缴附加税费 */
738
738
  dealer_received_additional_tax: string;
739
+ /** 预扣城建附加税 */
740
+ additional_urban_tax: string;
741
+ /** 预扣教育附加税 */
742
+ additional_tuition_tax: string;
743
+ /** 预扣地方教育附加税 */
744
+ additional_local_tuition_tax: string;
739
745
  }
740
746
 
741
747
  export class PaymentClient extends YZHclient {