@seamapi/types 1.712.0 → 1.713.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.
@@ -53082,11 +53082,9 @@ export type Routes = {
53082
53082
  /** ID of the connector to sync */
53083
53083
  connector_id: string;
53084
53084
  /** Type of the connector to sync */
53085
- connector_type?: string | undefined;
53086
- /** ID of the customer to sync */
53087
- customer_id?: string | undefined;
53085
+ connector_type: string;
53088
53086
  /** Key of the customer to sync */
53089
- customer_key?: string | undefined;
53087
+ customer_key: string;
53090
53088
  /** ID of the connector customer to sync */
53091
53089
  connector_customer_id?: (string | null) | undefined;
53092
53090
  /** 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.712.0",
3
+ "version": "1.713.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -55381,10 +55381,6 @@ export default {
55381
55381
  description: 'Type of the connector to sync',
55382
55382
  type: 'string',
55383
55383
  },
55384
- customer_id: {
55385
- description: 'ID of the customer to sync',
55386
- type: 'string',
55387
- },
55388
55384
  customer_key: {
55389
55385
  description: 'Key of the customer to sync',
55390
55386
  type: 'string',
@@ -55396,7 +55392,7 @@ export default {
55396
55392
  type: 'string',
55397
55393
  },
55398
55394
  },
55399
- required: ['connector_id'],
55395
+ required: ['connector_id', 'connector_type', 'customer_key'],
55400
55396
  type: 'object',
55401
55397
  },
55402
55398
  },
@@ -63454,11 +63454,9 @@ export type Routes = {
63454
63454
  /** ID of the connector to sync */
63455
63455
  connector_id: string
63456
63456
  /** Type of the connector to sync */
63457
- connector_type?: string | undefined
63458
- /** ID of the customer to sync */
63459
- customer_id?: string | undefined
63457
+ connector_type: string
63460
63458
  /** Key of the customer to sync */
63461
- customer_key?: string | undefined
63459
+ customer_key: string
63462
63460
  /** ID of the connector customer to sync */
63463
63461
  connector_customer_id?: (string | null) | undefined
63464
63462
  /** Unique provider resource key of the connector to sync */