Skip to content

Commit

Permalink
build: [dependabot skip] rebuild action for @dependabot
Browse files Browse the repository at this point in the history
Signed-off-by: flex-development[bot] <148604919+flex-development[bot]@users.noreply.github.com>
  • Loading branch information
flex-development[bot] authored Nov 14, 2023
1 parent 7b25195 commit cb14cb9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions dist/main.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -86416,7 +86416,7 @@ var ConfigModule = ConfigModule_1 = class ConfigModule2 extends import_config.Co
headers: { authorization: join_default2(["token", token2], " ") },
owner,
query: print(lib_default`
query GetRepository($owner: String!, $repo: String!) {
query Repository($owner: String!, $repo: String!) {
payload: repository(name: $repo, owner: $owner) {
id
}
Expand Down Expand Up @@ -86479,7 +86479,7 @@ var CreateLabelCommand = class {
* @param {CreateLabelCommand} params - Command parameters
*/
constructor(params) {
this.color = params.color;
this.color = params.color.replace(/^#/, "");
this.description = params.description;
this.name = params.name;
}
Expand Down Expand Up @@ -86960,6 +86960,7 @@ var LabelsQueryHandler = class LabelsQueryHandler2 {
this.operation = print(lib_default`
query Labels($cursor: String, $owner: String!, $repo: String!) {
payload: repository(name: $repo, owner: $owner) {
id
labels(
after: $cursor,
first: 100,
Expand Down Expand Up @@ -87016,7 +87017,7 @@ var UpdateLabelCommand = class {
* @public
* @readonly
* @instance
* @member {Optional<string>?} color
* @member {Nilable<string>?} color
*/
color;
/**
Expand All @@ -87043,7 +87044,7 @@ var UpdateLabelCommand = class {
* @public
* @readonly
* @instance
* @member {Optional<string>?} name
* @member {Nilable<string>?} name
*/
name;
/**
Expand All @@ -87052,7 +87053,7 @@ var UpdateLabelCommand = class {
* @param {UpdateLabelCommand} params - Command parameters
*/
constructor(params) {
this.color = params.color;
this.color = params.color?.replace(/^#/, "");
this.description = params.description;
this.id = params.id;
this.name = params.name;
Expand Down
2 changes: 1 addition & 1 deletion dist/main.mjs.map

Large diffs are not rendered by default.

0 comments on commit cb14cb9

Please sign in to comment.