@socotra/ec-react-schemas 2.16.0-next.1 → 2.16.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/index.d.ts CHANGED
@@ -2922,11 +2922,11 @@ export declare const AssignmentListResponseBffSchema: z.ZodObject<{
2922
2922
  listCompleted: z.ZodBoolean;
2923
2923
  items: z.ZodArray<z.ZodObject<{
2924
2924
  referenceDetails: z.ZodOptional<z.ZodObject<{
2925
- entityNumber: z.ZodString;
2925
+ entityNumber: z.ZodOptional<z.ZodString>;
2926
2926
  }, "strip", z.ZodTypeAny, {
2927
- entityNumber: string;
2927
+ entityNumber?: string | undefined;
2928
2928
  }, {
2929
- entityNumber: string;
2929
+ entityNumber?: string | undefined;
2930
2930
  }>>;
2931
2931
  assignedTo: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2932
2932
  locator: z.ZodString;
@@ -3048,7 +3048,7 @@ export declare const AssignmentListResponseBffSchema: z.ZodObject<{
3048
3048
  isDeleted: boolean;
3049
3049
  } | undefined;
3050
3050
  referenceDetails?: {
3051
- entityNumber: string;
3051
+ entityNumber?: string | undefined;
3052
3052
  } | undefined;
3053
3053
  }, {
3054
3054
  locator: string;
@@ -3087,7 +3087,7 @@ export declare const AssignmentListResponseBffSchema: z.ZodObject<{
3087
3087
  isDeleted: boolean;
3088
3088
  } | undefined;
3089
3089
  referenceDetails?: {
3090
- entityNumber: string;
3090
+ entityNumber?: string | undefined;
3091
3091
  } | undefined;
3092
3092
  }>, "many">;
3093
3093
  }, "strip", z.ZodTypeAny, {
@@ -3128,7 +3128,7 @@ export declare const AssignmentListResponseBffSchema: z.ZodObject<{
3128
3128
  isDeleted: boolean;
3129
3129
  } | undefined;
3130
3130
  referenceDetails?: {
3131
- entityNumber: string;
3131
+ entityNumber?: string | undefined;
3132
3132
  } | undefined;
3133
3133
  }[];
3134
3134
  listCompleted: boolean;
@@ -3170,7 +3170,7 @@ export declare const AssignmentListResponseBffSchema: z.ZodObject<{
3170
3170
  isDeleted: boolean;
3171
3171
  } | undefined;
3172
3172
  referenceDetails?: {
3173
- entityNumber: string;
3173
+ entityNumber?: string | undefined;
3174
3174
  } | undefined;
3175
3175
  }[];
3176
3176
  listCompleted: boolean;
@@ -3260,11 +3260,11 @@ export declare type AssignmentResponseBff = z.infer<typeof AssignmentResponseBff
3260
3260
 
3261
3261
  export declare const AssignmentResponseBffSchema: z.ZodObject<{
3262
3262
  referenceDetails: z.ZodOptional<z.ZodObject<{
3263
- entityNumber: z.ZodString;
3263
+ entityNumber: z.ZodOptional<z.ZodString>;
3264
3264
  }, "strip", z.ZodTypeAny, {
3265
- entityNumber: string;
3265
+ entityNumber?: string | undefined;
3266
3266
  }, {
3267
- entityNumber: string;
3267
+ entityNumber?: string | undefined;
3268
3268
  }>>;
3269
3269
  assignedTo: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
3270
3270
  locator: z.ZodString;
@@ -3386,7 +3386,7 @@ export declare const AssignmentResponseBffSchema: z.ZodObject<{
3386
3386
  isDeleted: boolean;
3387
3387
  } | undefined;
3388
3388
  referenceDetails?: {
3389
- entityNumber: string;
3389
+ entityNumber?: string | undefined;
3390
3390
  } | undefined;
3391
3391
  }, {
3392
3392
  locator: string;
@@ -3425,7 +3425,7 @@ export declare const AssignmentResponseBffSchema: z.ZodObject<{
3425
3425
  isDeleted: boolean;
3426
3426
  } | undefined;
3427
3427
  referenceDetails?: {
3428
- entityNumber: string;
3428
+ entityNumber?: string | undefined;
3429
3429
  } | undefined;
3430
3430
  }>;
3431
3431
 
@@ -3716,18 +3716,18 @@ declare const baseElementCreateRequestSchema: z.ZodObject<{
3716
3716
  type: z.ZodString;
3717
3717
  staticLocator: z.ZodOptional<z.ZodString>;
3718
3718
  parentLocator: z.ZodOptional<z.ZodString>;
3719
- coverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3719
+ coverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3720
3720
  data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3721
3721
  }, "strip", z.ZodTypeAny, {
3722
3722
  type: string;
3723
3723
  data?: Record<string, any> | undefined;
3724
- coverageTerms?: Record<string, string> | undefined;
3724
+ coverageTerms?: Record<string, any> | undefined;
3725
3725
  parentLocator?: string | undefined;
3726
3726
  staticLocator?: string | undefined;
3727
3727
  }, {
3728
3728
  type: string;
3729
3729
  data?: Record<string, any> | undefined;
3730
- coverageTerms?: Record<string, string> | undefined;
3730
+ coverageTerms?: Record<string, any> | undefined;
3731
3731
  parentLocator?: string | undefined;
3732
3732
  staticLocator?: string | undefined;
3733
3733
  }>;
@@ -3740,14 +3740,14 @@ declare const baseElementResponseSchema: z.ZodObject<{
3740
3740
  type: z.ZodString;
3741
3741
  data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3742
3742
  parentLocator: z.ZodOptional<z.ZodString>;
3743
- coverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3743
+ coverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3744
3744
  originalEffectiveTime: z.ZodOptional<z.ZodString>;
3745
3745
  }, "strip", z.ZodTypeAny, {
3746
3746
  locator: string;
3747
3747
  type: string;
3748
3748
  staticLocator: string;
3749
3749
  data?: Record<string, any> | undefined;
3750
- coverageTerms?: Record<string, string> | undefined;
3750
+ coverageTerms?: Record<string, any> | undefined;
3751
3751
  parentLocator?: string | undefined;
3752
3752
  originalEffectiveTime?: string | undefined;
3753
3753
  tenantLocator?: string | undefined;
@@ -3757,7 +3757,7 @@ declare const baseElementResponseSchema: z.ZodObject<{
3757
3757
  type: string;
3758
3758
  staticLocator: string;
3759
3759
  data?: Record<string, any> | undefined;
3760
- coverageTerms?: Record<string, string> | undefined;
3760
+ coverageTerms?: Record<string, any> | undefined;
3761
3761
  parentLocator?: string | undefined;
3762
3762
  originalEffectiveTime?: string | undefined;
3763
3763
  tenantLocator?: string | undefined;
@@ -5193,26 +5193,78 @@ export declare const coverageTermSchema: z.ZodObject<{
5193
5193
  value: z.ZodOptional<z.ZodObject<{
5194
5194
  type: z.ZodString;
5195
5195
  defaultValue: z.ZodOptional<z.ZodString>;
5196
- min: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNumber]>>;
5197
- max: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNumber]>>;
5196
+ minLength: z.ZodOptional<z.ZodNumber>;
5197
+ maxLength: z.ZodOptional<z.ZodNumber>;
5198
+ regex: z.ZodOptional<z.ZodString>;
5199
+ min: z.ZodOptional<z.ZodString>;
5200
+ multiline: z.ZodOptional<z.ZodBoolean>;
5201
+ max: z.ZodOptional<z.ZodString>;
5202
+ options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5203
+ overrides: z.ZodOptional<z.ZodString>;
5204
+ scope: z.ZodOptional<z.ZodString>;
5205
+ inherited: z.ZodOptional<z.ZodBoolean>;
5206
+ precision: z.ZodOptional<z.ZodNumber>;
5207
+ readOnly: z.ZodOptional<z.ZodBoolean>;
5208
+ searchable: z.ZodOptional<z.ZodBoolean>;
5209
+ roundingMode: z.ZodOptional<z.ZodString>;
5210
+ tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5198
5211
  }, "strip", z.ZodTypeAny, {
5199
5212
  type: string;
5213
+ options?: string[] | undefined;
5200
5214
  defaultValue?: string | undefined;
5201
- min?: number | undefined;
5202
- max?: number | undefined;
5215
+ minLength?: number | undefined;
5216
+ maxLength?: number | undefined;
5217
+ regex?: string | undefined;
5218
+ min?: string | undefined;
5219
+ multiline?: boolean | undefined;
5220
+ max?: string | undefined;
5221
+ overrides?: string | undefined;
5222
+ scope?: string | undefined;
5223
+ inherited?: boolean | undefined;
5224
+ precision?: number | undefined;
5225
+ readOnly?: boolean | undefined;
5226
+ searchable?: boolean | undefined;
5227
+ roundingMode?: string | undefined;
5228
+ tag?: string[] | undefined;
5203
5229
  }, {
5204
5230
  type: string;
5231
+ options?: string[] | undefined;
5205
5232
  defaultValue?: string | undefined;
5206
- min?: number | undefined;
5207
- max?: number | undefined;
5233
+ minLength?: number | undefined;
5234
+ maxLength?: number | undefined;
5235
+ regex?: string | undefined;
5236
+ min?: string | undefined;
5237
+ multiline?: boolean | undefined;
5238
+ max?: string | undefined;
5239
+ overrides?: string | undefined;
5240
+ scope?: string | undefined;
5241
+ inherited?: boolean | undefined;
5242
+ precision?: number | undefined;
5243
+ readOnly?: boolean | undefined;
5244
+ searchable?: boolean | undefined;
5245
+ roundingMode?: string | undefined;
5246
+ tag?: string[] | undefined;
5208
5247
  }>>;
5209
5248
  }, "strip", z.ZodTypeAny, {
5210
5249
  type: string;
5211
5250
  value?: {
5212
5251
  type: string;
5252
+ options?: string[] | undefined;
5213
5253
  defaultValue?: string | undefined;
5214
- min?: number | undefined;
5215
- max?: number | undefined;
5254
+ minLength?: number | undefined;
5255
+ maxLength?: number | undefined;
5256
+ regex?: string | undefined;
5257
+ min?: string | undefined;
5258
+ multiline?: boolean | undefined;
5259
+ max?: string | undefined;
5260
+ overrides?: string | undefined;
5261
+ scope?: string | undefined;
5262
+ inherited?: boolean | undefined;
5263
+ precision?: number | undefined;
5264
+ readOnly?: boolean | undefined;
5265
+ searchable?: boolean | undefined;
5266
+ roundingMode?: string | undefined;
5267
+ tag?: string[] | undefined;
5216
5268
  } | undefined;
5217
5269
  options?: Record<string, {
5218
5270
  value?: number | undefined;
@@ -5224,9 +5276,22 @@ export declare const coverageTermSchema: z.ZodObject<{
5224
5276
  type: string;
5225
5277
  value?: {
5226
5278
  type: string;
5279
+ options?: string[] | undefined;
5227
5280
  defaultValue?: string | undefined;
5228
- min?: number | undefined;
5229
- max?: number | undefined;
5281
+ minLength?: number | undefined;
5282
+ maxLength?: number | undefined;
5283
+ regex?: string | undefined;
5284
+ min?: string | undefined;
5285
+ multiline?: boolean | undefined;
5286
+ max?: string | undefined;
5287
+ overrides?: string | undefined;
5288
+ scope?: string | undefined;
5289
+ inherited?: boolean | undefined;
5290
+ precision?: number | undefined;
5291
+ readOnly?: boolean | undefined;
5292
+ searchable?: boolean | undefined;
5293
+ roundingMode?: string | undefined;
5294
+ tag?: string[] | undefined;
5230
5295
  } | undefined;
5231
5296
  options?: Record<string, {
5232
5297
  value?: number | undefined;
@@ -5259,26 +5324,78 @@ export declare const coverageTermsRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
5259
5324
  value: z.ZodOptional<z.ZodObject<{
5260
5325
  type: z.ZodString;
5261
5326
  defaultValue: z.ZodOptional<z.ZodString>;
5262
- min: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNumber]>>;
5263
- max: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNumber]>>;
5327
+ minLength: z.ZodOptional<z.ZodNumber>;
5328
+ maxLength: z.ZodOptional<z.ZodNumber>;
5329
+ regex: z.ZodOptional<z.ZodString>;
5330
+ min: z.ZodOptional<z.ZodString>;
5331
+ multiline: z.ZodOptional<z.ZodBoolean>;
5332
+ max: z.ZodOptional<z.ZodString>;
5333
+ options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5334
+ overrides: z.ZodOptional<z.ZodString>;
5335
+ scope: z.ZodOptional<z.ZodString>;
5336
+ inherited: z.ZodOptional<z.ZodBoolean>;
5337
+ precision: z.ZodOptional<z.ZodNumber>;
5338
+ readOnly: z.ZodOptional<z.ZodBoolean>;
5339
+ searchable: z.ZodOptional<z.ZodBoolean>;
5340
+ roundingMode: z.ZodOptional<z.ZodString>;
5341
+ tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5264
5342
  }, "strip", z.ZodTypeAny, {
5265
5343
  type: string;
5344
+ options?: string[] | undefined;
5266
5345
  defaultValue?: string | undefined;
5267
- min?: number | undefined;
5268
- max?: number | undefined;
5346
+ minLength?: number | undefined;
5347
+ maxLength?: number | undefined;
5348
+ regex?: string | undefined;
5349
+ min?: string | undefined;
5350
+ multiline?: boolean | undefined;
5351
+ max?: string | undefined;
5352
+ overrides?: string | undefined;
5353
+ scope?: string | undefined;
5354
+ inherited?: boolean | undefined;
5355
+ precision?: number | undefined;
5356
+ readOnly?: boolean | undefined;
5357
+ searchable?: boolean | undefined;
5358
+ roundingMode?: string | undefined;
5359
+ tag?: string[] | undefined;
5269
5360
  }, {
5270
5361
  type: string;
5362
+ options?: string[] | undefined;
5271
5363
  defaultValue?: string | undefined;
5272
- min?: number | undefined;
5273
- max?: number | undefined;
5364
+ minLength?: number | undefined;
5365
+ maxLength?: number | undefined;
5366
+ regex?: string | undefined;
5367
+ min?: string | undefined;
5368
+ multiline?: boolean | undefined;
5369
+ max?: string | undefined;
5370
+ overrides?: string | undefined;
5371
+ scope?: string | undefined;
5372
+ inherited?: boolean | undefined;
5373
+ precision?: number | undefined;
5374
+ readOnly?: boolean | undefined;
5375
+ searchable?: boolean | undefined;
5376
+ roundingMode?: string | undefined;
5377
+ tag?: string[] | undefined;
5274
5378
  }>>;
5275
5379
  }, "strip", z.ZodTypeAny, {
5276
5380
  type: string;
5277
5381
  value?: {
5278
5382
  type: string;
5383
+ options?: string[] | undefined;
5279
5384
  defaultValue?: string | undefined;
5280
- min?: number | undefined;
5281
- max?: number | undefined;
5385
+ minLength?: number | undefined;
5386
+ maxLength?: number | undefined;
5387
+ regex?: string | undefined;
5388
+ min?: string | undefined;
5389
+ multiline?: boolean | undefined;
5390
+ max?: string | undefined;
5391
+ overrides?: string | undefined;
5392
+ scope?: string | undefined;
5393
+ inherited?: boolean | undefined;
5394
+ precision?: number | undefined;
5395
+ readOnly?: boolean | undefined;
5396
+ searchable?: boolean | undefined;
5397
+ roundingMode?: string | undefined;
5398
+ tag?: string[] | undefined;
5282
5399
  } | undefined;
5283
5400
  options?: Record<string, {
5284
5401
  value?: number | undefined;
@@ -5290,9 +5407,22 @@ export declare const coverageTermsRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
5290
5407
  type: string;
5291
5408
  value?: {
5292
5409
  type: string;
5410
+ options?: string[] | undefined;
5293
5411
  defaultValue?: string | undefined;
5294
- min?: number | undefined;
5295
- max?: number | undefined;
5412
+ minLength?: number | undefined;
5413
+ maxLength?: number | undefined;
5414
+ regex?: string | undefined;
5415
+ min?: string | undefined;
5416
+ multiline?: boolean | undefined;
5417
+ max?: string | undefined;
5418
+ overrides?: string | undefined;
5419
+ scope?: string | undefined;
5420
+ inherited?: boolean | undefined;
5421
+ precision?: number | undefined;
5422
+ readOnly?: boolean | undefined;
5423
+ searchable?: boolean | undefined;
5424
+ roundingMode?: string | undefined;
5425
+ tag?: string[] | undefined;
5296
5426
  } | undefined;
5297
5427
  options?: Record<string, {
5298
5428
  value?: number | undefined;
@@ -7573,26 +7703,78 @@ export declare const dataModelSchema: z.ZodObject<{
7573
7703
  value: z.ZodOptional<z.ZodObject<{
7574
7704
  type: z.ZodString;
7575
7705
  defaultValue: z.ZodOptional<z.ZodString>;
7576
- min: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNumber]>>;
7577
- max: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNumber]>>;
7706
+ minLength: z.ZodOptional<z.ZodNumber>;
7707
+ maxLength: z.ZodOptional<z.ZodNumber>;
7708
+ regex: z.ZodOptional<z.ZodString>;
7709
+ min: z.ZodOptional<z.ZodString>;
7710
+ multiline: z.ZodOptional<z.ZodBoolean>;
7711
+ max: z.ZodOptional<z.ZodString>;
7712
+ options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7713
+ overrides: z.ZodOptional<z.ZodString>;
7714
+ scope: z.ZodOptional<z.ZodString>;
7715
+ inherited: z.ZodOptional<z.ZodBoolean>;
7716
+ precision: z.ZodOptional<z.ZodNumber>;
7717
+ readOnly: z.ZodOptional<z.ZodBoolean>;
7718
+ searchable: z.ZodOptional<z.ZodBoolean>;
7719
+ roundingMode: z.ZodOptional<z.ZodString>;
7720
+ tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7578
7721
  }, "strip", z.ZodTypeAny, {
7579
7722
  type: string;
7723
+ options?: string[] | undefined;
7580
7724
  defaultValue?: string | undefined;
7581
- min?: number | undefined;
7582
- max?: number | undefined;
7725
+ minLength?: number | undefined;
7726
+ maxLength?: number | undefined;
7727
+ regex?: string | undefined;
7728
+ min?: string | undefined;
7729
+ multiline?: boolean | undefined;
7730
+ max?: string | undefined;
7731
+ overrides?: string | undefined;
7732
+ scope?: string | undefined;
7733
+ inherited?: boolean | undefined;
7734
+ precision?: number | undefined;
7735
+ readOnly?: boolean | undefined;
7736
+ searchable?: boolean | undefined;
7737
+ roundingMode?: string | undefined;
7738
+ tag?: string[] | undefined;
7583
7739
  }, {
7584
7740
  type: string;
7741
+ options?: string[] | undefined;
7585
7742
  defaultValue?: string | undefined;
7586
- min?: number | undefined;
7587
- max?: number | undefined;
7743
+ minLength?: number | undefined;
7744
+ maxLength?: number | undefined;
7745
+ regex?: string | undefined;
7746
+ min?: string | undefined;
7747
+ multiline?: boolean | undefined;
7748
+ max?: string | undefined;
7749
+ overrides?: string | undefined;
7750
+ scope?: string | undefined;
7751
+ inherited?: boolean | undefined;
7752
+ precision?: number | undefined;
7753
+ readOnly?: boolean | undefined;
7754
+ searchable?: boolean | undefined;
7755
+ roundingMode?: string | undefined;
7756
+ tag?: string[] | undefined;
7588
7757
  }>>;
7589
7758
  }, "strip", z.ZodTypeAny, {
7590
7759
  type: string;
7591
7760
  value?: {
7592
7761
  type: string;
7762
+ options?: string[] | undefined;
7593
7763
  defaultValue?: string | undefined;
7594
- min?: number | undefined;
7595
- max?: number | undefined;
7764
+ minLength?: number | undefined;
7765
+ maxLength?: number | undefined;
7766
+ regex?: string | undefined;
7767
+ min?: string | undefined;
7768
+ multiline?: boolean | undefined;
7769
+ max?: string | undefined;
7770
+ overrides?: string | undefined;
7771
+ scope?: string | undefined;
7772
+ inherited?: boolean | undefined;
7773
+ precision?: number | undefined;
7774
+ readOnly?: boolean | undefined;
7775
+ searchable?: boolean | undefined;
7776
+ roundingMode?: string | undefined;
7777
+ tag?: string[] | undefined;
7596
7778
  } | undefined;
7597
7779
  options?: Record<string, {
7598
7780
  value?: number | undefined;
@@ -7604,9 +7786,22 @@ export declare const dataModelSchema: z.ZodObject<{
7604
7786
  type: string;
7605
7787
  value?: {
7606
7788
  type: string;
7789
+ options?: string[] | undefined;
7607
7790
  defaultValue?: string | undefined;
7608
- min?: number | undefined;
7609
- max?: number | undefined;
7791
+ minLength?: number | undefined;
7792
+ maxLength?: number | undefined;
7793
+ regex?: string | undefined;
7794
+ min?: string | undefined;
7795
+ multiline?: boolean | undefined;
7796
+ max?: string | undefined;
7797
+ overrides?: string | undefined;
7798
+ scope?: string | undefined;
7799
+ inherited?: boolean | undefined;
7800
+ precision?: number | undefined;
7801
+ readOnly?: boolean | undefined;
7802
+ searchable?: boolean | undefined;
7803
+ roundingMode?: string | undefined;
7804
+ tag?: string[] | undefined;
7610
7805
  } | undefined;
7611
7806
  options?: Record<string, {
7612
7807
  value?: number | undefined;
@@ -9140,9 +9335,22 @@ export declare const dataModelSchema: z.ZodObject<{
9140
9335
  type: string;
9141
9336
  value?: {
9142
9337
  type: string;
9338
+ options?: string[] | undefined;
9143
9339
  defaultValue?: string | undefined;
9144
- min?: number | undefined;
9145
- max?: number | undefined;
9340
+ minLength?: number | undefined;
9341
+ maxLength?: number | undefined;
9342
+ regex?: string | undefined;
9343
+ min?: string | undefined;
9344
+ multiline?: boolean | undefined;
9345
+ max?: string | undefined;
9346
+ overrides?: string | undefined;
9347
+ scope?: string | undefined;
9348
+ inherited?: boolean | undefined;
9349
+ precision?: number | undefined;
9350
+ readOnly?: boolean | undefined;
9351
+ searchable?: boolean | undefined;
9352
+ roundingMode?: string | undefined;
9353
+ tag?: string[] | undefined;
9146
9354
  } | undefined;
9147
9355
  options?: Record<string, {
9148
9356
  value?: number | undefined;
@@ -9590,9 +9798,22 @@ export declare const dataModelSchema: z.ZodObject<{
9590
9798
  type: string;
9591
9799
  value?: {
9592
9800
  type: string;
9801
+ options?: string[] | undefined;
9593
9802
  defaultValue?: string | undefined;
9594
- min?: number | undefined;
9595
- max?: number | undefined;
9803
+ minLength?: number | undefined;
9804
+ maxLength?: number | undefined;
9805
+ regex?: string | undefined;
9806
+ min?: string | undefined;
9807
+ multiline?: boolean | undefined;
9808
+ max?: string | undefined;
9809
+ overrides?: string | undefined;
9810
+ scope?: string | undefined;
9811
+ inherited?: boolean | undefined;
9812
+ precision?: number | undefined;
9813
+ readOnly?: boolean | undefined;
9814
+ searchable?: boolean | undefined;
9815
+ roundingMode?: string | undefined;
9816
+ tag?: string[] | undefined;
9596
9817
  } | undefined;
9597
9818
  options?: Record<string, {
9598
9819
  value?: number | undefined;
@@ -14425,21 +14646,21 @@ export declare const modifyChangeInstructionCreateRequestSchema: z.ZodObject<{
14425
14646
  action: z.ZodLiteral<"modify">;
14426
14647
  removeCoverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
14427
14648
  removeData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
14428
- setCoverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
14649
+ setCoverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
14429
14650
  setData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
14430
14651
  }, "strip", z.ZodTypeAny, {
14431
14652
  action: "modify";
14432
14653
  staticLocator: string;
14433
14654
  setData?: Record<string, any> | undefined;
14434
14655
  removeData?: Record<string, any> | undefined;
14435
- setCoverageTerms?: Record<string, string> | undefined;
14656
+ setCoverageTerms?: Record<string, any> | undefined;
14436
14657
  removeCoverageTerms?: Record<string, any> | undefined;
14437
14658
  }, {
14438
14659
  action: "modify";
14439
14660
  staticLocator: string;
14440
14661
  setData?: Record<string, any> | undefined;
14441
14662
  removeData?: Record<string, any> | undefined;
14442
- setCoverageTerms?: Record<string, string> | undefined;
14663
+ setCoverageTerms?: Record<string, any> | undefined;
14443
14664
  removeCoverageTerms?: Record<string, any> | undefined;
14444
14665
  }>;
14445
14666
 
@@ -14480,7 +14701,7 @@ export declare const modifyChangeInstructionResponseSchema: z.ZodObject<{
14480
14701
  locator: z.ZodString;
14481
14702
  removeCoverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
14482
14703
  removeData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
14483
- setCoverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
14704
+ setCoverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
14484
14705
  setData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
14485
14706
  }, "strip", z.ZodTypeAny, {
14486
14707
  locator: string;
@@ -14488,7 +14709,7 @@ export declare const modifyChangeInstructionResponseSchema: z.ZodObject<{
14488
14709
  staticLocator: string;
14489
14710
  setData?: Record<string, any> | undefined;
14490
14711
  removeData?: Record<string, any> | undefined;
14491
- setCoverageTerms?: Record<string, string> | undefined;
14712
+ setCoverageTerms?: Record<string, any> | undefined;
14492
14713
  removeCoverageTerms?: Record<string, any> | undefined;
14493
14714
  }, {
14494
14715
  locator: string;
@@ -14496,7 +14717,7 @@ export declare const modifyChangeInstructionResponseSchema: z.ZodObject<{
14496
14717
  staticLocator: string;
14497
14718
  setData?: Record<string, any> | undefined;
14498
14719
  removeData?: Record<string, any> | undefined;
14499
- setCoverageTerms?: Record<string, string> | undefined;
14720
+ setCoverageTerms?: Record<string, any> | undefined;
14500
14721
  removeCoverageTerms?: Record<string, any> | undefined;
14501
14722
  }>;
14502
14723
 
@@ -17333,7 +17554,7 @@ export declare const policySnapshotResponseSchema: z.ZodObject<{
17333
17554
  type: string;
17334
17555
  staticLocator: string;
17335
17556
  data?: Record<string, any> | undefined;
17336
- coverageTerms?: Record<string, string> | undefined;
17557
+ coverageTerms?: Record<string, any> | undefined;
17337
17558
  parentLocator?: string | undefined;
17338
17559
  originalEffectiveTime?: string | undefined;
17339
17560
  tenantLocator?: string | undefined;
@@ -17344,7 +17565,7 @@ export declare const policySnapshotResponseSchema: z.ZodObject<{
17344
17565
  type: string;
17345
17566
  staticLocator: string;
17346
17567
  data?: Record<string, any> | undefined;
17347
- coverageTerms?: Record<string, string> | undefined;
17568
+ coverageTerms?: Record<string, any> | undefined;
17348
17569
  parentLocator?: string | undefined;
17349
17570
  originalEffectiveTime?: string | undefined;
17350
17571
  tenantLocator?: string | undefined;
@@ -17355,7 +17576,7 @@ export declare const policySnapshotResponseSchema: z.ZodObject<{
17355
17576
  type: string;
17356
17577
  staticLocator: string;
17357
17578
  data?: Record<string, any> | undefined;
17358
- coverageTerms?: Record<string, string> | undefined;
17579
+ coverageTerms?: Record<string, any> | undefined;
17359
17580
  parentLocator?: string | undefined;
17360
17581
  originalEffectiveTime?: string | undefined;
17361
17582
  tenantLocator?: string | undefined;
@@ -17366,7 +17587,7 @@ export declare const policySnapshotResponseSchema: z.ZodObject<{
17366
17587
  type: string;
17367
17588
  staticLocator: string;
17368
17589
  data?: Record<string, any> | undefined;
17369
- coverageTerms?: Record<string, string> | undefined;
17590
+ coverageTerms?: Record<string, any> | undefined;
17370
17591
  parentLocator?: string | undefined;
17371
17592
  originalEffectiveTime?: string | undefined;
17372
17593
  tenantLocator?: string | undefined;
@@ -17386,7 +17607,7 @@ export declare const policySnapshotResponseSchema: z.ZodObject<{
17386
17607
  type: string;
17387
17608
  staticLocator: string;
17388
17609
  data?: Record<string, any> | undefined;
17389
- coverageTerms?: Record<string, string> | undefined;
17610
+ coverageTerms?: Record<string, any> | undefined;
17390
17611
  parentLocator?: string | undefined;
17391
17612
  originalEffectiveTime?: string | undefined;
17392
17613
  tenantLocator?: string | undefined;
@@ -17397,7 +17618,7 @@ export declare const policySnapshotResponseSchema: z.ZodObject<{
17397
17618
  type: string;
17398
17619
  staticLocator: string;
17399
17620
  data?: Record<string, any> | undefined;
17400
- coverageTerms?: Record<string, string> | undefined;
17621
+ coverageTerms?: Record<string, any> | undefined;
17401
17622
  parentLocator?: string | undefined;
17402
17623
  originalEffectiveTime?: string | undefined;
17403
17624
  tenantLocator?: string | undefined;
@@ -17416,7 +17637,7 @@ export declare const policySnapshotResponseSchema: z.ZodObject<{
17416
17637
  type: string;
17417
17638
  staticLocator: string;
17418
17639
  data?: Record<string, any> | undefined;
17419
- coverageTerms?: Record<string, string> | undefined;
17640
+ coverageTerms?: Record<string, any> | undefined;
17420
17641
  parentLocator?: string | undefined;
17421
17642
  originalEffectiveTime?: string | undefined;
17422
17643
  tenantLocator?: string | undefined;
@@ -17427,7 +17648,7 @@ export declare const policySnapshotResponseSchema: z.ZodObject<{
17427
17648
  type: string;
17428
17649
  staticLocator: string;
17429
17650
  data?: Record<string, any> | undefined;
17430
- coverageTerms?: Record<string, string> | undefined;
17651
+ coverageTerms?: Record<string, any> | undefined;
17431
17652
  parentLocator?: string | undefined;
17432
17653
  originalEffectiveTime?: string | undefined;
17433
17654
  tenantLocator?: string | undefined;
@@ -17451,7 +17672,7 @@ export declare const policySnapshotResponseSchema: z.ZodObject<{
17451
17672
  type: string;
17452
17673
  staticLocator: string;
17453
17674
  data?: Record<string, any> | undefined;
17454
- coverageTerms?: Record<string, string> | undefined;
17675
+ coverageTerms?: Record<string, any> | undefined;
17455
17676
  parentLocator?: string | undefined;
17456
17677
  originalEffectiveTime?: string | undefined;
17457
17678
  tenantLocator?: string | undefined;
@@ -17462,7 +17683,7 @@ export declare const policySnapshotResponseSchema: z.ZodObject<{
17462
17683
  type: string;
17463
17684
  staticLocator: string;
17464
17685
  data?: Record<string, any> | undefined;
17465
- coverageTerms?: Record<string, string> | undefined;
17686
+ coverageTerms?: Record<string, any> | undefined;
17466
17687
  parentLocator?: string | undefined;
17467
17688
  originalEffectiveTime?: string | undefined;
17468
17689
  tenantLocator?: string | undefined;
@@ -17507,7 +17728,7 @@ export declare const policySnapshotResponseSchema: z.ZodObject<{
17507
17728
  type: string;
17508
17729
  staticLocator: string;
17509
17730
  data?: Record<string, any> | undefined;
17510
- coverageTerms?: Record<string, string> | undefined;
17731
+ coverageTerms?: Record<string, any> | undefined;
17511
17732
  parentLocator?: string | undefined;
17512
17733
  originalEffectiveTime?: string | undefined;
17513
17734
  tenantLocator?: string | undefined;
@@ -17518,7 +17739,7 @@ export declare const policySnapshotResponseSchema: z.ZodObject<{
17518
17739
  type: string;
17519
17740
  staticLocator: string;
17520
17741
  data?: Record<string, any> | undefined;
17521
- coverageTerms?: Record<string, string> | undefined;
17742
+ coverageTerms?: Record<string, any> | undefined;
17522
17743
  parentLocator?: string | undefined;
17523
17744
  originalEffectiveTime?: string | undefined;
17524
17745
  tenantLocator?: string | undefined;
@@ -17568,7 +17789,7 @@ export declare const policySnapshotResponseSchema: z.ZodObject<{
17568
17789
  type: string;
17569
17790
  staticLocator: string;
17570
17791
  data?: Record<string, any> | undefined;
17571
- coverageTerms?: Record<string, string> | undefined;
17792
+ coverageTerms?: Record<string, any> | undefined;
17572
17793
  parentLocator?: string | undefined;
17573
17794
  originalEffectiveTime?: string | undefined;
17574
17795
  tenantLocator?: string | undefined;
@@ -17579,7 +17800,7 @@ export declare const policySnapshotResponseSchema: z.ZodObject<{
17579
17800
  type: string;
17580
17801
  staticLocator: string;
17581
17802
  data?: Record<string, any> | undefined;
17582
- coverageTerms?: Record<string, string> | undefined;
17803
+ coverageTerms?: Record<string, any> | undefined;
17583
17804
  parentLocator?: string | undefined;
17584
17805
  originalEffectiveTime?: string | undefined;
17585
17806
  tenantLocator?: string | undefined;
@@ -17633,7 +17854,7 @@ export declare const policySnapshotResponseSchema: z.ZodObject<{
17633
17854
  type: string;
17634
17855
  staticLocator: string;
17635
17856
  data?: Record<string, any> | undefined;
17636
- coverageTerms?: Record<string, string> | undefined;
17857
+ coverageTerms?: Record<string, any> | undefined;
17637
17858
  parentLocator?: string | undefined;
17638
17859
  originalEffectiveTime?: string | undefined;
17639
17860
  tenantLocator?: string | undefined;
@@ -17644,7 +17865,7 @@ export declare const policySnapshotResponseSchema: z.ZodObject<{
17644
17865
  type: string;
17645
17866
  staticLocator: string;
17646
17867
  data?: Record<string, any> | undefined;
17647
- coverageTerms?: Record<string, string> | undefined;
17868
+ coverageTerms?: Record<string, any> | undefined;
17648
17869
  parentLocator?: string | undefined;
17649
17870
  originalEffectiveTime?: string | undefined;
17650
17871
  tenantLocator?: string | undefined;
@@ -23351,25 +23572,6 @@ export declare const productConfigSchema: z.ZodObject<z.objectUtil.extendShape<{
23351
23572
  tables?: any;
23352
23573
  }>;
23353
23574
 
23354
- export declare type PropertyRef = z.infer<typeof PropertyRefSchema>;
23355
-
23356
- export declare const PropertyRefSchema: z.ZodObject<{
23357
- type: z.ZodString;
23358
- defaultValue: z.ZodOptional<z.ZodString>;
23359
- min: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNumber]>>;
23360
- max: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNumber]>>;
23361
- }, "strip", z.ZodTypeAny, {
23362
- type: string;
23363
- defaultValue?: string | undefined;
23364
- min?: number | undefined;
23365
- max?: number | undefined;
23366
- }, {
23367
- type: string;
23368
- defaultValue?: string | undefined;
23369
- min?: number | undefined;
23370
- max?: number | undefined;
23371
- }>;
23372
-
23373
23575
  export declare type QualifiedUser = z.infer<typeof QualifiedUserSchema>;
23374
23576
 
23375
23577
  export declare type QualifiedUserBff = z.infer<typeof QualifiedUserBffSchema>;
@@ -25831,7 +26033,7 @@ export declare const quoteResponseSchema: z.ZodObject<{
25831
26033
  type: string;
25832
26034
  staticLocator: string;
25833
26035
  data?: Record<string, any> | undefined;
25834
- coverageTerms?: Record<string, string> | undefined;
26036
+ coverageTerms?: Record<string, any> | undefined;
25835
26037
  parentLocator?: string | undefined;
25836
26038
  originalEffectiveTime?: string | undefined;
25837
26039
  tenantLocator?: string | undefined;
@@ -25842,7 +26044,7 @@ export declare const quoteResponseSchema: z.ZodObject<{
25842
26044
  type: string;
25843
26045
  staticLocator: string;
25844
26046
  data?: Record<string, any> | undefined;
25845
- coverageTerms?: Record<string, string> | undefined;
26047
+ coverageTerms?: Record<string, any> | undefined;
25846
26048
  parentLocator?: string | undefined;
25847
26049
  originalEffectiveTime?: string | undefined;
25848
26050
  tenantLocator?: string | undefined;
@@ -25853,7 +26055,7 @@ export declare const quoteResponseSchema: z.ZodObject<{
25853
26055
  type: string;
25854
26056
  staticLocator: string;
25855
26057
  data?: Record<string, any> | undefined;
25856
- coverageTerms?: Record<string, string> | undefined;
26058
+ coverageTerms?: Record<string, any> | undefined;
25857
26059
  parentLocator?: string | undefined;
25858
26060
  originalEffectiveTime?: string | undefined;
25859
26061
  tenantLocator?: string | undefined;
@@ -25864,7 +26066,7 @@ export declare const quoteResponseSchema: z.ZodObject<{
25864
26066
  type: string;
25865
26067
  staticLocator: string;
25866
26068
  data?: Record<string, any> | undefined;
25867
- coverageTerms?: Record<string, string> | undefined;
26069
+ coverageTerms?: Record<string, any> | undefined;
25868
26070
  parentLocator?: string | undefined;
25869
26071
  originalEffectiveTime?: string | undefined;
25870
26072
  tenantLocator?: string | undefined;
@@ -25912,7 +26114,7 @@ export declare const quoteResponseSchema: z.ZodObject<{
25912
26114
  autoRenewalPlanName: z.ZodOptional<z.ZodString>;
25913
26115
  billingLevel: z.ZodOptional<z.ZodEnum<["account", "inherit", "policy"]>>;
25914
26116
  billingTrigger: z.ZodOptional<z.ZodEnum<["accept", "issue"]>>;
25915
- coverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
26117
+ coverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
25916
26118
  groupLocator: z.ZodOptional<z.ZodString>;
25917
26119
  }, "strip", z.ZodTypeAny, {
25918
26120
  locator: string;
@@ -25922,7 +26124,7 @@ export declare const quoteResponseSchema: z.ZodObject<{
25922
26124
  type?: string | undefined;
25923
26125
  billingLevel?: "account" | "inherit" | "policy" | undefined;
25924
26126
  billingTrigger?: "accept" | "issue" | undefined;
25925
- coverageTerms?: Record<string, string> | undefined;
26127
+ coverageTerms?: Record<string, any> | undefined;
25926
26128
  policyLocator?: string | undefined;
25927
26129
  currency?: string | undefined;
25928
26130
  startTime?: string | undefined;
@@ -25941,7 +26143,7 @@ export declare const quoteResponseSchema: z.ZodObject<{
25941
26143
  type: string;
25942
26144
  staticLocator: string;
25943
26145
  data?: Record<string, any> | undefined;
25944
- coverageTerms?: Record<string, string> | undefined;
26146
+ coverageTerms?: Record<string, any> | undefined;
25945
26147
  parentLocator?: string | undefined;
25946
26148
  originalEffectiveTime?: string | undefined;
25947
26149
  tenantLocator?: string | undefined;
@@ -25952,7 +26154,7 @@ export declare const quoteResponseSchema: z.ZodObject<{
25952
26154
  type: string;
25953
26155
  staticLocator: string;
25954
26156
  data?: Record<string, any> | undefined;
25955
- coverageTerms?: Record<string, string> | undefined;
26157
+ coverageTerms?: Record<string, any> | undefined;
25956
26158
  parentLocator?: string | undefined;
25957
26159
  originalEffectiveTime?: string | undefined;
25958
26160
  tenantLocator?: string | undefined;
@@ -25977,7 +26179,7 @@ export declare const quoteResponseSchema: z.ZodObject<{
25977
26179
  type?: string | undefined;
25978
26180
  billingLevel?: "account" | "inherit" | "policy" | undefined;
25979
26181
  billingTrigger?: "accept" | "issue" | undefined;
25980
- coverageTerms?: Record<string, string> | undefined;
26182
+ coverageTerms?: Record<string, any> | undefined;
25981
26183
  policyLocator?: string | undefined;
25982
26184
  currency?: string | undefined;
25983
26185
  startTime?: string | undefined;
@@ -25996,7 +26198,7 @@ export declare const quoteResponseSchema: z.ZodObject<{
25996
26198
  type: string;
25997
26199
  staticLocator: string;
25998
26200
  data?: Record<string, any> | undefined;
25999
- coverageTerms?: Record<string, string> | undefined;
26201
+ coverageTerms?: Record<string, any> | undefined;
26000
26202
  parentLocator?: string | undefined;
26001
26203
  originalEffectiveTime?: string | undefined;
26002
26204
  tenantLocator?: string | undefined;
@@ -26007,7 +26209,7 @@ export declare const quoteResponseSchema: z.ZodObject<{
26007
26209
  type: string;
26008
26210
  staticLocator: string;
26009
26211
  data?: Record<string, any> | undefined;
26010
- coverageTerms?: Record<string, string> | undefined;
26212
+ coverageTerms?: Record<string, any> | undefined;
26011
26213
  parentLocator?: string | undefined;
26012
26214
  originalEffectiveTime?: string | undefined;
26013
26215
  tenantLocator?: string | undefined;
@@ -27351,7 +27553,7 @@ export declare const segmentResponseSchema: z.ZodObject<{
27351
27553
  type: string;
27352
27554
  staticLocator: string;
27353
27555
  data?: Record<string, any> | undefined;
27354
- coverageTerms?: Record<string, string> | undefined;
27556
+ coverageTerms?: Record<string, any> | undefined;
27355
27557
  parentLocator?: string | undefined;
27356
27558
  originalEffectiveTime?: string | undefined;
27357
27559
  tenantLocator?: string | undefined;
@@ -27362,7 +27564,7 @@ export declare const segmentResponseSchema: z.ZodObject<{
27362
27564
  type: string;
27363
27565
  staticLocator: string;
27364
27566
  data?: Record<string, any> | undefined;
27365
- coverageTerms?: Record<string, string> | undefined;
27567
+ coverageTerms?: Record<string, any> | undefined;
27366
27568
  parentLocator?: string | undefined;
27367
27569
  originalEffectiveTime?: string | undefined;
27368
27570
  tenantLocator?: string | undefined;
@@ -27373,7 +27575,7 @@ export declare const segmentResponseSchema: z.ZodObject<{
27373
27575
  type: string;
27374
27576
  staticLocator: string;
27375
27577
  data?: Record<string, any> | undefined;
27376
- coverageTerms?: Record<string, string> | undefined;
27578
+ coverageTerms?: Record<string, any> | undefined;
27377
27579
  parentLocator?: string | undefined;
27378
27580
  originalEffectiveTime?: string | undefined;
27379
27581
  tenantLocator?: string | undefined;
@@ -27384,7 +27586,7 @@ export declare const segmentResponseSchema: z.ZodObject<{
27384
27586
  type: string;
27385
27587
  staticLocator: string;
27386
27588
  data?: Record<string, any> | undefined;
27387
- coverageTerms?: Record<string, string> | undefined;
27589
+ coverageTerms?: Record<string, any> | undefined;
27388
27590
  parentLocator?: string | undefined;
27389
27591
  originalEffectiveTime?: string | undefined;
27390
27592
  tenantLocator?: string | undefined;
@@ -27404,7 +27606,7 @@ export declare const segmentResponseSchema: z.ZodObject<{
27404
27606
  type: string;
27405
27607
  staticLocator: string;
27406
27608
  data?: Record<string, any> | undefined;
27407
- coverageTerms?: Record<string, string> | undefined;
27609
+ coverageTerms?: Record<string, any> | undefined;
27408
27610
  parentLocator?: string | undefined;
27409
27611
  originalEffectiveTime?: string | undefined;
27410
27612
  tenantLocator?: string | undefined;
@@ -27415,7 +27617,7 @@ export declare const segmentResponseSchema: z.ZodObject<{
27415
27617
  type: string;
27416
27618
  staticLocator: string;
27417
27619
  data?: Record<string, any> | undefined;
27418
- coverageTerms?: Record<string, string> | undefined;
27620
+ coverageTerms?: Record<string, any> | undefined;
27419
27621
  parentLocator?: string | undefined;
27420
27622
  originalEffectiveTime?: string | undefined;
27421
27623
  tenantLocator?: string | undefined;
@@ -27434,7 +27636,7 @@ export declare const segmentResponseSchema: z.ZodObject<{
27434
27636
  type: string;
27435
27637
  staticLocator: string;
27436
27638
  data?: Record<string, any> | undefined;
27437
- coverageTerms?: Record<string, string> | undefined;
27639
+ coverageTerms?: Record<string, any> | undefined;
27438
27640
  parentLocator?: string | undefined;
27439
27641
  originalEffectiveTime?: string | undefined;
27440
27642
  tenantLocator?: string | undefined;
@@ -27445,7 +27647,7 @@ export declare const segmentResponseSchema: z.ZodObject<{
27445
27647
  type: string;
27446
27648
  staticLocator: string;
27447
27649
  data?: Record<string, any> | undefined;
27448
- coverageTerms?: Record<string, string> | undefined;
27650
+ coverageTerms?: Record<string, any> | undefined;
27449
27651
  parentLocator?: string | undefined;
27450
27652
  originalEffectiveTime?: string | undefined;
27451
27653
  tenantLocator?: string | undefined;
@@ -28972,7 +29174,7 @@ export declare const transactionSnapshotResponseSchema: z.ZodObject<{
28972
29174
  type: string;
28973
29175
  staticLocator: string;
28974
29176
  data?: Record<string, any> | undefined;
28975
- coverageTerms?: Record<string, string> | undefined;
29177
+ coverageTerms?: Record<string, any> | undefined;
28976
29178
  parentLocator?: string | undefined;
28977
29179
  originalEffectiveTime?: string | undefined;
28978
29180
  tenantLocator?: string | undefined;
@@ -28983,7 +29185,7 @@ export declare const transactionSnapshotResponseSchema: z.ZodObject<{
28983
29185
  type: string;
28984
29186
  staticLocator: string;
28985
29187
  data?: Record<string, any> | undefined;
28986
- coverageTerms?: Record<string, string> | undefined;
29188
+ coverageTerms?: Record<string, any> | undefined;
28987
29189
  parentLocator?: string | undefined;
28988
29190
  originalEffectiveTime?: string | undefined;
28989
29191
  tenantLocator?: string | undefined;
@@ -28994,7 +29196,7 @@ export declare const transactionSnapshotResponseSchema: z.ZodObject<{
28994
29196
  type: string;
28995
29197
  staticLocator: string;
28996
29198
  data?: Record<string, any> | undefined;
28997
- coverageTerms?: Record<string, string> | undefined;
29199
+ coverageTerms?: Record<string, any> | undefined;
28998
29200
  parentLocator?: string | undefined;
28999
29201
  originalEffectiveTime?: string | undefined;
29000
29202
  tenantLocator?: string | undefined;
@@ -29005,7 +29207,7 @@ export declare const transactionSnapshotResponseSchema: z.ZodObject<{
29005
29207
  type: string;
29006
29208
  staticLocator: string;
29007
29209
  data?: Record<string, any> | undefined;
29008
- coverageTerms?: Record<string, string> | undefined;
29210
+ coverageTerms?: Record<string, any> | undefined;
29009
29211
  parentLocator?: string | undefined;
29010
29212
  originalEffectiveTime?: string | undefined;
29011
29213
  tenantLocator?: string | undefined;
@@ -29025,7 +29227,7 @@ export declare const transactionSnapshotResponseSchema: z.ZodObject<{
29025
29227
  type: string;
29026
29228
  staticLocator: string;
29027
29229
  data?: Record<string, any> | undefined;
29028
- coverageTerms?: Record<string, string> | undefined;
29230
+ coverageTerms?: Record<string, any> | undefined;
29029
29231
  parentLocator?: string | undefined;
29030
29232
  originalEffectiveTime?: string | undefined;
29031
29233
  tenantLocator?: string | undefined;
@@ -29036,7 +29238,7 @@ export declare const transactionSnapshotResponseSchema: z.ZodObject<{
29036
29238
  type: string;
29037
29239
  staticLocator: string;
29038
29240
  data?: Record<string, any> | undefined;
29039
- coverageTerms?: Record<string, string> | undefined;
29241
+ coverageTerms?: Record<string, any> | undefined;
29040
29242
  parentLocator?: string | undefined;
29041
29243
  originalEffectiveTime?: string | undefined;
29042
29244
  tenantLocator?: string | undefined;
@@ -29055,7 +29257,7 @@ export declare const transactionSnapshotResponseSchema: z.ZodObject<{
29055
29257
  type: string;
29056
29258
  staticLocator: string;
29057
29259
  data?: Record<string, any> | undefined;
29058
- coverageTerms?: Record<string, string> | undefined;
29260
+ coverageTerms?: Record<string, any> | undefined;
29059
29261
  parentLocator?: string | undefined;
29060
29262
  originalEffectiveTime?: string | undefined;
29061
29263
  tenantLocator?: string | undefined;
@@ -29066,7 +29268,7 @@ export declare const transactionSnapshotResponseSchema: z.ZodObject<{
29066
29268
  type: string;
29067
29269
  staticLocator: string;
29068
29270
  data?: Record<string, any> | undefined;
29069
- coverageTerms?: Record<string, string> | undefined;
29271
+ coverageTerms?: Record<string, any> | undefined;
29070
29272
  parentLocator?: string | undefined;
29071
29273
  originalEffectiveTime?: string | undefined;
29072
29274
  tenantLocator?: string | undefined;
@@ -29090,7 +29292,7 @@ export declare const transactionSnapshotResponseSchema: z.ZodObject<{
29090
29292
  type: string;
29091
29293
  staticLocator: string;
29092
29294
  data?: Record<string, any> | undefined;
29093
- coverageTerms?: Record<string, string> | undefined;
29295
+ coverageTerms?: Record<string, any> | undefined;
29094
29296
  parentLocator?: string | undefined;
29095
29297
  originalEffectiveTime?: string | undefined;
29096
29298
  tenantLocator?: string | undefined;
@@ -29101,7 +29303,7 @@ export declare const transactionSnapshotResponseSchema: z.ZodObject<{
29101
29303
  type: string;
29102
29304
  staticLocator: string;
29103
29305
  data?: Record<string, any> | undefined;
29104
- coverageTerms?: Record<string, string> | undefined;
29306
+ coverageTerms?: Record<string, any> | undefined;
29105
29307
  parentLocator?: string | undefined;
29106
29308
  originalEffectiveTime?: string | undefined;
29107
29309
  tenantLocator?: string | undefined;
@@ -29146,7 +29348,7 @@ export declare const transactionSnapshotResponseSchema: z.ZodObject<{
29146
29348
  type: string;
29147
29349
  staticLocator: string;
29148
29350
  data?: Record<string, any> | undefined;
29149
- coverageTerms?: Record<string, string> | undefined;
29351
+ coverageTerms?: Record<string, any> | undefined;
29150
29352
  parentLocator?: string | undefined;
29151
29353
  originalEffectiveTime?: string | undefined;
29152
29354
  tenantLocator?: string | undefined;
@@ -29157,7 +29359,7 @@ export declare const transactionSnapshotResponseSchema: z.ZodObject<{
29157
29359
  type: string;
29158
29360
  staticLocator: string;
29159
29361
  data?: Record<string, any> | undefined;
29160
- coverageTerms?: Record<string, string> | undefined;
29362
+ coverageTerms?: Record<string, any> | undefined;
29161
29363
  parentLocator?: string | undefined;
29162
29364
  originalEffectiveTime?: string | undefined;
29163
29365
  tenantLocator?: string | undefined;