@seamapi/types 1.583.0 → 1.584.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 +52 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +63 -1
- package/dist/index.cjs +52 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +54 -0
- package/lib/seam/connect/openapi.js +50 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +9 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +50 -0
- package/src/lib/seam/connect/route-types.ts +13 -0
|
@@ -56129,7 +56129,7 @@ export type Routes = {
|
|
|
56129
56129
|
/** ID of the partner resource for which you want to retrieve all automation runs. */
|
|
56130
56130
|
partner_resource_id?: string | undefined;
|
|
56131
56131
|
/** Filter automation runs by the specific rule that was executed. */
|
|
56132
|
-
rule?: ('reservation_created' | 'reservation_time_updated' | 'reservation_deleted') | undefined;
|
|
56132
|
+
rule?: ('reservation_created' | 'reservation_time_updated' | 'reservation_deleted' | 'space_name_updated') | undefined;
|
|
56133
56133
|
/** Filter automation runs by success status. */
|
|
56134
56134
|
success?: boolean | undefined;
|
|
56135
56135
|
/** Maximum number of records to return per page. */
|
|
@@ -56205,6 +56205,10 @@ export type Routes = {
|
|
|
56205
56205
|
rule: 'reservation_deleted';
|
|
56206
56206
|
config?: {} | undefined;
|
|
56207
56207
|
} | undefined;
|
|
56208
|
+
space_name_updated?: {
|
|
56209
|
+
rule: 'space_name_updated';
|
|
56210
|
+
config?: {} | undefined;
|
|
56211
|
+
} | undefined;
|
|
56208
56212
|
} | undefined;
|
|
56209
56213
|
};
|
|
56210
56214
|
};
|
|
@@ -56230,6 +56234,10 @@ export type Routes = {
|
|
|
56230
56234
|
rule: 'reservation_deleted';
|
|
56231
56235
|
config?: {} | undefined;
|
|
56232
56236
|
} | undefined;
|
|
56237
|
+
space_name_updated?: {
|
|
56238
|
+
rule: 'space_name_updated';
|
|
56239
|
+
config?: {} | undefined;
|
|
56240
|
+
} | undefined;
|
|
56233
56241
|
} | undefined;
|
|
56234
56242
|
};
|
|
56235
56243
|
commonParams: {};
|
package/package.json
CHANGED
|
@@ -48348,6 +48348,7 @@ export default {
|
|
|
48348
48348
|
'reservation_created',
|
|
48349
48349
|
'reservation_time_updated',
|
|
48350
48350
|
'reservation_deleted',
|
|
48351
|
+
'space_name_updated',
|
|
48351
48352
|
],
|
|
48352
48353
|
type: 'string',
|
|
48353
48354
|
},
|
|
@@ -48548,6 +48549,7 @@ export default {
|
|
|
48548
48549
|
'reservation_created',
|
|
48549
48550
|
'reservation_time_updated',
|
|
48550
48551
|
'reservation_deleted',
|
|
48552
|
+
'space_name_updated',
|
|
48551
48553
|
],
|
|
48552
48554
|
type: 'string',
|
|
48553
48555
|
},
|
|
@@ -48822,6 +48824,19 @@ export default {
|
|
|
48822
48824
|
required: ['rule'],
|
|
48823
48825
|
type: 'object',
|
|
48824
48826
|
},
|
|
48827
|
+
space_name_updated: {
|
|
48828
|
+
properties: {
|
|
48829
|
+
config: {
|
|
48830
|
+
$ref: '#/components/schemas/access_code',
|
|
48831
|
+
},
|
|
48832
|
+
rule: {
|
|
48833
|
+
enum: ['space_name_updated'],
|
|
48834
|
+
type: 'string',
|
|
48835
|
+
},
|
|
48836
|
+
},
|
|
48837
|
+
required: ['rule'],
|
|
48838
|
+
type: 'object',
|
|
48839
|
+
},
|
|
48825
48840
|
},
|
|
48826
48841
|
type: 'object',
|
|
48827
48842
|
},
|
|
@@ -48923,6 +48938,19 @@ export default {
|
|
|
48923
48938
|
required: ['rule'],
|
|
48924
48939
|
type: 'object',
|
|
48925
48940
|
},
|
|
48941
|
+
space_name_updated: {
|
|
48942
|
+
properties: {
|
|
48943
|
+
config: {
|
|
48944
|
+
$ref: '#/components/schemas/access_code',
|
|
48945
|
+
},
|
|
48946
|
+
rule: {
|
|
48947
|
+
enum: ['space_name_updated'],
|
|
48948
|
+
type: 'string',
|
|
48949
|
+
},
|
|
48950
|
+
},
|
|
48951
|
+
required: ['rule'],
|
|
48952
|
+
type: 'object',
|
|
48953
|
+
},
|
|
48926
48954
|
},
|
|
48927
48955
|
type: 'object',
|
|
48928
48956
|
},
|
|
@@ -49022,6 +49050,17 @@ export default {
|
|
|
49022
49050
|
required: ['rule'],
|
|
49023
49051
|
type: 'object',
|
|
49024
49052
|
},
|
|
49053
|
+
space_name_updated: {
|
|
49054
|
+
properties: {
|
|
49055
|
+
config: { properties: {}, type: 'object' },
|
|
49056
|
+
rule: {
|
|
49057
|
+
enum: ['space_name_updated'],
|
|
49058
|
+
type: 'string',
|
|
49059
|
+
},
|
|
49060
|
+
},
|
|
49061
|
+
required: ['rule'],
|
|
49062
|
+
type: 'object',
|
|
49063
|
+
},
|
|
49025
49064
|
},
|
|
49026
49065
|
type: 'object',
|
|
49027
49066
|
},
|
|
@@ -49129,6 +49168,17 @@ export default {
|
|
|
49129
49168
|
required: ['rule'],
|
|
49130
49169
|
type: 'object',
|
|
49131
49170
|
},
|
|
49171
|
+
space_name_updated: {
|
|
49172
|
+
properties: {
|
|
49173
|
+
config: { properties: {}, type: 'object' },
|
|
49174
|
+
rule: {
|
|
49175
|
+
enum: ['space_name_updated'],
|
|
49176
|
+
type: 'string',
|
|
49177
|
+
},
|
|
49178
|
+
},
|
|
49179
|
+
required: ['rule'],
|
|
49180
|
+
type: 'object',
|
|
49181
|
+
},
|
|
49132
49182
|
},
|
|
49133
49183
|
type: 'object',
|
|
49134
49184
|
},
|
|
@@ -66761,6 +66761,7 @@ export type Routes = {
|
|
|
66761
66761
|
| 'reservation_created'
|
|
66762
66762
|
| 'reservation_time_updated'
|
|
66763
66763
|
| 'reservation_deleted'
|
|
66764
|
+
| 'space_name_updated'
|
|
66764
66765
|
)
|
|
66765
66766
|
| undefined
|
|
66766
66767
|
/** Filter automation runs by success status. */
|
|
@@ -66853,6 +66854,12 @@ export type Routes = {
|
|
|
66853
66854
|
config?: {} | undefined
|
|
66854
66855
|
}
|
|
66855
66856
|
| undefined
|
|
66857
|
+
space_name_updated?:
|
|
66858
|
+
| {
|
|
66859
|
+
rule: 'space_name_updated'
|
|
66860
|
+
config?: {} | undefined
|
|
66861
|
+
}
|
|
66862
|
+
| undefined
|
|
66856
66863
|
}
|
|
66857
66864
|
| undefined
|
|
66858
66865
|
}
|
|
@@ -66889,6 +66896,12 @@ export type Routes = {
|
|
|
66889
66896
|
config?: {} | undefined
|
|
66890
66897
|
}
|
|
66891
66898
|
| undefined
|
|
66899
|
+
space_name_updated?:
|
|
66900
|
+
| {
|
|
66901
|
+
rule: 'space_name_updated'
|
|
66902
|
+
config?: {} | undefined
|
|
66903
|
+
}
|
|
66904
|
+
| undefined
|
|
66892
66905
|
}
|
|
66893
66906
|
| undefined
|
|
66894
66907
|
}
|