@abcagency/hire-control-sdk 1.0.82 → 1.0.83

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -2
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -173,7 +173,7 @@ export declare const companies: {
173
173
  };
174
174
  export declare const jobListings: {
175
175
  getAll: (authToken?: string | null) => Promise<JobListing[]>;
176
- getMapListings: (authToken?: string | null) => Promise<any[]>;
176
+ getMapListings: (authToken?: string | null, filterId?: string | null) => Promise<any[]>;
177
177
  getMapListing: (id: string, authToken?: string | null) => Promise<any>;
178
178
  getById: (id: string, authToken?: string | null) => Promise<JobListing>;
179
179
  create: (jobListing: JobListing, authToken?: string | null) => Promise<JobListing>;
@@ -391,7 +391,7 @@ declare const hcApi: {
391
391
  };
392
392
  jobListings: {
393
393
  getAll: (authToken?: string | null) => Promise<JobListing[]>;
394
- getMapListings: (authToken?: string | null) => Promise<any[]>;
394
+ getMapListings: (authToken?: string | null, filterId?: string | null) => Promise<any[]>;
395
395
  getMapListing: (id: string, authToken?: string | null) => Promise<any>;
396
396
  getById: (id: string, authToken?: string | null) => Promise<JobListing>;
397
397
  create: (jobListing: JobListing, authToken?: string | null) => Promise<JobListing>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abcagency/hire-control-sdk",
3
- "version": "1.0.82",
3
+ "version": "1.0.83",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "types": "dist/index.d.ts",