Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Organization Setting "Full Impersonation" #180

Merged
merged 2 commits into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,28 +7,37 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Added

- `Full Impersonation` Organization Setting, this will allow a Impersonator to also Switch between the User's Organization/Cost Center

## [0.60.0] - 2024-10-09

### Added
- Add new store user token validation directive to some APIs

## [0.59.0] - 2024-10-08

### Added

- Add permission createQuote to organization

## [0.58.0] - 2024-10-07

### Added

- Add new admin token validation directive to getOrganizationsWithoutSalesManager

## [0.57.1] - 2024-09-30

### Fixed

- Change GetOrganizationRequests API cache control scope to private

## [0.57.0] - 2024-09-12

### Added

- Add new admin token validation directive to some APIs

## [0.56.2] - 2024-09-10
Expand All @@ -40,6 +49,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [0.56.1] - 2024-09-10

### Added

- Add logging for store token validation

## [0.56.0] - 2024-09-09
Expand All @@ -51,6 +61,7 @@ Adds a new `getAccount` query to retrieve account information. It includes field
## [0.55.0] - 2024-08-22

### Added

- Add paymentTerms field to cost center input on mutations

## [0.54.0] - 2024-08-12
Expand Down
2 changes: 2 additions & 0 deletions graphql/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -524,6 +524,7 @@ type TransactionEmailSettings {
type UISettings {
showModal: Boolean
clearCart: Boolean
fullImpersonation: Boolean
}

scalar Data
Expand Down Expand Up @@ -679,6 +680,7 @@ input TransactionEmailSettingsInput {
input UISettingsInput {
showModal: Boolean
clearCart: Boolean
fullImpersonation: Boolean
}

input B2BSettingsInput {
Expand Down
1 change: 1 addition & 0 deletions node/typings.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ interface Price {
interface UISettings {
showModal: boolean
clearCart: boolean
fullImpersonation: boolean
}

interface CustomField {
Expand Down
Loading