@shipstatic/types 0.1.2 → 0.1.3

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/dist/index.d.ts CHANGED
@@ -209,3 +209,4 @@ export interface PingResponse {
209
209
  timestamp?: number;
210
210
  }
211
211
  export declare const API_KEY_PREFIX = "ship-";
212
+ export declare const DEPLOYMENT_CONFIG_FILENAME = "ship.json";
package/dist/index.js CHANGED
@@ -153,3 +153,5 @@ export const serverConfig = {
153
153
  };
154
154
  // API Key Configuration
155
155
  export const API_KEY_PREFIX = 'ship-';
156
+ // Deployment Configuration
157
+ export const DEPLOYMENT_CONFIG_FILENAME = 'ship.json';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipstatic/types",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Shared types for Shipstatic platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/index.ts CHANGED
@@ -344,4 +344,7 @@ export interface PingResponse {
344
344
 
345
345
 
346
346
  // API Key Configuration
347
- export const API_KEY_PREFIX = 'ship-';
347
+ export const API_KEY_PREFIX = 'ship-';
348
+
349
+ // Deployment Configuration
350
+ export const DEPLOYMENT_CONFIG_FILENAME = 'ship.json';