@cnbcool/cnb-cli 1.0.5 → 1.0.6
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": "@cnbcool/cnb-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "CNB OpenAPI 命令行工具,基于 CNB 平台 Swagger 自动生成,支持 Issues、PR、Git、组织管理等全部 API 操作",
|
|
5
5
|
"main": "skills/cnb-api/scripts/core/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"author": "",
|
|
35
35
|
"license": "MIT",
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@cnbcool/cnb-api-generate": "^1.2.
|
|
37
|
+
"@cnbcool/cnb-api-generate": "^1.2.3",
|
|
38
38
|
"skills": "^1.4.4"
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"rank": 5,
|
|
7
7
|
"search": 1,
|
|
8
8
|
"users": 6,
|
|
9
|
-
"issues":
|
|
9
|
+
"issues": 24,
|
|
10
10
|
"repositories": 15,
|
|
11
11
|
"starring": 3,
|
|
12
12
|
"activities": 3,
|
|
@@ -6793,6 +6793,240 @@
|
|
|
6793
6793
|
}
|
|
6794
6794
|
}
|
|
6795
6795
|
},
|
|
6796
|
+
"post-issue-file-asset-upload-url": {
|
|
6797
|
+
"path": "/{repo}/-/issues/{number}/comment-file-asset-upload-url",
|
|
6798
|
+
"method": "post",
|
|
6799
|
+
"category": "issues",
|
|
6800
|
+
"filename": "post-issue-file-asset-upload-url",
|
|
6801
|
+
"summary": "创建一个 Issue 评论的文件上传 url。请使用 put 发起流式上传到 upload_url 地址。上传完成后将 asset_link 添加到创建评论请求的 body 中",
|
|
6802
|
+
"description": "访问令牌调用此接口需包含以下权限。Required permissions for access token. repo-notes:rw",
|
|
6803
|
+
"permission": "repo-notes:rw",
|
|
6804
|
+
"help": {
|
|
6805
|
+
"parameter": {
|
|
6806
|
+
"path": {
|
|
6807
|
+
"repo": {
|
|
6808
|
+
"type": "string",
|
|
6809
|
+
"description": "不带.git后缀的仓库名称。格式:`组织名称/仓库名称`",
|
|
6810
|
+
"name": "repo",
|
|
6811
|
+
"required": true
|
|
6812
|
+
},
|
|
6813
|
+
"number": {
|
|
6814
|
+
"type": "number",
|
|
6815
|
+
"description": "仓库内 Issue 唯一编号",
|
|
6816
|
+
"name": "number",
|
|
6817
|
+
"required": true
|
|
6818
|
+
}
|
|
6819
|
+
},
|
|
6820
|
+
"body": {
|
|
6821
|
+
"description": "Post Issue Comment Upload URL Form",
|
|
6822
|
+
"name": "post_issue_upload_url_form",
|
|
6823
|
+
"required": true,
|
|
6824
|
+
"schema": {
|
|
6825
|
+
"type": "object",
|
|
6826
|
+
"properties": {
|
|
6827
|
+
"content_type": {
|
|
6828
|
+
"type": "string",
|
|
6829
|
+
"description": "文件类型。"
|
|
6830
|
+
},
|
|
6831
|
+
"name": {
|
|
6832
|
+
"type": "string",
|
|
6833
|
+
"description": "文件名。必填。"
|
|
6834
|
+
},
|
|
6835
|
+
"size": {
|
|
6836
|
+
"type": "number",
|
|
6837
|
+
"description": "文件大小,单位:字节。必须大于 0。"
|
|
6838
|
+
}
|
|
6839
|
+
}
|
|
6840
|
+
}
|
|
6841
|
+
}
|
|
6842
|
+
},
|
|
6843
|
+
"response": {
|
|
6844
|
+
"201": {
|
|
6845
|
+
"description": "Created",
|
|
6846
|
+
"schema": {
|
|
6847
|
+
"type": "object",
|
|
6848
|
+
"properties": {
|
|
6849
|
+
"asset_link": {
|
|
6850
|
+
"type": "string",
|
|
6851
|
+
"description": "资源链接。添加到 body 中提交。"
|
|
6852
|
+
},
|
|
6853
|
+
"path": {
|
|
6854
|
+
"type": "string",
|
|
6855
|
+
"description": "资源路径。"
|
|
6856
|
+
},
|
|
6857
|
+
"upload_url": {
|
|
6858
|
+
"type": "string",
|
|
6859
|
+
"description": "上传地址。使用 HTTP Put 请求流试发送数据。"
|
|
6860
|
+
}
|
|
6861
|
+
}
|
|
6862
|
+
}
|
|
6863
|
+
},
|
|
6864
|
+
"404": {
|
|
6865
|
+
"description": "Not Found",
|
|
6866
|
+
"schema": {
|
|
6867
|
+
"type": "object",
|
|
6868
|
+
"properties": {
|
|
6869
|
+
"errcode": {
|
|
6870
|
+
"type": "number"
|
|
6871
|
+
},
|
|
6872
|
+
"errmsg": {
|
|
6873
|
+
"type": "string"
|
|
6874
|
+
},
|
|
6875
|
+
"errparam": {
|
|
6876
|
+
"type": "object",
|
|
6877
|
+
"properties": {
|
|
6878
|
+
"type": "object",
|
|
6879
|
+
"additionalProperties": {
|
|
6880
|
+
"type": "any"
|
|
6881
|
+
}
|
|
6882
|
+
}
|
|
6883
|
+
}
|
|
6884
|
+
}
|
|
6885
|
+
}
|
|
6886
|
+
},
|
|
6887
|
+
"500": {
|
|
6888
|
+
"description": "Internal Server Error",
|
|
6889
|
+
"schema": {
|
|
6890
|
+
"type": "object",
|
|
6891
|
+
"properties": {
|
|
6892
|
+
"errcode": {
|
|
6893
|
+
"type": "number"
|
|
6894
|
+
},
|
|
6895
|
+
"errmsg": {
|
|
6896
|
+
"type": "string"
|
|
6897
|
+
},
|
|
6898
|
+
"errparam": {
|
|
6899
|
+
"type": "object",
|
|
6900
|
+
"properties": {
|
|
6901
|
+
"type": "object",
|
|
6902
|
+
"additionalProperties": {
|
|
6903
|
+
"type": "any"
|
|
6904
|
+
}
|
|
6905
|
+
}
|
|
6906
|
+
}
|
|
6907
|
+
}
|
|
6908
|
+
}
|
|
6909
|
+
}
|
|
6910
|
+
}
|
|
6911
|
+
}
|
|
6912
|
+
},
|
|
6913
|
+
"post-issue-image-asset-upload-url": {
|
|
6914
|
+
"path": "/{repo}/-/issues/{number}/comment-image-asset-upload-url",
|
|
6915
|
+
"method": "post",
|
|
6916
|
+
"category": "issues",
|
|
6917
|
+
"filename": "post-issue-image-asset-upload-url",
|
|
6918
|
+
"summary": "创建一个 Issue 评论的图片上传 url。请使用 put 发起流式上传到 upload_url 地址。上传完成后将 asset_link 添加到创建评论请求的 body 中",
|
|
6919
|
+
"description": "访问令牌调用此接口需包含以下权限。Required permissions for access token. repo-notes:rw",
|
|
6920
|
+
"permission": "repo-notes:rw",
|
|
6921
|
+
"help": {
|
|
6922
|
+
"parameter": {
|
|
6923
|
+
"path": {
|
|
6924
|
+
"repo": {
|
|
6925
|
+
"type": "string",
|
|
6926
|
+
"description": "不带.git后缀的仓库名称。格式:`组织名称/仓库名称`",
|
|
6927
|
+
"name": "repo",
|
|
6928
|
+
"required": true
|
|
6929
|
+
},
|
|
6930
|
+
"number": {
|
|
6931
|
+
"type": "number",
|
|
6932
|
+
"description": "仓库内 Issue 唯一编号",
|
|
6933
|
+
"name": "number",
|
|
6934
|
+
"required": true
|
|
6935
|
+
}
|
|
6936
|
+
},
|
|
6937
|
+
"body": {
|
|
6938
|
+
"description": "Post Issue Comment Upload URL Form",
|
|
6939
|
+
"name": "post_issue_upload_url_form",
|
|
6940
|
+
"required": true,
|
|
6941
|
+
"schema": {
|
|
6942
|
+
"type": "object",
|
|
6943
|
+
"properties": {
|
|
6944
|
+
"content_type": {
|
|
6945
|
+
"type": "string",
|
|
6946
|
+
"description": "文件类型。"
|
|
6947
|
+
},
|
|
6948
|
+
"name": {
|
|
6949
|
+
"type": "string",
|
|
6950
|
+
"description": "文件名。必填。"
|
|
6951
|
+
},
|
|
6952
|
+
"size": {
|
|
6953
|
+
"type": "number",
|
|
6954
|
+
"description": "文件大小,单位:字节。必须大于 0。"
|
|
6955
|
+
}
|
|
6956
|
+
}
|
|
6957
|
+
}
|
|
6958
|
+
}
|
|
6959
|
+
},
|
|
6960
|
+
"response": {
|
|
6961
|
+
"201": {
|
|
6962
|
+
"description": "Created",
|
|
6963
|
+
"schema": {
|
|
6964
|
+
"type": "object",
|
|
6965
|
+
"properties": {
|
|
6966
|
+
"asset_link": {
|
|
6967
|
+
"type": "string",
|
|
6968
|
+
"description": "资源链接。添加到 body 中提交。"
|
|
6969
|
+
},
|
|
6970
|
+
"path": {
|
|
6971
|
+
"type": "string",
|
|
6972
|
+
"description": "资源路径。"
|
|
6973
|
+
},
|
|
6974
|
+
"upload_url": {
|
|
6975
|
+
"type": "string",
|
|
6976
|
+
"description": "上传地址。使用 HTTP Put 请求流试发送数据。"
|
|
6977
|
+
}
|
|
6978
|
+
}
|
|
6979
|
+
}
|
|
6980
|
+
},
|
|
6981
|
+
"404": {
|
|
6982
|
+
"description": "Not Found",
|
|
6983
|
+
"schema": {
|
|
6984
|
+
"type": "object",
|
|
6985
|
+
"properties": {
|
|
6986
|
+
"errcode": {
|
|
6987
|
+
"type": "number"
|
|
6988
|
+
},
|
|
6989
|
+
"errmsg": {
|
|
6990
|
+
"type": "string"
|
|
6991
|
+
},
|
|
6992
|
+
"errparam": {
|
|
6993
|
+
"type": "object",
|
|
6994
|
+
"properties": {
|
|
6995
|
+
"type": "object",
|
|
6996
|
+
"additionalProperties": {
|
|
6997
|
+
"type": "any"
|
|
6998
|
+
}
|
|
6999
|
+
}
|
|
7000
|
+
}
|
|
7001
|
+
}
|
|
7002
|
+
}
|
|
7003
|
+
},
|
|
7004
|
+
"500": {
|
|
7005
|
+
"description": "Internal Server Error",
|
|
7006
|
+
"schema": {
|
|
7007
|
+
"type": "object",
|
|
7008
|
+
"properties": {
|
|
7009
|
+
"errcode": {
|
|
7010
|
+
"type": "number"
|
|
7011
|
+
},
|
|
7012
|
+
"errmsg": {
|
|
7013
|
+
"type": "string"
|
|
7014
|
+
},
|
|
7015
|
+
"errparam": {
|
|
7016
|
+
"type": "object",
|
|
7017
|
+
"properties": {
|
|
7018
|
+
"type": "object",
|
|
7019
|
+
"additionalProperties": {
|
|
7020
|
+
"type": "any"
|
|
7021
|
+
}
|
|
7022
|
+
}
|
|
7023
|
+
}
|
|
7024
|
+
}
|
|
7025
|
+
}
|
|
7026
|
+
}
|
|
7027
|
+
}
|
|
7028
|
+
}
|
|
7029
|
+
},
|
|
6796
7030
|
"list-issue-comments": {
|
|
6797
7031
|
"path": "/{repo}/-/issues/{number}/comments",
|
|
6798
7032
|
"method": "get",
|
|
@@ -37678,7 +37912,7 @@
|
|
|
37678
37912
|
"path": {
|
|
37679
37913
|
"slug": {
|
|
37680
37914
|
"type": "string",
|
|
37681
|
-
"description": "
|
|
37915
|
+
"description": "不带.git后缀的仓库名称。格式:`组织名称/仓库名称`",
|
|
37682
37916
|
"name": "slug",
|
|
37683
37917
|
"required": true
|
|
37684
37918
|
}
|
|
@@ -37686,27 +37920,27 @@
|
|
|
37686
37920
|
"query": {
|
|
37687
37921
|
"issue_rule": {
|
|
37688
37922
|
"type": "string",
|
|
37689
|
-
"description": "
|
|
37923
|
+
"description": "问题规则,用于筛选特定类型的问题。示例值:`critical-risk`, `LIC_CRITICAL`, `VUL_CRITICAL`",
|
|
37690
37924
|
"name": "issue_rule",
|
|
37691
37925
|
"required": false
|
|
37692
37926
|
},
|
|
37693
37927
|
"risk_level": {
|
|
37694
37928
|
"type": "string",
|
|
37695
|
-
"description": "
|
|
37929
|
+
"description": "严重程度,用于筛选特定风险等级的问题。枚举值:`info`, `warning`, `error`, `fatal`, `all`",
|
|
37696
37930
|
"name": "risk_level",
|
|
37697
37931
|
"required": false
|
|
37698
37932
|
},
|
|
37699
37933
|
"page": {
|
|
37700
37934
|
"type": "number",
|
|
37701
37935
|
"default": 1,
|
|
37702
|
-
"description": "
|
|
37936
|
+
"description": "分页页码。",
|
|
37703
37937
|
"name": "page",
|
|
37704
37938
|
"required": false
|
|
37705
37939
|
},
|
|
37706
37940
|
"page_size": {
|
|
37707
37941
|
"type": "number",
|
|
37708
37942
|
"default": 10,
|
|
37709
|
-
"description": "
|
|
37943
|
+
"description": "分页页大小。",
|
|
37710
37944
|
"name": "page_size",
|
|
37711
37945
|
"required": false
|
|
37712
37946
|
}
|
|
@@ -37724,69 +37958,69 @@
|
|
|
37724
37958
|
"properties": {
|
|
37725
37959
|
"author_email": {
|
|
37726
37960
|
"type": "string",
|
|
37727
|
-
"description": "责任人邮箱(git
|
|
37961
|
+
"description": "责任人邮箱(git 原始信息)。"
|
|
37728
37962
|
},
|
|
37729
37963
|
"author_name": {
|
|
37730
37964
|
"type": "string",
|
|
37731
|
-
"description": "责任人姓名(git
|
|
37965
|
+
"description": "责任人姓名(git 原始信息)。"
|
|
37732
37966
|
},
|
|
37733
37967
|
"created_at": {
|
|
37734
37968
|
"type": "string",
|
|
37735
|
-
"description": "
|
|
37969
|
+
"description": "问题创建时间。"
|
|
37736
37970
|
},
|
|
37737
37971
|
"display_name": {
|
|
37738
37972
|
"type": "string",
|
|
37739
|
-
"description": "
|
|
37973
|
+
"description": "规则展示名称。"
|
|
37740
37974
|
},
|
|
37741
37975
|
"file_path": {
|
|
37742
37976
|
"type": "string",
|
|
37743
|
-
"description": "
|
|
37977
|
+
"description": "包含问题的文件路径。"
|
|
37744
37978
|
},
|
|
37745
37979
|
"id": {
|
|
37746
37980
|
"type": "string",
|
|
37747
|
-
"description": "问题ID"
|
|
37981
|
+
"description": "问题ID。"
|
|
37748
37982
|
},
|
|
37749
37983
|
"line_no": {
|
|
37750
37984
|
"type": "number",
|
|
37751
|
-
"description": "
|
|
37985
|
+
"description": "行号。"
|
|
37752
37986
|
},
|
|
37753
37987
|
"occur_version": {
|
|
37754
37988
|
"type": "string",
|
|
37755
|
-
"description": "引入问题的
|
|
37989
|
+
"description": "引入问题的commit。"
|
|
37756
37990
|
},
|
|
37757
37991
|
"repo_id": {
|
|
37758
37992
|
"type": "string",
|
|
37759
|
-
"description": "仓库ID"
|
|
37993
|
+
"description": "仓库ID。"
|
|
37760
37994
|
},
|
|
37761
37995
|
"revision": {
|
|
37762
37996
|
"type": "string",
|
|
37763
|
-
"description": "问题所在的
|
|
37997
|
+
"description": "问题所在的commit。"
|
|
37764
37998
|
},
|
|
37765
37999
|
"risk_level": {
|
|
37766
38000
|
"type": "string",
|
|
37767
|
-
"description": "
|
|
38001
|
+
"description": "严重级别。"
|
|
37768
38002
|
},
|
|
37769
38003
|
"rule": {
|
|
37770
38004
|
"type": "string",
|
|
37771
|
-
"description": "
|
|
38005
|
+
"description": "问题规则。"
|
|
37772
38006
|
},
|
|
37773
38007
|
"rule_title": {
|
|
37774
38008
|
"type": "string",
|
|
37775
|
-
"description": "
|
|
38009
|
+
"description": "规则名称。"
|
|
37776
38010
|
},
|
|
37777
38011
|
"tool": {
|
|
37778
38012
|
"type": "string",
|
|
37779
|
-
"description": "
|
|
38013
|
+
"description": "扫描工具。"
|
|
37780
38014
|
}
|
|
37781
38015
|
}
|
|
37782
38016
|
},
|
|
37783
|
-
"description": "
|
|
38017
|
+
"description": "问题列表。"
|
|
37784
38018
|
}
|
|
37785
38019
|
}
|
|
37786
38020
|
}
|
|
37787
38021
|
},
|
|
37788
38022
|
"400": {
|
|
37789
|
-
"description": "
|
|
38023
|
+
"description": "请求参数错误。",
|
|
37790
38024
|
"schema": {
|
|
37791
38025
|
"type": "object",
|
|
37792
38026
|
"properties": {
|
|
@@ -37809,7 +38043,7 @@
|
|
|
37809
38043
|
}
|
|
37810
38044
|
},
|
|
37811
38045
|
"500": {
|
|
37812
|
-
"description": "
|
|
38046
|
+
"description": "服务器内部错误。",
|
|
37813
38047
|
"schema": {
|
|
37814
38048
|
"type": "object",
|
|
37815
38049
|
"properties": {
|
|
@@ -37847,13 +38081,13 @@
|
|
|
37847
38081
|
"path": {
|
|
37848
38082
|
"slug": {
|
|
37849
38083
|
"type": "string",
|
|
37850
|
-
"description": "
|
|
38084
|
+
"description": "不带.git后缀的仓库名称。格式:`组织名称/仓库名称`",
|
|
37851
38085
|
"name": "slug",
|
|
37852
38086
|
"required": true
|
|
37853
38087
|
},
|
|
37854
38088
|
"record_id": {
|
|
37855
38089
|
"type": "number",
|
|
37856
|
-
"description": "源码扫描问题记录ID",
|
|
38090
|
+
"description": "源码扫描问题记录ID。",
|
|
37857
38091
|
"name": "record_id",
|
|
37858
38092
|
"required": true
|
|
37859
38093
|
}
|
|
@@ -37867,89 +38101,89 @@
|
|
|
37867
38101
|
"properties": {
|
|
37868
38102
|
"author_email": {
|
|
37869
38103
|
"type": "string",
|
|
37870
|
-
"description": "责任人邮箱(git
|
|
38104
|
+
"description": "责任人邮箱(git 原始信息)。"
|
|
37871
38105
|
},
|
|
37872
38106
|
"author_name": {
|
|
37873
38107
|
"type": "string",
|
|
37874
|
-
"description": "责任人姓名(git
|
|
38108
|
+
"description": "责任人姓名(git 原始信息)。"
|
|
37875
38109
|
},
|
|
37876
38110
|
"created_at": {
|
|
37877
38111
|
"type": "string",
|
|
37878
|
-
"description": "
|
|
38112
|
+
"description": "问题创建时间。"
|
|
37879
38113
|
},
|
|
37880
38114
|
"description": {
|
|
37881
38115
|
"type": "string",
|
|
37882
|
-
"description": "
|
|
38116
|
+
"description": "问题描述。"
|
|
37883
38117
|
},
|
|
37884
38118
|
"display_name": {
|
|
37885
38119
|
"type": "string",
|
|
37886
|
-
"description": "
|
|
38120
|
+
"description": "规则展示名称。"
|
|
37887
38121
|
},
|
|
37888
38122
|
"extra_msg": {
|
|
37889
38123
|
"type": "string",
|
|
37890
|
-
"description": "
|
|
38124
|
+
"description": "额外信息。"
|
|
37891
38125
|
},
|
|
37892
38126
|
"file_path": {
|
|
37893
38127
|
"type": "string",
|
|
37894
|
-
"description": "
|
|
38128
|
+
"description": "包含问题的文件路径。"
|
|
37895
38129
|
},
|
|
37896
38130
|
"id": {
|
|
37897
38131
|
"type": "string",
|
|
37898
|
-
"description": "问题ID"
|
|
38132
|
+
"description": "问题ID。"
|
|
37899
38133
|
},
|
|
37900
38134
|
"ignored_at": {
|
|
37901
38135
|
"type": "string",
|
|
37902
|
-
"description": "
|
|
38136
|
+
"description": "忽略时间。"
|
|
37903
38137
|
},
|
|
37904
38138
|
"introduce": {
|
|
37905
38139
|
"type": "string",
|
|
37906
|
-
"description": "
|
|
38140
|
+
"description": "问题介绍。"
|
|
37907
38141
|
},
|
|
37908
38142
|
"line_no": {
|
|
37909
38143
|
"type": "number",
|
|
37910
|
-
"description": "
|
|
38144
|
+
"description": "行号。"
|
|
37911
38145
|
},
|
|
37912
38146
|
"occur_version": {
|
|
37913
38147
|
"type": "string",
|
|
37914
|
-
"description": "引入问题的
|
|
38148
|
+
"description": "引入问题的commit。"
|
|
37915
38149
|
},
|
|
37916
38150
|
"reopen_at": {
|
|
37917
38151
|
"type": "string",
|
|
37918
|
-
"description": "
|
|
38152
|
+
"description": "重新开启时间。"
|
|
37919
38153
|
},
|
|
37920
38154
|
"repo_id": {
|
|
37921
38155
|
"type": "string",
|
|
37922
|
-
"description": "仓库ID"
|
|
38156
|
+
"description": "仓库ID。"
|
|
37923
38157
|
},
|
|
37924
38158
|
"revision": {
|
|
37925
38159
|
"type": "string",
|
|
37926
|
-
"description": "问题所在的
|
|
38160
|
+
"description": "问题所在的commit。"
|
|
37927
38161
|
},
|
|
37928
38162
|
"risk_level": {
|
|
37929
38163
|
"type": "string",
|
|
37930
|
-
"description": "
|
|
38164
|
+
"description": "严重级别。"
|
|
37931
38165
|
},
|
|
37932
38166
|
"rule": {
|
|
37933
38167
|
"type": "string",
|
|
37934
|
-
"description": "
|
|
38168
|
+
"description": "问题规则。"
|
|
37935
38169
|
},
|
|
37936
38170
|
"rule_title": {
|
|
37937
38171
|
"type": "string",
|
|
37938
|
-
"description": "
|
|
38172
|
+
"description": "规则名称。"
|
|
37939
38173
|
},
|
|
37940
38174
|
"state": {
|
|
37941
38175
|
"type": "string",
|
|
37942
|
-
"description": "问题状态(open/ignored
|
|
38176
|
+
"description": "问题状态(open/ignored)。"
|
|
37943
38177
|
},
|
|
37944
38178
|
"tool": {
|
|
37945
38179
|
"type": "string",
|
|
37946
|
-
"description": "
|
|
38180
|
+
"description": "扫描工具。"
|
|
37947
38181
|
}
|
|
37948
38182
|
}
|
|
37949
38183
|
}
|
|
37950
38184
|
},
|
|
37951
38185
|
"400": {
|
|
37952
|
-
"description": "
|
|
38186
|
+
"description": "请求参数错误。",
|
|
37953
38187
|
"schema": {
|
|
37954
38188
|
"type": "object",
|
|
37955
38189
|
"properties": {
|
|
@@ -37995,7 +38229,7 @@
|
|
|
37995
38229
|
}
|
|
37996
38230
|
},
|
|
37997
38231
|
"500": {
|
|
37998
|
-
"description": "
|
|
38232
|
+
"description": "服务器内部错误。",
|
|
37999
38233
|
"schema": {
|
|
38000
38234
|
"type": "object",
|
|
38001
38235
|
"properties": {
|
|
@@ -14,9 +14,8 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
14
14
|
* ## THIS FILE WAS GENERATED VIA CNB-API-GENERATE ##
|
|
15
15
|
* ## ##
|
|
16
16
|
* ## AUTHOR: bapelin ##
|
|
17
|
-
* ## SOURCE: https://cnb.cool/cnb/
|
|
17
|
+
* ## SOURCE: https://cnb.cool/cnb/skills/cnb-api-generate ##
|
|
18
18
|
* -------------------------------------------------------------------------
|
|
19
|
-
* @Version 1.2.1
|
|
20
19
|
* @Source /{repo}/-/issues/{number}/comment-file-asset-upload-url
|
|
21
20
|
*/
|
|
22
21
|
|
|
@@ -14,9 +14,8 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
14
14
|
* ## THIS FILE WAS GENERATED VIA CNB-API-GENERATE ##
|
|
15
15
|
* ## ##
|
|
16
16
|
* ## AUTHOR: bapelin ##
|
|
17
|
-
* ## SOURCE: https://cnb.cool/cnb/
|
|
17
|
+
* ## SOURCE: https://cnb.cool/cnb/skills/cnb-api-generate ##
|
|
18
18
|
* -------------------------------------------------------------------------
|
|
19
|
-
* @Version 1.2.1
|
|
20
19
|
* @Source /{repo}/-/issues/{number}/comment-image-asset-upload-url
|
|
21
20
|
*/
|
|
22
21
|
|