openai-api-mock 0.1.26 → 0.1.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openai-api-mock",
3
- "version": "0.1.26",
3
+ "version": "0.1.28",
4
4
  "description": "A Node.js module for mocking OpenAI API responses in a development environment",
5
5
  "repository": {
6
6
  "type": "git",
@@ -29,12 +29,12 @@
29
29
  },
30
30
  "author": "Chiheb Nabil",
31
31
  "license": "MIT",
32
- "main": "./dist/index.cjs.js",
33
- "module": "./dist/index.es.js",
32
+ "main": "./dist/index.cjs",
33
+ "module": "./dist/index.js",
34
34
  "exports": {
35
35
  ".": {
36
- "import": "./dist/index.es.js",
37
- "require": "./dist/index.cjs.js"
36
+ "require": "./dist/index.cjs",
37
+ "import": "./dist/index.js"
38
38
  }
39
39
  },
40
40
  "dependencies": {
package/src/index.js CHANGED
@@ -16,7 +16,7 @@ const customScopes = []; // Track custom scopes
16
16
  * @param {boolean} options.logRequests - Whether to log incoming requests
17
17
  * @returns {Object} An object with control methods for the mocks
18
18
  */
19
- function mockOpenAIResponse(force = false, options = {}) {
19
+ export function mockOpenAIResponse(force = false, options = {}) {
20
20
  const {
21
21
  includeErrors = false,
22
22
  latency = 0,
@@ -31,11 +31,10 @@ function mockOpenAIResponse(force = false, options = {}) {
31
31
  }
32
32
 
33
33
  // Add delay if latency is specified
34
- const delayResponse = latency > 0 ?
35
- nock.defaults({ delayConnection: latency }) : null;
34
+ const mockWithDelay = latency > 0 ? nock(OPEN_AI_BASE_URL).delay(latency) : nock(OPEN_AI_BASE_URL);
36
35
 
37
36
  // Mock chat completions endpoint
38
- const chatScope = nock(OPEN_AI_BASE_URL)
37
+ const chatScope = mockWithDelay
39
38
  .post(CHAT_COMPLETIONS_ENDPOINT)
40
39
  .reply(function (uri, requestBody) {
41
40
  if (logRequests) {
@@ -68,7 +67,7 @@ function mockOpenAIResponse(force = false, options = {}) {
68
67
  });
69
68
 
70
69
  // Mock image generations endpoint
71
- const imageScope = nock(OPEN_AI_BASE_URL)
70
+ const imageScope = mockWithDelay
72
71
  .post(IMAGE_GENERATIONS_ENDPOINT)
73
72
  .reply(function (uri, requestBody) {
74
73
  if (logRequests) {
@@ -119,9 +118,7 @@ function mockOpenAIResponse(force = false, options = {}) {
119
118
  };
120
119
  }
121
120
 
122
- function stopMocking() {
121
+ export function stopMocking() {
123
122
  nock.cleanAll();
124
123
  customScopes.forEach(scope => scope.persist(false)); // Disable persistence
125
124
  }
126
-
127
- export { mockOpenAIResponse, stopMocking };
package/vite.config.js CHANGED
@@ -10,7 +10,7 @@ export default defineConfig({
10
10
  entry: './src/index.js',
11
11
  name: 'openai-api-mock',
12
12
  formats: ['es', 'cjs'],
13
- fileName: (format) => `index.${format}.js`
13
+ fileName: (format) => `index.${format === 'es' ? 'js' : 'cjs'}`
14
14
  },
15
15
  rollupOptions: {
16
16
  external: [
@@ -21,6 +21,7 @@ export default defineConfig({
21
21
  'openai'
22
22
  ],
23
23
  output: {
24
+ exports: "auto",
24
25
  // Provide global variables to use in UMD build
25
26
  globals: {
26
27
  nock: 'nock',