@seamapi/types 1.39.0 → 1.40.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.
@@ -228,6 +228,11 @@ declare const _default: {
228
228
  type: string;
229
229
  };
230
230
  email: {
231
+ description: string;
232
+ format: string;
233
+ type: string;
234
+ };
235
+ email_address: {
231
236
  format: string;
232
237
  type: string;
233
238
  };
@@ -5261,6 +5266,7 @@ declare const _default: {
5261
5266
  type: string;
5262
5267
  };
5263
5268
  email: {
5269
+ description: string;
5264
5270
  format: string;
5265
5271
  type: string;
5266
5272
  };
@@ -5730,6 +5736,7 @@ declare const _default: {
5730
5736
  type: string;
5731
5737
  };
5732
5738
  email: {
5739
+ description: string;
5733
5740
  format: string;
5734
5741
  type: string;
5735
5742
  };
@@ -5803,6 +5810,7 @@ declare const _default: {
5803
5810
  type: string;
5804
5811
  };
5805
5812
  email: {
5813
+ description: string;
5806
5814
  format: string;
5807
5815
  type: string;
5808
5816
  };
@@ -12937,7 +12945,9 @@ interface Routes {
12937
12945
  external_type_display_name: string;
12938
12946
  is_suspended: boolean;
12939
12947
  full_name?: string | undefined;
12948
+ /** Deprecated: use email_address. */
12940
12949
  email?: string | undefined;
12950
+ email_address?: string | undefined;
12941
12951
  phone_number?: string | undefined;
12942
12952
  }>;
12943
12953
  };
@@ -13118,6 +13128,7 @@ interface Routes {
13118
13128
  acs_system_id: string;
13119
13129
  acs_access_group_ids?: string[];
13120
13130
  full_name?: string | undefined;
13131
+ /** Deprecated: use email_address. */
13121
13132
  email?: string | undefined;
13122
13133
  phone_number?: string | undefined;
13123
13134
  };
@@ -13133,7 +13144,9 @@ interface Routes {
13133
13144
  external_type_display_name: string;
13134
13145
  is_suspended: boolean;
13135
13146
  full_name?: string | undefined;
13147
+ /** Deprecated: use email_address. */
13136
13148
  email?: string | undefined;
13149
+ email_address?: string | undefined;
13137
13150
  phone_number?: string | undefined;
13138
13151
  };
13139
13152
  };
@@ -13169,7 +13182,9 @@ interface Routes {
13169
13182
  external_type_display_name: string;
13170
13183
  is_suspended: boolean;
13171
13184
  full_name?: string | undefined;
13185
+ /** Deprecated: use email_address. */
13172
13186
  email?: string | undefined;
13187
+ email_address?: string | undefined;
13173
13188
  phone_number?: string | undefined;
13174
13189
  };
13175
13190
  };
@@ -13194,7 +13209,9 @@ interface Routes {
13194
13209
  external_type_display_name: string;
13195
13210
  is_suspended: boolean;
13196
13211
  full_name?: string | undefined;
13212
+ /** Deprecated: use email_address. */
13197
13213
  email?: string | undefined;
13214
+ email_address?: string | undefined;
13198
13215
  phone_number?: string | undefined;
13199
13216
  }>;
13200
13217
  };
@@ -13241,6 +13258,7 @@ interface Routes {
13241
13258
  commonParams: {
13242
13259
  acs_user_id: string;
13243
13260
  full_name?: string | undefined;
13261
+ /** Deprecated: use email_address. */
13244
13262
  email?: string | undefined;
13245
13263
  phone_number?: string | undefined;
13246
13264
  };
@@ -16534,7 +16552,9 @@ interface Routes {
16534
16552
  external_type_display_name: string;
16535
16553
  is_suspended: boolean;
16536
16554
  full_name?: string | undefined;
16555
+ /** Deprecated: use email_address. */
16537
16556
  email?: string | undefined;
16557
+ email_address?: string | undefined;
16538
16558
  phone_number?: string | undefined;
16539
16559
  }>;
16540
16560
  };
@@ -177,6 +177,11 @@ declare const _default: {
177
177
  type: string;
178
178
  };
179
179
  email: {
180
+ description: string;
181
+ format: string;
182
+ type: string;
183
+ };
184
+ email_address: {
180
185
  format: string;
181
186
  type: string;
182
187
  };
@@ -5210,6 +5215,7 @@ declare const _default: {
5210
5215
  type: string;
5211
5216
  };
5212
5217
  email: {
5218
+ description: string;
5213
5219
  format: string;
5214
5220
  type: string;
5215
5221
  };
@@ -5679,6 +5685,7 @@ declare const _default: {
5679
5685
  type: string;
5680
5686
  };
5681
5687
  email: {
5688
+ description: string;
5682
5689
  format: string;
5683
5690
  type: string;
5684
5691
  };
@@ -5752,6 +5759,7 @@ declare const _default: {
5752
5759
  type: string;
5753
5760
  };
5754
5761
  email: {
5762
+ description: string;
5755
5763
  format: string;
5756
5764
  type: string;
5757
5765
  };
@@ -129,7 +129,12 @@ export default {
129
129
  acs_user_id: { format: 'uuid', type: 'string' },
130
130
  created_at: { format: 'date-time', type: 'string' },
131
131
  display_name: { type: 'string' },
132
- email: { format: 'email', type: 'string' },
132
+ email: {
133
+ description: 'Deprecated: use email_address.',
134
+ format: 'email',
135
+ type: 'string',
136
+ },
137
+ email_address: { format: 'email', type: 'string' },
133
138
  external_type: { enum: ['pti_user'], type: 'string' },
134
139
  external_type_display_name: { type: 'string' },
135
140
  full_name: { type: 'string' },
@@ -3524,7 +3529,11 @@ export default {
3524
3529
  type: 'array',
3525
3530
  },
3526
3531
  acs_system_id: { format: 'uuid', type: 'string' },
3527
- email: { format: 'email', type: 'string' },
3532
+ email: {
3533
+ description: 'Deprecated: use email_address.',
3534
+ format: 'email',
3535
+ type: 'string',
3536
+ },
3528
3537
  full_name: { type: 'string' },
3529
3538
  phone_number: { nullable: true, type: 'string' },
3530
3539
  },
@@ -3822,7 +3831,11 @@ export default {
3822
3831
  schema: {
3823
3832
  properties: {
3824
3833
  acs_user_id: { format: 'uuid', type: 'string' },
3825
- email: { format: 'email', type: 'string' },
3834
+ email: {
3835
+ description: 'Deprecated: use email_address.',
3836
+ format: 'email',
3837
+ type: 'string',
3838
+ },
3826
3839
  full_name: { type: 'string' },
3827
3840
  phone_number: { nullable: true, type: 'string' },
3828
3841
  },
@@ -3865,7 +3878,11 @@ export default {
3865
3878
  schema: {
3866
3879
  properties: {
3867
3880
  acs_user_id: { format: 'uuid', type: 'string' },
3868
- email: { format: 'email', type: 'string' },
3881
+ email: {
3882
+ description: 'Deprecated: use email_address.',
3883
+ format: 'email',
3884
+ type: 'string',
3885
+ },
3869
3886
  full_name: { type: 'string' },
3870
3887
  phone_number: { nullable: true, type: 'string' },
3871
3888
  },