Skip to content

Commit

Permalink
View scopes for custom-field support views now inherit `ViewGlobalAtt…
Browse files Browse the repository at this point in the history
…ributes` scope (#150)

* Scopes view attribute

* View global
  • Loading branch information
michaelfarrell76 authored Jan 23, 2024
1 parent 2ebc133 commit 8d5959b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "Transcend Inc.",
"name": "@transcend-io/privacy-types",
"description": "Core enums and types that can be useful when interacting with Transcend's public APIs.",
"version": "4.68.0",
"version": "4.69.0",
"homepage": "https://github.com/transcend-io/privacy-types",
"repository": {
"type": "git",
Expand Down
8 changes: 4 additions & 4 deletions src/scopes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ const SCOPES_WITHOUT_VIEW_ONLY: {
},
[ScopeName.ViewPathfinder]: {
title: 'View Pathfinder',
dependencies: [],
dependencies: [ScopeName.ViewGlobalAttributes],
description: 'View the pathfinder settings.',
type: ScopeType.View,
products: [TranscendProduct.Pathfinder],
Expand All @@ -708,7 +708,7 @@ const SCOPES_WITHOUT_VIEW_ONLY: {
},
[ScopeName.ViewContractScanning]: {
title: 'View Contract Scanning',
dependencies: [],
dependencies: [ScopeName.ViewGlobalAttributes],
description:
'View the contract scanning side menu - including setting and contracts.',
type: ScopeType.View,
Expand All @@ -724,7 +724,7 @@ const SCOPES_WITHOUT_VIEW_ONLY: {
},
[ScopeName.ViewPrompts]: {
title: 'View Prompts',
dependencies: [],
dependencies: [ScopeName.ViewGlobalAttributes],
description: 'View the prompts and prompt templates.',
type: ScopeType.View,
products: [TranscendProduct.PromptManager],
Expand Down Expand Up @@ -752,7 +752,7 @@ const SCOPES_WITHOUT_VIEW_ONLY: {
},
[ScopeName.ViewCodeScanning]: {
title: 'View Code Scanning',
dependencies: [],
dependencies: [ScopeName.ViewGlobalAttributes],
description: 'View the code scanning tables.',
type: ScopeType.View,
products: [TranscendProduct.DataMapping],
Expand Down

0 comments on commit 8d5959b

Please sign in to comment.