@seamapi/types 1.522.0 → 1.524.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 +63 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +259 -0
- package/dist/index.cjs +63 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +100 -0
- package/lib/seam/connect/models/customer/customer-delete-data.d.ts +2 -2
- package/lib/seam/connect/models/devices/device-provider.d.ts +1 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/events/access-methods.d.ts +60 -0
- package/lib/seam/connect/models/events/access-methods.js +7 -0
- package/lib/seam/connect/models/events/access-methods.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +30 -0
- package/lib/seam/connect/openapi.d.ts +79 -0
- package/lib/seam/connect/openapi.js +55 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +100 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -0
- package/src/lib/seam/connect/models/events/access-methods.ts +9 -0
- package/src/lib/seam/connect/openapi.ts +65 -0
- package/src/lib/seam/connect/route-types.ts +100 -0
|
@@ -17712,6 +17712,10 @@ export type Routes = {
|
|
|
17712
17712
|
occurred_at: string;
|
|
17713
17713
|
/** ID of the affected access method. */
|
|
17714
17714
|
access_method_id: string;
|
|
17715
|
+
/** IDs of the access grants associated with this access method. */
|
|
17716
|
+
access_grant_ids: string[];
|
|
17717
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
17718
|
+
access_grant_keys?: string[] | undefined;
|
|
17715
17719
|
event_type: 'access_method.issued';
|
|
17716
17720
|
} | {
|
|
17717
17721
|
/** ID of the event. */
|
|
@@ -17724,6 +17728,10 @@ export type Routes = {
|
|
|
17724
17728
|
occurred_at: string;
|
|
17725
17729
|
/** ID of the affected access method. */
|
|
17726
17730
|
access_method_id: string;
|
|
17731
|
+
/** IDs of the access grants associated with this access method. */
|
|
17732
|
+
access_grant_ids: string[];
|
|
17733
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
17734
|
+
access_grant_keys?: string[] | undefined;
|
|
17727
17735
|
event_type: 'access_method.revoked';
|
|
17728
17736
|
} | {
|
|
17729
17737
|
/** ID of the event. */
|
|
@@ -17736,6 +17744,10 @@ export type Routes = {
|
|
|
17736
17744
|
occurred_at: string;
|
|
17737
17745
|
/** ID of the affected access method. */
|
|
17738
17746
|
access_method_id: string;
|
|
17747
|
+
/** IDs of the access grants associated with this access method. */
|
|
17748
|
+
access_grant_ids: string[];
|
|
17749
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
17750
|
+
access_grant_keys?: string[] | undefined;
|
|
17739
17751
|
event_type: 'access_method.card_encoding_required';
|
|
17740
17752
|
} | {
|
|
17741
17753
|
/** ID of the event. */
|
|
@@ -17748,6 +17760,10 @@ export type Routes = {
|
|
|
17748
17760
|
occurred_at: string;
|
|
17749
17761
|
/** ID of the affected access method. */
|
|
17750
17762
|
access_method_id: string;
|
|
17763
|
+
/** IDs of the access grants associated with this access method. */
|
|
17764
|
+
access_grant_ids: string[];
|
|
17765
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
17766
|
+
access_grant_keys?: string[] | undefined;
|
|
17751
17767
|
event_type: 'access_method.deleted';
|
|
17752
17768
|
} | {
|
|
17753
17769
|
/** ID of the event. */
|
|
@@ -17760,6 +17776,10 @@ export type Routes = {
|
|
|
17760
17776
|
occurred_at: string;
|
|
17761
17777
|
/** ID of the affected access method. */
|
|
17762
17778
|
access_method_id: string;
|
|
17779
|
+
/** IDs of the access grants associated with this access method. */
|
|
17780
|
+
access_grant_ids: string[];
|
|
17781
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
17782
|
+
access_grant_keys?: string[] | undefined;
|
|
17763
17783
|
event_type: 'access_method.reissued';
|
|
17764
17784
|
} | {
|
|
17765
17785
|
/** ID of the event. */
|
|
@@ -35455,6 +35475,10 @@ export type Routes = {
|
|
|
35455
35475
|
occurred_at: string;
|
|
35456
35476
|
/** ID of the affected access method. */
|
|
35457
35477
|
access_method_id: string;
|
|
35478
|
+
/** IDs of the access grants associated with this access method. */
|
|
35479
|
+
access_grant_ids: string[];
|
|
35480
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
35481
|
+
access_grant_keys?: string[] | undefined;
|
|
35458
35482
|
event_type: 'access_method.issued';
|
|
35459
35483
|
} | {
|
|
35460
35484
|
/** ID of the event. */
|
|
@@ -35467,6 +35491,10 @@ export type Routes = {
|
|
|
35467
35491
|
occurred_at: string;
|
|
35468
35492
|
/** ID of the affected access method. */
|
|
35469
35493
|
access_method_id: string;
|
|
35494
|
+
/** IDs of the access grants associated with this access method. */
|
|
35495
|
+
access_grant_ids: string[];
|
|
35496
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
35497
|
+
access_grant_keys?: string[] | undefined;
|
|
35470
35498
|
event_type: 'access_method.revoked';
|
|
35471
35499
|
} | {
|
|
35472
35500
|
/** ID of the event. */
|
|
@@ -35479,6 +35507,10 @@ export type Routes = {
|
|
|
35479
35507
|
occurred_at: string;
|
|
35480
35508
|
/** ID of the affected access method. */
|
|
35481
35509
|
access_method_id: string;
|
|
35510
|
+
/** IDs of the access grants associated with this access method. */
|
|
35511
|
+
access_grant_ids: string[];
|
|
35512
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
35513
|
+
access_grant_keys?: string[] | undefined;
|
|
35482
35514
|
event_type: 'access_method.card_encoding_required';
|
|
35483
35515
|
} | {
|
|
35484
35516
|
/** ID of the event. */
|
|
@@ -35491,6 +35523,10 @@ export type Routes = {
|
|
|
35491
35523
|
occurred_at: string;
|
|
35492
35524
|
/** ID of the affected access method. */
|
|
35493
35525
|
access_method_id: string;
|
|
35526
|
+
/** IDs of the access grants associated with this access method. */
|
|
35527
|
+
access_grant_ids: string[];
|
|
35528
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
35529
|
+
access_grant_keys?: string[] | undefined;
|
|
35494
35530
|
event_type: 'access_method.deleted';
|
|
35495
35531
|
} | {
|
|
35496
35532
|
/** ID of the event. */
|
|
@@ -35503,6 +35539,10 @@ export type Routes = {
|
|
|
35503
35539
|
occurred_at: string;
|
|
35504
35540
|
/** ID of the affected access method. */
|
|
35505
35541
|
access_method_id: string;
|
|
35542
|
+
/** IDs of the access grants associated with this access method. */
|
|
35543
|
+
access_grant_ids: string[];
|
|
35544
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
35545
|
+
access_grant_keys?: string[] | undefined;
|
|
35506
35546
|
event_type: 'access_method.reissued';
|
|
35507
35547
|
} | {
|
|
35508
35548
|
/** ID of the event. */
|
|
@@ -37329,6 +37369,10 @@ export type Routes = {
|
|
|
37329
37369
|
occurred_at: string;
|
|
37330
37370
|
/** ID of the affected access method. */
|
|
37331
37371
|
access_method_id: string;
|
|
37372
|
+
/** IDs of the access grants associated with this access method. */
|
|
37373
|
+
access_grant_ids: string[];
|
|
37374
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
37375
|
+
access_grant_keys?: string[] | undefined;
|
|
37332
37376
|
event_type: 'access_method.issued';
|
|
37333
37377
|
} | {
|
|
37334
37378
|
/** ID of the event. */
|
|
@@ -37341,6 +37385,10 @@ export type Routes = {
|
|
|
37341
37385
|
occurred_at: string;
|
|
37342
37386
|
/** ID of the affected access method. */
|
|
37343
37387
|
access_method_id: string;
|
|
37388
|
+
/** IDs of the access grants associated with this access method. */
|
|
37389
|
+
access_grant_ids: string[];
|
|
37390
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
37391
|
+
access_grant_keys?: string[] | undefined;
|
|
37344
37392
|
event_type: 'access_method.revoked';
|
|
37345
37393
|
} | {
|
|
37346
37394
|
/** ID of the event. */
|
|
@@ -37353,6 +37401,10 @@ export type Routes = {
|
|
|
37353
37401
|
occurred_at: string;
|
|
37354
37402
|
/** ID of the affected access method. */
|
|
37355
37403
|
access_method_id: string;
|
|
37404
|
+
/** IDs of the access grants associated with this access method. */
|
|
37405
|
+
access_grant_ids: string[];
|
|
37406
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
37407
|
+
access_grant_keys?: string[] | undefined;
|
|
37356
37408
|
event_type: 'access_method.card_encoding_required';
|
|
37357
37409
|
} | {
|
|
37358
37410
|
/** ID of the event. */
|
|
@@ -37365,6 +37417,10 @@ export type Routes = {
|
|
|
37365
37417
|
occurred_at: string;
|
|
37366
37418
|
/** ID of the affected access method. */
|
|
37367
37419
|
access_method_id: string;
|
|
37420
|
+
/** IDs of the access grants associated with this access method. */
|
|
37421
|
+
access_grant_ids: string[];
|
|
37422
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
37423
|
+
access_grant_keys?: string[] | undefined;
|
|
37368
37424
|
event_type: 'access_method.deleted';
|
|
37369
37425
|
} | {
|
|
37370
37426
|
/** ID of the event. */
|
|
@@ -37377,6 +37433,10 @@ export type Routes = {
|
|
|
37377
37433
|
occurred_at: string;
|
|
37378
37434
|
/** ID of the affected access method. */
|
|
37379
37435
|
access_method_id: string;
|
|
37436
|
+
/** IDs of the access grants associated with this access method. */
|
|
37437
|
+
access_grant_ids: string[];
|
|
37438
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
37439
|
+
access_grant_keys?: string[] | undefined;
|
|
37380
37440
|
event_type: 'access_method.reissued';
|
|
37381
37441
|
} | {
|
|
37382
37442
|
/** ID of the event. */
|
|
@@ -56117,6 +56177,10 @@ export type Routes = {
|
|
|
56117
56177
|
occurred_at: string;
|
|
56118
56178
|
/** ID of the affected access method. */
|
|
56119
56179
|
access_method_id: string;
|
|
56180
|
+
/** IDs of the access grants associated with this access method. */
|
|
56181
|
+
access_grant_ids: string[];
|
|
56182
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
56183
|
+
access_grant_keys?: string[] | undefined;
|
|
56120
56184
|
event_type: 'access_method.issued';
|
|
56121
56185
|
} | {
|
|
56122
56186
|
/** ID of the event. */
|
|
@@ -56129,6 +56193,10 @@ export type Routes = {
|
|
|
56129
56193
|
occurred_at: string;
|
|
56130
56194
|
/** ID of the affected access method. */
|
|
56131
56195
|
access_method_id: string;
|
|
56196
|
+
/** IDs of the access grants associated with this access method. */
|
|
56197
|
+
access_grant_ids: string[];
|
|
56198
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
56199
|
+
access_grant_keys?: string[] | undefined;
|
|
56132
56200
|
event_type: 'access_method.revoked';
|
|
56133
56201
|
} | {
|
|
56134
56202
|
/** ID of the event. */
|
|
@@ -56141,6 +56209,10 @@ export type Routes = {
|
|
|
56141
56209
|
occurred_at: string;
|
|
56142
56210
|
/** ID of the affected access method. */
|
|
56143
56211
|
access_method_id: string;
|
|
56212
|
+
/** IDs of the access grants associated with this access method. */
|
|
56213
|
+
access_grant_ids: string[];
|
|
56214
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
56215
|
+
access_grant_keys?: string[] | undefined;
|
|
56144
56216
|
event_type: 'access_method.card_encoding_required';
|
|
56145
56217
|
} | {
|
|
56146
56218
|
/** ID of the event. */
|
|
@@ -56153,6 +56225,10 @@ export type Routes = {
|
|
|
56153
56225
|
occurred_at: string;
|
|
56154
56226
|
/** ID of the affected access method. */
|
|
56155
56227
|
access_method_id: string;
|
|
56228
|
+
/** IDs of the access grants associated with this access method. */
|
|
56229
|
+
access_grant_ids: string[];
|
|
56230
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
56231
|
+
access_grant_keys?: string[] | undefined;
|
|
56156
56232
|
event_type: 'access_method.deleted';
|
|
56157
56233
|
} | {
|
|
56158
56234
|
/** ID of the event. */
|
|
@@ -56165,6 +56241,10 @@ export type Routes = {
|
|
|
56165
56241
|
occurred_at: string;
|
|
56166
56242
|
/** ID of the affected access method. */
|
|
56167
56243
|
access_method_id: string;
|
|
56244
|
+
/** IDs of the access grants associated with this access method. */
|
|
56245
|
+
access_grant_ids: string[];
|
|
56246
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
56247
|
+
access_grant_keys?: string[] | undefined;
|
|
56168
56248
|
event_type: 'access_method.reissued';
|
|
56169
56249
|
} | {
|
|
56170
56250
|
/** ID of the event. */
|
|
@@ -83327,6 +83407,10 @@ export type Routes = {
|
|
|
83327
83407
|
occurred_at: string;
|
|
83328
83408
|
/** ID of the affected access method. */
|
|
83329
83409
|
access_method_id: string;
|
|
83410
|
+
/** IDs of the access grants associated with this access method. */
|
|
83411
|
+
access_grant_ids: string[];
|
|
83412
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
83413
|
+
access_grant_keys?: string[] | undefined;
|
|
83330
83414
|
event_type: 'access_method.issued';
|
|
83331
83415
|
} | {
|
|
83332
83416
|
/** ID of the event. */
|
|
@@ -83339,6 +83423,10 @@ export type Routes = {
|
|
|
83339
83423
|
occurred_at: string;
|
|
83340
83424
|
/** ID of the affected access method. */
|
|
83341
83425
|
access_method_id: string;
|
|
83426
|
+
/** IDs of the access grants associated with this access method. */
|
|
83427
|
+
access_grant_ids: string[];
|
|
83428
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
83429
|
+
access_grant_keys?: string[] | undefined;
|
|
83342
83430
|
event_type: 'access_method.revoked';
|
|
83343
83431
|
} | {
|
|
83344
83432
|
/** ID of the event. */
|
|
@@ -83351,6 +83439,10 @@ export type Routes = {
|
|
|
83351
83439
|
occurred_at: string;
|
|
83352
83440
|
/** ID of the affected access method. */
|
|
83353
83441
|
access_method_id: string;
|
|
83442
|
+
/** IDs of the access grants associated with this access method. */
|
|
83443
|
+
access_grant_ids: string[];
|
|
83444
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
83445
|
+
access_grant_keys?: string[] | undefined;
|
|
83354
83446
|
event_type: 'access_method.card_encoding_required';
|
|
83355
83447
|
} | {
|
|
83356
83448
|
/** ID of the event. */
|
|
@@ -83363,6 +83455,10 @@ export type Routes = {
|
|
|
83363
83455
|
occurred_at: string;
|
|
83364
83456
|
/** ID of the affected access method. */
|
|
83365
83457
|
access_method_id: string;
|
|
83458
|
+
/** IDs of the access grants associated with this access method. */
|
|
83459
|
+
access_grant_ids: string[];
|
|
83460
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
83461
|
+
access_grant_keys?: string[] | undefined;
|
|
83366
83462
|
event_type: 'access_method.deleted';
|
|
83367
83463
|
} | {
|
|
83368
83464
|
/** ID of the event. */
|
|
@@ -83375,6 +83471,10 @@ export type Routes = {
|
|
|
83375
83471
|
occurred_at: string;
|
|
83376
83472
|
/** ID of the affected access method. */
|
|
83377
83473
|
access_method_id: string;
|
|
83474
|
+
/** IDs of the access grants associated with this access method. */
|
|
83475
|
+
access_grant_ids: string[];
|
|
83476
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
83477
|
+
access_grant_keys?: string[] | undefined;
|
|
83378
83478
|
event_type: 'access_method.reissued';
|
|
83379
83479
|
} | {
|
|
83380
83480
|
/** ID of the event. */
|
package/package.json
CHANGED
|
@@ -7,6 +7,15 @@ const access_method_event = common_event.extend({
|
|
|
7
7
|
.string()
|
|
8
8
|
.uuid()
|
|
9
9
|
.describe('ID of the affected access method.'),
|
|
10
|
+
access_grant_ids: z
|
|
11
|
+
.array(z.string().uuid())
|
|
12
|
+
.describe('IDs of the access grants associated with this access method.'),
|
|
13
|
+
access_grant_keys: z
|
|
14
|
+
.array(z.string())
|
|
15
|
+
.optional()
|
|
16
|
+
.describe(
|
|
17
|
+
'Keys of the access grants associated with this access method (if present).',
|
|
18
|
+
),
|
|
10
19
|
})
|
|
11
20
|
|
|
12
21
|
export const access_method_issued_event = access_method_event.extend({
|
|
@@ -14592,6 +14592,18 @@ export default {
|
|
|
14592
14592
|
{
|
|
14593
14593
|
description: 'An access method was issued.',
|
|
14594
14594
|
properties: {
|
|
14595
|
+
access_grant_ids: {
|
|
14596
|
+
description:
|
|
14597
|
+
'IDs of the access grants associated with this access method.',
|
|
14598
|
+
items: { format: 'uuid', type: 'string' },
|
|
14599
|
+
type: 'array',
|
|
14600
|
+
},
|
|
14601
|
+
access_grant_keys: {
|
|
14602
|
+
description:
|
|
14603
|
+
'Keys of the access grants associated with this access method (if present).',
|
|
14604
|
+
items: { type: 'string' },
|
|
14605
|
+
type: 'array',
|
|
14606
|
+
},
|
|
14595
14607
|
access_method_id: {
|
|
14596
14608
|
description: 'ID of the affected access method.',
|
|
14597
14609
|
format: 'uuid',
|
|
@@ -14626,6 +14638,7 @@ export default {
|
|
|
14626
14638
|
'created_at',
|
|
14627
14639
|
'occurred_at',
|
|
14628
14640
|
'access_method_id',
|
|
14641
|
+
'access_grant_ids',
|
|
14629
14642
|
'event_type',
|
|
14630
14643
|
],
|
|
14631
14644
|
type: 'object',
|
|
@@ -14634,6 +14647,18 @@ export default {
|
|
|
14634
14647
|
{
|
|
14635
14648
|
description: 'An access method was revoked.',
|
|
14636
14649
|
properties: {
|
|
14650
|
+
access_grant_ids: {
|
|
14651
|
+
description:
|
|
14652
|
+
'IDs of the access grants associated with this access method.',
|
|
14653
|
+
items: { format: 'uuid', type: 'string' },
|
|
14654
|
+
type: 'array',
|
|
14655
|
+
},
|
|
14656
|
+
access_grant_keys: {
|
|
14657
|
+
description:
|
|
14658
|
+
'Keys of the access grants associated with this access method (if present).',
|
|
14659
|
+
items: { type: 'string' },
|
|
14660
|
+
type: 'array',
|
|
14661
|
+
},
|
|
14637
14662
|
access_method_id: {
|
|
14638
14663
|
description: 'ID of the affected access method.',
|
|
14639
14664
|
format: 'uuid',
|
|
@@ -14668,6 +14693,7 @@ export default {
|
|
|
14668
14693
|
'created_at',
|
|
14669
14694
|
'occurred_at',
|
|
14670
14695
|
'access_method_id',
|
|
14696
|
+
'access_grant_ids',
|
|
14671
14697
|
'event_type',
|
|
14672
14698
|
],
|
|
14673
14699
|
type: 'object',
|
|
@@ -14677,6 +14703,18 @@ export default {
|
|
|
14677
14703
|
description:
|
|
14678
14704
|
'An access method representing a physical card requires encoding.',
|
|
14679
14705
|
properties: {
|
|
14706
|
+
access_grant_ids: {
|
|
14707
|
+
description:
|
|
14708
|
+
'IDs of the access grants associated with this access method.',
|
|
14709
|
+
items: { format: 'uuid', type: 'string' },
|
|
14710
|
+
type: 'array',
|
|
14711
|
+
},
|
|
14712
|
+
access_grant_keys: {
|
|
14713
|
+
description:
|
|
14714
|
+
'Keys of the access grants associated with this access method (if present).',
|
|
14715
|
+
items: { type: 'string' },
|
|
14716
|
+
type: 'array',
|
|
14717
|
+
},
|
|
14680
14718
|
access_method_id: {
|
|
14681
14719
|
description: 'ID of the affected access method.',
|
|
14682
14720
|
format: 'uuid',
|
|
@@ -14714,6 +14752,7 @@ export default {
|
|
|
14714
14752
|
'created_at',
|
|
14715
14753
|
'occurred_at',
|
|
14716
14754
|
'access_method_id',
|
|
14755
|
+
'access_grant_ids',
|
|
14717
14756
|
'event_type',
|
|
14718
14757
|
],
|
|
14719
14758
|
type: 'object',
|
|
@@ -14722,6 +14761,18 @@ export default {
|
|
|
14722
14761
|
{
|
|
14723
14762
|
description: 'An access method was deleted.',
|
|
14724
14763
|
properties: {
|
|
14764
|
+
access_grant_ids: {
|
|
14765
|
+
description:
|
|
14766
|
+
'IDs of the access grants associated with this access method.',
|
|
14767
|
+
items: { format: 'uuid', type: 'string' },
|
|
14768
|
+
type: 'array',
|
|
14769
|
+
},
|
|
14770
|
+
access_grant_keys: {
|
|
14771
|
+
description:
|
|
14772
|
+
'Keys of the access grants associated with this access method (if present).',
|
|
14773
|
+
items: { type: 'string' },
|
|
14774
|
+
type: 'array',
|
|
14775
|
+
},
|
|
14725
14776
|
access_method_id: {
|
|
14726
14777
|
description: 'ID of the affected access method.',
|
|
14727
14778
|
format: 'uuid',
|
|
@@ -14756,6 +14807,7 @@ export default {
|
|
|
14756
14807
|
'created_at',
|
|
14757
14808
|
'occurred_at',
|
|
14758
14809
|
'access_method_id',
|
|
14810
|
+
'access_grant_ids',
|
|
14759
14811
|
'event_type',
|
|
14760
14812
|
],
|
|
14761
14813
|
type: 'object',
|
|
@@ -14765,6 +14817,18 @@ export default {
|
|
|
14765
14817
|
description:
|
|
14766
14818
|
'An access method was reissued due to an Access Grant update.',
|
|
14767
14819
|
properties: {
|
|
14820
|
+
access_grant_ids: {
|
|
14821
|
+
description:
|
|
14822
|
+
'IDs of the access grants associated with this access method.',
|
|
14823
|
+
items: { format: 'uuid', type: 'string' },
|
|
14824
|
+
type: 'array',
|
|
14825
|
+
},
|
|
14826
|
+
access_grant_keys: {
|
|
14827
|
+
description:
|
|
14828
|
+
'Keys of the access grants associated with this access method (if present).',
|
|
14829
|
+
items: { type: 'string' },
|
|
14830
|
+
type: 'array',
|
|
14831
|
+
},
|
|
14768
14832
|
access_method_id: {
|
|
14769
14833
|
description: 'ID of the affected access method.',
|
|
14770
14834
|
format: 'uuid',
|
|
@@ -14799,6 +14863,7 @@ export default {
|
|
|
14799
14863
|
'created_at',
|
|
14800
14864
|
'occurred_at',
|
|
14801
14865
|
'access_method_id',
|
|
14866
|
+
'access_grant_ids',
|
|
14802
14867
|
'event_type',
|
|
14803
14868
|
],
|
|
14804
14869
|
type: 'object',
|