Skip to content

Commit

Permalink
Indexing module updates
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitrov-d committed Oct 29, 2024
1 parent 4d31cc5 commit 1cf91cf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions packages/sdk/src/docs-index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,8 @@ export * from './modules/social/social';
export * from './modules/social/social-hub';
export * from './modules/social/social-channel';
export * from './modules/project/project';
export * from './modules/cloud-functions/cloud-functions';
export * from './modules/cloud-functions/cloud-function';
export * from './modules/cloud-functions/cloud-function-job';
export * from './modules/indexing/indexing';
export * from './modules/indexing/indexer';
2 changes: 1 addition & 1 deletion packages/sdk/src/modules/indexing/indexer.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable security/detect-non-literal-fs-filename */
import axios from 'axios';
import fs from 'fs';
import * as fs from 'fs';
import { ApillonModel } from '../../lib/apillon';
import { ApillonApi } from '../../lib/apillon-api';
import { ApillonLogger } from '../../lib/apillon-logger';
Expand Down
4 changes: 2 additions & 2 deletions packages/sdk/src/tests/indexing.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { Indexing } from '../modules/indexing/indexing';
import { getConfig, getIndexerUUID } from './helpers/helper';

describe('Indexing tests', () => {
let indexing: Indexing = undefined;
let indexer_uuid: string = undefined;
let indexing: Indexing;
let indexer_uuid: string;

beforeAll(async () => {
indexing = new Indexing(getConfig());
Expand Down

0 comments on commit 1cf91cf

Please sign in to comment.