@seamapi/types 0.30.0 → 0.30.1

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.
@@ -151,12 +151,6 @@ export interface Routes {
151
151
  generated_code: {
152
152
  device_id: string;
153
153
  code: string;
154
- is_valid: true;
155
- conflicts_with_existing_code: false;
156
- violated_code_constraints: [];
157
- passed_code_constraints: Array<{
158
- constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future';
159
- }>;
160
154
  };
161
155
  };
162
156
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "0.30.0",
3
+ "version": "0.30.1",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -157,18 +157,6 @@ export interface Routes {
157
157
  generated_code: {
158
158
  device_id: string
159
159
  code: string
160
- is_valid: true
161
- conflicts_with_existing_code: false
162
- violated_code_constraints: []
163
- passed_code_constraints: Array<{
164
- constraint_type:
165
- | 'no_zeros'
166
- | 'cannot_start_with_12'
167
- | 'no_triple_consecutive_ints'
168
- | 'cannot_specify_pin_code'
169
- | 'pin_code_matches_existing_set'
170
- | 'start_date_in_future'
171
- }>
172
160
  }
173
161
  }
174
162
  }