@gooddata/code-cli 0.41.0-alpha.1 → 0.41.0-alpha.2

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.
Files changed (3) hide show
  1. package/NOTICE +3 -3
  2. package/dist/index.js +15 -9
  3. package/package.json +1 -1
package/NOTICE CHANGED
@@ -7,9 +7,9 @@
7
7
 
8
8
  The following 3rd-party software packages may be used by or distributed with gdc-analytics-as-code. Any information relevant to third-party vendors listed below are collected using common, reasonable means.
9
9
 
10
- Date generated: 2026-6-25
10
+ Date generated: 2026-7-1
11
11
 
12
- Revision ID: 0a5f939a51ae353e6a1a14ee39a716f9b1edb4f8
12
+ Revision ID: 9473b8ff1342704ff1498f54591ef2ab4c6943f4
13
13
 
14
14
  ================================================================================
15
15
  ================================================================================
@@ -37824,4 +37824,4 @@ POSSIBILITY OF SUCH DAMAGE.
37824
37824
  --------------------------------------------------------------------------------
37825
37825
  --------------------------------------------------------------------------------
37826
37826
 
37827
- Report Generated by FOSSA on 2026-6-25
37827
+ Report Generated by FOSSA on 2026-7-1
package/dist/index.js CHANGED
@@ -37366,7 +37366,7 @@ function isPromise(value) {
37366
37366
  //#endregion
37367
37367
  //#region package.json
37368
37368
  var name$1 = "@gooddata/code-cli";
37369
- var version$1 = "0.41.0-alpha.1";
37369
+ var version$1 = "0.41.0-alpha.2";
37370
37370
  //#endregion
37371
37371
  //#region ../code/esm/features/references/types.js
37372
37372
  var UpdateReferencesType;
@@ -151278,7 +151278,7 @@ const _CONFIG = {
151278
151278
  common: {
151279
151279
  "X-Requested-With": "XMLHttpRequest",
151280
151280
  "X-GDC-JS-PACKAGE": "@gooddata/api-client-tiger",
151281
- "X-GDC-JS-PACKAGE-VERSION": "11.45.0-alpha.1"
151281
+ "X-GDC-JS-PACKAGE-VERSION": "11.45.0-alpha.2"
151282
151282
  },
151283
151283
  post: { "Content-Type": "application/json;charset=utf8" },
151284
151284
  put: { "Content-Type": "application/json;charset=utf8" }
@@ -175224,11 +175224,12 @@ async function UserManagementApiAxiosParamCreator_GetGroupMembers(userGroupId, o
175224
175224
  /**
175225
175225
  *
175226
175226
  * @param {string} userId
175227
+ * @param {boolean} [includeInherited] When true, include permissions inherited from user groups (workspaces also cascade down the workspace hierarchy). Each workspace and data source is tagged with how the user gains access. Defaults to false (direct assignments only).
175227
175228
  * @param {*} [options] Override http request option.
175228
175229
  * @param {Configuration} [configuration] Optional configuration.
175229
175230
  * @throws {RequiredError}
175230
175231
  */
175231
- async function UserManagementApiAxiosParamCreator_ListPermissionsForUser(userId, options = {}, configuration) {
175232
+ async function UserManagementApiAxiosParamCreator_ListPermissionsForUser(userId, includeInherited, options = {}, configuration) {
175232
175233
  assertParamExists$6("listPermissionsForUser", "userId", userId);
175233
175234
  const localVarPath = `/api/v1/actions/userManagement/users/{userId}/permissions`.replace(`{userId}`, encodeURIComponent(String(userId)));
175234
175235
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
@@ -175240,7 +175241,9 @@ async function UserManagementApiAxiosParamCreator_ListPermissionsForUser(userId,
175240
175241
  ...options
175241
175242
  };
175242
175243
  const localVarHeaderParameter = {};
175243
- setSearchParams$7(localVarUrlObj, {});
175244
+ const localVarQueryParameter = {};
175245
+ if (includeInherited !== void 0) localVarQueryParameter["includeInherited"] = includeInherited;
175246
+ setSearchParams$7(localVarUrlObj, localVarQueryParameter);
175244
175247
  const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
175245
175248
  localVarRequestOptions.headers = {
175246
175249
  ...localVarHeaderParameter,
@@ -175255,11 +175258,12 @@ async function UserManagementApiAxiosParamCreator_ListPermissionsForUser(userId,
175255
175258
  /**
175256
175259
  *
175257
175260
  * @param {string} userGroupId
175261
+ * @param {boolean} [includeInherited] When true, include permissions inherited from parent user groups (workspaces also cascade down the workspace hierarchy). Each workspace and data source is tagged with how the group gains access. Defaults to false (direct assignments only).
175258
175262
  * @param {*} [options] Override http request option.
175259
175263
  * @param {Configuration} [configuration] Optional configuration.
175260
175264
  * @throws {RequiredError}
175261
175265
  */
175262
- async function UserManagementApiAxiosParamCreator_ListPermissionsForUserGroup(userGroupId, options = {}, configuration) {
175266
+ async function UserManagementApiAxiosParamCreator_ListPermissionsForUserGroup(userGroupId, includeInherited, options = {}, configuration) {
175263
175267
  assertParamExists$6("listPermissionsForUserGroup", "userGroupId", userGroupId);
175264
175268
  const localVarPath = `/api/v1/actions/userManagement/userGroups/{userGroupId}/permissions`.replace(`{userGroupId}`, encodeURIComponent(String(userGroupId)));
175265
175269
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
@@ -175271,7 +175275,9 @@ async function UserManagementApiAxiosParamCreator_ListPermissionsForUserGroup(us
175271
175275
  ...options
175272
175276
  };
175273
175277
  const localVarHeaderParameter = {};
175274
- setSearchParams$7(localVarUrlObj, {});
175278
+ const localVarQueryParameter = {};
175279
+ if (includeInherited !== void 0) localVarQueryParameter["includeInherited"] = includeInherited;
175280
+ setSearchParams$7(localVarUrlObj, localVarQueryParameter);
175275
175281
  const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
175276
175282
  localVarRequestOptions.headers = {
175277
175283
  ...localVarHeaderParameter,
@@ -175664,7 +175670,7 @@ async function UserManagementApi_GetGroupMembers(axios, basePath, requestParamet
175664
175670
  * @throws {RequiredError}
175665
175671
  */
175666
175672
  async function UserManagementApi_ListPermissionsForUser(axios, basePath, requestParameters, options, configuration) {
175667
- return createRequestFunction$7(await UserManagementApiAxiosParamCreator_ListPermissionsForUser(requestParameters.userId, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
175673
+ return createRequestFunction$7(await UserManagementApiAxiosParamCreator_ListPermissionsForUser(requestParameters.userId, requestParameters.includeInherited, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
175668
175674
  }
175669
175675
  /**
175670
175676
  *
@@ -175676,7 +175682,7 @@ async function UserManagementApi_ListPermissionsForUser(axios, basePath, request
175676
175682
  * @throws {RequiredError}
175677
175683
  */
175678
175684
  async function UserManagementApi_ListPermissionsForUserGroup(axios, basePath, requestParameters, options, configuration) {
175679
- return createRequestFunction$7(await UserManagementApiAxiosParamCreator_ListPermissionsForUserGroup(requestParameters.userGroupId, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
175685
+ return createRequestFunction$7(await UserManagementApiAxiosParamCreator_ListPermissionsForUserGroup(requestParameters.userGroupId, requestParameters.includeInherited, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
175680
175686
  }
175681
175687
  /**
175682
175688
  *
@@ -196245,7 +196251,7 @@ async function get(state, opts) {
196245
196251
  //#endregion
196246
196252
  //#region ../code/package.json
196247
196253
  var name = "@gooddata/code";
196248
- var version = "0.41.0-alpha.1";
196254
+ var version = "0.41.0-alpha.2";
196249
196255
  //#endregion
196250
196256
  //#region ../code/esm/actions/initialize.js
196251
196257
  async function initialize(state, emitter, options) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/code-cli",
3
- "version": "0.41.0-alpha.1",
3
+ "version": "0.41.0-alpha.2",
4
4
  "description": "GoodData CLI",
5
5
  "keywords": [
6
6
  "analytics",