@shipstatic/types 0.4.11 → 0.4.12

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
@@ -694,13 +694,6 @@ export interface UploadedFile {
694
694
  size: number;
695
695
  validated?: boolean;
696
696
  }
697
- /**
698
- * Rate limiting data structure
699
- */
700
- export interface RateLimitData {
701
- count: number;
702
- timestamp: number;
703
- }
704
697
  /**
705
698
  * Check if a domain is a platform domain (subdomain of our platform).
706
699
  * Platform domains are free and don't require DNS verification.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipstatic/types",
3
- "version": "0.4.11",
3
+ "version": "0.4.12",
4
4
  "description": "Shared types for Shipstatic platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/index.ts CHANGED
@@ -1031,14 +1031,6 @@ export interface UploadedFile {
1031
1031
  validated?: boolean;
1032
1032
  }
1033
1033
 
1034
- /**
1035
- * Rate limiting data structure
1036
- */
1037
- export interface RateLimitData {
1038
- count: number;
1039
- timestamp: number;
1040
- }
1041
-
1042
1034
  // =============================================================================
1043
1035
  // DOMAIN UTILITIES
1044
1036
  // =============================================================================