@seamapi/types 1.620.0 → 1.621.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 +96 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +124 -0
- package/dist/index.cjs +96 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +108 -0
- package/lib/seam/connect/openapi.js +96 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +16 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +96 -0
- package/src/lib/seam/connect/route-types.ts +24 -0
|
@@ -57114,6 +57114,14 @@ export type Routes = {
|
|
|
57114
57114
|
rule: 'user_identity_name_updated';
|
|
57115
57115
|
config?: {} | undefined;
|
|
57116
57116
|
} | undefined;
|
|
57117
|
+
staff_member_name_updated?: {
|
|
57118
|
+
rule: 'staff_member_name_updated';
|
|
57119
|
+
config?: {} | undefined;
|
|
57120
|
+
} | undefined;
|
|
57121
|
+
staff_member_created?: {
|
|
57122
|
+
rule: 'staff_member_created';
|
|
57123
|
+
config: {};
|
|
57124
|
+
} | undefined;
|
|
57117
57125
|
} | undefined;
|
|
57118
57126
|
climate_rules?: {
|
|
57119
57127
|
rules: {
|
|
@@ -57169,6 +57177,14 @@ export type Routes = {
|
|
|
57169
57177
|
rule: 'user_identity_name_updated';
|
|
57170
57178
|
config?: {} | undefined;
|
|
57171
57179
|
} | undefined;
|
|
57180
|
+
staff_member_name_updated?: {
|
|
57181
|
+
rule: 'staff_member_name_updated';
|
|
57182
|
+
config?: {} | undefined;
|
|
57183
|
+
} | undefined;
|
|
57184
|
+
staff_member_created?: {
|
|
57185
|
+
rule: 'staff_member_created';
|
|
57186
|
+
config: {};
|
|
57187
|
+
} | undefined;
|
|
57172
57188
|
} | undefined;
|
|
57173
57189
|
/** Climate automation rules configuration. */
|
|
57174
57190
|
climate_rules?: {
|
package/package.json
CHANGED
|
@@ -51601,6 +51601,32 @@ export default {
|
|
|
51601
51601
|
required: ['rule'],
|
|
51602
51602
|
type: 'object',
|
|
51603
51603
|
},
|
|
51604
|
+
staff_member_created: {
|
|
51605
|
+
properties: {
|
|
51606
|
+
config: {
|
|
51607
|
+
$ref: '#/components/schemas/access_code',
|
|
51608
|
+
},
|
|
51609
|
+
rule: {
|
|
51610
|
+
enum: ['staff_member_created'],
|
|
51611
|
+
type: 'string',
|
|
51612
|
+
},
|
|
51613
|
+
},
|
|
51614
|
+
required: ['rule', 'config'],
|
|
51615
|
+
type: 'object',
|
|
51616
|
+
},
|
|
51617
|
+
staff_member_name_updated: {
|
|
51618
|
+
properties: {
|
|
51619
|
+
config: {
|
|
51620
|
+
$ref: '#/components/schemas/access_code',
|
|
51621
|
+
},
|
|
51622
|
+
rule: {
|
|
51623
|
+
enum: ['staff_member_name_updated'],
|
|
51624
|
+
type: 'string',
|
|
51625
|
+
},
|
|
51626
|
+
},
|
|
51627
|
+
required: ['rule'],
|
|
51628
|
+
type: 'object',
|
|
51629
|
+
},
|
|
51604
51630
|
user_identity_name_updated: {
|
|
51605
51631
|
properties: {
|
|
51606
51632
|
config: {
|
|
@@ -51791,6 +51817,32 @@ export default {
|
|
|
51791
51817
|
required: ['rule'],
|
|
51792
51818
|
type: 'object',
|
|
51793
51819
|
},
|
|
51820
|
+
staff_member_created: {
|
|
51821
|
+
properties: {
|
|
51822
|
+
config: {
|
|
51823
|
+
$ref: '#/components/schemas/access_code',
|
|
51824
|
+
},
|
|
51825
|
+
rule: {
|
|
51826
|
+
enum: ['staff_member_created'],
|
|
51827
|
+
type: 'string',
|
|
51828
|
+
},
|
|
51829
|
+
},
|
|
51830
|
+
required: ['rule', 'config'],
|
|
51831
|
+
type: 'object',
|
|
51832
|
+
},
|
|
51833
|
+
staff_member_name_updated: {
|
|
51834
|
+
properties: {
|
|
51835
|
+
config: {
|
|
51836
|
+
$ref: '#/components/schemas/access_code',
|
|
51837
|
+
},
|
|
51838
|
+
rule: {
|
|
51839
|
+
enum: ['staff_member_name_updated'],
|
|
51840
|
+
type: 'string',
|
|
51841
|
+
},
|
|
51842
|
+
},
|
|
51843
|
+
required: ['rule'],
|
|
51844
|
+
type: 'object',
|
|
51845
|
+
},
|
|
51794
51846
|
user_identity_name_updated: {
|
|
51795
51847
|
properties: {
|
|
51796
51848
|
config: {
|
|
@@ -51977,6 +52029,28 @@ export default {
|
|
|
51977
52029
|
required: ['rule'],
|
|
51978
52030
|
type: 'object',
|
|
51979
52031
|
},
|
|
52032
|
+
staff_member_created: {
|
|
52033
|
+
properties: {
|
|
52034
|
+
config: { properties: {}, type: 'object' },
|
|
52035
|
+
rule: {
|
|
52036
|
+
enum: ['staff_member_created'],
|
|
52037
|
+
type: 'string',
|
|
52038
|
+
},
|
|
52039
|
+
},
|
|
52040
|
+
required: ['rule', 'config'],
|
|
52041
|
+
type: 'object',
|
|
52042
|
+
},
|
|
52043
|
+
staff_member_name_updated: {
|
|
52044
|
+
properties: {
|
|
52045
|
+
config: { properties: {}, type: 'object' },
|
|
52046
|
+
rule: {
|
|
52047
|
+
enum: ['staff_member_name_updated'],
|
|
52048
|
+
type: 'string',
|
|
52049
|
+
},
|
|
52050
|
+
},
|
|
52051
|
+
required: ['rule'],
|
|
52052
|
+
type: 'object',
|
|
52053
|
+
},
|
|
51980
52054
|
user_identity_name_updated: {
|
|
51981
52055
|
properties: {
|
|
51982
52056
|
config: { properties: {}, type: 'object' },
|
|
@@ -52169,6 +52243,28 @@ export default {
|
|
|
52169
52243
|
required: ['rule'],
|
|
52170
52244
|
type: 'object',
|
|
52171
52245
|
},
|
|
52246
|
+
staff_member_created: {
|
|
52247
|
+
properties: {
|
|
52248
|
+
config: { properties: {}, type: 'object' },
|
|
52249
|
+
rule: {
|
|
52250
|
+
enum: ['staff_member_created'],
|
|
52251
|
+
type: 'string',
|
|
52252
|
+
},
|
|
52253
|
+
},
|
|
52254
|
+
required: ['rule', 'config'],
|
|
52255
|
+
type: 'object',
|
|
52256
|
+
},
|
|
52257
|
+
staff_member_name_updated: {
|
|
52258
|
+
properties: {
|
|
52259
|
+
config: { properties: {}, type: 'object' },
|
|
52260
|
+
rule: {
|
|
52261
|
+
enum: ['staff_member_name_updated'],
|
|
52262
|
+
type: 'string',
|
|
52263
|
+
},
|
|
52264
|
+
},
|
|
52265
|
+
required: ['rule'],
|
|
52266
|
+
type: 'object',
|
|
52267
|
+
},
|
|
52172
52268
|
user_identity_name_updated: {
|
|
52173
52269
|
properties: {
|
|
52174
52270
|
config: { properties: {}, type: 'object' },
|
|
@@ -67877,6 +67877,18 @@ export type Routes = {
|
|
|
67877
67877
|
config?: {} | undefined
|
|
67878
67878
|
}
|
|
67879
67879
|
| undefined
|
|
67880
|
+
staff_member_name_updated?:
|
|
67881
|
+
| {
|
|
67882
|
+
rule: 'staff_member_name_updated'
|
|
67883
|
+
config?: {} | undefined
|
|
67884
|
+
}
|
|
67885
|
+
| undefined
|
|
67886
|
+
staff_member_created?:
|
|
67887
|
+
| {
|
|
67888
|
+
rule: 'staff_member_created'
|
|
67889
|
+
config: {}
|
|
67890
|
+
}
|
|
67891
|
+
| undefined
|
|
67880
67892
|
}
|
|
67881
67893
|
| undefined
|
|
67882
67894
|
climate_rules?:
|
|
@@ -67957,6 +67969,18 @@ export type Routes = {
|
|
|
67957
67969
|
config?: {} | undefined
|
|
67958
67970
|
}
|
|
67959
67971
|
| undefined
|
|
67972
|
+
staff_member_name_updated?:
|
|
67973
|
+
| {
|
|
67974
|
+
rule: 'staff_member_name_updated'
|
|
67975
|
+
config?: {} | undefined
|
|
67976
|
+
}
|
|
67977
|
+
| undefined
|
|
67978
|
+
staff_member_created?:
|
|
67979
|
+
| {
|
|
67980
|
+
rule: 'staff_member_created'
|
|
67981
|
+
config: {}
|
|
67982
|
+
}
|
|
67983
|
+
| undefined
|
|
67960
67984
|
}
|
|
67961
67985
|
| undefined
|
|
67962
67986
|
/** Climate automation rules configuration. */
|