lancer-shared 1.0.107 → 1.0.108

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.
@@ -85,6 +85,9 @@ export declare const ROUTES: {
85
85
  readonly BY_PROVIDER_AND_ID: (provider: string, id: string) => string;
86
86
  };
87
87
  };
88
+ readonly BID: {
89
+ readonly BASE: "bid";
90
+ };
88
91
  };
89
92
  export type RouteParams = {
90
93
  id?: string;
@@ -88,6 +88,9 @@ exports.ROUTES = {
88
88
  BY_PROVIDER_AND_ID: (provider, id) => `admin/scraper-accounts/${provider}/${id}`,
89
89
  },
90
90
  },
91
+ BID: {
92
+ BASE: 'bid',
93
+ },
91
94
  };
92
95
  // Helper function to build route with parameters
93
96
  const buildRoute = (route, params = {}) => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "commonjs",
3
3
  "name": "lancer-shared",
4
- "version": "1.0.107",
4
+ "version": "1.0.108",
5
5
  "description": "This package contains shared stuff.",
6
6
  "types": "./dist/index.d.ts",
7
7
  "main": "./dist/index.js",