@seamapi/types 1.947.0 → 1.949.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.
Files changed (40) hide show
  1. package/dist/connect.cjs +432 -65
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +1177 -167
  4. package/dist/index.cjs +432 -65
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +0 -71
  7. package/lib/seam/connect/models/access-codes/managed-access-code.js +0 -14
  8. package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
  9. package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +0 -26
  10. package/lib/seam/connect/models/events/access-codes.d.ts +126 -0
  11. package/lib/seam/connect/models/events/access-grants.d.ts +42 -0
  12. package/lib/seam/connect/models/events/access-methods.d.ts +36 -0
  13. package/lib/seam/connect/models/events/acs/access-groups.d.ts +6 -0
  14. package/lib/seam/connect/models/events/acs/common.d.ts +3 -0
  15. package/lib/seam/connect/models/events/acs/credentials.d.ts +24 -0
  16. package/lib/seam/connect/models/events/acs/encoders.d.ts +12 -0
  17. package/lib/seam/connect/models/events/acs/entrances.d.ts +12 -0
  18. package/lib/seam/connect/models/events/acs/index.d.ts +42 -0
  19. package/lib/seam/connect/models/events/acs/systems.d.ts +18 -0
  20. package/lib/seam/connect/models/events/acs/users.d.ts +12 -0
  21. package/lib/seam/connect/models/events/action-attempts.d.ts +48 -0
  22. package/lib/seam/connect/models/events/client-sessions.d.ts +6 -0
  23. package/lib/seam/connect/models/events/common.d.ts +3 -0
  24. package/lib/seam/connect/models/events/common.js +4 -0
  25. package/lib/seam/connect/models/events/common.js.map +1 -1
  26. package/lib/seam/connect/models/events/connect-webviews.d.ts +12 -0
  27. package/lib/seam/connect/models/events/connected-accounts.d.ts +48 -0
  28. package/lib/seam/connect/models/events/devices.d.ts +210 -0
  29. package/lib/seam/connect/models/events/enrollment-automations.d.ts +6 -0
  30. package/lib/seam/connect/models/events/phones.d.ts +6 -0
  31. package/lib/seam/connect/models/events/seam-event.d.ts +321 -0
  32. package/lib/seam/connect/models/events/spaces.d.ts +18 -0
  33. package/lib/seam/connect/openapi.js +428 -54
  34. package/lib/seam/connect/openapi.js.map +1 -1
  35. package/lib/seam/connect/route-types.d.ts +856 -99
  36. package/package.json +1 -1
  37. package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +0 -15
  38. package/src/lib/seam/connect/models/events/common.ts +6 -0
  39. package/src/lib/seam/connect/openapi.ts +535 -64
  40. package/src/lib/seam/connect/route-types.ts +856 -110
package/dist/connect.cjs CHANGED
@@ -2614,14 +2614,6 @@ var duplicate_code_on_device = common_access_code_error.extend({
2614
2614
  ---
2615
2615
  Duplicate access code detected on device.
2616
2616
  `);
2617
- var duplicate_code_attempt_prevented = common_access_code_error.extend({
2618
- error_code: zod.z.literal("duplicate_code_attempt_prevented").describe(error_code_description3)
2619
- }).describe(`
2620
- ---
2621
- resource_type: access_code
2622
- ---
2623
- An attempt to modify this access code was prevented.
2624
- `);
2625
2617
  var no_space_for_access_code_on_device = common_access_code_error.extend({
2626
2618
  error_code: zod.z.literal("no_space_for_access_code_on_device").describe(error_code_description3)
2627
2619
  }).describe(`
@@ -2651,7 +2643,6 @@ var access_code_error = zod.z.discriminatedUnion("error_code", [
2651
2643
  failed_to_set_on_device,
2652
2644
  failed_to_remove_from_device,
2653
2645
  duplicate_code_on_device,
2654
- duplicate_code_attempt_prevented,
2655
2646
  no_space_for_access_code_on_device,
2656
2647
  code_modified_external_to_seam_error,
2657
2648
  access_code_inactive_error,
@@ -2665,7 +2656,6 @@ zod.z.object({
2665
2656
  failed_to_remove_from_device: failed_to_remove_from_device.optional().nullable(),
2666
2657
  no_space_for_access_code_on_device: no_space_for_access_code_on_device.optional().nullable(),
2667
2658
  duplicate_code_on_device: duplicate_code_on_device.optional().nullable(),
2668
- duplicate_code_attempt_prevented: duplicate_code_attempt_prevented.optional().nullable(),
2669
2659
  insufficient_permissions: insufficient_permissions2.optional().nullable(),
2670
2660
  code_modified_external_to_seam_error: code_modified_external_to_seam_error.optional().nullable(),
2671
2661
  access_code_inactive: access_code_inactive_error.optional().nullable()
@@ -5581,7 +5571,10 @@ var common_event = zod.z.object({
5581
5571
  event_id: zod.z.string().uuid().describe("ID of the event."),
5582
5572
  workspace_id: zod.z.string().uuid().describe("ID of the workspace associated with the event."),
5583
5573
  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.")
5574
+ occurred_at: zod.z.string().datetime().describe("Date and time at which the event occurred."),
5575
+ event_description: zod.z.string().optional().describe(
5576
+ "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."
5577
+ )
5585
5578
  });
5586
5579
  var error_code_description8 = "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.";
5587
5580
  var warning_code_description10 = "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.";
@@ -7758,33 +7751,6 @@ var openapi = {
7758
7751
  type: "object",
7759
7752
  "x-resource-type": "access_code"
7760
7753
  },
7761
- {
7762
- description: "An attempt to modify this access code was prevented.",
7763
- properties: {
7764
- created_at: {
7765
- description: "Date and time at which Seam created the error.",
7766
- format: "date-time",
7767
- type: "string"
7768
- },
7769
- error_code: {
7770
- description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
7771
- enum: ["duplicate_code_attempt_prevented"],
7772
- type: "string"
7773
- },
7774
- is_access_code_error: {
7775
- description: "Indicates that this is an access code error.",
7776
- enum: [true],
7777
- type: "boolean"
7778
- },
7779
- message: {
7780
- description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
7781
- type: "string"
7782
- }
7783
- },
7784
- required: ["message", "is_access_code_error", "error_code"],
7785
- type: "object",
7786
- "x-resource-type": "access_code"
7787
- },
7788
7754
  {
7789
7755
  description: "No space for access code on device.",
7790
7756
  properties: {
@@ -23210,6 +23176,10 @@ var openapi = {
23210
23176
  format: "uuid",
23211
23177
  type: "string"
23212
23178
  },
23179
+ event_description: {
23180
+ 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.",
23181
+ type: "string"
23182
+ },
23213
23183
  event_id: {
23214
23184
  description: "ID of the event.",
23215
23185
  format: "uuid",
@@ -23306,6 +23276,10 @@ var openapi = {
23306
23276
  format: "uuid",
23307
23277
  type: "string"
23308
23278
  },
23279
+ event_description: {
23280
+ 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.",
23281
+ type: "string"
23282
+ },
23309
23283
  event_id: {
23310
23284
  description: "ID of the event.",
23311
23285
  format: "uuid",
@@ -23377,6 +23351,10 @@ var openapi = {
23377
23351
  format: "uuid",
23378
23352
  type: "string"
23379
23353
  },
23354
+ event_description: {
23355
+ 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.",
23356
+ type: "string"
23357
+ },
23380
23358
  event_id: {
23381
23359
  description: "ID of the event.",
23382
23360
  format: "uuid",
@@ -23478,6 +23456,10 @@ var openapi = {
23478
23456
  format: "uuid",
23479
23457
  type: "string"
23480
23458
  },
23459
+ event_description: {
23460
+ 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.",
23461
+ type: "string"
23462
+ },
23481
23463
  event_id: {
23482
23464
  description: "ID of the event.",
23483
23465
  format: "uuid",
@@ -23579,6 +23561,10 @@ var openapi = {
23579
23561
  format: "uuid",
23580
23562
  type: "string"
23581
23563
  },
23564
+ event_description: {
23565
+ 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.",
23566
+ type: "string"
23567
+ },
23582
23568
  event_id: {
23583
23569
  description: "ID of the event.",
23584
23570
  format: "uuid",
@@ -23686,6 +23672,10 @@ var openapi = {
23686
23672
  format: "uuid",
23687
23673
  type: "string"
23688
23674
  },
23675
+ event_description: {
23676
+ 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.",
23677
+ type: "string"
23678
+ },
23689
23679
  event_id: {
23690
23680
  description: "ID of the event.",
23691
23681
  format: "uuid",
@@ -23794,6 +23784,10 @@ var openapi = {
23794
23784
  format: "uuid",
23795
23785
  type: "string"
23796
23786
  },
23787
+ event_description: {
23788
+ 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.",
23789
+ type: "string"
23790
+ },
23797
23791
  event_id: {
23798
23792
  description: "ID of the event.",
23799
23793
  format: "uuid",
@@ -23869,6 +23863,10 @@ var openapi = {
23869
23863
  format: "uuid",
23870
23864
  type: "string"
23871
23865
  },
23866
+ event_description: {
23867
+ 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.",
23868
+ type: "string"
23869
+ },
23872
23870
  event_id: {
23873
23871
  description: "ID of the event.",
23874
23872
  format: "uuid",
@@ -23940,6 +23938,10 @@ var openapi = {
23940
23938
  format: "uuid",
23941
23939
  type: "string"
23942
23940
  },
23941
+ event_description: {
23942
+ 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.",
23943
+ type: "string"
23944
+ },
23943
23945
  event_id: {
23944
23946
  description: "ID of the event.",
23945
23947
  format: "uuid",
@@ -24154,6 +24156,10 @@ var openapi = {
24154
24156
  },
24155
24157
  type: "array"
24156
24158
  },
24159
+ event_description: {
24160
+ 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.",
24161
+ type: "string"
24162
+ },
24157
24163
  event_id: {
24158
24164
  description: "ID of the event.",
24159
24165
  format: "uuid",
@@ -24374,6 +24380,10 @@ var openapi = {
24374
24380
  },
24375
24381
  type: "array"
24376
24382
  },
24383
+ event_description: {
24384
+ 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.",
24385
+ type: "string"
24386
+ },
24377
24387
  event_id: {
24378
24388
  description: "ID of the event.",
24379
24389
  format: "uuid",
@@ -24455,6 +24465,10 @@ var openapi = {
24455
24465
  format: "uuid",
24456
24466
  type: "string"
24457
24467
  },
24468
+ event_description: {
24469
+ 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.",
24470
+ type: "string"
24471
+ },
24458
24472
  event_id: {
24459
24473
  description: "ID of the event.",
24460
24474
  format: "uuid",
@@ -24667,6 +24681,10 @@ var openapi = {
24667
24681
  },
24668
24682
  type: "array"
24669
24683
  },
24684
+ event_description: {
24685
+ 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.",
24686
+ type: "string"
24687
+ },
24670
24688
  event_id: {
24671
24689
  description: "ID of the event.",
24672
24690
  format: "uuid",
@@ -24887,6 +24905,10 @@ var openapi = {
24887
24905
  },
24888
24906
  type: "array"
24889
24907
  },
24908
+ event_description: {
24909
+ 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.",
24910
+ type: "string"
24911
+ },
24890
24912
  event_id: {
24891
24913
  description: "ID of the event.",
24892
24914
  format: "uuid",
@@ -24963,6 +24985,10 @@ var openapi = {
24963
24985
  format: "uuid",
24964
24986
  type: "string"
24965
24987
  },
24988
+ event_description: {
24989
+ 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.",
24990
+ type: "string"
24991
+ },
24966
24992
  event_id: {
24967
24993
  description: "ID of the event.",
24968
24994
  format: "uuid",
@@ -25033,6 +25059,10 @@ var openapi = {
25033
25059
  format: "uuid",
25034
25060
  type: "string"
25035
25061
  },
25062
+ event_description: {
25063
+ 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.",
25064
+ type: "string"
25065
+ },
25036
25066
  event_id: {
25037
25067
  description: "ID of the event.",
25038
25068
  format: "uuid",
@@ -25107,6 +25137,10 @@ var openapi = {
25107
25137
  format: "uuid",
25108
25138
  type: "string"
25109
25139
  },
25140
+ event_description: {
25141
+ 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.",
25142
+ type: "string"
25143
+ },
25110
25144
  event_id: {
25111
25145
  description: "ID of the event.",
25112
25146
  format: "uuid",
@@ -25178,6 +25212,10 @@ var openapi = {
25178
25212
  format: "uuid",
25179
25213
  type: "string"
25180
25214
  },
25215
+ event_description: {
25216
+ 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.",
25217
+ type: "string"
25218
+ },
25181
25219
  event_id: {
25182
25220
  description: "ID of the event.",
25183
25221
  format: "uuid",
@@ -25392,6 +25430,10 @@ var openapi = {
25392
25430
  },
25393
25431
  type: "array"
25394
25432
  },
25433
+ event_description: {
25434
+ 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.",
25435
+ type: "string"
25436
+ },
25395
25437
  event_id: {
25396
25438
  description: "ID of the event.",
25397
25439
  format: "uuid",
@@ -25468,6 +25510,10 @@ var openapi = {
25468
25510
  format: "uuid",
25469
25511
  type: "string"
25470
25512
  },
25513
+ event_description: {
25514
+ 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.",
25515
+ type: "string"
25516
+ },
25471
25517
  event_id: {
25472
25518
  description: "ID of the event.",
25473
25519
  format: "uuid",
@@ -25538,6 +25584,10 @@ var openapi = {
25538
25584
  format: "uuid",
25539
25585
  type: "string"
25540
25586
  },
25587
+ event_description: {
25588
+ 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.",
25589
+ type: "string"
25590
+ },
25541
25591
  event_id: {
25542
25592
  description: "ID of the event.",
25543
25593
  format: "uuid",
@@ -25584,6 +25634,10 @@ var openapi = {
25584
25634
  format: "date-time",
25585
25635
  type: "string"
25586
25636
  },
25637
+ event_description: {
25638
+ 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.",
25639
+ type: "string"
25640
+ },
25587
25641
  event_id: {
25588
25642
  description: "ID of the event.",
25589
25643
  format: "uuid",
@@ -25625,6 +25679,10 @@ var openapi = {
25625
25679
  format: "date-time",
25626
25680
  type: "string"
25627
25681
  },
25682
+ event_description: {
25683
+ 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.",
25684
+ type: "string"
25685
+ },
25628
25686
  event_id: {
25629
25687
  description: "ID of the event.",
25630
25688
  format: "uuid",
@@ -25666,6 +25724,10 @@ var openapi = {
25666
25724
  format: "date-time",
25667
25725
  type: "string"
25668
25726
  },
25727
+ event_description: {
25728
+ 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.",
25729
+ type: "string"
25730
+ },
25669
25731
  event_id: {
25670
25732
  description: "ID of the event.",
25671
25733
  format: "uuid",
@@ -25715,6 +25777,10 @@ var openapi = {
25715
25777
  format: "date-time",
25716
25778
  type: "string"
25717
25779
  },
25780
+ event_description: {
25781
+ 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.",
25782
+ type: "string"
25783
+ },
25718
25784
  event_id: {
25719
25785
  description: "ID of the event.",
25720
25786
  format: "uuid",
@@ -25765,6 +25831,10 @@ var openapi = {
25765
25831
  format: "date-time",
25766
25832
  type: "string"
25767
25833
  },
25834
+ event_description: {
25835
+ 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.",
25836
+ type: "string"
25837
+ },
25768
25838
  event_id: {
25769
25839
  description: "ID of the event.",
25770
25840
  format: "uuid",
@@ -25818,6 +25888,10 @@ var openapi = {
25818
25888
  description: "The new end time for the access grant.",
25819
25889
  type: "string"
25820
25890
  },
25891
+ event_description: {
25892
+ 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.",
25893
+ type: "string"
25894
+ },
25821
25895
  event_id: {
25822
25896
  description: "ID of the event.",
25823
25897
  format: "uuid",
@@ -25870,6 +25944,10 @@ var openapi = {
25870
25944
  description: "Description of why the access methods could not be created.",
25871
25945
  type: "string"
25872
25946
  },
25947
+ event_description: {
25948
+ 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.",
25949
+ type: "string"
25950
+ },
25873
25951
  event_id: {
25874
25952
  description: "ID of the event.",
25875
25953
  format: "uuid",
@@ -25936,6 +26014,10 @@ var openapi = {
25936
26014
  format: "date-time",
25937
26015
  type: "string"
25938
26016
  },
26017
+ event_description: {
26018
+ 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.",
26019
+ type: "string"
26020
+ },
25939
26021
  event_id: {
25940
26022
  description: "ID of the event.",
25941
26023
  format: "uuid",
@@ -25992,6 +26074,10 @@ var openapi = {
25992
26074
  format: "date-time",
25993
26075
  type: "string"
25994
26076
  },
26077
+ event_description: {
26078
+ 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.",
26079
+ type: "string"
26080
+ },
25995
26081
  event_id: {
25996
26082
  description: "ID of the event.",
25997
26083
  format: "uuid",
@@ -26044,6 +26130,10 @@ var openapi = {
26044
26130
  format: "date-time",
26045
26131
  type: "string"
26046
26132
  },
26133
+ event_description: {
26134
+ 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.",
26135
+ type: "string"
26136
+ },
26047
26137
  event_id: {
26048
26138
  description: "ID of the event.",
26049
26139
  format: "uuid",
@@ -26099,6 +26189,10 @@ var openapi = {
26099
26189
  format: "date-time",
26100
26190
  type: "string"
26101
26191
  },
26192
+ event_description: {
26193
+ 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.",
26194
+ type: "string"
26195
+ },
26102
26196
  event_id: {
26103
26197
  description: "ID of the event.",
26104
26198
  format: "uuid",
@@ -26155,6 +26249,10 @@ var openapi = {
26155
26249
  format: "date-time",
26156
26250
  type: "string"
26157
26251
  },
26252
+ event_description: {
26253
+ 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.",
26254
+ type: "string"
26255
+ },
26158
26256
  event_id: {
26159
26257
  description: "ID of the event.",
26160
26258
  format: "uuid",
@@ -26211,6 +26309,10 @@ var openapi = {
26211
26309
  format: "date-time",
26212
26310
  type: "string"
26213
26311
  },
26312
+ event_description: {
26313
+ 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.",
26314
+ type: "string"
26315
+ },
26214
26316
  event_id: {
26215
26317
  description: "ID of the event.",
26216
26318
  format: "uuid",
@@ -26258,6 +26360,10 @@ var openapi = {
26258
26360
  format: "date-time",
26259
26361
  type: "string"
26260
26362
  },
26363
+ event_description: {
26364
+ 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.",
26365
+ type: "string"
26366
+ },
26261
26367
  event_id: {
26262
26368
  description: "ID of the event.",
26263
26369
  format: "uuid",
@@ -26304,6 +26410,10 @@ var openapi = {
26304
26410
  format: "date-time",
26305
26411
  type: "string"
26306
26412
  },
26413
+ event_description: {
26414
+ 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.",
26415
+ type: "string"
26416
+ },
26307
26417
  event_id: {
26308
26418
  description: "ID of the event.",
26309
26419
  format: "uuid",
@@ -26446,6 +26556,10 @@ var openapi = {
26446
26556
  format: "date-time",
26447
26557
  type: "string"
26448
26558
  },
26559
+ event_description: {
26560
+ 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.",
26561
+ type: "string"
26562
+ },
26449
26563
  event_id: {
26450
26564
  description: "ID of the event.",
26451
26565
  format: "uuid",
@@ -26501,6 +26615,10 @@ var openapi = {
26501
26615
  format: "date-time",
26502
26616
  type: "string"
26503
26617
  },
26618
+ event_description: {
26619
+ 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.",
26620
+ type: "string"
26621
+ },
26504
26622
  event_id: {
26505
26623
  description: "ID of the event.",
26506
26624
  format: "uuid",
@@ -26553,6 +26671,10 @@ var openapi = {
26553
26671
  format: "date-time",
26554
26672
  type: "string"
26555
26673
  },
26674
+ event_description: {
26675
+ 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.",
26676
+ type: "string"
26677
+ },
26556
26678
  event_id: {
26557
26679
  description: "ID of the event.",
26558
26680
  format: "uuid",
@@ -26605,6 +26727,10 @@ var openapi = {
26605
26727
  format: "date-time",
26606
26728
  type: "string"
26607
26729
  },
26730
+ event_description: {
26731
+ 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.",
26732
+ type: "string"
26733
+ },
26608
26734
  event_id: {
26609
26735
  description: "ID of the event.",
26610
26736
  format: "uuid",
@@ -26657,6 +26783,10 @@ var openapi = {
26657
26783
  format: "date-time",
26658
26784
  type: "string"
26659
26785
  },
26786
+ event_description: {
26787
+ 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.",
26788
+ type: "string"
26789
+ },
26660
26790
  event_id: {
26661
26791
  description: "ID of the event.",
26662
26792
  format: "uuid",
@@ -26712,6 +26842,10 @@ var openapi = {
26712
26842
  format: "date-time",
26713
26843
  type: "string"
26714
26844
  },
26845
+ event_description: {
26846
+ 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.",
26847
+ type: "string"
26848
+ },
26715
26849
  event_id: {
26716
26850
  description: "ID of the event.",
26717
26851
  format: "uuid",
@@ -26764,6 +26898,10 @@ var openapi = {
26764
26898
  format: "date-time",
26765
26899
  type: "string"
26766
26900
  },
26901
+ event_description: {
26902
+ 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.",
26903
+ type: "string"
26904
+ },
26767
26905
  event_id: {
26768
26906
  description: "ID of the event.",
26769
26907
  format: "uuid",
@@ -26816,6 +26954,10 @@ var openapi = {
26816
26954
  format: "date-time",
26817
26955
  type: "string"
26818
26956
  },
26957
+ event_description: {
26958
+ 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.",
26959
+ type: "string"
26960
+ },
26819
26961
  event_id: {
26820
26962
  description: "ID of the event.",
26821
26963
  format: "uuid",
@@ -26868,6 +27010,10 @@ var openapi = {
26868
27010
  format: "date-time",
26869
27011
  type: "string"
26870
27012
  },
27013
+ event_description: {
27014
+ 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.",
27015
+ type: "string"
27016
+ },
26871
27017
  event_id: {
26872
27018
  description: "ID of the event.",
26873
27019
  format: "uuid",
@@ -26920,6 +27066,10 @@ var openapi = {
26920
27066
  format: "date-time",
26921
27067
  type: "string"
26922
27068
  },
27069
+ event_description: {
27070
+ 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.",
27071
+ type: "string"
27072
+ },
26923
27073
  event_id: {
26924
27074
  description: "ID of the event.",
26925
27075
  format: "uuid",
@@ -26975,6 +27125,10 @@ var openapi = {
26975
27125
  format: "date-time",
26976
27126
  type: "string"
26977
27127
  },
27128
+ event_description: {
27129
+ 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.",
27130
+ type: "string"
27131
+ },
26978
27132
  event_id: {
26979
27133
  description: "ID of the event.",
26980
27134
  format: "uuid",
@@ -27027,6 +27181,10 @@ var openapi = {
27027
27181
  format: "date-time",
27028
27182
  type: "string"
27029
27183
  },
27184
+ event_description: {
27185
+ 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.",
27186
+ type: "string"
27187
+ },
27030
27188
  event_id: {
27031
27189
  description: "ID of the event.",
27032
27190
  format: "uuid",
@@ -27069,6 +27227,10 @@ var openapi = {
27069
27227
  format: "date-time",
27070
27228
  type: "string"
27071
27229
  },
27230
+ event_description: {
27231
+ 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.",
27232
+ type: "string"
27233
+ },
27072
27234
  event_id: {
27073
27235
  description: "ID of the event.",
27074
27236
  format: "uuid",
@@ -27126,6 +27288,10 @@ var openapi = {
27126
27288
  description: "The customer key associated with this connected account, if any.",
27127
27289
  type: "string"
27128
27290
  },
27291
+ event_description: {
27292
+ 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.",
27293
+ type: "string"
27294
+ },
27129
27295
  event_id: {
27130
27296
  description: "ID of the event.",
27131
27297
  format: "uuid",
@@ -27182,6 +27348,10 @@ var openapi = {
27182
27348
  format: "date-time",
27183
27349
  type: "string"
27184
27350
  },
27351
+ event_description: {
27352
+ 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.",
27353
+ type: "string"
27354
+ },
27185
27355
  event_id: {
27186
27356
  description: "ID of the event.",
27187
27357
  format: "uuid",
@@ -27240,6 +27410,10 @@ var openapi = {
27240
27410
  format: "date-time",
27241
27411
  type: "string"
27242
27412
  },
27413
+ event_description: {
27414
+ 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.",
27415
+ type: "string"
27416
+ },
27243
27417
  event_id: {
27244
27418
  description: "ID of the event.",
27245
27419
  format: "uuid",
@@ -27341,6 +27515,10 @@ var openapi = {
27341
27515
  format: "date-time",
27342
27516
  type: "string"
27343
27517
  },
27518
+ event_description: {
27519
+ 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.",
27520
+ type: "string"
27521
+ },
27344
27522
  event_id: {
27345
27523
  description: "ID of the event.",
27346
27524
  format: "uuid",
@@ -27394,6 +27572,10 @@ var openapi = {
27394
27572
  format: "date-time",
27395
27573
  type: "string"
27396
27574
  },
27575
+ event_description: {
27576
+ 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.",
27577
+ type: "string"
27578
+ },
27397
27579
  event_id: {
27398
27580
  description: "ID of the event.",
27399
27581
  format: "uuid",
@@ -27453,6 +27635,10 @@ var openapi = {
27453
27635
  description: "The customer key associated with this connected account, if any.",
27454
27636
  type: "string"
27455
27637
  },
27638
+ event_description: {
27639
+ 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.",
27640
+ type: "string"
27641
+ },
27456
27642
  event_id: {
27457
27643
  description: "ID of the event.",
27458
27644
  format: "uuid",
@@ -27504,6 +27690,10 @@ var openapi = {
27504
27690
  format: "date-time",
27505
27691
  type: "string"
27506
27692
  },
27693
+ event_description: {
27694
+ 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.",
27695
+ type: "string"
27696
+ },
27507
27697
  event_id: {
27508
27698
  description: "ID of the event.",
27509
27699
  format: "uuid",
@@ -27605,6 +27795,10 @@ var openapi = {
27605
27795
  format: "date-time",
27606
27796
  type: "string"
27607
27797
  },
27798
+ event_description: {
27799
+ 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.",
27800
+ type: "string"
27801
+ },
27608
27802
  event_id: {
27609
27803
  description: "ID of the event.",
27610
27804
  format: "uuid",
@@ -27665,6 +27859,10 @@ var openapi = {
27665
27859
  format: "uuid",
27666
27860
  type: "string"
27667
27861
  },
27862
+ event_description: {
27863
+ 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.",
27864
+ type: "string"
27865
+ },
27668
27866
  event_id: {
27669
27867
  description: "ID of the event.",
27670
27868
  format: "uuid",
@@ -27726,6 +27924,10 @@ var openapi = {
27726
27924
  format: "uuid",
27727
27925
  type: "string"
27728
27926
  },
27927
+ event_description: {
27928
+ 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.",
27929
+ type: "string"
27930
+ },
27729
27931
  event_id: {
27730
27932
  description: "ID of the event.",
27731
27933
  format: "uuid",
@@ -27787,6 +27989,10 @@ var openapi = {
27787
27989
  format: "uuid",
27788
27990
  type: "string"
27789
27991
  },
27992
+ event_description: {
27993
+ 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.",
27994
+ type: "string"
27995
+ },
27790
27996
  event_id: {
27791
27997
  description: "ID of the event.",
27792
27998
  format: "uuid",
@@ -27848,6 +28054,10 @@ var openapi = {
27848
28054
  format: "uuid",
27849
28055
  type: "string"
27850
28056
  },
28057
+ event_description: {
28058
+ 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.",
28059
+ type: "string"
28060
+ },
27851
28061
  event_id: {
27852
28062
  description: "ID of the event.",
27853
28063
  format: "uuid",
@@ -27909,6 +28119,10 @@ var openapi = {
27909
28119
  format: "uuid",
27910
28120
  type: "string"
27911
28121
  },
28122
+ event_description: {
28123
+ 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.",
28124
+ type: "string"
28125
+ },
27912
28126
  event_id: {
27913
28127
  description: "ID of the event.",
27914
28128
  format: "uuid",
@@ -27970,6 +28184,10 @@ var openapi = {
27970
28184
  format: "uuid",
27971
28185
  type: "string"
27972
28186
  },
28187
+ event_description: {
28188
+ 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.",
28189
+ type: "string"
28190
+ },
27973
28191
  event_id: {
27974
28192
  description: "ID of the event.",
27975
28193
  format: "uuid",
@@ -28031,6 +28249,10 @@ var openapi = {
28031
28249
  format: "uuid",
28032
28250
  type: "string"
28033
28251
  },
28252
+ event_description: {
28253
+ 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.",
28254
+ type: "string"
28255
+ },
28034
28256
  event_id: {
28035
28257
  description: "ID of the event.",
28036
28258
  format: "uuid",
@@ -28094,6 +28316,10 @@ var openapi = {
28094
28316
  format: "uuid",
28095
28317
  type: "string"
28096
28318
  },
28319
+ event_description: {
28320
+ 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.",
28321
+ type: "string"
28322
+ },
28097
28323
  event_id: {
28098
28324
  description: "ID of the event.",
28099
28325
  format: "uuid",
@@ -28157,6 +28383,10 @@ var openapi = {
28157
28383
  description: "The customer key associated with this connect webview, if any.",
28158
28384
  type: "string"
28159
28385
  },
28386
+ event_description: {
28387
+ 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.",
28388
+ type: "string"
28389
+ },
28160
28390
  event_id: {
28161
28391
  description: "ID of the event.",
28162
28392
  format: "uuid",
@@ -28202,6 +28432,10 @@ var openapi = {
28202
28432
  format: "date-time",
28203
28433
  type: "string"
28204
28434
  },
28435
+ event_description: {
28436
+ 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.",
28437
+ type: "string"
28438
+ },
28205
28439
  event_id: {
28206
28440
  description: "ID of the event.",
28207
28441
  format: "uuid",
@@ -28269,6 +28503,10 @@ var openapi = {
28269
28503
  format: "uuid",
28270
28504
  type: "string"
28271
28505
  },
28506
+ event_description: {
28507
+ 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.",
28508
+ type: "string"
28509
+ },
28272
28510
  event_id: {
28273
28511
  description: "ID of the event.",
28274
28512
  format: "uuid",
@@ -28334,6 +28572,10 @@ var openapi = {
28334
28572
  format: "uuid",
28335
28573
  type: "string"
28336
28574
  },
28575
+ event_description: {
28576
+ 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.",
28577
+ type: "string"
28578
+ },
28337
28579
  event_id: {
28338
28580
  description: "ID of the event.",
28339
28581
  format: "uuid",
@@ -28399,6 +28641,10 @@ var openapi = {
28399
28641
  format: "uuid",
28400
28642
  type: "string"
28401
28643
  },
28644
+ event_description: {
28645
+ 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.",
28646
+ type: "string"
28647
+ },
28402
28648
  event_id: {
28403
28649
  description: "ID of the event.",
28404
28650
  format: "uuid",
@@ -28467,6 +28713,10 @@ var openapi = {
28467
28713
  format: "uuid",
28468
28714
  type: "string"
28469
28715
  },
28716
+ event_description: {
28717
+ 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.",
28718
+ type: "string"
28719
+ },
28470
28720
  event_id: {
28471
28721
  description: "ID of the event.",
28472
28722
  format: "uuid",
@@ -28535,6 +28785,10 @@ var openapi = {
28535
28785
  format: "uuid",
28536
28786
  type: "string"
28537
28787
  },
28788
+ event_description: {
28789
+ 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.",
28790
+ type: "string"
28791
+ },
28538
28792
  event_id: {
28539
28793
  description: "ID of the event.",
28540
28794
  format: "uuid",
@@ -28708,6 +28962,10 @@ var openapi = {
28708
28962
  ],
28709
28963
  type: "string"
28710
28964
  },
28965
+ event_description: {
28966
+ 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.",
28967
+ type: "string"
28968
+ },
28711
28969
  event_id: {
28712
28970
  description: "ID of the event.",
28713
28971
  format: "uuid",
@@ -28883,6 +29141,10 @@ var openapi = {
28883
29141
  ],
28884
29142
  type: "string"
28885
29143
  },
29144
+ event_description: {
29145
+ 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.",
29146
+ type: "string"
29147
+ },
28886
29148
  event_id: {
28887
29149
  description: "ID of the event.",
28888
29150
  format: "uuid",
@@ -28956,6 +29218,10 @@ var openapi = {
28956
29218
  format: "uuid",
28957
29219
  type: "string"
28958
29220
  },
29221
+ event_description: {
29222
+ 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.",
29223
+ type: "string"
29224
+ },
28959
29225
  event_id: {
28960
29226
  description: "ID of the event.",
28961
29227
  format: "uuid",
@@ -29028,6 +29294,10 @@ var openapi = {
29028
29294
  format: "uuid",
29029
29295
  type: "string"
29030
29296
  },
29297
+ event_description: {
29298
+ 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.",
29299
+ type: "string"
29300
+ },
29031
29301
  event_id: {
29032
29302
  description: "ID of the event.",
29033
29303
  format: "uuid",
@@ -29106,6 +29376,10 @@ var openapi = {
29106
29376
  format: "uuid",
29107
29377
  type: "string"
29108
29378
  },
29379
+ event_description: {
29380
+ 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.",
29381
+ type: "string"
29382
+ },
29109
29383
  event_id: {
29110
29384
  description: "ID of the event.",
29111
29385
  format: "uuid",
@@ -29176,6 +29450,10 @@ var openapi = {
29176
29450
  format: "uuid",
29177
29451
  type: "string"
29178
29452
  },
29453
+ event_description: {
29454
+ 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.",
29455
+ type: "string"
29456
+ },
29179
29457
  event_id: {
29180
29458
  description: "ID of the event.",
29181
29459
  format: "uuid",
@@ -29246,6 +29524,10 @@ var openapi = {
29246
29524
  nullable: true,
29247
29525
  type: "string"
29248
29526
  },
29527
+ event_description: {
29528
+ 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.",
29529
+ type: "string"
29530
+ },
29249
29531
  event_id: {
29250
29532
  description: "ID of the event.",
29251
29533
  format: "uuid",
@@ -29311,6 +29593,10 @@ var openapi = {
29311
29593
  format: "uuid",
29312
29594
  type: "string"
29313
29595
  },
29596
+ event_description: {
29597
+ 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.",
29598
+ type: "string"
29599
+ },
29314
29600
  event_id: {
29315
29601
  description: "ID of the event.",
29316
29602
  format: "uuid",
@@ -29379,6 +29665,10 @@ var openapi = {
29379
29665
  format: "uuid",
29380
29666
  type: "string"
29381
29667
  },
29668
+ event_description: {
29669
+ 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.",
29670
+ type: "string"
29671
+ },
29382
29672
  event_id: {
29383
29673
  description: "ID of the event.",
29384
29674
  format: "uuid",
@@ -29447,6 +29737,10 @@ var openapi = {
29447
29737
  format: "uuid",
29448
29738
  type: "string"
29449
29739
  },
29740
+ event_description: {
29741
+ 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.",
29742
+ type: "string"
29743
+ },
29450
29744
  event_id: {
29451
29745
  description: "ID of the event.",
29452
29746
  format: "uuid",
@@ -29515,6 +29809,10 @@ var openapi = {
29515
29809
  format: "uuid",
29516
29810
  type: "string"
29517
29811
  },
29812
+ event_description: {
29813
+ 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.",
29814
+ type: "string"
29815
+ },
29518
29816
  event_id: {
29519
29817
  description: "ID of the event.",
29520
29818
  format: "uuid",
@@ -29679,6 +29977,10 @@ var openapi = {
29679
29977
  },
29680
29978
  type: "array"
29681
29979
  },
29980
+ event_description: {
29981
+ 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.",
29982
+ type: "string"
29983
+ },
29682
29984
  event_id: {
29683
29985
  description: "ID of the event.",
29684
29986
  format: "uuid",
@@ -29751,6 +30053,10 @@ var openapi = {
29751
30053
  format: "uuid",
29752
30054
  type: "string"
29753
30055
  },
30056
+ event_description: {
30057
+ 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.",
30058
+ type: "string"
30059
+ },
29754
30060
  event_id: {
29755
30061
  description: "ID of the event.",
29756
30062
  format: "uuid",
@@ -29915,6 +30221,10 @@ var openapi = {
29915
30221
  },
29916
30222
  type: "array"
29917
30223
  },
30224
+ event_description: {
30225
+ 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.",
30226
+ type: "string"
30227
+ },
29918
30228
  event_id: {
29919
30229
  description: "ID of the event.",
29920
30230
  format: "uuid",
@@ -29987,6 +30297,10 @@ var openapi = {
29987
30297
  format: "uuid",
29988
30298
  type: "string"
29989
30299
  },
30300
+ event_description: {
30301
+ 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.",
30302
+ type: "string"
30303
+ },
29990
30304
  event_id: {
29991
30305
  description: "ID of the event.",
29992
30306
  format: "uuid",
@@ -30055,6 +30369,10 @@ var openapi = {
30055
30369
  format: "uuid",
30056
30370
  type: "string"
30057
30371
  },
30372
+ event_description: {
30373
+ 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.",
30374
+ type: "string"
30375
+ },
30058
30376
  event_id: {
30059
30377
  description: "ID of the event.",
30060
30378
  format: "uuid",
@@ -30219,6 +30537,10 @@ var openapi = {
30219
30537
  },
30220
30538
  type: "array"
30221
30539
  },
30540
+ event_description: {
30541
+ 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.",
30542
+ type: "string"
30543
+ },
30222
30544
  event_id: {
30223
30545
  description: "ID of the event.",
30224
30546
  format: "uuid",
@@ -30291,6 +30613,10 @@ var openapi = {
30291
30613
  format: "uuid",
30292
30614
  type: "string"
30293
30615
  },
30616
+ event_description: {
30617
+ 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.",
30618
+ type: "string"
30619
+ },
30294
30620
  event_id: {
30295
30621
  description: "ID of the event.",
30296
30622
  format: "uuid",
@@ -30406,6 +30732,10 @@ var openapi = {
30406
30732
  format: "uuid",
30407
30733
  type: "string"
30408
30734
  },
30735
+ event_description: {
30736
+ 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.",
30737
+ type: "string"
30738
+ },
30409
30739
  event_id: {
30410
30740
  description: "ID of the event.",
30411
30741
  format: "uuid",
@@ -30518,6 +30848,10 @@ var openapi = {
30518
30848
  format: "uuid",
30519
30849
  type: "string"
30520
30850
  },
30851
+ event_description: {
30852
+ 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.",
30853
+ type: "string"
30854
+ },
30521
30855
  event_id: {
30522
30856
  description: "ID of the event.",
30523
30857
  format: "uuid",
@@ -30621,6 +30955,10 @@ var openapi = {
30621
30955
  format: "uuid",
30622
30956
  type: "string"
30623
30957
  },
30958
+ event_description: {
30959
+ 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.",
30960
+ type: "string"
30961
+ },
30624
30962
  event_id: {
30625
30963
  description: "ID of the event.",
30626
30964
  format: "uuid",
@@ -30694,6 +31032,10 @@ var openapi = {
30694
31032
  format: "uuid",
30695
31033
  type: "string"
30696
31034
  },
31035
+ event_description: {
31036
+ 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.",
31037
+ type: "string"
31038
+ },
30697
31039
  event_id: {
30698
31040
  description: "ID of the event.",
30699
31041
  format: "uuid",
@@ -30785,6 +31127,10 @@ var openapi = {
30785
31127
  format: "uuid",
30786
31128
  type: "string"
30787
31129
  },
31130
+ event_description: {
31131
+ 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.",
31132
+ type: "string"
31133
+ },
30788
31134
  event_id: {
30789
31135
  description: "ID of the event.",
30790
31136
  format: "uuid",
@@ -30879,6 +31225,10 @@ var openapi = {
30879
31225
  format: "uuid",
30880
31226
  type: "string"
30881
31227
  },
31228
+ event_description: {
31229
+ 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.",
31230
+ type: "string"
31231
+ },
30882
31232
  event_id: {
30883
31233
  description: "ID of the event.",
30884
31234
  format: "uuid",
@@ -30987,6 +31337,10 @@ var openapi = {
30987
31337
  format: "uuid",
30988
31338
  type: "string"
30989
31339
  },
31340
+ event_description: {
31341
+ 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.",
31342
+ type: "string"
31343
+ },
30990
31344
  event_id: {
30991
31345
  description: "ID of the event.",
30992
31346
  format: "uuid",
@@ -31105,6 +31459,10 @@ var openapi = {
31105
31459
  format: "uuid",
31106
31460
  type: "string"
31107
31461
  },
31462
+ event_description: {
31463
+ 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.",
31464
+ type: "string"
31465
+ },
31108
31466
  event_id: {
31109
31467
  description: "ID of the event.",
31110
31468
  format: "uuid",
@@ -31185,6 +31543,10 @@ var openapi = {
31185
31543
  format: "uuid",
31186
31544
  type: "string"
31187
31545
  },
31546
+ event_description: {
31547
+ 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.",
31548
+ type: "string"
31549
+ },
31188
31550
  event_id: {
31189
31551
  description: "ID of the event.",
31190
31552
  format: "uuid",
@@ -31269,6 +31631,10 @@ var openapi = {
31269
31631
  description: "The new name of the affected device.",
31270
31632
  type: "string"
31271
31633
  },
31634
+ event_description: {
31635
+ 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.",
31636
+ type: "string"
31637
+ },
31272
31638
  event_id: {
31273
31639
  description: "ID of the event.",
31274
31640
  format: "uuid",
@@ -31340,6 +31706,10 @@ var openapi = {
31340
31706
  format: "uuid",
31341
31707
  type: "string"
31342
31708
  },
31709
+ event_description: {
31710
+ 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.",
31711
+ type: "string"
31712
+ },
31343
31713
  event_id: {
31344
31714
  description: "ID of the event.",
31345
31715
  format: "uuid",
@@ -31421,6 +31791,10 @@ var openapi = {
31421
31791
  format: "uuid",
31422
31792
  type: "string"
31423
31793
  },
31794
+ event_description: {
31795
+ 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.",
31796
+ type: "string"
31797
+ },
31424
31798
  event_id: {
31425
31799
  description: "ID of the event.",
31426
31800
  format: "uuid",
@@ -31473,6 +31847,10 @@ var openapi = {
31473
31847
  format: "uuid",
31474
31848
  type: "string"
31475
31849
  },
31850
+ event_description: {
31851
+ 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.",
31852
+ type: "string"
31853
+ },
31476
31854
  event_id: {
31477
31855
  description: "ID of the event.",
31478
31856
  format: "uuid",
@@ -31524,6 +31902,10 @@ var openapi = {
31524
31902
  format: "uuid",
31525
31903
  type: "string"
31526
31904
  },
31905
+ event_description: {
31906
+ 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.",
31907
+ type: "string"
31908
+ },
31527
31909
  event_id: {
31528
31910
  description: "ID of the event.",
31529
31911
  format: "uuid",
@@ -31570,6 +31952,10 @@ var openapi = {
31570
31952
  items: { format: "uuid", type: "string" },
31571
31953
  type: "array"
31572
31954
  },
31955
+ event_description: {
31956
+ 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.",
31957
+ type: "string"
31958
+ },
31573
31959
  event_id: {
31574
31960
  description: "ID of the event.",
31575
31961
  format: "uuid",
@@ -31631,6 +32017,10 @@ var openapi = {
31631
32017
  items: { format: "uuid", type: "string" },
31632
32018
  type: "array"
31633
32019
  },
32020
+ event_description: {
32021
+ 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.",
32022
+ type: "string"
32023
+ },
31634
32024
  event_id: {
31635
32025
  description: "ID of the event.",
31636
32026
  format: "uuid",
@@ -31692,6 +32082,10 @@ var openapi = {
31692
32082
  items: { format: "uuid", type: "string" },
31693
32083
  type: "array"
31694
32084
  },
32085
+ event_description: {
32086
+ 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.",
32087
+ type: "string"
32088
+ },
31695
32089
  event_id: {
31696
32090
  description: "ID of the event.",
31697
32091
  format: "uuid",
@@ -33735,33 +34129,6 @@ var openapi = {
33735
34129
  type: "object",
33736
34130
  "x-resource-type": "access_code"
33737
34131
  },
33738
- {
33739
- description: "An attempt to modify this access code was prevented.",
33740
- properties: {
33741
- created_at: {
33742
- description: "Date and time at which Seam created the error.",
33743
- format: "date-time",
33744
- type: "string"
33745
- },
33746
- error_code: {
33747
- description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
33748
- enum: ["duplicate_code_attempt_prevented"],
33749
- type: "string"
33750
- },
33751
- is_access_code_error: {
33752
- description: "Indicates that this is an access code error.",
33753
- enum: [true],
33754
- type: "boolean"
33755
- },
33756
- message: {
33757
- description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
33758
- type: "string"
33759
- }
33760
- },
33761
- required: ["message", "is_access_code_error", "error_code"],
33762
- type: "object",
33763
- "x-resource-type": "access_code"
33764
- },
33765
34132
  {
33766
34133
  description: "No space for access code on device.",
33767
34134
  properties: {