@gitbeaker/core 41.1.2 → 41.2.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/README.md +195 -186
- package/dist/index.d.mts +19 -33
- package/dist/index.d.ts +19 -33
- package/dist/index.js +56 -54
- package/dist/index.mjs +57 -54
- package/dist/map.json +53 -11
- package/package.json +3 -3
package/dist/map.json
CHANGED
|
@@ -3999,6 +3999,59 @@
|
|
|
3999
3999
|
"2",
|
|
4000
4000
|
"3"
|
|
4001
4001
|
]
|
|
4002
|
+
},
|
|
4003
|
+
{
|
|
4004
|
+
"name": "show",
|
|
4005
|
+
"args": [
|
|
4006
|
+
"projectId"
|
|
4007
|
+
]
|
|
4008
|
+
},
|
|
4009
|
+
{
|
|
4010
|
+
"name": "edit",
|
|
4011
|
+
"args": [
|
|
4012
|
+
"projectId",
|
|
4013
|
+
"enabled"
|
|
4014
|
+
]
|
|
4015
|
+
},
|
|
4016
|
+
{
|
|
4017
|
+
"name": "showInboundAllowList",
|
|
4018
|
+
"args": [
|
|
4019
|
+
"projectId"
|
|
4020
|
+
]
|
|
4021
|
+
},
|
|
4022
|
+
{
|
|
4023
|
+
"name": "addToInboundAllowList",
|
|
4024
|
+
"args": [
|
|
4025
|
+
"projectId",
|
|
4026
|
+
"targetProjectId"
|
|
4027
|
+
]
|
|
4028
|
+
},
|
|
4029
|
+
{
|
|
4030
|
+
"name": "removeFromInboundAllowList",
|
|
4031
|
+
"args": [
|
|
4032
|
+
"projectId",
|
|
4033
|
+
"targetProjectId"
|
|
4034
|
+
]
|
|
4035
|
+
},
|
|
4036
|
+
{
|
|
4037
|
+
"name": "showGroupsAllowList",
|
|
4038
|
+
"args": [
|
|
4039
|
+
"projectId"
|
|
4040
|
+
]
|
|
4041
|
+
},
|
|
4042
|
+
{
|
|
4043
|
+
"name": "addToGroupsAllowList",
|
|
4044
|
+
"args": [
|
|
4045
|
+
"projectId",
|
|
4046
|
+
"targetGroupId"
|
|
4047
|
+
]
|
|
4048
|
+
},
|
|
4049
|
+
{
|
|
4050
|
+
"name": "removeFromGroupsAllowList",
|
|
4051
|
+
"args": [
|
|
4052
|
+
"projectId",
|
|
4053
|
+
"targetGroupId"
|
|
4054
|
+
]
|
|
4002
4055
|
}
|
|
4003
4056
|
],
|
|
4004
4057
|
"ProjectLabels": [
|
|
@@ -5575,17 +5628,6 @@
|
|
|
5575
5628
|
]
|
|
5576
5629
|
}
|
|
5577
5630
|
],
|
|
5578
|
-
"GroupJobTokenScopes": [
|
|
5579
|
-
{
|
|
5580
|
-
"name": "constructor",
|
|
5581
|
-
"args": [
|
|
5582
|
-
"0",
|
|
5583
|
-
"1",
|
|
5584
|
-
"2",
|
|
5585
|
-
"3"
|
|
5586
|
-
]
|
|
5587
|
-
}
|
|
5588
|
-
],
|
|
5589
5631
|
"GroupLDAPLinks": [
|
|
5590
5632
|
{
|
|
5591
5633
|
"name": "constructor",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitbeaker/core",
|
|
3
|
-
"version": "41.
|
|
3
|
+
"version": "41.2.0",
|
|
4
4
|
"description": "Core API implementation of the GitLab API",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"lint:fix": "yarn lint --fix"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@gitbeaker/requester-utils": "^41.
|
|
55
|
+
"@gitbeaker/requester-utils": "^41.2.0",
|
|
56
56
|
"qs": "^6.12.2",
|
|
57
57
|
"xcase": "^2.0.1"
|
|
58
58
|
},
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"tsx": "^4.16.2",
|
|
64
64
|
"typescript": "^5.5.3"
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "b437feab518c9cde14a9b96a12c13d95bf73a9ac"
|
|
67
67
|
}
|