Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: workos/workos-node
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.74.0
Choose a base ref
...
head repository: workos/workos-node
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.74.1
Choose a head ref
  • 2 commits
  • 6 files changed
  • 2 contributors

Commits on Nov 21, 2025

  1. Expose interfaces for feature flags (#1395)

    ## Description
    
    The types that the functions that deal with feature flags return
    (`FeatureFlag` and `FeatureFlagResponse`)
    https://github.com/workos/workos-node/blob/0a8b3db79502781382cd5ff255de928e04a8c809/src/organizations/organizations.ts#L114-L116
    aren't visible from the package entrypoint which means they can't be
    imported by third-party code.
    
    This differs from other functionality (e.g. organizations) which 
    1. Have an `index.ts` file which re-exports all their interfaces
    https://github.com/workos/workos-node/blob/d0067d58d2ab93362b08c1c26d4b5ccea3b81a09/src/organizations/interfaces/index.ts#L1-L6
    2. Re-export these index files from the main entrypoint
    https://github.com/workos/workos-node/blob/0a8b3db79502781382cd5ff255de928e04a8c809/src/index.ts#L25
    
    ## Changes
    
    1. Adds a `feature-flags/interfaces/index.ts` file to mirror the other
    namespaces
    2. Adds a `export * from` the above in `src/index.ts`
    
    ## Documentation
    
    Does this require changes to the WorkOS Docs? E.g. the [API
    Reference](https://workos.com/docs/reference) or code snippets need
    updates.
    
    ```
    [ ] Yes
    ```
    
    If yes, link a related docs PR and add a docs maintainer as a reviewer.
    Their approval is required.
    davidcornu authored Nov 21, 2025
    Configuration menu
    Copy the full SHA
    b48829e View commit details
    Browse the repository at this point in the history
  2. Update version to v7.74.1 (#1396)

    ## Description
    
    Update version to `v7.74.1`
    
    ## Documentation
    
    Does this require changes to the WorkOS Docs? E.g. the [API
    Reference](https://workos.com/docs/reference) or code snippets need
    updates.
    
    ```
    [ ] Yes
    ```
    
    If yes, link a related docs PR and add a docs maintainer as a reviewer.
    Their approval is required.
    stanleyphu authored Nov 21, 2025
    Configuration menu
    Copy the full SHA
    801d76c View commit details
    Browse the repository at this point in the history
Loading