Skip to content

Commit

Permalink
fix: import stuff from jsforce-node (#763)
Browse files Browse the repository at this point in the history
  • Loading branch information
cristiand391 authored Apr 15, 2024
1 parent e7c65db commit 1550676
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 347 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"@oclif/plugin-help": "^6.0.21",
"@salesforce/cli-plugins-testkit": "^5.2.1",
"@salesforce/dev-scripts": "^9.0.0",
"@salesforce/plugin-command-reference": "^3.0.75",
"@salesforce/plugin-command-reference": "^3.0.76",
"@salesforce/ts-types": "^2.0.9",
"eslint-plugin-sf-plugin": "^1.18.0",
"oclif": "^4.7.6",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/sobject/describe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
} from '@salesforce/sf-plugins-core';
import type { AnyJson } from '@salesforce/ts-types';
import { Messages } from '@salesforce/core';
import type { DescribeSObjectResult } from 'jsforce';
import type { DescribeSObjectResult } from '@jsforce/jsforce-node';

Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
const messages = Messages.loadMessages('@salesforce/plugin-schema', 'describe');
Expand Down
2 changes: 1 addition & 1 deletion test/schema.nut.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import path from 'node:path';
import { strict as assert } from 'node:assert';
import { expect } from 'chai';
import type { DescribeSObjectResult } from 'jsforce';
import type { DescribeSObjectResult } from '@jsforce/jsforce-node';
import { TestSession, execCmd } from '@salesforce/cli-plugins-testkit';
import { SObjectListResult } from '../src/commands/sobject/list.js';

Expand Down
Loading

0 comments on commit 1550676

Please sign in to comment.