Skip to content

Commit

Permalink
fix(integrations): updates the model and action name to be consistent…
Browse files Browse the repository at this point in the history
… with the expected user interface already established
  • Loading branch information
Maina-Francis committed Dec 12, 2024
1 parent c485b25 commit 3122cf7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { NangoAction, ProxyConfiguration, SuccessResponse, IdEntity } from '../../models';
import type { NangoAction, ProxyConfiguration, SuccessResponse, IdEntity } from '../../models.js';
import { idEntitySchema } from '../schema.zod.js';

export default async function runAction(nango: NangoAction, input: IdEntity): Promise<SuccessResponse> {
Expand Down
6 changes: 3 additions & 3 deletions integrations/ramp-sandbox/nango.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ integrations:
scopes:
- users:write

delete-user:
disable-user:
description: Deletes a user in Ramp by id
endpoint:
method: PATCH
method: DELETE
path: /users
group: Users
output: SuccessResponse
Expand Down Expand Up @@ -57,7 +57,7 @@ models:

RampCreateUser:
__extends: CreateUser
role: string
role?: string
departmentId?: string
directManagerId?: string
idempotencyKey?: string
Expand Down

0 comments on commit 3122cf7

Please sign in to comment.