@gitbeaker/core 42.4.0 → 42.4.1
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.mts +6 -0
- package/dist/index.d.ts +6 -0
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -5190,8 +5190,14 @@ interface EnvironmentSchema extends Record<string, unknown> {
|
|
|
5190
5190
|
updated_at: string;
|
|
5191
5191
|
enable_advanced_logs_querying: boolean;
|
|
5192
5192
|
logs_api_path: string;
|
|
5193
|
+
flux_resource_path?: string;
|
|
5194
|
+
kubernetes_namespace?: string;
|
|
5193
5195
|
last_deployment: DeploymentSchema;
|
|
5194
5196
|
deployable: DeployableSchema;
|
|
5197
|
+
project?: SimpleProjectSchema;
|
|
5198
|
+
auto_stop_at: string | null;
|
|
5199
|
+
description: string | null;
|
|
5200
|
+
auto_stop_setting: string;
|
|
5195
5201
|
}
|
|
5196
5202
|
type CondensedEnvironmentSchema = MappedOmit<EnvironmentSchema, 'last_deployment' | 'deployable'>;
|
|
5197
5203
|
type ReviewAppSchema = MappedOmit<CondensedEnvironmentSchema, 'state'>;
|
package/dist/index.d.ts
CHANGED
|
@@ -5190,8 +5190,14 @@ interface EnvironmentSchema extends Record<string, unknown> {
|
|
|
5190
5190
|
updated_at: string;
|
|
5191
5191
|
enable_advanced_logs_querying: boolean;
|
|
5192
5192
|
logs_api_path: string;
|
|
5193
|
+
flux_resource_path?: string;
|
|
5194
|
+
kubernetes_namespace?: string;
|
|
5193
5195
|
last_deployment: DeploymentSchema;
|
|
5194
5196
|
deployable: DeployableSchema;
|
|
5197
|
+
project?: SimpleProjectSchema;
|
|
5198
|
+
auto_stop_at: string | null;
|
|
5199
|
+
description: string | null;
|
|
5200
|
+
auto_stop_setting: string;
|
|
5195
5201
|
}
|
|
5196
5202
|
type CondensedEnvironmentSchema = MappedOmit<EnvironmentSchema, 'last_deployment' | 'deployable'>;
|
|
5197
5203
|
type ReviewAppSchema = MappedOmit<CondensedEnvironmentSchema, 'state'>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitbeaker/core",
|
|
3
|
-
"version": "42.4.
|
|
3
|
+
"version": "42.4.1",
|
|
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": "^42.4.
|
|
55
|
+
"@gitbeaker/requester-utils": "^42.4.1",
|
|
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": "30dbcfbc2144c64c277e5845178f04d295ba2be5"
|
|
67
67
|
}
|