@seamapi/types 1.761.0 → 1.762.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 +12 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +25 -0
- package/dist/index.cjs +12 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +22 -0
- package/lib/seam/connect/openapi.js +12 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +12 -0
- package/src/lib/seam/connect/route-types.ts +5 -0
|
@@ -58147,6 +58147,9 @@ export type Routes = {
|
|
|
58147
58147
|
properties_updated?: {
|
|
58148
58148
|
[x: string]: any;
|
|
58149
58149
|
} | undefined;
|
|
58150
|
+
properties_before?: {
|
|
58151
|
+
[x: string]: any;
|
|
58152
|
+
} | undefined;
|
|
58150
58153
|
errors?: string[] | undefined;
|
|
58151
58154
|
warnings?: string[] | undefined;
|
|
58152
58155
|
} | {
|
package/package.json
CHANGED
|
@@ -60182,6 +60182,12 @@ export default {
|
|
|
60182
60182
|
items: { type: 'string' },
|
|
60183
60183
|
type: 'array',
|
|
60184
60184
|
},
|
|
60185
|
+
properties_before: {
|
|
60186
|
+
additionalProperties: {
|
|
60187
|
+
$ref: '#/components/schemas/access_code',
|
|
60188
|
+
},
|
|
60189
|
+
type: 'object',
|
|
60190
|
+
},
|
|
60185
60191
|
properties_updated: {
|
|
60186
60192
|
additionalProperties: {
|
|
60187
60193
|
$ref: '#/components/schemas/access_code',
|
|
@@ -60578,6 +60584,12 @@ export default {
|
|
|
60578
60584
|
items: { type: 'string' },
|
|
60579
60585
|
type: 'array',
|
|
60580
60586
|
},
|
|
60587
|
+
properties_before: {
|
|
60588
|
+
additionalProperties: {
|
|
60589
|
+
$ref: '#/components/schemas/access_code',
|
|
60590
|
+
},
|
|
60591
|
+
type: 'object',
|
|
60592
|
+
},
|
|
60581
60593
|
properties_updated: {
|
|
60582
60594
|
additionalProperties: {
|
|
60583
60595
|
$ref: '#/components/schemas/access_code',
|
|
@@ -69258,6 +69258,11 @@ export type Routes = {
|
|
|
69258
69258
|
[x: string]: any
|
|
69259
69259
|
}
|
|
69260
69260
|
| undefined
|
|
69261
|
+
properties_before?:
|
|
69262
|
+
| {
|
|
69263
|
+
[x: string]: any
|
|
69264
|
+
}
|
|
69265
|
+
| undefined
|
|
69261
69266
|
errors?: string[] | undefined
|
|
69262
69267
|
warnings?: string[] | undefined
|
|
69263
69268
|
}
|