Skip to content

Commit

Permalink
Added Organization Setting, this will allow a Impersonator to also Sw…
Browse files Browse the repository at this point in the history
…itch between the User's Organization/Cost Center (#180)
  • Loading branch information
wender authored Oct 16, 2024
1 parent e28d430 commit 77a79fa
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
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

0 comments on commit 77a79fa

Please sign in to comment.