@seamapi/types 1.44.1 → 1.45.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.
@@ -4636,6 +4636,10 @@ declare const _default: {
4636
4636
  format: string;
4637
4637
  type: string;
4638
4638
  };
4639
+ display_name: {
4640
+ minLength: number;
4641
+ type: string;
4642
+ };
4639
4643
  external_type: {
4640
4644
  enum: string[];
4641
4645
  type: string;
@@ -4803,6 +4807,10 @@ declare const _default: {
4803
4807
  format: string;
4804
4808
  type: string;
4805
4809
  };
4810
+ display_name: {
4811
+ minLength: number;
4812
+ type: string;
4813
+ };
4806
4814
  external_type: {
4807
4815
  enum: string[];
4808
4816
  type: string;
@@ -4932,6 +4940,10 @@ declare const _default: {
4932
4940
  format: string;
4933
4941
  type: string;
4934
4942
  };
4943
+ display_name: {
4944
+ minLength: number;
4945
+ type: string;
4946
+ };
4935
4947
  external_type: {
4936
4948
  enum: string[];
4937
4949
  type: string;
@@ -13148,6 +13160,7 @@ interface Routes {
13148
13160
  acs_credential_id: string;
13149
13161
  acs_user_id?: string | undefined;
13150
13162
  acs_system_id: string;
13163
+ display_name: string;
13151
13164
  code: string | null;
13152
13165
  external_type: 'pti_card' | 'brivo_credential';
13153
13166
  external_type_display_name: string;
@@ -13181,6 +13194,7 @@ interface Routes {
13181
13194
  acs_credential_id: string;
13182
13195
  acs_user_id?: string | undefined;
13183
13196
  acs_system_id: string;
13197
+ display_name: string;
13184
13198
  code: string | null;
13185
13199
  external_type: 'pti_card' | 'brivo_credential';
13186
13200
  external_type_display_name: string;
@@ -13208,6 +13222,7 @@ interface Routes {
13208
13222
  acs_credential_id: string;
13209
13223
  acs_user_id?: string | undefined;
13210
13224
  acs_system_id: string;
13225
+ display_name: string;
13211
13226
  code: string | null;
13212
13227
  external_type: 'pti_card' | 'brivo_credential';
13213
13228
  external_type_display_name: string;
@@ -4559,6 +4559,10 @@ declare const _default: {
4559
4559
  format: string;
4560
4560
  type: string;
4561
4561
  };
4562
+ display_name: {
4563
+ minLength: number;
4564
+ type: string;
4565
+ };
4562
4566
  external_type: {
4563
4567
  enum: string[];
4564
4568
  type: string;
@@ -4726,6 +4730,10 @@ declare const _default: {
4726
4730
  format: string;
4727
4731
  type: string;
4728
4732
  };
4733
+ display_name: {
4734
+ minLength: number;
4735
+ type: string;
4736
+ };
4729
4737
  external_type: {
4730
4738
  enum: string[];
4731
4739
  type: string;
@@ -4855,6 +4863,10 @@ declare const _default: {
4855
4863
  format: string;
4856
4864
  type: string;
4857
4865
  };
4866
+ display_name: {
4867
+ minLength: number;
4868
+ type: string;
4869
+ };
4858
4870
  external_type: {
4859
4871
  enum: string[];
4860
4872
  type: string;
@@ -3096,6 +3096,7 @@ export default {
3096
3096
  acs_user_id: { format: 'uuid', type: 'string' },
3097
3097
  code: { nullable: true, type: 'string' },
3098
3098
  created_at: { format: 'date-time', type: 'string' },
3099
+ display_name: { minLength: 1, type: 'string' },
3099
3100
  external_type: {
3100
3101
  enum: ['pti_card', 'brivo_credential'],
3101
3102
  type: 'string',
@@ -3106,6 +3107,7 @@ export default {
3106
3107
  required: [
3107
3108
  'acs_credential_id',
3108
3109
  'acs_system_id',
3110
+ 'display_name',
3109
3111
  'code',
3110
3112
  'external_type',
3111
3113
  'external_type_display_name',
@@ -3209,6 +3211,7 @@ export default {
3209
3211
  acs_user_id: { format: 'uuid', type: 'string' },
3210
3212
  code: { nullable: true, type: 'string' },
3211
3213
  created_at: { format: 'date-time', type: 'string' },
3214
+ display_name: { minLength: 1, type: 'string' },
3212
3215
  external_type: {
3213
3216
  enum: ['pti_card', 'brivo_credential'],
3214
3217
  type: 'string',
@@ -3219,6 +3222,7 @@ export default {
3219
3222
  required: [
3220
3223
  'acs_credential_id',
3221
3224
  'acs_system_id',
3225
+ 'display_name',
3222
3226
  'code',
3223
3227
  'external_type',
3224
3228
  'external_type_display_name',
@@ -3299,6 +3303,7 @@ export default {
3299
3303
  acs_user_id: { format: 'uuid', type: 'string' },
3300
3304
  code: { nullable: true, type: 'string' },
3301
3305
  created_at: { format: 'date-time', type: 'string' },
3306
+ display_name: { minLength: 1, type: 'string' },
3302
3307
  external_type: {
3303
3308
  enum: ['pti_card', 'brivo_credential'],
3304
3309
  type: 'string',
@@ -3309,6 +3314,7 @@ export default {
3309
3314
  required: [
3310
3315
  'acs_credential_id',
3311
3316
  'acs_system_id',
3317
+ 'display_name',
3312
3318
  'code',
3313
3319
  'external_type',
3314
3320
  'external_type_display_name',