@seamapi/types 1.946.0 → 1.948.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 +441 -10
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1201 -24
- package/dist/index.cjs +441 -10
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +16 -16
- package/lib/seam/connect/models/access-codes/managed-access-code.js +5 -5
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +5 -5
- package/lib/seam/connect/models/events/access-codes.d.ts +126 -0
- package/lib/seam/connect/models/events/access-grants.d.ts +42 -0
- package/lib/seam/connect/models/events/access-methods.d.ts +36 -0
- package/lib/seam/connect/models/events/acs/access-groups.d.ts +6 -0
- package/lib/seam/connect/models/events/acs/common.d.ts +3 -0
- package/lib/seam/connect/models/events/acs/credentials.d.ts +24 -0
- package/lib/seam/connect/models/events/acs/encoders.d.ts +12 -0
- package/lib/seam/connect/models/events/acs/entrances.d.ts +12 -0
- package/lib/seam/connect/models/events/acs/index.d.ts +42 -0
- package/lib/seam/connect/models/events/acs/systems.d.ts +18 -0
- package/lib/seam/connect/models/events/acs/users.d.ts +12 -0
- package/lib/seam/connect/models/events/action-attempts.d.ts +48 -0
- package/lib/seam/connect/models/events/client-sessions.d.ts +6 -0
- package/lib/seam/connect/models/events/common.d.ts +3 -0
- package/lib/seam/connect/models/events/common.js +4 -0
- package/lib/seam/connect/models/events/common.js.map +1 -1
- package/lib/seam/connect/models/events/connect-webviews.d.ts +12 -0
- package/lib/seam/connect/models/events/connected-accounts.d.ts +48 -0
- package/lib/seam/connect/models/events/devices.d.ts +210 -0
- package/lib/seam/connect/models/events/enrollment-automations.d.ts +6 -0
- package/lib/seam/connect/models/events/phones.d.ts +6 -0
- package/lib/seam/connect/models/events/seam-event.d.ts +321 -0
- package/lib/seam/connect/models/events/spaces.d.ts +18 -0
- package/lib/seam/connect/openapi.js +432 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +867 -11
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +12 -13
- package/src/lib/seam/connect/models/events/common.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +539 -4
- package/src/lib/seam/connect/route-types.ts +867 -11
package/dist/connect.cjs
CHANGED
|
@@ -2693,10 +2693,10 @@ var code_rotates_periodically = common_access_code_warning.extend({
|
|
|
2693
2693
|
}).describe(
|
|
2694
2694
|
"The access code's PIN rotates periodically when the code is renewed. Retrieve the latest code before each use."
|
|
2695
2695
|
);
|
|
2696
|
-
var
|
|
2697
|
-
warning_code: zod.z.literal("
|
|
2696
|
+
var time_frame_adjusted_for_unknown_time_zone = common_access_code_warning.extend({
|
|
2697
|
+
warning_code: zod.z.literal("time_frame_adjusted_for_unknown_time_zone").describe(warning_code_description3)
|
|
2698
2698
|
}).describe(
|
|
2699
|
-
"The
|
|
2699
|
+
"The device's time zone is unknown and this code's time frame crosses a daylight-saving transition in at least one plausible time zone. A 1-hour safety buffer has been applied to the side of the time frame affected by the transition (`ends_at` for spring-forward, `starts_at` for fall-back) so the code stays active through the shift \u2014 the code may be usable up to 1 hour beyond your requested window. Set the device's time zone via `/devices/report_provider_metadata` to clear the buffer and guarantee exact handling."
|
|
2700
2700
|
);
|
|
2701
2701
|
var delay_in_setting_on_device = common_access_code_warning.extend({
|
|
2702
2702
|
warning_code: zod.z.literal("delay_in_setting_on_device").describe(warning_code_description3)
|
|
@@ -2725,7 +2725,7 @@ var being_deleted2 = common_access_code_warning.extend({
|
|
|
2725
2725
|
}).describe("Access code is being deleted.");
|
|
2726
2726
|
var access_code_warning = zod.z.discriminatedUnion("warning_code", [
|
|
2727
2727
|
code_rotates_periodically,
|
|
2728
|
-
|
|
2728
|
+
time_frame_adjusted_for_unknown_time_zone,
|
|
2729
2729
|
code_modified_external_to_seam_warning,
|
|
2730
2730
|
delay_in_setting_on_device,
|
|
2731
2731
|
delay_in_removing_from_device,
|
|
@@ -2739,7 +2739,7 @@ var access_code_warning = zod.z.discriminatedUnion("warning_code", [
|
|
|
2739
2739
|
);
|
|
2740
2740
|
zod.z.object({
|
|
2741
2741
|
code_rotates_periodically: code_rotates_periodically.optional().nullable(),
|
|
2742
|
-
|
|
2742
|
+
time_frame_adjusted_for_unknown_time_zone: time_frame_adjusted_for_unknown_time_zone.optional().nullable(),
|
|
2743
2743
|
code_modified_external_to_seam_warning: code_modified_external_to_seam_warning.optional().nullable(),
|
|
2744
2744
|
delay_in_setting_on_device: delay_in_setting_on_device.optional().nullable(),
|
|
2745
2745
|
delay_in_removing_from_device: delay_in_removing_from_device.optional().nullable(),
|
|
@@ -5581,7 +5581,10 @@ var common_event = zod.z.object({
|
|
|
5581
5581
|
event_id: zod.z.string().uuid().describe("ID of the event."),
|
|
5582
5582
|
workspace_id: zod.z.string().uuid().describe("ID of the workspace associated with the event."),
|
|
5583
5583
|
created_at: zod.z.string().datetime().describe("Date and time at which the event was created."),
|
|
5584
|
-
occurred_at: zod.z.string().datetime().describe("Date and time at which the event occurred.")
|
|
5584
|
+
occurred_at: zod.z.string().datetime().describe("Date and time at which the event occurred."),
|
|
5585
|
+
event_description: zod.z.string().optional().describe(
|
|
5586
|
+
"Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event."
|
|
5587
|
+
)
|
|
5585
5588
|
});
|
|
5586
5589
|
var error_code_description8 = "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.";
|
|
5587
5590
|
var warning_code_description10 = "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.";
|
|
@@ -8816,7 +8819,7 @@ var openapi = {
|
|
|
8816
8819
|
type: "object"
|
|
8817
8820
|
},
|
|
8818
8821
|
{
|
|
8819
|
-
description: "The
|
|
8822
|
+
description: "The device's time zone is unknown and this code's time frame crosses a daylight-saving transition in at least one plausible time zone. A 1-hour safety buffer has been applied to the side of the time frame affected by the transition (`ends_at` for spring-forward, `starts_at` for fall-back) so the code stays active through the shift \u2014 the code may be usable up to 1 hour beyond your requested window. Set the device's time zone via `/devices/report_provider_metadata` to clear the buffer and guarantee exact handling.",
|
|
8820
8823
|
properties: {
|
|
8821
8824
|
created_at: {
|
|
8822
8825
|
description: "Date and time at which Seam created the warning.",
|
|
@@ -8829,7 +8832,7 @@ var openapi = {
|
|
|
8829
8832
|
},
|
|
8830
8833
|
warning_code: {
|
|
8831
8834
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
8832
|
-
enum: ["
|
|
8835
|
+
enum: ["time_frame_adjusted_for_unknown_time_zone"],
|
|
8833
8836
|
type: "string"
|
|
8834
8837
|
}
|
|
8835
8838
|
},
|
|
@@ -23210,6 +23213,10 @@ var openapi = {
|
|
|
23210
23213
|
format: "uuid",
|
|
23211
23214
|
type: "string"
|
|
23212
23215
|
},
|
|
23216
|
+
event_description: {
|
|
23217
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
23218
|
+
type: "string"
|
|
23219
|
+
},
|
|
23213
23220
|
event_id: {
|
|
23214
23221
|
description: "ID of the event.",
|
|
23215
23222
|
format: "uuid",
|
|
@@ -23306,6 +23313,10 @@ var openapi = {
|
|
|
23306
23313
|
format: "uuid",
|
|
23307
23314
|
type: "string"
|
|
23308
23315
|
},
|
|
23316
|
+
event_description: {
|
|
23317
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
23318
|
+
type: "string"
|
|
23319
|
+
},
|
|
23309
23320
|
event_id: {
|
|
23310
23321
|
description: "ID of the event.",
|
|
23311
23322
|
format: "uuid",
|
|
@@ -23377,6 +23388,10 @@ var openapi = {
|
|
|
23377
23388
|
format: "uuid",
|
|
23378
23389
|
type: "string"
|
|
23379
23390
|
},
|
|
23391
|
+
event_description: {
|
|
23392
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
23393
|
+
type: "string"
|
|
23394
|
+
},
|
|
23380
23395
|
event_id: {
|
|
23381
23396
|
description: "ID of the event.",
|
|
23382
23397
|
format: "uuid",
|
|
@@ -23478,6 +23493,10 @@ var openapi = {
|
|
|
23478
23493
|
format: "uuid",
|
|
23479
23494
|
type: "string"
|
|
23480
23495
|
},
|
|
23496
|
+
event_description: {
|
|
23497
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
23498
|
+
type: "string"
|
|
23499
|
+
},
|
|
23481
23500
|
event_id: {
|
|
23482
23501
|
description: "ID of the event.",
|
|
23483
23502
|
format: "uuid",
|
|
@@ -23579,6 +23598,10 @@ var openapi = {
|
|
|
23579
23598
|
format: "uuid",
|
|
23580
23599
|
type: "string"
|
|
23581
23600
|
},
|
|
23601
|
+
event_description: {
|
|
23602
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
23603
|
+
type: "string"
|
|
23604
|
+
},
|
|
23582
23605
|
event_id: {
|
|
23583
23606
|
description: "ID of the event.",
|
|
23584
23607
|
format: "uuid",
|
|
@@ -23686,6 +23709,10 @@ var openapi = {
|
|
|
23686
23709
|
format: "uuid",
|
|
23687
23710
|
type: "string"
|
|
23688
23711
|
},
|
|
23712
|
+
event_description: {
|
|
23713
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
23714
|
+
type: "string"
|
|
23715
|
+
},
|
|
23689
23716
|
event_id: {
|
|
23690
23717
|
description: "ID of the event.",
|
|
23691
23718
|
format: "uuid",
|
|
@@ -23794,6 +23821,10 @@ var openapi = {
|
|
|
23794
23821
|
format: "uuid",
|
|
23795
23822
|
type: "string"
|
|
23796
23823
|
},
|
|
23824
|
+
event_description: {
|
|
23825
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
23826
|
+
type: "string"
|
|
23827
|
+
},
|
|
23797
23828
|
event_id: {
|
|
23798
23829
|
description: "ID of the event.",
|
|
23799
23830
|
format: "uuid",
|
|
@@ -23869,6 +23900,10 @@ var openapi = {
|
|
|
23869
23900
|
format: "uuid",
|
|
23870
23901
|
type: "string"
|
|
23871
23902
|
},
|
|
23903
|
+
event_description: {
|
|
23904
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
23905
|
+
type: "string"
|
|
23906
|
+
},
|
|
23872
23907
|
event_id: {
|
|
23873
23908
|
description: "ID of the event.",
|
|
23874
23909
|
format: "uuid",
|
|
@@ -23940,6 +23975,10 @@ var openapi = {
|
|
|
23940
23975
|
format: "uuid",
|
|
23941
23976
|
type: "string"
|
|
23942
23977
|
},
|
|
23978
|
+
event_description: {
|
|
23979
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
23980
|
+
type: "string"
|
|
23981
|
+
},
|
|
23943
23982
|
event_id: {
|
|
23944
23983
|
description: "ID of the event.",
|
|
23945
23984
|
format: "uuid",
|
|
@@ -24154,6 +24193,10 @@ var openapi = {
|
|
|
24154
24193
|
},
|
|
24155
24194
|
type: "array"
|
|
24156
24195
|
},
|
|
24196
|
+
event_description: {
|
|
24197
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
24198
|
+
type: "string"
|
|
24199
|
+
},
|
|
24157
24200
|
event_id: {
|
|
24158
24201
|
description: "ID of the event.",
|
|
24159
24202
|
format: "uuid",
|
|
@@ -24374,6 +24417,10 @@ var openapi = {
|
|
|
24374
24417
|
},
|
|
24375
24418
|
type: "array"
|
|
24376
24419
|
},
|
|
24420
|
+
event_description: {
|
|
24421
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
24422
|
+
type: "string"
|
|
24423
|
+
},
|
|
24377
24424
|
event_id: {
|
|
24378
24425
|
description: "ID of the event.",
|
|
24379
24426
|
format: "uuid",
|
|
@@ -24455,6 +24502,10 @@ var openapi = {
|
|
|
24455
24502
|
format: "uuid",
|
|
24456
24503
|
type: "string"
|
|
24457
24504
|
},
|
|
24505
|
+
event_description: {
|
|
24506
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
24507
|
+
type: "string"
|
|
24508
|
+
},
|
|
24458
24509
|
event_id: {
|
|
24459
24510
|
description: "ID of the event.",
|
|
24460
24511
|
format: "uuid",
|
|
@@ -24667,6 +24718,10 @@ var openapi = {
|
|
|
24667
24718
|
},
|
|
24668
24719
|
type: "array"
|
|
24669
24720
|
},
|
|
24721
|
+
event_description: {
|
|
24722
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
24723
|
+
type: "string"
|
|
24724
|
+
},
|
|
24670
24725
|
event_id: {
|
|
24671
24726
|
description: "ID of the event.",
|
|
24672
24727
|
format: "uuid",
|
|
@@ -24887,6 +24942,10 @@ var openapi = {
|
|
|
24887
24942
|
},
|
|
24888
24943
|
type: "array"
|
|
24889
24944
|
},
|
|
24945
|
+
event_description: {
|
|
24946
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
24947
|
+
type: "string"
|
|
24948
|
+
},
|
|
24890
24949
|
event_id: {
|
|
24891
24950
|
description: "ID of the event.",
|
|
24892
24951
|
format: "uuid",
|
|
@@ -24963,6 +25022,10 @@ var openapi = {
|
|
|
24963
25022
|
format: "uuid",
|
|
24964
25023
|
type: "string"
|
|
24965
25024
|
},
|
|
25025
|
+
event_description: {
|
|
25026
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
25027
|
+
type: "string"
|
|
25028
|
+
},
|
|
24966
25029
|
event_id: {
|
|
24967
25030
|
description: "ID of the event.",
|
|
24968
25031
|
format: "uuid",
|
|
@@ -25033,6 +25096,10 @@ var openapi = {
|
|
|
25033
25096
|
format: "uuid",
|
|
25034
25097
|
type: "string"
|
|
25035
25098
|
},
|
|
25099
|
+
event_description: {
|
|
25100
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
25101
|
+
type: "string"
|
|
25102
|
+
},
|
|
25036
25103
|
event_id: {
|
|
25037
25104
|
description: "ID of the event.",
|
|
25038
25105
|
format: "uuid",
|
|
@@ -25107,6 +25174,10 @@ var openapi = {
|
|
|
25107
25174
|
format: "uuid",
|
|
25108
25175
|
type: "string"
|
|
25109
25176
|
},
|
|
25177
|
+
event_description: {
|
|
25178
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
25179
|
+
type: "string"
|
|
25180
|
+
},
|
|
25110
25181
|
event_id: {
|
|
25111
25182
|
description: "ID of the event.",
|
|
25112
25183
|
format: "uuid",
|
|
@@ -25178,6 +25249,10 @@ var openapi = {
|
|
|
25178
25249
|
format: "uuid",
|
|
25179
25250
|
type: "string"
|
|
25180
25251
|
},
|
|
25252
|
+
event_description: {
|
|
25253
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
25254
|
+
type: "string"
|
|
25255
|
+
},
|
|
25181
25256
|
event_id: {
|
|
25182
25257
|
description: "ID of the event.",
|
|
25183
25258
|
format: "uuid",
|
|
@@ -25392,6 +25467,10 @@ var openapi = {
|
|
|
25392
25467
|
},
|
|
25393
25468
|
type: "array"
|
|
25394
25469
|
},
|
|
25470
|
+
event_description: {
|
|
25471
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
25472
|
+
type: "string"
|
|
25473
|
+
},
|
|
25395
25474
|
event_id: {
|
|
25396
25475
|
description: "ID of the event.",
|
|
25397
25476
|
format: "uuid",
|
|
@@ -25468,6 +25547,10 @@ var openapi = {
|
|
|
25468
25547
|
format: "uuid",
|
|
25469
25548
|
type: "string"
|
|
25470
25549
|
},
|
|
25550
|
+
event_description: {
|
|
25551
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
25552
|
+
type: "string"
|
|
25553
|
+
},
|
|
25471
25554
|
event_id: {
|
|
25472
25555
|
description: "ID of the event.",
|
|
25473
25556
|
format: "uuid",
|
|
@@ -25538,6 +25621,10 @@ var openapi = {
|
|
|
25538
25621
|
format: "uuid",
|
|
25539
25622
|
type: "string"
|
|
25540
25623
|
},
|
|
25624
|
+
event_description: {
|
|
25625
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
25626
|
+
type: "string"
|
|
25627
|
+
},
|
|
25541
25628
|
event_id: {
|
|
25542
25629
|
description: "ID of the event.",
|
|
25543
25630
|
format: "uuid",
|
|
@@ -25584,6 +25671,10 @@ var openapi = {
|
|
|
25584
25671
|
format: "date-time",
|
|
25585
25672
|
type: "string"
|
|
25586
25673
|
},
|
|
25674
|
+
event_description: {
|
|
25675
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
25676
|
+
type: "string"
|
|
25677
|
+
},
|
|
25587
25678
|
event_id: {
|
|
25588
25679
|
description: "ID of the event.",
|
|
25589
25680
|
format: "uuid",
|
|
@@ -25625,6 +25716,10 @@ var openapi = {
|
|
|
25625
25716
|
format: "date-time",
|
|
25626
25717
|
type: "string"
|
|
25627
25718
|
},
|
|
25719
|
+
event_description: {
|
|
25720
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
25721
|
+
type: "string"
|
|
25722
|
+
},
|
|
25628
25723
|
event_id: {
|
|
25629
25724
|
description: "ID of the event.",
|
|
25630
25725
|
format: "uuid",
|
|
@@ -25666,6 +25761,10 @@ var openapi = {
|
|
|
25666
25761
|
format: "date-time",
|
|
25667
25762
|
type: "string"
|
|
25668
25763
|
},
|
|
25764
|
+
event_description: {
|
|
25765
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
25766
|
+
type: "string"
|
|
25767
|
+
},
|
|
25669
25768
|
event_id: {
|
|
25670
25769
|
description: "ID of the event.",
|
|
25671
25770
|
format: "uuid",
|
|
@@ -25715,6 +25814,10 @@ var openapi = {
|
|
|
25715
25814
|
format: "date-time",
|
|
25716
25815
|
type: "string"
|
|
25717
25816
|
},
|
|
25817
|
+
event_description: {
|
|
25818
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
25819
|
+
type: "string"
|
|
25820
|
+
},
|
|
25718
25821
|
event_id: {
|
|
25719
25822
|
description: "ID of the event.",
|
|
25720
25823
|
format: "uuid",
|
|
@@ -25765,6 +25868,10 @@ var openapi = {
|
|
|
25765
25868
|
format: "date-time",
|
|
25766
25869
|
type: "string"
|
|
25767
25870
|
},
|
|
25871
|
+
event_description: {
|
|
25872
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
25873
|
+
type: "string"
|
|
25874
|
+
},
|
|
25768
25875
|
event_id: {
|
|
25769
25876
|
description: "ID of the event.",
|
|
25770
25877
|
format: "uuid",
|
|
@@ -25818,6 +25925,10 @@ var openapi = {
|
|
|
25818
25925
|
description: "The new end time for the access grant.",
|
|
25819
25926
|
type: "string"
|
|
25820
25927
|
},
|
|
25928
|
+
event_description: {
|
|
25929
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
25930
|
+
type: "string"
|
|
25931
|
+
},
|
|
25821
25932
|
event_id: {
|
|
25822
25933
|
description: "ID of the event.",
|
|
25823
25934
|
format: "uuid",
|
|
@@ -25870,6 +25981,10 @@ var openapi = {
|
|
|
25870
25981
|
description: "Description of why the access methods could not be created.",
|
|
25871
25982
|
type: "string"
|
|
25872
25983
|
},
|
|
25984
|
+
event_description: {
|
|
25985
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
25986
|
+
type: "string"
|
|
25987
|
+
},
|
|
25873
25988
|
event_id: {
|
|
25874
25989
|
description: "ID of the event.",
|
|
25875
25990
|
format: "uuid",
|
|
@@ -25936,6 +26051,10 @@ var openapi = {
|
|
|
25936
26051
|
format: "date-time",
|
|
25937
26052
|
type: "string"
|
|
25938
26053
|
},
|
|
26054
|
+
event_description: {
|
|
26055
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
26056
|
+
type: "string"
|
|
26057
|
+
},
|
|
25939
26058
|
event_id: {
|
|
25940
26059
|
description: "ID of the event.",
|
|
25941
26060
|
format: "uuid",
|
|
@@ -25992,6 +26111,10 @@ var openapi = {
|
|
|
25992
26111
|
format: "date-time",
|
|
25993
26112
|
type: "string"
|
|
25994
26113
|
},
|
|
26114
|
+
event_description: {
|
|
26115
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
26116
|
+
type: "string"
|
|
26117
|
+
},
|
|
25995
26118
|
event_id: {
|
|
25996
26119
|
description: "ID of the event.",
|
|
25997
26120
|
format: "uuid",
|
|
@@ -26044,6 +26167,10 @@ var openapi = {
|
|
|
26044
26167
|
format: "date-time",
|
|
26045
26168
|
type: "string"
|
|
26046
26169
|
},
|
|
26170
|
+
event_description: {
|
|
26171
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
26172
|
+
type: "string"
|
|
26173
|
+
},
|
|
26047
26174
|
event_id: {
|
|
26048
26175
|
description: "ID of the event.",
|
|
26049
26176
|
format: "uuid",
|
|
@@ -26099,6 +26226,10 @@ var openapi = {
|
|
|
26099
26226
|
format: "date-time",
|
|
26100
26227
|
type: "string"
|
|
26101
26228
|
},
|
|
26229
|
+
event_description: {
|
|
26230
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
26231
|
+
type: "string"
|
|
26232
|
+
},
|
|
26102
26233
|
event_id: {
|
|
26103
26234
|
description: "ID of the event.",
|
|
26104
26235
|
format: "uuid",
|
|
@@ -26155,6 +26286,10 @@ var openapi = {
|
|
|
26155
26286
|
format: "date-time",
|
|
26156
26287
|
type: "string"
|
|
26157
26288
|
},
|
|
26289
|
+
event_description: {
|
|
26290
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
26291
|
+
type: "string"
|
|
26292
|
+
},
|
|
26158
26293
|
event_id: {
|
|
26159
26294
|
description: "ID of the event.",
|
|
26160
26295
|
format: "uuid",
|
|
@@ -26211,6 +26346,10 @@ var openapi = {
|
|
|
26211
26346
|
format: "date-time",
|
|
26212
26347
|
type: "string"
|
|
26213
26348
|
},
|
|
26349
|
+
event_description: {
|
|
26350
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
26351
|
+
type: "string"
|
|
26352
|
+
},
|
|
26214
26353
|
event_id: {
|
|
26215
26354
|
description: "ID of the event.",
|
|
26216
26355
|
format: "uuid",
|
|
@@ -26258,6 +26397,10 @@ var openapi = {
|
|
|
26258
26397
|
format: "date-time",
|
|
26259
26398
|
type: "string"
|
|
26260
26399
|
},
|
|
26400
|
+
event_description: {
|
|
26401
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
26402
|
+
type: "string"
|
|
26403
|
+
},
|
|
26261
26404
|
event_id: {
|
|
26262
26405
|
description: "ID of the event.",
|
|
26263
26406
|
format: "uuid",
|
|
@@ -26304,6 +26447,10 @@ var openapi = {
|
|
|
26304
26447
|
format: "date-time",
|
|
26305
26448
|
type: "string"
|
|
26306
26449
|
},
|
|
26450
|
+
event_description: {
|
|
26451
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
26452
|
+
type: "string"
|
|
26453
|
+
},
|
|
26307
26454
|
event_id: {
|
|
26308
26455
|
description: "ID of the event.",
|
|
26309
26456
|
format: "uuid",
|
|
@@ -26446,6 +26593,10 @@ var openapi = {
|
|
|
26446
26593
|
format: "date-time",
|
|
26447
26594
|
type: "string"
|
|
26448
26595
|
},
|
|
26596
|
+
event_description: {
|
|
26597
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
26598
|
+
type: "string"
|
|
26599
|
+
},
|
|
26449
26600
|
event_id: {
|
|
26450
26601
|
description: "ID of the event.",
|
|
26451
26602
|
format: "uuid",
|
|
@@ -26501,6 +26652,10 @@ var openapi = {
|
|
|
26501
26652
|
format: "date-time",
|
|
26502
26653
|
type: "string"
|
|
26503
26654
|
},
|
|
26655
|
+
event_description: {
|
|
26656
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
26657
|
+
type: "string"
|
|
26658
|
+
},
|
|
26504
26659
|
event_id: {
|
|
26505
26660
|
description: "ID of the event.",
|
|
26506
26661
|
format: "uuid",
|
|
@@ -26553,6 +26708,10 @@ var openapi = {
|
|
|
26553
26708
|
format: "date-time",
|
|
26554
26709
|
type: "string"
|
|
26555
26710
|
},
|
|
26711
|
+
event_description: {
|
|
26712
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
26713
|
+
type: "string"
|
|
26714
|
+
},
|
|
26556
26715
|
event_id: {
|
|
26557
26716
|
description: "ID of the event.",
|
|
26558
26717
|
format: "uuid",
|
|
@@ -26605,6 +26764,10 @@ var openapi = {
|
|
|
26605
26764
|
format: "date-time",
|
|
26606
26765
|
type: "string"
|
|
26607
26766
|
},
|
|
26767
|
+
event_description: {
|
|
26768
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
26769
|
+
type: "string"
|
|
26770
|
+
},
|
|
26608
26771
|
event_id: {
|
|
26609
26772
|
description: "ID of the event.",
|
|
26610
26773
|
format: "uuid",
|
|
@@ -26657,6 +26820,10 @@ var openapi = {
|
|
|
26657
26820
|
format: "date-time",
|
|
26658
26821
|
type: "string"
|
|
26659
26822
|
},
|
|
26823
|
+
event_description: {
|
|
26824
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
26825
|
+
type: "string"
|
|
26826
|
+
},
|
|
26660
26827
|
event_id: {
|
|
26661
26828
|
description: "ID of the event.",
|
|
26662
26829
|
format: "uuid",
|
|
@@ -26712,6 +26879,10 @@ var openapi = {
|
|
|
26712
26879
|
format: "date-time",
|
|
26713
26880
|
type: "string"
|
|
26714
26881
|
},
|
|
26882
|
+
event_description: {
|
|
26883
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
26884
|
+
type: "string"
|
|
26885
|
+
},
|
|
26715
26886
|
event_id: {
|
|
26716
26887
|
description: "ID of the event.",
|
|
26717
26888
|
format: "uuid",
|
|
@@ -26764,6 +26935,10 @@ var openapi = {
|
|
|
26764
26935
|
format: "date-time",
|
|
26765
26936
|
type: "string"
|
|
26766
26937
|
},
|
|
26938
|
+
event_description: {
|
|
26939
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
26940
|
+
type: "string"
|
|
26941
|
+
},
|
|
26767
26942
|
event_id: {
|
|
26768
26943
|
description: "ID of the event.",
|
|
26769
26944
|
format: "uuid",
|
|
@@ -26816,6 +26991,10 @@ var openapi = {
|
|
|
26816
26991
|
format: "date-time",
|
|
26817
26992
|
type: "string"
|
|
26818
26993
|
},
|
|
26994
|
+
event_description: {
|
|
26995
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
26996
|
+
type: "string"
|
|
26997
|
+
},
|
|
26819
26998
|
event_id: {
|
|
26820
26999
|
description: "ID of the event.",
|
|
26821
27000
|
format: "uuid",
|
|
@@ -26868,6 +27047,10 @@ var openapi = {
|
|
|
26868
27047
|
format: "date-time",
|
|
26869
27048
|
type: "string"
|
|
26870
27049
|
},
|
|
27050
|
+
event_description: {
|
|
27051
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
27052
|
+
type: "string"
|
|
27053
|
+
},
|
|
26871
27054
|
event_id: {
|
|
26872
27055
|
description: "ID of the event.",
|
|
26873
27056
|
format: "uuid",
|
|
@@ -26920,6 +27103,10 @@ var openapi = {
|
|
|
26920
27103
|
format: "date-time",
|
|
26921
27104
|
type: "string"
|
|
26922
27105
|
},
|
|
27106
|
+
event_description: {
|
|
27107
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
27108
|
+
type: "string"
|
|
27109
|
+
},
|
|
26923
27110
|
event_id: {
|
|
26924
27111
|
description: "ID of the event.",
|
|
26925
27112
|
format: "uuid",
|
|
@@ -26975,6 +27162,10 @@ var openapi = {
|
|
|
26975
27162
|
format: "date-time",
|
|
26976
27163
|
type: "string"
|
|
26977
27164
|
},
|
|
27165
|
+
event_description: {
|
|
27166
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
27167
|
+
type: "string"
|
|
27168
|
+
},
|
|
26978
27169
|
event_id: {
|
|
26979
27170
|
description: "ID of the event.",
|
|
26980
27171
|
format: "uuid",
|
|
@@ -27027,6 +27218,10 @@ var openapi = {
|
|
|
27027
27218
|
format: "date-time",
|
|
27028
27219
|
type: "string"
|
|
27029
27220
|
},
|
|
27221
|
+
event_description: {
|
|
27222
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
27223
|
+
type: "string"
|
|
27224
|
+
},
|
|
27030
27225
|
event_id: {
|
|
27031
27226
|
description: "ID of the event.",
|
|
27032
27227
|
format: "uuid",
|
|
@@ -27069,6 +27264,10 @@ var openapi = {
|
|
|
27069
27264
|
format: "date-time",
|
|
27070
27265
|
type: "string"
|
|
27071
27266
|
},
|
|
27267
|
+
event_description: {
|
|
27268
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
27269
|
+
type: "string"
|
|
27270
|
+
},
|
|
27072
27271
|
event_id: {
|
|
27073
27272
|
description: "ID of the event.",
|
|
27074
27273
|
format: "uuid",
|
|
@@ -27126,6 +27325,10 @@ var openapi = {
|
|
|
27126
27325
|
description: "The customer key associated with this connected account, if any.",
|
|
27127
27326
|
type: "string"
|
|
27128
27327
|
},
|
|
27328
|
+
event_description: {
|
|
27329
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
27330
|
+
type: "string"
|
|
27331
|
+
},
|
|
27129
27332
|
event_id: {
|
|
27130
27333
|
description: "ID of the event.",
|
|
27131
27334
|
format: "uuid",
|
|
@@ -27182,6 +27385,10 @@ var openapi = {
|
|
|
27182
27385
|
format: "date-time",
|
|
27183
27386
|
type: "string"
|
|
27184
27387
|
},
|
|
27388
|
+
event_description: {
|
|
27389
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
27390
|
+
type: "string"
|
|
27391
|
+
},
|
|
27185
27392
|
event_id: {
|
|
27186
27393
|
description: "ID of the event.",
|
|
27187
27394
|
format: "uuid",
|
|
@@ -27240,6 +27447,10 @@ var openapi = {
|
|
|
27240
27447
|
format: "date-time",
|
|
27241
27448
|
type: "string"
|
|
27242
27449
|
},
|
|
27450
|
+
event_description: {
|
|
27451
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
27452
|
+
type: "string"
|
|
27453
|
+
},
|
|
27243
27454
|
event_id: {
|
|
27244
27455
|
description: "ID of the event.",
|
|
27245
27456
|
format: "uuid",
|
|
@@ -27341,6 +27552,10 @@ var openapi = {
|
|
|
27341
27552
|
format: "date-time",
|
|
27342
27553
|
type: "string"
|
|
27343
27554
|
},
|
|
27555
|
+
event_description: {
|
|
27556
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
27557
|
+
type: "string"
|
|
27558
|
+
},
|
|
27344
27559
|
event_id: {
|
|
27345
27560
|
description: "ID of the event.",
|
|
27346
27561
|
format: "uuid",
|
|
@@ -27394,6 +27609,10 @@ var openapi = {
|
|
|
27394
27609
|
format: "date-time",
|
|
27395
27610
|
type: "string"
|
|
27396
27611
|
},
|
|
27612
|
+
event_description: {
|
|
27613
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
27614
|
+
type: "string"
|
|
27615
|
+
},
|
|
27397
27616
|
event_id: {
|
|
27398
27617
|
description: "ID of the event.",
|
|
27399
27618
|
format: "uuid",
|
|
@@ -27453,6 +27672,10 @@ var openapi = {
|
|
|
27453
27672
|
description: "The customer key associated with this connected account, if any.",
|
|
27454
27673
|
type: "string"
|
|
27455
27674
|
},
|
|
27675
|
+
event_description: {
|
|
27676
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
27677
|
+
type: "string"
|
|
27678
|
+
},
|
|
27456
27679
|
event_id: {
|
|
27457
27680
|
description: "ID of the event.",
|
|
27458
27681
|
format: "uuid",
|
|
@@ -27504,6 +27727,10 @@ var openapi = {
|
|
|
27504
27727
|
format: "date-time",
|
|
27505
27728
|
type: "string"
|
|
27506
27729
|
},
|
|
27730
|
+
event_description: {
|
|
27731
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
27732
|
+
type: "string"
|
|
27733
|
+
},
|
|
27507
27734
|
event_id: {
|
|
27508
27735
|
description: "ID of the event.",
|
|
27509
27736
|
format: "uuid",
|
|
@@ -27605,6 +27832,10 @@ var openapi = {
|
|
|
27605
27832
|
format: "date-time",
|
|
27606
27833
|
type: "string"
|
|
27607
27834
|
},
|
|
27835
|
+
event_description: {
|
|
27836
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
27837
|
+
type: "string"
|
|
27838
|
+
},
|
|
27608
27839
|
event_id: {
|
|
27609
27840
|
description: "ID of the event.",
|
|
27610
27841
|
format: "uuid",
|
|
@@ -27665,6 +27896,10 @@ var openapi = {
|
|
|
27665
27896
|
format: "uuid",
|
|
27666
27897
|
type: "string"
|
|
27667
27898
|
},
|
|
27899
|
+
event_description: {
|
|
27900
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
27901
|
+
type: "string"
|
|
27902
|
+
},
|
|
27668
27903
|
event_id: {
|
|
27669
27904
|
description: "ID of the event.",
|
|
27670
27905
|
format: "uuid",
|
|
@@ -27726,6 +27961,10 @@ var openapi = {
|
|
|
27726
27961
|
format: "uuid",
|
|
27727
27962
|
type: "string"
|
|
27728
27963
|
},
|
|
27964
|
+
event_description: {
|
|
27965
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
27966
|
+
type: "string"
|
|
27967
|
+
},
|
|
27729
27968
|
event_id: {
|
|
27730
27969
|
description: "ID of the event.",
|
|
27731
27970
|
format: "uuid",
|
|
@@ -27787,6 +28026,10 @@ var openapi = {
|
|
|
27787
28026
|
format: "uuid",
|
|
27788
28027
|
type: "string"
|
|
27789
28028
|
},
|
|
28029
|
+
event_description: {
|
|
28030
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
28031
|
+
type: "string"
|
|
28032
|
+
},
|
|
27790
28033
|
event_id: {
|
|
27791
28034
|
description: "ID of the event.",
|
|
27792
28035
|
format: "uuid",
|
|
@@ -27848,6 +28091,10 @@ var openapi = {
|
|
|
27848
28091
|
format: "uuid",
|
|
27849
28092
|
type: "string"
|
|
27850
28093
|
},
|
|
28094
|
+
event_description: {
|
|
28095
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
28096
|
+
type: "string"
|
|
28097
|
+
},
|
|
27851
28098
|
event_id: {
|
|
27852
28099
|
description: "ID of the event.",
|
|
27853
28100
|
format: "uuid",
|
|
@@ -27909,6 +28156,10 @@ var openapi = {
|
|
|
27909
28156
|
format: "uuid",
|
|
27910
28157
|
type: "string"
|
|
27911
28158
|
},
|
|
28159
|
+
event_description: {
|
|
28160
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
28161
|
+
type: "string"
|
|
28162
|
+
},
|
|
27912
28163
|
event_id: {
|
|
27913
28164
|
description: "ID of the event.",
|
|
27914
28165
|
format: "uuid",
|
|
@@ -27970,6 +28221,10 @@ var openapi = {
|
|
|
27970
28221
|
format: "uuid",
|
|
27971
28222
|
type: "string"
|
|
27972
28223
|
},
|
|
28224
|
+
event_description: {
|
|
28225
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
28226
|
+
type: "string"
|
|
28227
|
+
},
|
|
27973
28228
|
event_id: {
|
|
27974
28229
|
description: "ID of the event.",
|
|
27975
28230
|
format: "uuid",
|
|
@@ -28031,6 +28286,10 @@ var openapi = {
|
|
|
28031
28286
|
format: "uuid",
|
|
28032
28287
|
type: "string"
|
|
28033
28288
|
},
|
|
28289
|
+
event_description: {
|
|
28290
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
28291
|
+
type: "string"
|
|
28292
|
+
},
|
|
28034
28293
|
event_id: {
|
|
28035
28294
|
description: "ID of the event.",
|
|
28036
28295
|
format: "uuid",
|
|
@@ -28094,6 +28353,10 @@ var openapi = {
|
|
|
28094
28353
|
format: "uuid",
|
|
28095
28354
|
type: "string"
|
|
28096
28355
|
},
|
|
28356
|
+
event_description: {
|
|
28357
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
28358
|
+
type: "string"
|
|
28359
|
+
},
|
|
28097
28360
|
event_id: {
|
|
28098
28361
|
description: "ID of the event.",
|
|
28099
28362
|
format: "uuid",
|
|
@@ -28157,6 +28420,10 @@ var openapi = {
|
|
|
28157
28420
|
description: "The customer key associated with this connect webview, if any.",
|
|
28158
28421
|
type: "string"
|
|
28159
28422
|
},
|
|
28423
|
+
event_description: {
|
|
28424
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
28425
|
+
type: "string"
|
|
28426
|
+
},
|
|
28160
28427
|
event_id: {
|
|
28161
28428
|
description: "ID of the event.",
|
|
28162
28429
|
format: "uuid",
|
|
@@ -28202,6 +28469,10 @@ var openapi = {
|
|
|
28202
28469
|
format: "date-time",
|
|
28203
28470
|
type: "string"
|
|
28204
28471
|
},
|
|
28472
|
+
event_description: {
|
|
28473
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
28474
|
+
type: "string"
|
|
28475
|
+
},
|
|
28205
28476
|
event_id: {
|
|
28206
28477
|
description: "ID of the event.",
|
|
28207
28478
|
format: "uuid",
|
|
@@ -28269,6 +28540,10 @@ var openapi = {
|
|
|
28269
28540
|
format: "uuid",
|
|
28270
28541
|
type: "string"
|
|
28271
28542
|
},
|
|
28543
|
+
event_description: {
|
|
28544
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
28545
|
+
type: "string"
|
|
28546
|
+
},
|
|
28272
28547
|
event_id: {
|
|
28273
28548
|
description: "ID of the event.",
|
|
28274
28549
|
format: "uuid",
|
|
@@ -28334,6 +28609,10 @@ var openapi = {
|
|
|
28334
28609
|
format: "uuid",
|
|
28335
28610
|
type: "string"
|
|
28336
28611
|
},
|
|
28612
|
+
event_description: {
|
|
28613
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
28614
|
+
type: "string"
|
|
28615
|
+
},
|
|
28337
28616
|
event_id: {
|
|
28338
28617
|
description: "ID of the event.",
|
|
28339
28618
|
format: "uuid",
|
|
@@ -28399,6 +28678,10 @@ var openapi = {
|
|
|
28399
28678
|
format: "uuid",
|
|
28400
28679
|
type: "string"
|
|
28401
28680
|
},
|
|
28681
|
+
event_description: {
|
|
28682
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
28683
|
+
type: "string"
|
|
28684
|
+
},
|
|
28402
28685
|
event_id: {
|
|
28403
28686
|
description: "ID of the event.",
|
|
28404
28687
|
format: "uuid",
|
|
@@ -28467,6 +28750,10 @@ var openapi = {
|
|
|
28467
28750
|
format: "uuid",
|
|
28468
28751
|
type: "string"
|
|
28469
28752
|
},
|
|
28753
|
+
event_description: {
|
|
28754
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
28755
|
+
type: "string"
|
|
28756
|
+
},
|
|
28470
28757
|
event_id: {
|
|
28471
28758
|
description: "ID of the event.",
|
|
28472
28759
|
format: "uuid",
|
|
@@ -28535,6 +28822,10 @@ var openapi = {
|
|
|
28535
28822
|
format: "uuid",
|
|
28536
28823
|
type: "string"
|
|
28537
28824
|
},
|
|
28825
|
+
event_description: {
|
|
28826
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
28827
|
+
type: "string"
|
|
28828
|
+
},
|
|
28538
28829
|
event_id: {
|
|
28539
28830
|
description: "ID of the event.",
|
|
28540
28831
|
format: "uuid",
|
|
@@ -28708,6 +28999,10 @@ var openapi = {
|
|
|
28708
28999
|
],
|
|
28709
29000
|
type: "string"
|
|
28710
29001
|
},
|
|
29002
|
+
event_description: {
|
|
29003
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
29004
|
+
type: "string"
|
|
29005
|
+
},
|
|
28711
29006
|
event_id: {
|
|
28712
29007
|
description: "ID of the event.",
|
|
28713
29008
|
format: "uuid",
|
|
@@ -28883,6 +29178,10 @@ var openapi = {
|
|
|
28883
29178
|
],
|
|
28884
29179
|
type: "string"
|
|
28885
29180
|
},
|
|
29181
|
+
event_description: {
|
|
29182
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
29183
|
+
type: "string"
|
|
29184
|
+
},
|
|
28886
29185
|
event_id: {
|
|
28887
29186
|
description: "ID of the event.",
|
|
28888
29187
|
format: "uuid",
|
|
@@ -28956,6 +29255,10 @@ var openapi = {
|
|
|
28956
29255
|
format: "uuid",
|
|
28957
29256
|
type: "string"
|
|
28958
29257
|
},
|
|
29258
|
+
event_description: {
|
|
29259
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
29260
|
+
type: "string"
|
|
29261
|
+
},
|
|
28959
29262
|
event_id: {
|
|
28960
29263
|
description: "ID of the event.",
|
|
28961
29264
|
format: "uuid",
|
|
@@ -29028,6 +29331,10 @@ var openapi = {
|
|
|
29028
29331
|
format: "uuid",
|
|
29029
29332
|
type: "string"
|
|
29030
29333
|
},
|
|
29334
|
+
event_description: {
|
|
29335
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
29336
|
+
type: "string"
|
|
29337
|
+
},
|
|
29031
29338
|
event_id: {
|
|
29032
29339
|
description: "ID of the event.",
|
|
29033
29340
|
format: "uuid",
|
|
@@ -29106,6 +29413,10 @@ var openapi = {
|
|
|
29106
29413
|
format: "uuid",
|
|
29107
29414
|
type: "string"
|
|
29108
29415
|
},
|
|
29416
|
+
event_description: {
|
|
29417
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
29418
|
+
type: "string"
|
|
29419
|
+
},
|
|
29109
29420
|
event_id: {
|
|
29110
29421
|
description: "ID of the event.",
|
|
29111
29422
|
format: "uuid",
|
|
@@ -29176,6 +29487,10 @@ var openapi = {
|
|
|
29176
29487
|
format: "uuid",
|
|
29177
29488
|
type: "string"
|
|
29178
29489
|
},
|
|
29490
|
+
event_description: {
|
|
29491
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
29492
|
+
type: "string"
|
|
29493
|
+
},
|
|
29179
29494
|
event_id: {
|
|
29180
29495
|
description: "ID of the event.",
|
|
29181
29496
|
format: "uuid",
|
|
@@ -29246,6 +29561,10 @@ var openapi = {
|
|
|
29246
29561
|
nullable: true,
|
|
29247
29562
|
type: "string"
|
|
29248
29563
|
},
|
|
29564
|
+
event_description: {
|
|
29565
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
29566
|
+
type: "string"
|
|
29567
|
+
},
|
|
29249
29568
|
event_id: {
|
|
29250
29569
|
description: "ID of the event.",
|
|
29251
29570
|
format: "uuid",
|
|
@@ -29311,6 +29630,10 @@ var openapi = {
|
|
|
29311
29630
|
format: "uuid",
|
|
29312
29631
|
type: "string"
|
|
29313
29632
|
},
|
|
29633
|
+
event_description: {
|
|
29634
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
29635
|
+
type: "string"
|
|
29636
|
+
},
|
|
29314
29637
|
event_id: {
|
|
29315
29638
|
description: "ID of the event.",
|
|
29316
29639
|
format: "uuid",
|
|
@@ -29379,6 +29702,10 @@ var openapi = {
|
|
|
29379
29702
|
format: "uuid",
|
|
29380
29703
|
type: "string"
|
|
29381
29704
|
},
|
|
29705
|
+
event_description: {
|
|
29706
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
29707
|
+
type: "string"
|
|
29708
|
+
},
|
|
29382
29709
|
event_id: {
|
|
29383
29710
|
description: "ID of the event.",
|
|
29384
29711
|
format: "uuid",
|
|
@@ -29447,6 +29774,10 @@ var openapi = {
|
|
|
29447
29774
|
format: "uuid",
|
|
29448
29775
|
type: "string"
|
|
29449
29776
|
},
|
|
29777
|
+
event_description: {
|
|
29778
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
29779
|
+
type: "string"
|
|
29780
|
+
},
|
|
29450
29781
|
event_id: {
|
|
29451
29782
|
description: "ID of the event.",
|
|
29452
29783
|
format: "uuid",
|
|
@@ -29515,6 +29846,10 @@ var openapi = {
|
|
|
29515
29846
|
format: "uuid",
|
|
29516
29847
|
type: "string"
|
|
29517
29848
|
},
|
|
29849
|
+
event_description: {
|
|
29850
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
29851
|
+
type: "string"
|
|
29852
|
+
},
|
|
29518
29853
|
event_id: {
|
|
29519
29854
|
description: "ID of the event.",
|
|
29520
29855
|
format: "uuid",
|
|
@@ -29679,6 +30014,10 @@ var openapi = {
|
|
|
29679
30014
|
},
|
|
29680
30015
|
type: "array"
|
|
29681
30016
|
},
|
|
30017
|
+
event_description: {
|
|
30018
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
30019
|
+
type: "string"
|
|
30020
|
+
},
|
|
29682
30021
|
event_id: {
|
|
29683
30022
|
description: "ID of the event.",
|
|
29684
30023
|
format: "uuid",
|
|
@@ -29751,6 +30090,10 @@ var openapi = {
|
|
|
29751
30090
|
format: "uuid",
|
|
29752
30091
|
type: "string"
|
|
29753
30092
|
},
|
|
30093
|
+
event_description: {
|
|
30094
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
30095
|
+
type: "string"
|
|
30096
|
+
},
|
|
29754
30097
|
event_id: {
|
|
29755
30098
|
description: "ID of the event.",
|
|
29756
30099
|
format: "uuid",
|
|
@@ -29915,6 +30258,10 @@ var openapi = {
|
|
|
29915
30258
|
},
|
|
29916
30259
|
type: "array"
|
|
29917
30260
|
},
|
|
30261
|
+
event_description: {
|
|
30262
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
30263
|
+
type: "string"
|
|
30264
|
+
},
|
|
29918
30265
|
event_id: {
|
|
29919
30266
|
description: "ID of the event.",
|
|
29920
30267
|
format: "uuid",
|
|
@@ -29987,6 +30334,10 @@ var openapi = {
|
|
|
29987
30334
|
format: "uuid",
|
|
29988
30335
|
type: "string"
|
|
29989
30336
|
},
|
|
30337
|
+
event_description: {
|
|
30338
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
30339
|
+
type: "string"
|
|
30340
|
+
},
|
|
29990
30341
|
event_id: {
|
|
29991
30342
|
description: "ID of the event.",
|
|
29992
30343
|
format: "uuid",
|
|
@@ -30055,6 +30406,10 @@ var openapi = {
|
|
|
30055
30406
|
format: "uuid",
|
|
30056
30407
|
type: "string"
|
|
30057
30408
|
},
|
|
30409
|
+
event_description: {
|
|
30410
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
30411
|
+
type: "string"
|
|
30412
|
+
},
|
|
30058
30413
|
event_id: {
|
|
30059
30414
|
description: "ID of the event.",
|
|
30060
30415
|
format: "uuid",
|
|
@@ -30219,6 +30574,10 @@ var openapi = {
|
|
|
30219
30574
|
},
|
|
30220
30575
|
type: "array"
|
|
30221
30576
|
},
|
|
30577
|
+
event_description: {
|
|
30578
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
30579
|
+
type: "string"
|
|
30580
|
+
},
|
|
30222
30581
|
event_id: {
|
|
30223
30582
|
description: "ID of the event.",
|
|
30224
30583
|
format: "uuid",
|
|
@@ -30291,6 +30650,10 @@ var openapi = {
|
|
|
30291
30650
|
format: "uuid",
|
|
30292
30651
|
type: "string"
|
|
30293
30652
|
},
|
|
30653
|
+
event_description: {
|
|
30654
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
30655
|
+
type: "string"
|
|
30656
|
+
},
|
|
30294
30657
|
event_id: {
|
|
30295
30658
|
description: "ID of the event.",
|
|
30296
30659
|
format: "uuid",
|
|
@@ -30406,6 +30769,10 @@ var openapi = {
|
|
|
30406
30769
|
format: "uuid",
|
|
30407
30770
|
type: "string"
|
|
30408
30771
|
},
|
|
30772
|
+
event_description: {
|
|
30773
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
30774
|
+
type: "string"
|
|
30775
|
+
},
|
|
30409
30776
|
event_id: {
|
|
30410
30777
|
description: "ID of the event.",
|
|
30411
30778
|
format: "uuid",
|
|
@@ -30518,6 +30885,10 @@ var openapi = {
|
|
|
30518
30885
|
format: "uuid",
|
|
30519
30886
|
type: "string"
|
|
30520
30887
|
},
|
|
30888
|
+
event_description: {
|
|
30889
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
30890
|
+
type: "string"
|
|
30891
|
+
},
|
|
30521
30892
|
event_id: {
|
|
30522
30893
|
description: "ID of the event.",
|
|
30523
30894
|
format: "uuid",
|
|
@@ -30621,6 +30992,10 @@ var openapi = {
|
|
|
30621
30992
|
format: "uuid",
|
|
30622
30993
|
type: "string"
|
|
30623
30994
|
},
|
|
30995
|
+
event_description: {
|
|
30996
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
30997
|
+
type: "string"
|
|
30998
|
+
},
|
|
30624
30999
|
event_id: {
|
|
30625
31000
|
description: "ID of the event.",
|
|
30626
31001
|
format: "uuid",
|
|
@@ -30694,6 +31069,10 @@ var openapi = {
|
|
|
30694
31069
|
format: "uuid",
|
|
30695
31070
|
type: "string"
|
|
30696
31071
|
},
|
|
31072
|
+
event_description: {
|
|
31073
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
31074
|
+
type: "string"
|
|
31075
|
+
},
|
|
30697
31076
|
event_id: {
|
|
30698
31077
|
description: "ID of the event.",
|
|
30699
31078
|
format: "uuid",
|
|
@@ -30785,6 +31164,10 @@ var openapi = {
|
|
|
30785
31164
|
format: "uuid",
|
|
30786
31165
|
type: "string"
|
|
30787
31166
|
},
|
|
31167
|
+
event_description: {
|
|
31168
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
31169
|
+
type: "string"
|
|
31170
|
+
},
|
|
30788
31171
|
event_id: {
|
|
30789
31172
|
description: "ID of the event.",
|
|
30790
31173
|
format: "uuid",
|
|
@@ -30879,6 +31262,10 @@ var openapi = {
|
|
|
30879
31262
|
format: "uuid",
|
|
30880
31263
|
type: "string"
|
|
30881
31264
|
},
|
|
31265
|
+
event_description: {
|
|
31266
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
31267
|
+
type: "string"
|
|
31268
|
+
},
|
|
30882
31269
|
event_id: {
|
|
30883
31270
|
description: "ID of the event.",
|
|
30884
31271
|
format: "uuid",
|
|
@@ -30987,6 +31374,10 @@ var openapi = {
|
|
|
30987
31374
|
format: "uuid",
|
|
30988
31375
|
type: "string"
|
|
30989
31376
|
},
|
|
31377
|
+
event_description: {
|
|
31378
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
31379
|
+
type: "string"
|
|
31380
|
+
},
|
|
30990
31381
|
event_id: {
|
|
30991
31382
|
description: "ID of the event.",
|
|
30992
31383
|
format: "uuid",
|
|
@@ -31105,6 +31496,10 @@ var openapi = {
|
|
|
31105
31496
|
format: "uuid",
|
|
31106
31497
|
type: "string"
|
|
31107
31498
|
},
|
|
31499
|
+
event_description: {
|
|
31500
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
31501
|
+
type: "string"
|
|
31502
|
+
},
|
|
31108
31503
|
event_id: {
|
|
31109
31504
|
description: "ID of the event.",
|
|
31110
31505
|
format: "uuid",
|
|
@@ -31185,6 +31580,10 @@ var openapi = {
|
|
|
31185
31580
|
format: "uuid",
|
|
31186
31581
|
type: "string"
|
|
31187
31582
|
},
|
|
31583
|
+
event_description: {
|
|
31584
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
31585
|
+
type: "string"
|
|
31586
|
+
},
|
|
31188
31587
|
event_id: {
|
|
31189
31588
|
description: "ID of the event.",
|
|
31190
31589
|
format: "uuid",
|
|
@@ -31269,6 +31668,10 @@ var openapi = {
|
|
|
31269
31668
|
description: "The new name of the affected device.",
|
|
31270
31669
|
type: "string"
|
|
31271
31670
|
},
|
|
31671
|
+
event_description: {
|
|
31672
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
31673
|
+
type: "string"
|
|
31674
|
+
},
|
|
31272
31675
|
event_id: {
|
|
31273
31676
|
description: "ID of the event.",
|
|
31274
31677
|
format: "uuid",
|
|
@@ -31340,6 +31743,10 @@ var openapi = {
|
|
|
31340
31743
|
format: "uuid",
|
|
31341
31744
|
type: "string"
|
|
31342
31745
|
},
|
|
31746
|
+
event_description: {
|
|
31747
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
31748
|
+
type: "string"
|
|
31749
|
+
},
|
|
31343
31750
|
event_id: {
|
|
31344
31751
|
description: "ID of the event.",
|
|
31345
31752
|
format: "uuid",
|
|
@@ -31421,6 +31828,10 @@ var openapi = {
|
|
|
31421
31828
|
format: "uuid",
|
|
31422
31829
|
type: "string"
|
|
31423
31830
|
},
|
|
31831
|
+
event_description: {
|
|
31832
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
31833
|
+
type: "string"
|
|
31834
|
+
},
|
|
31424
31835
|
event_id: {
|
|
31425
31836
|
description: "ID of the event.",
|
|
31426
31837
|
format: "uuid",
|
|
@@ -31473,6 +31884,10 @@ var openapi = {
|
|
|
31473
31884
|
format: "uuid",
|
|
31474
31885
|
type: "string"
|
|
31475
31886
|
},
|
|
31887
|
+
event_description: {
|
|
31888
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
31889
|
+
type: "string"
|
|
31890
|
+
},
|
|
31476
31891
|
event_id: {
|
|
31477
31892
|
description: "ID of the event.",
|
|
31478
31893
|
format: "uuid",
|
|
@@ -31524,6 +31939,10 @@ var openapi = {
|
|
|
31524
31939
|
format: "uuid",
|
|
31525
31940
|
type: "string"
|
|
31526
31941
|
},
|
|
31942
|
+
event_description: {
|
|
31943
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
31944
|
+
type: "string"
|
|
31945
|
+
},
|
|
31527
31946
|
event_id: {
|
|
31528
31947
|
description: "ID of the event.",
|
|
31529
31948
|
format: "uuid",
|
|
@@ -31570,6 +31989,10 @@ var openapi = {
|
|
|
31570
31989
|
items: { format: "uuid", type: "string" },
|
|
31571
31990
|
type: "array"
|
|
31572
31991
|
},
|
|
31992
|
+
event_description: {
|
|
31993
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
31994
|
+
type: "string"
|
|
31995
|
+
},
|
|
31573
31996
|
event_id: {
|
|
31574
31997
|
description: "ID of the event.",
|
|
31575
31998
|
format: "uuid",
|
|
@@ -31631,6 +32054,10 @@ var openapi = {
|
|
|
31631
32054
|
items: { format: "uuid", type: "string" },
|
|
31632
32055
|
type: "array"
|
|
31633
32056
|
},
|
|
32057
|
+
event_description: {
|
|
32058
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
32059
|
+
type: "string"
|
|
32060
|
+
},
|
|
31634
32061
|
event_id: {
|
|
31635
32062
|
description: "ID of the event.",
|
|
31636
32063
|
format: "uuid",
|
|
@@ -31692,6 +32119,10 @@ var openapi = {
|
|
|
31692
32119
|
items: { format: "uuid", type: "string" },
|
|
31693
32120
|
type: "array"
|
|
31694
32121
|
},
|
|
32122
|
+
event_description: {
|
|
32123
|
+
description: "Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.",
|
|
32124
|
+
type: "string"
|
|
32125
|
+
},
|
|
31695
32126
|
event_id: {
|
|
31696
32127
|
description: "ID of the event.",
|
|
31697
32128
|
format: "uuid",
|
|
@@ -34510,7 +34941,7 @@ var openapi = {
|
|
|
34510
34941
|
type: "object"
|
|
34511
34942
|
},
|
|
34512
34943
|
{
|
|
34513
|
-
description: "The
|
|
34944
|
+
description: "The device's time zone is unknown and this code's time frame crosses a daylight-saving transition in at least one plausible time zone. A 1-hour safety buffer has been applied to the side of the time frame affected by the transition (`ends_at` for spring-forward, `starts_at` for fall-back) so the code stays active through the shift \u2014 the code may be usable up to 1 hour beyond your requested window. Set the device's time zone via `/devices/report_provider_metadata` to clear the buffer and guarantee exact handling.",
|
|
34514
34945
|
properties: {
|
|
34515
34946
|
created_at: {
|
|
34516
34947
|
description: "Date and time at which Seam created the warning.",
|
|
@@ -34523,7 +34954,7 @@ var openapi = {
|
|
|
34523
34954
|
},
|
|
34524
34955
|
warning_code: {
|
|
34525
34956
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
34526
|
-
enum: ["
|
|
34957
|
+
enum: ["time_frame_adjusted_for_unknown_time_zone"],
|
|
34527
34958
|
type: "string"
|
|
34528
34959
|
}
|
|
34529
34960
|
},
|