@seamapi/types 1.691.0 → 1.692.0

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.
@@ -52775,11 +52775,11 @@ export type Routes = {
52775
52775
  /** ID of the connector to sync */
52776
52776
  connector_id: string;
52777
52777
  /** Type of the connector to sync */
52778
- connector_type: string;
52778
+ connector_type?: string | undefined;
52779
52779
  /** ID of the customer to sync */
52780
- customer_id: string;
52780
+ customer_id?: string | undefined;
52781
52781
  /** Key of the customer to sync */
52782
- customer_key: string;
52782
+ customer_key?: string | undefined;
52783
52783
  /** ID of the connector customer to sync */
52784
52784
  connector_customer_id: string | null;
52785
52785
  /** Unique provider resource key of the connector to sync */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.691.0",
3
+ "version": "1.692.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -54573,9 +54573,6 @@ export default {
54573
54573
  },
54574
54574
  required: [
54575
54575
  'connector_id',
54576
- 'connector_type',
54577
- 'customer_id',
54578
- 'customer_key',
54579
54576
  'connector_customer_id',
54580
54577
  'unique_provider_resource_key',
54581
54578
  ],
@@ -63114,11 +63114,11 @@ export type Routes = {
63114
63114
  /** ID of the connector to sync */
63115
63115
  connector_id: string
63116
63116
  /** Type of the connector to sync */
63117
- connector_type: string
63117
+ connector_type?: string | undefined
63118
63118
  /** ID of the customer to sync */
63119
- customer_id: string
63119
+ customer_id?: string | undefined
63120
63120
  /** Key of the customer to sync */
63121
- customer_key: string
63121
+ customer_key?: string | undefined
63122
63122
  /** ID of the connector customer to sync */
63123
63123
  connector_customer_id: string | null
63124
63124
  /** Unique provider resource key of the connector to sync */