@seamapi/types 1.96.0 → 1.96.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.
- package/dist/connect.cjs +1 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2 -9
- package/lib/seam/connect/openapi.d.ts +1 -7
- package/lib/seam/connect/openapi.js +1 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +1 -4
- package/src/lib/seam/connect/route-types.ts +1 -2
|
@@ -1048,8 +1048,7 @@ export interface Routes {
|
|
|
1048
1048
|
queryParams: {};
|
|
1049
1049
|
jsonBody: {};
|
|
1050
1050
|
commonParams: {
|
|
1051
|
-
acs_entrance_id
|
|
1052
|
-
acs_entrance_ids?: string[] | undefined;
|
|
1051
|
+
acs_entrance_id: string;
|
|
1053
1052
|
include_if?: Array<'visionline_metadata.is_valid'> | undefined;
|
|
1054
1053
|
};
|
|
1055
1054
|
formData: {};
|
package/package.json
CHANGED
|
@@ -4930,10 +4930,6 @@ export default {
|
|
|
4930
4930
|
schema: {
|
|
4931
4931
|
properties: {
|
|
4932
4932
|
acs_entrance_id: { format: 'uuid', type: 'string' },
|
|
4933
|
-
acs_entrance_ids: {
|
|
4934
|
-
items: { format: 'uuid', type: 'string' },
|
|
4935
|
-
type: 'array',
|
|
4936
|
-
},
|
|
4937
4933
|
include_if: {
|
|
4938
4934
|
items: {
|
|
4939
4935
|
enum: ['visionline_metadata.is_valid'],
|
|
@@ -4942,6 +4938,7 @@ export default {
|
|
|
4942
4938
|
type: 'array',
|
|
4943
4939
|
},
|
|
4944
4940
|
},
|
|
4941
|
+
required: ['acs_entrance_id'],
|
|
4945
4942
|
type: 'object',
|
|
4946
4943
|
},
|
|
4947
4944
|
},
|
|
@@ -1146,8 +1146,7 @@ export interface Routes {
|
|
|
1146
1146
|
queryParams: {}
|
|
1147
1147
|
jsonBody: {}
|
|
1148
1148
|
commonParams: {
|
|
1149
|
-
acs_entrance_id
|
|
1150
|
-
acs_entrance_ids?: string[] | undefined
|
|
1149
|
+
acs_entrance_id: string
|
|
1151
1150
|
include_if?: Array<'visionline_metadata.is_valid'> | undefined
|
|
1152
1151
|
}
|
|
1153
1152
|
formData: {}
|