@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.
- package/dist/connect.cjs +57 -38
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +55 -36
- package/dist/index.cjs +57 -38
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +47 -30
- package/lib/seam/connect/openapi.js +55 -36
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -6
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +55 -36
- package/src/lib/seam/connect/route-types.ts +8 -6
|
@@ -51951,12 +51951,13 @@ export type Routes = {
|
|
|
51951
51951
|
connector_type: string;
|
|
51952
51952
|
display_name: string;
|
|
51953
51953
|
description?: string | undefined;
|
|
51954
|
-
|
|
51955
|
-
|
|
51956
|
-
|
|
51957
|
-
|
|
51958
|
-
|
|
51959
|
-
|
|
51954
|
+
editable_fields: {
|
|
51955
|
+
name: string;
|
|
51956
|
+
display_name: string;
|
|
51957
|
+
description: string;
|
|
51958
|
+
type: 'string' | 'string[]' | 'number' | 'boolean';
|
|
51959
|
+
required: boolean;
|
|
51960
|
+
}[];
|
|
51960
51961
|
}[];
|
|
51961
51962
|
};
|
|
51962
51963
|
};
|
|
@@ -52070,6 +52071,7 @@ export type Routes = {
|
|
|
52070
52071
|
client_password: string;
|
|
52071
52072
|
/** Optional property ID for single-property connectors */
|
|
52072
52073
|
property_id?: (string | number) | undefined;
|
|
52074
|
+
auth_token?: string | undefined;
|
|
52073
52075
|
};
|
|
52074
52076
|
};
|
|
52075
52077
|
commonParams: {};
|
package/package.json
CHANGED
|
@@ -52649,7 +52649,7 @@ export default {
|
|
|
52649
52649
|
'/seam/customer/v1/connectors/connector_types': {
|
|
52650
52650
|
get: {
|
|
52651
52651
|
description:
|
|
52652
|
-
'Lists all available connector types and their
|
|
52652
|
+
'Lists all available connector types and their editable fields for UI input.',
|
|
52653
52653
|
operationId: 'seamCustomerV1ConnectorsConnectorTypesGet',
|
|
52654
52654
|
responses: {
|
|
52655
52655
|
200: {
|
|
@@ -52663,30 +52663,39 @@ export default {
|
|
|
52663
52663
|
connector_type: { type: 'string' },
|
|
52664
52664
|
description: { type: 'string' },
|
|
52665
52665
|
display_name: { type: 'string' },
|
|
52666
|
-
|
|
52667
|
-
|
|
52668
|
-
|
|
52669
|
-
|
|
52670
|
-
|
|
52671
|
-
|
|
52672
|
-
|
|
52673
|
-
|
|
52674
|
-
|
|
52675
|
-
|
|
52666
|
+
editable_fields: {
|
|
52667
|
+
items: {
|
|
52668
|
+
properties: {
|
|
52669
|
+
description: { type: 'string' },
|
|
52670
|
+
display_name: { type: 'string' },
|
|
52671
|
+
name: { type: 'string' },
|
|
52672
|
+
required: { type: 'boolean' },
|
|
52673
|
+
type: {
|
|
52674
|
+
enum: [
|
|
52675
|
+
'string',
|
|
52676
|
+
'string[]',
|
|
52677
|
+
'number',
|
|
52678
|
+
'boolean',
|
|
52679
|
+
],
|
|
52680
|
+
type: 'string',
|
|
52681
|
+
},
|
|
52676
52682
|
},
|
|
52683
|
+
required: [
|
|
52684
|
+
'name',
|
|
52685
|
+
'display_name',
|
|
52686
|
+
'description',
|
|
52687
|
+
'type',
|
|
52688
|
+
'required',
|
|
52689
|
+
],
|
|
52690
|
+
type: 'object',
|
|
52677
52691
|
},
|
|
52678
|
-
|
|
52679
|
-
'base_api_url',
|
|
52680
|
-
'polling_enabled',
|
|
52681
|
-
'polling_frequency_minutes',
|
|
52682
|
-
],
|
|
52683
|
-
type: 'object',
|
|
52692
|
+
type: 'array',
|
|
52684
52693
|
},
|
|
52685
52694
|
},
|
|
52686
52695
|
required: [
|
|
52687
52696
|
'connector_type',
|
|
52688
52697
|
'display_name',
|
|
52689
|
-
'
|
|
52698
|
+
'editable_fields',
|
|
52690
52699
|
],
|
|
52691
52700
|
type: 'object',
|
|
52692
52701
|
},
|
|
@@ -52720,7 +52729,7 @@ export default {
|
|
|
52720
52729
|
},
|
|
52721
52730
|
post: {
|
|
52722
52731
|
description:
|
|
52723
|
-
'Lists all available connector types and their
|
|
52732
|
+
'Lists all available connector types and their editable fields for UI input.',
|
|
52724
52733
|
operationId: 'seamCustomerV1ConnectorsConnectorTypesPost',
|
|
52725
52734
|
responses: {
|
|
52726
52735
|
200: {
|
|
@@ -52734,30 +52743,39 @@ export default {
|
|
|
52734
52743
|
connector_type: { type: 'string' },
|
|
52735
52744
|
description: { type: 'string' },
|
|
52736
52745
|
display_name: { type: 'string' },
|
|
52737
|
-
|
|
52738
|
-
|
|
52739
|
-
|
|
52740
|
-
|
|
52741
|
-
|
|
52742
|
-
|
|
52743
|
-
|
|
52744
|
-
|
|
52745
|
-
|
|
52746
|
-
|
|
52746
|
+
editable_fields: {
|
|
52747
|
+
items: {
|
|
52748
|
+
properties: {
|
|
52749
|
+
description: { type: 'string' },
|
|
52750
|
+
display_name: { type: 'string' },
|
|
52751
|
+
name: { type: 'string' },
|
|
52752
|
+
required: { type: 'boolean' },
|
|
52753
|
+
type: {
|
|
52754
|
+
enum: [
|
|
52755
|
+
'string',
|
|
52756
|
+
'string[]',
|
|
52757
|
+
'number',
|
|
52758
|
+
'boolean',
|
|
52759
|
+
],
|
|
52760
|
+
type: 'string',
|
|
52761
|
+
},
|
|
52747
52762
|
},
|
|
52763
|
+
required: [
|
|
52764
|
+
'name',
|
|
52765
|
+
'display_name',
|
|
52766
|
+
'description',
|
|
52767
|
+
'type',
|
|
52768
|
+
'required',
|
|
52769
|
+
],
|
|
52770
|
+
type: 'object',
|
|
52748
52771
|
},
|
|
52749
|
-
|
|
52750
|
-
'base_api_url',
|
|
52751
|
-
'polling_enabled',
|
|
52752
|
-
'polling_frequency_minutes',
|
|
52753
|
-
],
|
|
52754
|
-
type: 'object',
|
|
52772
|
+
type: 'array',
|
|
52755
52773
|
},
|
|
52756
52774
|
},
|
|
52757
52775
|
required: [
|
|
52758
52776
|
'connector_type',
|
|
52759
52777
|
'display_name',
|
|
52760
|
-
'
|
|
52778
|
+
'editable_fields',
|
|
52761
52779
|
],
|
|
52762
52780
|
type: 'object',
|
|
52763
52781
|
},
|
|
@@ -53182,6 +53200,7 @@ export default {
|
|
|
53182
53200
|
},
|
|
53183
53201
|
{
|
|
53184
53202
|
properties: {
|
|
53203
|
+
auth_token: { type: 'string' },
|
|
53185
53204
|
client_id: {
|
|
53186
53205
|
description: 'RMS client ID for authentication',
|
|
53187
53206
|
minLength: 1,
|
|
@@ -61785,12 +61785,13 @@ export type Routes = {
|
|
|
61785
61785
|
connector_type: string
|
|
61786
61786
|
display_name: string
|
|
61787
61787
|
description?: string | undefined
|
|
61788
|
-
|
|
61789
|
-
|
|
61790
|
-
|
|
61791
|
-
|
|
61792
|
-
|
|
61793
|
-
|
|
61788
|
+
editable_fields: {
|
|
61789
|
+
name: string
|
|
61790
|
+
display_name: string
|
|
61791
|
+
description: string
|
|
61792
|
+
type: 'string' | 'string[]' | 'number' | 'boolean'
|
|
61793
|
+
required: boolean
|
|
61794
|
+
}[]
|
|
61794
61795
|
}[]
|
|
61795
61796
|
}
|
|
61796
61797
|
}
|
|
@@ -61909,6 +61910,7 @@ export type Routes = {
|
|
|
61909
61910
|
client_password: string
|
|
61910
61911
|
/** Optional property ID for single-property connectors */
|
|
61911
61912
|
property_id?: (string | number) | undefined
|
|
61913
|
+
auth_token?: string | undefined
|
|
61912
61914
|
}
|
|
61913
61915
|
}
|
|
61914
61916
|
commonParams: {}
|