@puniyu/nipaw 1.6.1 → 1.7.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/dist/index.d.ts CHANGED
@@ -122,6 +122,32 @@ export declare class CnbClient {
122
122
  * - `option` - 创建issue选项, 详见 [CreateIssueOptions]
123
123
  */
124
124
  createIssue(owner: string, name: string, title: string, body?: string | undefined | null, option?: CreateIssueOptions | undefined | null): Promise<IssueInfo>
125
+ /**
126
+ * 获取issue信息
127
+ *
128
+ * ## 参数
129
+ * - `owner` - 仓库所有者
130
+ * - `repo` - 仓库名称
131
+ * - `issue_number` - issue编号
132
+ */
133
+ getIssueInfo(owner: string, name: string, issueNumber: string): Promise<IssueInfo>
134
+ /**
135
+ * 获取仓库所有issue信息
136
+ *
137
+ * ## 参数
138
+ * - `owner` - 仓库所有者
139
+ * - `repo` - 仓库名称
140
+ */
141
+ getIssueList(owner: string, name: string, option?: IssueListOptions | undefined | null): Promise<Array<IssueInfo>>
142
+ /**
143
+ * 更新issue信息
144
+ *
145
+ * ## 参数
146
+ * - `repo_path` - 仓库路径,格式为 `(owner, repo)`
147
+ * - `issue_number` - issue编号
148
+ * - `options` - 更新issue选项, 详见 [UpdateIssueOptions]
149
+ */
150
+ updateIssue(owner: string, name: string, issueNumber: string, options?: UpdateIssueOptions | undefined | null): Promise<IssueInfo>
125
151
  }
126
152
 
127
153
  export declare class GitCodeClient {
@@ -247,6 +273,32 @@ export declare class GitCodeClient {
247
273
  * - `option` - 创建issue选项, 详见 [CreateIssueOptions]
248
274
  */
249
275
  createIssue(owner: string, name: string, title: string, body?: string | undefined | null, option?: CreateIssueOptions | undefined | null): Promise<IssueInfo>
276
+ /**
277
+ * 获取issue信息
278
+ *
279
+ * ## 参数
280
+ * - `owner` - 仓库所有者
281
+ * - `repo` - 仓库名称
282
+ * - `issue_number` - issue编号
283
+ */
284
+ getIssueInfo(owner: string, name: string, issueNumber: string): Promise<IssueInfo>
285
+ /**
286
+ * 获取仓库所有issue信息
287
+ *
288
+ * ## 参数
289
+ * - `owner` - 仓库所有者
290
+ * - `repo` - 仓库名称
291
+ */
292
+ getIssueList(owner: string, name: string, option?: IssueListOptions | undefined | null): Promise<Array<IssueInfo>>
293
+ /**
294
+ * 更新issue信息
295
+ *
296
+ * ## 参数
297
+ * - `repo_path` - 仓库路径,格式为 `(owner, repo)`
298
+ * - `issue_number` - issue编号
299
+ * - `options` - 更新issue选项, 详见 [UpdateIssueOptions]
300
+ */
301
+ updateIssue(owner: string, name: string, issueNumber: string, options?: UpdateIssueOptions | undefined | null): Promise<IssueInfo>
250
302
  }
251
303
 
252
304
  export declare class GiteeClient {
@@ -372,6 +424,32 @@ export declare class GiteeClient {
372
424
  * - `option` - 创建issue选项, 详见 [CreateIssueOptions]
373
425
  */
374
426
  createIssue(owner: string, name: string, title: string, body?: string | undefined | null, option?: CreateIssueOptions | undefined | null): Promise<IssueInfo>
427
+ /**
428
+ * 获取issue信息
429
+ *
430
+ * ## 参数
431
+ * - `owner` - 仓库所有者
432
+ * - `repo` - 仓库名称
433
+ * - `issue_number` - issue编号
434
+ */
435
+ getIssueInfo(owner: string, name: string, issueNumber: string): Promise<IssueInfo>
436
+ /**
437
+ * 获取仓库所有issue信息
438
+ *
439
+ * ## 参数
440
+ * - `owner` - 仓库所有者
441
+ * - `repo` - 仓库名称
442
+ */
443
+ getIssueList(owner: string, name: string, option?: IssueListOptions | undefined | null): Promise<Array<IssueInfo>>
444
+ /**
445
+ * 更新issue信息
446
+ *
447
+ * ## 参数
448
+ * - `repo_path` - 仓库路径,格式为 `(owner, repo)`
449
+ * - `issue_number` - issue编号
450
+ * - `options` - 更新issue选项, 详见 [UpdateIssueOptions]
451
+ */
452
+ updateIssue(owner: string, name: string, issueNumber: string, options?: UpdateIssueOptions | undefined | null): Promise<IssueInfo>
375
453
  }
376
454
 
377
455
  export declare class GithubClient {
@@ -497,6 +575,39 @@ export declare class GithubClient {
497
575
  * - `option` - 创建issue选项, 详见 [CreateIssueOptions]
498
576
  */
499
577
  createIssue(owner: string, name: string, title: string, body?: string | undefined | null, option?: CreateIssueOptions | undefined | null): Promise<IssueInfo>
578
+ /**
579
+ * 获取issue信息
580
+ *
581
+ * ## 参数
582
+ * - `owner` - 仓库所有者
583
+ * - `repo` - 仓库名称
584
+ * - `issue_number` - issue编号
585
+ */
586
+ getIssueInfo(owner: string, name: string, issueNumber: string): Promise<IssueInfo>
587
+ /**
588
+ * 获取仓库所有issue信息
589
+ *
590
+ * ## 参数
591
+ * - `owner` - 仓库所有者
592
+ * - `repo` - 仓库名称
593
+ */
594
+ getIssueList(owner: string, name: string, option?: IssueListOptions | undefined | null): Promise<Array<IssueInfo>>
595
+ /**
596
+ * 更新issue信息
597
+ *
598
+ * ## 参数
599
+ * - `repo_path` - 仓库路径,格式为 `(owner, repo)`
600
+ * - `issue_number` - issue编号
601
+ * - `options` - 更新issue选项, 详见 [UpdateIssueOptions]
602
+ */
603
+ updateIssue(owner: string, name: string, issueNumber: string, options?: UpdateIssueOptions | undefined | null): Promise<IssueInfo>
604
+ /**
605
+ * 设置反向代理
606
+ *
607
+ * ## 参数
608
+ * - `url` - 反向代理地址, 反代地址需要同时支持`github.com`和`api.github.com`
609
+ */
610
+ setReverseProxy(url: string): Promise<void>
500
611
  }
501
612
 
502
613
  export declare const enum CollaboratorPermission {
@@ -587,8 +698,6 @@ export interface CreateIssueOptions {
587
698
  }
588
699
 
589
700
  export interface IssueInfo {
590
- /** 议题Id */
591
- id: number
592
701
  /** 议题编号 */
593
702
  number: string
594
703
  /** 议题状态 */
@@ -609,6 +718,21 @@ export interface IssueInfo {
609
718
  closedAt?: Date
610
719
  }
611
720
 
721
+ export interface IssueListOptions {
722
+ /** 每页数量,默认 30,最大 100 */
723
+ perPage?: number
724
+ /** 页码,默认 1 */
725
+ page?: number
726
+ /** 标签 */
727
+ labels: Array<string>
728
+ /** 创建者 */
729
+ creator?: string
730
+ /** 分配的用户名 */
731
+ assignee?: string
732
+ /** 状态 */
733
+ state?: StateType
734
+ }
735
+
612
736
  export interface IssueUserInfo {
613
737
  /** 用户名 */
614
738
  name: string
@@ -626,8 +750,6 @@ export interface LabelInfo {
626
750
  }
627
751
 
628
752
  export interface OrgInfo {
629
- /** 组织id */
630
- id: number
631
753
  /** 登录名 */
632
754
  login: string
633
755
  /** 组织名 */
@@ -650,8 +772,6 @@ export interface OrgRepoListOptions {
650
772
  }
651
773
 
652
774
  export interface RepoInfo {
653
- /** 仓库id */
654
- id: string
655
775
  /** 仓库所有者 */
656
776
  owner: string
657
777
  /** 仓库名称 */
@@ -695,7 +815,9 @@ export declare const enum RepoVisibility {
695
815
  }
696
816
 
697
817
  export declare const enum StateType {
818
+ /** 已开启 */
698
819
  Opened = 'Opened',
820
+ /** 已关闭 */
699
821
  Closed = 'Closed'
700
822
  }
701
823
 
@@ -708,9 +830,16 @@ export interface StatsInfo {
708
830
  deletions: number
709
831
  }
710
832
 
833
+ export interface UpdateIssueOptions {
834
+ /** 标题 */
835
+ title?: string
836
+ /** 内容 */
837
+ body?: string
838
+ /** 状态 */
839
+ state?: StateType
840
+ }
841
+
711
842
  export interface UserInfo {
712
- /** 用户Id */
713
- id: string
714
843
  /** 登录用户名 */
715
844
  login: string
716
845
  /** 用户昵称 */
package/dist/index.js CHANGED
@@ -81,8 +81,8 @@ function requireNative() {
81
81
  try {
82
82
  const binding = require('@puniyu/nipaw-android-arm64')
83
83
  const bindingPackageVersion = require('@puniyu/nipaw-android-arm64/package.json').version
84
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
85
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
84
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
85
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
86
86
  }
87
87
  return binding
88
88
  } catch (e) {
@@ -97,8 +97,8 @@ function requireNative() {
97
97
  try {
98
98
  const binding = require('@puniyu/nipaw-android-arm-eabi')
99
99
  const bindingPackageVersion = require('@puniyu/nipaw-android-arm-eabi/package.json').version
100
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
101
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
100
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
101
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
102
102
  }
103
103
  return binding
104
104
  } catch (e) {
@@ -118,8 +118,8 @@ function requireNative() {
118
118
  try {
119
119
  const binding = require('@puniyu/nipaw-win32-x64-gnu')
120
120
  const bindingPackageVersion = require('@puniyu/nipaw-win32-x64-gnu/package.json').version
121
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
122
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
121
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
122
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
123
123
  }
124
124
  return binding
125
125
  } catch (e) {
@@ -134,8 +134,8 @@ function requireNative() {
134
134
  try {
135
135
  const binding = require('@puniyu/nipaw-win32-x64-msvc')
136
136
  const bindingPackageVersion = require('@puniyu/nipaw-win32-x64-msvc/package.json').version
137
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
138
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
137
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
138
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
139
139
  }
140
140
  return binding
141
141
  } catch (e) {
@@ -151,8 +151,8 @@ function requireNative() {
151
151
  try {
152
152
  const binding = require('@puniyu/nipaw-win32-ia32-msvc')
153
153
  const bindingPackageVersion = require('@puniyu/nipaw-win32-ia32-msvc/package.json').version
154
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
155
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
154
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
155
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
156
156
  }
157
157
  return binding
158
158
  } catch (e) {
@@ -167,8 +167,8 @@ function requireNative() {
167
167
  try {
168
168
  const binding = require('@puniyu/nipaw-win32-arm64-msvc')
169
169
  const bindingPackageVersion = require('@puniyu/nipaw-win32-arm64-msvc/package.json').version
170
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
171
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
170
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
171
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
172
172
  }
173
173
  return binding
174
174
  } catch (e) {
@@ -186,8 +186,8 @@ function requireNative() {
186
186
  try {
187
187
  const binding = require('@puniyu/nipaw-darwin-universal')
188
188
  const bindingPackageVersion = require('@puniyu/nipaw-darwin-universal/package.json').version
189
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
190
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
189
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
190
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
191
191
  }
192
192
  return binding
193
193
  } catch (e) {
@@ -202,8 +202,8 @@ function requireNative() {
202
202
  try {
203
203
  const binding = require('@puniyu/nipaw-darwin-x64')
204
204
  const bindingPackageVersion = require('@puniyu/nipaw-darwin-x64/package.json').version
205
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
206
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
205
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
206
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
207
207
  }
208
208
  return binding
209
209
  } catch (e) {
@@ -218,8 +218,8 @@ function requireNative() {
218
218
  try {
219
219
  const binding = require('@puniyu/nipaw-darwin-arm64')
220
220
  const bindingPackageVersion = require('@puniyu/nipaw-darwin-arm64/package.json').version
221
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
222
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
221
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
222
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
223
223
  }
224
224
  return binding
225
225
  } catch (e) {
@@ -238,8 +238,8 @@ function requireNative() {
238
238
  try {
239
239
  const binding = require('@puniyu/nipaw-freebsd-x64')
240
240
  const bindingPackageVersion = require('@puniyu/nipaw-freebsd-x64/package.json').version
241
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
242
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
241
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
242
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
243
243
  }
244
244
  return binding
245
245
  } catch (e) {
@@ -254,8 +254,8 @@ function requireNative() {
254
254
  try {
255
255
  const binding = require('@puniyu/nipaw-freebsd-arm64')
256
256
  const bindingPackageVersion = require('@puniyu/nipaw-freebsd-arm64/package.json').version
257
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
258
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
257
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
258
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
259
259
  }
260
260
  return binding
261
261
  } catch (e) {
@@ -275,8 +275,8 @@ function requireNative() {
275
275
  try {
276
276
  const binding = require('@puniyu/nipaw-linux-x64-musl')
277
277
  const bindingPackageVersion = require('@puniyu/nipaw-linux-x64-musl/package.json').version
278
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
279
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
278
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
279
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
280
280
  }
281
281
  return binding
282
282
  } catch (e) {
@@ -291,8 +291,8 @@ function requireNative() {
291
291
  try {
292
292
  const binding = require('@puniyu/nipaw-linux-x64-gnu')
293
293
  const bindingPackageVersion = require('@puniyu/nipaw-linux-x64-gnu/package.json').version
294
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
295
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
294
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
295
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
296
296
  }
297
297
  return binding
298
298
  } catch (e) {
@@ -309,8 +309,8 @@ function requireNative() {
309
309
  try {
310
310
  const binding = require('@puniyu/nipaw-linux-arm64-musl')
311
311
  const bindingPackageVersion = require('@puniyu/nipaw-linux-arm64-musl/package.json').version
312
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
313
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
312
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
313
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
314
314
  }
315
315
  return binding
316
316
  } catch (e) {
@@ -325,8 +325,8 @@ function requireNative() {
325
325
  try {
326
326
  const binding = require('@puniyu/nipaw-linux-arm64-gnu')
327
327
  const bindingPackageVersion = require('@puniyu/nipaw-linux-arm64-gnu/package.json').version
328
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
329
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
328
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
329
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
330
330
  }
331
331
  return binding
332
332
  } catch (e) {
@@ -343,8 +343,8 @@ function requireNative() {
343
343
  try {
344
344
  const binding = require('@puniyu/nipaw-linux-arm-musleabihf')
345
345
  const bindingPackageVersion = require('@puniyu/nipaw-linux-arm-musleabihf/package.json').version
346
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
347
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
346
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
347
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
348
348
  }
349
349
  return binding
350
350
  } catch (e) {
@@ -359,8 +359,8 @@ function requireNative() {
359
359
  try {
360
360
  const binding = require('@puniyu/nipaw-linux-arm-gnueabihf')
361
361
  const bindingPackageVersion = require('@puniyu/nipaw-linux-arm-gnueabihf/package.json').version
362
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
363
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
362
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
363
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
364
364
  }
365
365
  return binding
366
366
  } catch (e) {
@@ -377,8 +377,8 @@ function requireNative() {
377
377
  try {
378
378
  const binding = require('@puniyu/nipaw-linux-loong64-musl')
379
379
  const bindingPackageVersion = require('@puniyu/nipaw-linux-loong64-musl/package.json').version
380
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
381
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
380
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
381
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
382
382
  }
383
383
  return binding
384
384
  } catch (e) {
@@ -393,8 +393,8 @@ function requireNative() {
393
393
  try {
394
394
  const binding = require('@puniyu/nipaw-linux-loong64-gnu')
395
395
  const bindingPackageVersion = require('@puniyu/nipaw-linux-loong64-gnu/package.json').version
396
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
397
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
396
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
397
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
398
398
  }
399
399
  return binding
400
400
  } catch (e) {
@@ -411,8 +411,8 @@ function requireNative() {
411
411
  try {
412
412
  const binding = require('@puniyu/nipaw-linux-riscv64-musl')
413
413
  const bindingPackageVersion = require('@puniyu/nipaw-linux-riscv64-musl/package.json').version
414
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
415
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
414
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
415
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
416
416
  }
417
417
  return binding
418
418
  } catch (e) {
@@ -427,8 +427,8 @@ function requireNative() {
427
427
  try {
428
428
  const binding = require('@puniyu/nipaw-linux-riscv64-gnu')
429
429
  const bindingPackageVersion = require('@puniyu/nipaw-linux-riscv64-gnu/package.json').version
430
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
431
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
430
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
431
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
432
432
  }
433
433
  return binding
434
434
  } catch (e) {
@@ -444,8 +444,8 @@ function requireNative() {
444
444
  try {
445
445
  const binding = require('@puniyu/nipaw-linux-ppc64-gnu')
446
446
  const bindingPackageVersion = require('@puniyu/nipaw-linux-ppc64-gnu/package.json').version
447
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
448
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
447
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
448
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
449
449
  }
450
450
  return binding
451
451
  } catch (e) {
@@ -460,8 +460,8 @@ function requireNative() {
460
460
  try {
461
461
  const binding = require('@puniyu/nipaw-linux-s390x-gnu')
462
462
  const bindingPackageVersion = require('@puniyu/nipaw-linux-s390x-gnu/package.json').version
463
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
464
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
463
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
464
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
465
465
  }
466
466
  return binding
467
467
  } catch (e) {
@@ -480,8 +480,8 @@ function requireNative() {
480
480
  try {
481
481
  const binding = require('@puniyu/nipaw-openharmony-arm64')
482
482
  const bindingPackageVersion = require('@puniyu/nipaw-openharmony-arm64/package.json').version
483
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
484
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
483
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
484
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
485
485
  }
486
486
  return binding
487
487
  } catch (e) {
@@ -496,8 +496,8 @@ function requireNative() {
496
496
  try {
497
497
  const binding = require('@puniyu/nipaw-openharmony-x64')
498
498
  const bindingPackageVersion = require('@puniyu/nipaw-openharmony-x64/package.json').version
499
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
500
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
499
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
500
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
501
501
  }
502
502
  return binding
503
503
  } catch (e) {
@@ -512,8 +512,8 @@ function requireNative() {
512
512
  try {
513
513
  const binding = require('@puniyu/nipaw-openharmony-arm')
514
514
  const bindingPackageVersion = require('@puniyu/nipaw-openharmony-arm/package.json').version
515
- if (bindingPackageVersion !== '1.6.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
516
- throw new Error(`Native binding package version mismatch, expected 1.6.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
515
+ if (bindingPackageVersion !== '1.7.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
516
+ throw new Error(`Native binding package version mismatch, expected 1.7.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
517
517
  }
518
518
  return binding
519
519
  } catch (e) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@puniyu/nipaw",
3
- "version": "1.6.1",
3
+ "version": "1.7.0",
4
4
  "description": "一个git平台封装库",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -40,11 +40,11 @@
40
40
  "@napi-rs/cli": "^3.4.1"
41
41
  },
42
42
  "optionalDependencies": {
43
- "@puniyu/nipaw-win32-x64-msvc": "1.6.1",
44
- "@puniyu/nipaw-darwin-x64": "1.6.1",
45
- "@puniyu/nipaw-linux-x64-gnu": "1.6.1",
46
- "@puniyu/nipaw-linux-arm64-gnu": "1.6.1",
47
- "@puniyu/nipaw-darwin-arm64": "1.6.1"
43
+ "@puniyu/nipaw-win32-x64-msvc": "1.7.0",
44
+ "@puniyu/nipaw-darwin-x64": "1.7.0",
45
+ "@puniyu/nipaw-linux-x64-gnu": "1.7.0",
46
+ "@puniyu/nipaw-linux-arm64-gnu": "1.7.0",
47
+ "@puniyu/nipaw-darwin-arm64": "1.7.0"
48
48
  },
49
49
  "scripts": {
50
50
  "artifacts": "napi artifacts",