@seamapi/types 1.585.0 → 1.587.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 +60 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +78 -0
- package/dist/index.cjs +60 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +66 -0
- package/lib/seam/connect/openapi.js +60 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +63 -0
- package/src/lib/seam/connect/route-types.ts +16 -0
|
@@ -56425,6 +56425,10 @@ export type Routes = {
|
|
|
56425
56425
|
rule: 'space_name_updated';
|
|
56426
56426
|
config?: {} | undefined;
|
|
56427
56427
|
} | undefined;
|
|
56428
|
+
user_identity_name_updated?: {
|
|
56429
|
+
rule: 'user_identity_name_updated';
|
|
56430
|
+
config?: {} | undefined;
|
|
56431
|
+
} | undefined;
|
|
56428
56432
|
} | undefined;
|
|
56429
56433
|
};
|
|
56430
56434
|
};
|
|
@@ -56454,6 +56458,10 @@ export type Routes = {
|
|
|
56454
56458
|
rule: 'space_name_updated';
|
|
56455
56459
|
config?: {} | undefined;
|
|
56456
56460
|
} | undefined;
|
|
56461
|
+
user_identity_name_updated?: {
|
|
56462
|
+
rule: 'user_identity_name_updated';
|
|
56463
|
+
config?: {} | undefined;
|
|
56464
|
+
} | undefined;
|
|
56457
56465
|
} | undefined;
|
|
56458
56466
|
};
|
|
56459
56467
|
commonParams: {};
|
|
@@ -59198,6 +59206,8 @@ export type Routes = {
|
|
|
59198
59206
|
device_ids?: string[] | undefined;
|
|
59199
59207
|
/** IDs of the entrances that you want to add to the new space. */
|
|
59200
59208
|
acs_entrance_ids?: string[] | undefined;
|
|
59209
|
+
/** Customer key for which you want to create the space. */
|
|
59210
|
+
customer_key?: string | undefined;
|
|
59201
59211
|
};
|
|
59202
59212
|
commonParams: {};
|
|
59203
59213
|
formData: {};
|
|
@@ -60958,6 +60968,8 @@ export type Routes = {
|
|
|
60958
60968
|
device_ids?: string[] | undefined;
|
|
60959
60969
|
/** IDs of the entrances that you want to set for the space. If specified, this will replace all existing entrances. */
|
|
60960
60970
|
acs_entrance_ids?: string[] | undefined;
|
|
60971
|
+
/** Customer key for which you want to update the space. */
|
|
60972
|
+
customer_key?: string | undefined;
|
|
60961
60973
|
};
|
|
60962
60974
|
commonParams: {};
|
|
60963
60975
|
formData: {};
|
package/package.json
CHANGED
|
@@ -50492,6 +50492,19 @@ export default {
|
|
|
50492
50492
|
required: ['rule'],
|
|
50493
50493
|
type: 'object',
|
|
50494
50494
|
},
|
|
50495
|
+
user_identity_name_updated: {
|
|
50496
|
+
properties: {
|
|
50497
|
+
config: {
|
|
50498
|
+
$ref: '#/components/schemas/access_code',
|
|
50499
|
+
},
|
|
50500
|
+
rule: {
|
|
50501
|
+
enum: ['user_identity_name_updated'],
|
|
50502
|
+
type: 'string',
|
|
50503
|
+
},
|
|
50504
|
+
},
|
|
50505
|
+
required: ['rule'],
|
|
50506
|
+
type: 'object',
|
|
50507
|
+
},
|
|
50495
50508
|
},
|
|
50496
50509
|
type: 'object',
|
|
50497
50510
|
},
|
|
@@ -50606,6 +50619,19 @@ export default {
|
|
|
50606
50619
|
required: ['rule'],
|
|
50607
50620
|
type: 'object',
|
|
50608
50621
|
},
|
|
50622
|
+
user_identity_name_updated: {
|
|
50623
|
+
properties: {
|
|
50624
|
+
config: {
|
|
50625
|
+
$ref: '#/components/schemas/access_code',
|
|
50626
|
+
},
|
|
50627
|
+
rule: {
|
|
50628
|
+
enum: ['user_identity_name_updated'],
|
|
50629
|
+
type: 'string',
|
|
50630
|
+
},
|
|
50631
|
+
},
|
|
50632
|
+
required: ['rule'],
|
|
50633
|
+
type: 'object',
|
|
50634
|
+
},
|
|
50609
50635
|
},
|
|
50610
50636
|
type: 'object',
|
|
50611
50637
|
},
|
|
@@ -50716,6 +50742,17 @@ export default {
|
|
|
50716
50742
|
required: ['rule'],
|
|
50717
50743
|
type: 'object',
|
|
50718
50744
|
},
|
|
50745
|
+
user_identity_name_updated: {
|
|
50746
|
+
properties: {
|
|
50747
|
+
config: { properties: {}, type: 'object' },
|
|
50748
|
+
rule: {
|
|
50749
|
+
enum: ['user_identity_name_updated'],
|
|
50750
|
+
type: 'string',
|
|
50751
|
+
},
|
|
50752
|
+
},
|
|
50753
|
+
required: ['rule'],
|
|
50754
|
+
type: 'object',
|
|
50755
|
+
},
|
|
50719
50756
|
},
|
|
50720
50757
|
type: 'object',
|
|
50721
50758
|
},
|
|
@@ -50834,6 +50871,17 @@ export default {
|
|
|
50834
50871
|
required: ['rule'],
|
|
50835
50872
|
type: 'object',
|
|
50836
50873
|
},
|
|
50874
|
+
user_identity_name_updated: {
|
|
50875
|
+
properties: {
|
|
50876
|
+
config: { properties: {}, type: 'object' },
|
|
50877
|
+
rule: {
|
|
50878
|
+
enum: ['user_identity_name_updated'],
|
|
50879
|
+
type: 'string',
|
|
50880
|
+
},
|
|
50881
|
+
},
|
|
50882
|
+
required: ['rule'],
|
|
50883
|
+
type: 'object',
|
|
50884
|
+
},
|
|
50837
50885
|
},
|
|
50838
50886
|
type: 'object',
|
|
50839
50887
|
},
|
|
@@ -53484,6 +53532,11 @@ export default {
|
|
|
53484
53532
|
items: { format: 'uuid', type: 'string' },
|
|
53485
53533
|
type: 'array',
|
|
53486
53534
|
},
|
|
53535
|
+
customer_key: {
|
|
53536
|
+
description:
|
|
53537
|
+
'Customer key for which you want to create the space.',
|
|
53538
|
+
type: 'string',
|
|
53539
|
+
},
|
|
53487
53540
|
device_ids: {
|
|
53488
53541
|
description:
|
|
53489
53542
|
'IDs of the devices that you want to add to the new space.',
|
|
@@ -54397,6 +54450,11 @@ export default {
|
|
|
54397
54450
|
items: { format: 'uuid', type: 'string' },
|
|
54398
54451
|
type: 'array',
|
|
54399
54452
|
},
|
|
54453
|
+
customer_key: {
|
|
54454
|
+
description:
|
|
54455
|
+
'Customer key for which you want to update the space.',
|
|
54456
|
+
type: 'string',
|
|
54457
|
+
},
|
|
54400
54458
|
device_ids: {
|
|
54401
54459
|
description:
|
|
54402
54460
|
'IDs of the devices that you want to set for the space. If specified, this will replace all existing devices.',
|
|
@@ -54468,6 +54526,11 @@ export default {
|
|
|
54468
54526
|
items: { format: 'uuid', type: 'string' },
|
|
54469
54527
|
type: 'array',
|
|
54470
54528
|
},
|
|
54529
|
+
customer_key: {
|
|
54530
|
+
description:
|
|
54531
|
+
'Customer key for which you want to update the space.',
|
|
54532
|
+
type: 'string',
|
|
54533
|
+
},
|
|
54471
54534
|
device_ids: {
|
|
54472
54535
|
description:
|
|
54473
54536
|
'IDs of the devices that you want to set for the space. If specified, this will replace all existing devices.',
|
|
@@ -67076,6 +67076,12 @@ export type Routes = {
|
|
|
67076
67076
|
config?: {} | undefined
|
|
67077
67077
|
}
|
|
67078
67078
|
| undefined
|
|
67079
|
+
user_identity_name_updated?:
|
|
67080
|
+
| {
|
|
67081
|
+
rule: 'user_identity_name_updated'
|
|
67082
|
+
config?: {} | undefined
|
|
67083
|
+
}
|
|
67084
|
+
| undefined
|
|
67079
67085
|
}
|
|
67080
67086
|
| undefined
|
|
67081
67087
|
}
|
|
@@ -67118,6 +67124,12 @@ export type Routes = {
|
|
|
67118
67124
|
config?: {} | undefined
|
|
67119
67125
|
}
|
|
67120
67126
|
| undefined
|
|
67127
|
+
user_identity_name_updated?:
|
|
67128
|
+
| {
|
|
67129
|
+
rule: 'user_identity_name_updated'
|
|
67130
|
+
config?: {} | undefined
|
|
67131
|
+
}
|
|
67132
|
+
| undefined
|
|
67121
67133
|
}
|
|
67122
67134
|
| undefined
|
|
67123
67135
|
}
|
|
@@ -70528,6 +70540,8 @@ export type Routes = {
|
|
|
70528
70540
|
device_ids?: string[] | undefined
|
|
70529
70541
|
/** IDs of the entrances that you want to add to the new space. */
|
|
70530
70542
|
acs_entrance_ids?: string[] | undefined
|
|
70543
|
+
/** Customer key for which you want to create the space. */
|
|
70544
|
+
customer_key?: string | undefined
|
|
70531
70545
|
}
|
|
70532
70546
|
commonParams: {}
|
|
70533
70547
|
formData: {}
|
|
@@ -72744,6 +72758,8 @@ export type Routes = {
|
|
|
72744
72758
|
device_ids?: string[] | undefined
|
|
72745
72759
|
/** IDs of the entrances that you want to set for the space. If specified, this will replace all existing entrances. */
|
|
72746
72760
|
acs_entrance_ids?: string[] | undefined
|
|
72761
|
+
/** Customer key for which you want to update the space. */
|
|
72762
|
+
customer_key?: string | undefined
|
|
72747
72763
|
}
|
|
72748
72764
|
commonParams: {}
|
|
72749
72765
|
formData: {}
|