diff --git a/.changeset/eight-poems-end.md b/.changeset/eight-poems-end.md new file mode 100644 index 00000000000..1a734499eb1 --- /dev/null +++ b/.changeset/eight-poems-end.md @@ -0,0 +1,5 @@ +--- +"@thirdweb-dev/service-utils": patch +--- + +Added nebula service scope diff --git a/.github/workflows/linear.yml b/.github/workflows/linear.yml index 0ae3e7c7bb0..a0155d51161 100644 --- a/.github/workflows/linear.yml +++ b/.github/workflows/linear.yml @@ -18,7 +18,7 @@ jobs: echo "Pull Request Body: $pr_body" - if echo "$pr_body" | grep -iE "CNCT|DASH"; then + if echo "$pr_body" | grep -iE "CNCT|DASH|BLOCK"; then echo "Linked issue found in the pull request body." else echo "No linked issue found in the pull request body." diff --git a/apps/dashboard/src/components/settings/ApiKeys/validations.ts b/apps/dashboard/src/components/settings/ApiKeys/validations.ts index fc5fe35ffd4..46aa6abe9ea 100644 --- a/apps/dashboard/src/components/settings/ApiKeys/validations.ts +++ b/apps/dashboard/src/components/settings/ApiKeys/validations.ts @@ -149,4 +149,4 @@ export type ApiKeyPayConfigValidationSchema = z.infer< >; // FIXME: Remove -export const HIDDEN_SERVICES = ["relayer", "chainsaw"]; +export const HIDDEN_SERVICES = ["relayer", "chainsaw", "nebula"]; diff --git a/packages/service-utils/src/core/services.ts b/packages/service-utils/src/core/services.ts index 65a958fbd3b..9d366ed11ae 100644 --- a/packages/service-utils/src/core/services.ts +++ b/packages/service-utils/src/core/services.ts @@ -65,6 +65,13 @@ export const SERVICE_DEFINITIONS = { // all actions allowed actions: [], }, + nebula: { + name: "nebula", + title: "Nebula", + description: "Nebula services", + // all actions allowed + actions: [], + }, } as const; export const SERVICE_NAMES = Object.keys(