@seamapi/types 1.58.1 → 1.59.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.
@@ -4809,6 +4809,10 @@ declare const _default: {
4809
4809
  properties: {
4810
4810
  acs_credential: {
4811
4811
  properties: {
4812
+ access_method: {
4813
+ enum: string[];
4814
+ type: string;
4815
+ };
4812
4816
  acs_credential_id: {
4813
4817
  format: string;
4814
4818
  type: string;
@@ -4920,6 +4924,10 @@ declare const _default: {
4920
4924
  properties: {
4921
4925
  acs_credential: {
4922
4926
  properties: {
4927
+ access_method: {
4928
+ enum: string[];
4929
+ type: string;
4930
+ };
4923
4931
  acs_credential_id: {
4924
4932
  format: string;
4925
4933
  type: string;
@@ -5011,6 +5019,10 @@ declare const _default: {
5011
5019
  'application/json': {
5012
5020
  schema: {
5013
5021
  properties: {
5022
+ access_method: {
5023
+ enum: string[];
5024
+ type: string;
5025
+ };
5014
5026
  acs_user_id: {
5015
5027
  format: string;
5016
5028
  type: string;
@@ -5034,6 +5046,10 @@ declare const _default: {
5034
5046
  properties: {
5035
5047
  acs_credential: {
5036
5048
  properties: {
5049
+ access_method: {
5050
+ enum: string[];
5051
+ type: string;
5052
+ };
5037
5053
  acs_credential_id: {
5038
5054
  format: string;
5039
5055
  type: string;
@@ -5209,6 +5225,10 @@ declare const _default: {
5209
5225
  properties: {
5210
5226
  acs_credential: {
5211
5227
  properties: {
5228
+ access_method: {
5229
+ enum: string[];
5230
+ type: string;
5231
+ };
5212
5232
  acs_credential_id: {
5213
5233
  format: string;
5214
5234
  type: string;
@@ -5346,6 +5366,10 @@ declare const _default: {
5346
5366
  acs_credentials: {
5347
5367
  items: {
5348
5368
  properties: {
5369
+ access_method: {
5370
+ enum: string[];
5371
+ type: string;
5372
+ };
5349
5373
  acs_credential_id: {
5350
5374
  format: string;
5351
5375
  type: string;
@@ -5467,6 +5491,10 @@ declare const _default: {
5467
5491
  properties: {
5468
5492
  acs_credential: {
5469
5493
  properties: {
5494
+ access_method: {
5495
+ enum: string[];
5496
+ type: string;
5497
+ };
5470
5498
  acs_credential_id: {
5471
5499
  format: string;
5472
5500
  type: string;
@@ -5578,6 +5606,10 @@ declare const _default: {
5578
5606
  properties: {
5579
5607
  acs_credential: {
5580
5608
  properties: {
5609
+ access_method: {
5610
+ enum: string[];
5611
+ type: string;
5612
+ };
5581
5613
  acs_credential_id: {
5582
5614
  format: string;
5583
5615
  type: string;
@@ -5691,6 +5723,10 @@ declare const _default: {
5691
5723
  properties: {
5692
5724
  acs_credential: {
5693
5725
  properties: {
5726
+ access_method: {
5727
+ enum: string[];
5728
+ type: string;
5729
+ };
5694
5730
  acs_credential_id: {
5695
5731
  format: string;
5696
5732
  type: string;
@@ -5801,6 +5837,10 @@ declare const _default: {
5801
5837
  properties: {
5802
5838
  acs_credential: {
5803
5839
  properties: {
5840
+ access_method: {
5841
+ enum: string[];
5842
+ type: string;
5843
+ };
5804
5844
  acs_credential_id: {
5805
5845
  format: string;
5806
5846
  type: string;
@@ -14548,6 +14588,7 @@ interface Routes {
14548
14588
  acs_system_id: string;
14549
14589
  display_name: string;
14550
14590
  code?: (string | undefined) | null;
14591
+ access_method: 'code' | 'card' | 'mobile_key';
14551
14592
  external_type: 'pti_card' | 'brivo_credential' | 'hid_credential';
14552
14593
  external_type_display_name: string;
14553
14594
  created_at: string;
@@ -14562,7 +14603,8 @@ interface Routes {
14562
14603
  jsonBody: {};
14563
14604
  commonParams: {
14564
14605
  acs_user_id: string;
14565
- code: string;
14606
+ access_method: 'code' | 'card' | 'mobile_key';
14607
+ code?: string | undefined;
14566
14608
  };
14567
14609
  formData: {};
14568
14610
  jsonResponse: {
@@ -14573,6 +14615,7 @@ interface Routes {
14573
14615
  acs_system_id: string;
14574
14616
  display_name: string;
14575
14617
  code?: (string | undefined) | null;
14618
+ access_method: 'code' | 'card' | 'mobile_key';
14576
14619
  external_type: 'pti_card' | 'brivo_credential' | 'hid_credential';
14577
14620
  external_type_display_name: string;
14578
14621
  created_at: string;
@@ -14608,6 +14651,7 @@ interface Routes {
14608
14651
  acs_system_id: string;
14609
14652
  display_name: string;
14610
14653
  code?: (string | undefined) | null;
14654
+ access_method: 'code' | 'card' | 'mobile_key';
14611
14655
  external_type: 'pti_card' | 'brivo_credential' | 'hid_credential';
14612
14656
  external_type_display_name: string;
14613
14657
  created_at: string;
@@ -14637,6 +14681,7 @@ interface Routes {
14637
14681
  acs_system_id: string;
14638
14682
  display_name: string;
14639
14683
  code?: (string | undefined) | null;
14684
+ access_method: 'code' | 'card' | 'mobile_key';
14640
14685
  external_type: 'pti_card' | 'brivo_credential' | 'hid_credential';
14641
14686
  external_type_display_name: string;
14642
14687
  created_at: string;
@@ -14662,6 +14707,7 @@ interface Routes {
14662
14707
  acs_system_id: string;
14663
14708
  display_name: string;
14664
14709
  code?: (string | undefined) | null;
14710
+ access_method: 'code' | 'card' | 'mobile_key';
14665
14711
  external_type: 'pti_card' | 'brivo_credential' | 'hid_credential';
14666
14712
  external_type_display_name: string;
14667
14713
  created_at: string;
@@ -14687,6 +14733,7 @@ interface Routes {
14687
14733
  acs_system_id: string;
14688
14734
  display_name: string;
14689
14735
  code?: (string | undefined) | null;
14736
+ access_method: 'code' | 'card' | 'mobile_key';
14690
14737
  external_type: 'pti_card' | 'brivo_credential' | 'hid_credential';
14691
14738
  external_type_display_name: string;
14692
14739
  created_at: string;
@@ -14742,10 +14789,10 @@ interface Routes {
14742
14789
  jsonResponse: {
14743
14790
  acs_system: {
14744
14791
  acs_system_id: string;
14745
- external_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_system' | 'hid_cm_org' | 'visionline_system' | 'assa_abloy_credential_service_user';
14792
+ external_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_cm_org' | 'visionline_system' | 'assa_abloy_credential_service_user';
14746
14793
  external_type_display_name: string;
14747
14794
  /** deprecated: use external_type */
14748
- system_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_system' | 'hid_cm_org' | 'visionline_system' | 'assa_abloy_credential_service_user';
14795
+ system_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_cm_org' | 'visionline_system' | 'assa_abloy_credential_service_user';
14749
14796
  /** deprecated: use external_type_display_name */
14750
14797
  system_type_display_name: string;
14751
14798
  name: string;
@@ -14767,10 +14814,10 @@ interface Routes {
14767
14814
  jsonResponse: {
14768
14815
  acs_systems: Array<{
14769
14816
  acs_system_id: string;
14770
- external_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_system' | 'hid_cm_org' | 'visionline_system' | 'assa_abloy_credential_service_user';
14817
+ external_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_cm_org' | 'visionline_system' | 'assa_abloy_credential_service_user';
14771
14818
  external_type_display_name: string;
14772
14819
  /** deprecated: use external_type */
14773
- system_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_system' | 'hid_cm_org' | 'visionline_system' | 'assa_abloy_credential_service_user';
14820
+ system_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_cm_org' | 'visionline_system' | 'assa_abloy_credential_service_user';
14774
14821
  /** deprecated: use external_type_display_name */
14775
14822
  system_type_display_name: string;
14776
14823
  name: string;
@@ -4732,6 +4732,10 @@ declare const _default: {
4732
4732
  properties: {
4733
4733
  acs_credential: {
4734
4734
  properties: {
4735
+ access_method: {
4736
+ enum: string[];
4737
+ type: string;
4738
+ };
4735
4739
  acs_credential_id: {
4736
4740
  format: string;
4737
4741
  type: string;
@@ -4843,6 +4847,10 @@ declare const _default: {
4843
4847
  properties: {
4844
4848
  acs_credential: {
4845
4849
  properties: {
4850
+ access_method: {
4851
+ enum: string[];
4852
+ type: string;
4853
+ };
4846
4854
  acs_credential_id: {
4847
4855
  format: string;
4848
4856
  type: string;
@@ -4934,6 +4942,10 @@ declare const _default: {
4934
4942
  'application/json': {
4935
4943
  schema: {
4936
4944
  properties: {
4945
+ access_method: {
4946
+ enum: string[];
4947
+ type: string;
4948
+ };
4937
4949
  acs_user_id: {
4938
4950
  format: string;
4939
4951
  type: string;
@@ -4957,6 +4969,10 @@ declare const _default: {
4957
4969
  properties: {
4958
4970
  acs_credential: {
4959
4971
  properties: {
4972
+ access_method: {
4973
+ enum: string[];
4974
+ type: string;
4975
+ };
4960
4976
  acs_credential_id: {
4961
4977
  format: string;
4962
4978
  type: string;
@@ -5132,6 +5148,10 @@ declare const _default: {
5132
5148
  properties: {
5133
5149
  acs_credential: {
5134
5150
  properties: {
5151
+ access_method: {
5152
+ enum: string[];
5153
+ type: string;
5154
+ };
5135
5155
  acs_credential_id: {
5136
5156
  format: string;
5137
5157
  type: string;
@@ -5269,6 +5289,10 @@ declare const _default: {
5269
5289
  acs_credentials: {
5270
5290
  items: {
5271
5291
  properties: {
5292
+ access_method: {
5293
+ enum: string[];
5294
+ type: string;
5295
+ };
5272
5296
  acs_credential_id: {
5273
5297
  format: string;
5274
5298
  type: string;
@@ -5390,6 +5414,10 @@ declare const _default: {
5390
5414
  properties: {
5391
5415
  acs_credential: {
5392
5416
  properties: {
5417
+ access_method: {
5418
+ enum: string[];
5419
+ type: string;
5420
+ };
5393
5421
  acs_credential_id: {
5394
5422
  format: string;
5395
5423
  type: string;
@@ -5501,6 +5529,10 @@ declare const _default: {
5501
5529
  properties: {
5502
5530
  acs_credential: {
5503
5531
  properties: {
5532
+ access_method: {
5533
+ enum: string[];
5534
+ type: string;
5535
+ };
5504
5536
  acs_credential_id: {
5505
5537
  format: string;
5506
5538
  type: string;
@@ -5614,6 +5646,10 @@ declare const _default: {
5614
5646
  properties: {
5615
5647
  acs_credential: {
5616
5648
  properties: {
5649
+ access_method: {
5650
+ enum: string[];
5651
+ type: string;
5652
+ };
5617
5653
  acs_credential_id: {
5618
5654
  format: string;
5619
5655
  type: string;
@@ -5724,6 +5760,10 @@ declare const _default: {
5724
5760
  properties: {
5725
5761
  acs_credential: {
5726
5762
  properties: {
5763
+ access_method: {
5764
+ enum: string[];
5765
+ type: string;
5766
+ };
5727
5767
  acs_credential_id: {
5728
5768
  format: string;
5729
5769
  type: string;
@@ -175,7 +175,7 @@ export default {
175
175
  'pti_site',
176
176
  'alta_org',
177
177
  'salto_site',
178
- 'brivo_system',
178
+ 'brivo_account',
179
179
  'hid_cm_org',
180
180
  'visionline_system',
181
181
  'assa_abloy_credential_service_user',
@@ -190,7 +190,7 @@ export default {
190
190
  'pti_site',
191
191
  'alta_org',
192
192
  'salto_site',
193
- 'brivo_system',
193
+ 'brivo_account',
194
194
  'hid_cm_org',
195
195
  'visionline_system',
196
196
  'assa_abloy_credential_service_user',
@@ -3433,6 +3433,10 @@ export default {
3433
3433
  properties: {
3434
3434
  acs_credential: {
3435
3435
  properties: {
3436
+ access_method: {
3437
+ enum: ['code', 'card', 'mobile_key'],
3438
+ type: 'string',
3439
+ },
3436
3440
  acs_credential_id: { format: 'uuid', type: 'string' },
3437
3441
  acs_credential_pool_id: {
3438
3442
  format: 'uuid',
@@ -3458,6 +3462,7 @@ export default {
3458
3462
  'acs_credential_id',
3459
3463
  'acs_system_id',
3460
3464
  'display_name',
3465
+ 'access_method',
3461
3466
  'external_type',
3462
3467
  'external_type_display_name',
3463
3468
  'created_at',
@@ -3510,6 +3515,10 @@ export default {
3510
3515
  properties: {
3511
3516
  acs_credential: {
3512
3517
  properties: {
3518
+ access_method: {
3519
+ enum: ['code', 'card', 'mobile_key'],
3520
+ type: 'string',
3521
+ },
3513
3522
  acs_credential_id: { format: 'uuid', type: 'string' },
3514
3523
  acs_credential_pool_id: {
3515
3524
  format: 'uuid',
@@ -3535,6 +3544,7 @@ export default {
3535
3544
  'acs_credential_id',
3536
3545
  'acs_system_id',
3537
3546
  'display_name',
3547
+ 'access_method',
3538
3548
  'external_type',
3539
3549
  'external_type_display_name',
3540
3550
  'created_at',
@@ -3573,10 +3583,14 @@ export default {
3573
3583
  'application/json': {
3574
3584
  schema: {
3575
3585
  properties: {
3586
+ access_method: {
3587
+ enum: ['code', 'card', 'mobile_key'],
3588
+ type: 'string',
3589
+ },
3576
3590
  acs_user_id: { format: 'uuid', type: 'string' },
3577
3591
  code: { pattern: '^\\d+$', type: 'string' },
3578
3592
  },
3579
- required: ['acs_user_id', 'code'],
3593
+ required: ['acs_user_id', 'access_method'],
3580
3594
  type: 'object',
3581
3595
  },
3582
3596
  },
@@ -3590,6 +3604,10 @@ export default {
3590
3604
  properties: {
3591
3605
  acs_credential: {
3592
3606
  properties: {
3607
+ access_method: {
3608
+ enum: ['code', 'card', 'mobile_key'],
3609
+ type: 'string',
3610
+ },
3593
3611
  acs_credential_id: { format: 'uuid', type: 'string' },
3594
3612
  acs_credential_pool_id: {
3595
3613
  format: 'uuid',
@@ -3615,6 +3633,7 @@ export default {
3615
3633
  'acs_credential_id',
3616
3634
  'acs_system_id',
3617
3635
  'display_name',
3636
+ 'access_method',
3618
3637
  'external_type',
3619
3638
  'external_type_display_name',
3620
3639
  'created_at',
@@ -3712,6 +3731,10 @@ export default {
3712
3731
  properties: {
3713
3732
  acs_credential: {
3714
3733
  properties: {
3734
+ access_method: {
3735
+ enum: ['code', 'card', 'mobile_key'],
3736
+ type: 'string',
3737
+ },
3715
3738
  acs_credential_id: { format: 'uuid', type: 'string' },
3716
3739
  acs_credential_pool_id: {
3717
3740
  format: 'uuid',
@@ -3737,6 +3760,7 @@ export default {
3737
3760
  'acs_credential_id',
3738
3761
  'acs_system_id',
3739
3762
  'display_name',
3763
+ 'access_method',
3740
3764
  'external_type',
3741
3765
  'external_type_display_name',
3742
3766
  'created_at',
@@ -3811,6 +3835,10 @@ export default {
3811
3835
  acs_credentials: {
3812
3836
  items: {
3813
3837
  properties: {
3838
+ access_method: {
3839
+ enum: ['code', 'card', 'mobile_key'],
3840
+ type: 'string',
3841
+ },
3814
3842
  acs_credential_id: { format: 'uuid', type: 'string' },
3815
3843
  acs_credential_pool_id: {
3816
3844
  format: 'uuid',
@@ -3836,6 +3864,7 @@ export default {
3836
3864
  'acs_credential_id',
3837
3865
  'acs_system_id',
3838
3866
  'display_name',
3867
+ 'access_method',
3839
3868
  'external_type',
3840
3869
  'external_type_display_name',
3841
3870
  'created_at',
@@ -3894,6 +3923,10 @@ export default {
3894
3923
  properties: {
3895
3924
  acs_credential: {
3896
3925
  properties: {
3926
+ access_method: {
3927
+ enum: ['code', 'card', 'mobile_key'],
3928
+ type: 'string',
3929
+ },
3897
3930
  acs_credential_id: { format: 'uuid', type: 'string' },
3898
3931
  acs_credential_pool_id: {
3899
3932
  format: 'uuid',
@@ -3919,6 +3952,7 @@ export default {
3919
3952
  'acs_credential_id',
3920
3953
  'acs_system_id',
3921
3954
  'display_name',
3955
+ 'access_method',
3922
3956
  'external_type',
3923
3957
  'external_type_display_name',
3924
3958
  'created_at',
@@ -3971,6 +4005,10 @@ export default {
3971
4005
  properties: {
3972
4006
  acs_credential: {
3973
4007
  properties: {
4008
+ access_method: {
4009
+ enum: ['code', 'card', 'mobile_key'],
4010
+ type: 'string',
4011
+ },
3974
4012
  acs_credential_id: { format: 'uuid', type: 'string' },
3975
4013
  acs_credential_pool_id: {
3976
4014
  format: 'uuid',
@@ -3996,6 +4034,7 @@ export default {
3996
4034
  'acs_credential_id',
3997
4035
  'acs_system_id',
3998
4036
  'display_name',
4037
+ 'access_method',
3999
4038
  'external_type',
4000
4039
  'external_type_display_name',
4001
4040
  'created_at',
@@ -4051,6 +4090,10 @@ export default {
4051
4090
  properties: {
4052
4091
  acs_credential: {
4053
4092
  properties: {
4093
+ access_method: {
4094
+ enum: ['code', 'card', 'mobile_key'],
4095
+ type: 'string',
4096
+ },
4054
4097
  acs_credential_id: { format: 'uuid', type: 'string' },
4055
4098
  acs_credential_pool_id: {
4056
4099
  format: 'uuid',
@@ -4076,6 +4119,7 @@ export default {
4076
4119
  'acs_credential_id',
4077
4120
  'acs_system_id',
4078
4121
  'display_name',
4122
+ 'access_method',
4079
4123
  'external_type',
4080
4124
  'external_type_display_name',
4081
4125
  'created_at',
@@ -4128,6 +4172,10 @@ export default {
4128
4172
  properties: {
4129
4173
  acs_credential: {
4130
4174
  properties: {
4175
+ access_method: {
4176
+ enum: ['code', 'card', 'mobile_key'],
4177
+ type: 'string',
4178
+ },
4131
4179
  acs_credential_id: { format: 'uuid', type: 'string' },
4132
4180
  acs_credential_pool_id: {
4133
4181
  format: 'uuid',
@@ -4153,6 +4201,7 @@ export default {
4153
4201
  'acs_credential_id',
4154
4202
  'acs_system_id',
4155
4203
  'display_name',
4204
+ 'access_method',
4156
4205
  'external_type',
4157
4206
  'external_type_display_name',
4158
4207
  'created_at',