@seamapi/types 1.650.0 → 1.651.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.
@@ -43581,23 +43581,29 @@ declare const _default: {
43581
43581
  display_name: {
43582
43582
  type: string;
43583
43583
  };
43584
- instance_config_schema: {
43585
- $ref: string;
43586
- };
43587
- static_config: {
43588
- properties: {
43589
- base_api_url: {
43590
- type: string;
43591
- };
43592
- polling_enabled: {
43593
- type: string;
43594
- };
43595
- polling_frequency_minutes: {
43596
- format: string;
43597
- type: string;
43584
+ editable_fields: {
43585
+ items: {
43586
+ properties: {
43587
+ description: {
43588
+ type: string;
43589
+ };
43590
+ display_name: {
43591
+ type: string;
43592
+ };
43593
+ name: {
43594
+ type: string;
43595
+ };
43596
+ required: {
43597
+ type: string;
43598
+ };
43599
+ type: {
43600
+ enum: string[];
43601
+ type: string;
43602
+ };
43598
43603
  };
43604
+ required: string[];
43605
+ type: string;
43599
43606
  };
43600
- required: string[];
43601
43607
  type: string;
43602
43608
  };
43603
43609
  };
@@ -43667,23 +43673,29 @@ declare const _default: {
43667
43673
  display_name: {
43668
43674
  type: string;
43669
43675
  };
43670
- instance_config_schema: {
43671
- $ref: string;
43672
- };
43673
- static_config: {
43674
- properties: {
43675
- base_api_url: {
43676
- type: string;
43677
- };
43678
- polling_enabled: {
43679
- type: string;
43680
- };
43681
- polling_frequency_minutes: {
43682
- format: string;
43683
- type: string;
43676
+ editable_fields: {
43677
+ items: {
43678
+ properties: {
43679
+ description: {
43680
+ type: string;
43681
+ };
43682
+ display_name: {
43683
+ type: string;
43684
+ };
43685
+ name: {
43686
+ type: string;
43687
+ };
43688
+ required: {
43689
+ type: string;
43690
+ };
43691
+ type: {
43692
+ enum: string[];
43693
+ type: string;
43694
+ };
43684
43695
  };
43696
+ required: string[];
43697
+ type: string;
43685
43698
  };
43686
- required: string[];
43687
43699
  type: string;
43688
43700
  };
43689
43701
  };
@@ -44193,6 +44205,7 @@ declare const _default: {
44193
44205
  client_token?: never;
44194
44206
  enterprise_id?: never;
44195
44207
  enterprise_ids?: never;
44208
+ auth_token?: never;
44196
44209
  client_id?: never;
44197
44210
  client_password?: never;
44198
44211
  property_id?: never;
@@ -44223,6 +44236,7 @@ declare const _default: {
44223
44236
  };
44224
44237
  type: string;
44225
44238
  };
44239
+ auth_token?: never;
44226
44240
  client_id?: never;
44227
44241
  client_password?: never;
44228
44242
  property_id?: never;
@@ -44231,6 +44245,9 @@ declare const _default: {
44231
44245
  required?: never;
44232
44246
  } | {
44233
44247
  properties: {
44248
+ auth_token: {
44249
+ type: string;
44250
+ };
44234
44251
  client_id: {
44235
44252
  description: string;
44236
44253
  minLength: number;
@@ -48449,7 +48449,7 @@ export default {
48449
48449
  },
48450
48450
  '/seam/customer/v1/connectors/connector_types': {
48451
48451
  get: {
48452
- description: 'Lists all available connector types and their required instance configuration schemas.',
48452
+ description: 'Lists all available connector types and their editable fields for UI input.',
48453
48453
  operationId: 'seamCustomerV1ConnectorsConnectorTypesGet',
48454
48454
  responses: {
48455
48455
  200: {
@@ -48463,30 +48463,39 @@ export default {
48463
48463
  connector_type: { type: 'string' },
48464
48464
  description: { type: 'string' },
48465
48465
  display_name: { type: 'string' },
48466
- instance_config_schema: {
48467
- $ref: '#/components/schemas/access_code',
48468
- },
48469
- static_config: {
48470
- properties: {
48471
- base_api_url: { type: 'string' },
48472
- polling_enabled: { type: 'boolean' },
48473
- polling_frequency_minutes: {
48474
- format: 'float',
48475
- type: 'number',
48466
+ editable_fields: {
48467
+ items: {
48468
+ properties: {
48469
+ description: { type: 'string' },
48470
+ display_name: { type: 'string' },
48471
+ name: { type: 'string' },
48472
+ required: { type: 'boolean' },
48473
+ type: {
48474
+ enum: [
48475
+ 'string',
48476
+ 'string[]',
48477
+ 'number',
48478
+ 'boolean',
48479
+ ],
48480
+ type: 'string',
48481
+ },
48476
48482
  },
48483
+ required: [
48484
+ 'name',
48485
+ 'display_name',
48486
+ 'description',
48487
+ 'type',
48488
+ 'required',
48489
+ ],
48490
+ type: 'object',
48477
48491
  },
48478
- required: [
48479
- 'base_api_url',
48480
- 'polling_enabled',
48481
- 'polling_frequency_minutes',
48482
- ],
48483
- type: 'object',
48492
+ type: 'array',
48484
48493
  },
48485
48494
  },
48486
48495
  required: [
48487
48496
  'connector_type',
48488
48497
  'display_name',
48489
- 'static_config',
48498
+ 'editable_fields',
48490
48499
  ],
48491
48500
  type: 'object',
48492
48501
  },
@@ -48519,7 +48528,7 @@ export default {
48519
48528
  'x-undocumented': 'Internal endpoint for Console.',
48520
48529
  },
48521
48530
  post: {
48522
- description: 'Lists all available connector types and their required instance configuration schemas.',
48531
+ description: 'Lists all available connector types and their editable fields for UI input.',
48523
48532
  operationId: 'seamCustomerV1ConnectorsConnectorTypesPost',
48524
48533
  responses: {
48525
48534
  200: {
@@ -48533,30 +48542,39 @@ export default {
48533
48542
  connector_type: { type: 'string' },
48534
48543
  description: { type: 'string' },
48535
48544
  display_name: { type: 'string' },
48536
- instance_config_schema: {
48537
- $ref: '#/components/schemas/access_code',
48538
- },
48539
- static_config: {
48540
- properties: {
48541
- base_api_url: { type: 'string' },
48542
- polling_enabled: { type: 'boolean' },
48543
- polling_frequency_minutes: {
48544
- format: 'float',
48545
- type: 'number',
48545
+ editable_fields: {
48546
+ items: {
48547
+ properties: {
48548
+ description: { type: 'string' },
48549
+ display_name: { type: 'string' },
48550
+ name: { type: 'string' },
48551
+ required: { type: 'boolean' },
48552
+ type: {
48553
+ enum: [
48554
+ 'string',
48555
+ 'string[]',
48556
+ 'number',
48557
+ 'boolean',
48558
+ ],
48559
+ type: 'string',
48560
+ },
48546
48561
  },
48562
+ required: [
48563
+ 'name',
48564
+ 'display_name',
48565
+ 'description',
48566
+ 'type',
48567
+ 'required',
48568
+ ],
48569
+ type: 'object',
48547
48570
  },
48548
- required: [
48549
- 'base_api_url',
48550
- 'polling_enabled',
48551
- 'polling_frequency_minutes',
48552
- ],
48553
- type: 'object',
48571
+ type: 'array',
48554
48572
  },
48555
48573
  },
48556
48574
  required: [
48557
48575
  'connector_type',
48558
48576
  'display_name',
48559
- 'static_config',
48577
+ 'editable_fields',
48560
48578
  ],
48561
48579
  type: 'object',
48562
48580
  },
@@ -48973,6 +48991,7 @@ export default {
48973
48991
  },
48974
48992
  {
48975
48993
  properties: {
48994
+ auth_token: { type: 'string' },
48976
48995
  client_id: {
48977
48996
  description: 'RMS client ID for authentication',
48978
48997
  minLength: 1,