lancer-shared 1.0.165 → 1.0.167

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.
@@ -92,6 +92,8 @@ export declare const ROUTES: {
92
92
  readonly PROXIES: {
93
93
  readonly BASE: "admin/proxies";
94
94
  readonly BY_ID: (id: string) => string;
95
+ readonly REPLACE_PROXY: (id: string) => string;
96
+ readonly SYNC: "admin/proxies/sync";
95
97
  };
96
98
  };
97
99
  readonly BID: {
@@ -94,6 +94,8 @@ exports.ROUTES = {
94
94
  PROXIES: {
95
95
  BASE: 'admin/proxies',
96
96
  BY_ID: (id) => `admin/proxies/${id}`,
97
+ REPLACE_PROXY: (id) => `admin/proxies/${id}/replace`,
98
+ SYNC: 'admin/proxies/sync',
97
99
  },
98
100
  },
99
101
  BID: {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "commonjs",
3
3
  "name": "lancer-shared",
4
- "version": "1.0.165",
4
+ "version": "1.0.167",
5
5
  "description": "This package contains shared stuff.",
6
6
  "types": "./dist/index.d.ts",
7
7
  "main": "./dist/index.js",