@gitbeaker/core 39.34.2 → 39.34.3

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 CHANGED
@@ -3213,6 +3213,8 @@ declare class ResourceVariables<C extends boolean> extends BaseResource<C> {
3213
3213
  protected?: boolean;
3214
3214
  masked?: boolean;
3215
3215
  environmentScope?: string;
3216
+ description?: string;
3217
+ raw?: boolean;
3216
3218
  } & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<VariableSchema, C, E, void>>;
3217
3219
  edit<E extends boolean = false>(resourceId: string | number, key: string, value: string, options?: {
3218
3220
  variableType?: VariableType;
@@ -3220,6 +3222,8 @@ declare class ResourceVariables<C extends boolean> extends BaseResource<C> {
3220
3222
  masked?: boolean;
3221
3223
  environmentScope?: string;
3222
3224
  filter: VariableFilter;
3225
+ description?: string;
3226
+ raw?: boolean;
3223
3227
  } & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<VariableSchema, C, E, void>>;
3224
3228
  show<E extends boolean = false>(resourceId: string | number, key: string, options?: {
3225
3229
  filter?: VariableFilter;
@@ -6669,12 +6673,15 @@ interface ProjectVariables<C extends boolean = false> extends ResourceVariables<
6669
6673
  protected?: boolean;
6670
6674
  masked?: boolean;
6671
6675
  environmentScope?: string;
6676
+ description?: string;
6677
+ raw?: boolean;
6672
6678
  } & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<ProjectVariableSchema, C, E, void>>;
6673
6679
  edit<E extends boolean = false>(projectId: string | number, key: string, value: string, options?: {
6674
6680
  variableType?: VariableType;
6675
6681
  protected?: boolean;
6676
6682
  masked?: boolean;
6677
6683
  environmentScope?: string;
6684
+ raw?: boolean;
6678
6685
  filter: VariableFilter;
6679
6686
  } & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<ProjectVariableSchema, C, E, void>>;
6680
6687
  show<E extends boolean = false>(projectId: string | number, key: string, options?: {
@@ -7746,12 +7753,17 @@ interface GroupVariables<C extends boolean = false> extends ResourceVariables<C>
7746
7753
  protected?: boolean;
7747
7754
  masked?: boolean;
7748
7755
  environmentScope?: string;
7756
+ description?: string;
7757
+ raw?: boolean;
7749
7758
  } & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<VariableSchema, C, E, void>>;
7750
7759
  edit<E extends boolean = false>(groupId: string | number, key: string, value: string, options?: {
7751
7760
  variableType?: VariableType;
7752
7761
  protected?: boolean;
7753
7762
  masked?: boolean;
7754
7763
  environmentScope?: string;
7764
+ description?: string;
7765
+ raw?: boolean;
7766
+ filter: VariableFilter;
7755
7767
  } & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<VariableSchema, C, E, void>>;
7756
7768
  show<E extends boolean = false>(groupId: string | number, key: string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<VariableSchema, C, E, void>>;
7757
7769
  remove<E extends boolean = false>(groupId: string | number, key: string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
package/dist/index.d.ts CHANGED
@@ -3213,6 +3213,8 @@ declare class ResourceVariables<C extends boolean> extends BaseResource<C> {
3213
3213
  protected?: boolean;
3214
3214
  masked?: boolean;
3215
3215
  environmentScope?: string;
3216
+ description?: string;
3217
+ raw?: boolean;
3216
3218
  } & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<VariableSchema, C, E, void>>;
3217
3219
  edit<E extends boolean = false>(resourceId: string | number, key: string, value: string, options?: {
3218
3220
  variableType?: VariableType;
@@ -3220,6 +3222,8 @@ declare class ResourceVariables<C extends boolean> extends BaseResource<C> {
3220
3222
  masked?: boolean;
3221
3223
  environmentScope?: string;
3222
3224
  filter: VariableFilter;
3225
+ description?: string;
3226
+ raw?: boolean;
3223
3227
  } & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<VariableSchema, C, E, void>>;
3224
3228
  show<E extends boolean = false>(resourceId: string | number, key: string, options?: {
3225
3229
  filter?: VariableFilter;
@@ -6669,12 +6673,15 @@ interface ProjectVariables<C extends boolean = false> extends ResourceVariables<
6669
6673
  protected?: boolean;
6670
6674
  masked?: boolean;
6671
6675
  environmentScope?: string;
6676
+ description?: string;
6677
+ raw?: boolean;
6672
6678
  } & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<ProjectVariableSchema, C, E, void>>;
6673
6679
  edit<E extends boolean = false>(projectId: string | number, key: string, value: string, options?: {
6674
6680
  variableType?: VariableType;
6675
6681
  protected?: boolean;
6676
6682
  masked?: boolean;
6677
6683
  environmentScope?: string;
6684
+ raw?: boolean;
6678
6685
  filter: VariableFilter;
6679
6686
  } & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<ProjectVariableSchema, C, E, void>>;
6680
6687
  show<E extends boolean = false>(projectId: string | number, key: string, options?: {
@@ -7746,12 +7753,17 @@ interface GroupVariables<C extends boolean = false> extends ResourceVariables<C>
7746
7753
  protected?: boolean;
7747
7754
  masked?: boolean;
7748
7755
  environmentScope?: string;
7756
+ description?: string;
7757
+ raw?: boolean;
7749
7758
  } & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<VariableSchema, C, E, void>>;
7750
7759
  edit<E extends boolean = false>(groupId: string | number, key: string, value: string, options?: {
7751
7760
  variableType?: VariableType;
7752
7761
  protected?: boolean;
7753
7762
  masked?: boolean;
7754
7763
  environmentScope?: string;
7764
+ description?: string;
7765
+ raw?: boolean;
7766
+ filter: VariableFilter;
7755
7767
  } & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<VariableSchema, C, E, void>>;
7756
7768
  show<E extends boolean = false>(groupId: string | number, key: string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<VariableSchema, C, E, void>>;
7757
7769
  remove<E extends boolean = false>(groupId: string | number, key: string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitbeaker/core",
3
- "version": "39.34.2",
3
+ "version": "39.34.3",
4
4
  "description": "Core API implementation of the GitLab API",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -51,7 +51,7 @@
51
51
  "lint:fix": "yarn lint --fix"
52
52
  },
53
53
  "dependencies": {
54
- "@gitbeaker/requester-utils": "^39.34.2",
54
+ "@gitbeaker/requester-utils": "^39.34.3",
55
55
  "qs": "^6.11.2",
56
56
  "xcase": "^2.0.1"
57
57
  },
@@ -62,5 +62,5 @@
62
62
  "tsx": "^4.7.0",
63
63
  "typescript": "^5.3.3"
64
64
  },
65
- "gitHead": "c0ad1a7077833e0aa2222bcae7e558c85b5c4283"
65
+ "gitHead": "e71987ea932600fa570da91cb7a17d25fe7d017b"
66
66
  }