Skip to content

Commit

Permalink
Merge pull request #1395 from Accenture/develop
Browse files Browse the repository at this point in the history
release 7.0.3
  • Loading branch information
JoernBerkefeld committed Jun 30, 2024
2 parents b2bc5c0 + 5c0f25c commit b9bab38
Show file tree
Hide file tree
Showing 42 changed files with 1,087 additions and 540 deletions.
3 changes: 0 additions & 3 deletions .eslintignore

This file was deleted.

116 changes: 0 additions & 116 deletions .eslintrc.json

This file was deleted.

1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ body:
label: Version
description: What version of our software are you running? (mcdev --version)
options:
- 7.0.3
- 7.0.2
- 7.0.1
- 7.0.0
Expand Down
2 changes: 1 addition & 1 deletion @types/lib/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 11 additions & 10 deletions @types/lib/metadataTypes/Asset.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,11 @@ declare class Asset extends MetadataType {
*
* @param {void | string[]} [_] parameter not used
* @param {string[]} [subTypeArr] optionally limit to a single subtype
* @param {void | string} [__] parameter not used
* @param {boolean} [loadShared] optionally retrieve assets from other BUs that were shared with the current
* @returns {Promise.<{metadata: AssetMap, type: string}>} Promise
*/
static retrieveForCache(_?: void | string[], subTypeArr?: string[], loadShared?: boolean): Promise<{
static retrieveForCache(_?: void | string[], subTypeArr?: string[], __?: void | string, loadShared?: boolean): Promise<{
metadata: AssetMap;
type: string;
}>;
Expand Down Expand Up @@ -354,9 +355,9 @@ declare class Asset extends MetadataType {
* @param {string} subType asset subtype
* @param {object} item api response for metadata
* @param {string} buName owner business unit name
* @returns {string} path to the asset's code
* @returns {Promise.<string>} path to the asset's code
*/
static "__#2@#getPath"(subType: string, item: object, buName: string): string;
static "__#2@#getPath"(subType: string, item: object, buName: string): Promise<string>;
/**
* helper for {@link Asset.resolveId} that loads the JSON file for the asset
*
Expand Down Expand Up @@ -644,14 +645,14 @@ declare namespace Asset {
isUpdateable: boolean;
retrieving: boolean;
template: boolean;
}; /**
* helper for {@link Asset.retrieve} + {@link Asset.retrieveAsTemplate}
*
* @private
* @returns {string[]} AssetSubType array
*/
};
legacyData: {
isCreateable: boolean;
isCreateable: boolean; /**
* helper for {@link Asset.retrieve} + {@link Asset.retrieveAsTemplate}
*
* @private
* @returns {string[]} AssetSubType array
*/
isUpdateable: boolean;
retrieving: boolean;
template: boolean;
Expand Down
Loading

0 comments on commit b9bab38

Please sign in to comment.