@socotra/ec-react-schemas 2.30.0-next.3 → 2.30.0-next.5
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/README.md +1 -1
- package/dist/index.d.ts +316 -30
- package/dist/index.es.js +3190 -3207
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +6 -6
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -322,7 +322,7 @@ Follow instructions in the `packages/docs/README.md` file to build the documenta
|
|
|
322
322
|
| Zod Schema | Type |
|
|
323
323
|
|------------|------
|
|
324
324
|
| `transactionTypeCategorySchema` | `TransactionTypeCategory` |
|
|
325
|
-
| `
|
|
325
|
+
| `TransactionTypeSchema` | `TransactionType` |
|
|
326
326
|
| `transactionTypesRecordsSchema` | |
|
|
327
327
|
| | `TransactionTypeConfigRecord` |
|
|
328
328
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1935,6 +1935,8 @@ export declare const ContactValidateRequestSchema: z.ZodObject<{
|
|
|
1935
1935
|
query: z.ZodOptional<z.ZodNever>;
|
|
1936
1936
|
}, z.core.$strip>;
|
|
1937
1937
|
|
|
1938
|
+
export declare type CoverageTerm = z.infer<typeof coverageTermSchema>;
|
|
1939
|
+
|
|
1938
1940
|
export declare type CoverageTermOption = z.infer<typeof coverageTermOptionSchema>;
|
|
1939
1941
|
|
|
1940
1942
|
export declare const coverageTermOptionSchema: z.ZodObject<{
|
|
@@ -3343,8 +3345,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
3343
3345
|
}>;
|
|
3344
3346
|
costBearing: z.ZodBoolean;
|
|
3345
3347
|
displayHints: z.ZodOptional<z.ZodObject<{
|
|
3346
|
-
displayName: z.ZodString
|
|
3347
|
-
displayOrder: z.
|
|
3348
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
3349
|
+
displayOrder: z.ZodOptional<z.ZodInt>;
|
|
3348
3350
|
}, z.core.$strip>>;
|
|
3349
3351
|
}, z.core.$strip>>>;
|
|
3350
3352
|
reversalTypes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -3982,10 +3984,7 @@ export declare type DataTypeConfig = z.infer<typeof dataTypeConfigSchema>;
|
|
|
3982
3984
|
export declare type DataTypeConfigRecord = z.infer<typeof dataTypesRecordSchema>;
|
|
3983
3985
|
|
|
3984
3986
|
export declare const dataTypeConfigSchema: z.ZodObject<{
|
|
3985
|
-
|
|
3986
|
-
extend: z.ZodOptional<z.ZodString>;
|
|
3987
|
-
displayName: z.ZodOptional<z.ZodString>;
|
|
3988
|
-
data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3987
|
+
data: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3989
3988
|
displayName: z.ZodOptional<z.ZodString>;
|
|
3990
3989
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3991
3990
|
type: z.ZodOptional<z.ZodString>;
|
|
@@ -4011,14 +4010,15 @@ export declare const dataTypeConfigSchema: z.ZodObject<{
|
|
|
4011
4010
|
}, z.core.$strip>>>;
|
|
4012
4011
|
}, z.core.$strip>>;
|
|
4013
4012
|
tag: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4014
|
-
}, z.core.$strip
|
|
4013
|
+
}, z.core.$strip>>>>;
|
|
4014
|
+
displayName: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4015
|
+
abstract: z.ZodOptional<z.ZodBoolean>;
|
|
4016
|
+
extend: z.ZodOptional<z.ZodString>;
|
|
4017
|
+
defaultSearchable: z.ZodOptional<z.ZodBoolean>;
|
|
4015
4018
|
}, z.core.$strip>;
|
|
4016
4019
|
|
|
4017
4020
|
export declare const dataTypesRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4018
|
-
|
|
4019
|
-
extend: z.ZodOptional<z.ZodString>;
|
|
4020
|
-
displayName: z.ZodOptional<z.ZodString>;
|
|
4021
|
-
data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4021
|
+
data: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4022
4022
|
displayName: z.ZodOptional<z.ZodString>;
|
|
4023
4023
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4024
4024
|
type: z.ZodOptional<z.ZodString>;
|
|
@@ -4044,7 +4044,11 @@ export declare const dataTypesRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject
|
|
|
4044
4044
|
}, z.core.$strip>>>;
|
|
4045
4045
|
}, z.core.$strip>>;
|
|
4046
4046
|
tag: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4047
|
-
}, z.core.$strip
|
|
4047
|
+
}, z.core.$strip>>>>;
|
|
4048
|
+
displayName: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4049
|
+
abstract: z.ZodOptional<z.ZodBoolean>;
|
|
4050
|
+
extend: z.ZodOptional<z.ZodString>;
|
|
4051
|
+
defaultSearchable: z.ZodOptional<z.ZodBoolean>;
|
|
4048
4052
|
}, z.core.$strip>>;
|
|
4049
4053
|
|
|
4050
4054
|
export declare const DatetimeWithOffsetZ: z.ZodISODateTime;
|
|
@@ -5288,10 +5292,13 @@ export declare const ElementCategoryEnumSchema: z.ZodEnum<{
|
|
|
5288
5292
|
policyLine: "policyLine";
|
|
5289
5293
|
}>;
|
|
5290
5294
|
|
|
5295
|
+
/** @deprecated - use ElementConfig instead */
|
|
5291
5296
|
export declare type ElementConfig = z.infer<typeof elementConfigSchema>;
|
|
5292
5297
|
|
|
5298
|
+
/** @deprecated - use ElementRefRecord instead */
|
|
5293
5299
|
export declare type ElementConfigRecord = z.infer<typeof elementConfigRecordSchema>;
|
|
5294
5300
|
|
|
5301
|
+
/** @deprecated - use elementRefRecordSchema instead */
|
|
5295
5302
|
export declare const elementConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5296
5303
|
displayName: z.ZodOptional<z.ZodString>;
|
|
5297
5304
|
contents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -5329,6 +5336,7 @@ export declare const elementConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
5329
5336
|
defaultSearchable: z.ZodOptional<z.ZodBoolean>;
|
|
5330
5337
|
}, z.core.$strip>>;
|
|
5331
5338
|
|
|
5339
|
+
/** @deprecated - use elementRefSchema instead */
|
|
5332
5340
|
export declare const elementConfigSchema: z.ZodObject<{
|
|
5333
5341
|
displayName: z.ZodOptional<z.ZodString>;
|
|
5334
5342
|
contents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -8666,10 +8674,7 @@ export declare const policySnapshotResponseSchema: z.ZodObject<{
|
|
|
8666
8674
|
}, z.core.$strip>>;
|
|
8667
8675
|
}, z.core.$strip>>;
|
|
8668
8676
|
segment: z.ZodObject<{
|
|
8669
|
-
|
|
8670
|
-
startTime: z.ZodString;
|
|
8671
|
-
endTime: z.ZodString;
|
|
8672
|
-
duration: z.ZodNumber;
|
|
8677
|
+
transactionLocator: z.ZodOptional<z.ZodString>;
|
|
8673
8678
|
element: z.ZodType<{
|
|
8674
8679
|
locator: string;
|
|
8675
8680
|
staticLocator: string;
|
|
@@ -8715,11 +8720,16 @@ export declare const policySnapshotResponseSchema: z.ZodObject<{
|
|
|
8715
8720
|
originalEffectiveTime?: string | undefined;
|
|
8716
8721
|
} & /*elided*/ any)[];
|
|
8717
8722
|
}, unknown>>;
|
|
8723
|
+
locator: z.ZodString;
|
|
8718
8724
|
segmentType: z.ZodEnum<{
|
|
8719
8725
|
coverage: "coverage";
|
|
8720
8726
|
gap: "gap";
|
|
8721
8727
|
}>;
|
|
8728
|
+
startTime: z.ZodISODateTime;
|
|
8729
|
+
endTime: z.ZodISODateTime;
|
|
8730
|
+
duration: z.ZodNumber;
|
|
8722
8731
|
basedOn: z.ZodOptional<z.ZodString>;
|
|
8732
|
+
anonymizedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
8723
8733
|
}, z.core.$strip>;
|
|
8724
8734
|
transactionCategory: z.ZodEnum<{
|
|
8725
8735
|
issuance: "issuance";
|
|
@@ -9700,6 +9710,275 @@ export declare const PreferencesSchema: z.ZodObject<{
|
|
|
9700
9710
|
|
|
9701
9711
|
export declare type PrimitiveValue = string | number | boolean | null | undefined;
|
|
9702
9712
|
|
|
9713
|
+
export declare type ProducerCodeRef = z.infer<typeof producerCodeRefSchema>;
|
|
9714
|
+
|
|
9715
|
+
export declare const producerCodeRefSchema: z.ZodObject<{
|
|
9716
|
+
displayName: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9717
|
+
abstract: z.ZodOptional<z.ZodBoolean>;
|
|
9718
|
+
extend: z.ZodOptional<z.ZodString>;
|
|
9719
|
+
defaultSearchable: z.ZodOptional<z.ZodBoolean>;
|
|
9720
|
+
numberingPlan: z.ZodOptional<z.ZodString>;
|
|
9721
|
+
data: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9722
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
9723
|
+
type: z.ZodString;
|
|
9724
|
+
scope: z.ZodString;
|
|
9725
|
+
defaultValue: z.ZodString;
|
|
9726
|
+
min: z.ZodString;
|
|
9727
|
+
max: z.ZodString;
|
|
9728
|
+
minLength: z.ZodInt;
|
|
9729
|
+
maxLength: z.ZodInt;
|
|
9730
|
+
precision: z.ZodInt;
|
|
9731
|
+
options: z.ZodArray<z.ZodString>;
|
|
9732
|
+
regex: z.ZodString;
|
|
9733
|
+
roundingMode: z.ZodEnum<{
|
|
9734
|
+
ceiling: "ceiling";
|
|
9735
|
+
down: "down";
|
|
9736
|
+
floor: "floor";
|
|
9737
|
+
halfDown: "halfDown";
|
|
9738
|
+
halfEven: "halfEven";
|
|
9739
|
+
halfUp: "halfUp";
|
|
9740
|
+
up: "up";
|
|
9741
|
+
}>;
|
|
9742
|
+
tag: z.ZodArray<z.ZodString>;
|
|
9743
|
+
constraint: z.ZodObject<{
|
|
9744
|
+
table: z.ZodString;
|
|
9745
|
+
column: z.ZodString;
|
|
9746
|
+
where: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9747
|
+
key: z.ZodString;
|
|
9748
|
+
values: z.ZodArray<z.ZodString>;
|
|
9749
|
+
}, z.core.$strip>>;
|
|
9750
|
+
}, z.core.$strip>;
|
|
9751
|
+
searchable: z.ZodBoolean;
|
|
9752
|
+
availability: z.ZodOptional<z.ZodObject<{
|
|
9753
|
+
availableAfter: z.ZodISODateTime;
|
|
9754
|
+
availabilityTimeBasis: z.ZodString;
|
|
9755
|
+
retireAfter: z.ZodISODateTime;
|
|
9756
|
+
retire: z.ZodBoolean;
|
|
9757
|
+
retirementTimeBasis: z.ZodString;
|
|
9758
|
+
removeOnRenewalAfter: z.ZodISODateTime;
|
|
9759
|
+
removeOnRenewal: z.ZodBoolean;
|
|
9760
|
+
}, z.core.$strip>>;
|
|
9761
|
+
restrictedData: z.ZodObject<{
|
|
9762
|
+
anonymizable: z.ZodBoolean;
|
|
9763
|
+
maskingLevel: z.ZodEnum<{
|
|
9764
|
+
none: "none";
|
|
9765
|
+
level1: "level1";
|
|
9766
|
+
level2: "level2";
|
|
9767
|
+
}>;
|
|
9768
|
+
value: z.ZodObject<{
|
|
9769
|
+
string: z.ZodString;
|
|
9770
|
+
int: z.ZodInt;
|
|
9771
|
+
long: z.ZodCoercedBigInt<unknown>;
|
|
9772
|
+
guid: z.ZodString;
|
|
9773
|
+
date: z.ZodISODate;
|
|
9774
|
+
datetime: z.ZodISODateTime;
|
|
9775
|
+
decimal: z.ZodNumber;
|
|
9776
|
+
}, z.core.$strip>;
|
|
9777
|
+
}, z.core.$strip>;
|
|
9778
|
+
}, z.core.$strip>>>>;
|
|
9779
|
+
}, z.core.$strip>;
|
|
9780
|
+
|
|
9781
|
+
export declare type ProducerManagementRef = z.infer<typeof producerManagementRefSchema>;
|
|
9782
|
+
|
|
9783
|
+
export declare const producerManagementRefSchema: z.ZodObject<{
|
|
9784
|
+
producers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9785
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
9786
|
+
abstract: z.ZodBoolean;
|
|
9787
|
+
extend: z.ZodString;
|
|
9788
|
+
defaultSearchable: z.ZodBoolean;
|
|
9789
|
+
data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9790
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
9791
|
+
type: z.ZodString;
|
|
9792
|
+
scope: z.ZodString;
|
|
9793
|
+
defaultValue: z.ZodString;
|
|
9794
|
+
min: z.ZodString;
|
|
9795
|
+
max: z.ZodString;
|
|
9796
|
+
minLength: z.ZodInt;
|
|
9797
|
+
maxLength: z.ZodInt;
|
|
9798
|
+
precision: z.ZodInt;
|
|
9799
|
+
options: z.ZodArray<z.ZodString>;
|
|
9800
|
+
regex: z.ZodString;
|
|
9801
|
+
roundingMode: z.ZodEnum<{
|
|
9802
|
+
ceiling: "ceiling";
|
|
9803
|
+
down: "down";
|
|
9804
|
+
floor: "floor";
|
|
9805
|
+
halfDown: "halfDown";
|
|
9806
|
+
halfEven: "halfEven";
|
|
9807
|
+
halfUp: "halfUp";
|
|
9808
|
+
up: "up";
|
|
9809
|
+
}>;
|
|
9810
|
+
tag: z.ZodArray<z.ZodString>;
|
|
9811
|
+
constraint: z.ZodObject<{
|
|
9812
|
+
table: z.ZodString;
|
|
9813
|
+
column: z.ZodString;
|
|
9814
|
+
where: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9815
|
+
key: z.ZodString;
|
|
9816
|
+
values: z.ZodArray<z.ZodString>;
|
|
9817
|
+
}, z.core.$strip>>;
|
|
9818
|
+
}, z.core.$strip>;
|
|
9819
|
+
searchable: z.ZodBoolean;
|
|
9820
|
+
availability: z.ZodOptional<z.ZodObject<{
|
|
9821
|
+
availableAfter: z.ZodISODateTime;
|
|
9822
|
+
availabilityTimeBasis: z.ZodString;
|
|
9823
|
+
retireAfter: z.ZodISODateTime;
|
|
9824
|
+
retire: z.ZodBoolean;
|
|
9825
|
+
retirementTimeBasis: z.ZodString;
|
|
9826
|
+
removeOnRenewalAfter: z.ZodISODateTime;
|
|
9827
|
+
removeOnRenewal: z.ZodBoolean;
|
|
9828
|
+
}, z.core.$strip>>;
|
|
9829
|
+
restrictedData: z.ZodObject<{
|
|
9830
|
+
anonymizable: z.ZodBoolean;
|
|
9831
|
+
maskingLevel: z.ZodEnum<{
|
|
9832
|
+
none: "none";
|
|
9833
|
+
level1: "level1";
|
|
9834
|
+
level2: "level2";
|
|
9835
|
+
}>;
|
|
9836
|
+
value: z.ZodObject<{
|
|
9837
|
+
string: z.ZodString;
|
|
9838
|
+
int: z.ZodInt;
|
|
9839
|
+
long: z.ZodCoercedBigInt<unknown>;
|
|
9840
|
+
guid: z.ZodString;
|
|
9841
|
+
date: z.ZodISODate;
|
|
9842
|
+
datetime: z.ZodISODateTime;
|
|
9843
|
+
decimal: z.ZodNumber;
|
|
9844
|
+
}, z.core.$strip>;
|
|
9845
|
+
}, z.core.$strip>;
|
|
9846
|
+
}, z.core.$strip>>>;
|
|
9847
|
+
}, z.core.$strip>>>;
|
|
9848
|
+
producerCodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9849
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
9850
|
+
abstract: z.ZodBoolean;
|
|
9851
|
+
extend: z.ZodString;
|
|
9852
|
+
defaultSearchable: z.ZodBoolean;
|
|
9853
|
+
numberingPlan: z.ZodString;
|
|
9854
|
+
data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9855
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
9856
|
+
type: z.ZodString;
|
|
9857
|
+
scope: z.ZodString;
|
|
9858
|
+
defaultValue: z.ZodString;
|
|
9859
|
+
min: z.ZodString;
|
|
9860
|
+
max: z.ZodString;
|
|
9861
|
+
minLength: z.ZodInt;
|
|
9862
|
+
maxLength: z.ZodInt;
|
|
9863
|
+
precision: z.ZodInt;
|
|
9864
|
+
options: z.ZodArray<z.ZodString>;
|
|
9865
|
+
regex: z.ZodString;
|
|
9866
|
+
roundingMode: z.ZodEnum<{
|
|
9867
|
+
ceiling: "ceiling";
|
|
9868
|
+
down: "down";
|
|
9869
|
+
floor: "floor";
|
|
9870
|
+
halfDown: "halfDown";
|
|
9871
|
+
halfEven: "halfEven";
|
|
9872
|
+
halfUp: "halfUp";
|
|
9873
|
+
up: "up";
|
|
9874
|
+
}>;
|
|
9875
|
+
tag: z.ZodArray<z.ZodString>;
|
|
9876
|
+
constraint: z.ZodObject<{
|
|
9877
|
+
table: z.ZodString;
|
|
9878
|
+
column: z.ZodString;
|
|
9879
|
+
where: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9880
|
+
key: z.ZodString;
|
|
9881
|
+
values: z.ZodArray<z.ZodString>;
|
|
9882
|
+
}, z.core.$strip>>;
|
|
9883
|
+
}, z.core.$strip>;
|
|
9884
|
+
searchable: z.ZodBoolean;
|
|
9885
|
+
availability: z.ZodOptional<z.ZodObject<{
|
|
9886
|
+
availableAfter: z.ZodISODateTime;
|
|
9887
|
+
availabilityTimeBasis: z.ZodString;
|
|
9888
|
+
retireAfter: z.ZodISODateTime;
|
|
9889
|
+
retire: z.ZodBoolean;
|
|
9890
|
+
retirementTimeBasis: z.ZodString;
|
|
9891
|
+
removeOnRenewalAfter: z.ZodISODateTime;
|
|
9892
|
+
removeOnRenewal: z.ZodBoolean;
|
|
9893
|
+
}, z.core.$strip>>;
|
|
9894
|
+
restrictedData: z.ZodObject<{
|
|
9895
|
+
anonymizable: z.ZodBoolean;
|
|
9896
|
+
maskingLevel: z.ZodEnum<{
|
|
9897
|
+
none: "none";
|
|
9898
|
+
level1: "level1";
|
|
9899
|
+
level2: "level2";
|
|
9900
|
+
}>;
|
|
9901
|
+
value: z.ZodObject<{
|
|
9902
|
+
string: z.ZodString;
|
|
9903
|
+
int: z.ZodInt;
|
|
9904
|
+
long: z.ZodCoercedBigInt<unknown>;
|
|
9905
|
+
guid: z.ZodString;
|
|
9906
|
+
date: z.ZodISODate;
|
|
9907
|
+
datetime: z.ZodISODateTime;
|
|
9908
|
+
decimal: z.ZodNumber;
|
|
9909
|
+
}, z.core.$strip>;
|
|
9910
|
+
}, z.core.$strip>;
|
|
9911
|
+
}, z.core.$strip>>>;
|
|
9912
|
+
}, z.core.$strip>>>;
|
|
9913
|
+
}, z.core.$strip>;
|
|
9914
|
+
|
|
9915
|
+
export declare type ProducerRef = z.infer<typeof producerRefSchema>;
|
|
9916
|
+
|
|
9917
|
+
export declare const producerRefSchema: z.ZodObject<{
|
|
9918
|
+
displayName: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9919
|
+
abstract: z.ZodOptional<z.ZodBoolean>;
|
|
9920
|
+
extend: z.ZodOptional<z.ZodString>;
|
|
9921
|
+
defaultSearchable: z.ZodOptional<z.ZodBoolean>;
|
|
9922
|
+
data: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9923
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
9924
|
+
type: z.ZodString;
|
|
9925
|
+
scope: z.ZodString;
|
|
9926
|
+
defaultValue: z.ZodString;
|
|
9927
|
+
min: z.ZodString;
|
|
9928
|
+
max: z.ZodString;
|
|
9929
|
+
minLength: z.ZodInt;
|
|
9930
|
+
maxLength: z.ZodInt;
|
|
9931
|
+
precision: z.ZodInt;
|
|
9932
|
+
options: z.ZodArray<z.ZodString>;
|
|
9933
|
+
regex: z.ZodString;
|
|
9934
|
+
roundingMode: z.ZodEnum<{
|
|
9935
|
+
ceiling: "ceiling";
|
|
9936
|
+
down: "down";
|
|
9937
|
+
floor: "floor";
|
|
9938
|
+
halfDown: "halfDown";
|
|
9939
|
+
halfEven: "halfEven";
|
|
9940
|
+
halfUp: "halfUp";
|
|
9941
|
+
up: "up";
|
|
9942
|
+
}>;
|
|
9943
|
+
tag: z.ZodArray<z.ZodString>;
|
|
9944
|
+
constraint: z.ZodObject<{
|
|
9945
|
+
table: z.ZodString;
|
|
9946
|
+
column: z.ZodString;
|
|
9947
|
+
where: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9948
|
+
key: z.ZodString;
|
|
9949
|
+
values: z.ZodArray<z.ZodString>;
|
|
9950
|
+
}, z.core.$strip>>;
|
|
9951
|
+
}, z.core.$strip>;
|
|
9952
|
+
searchable: z.ZodBoolean;
|
|
9953
|
+
availability: z.ZodOptional<z.ZodObject<{
|
|
9954
|
+
availableAfter: z.ZodISODateTime;
|
|
9955
|
+
availabilityTimeBasis: z.ZodString;
|
|
9956
|
+
retireAfter: z.ZodISODateTime;
|
|
9957
|
+
retire: z.ZodBoolean;
|
|
9958
|
+
retirementTimeBasis: z.ZodString;
|
|
9959
|
+
removeOnRenewalAfter: z.ZodISODateTime;
|
|
9960
|
+
removeOnRenewal: z.ZodBoolean;
|
|
9961
|
+
}, z.core.$strip>>;
|
|
9962
|
+
restrictedData: z.ZodObject<{
|
|
9963
|
+
anonymizable: z.ZodBoolean;
|
|
9964
|
+
maskingLevel: z.ZodEnum<{
|
|
9965
|
+
none: "none";
|
|
9966
|
+
level1: "level1";
|
|
9967
|
+
level2: "level2";
|
|
9968
|
+
}>;
|
|
9969
|
+
value: z.ZodObject<{
|
|
9970
|
+
string: z.ZodString;
|
|
9971
|
+
int: z.ZodInt;
|
|
9972
|
+
long: z.ZodCoercedBigInt<unknown>;
|
|
9973
|
+
guid: z.ZodString;
|
|
9974
|
+
date: z.ZodISODate;
|
|
9975
|
+
datetime: z.ZodISODateTime;
|
|
9976
|
+
decimal: z.ZodNumber;
|
|
9977
|
+
}, z.core.$strip>;
|
|
9978
|
+
}, z.core.$strip>;
|
|
9979
|
+
}, z.core.$strip>>>>;
|
|
9980
|
+
}, z.core.$strip>;
|
|
9981
|
+
|
|
9703
9982
|
export declare type ProductConfig = z.infer<typeof productConfigSchema>;
|
|
9704
9983
|
|
|
9705
9984
|
export declare type ProductConfigRecord = z.infer<typeof productConfigRecordSchema>;
|
|
@@ -11381,6 +11660,7 @@ export declare const QuoteResponseSchema: z.ZodObject<{
|
|
|
11381
11660
|
createdAt: z.ZodOptional<z.ZodISODateTime>;
|
|
11382
11661
|
}, z.core.$strip>;
|
|
11383
11662
|
|
|
11663
|
+
/** @deprecated - use QuoteResponse instead */
|
|
11384
11664
|
export declare type QuoteResponseType = z.infer<typeof QuoteResponseSchema>;
|
|
11385
11665
|
|
|
11386
11666
|
export declare type QuoteState = z.infer<typeof quoteStateSchema>;
|
|
@@ -12156,10 +12436,7 @@ export declare const SegmentIdSchema: z.ZodULID;
|
|
|
12156
12436
|
export declare type SegmentResponse = z.infer<typeof segmentResponseSchema>;
|
|
12157
12437
|
|
|
12158
12438
|
export declare const segmentResponseSchema: z.ZodObject<{
|
|
12159
|
-
|
|
12160
|
-
startTime: z.ZodString;
|
|
12161
|
-
endTime: z.ZodString;
|
|
12162
|
-
duration: z.ZodNumber;
|
|
12439
|
+
transactionLocator: z.ZodOptional<z.ZodString>;
|
|
12163
12440
|
element: z.ZodType<{
|
|
12164
12441
|
locator: string;
|
|
12165
12442
|
staticLocator: string;
|
|
@@ -12205,11 +12482,16 @@ export declare const segmentResponseSchema: z.ZodObject<{
|
|
|
12205
12482
|
originalEffectiveTime?: string | undefined;
|
|
12206
12483
|
} & /*elided*/ any)[];
|
|
12207
12484
|
}, unknown>>;
|
|
12485
|
+
locator: z.ZodString;
|
|
12208
12486
|
segmentType: z.ZodEnum<{
|
|
12209
12487
|
coverage: "coverage";
|
|
12210
12488
|
gap: "gap";
|
|
12211
12489
|
}>;
|
|
12490
|
+
startTime: z.ZodISODateTime;
|
|
12491
|
+
endTime: z.ZodISODateTime;
|
|
12492
|
+
duration: z.ZodNumber;
|
|
12212
12493
|
basedOn: z.ZodOptional<z.ZodString>;
|
|
12494
|
+
anonymizedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
12213
12495
|
}, z.core.$strip>;
|
|
12214
12496
|
|
|
12215
12497
|
export declare const SegmentSchema: z.ZodObject<{
|
|
@@ -14059,10 +14341,7 @@ export declare const transactionSnapshotResponseSchema: z.ZodObject<{
|
|
|
14059
14341
|
}, z.core.$strip>>;
|
|
14060
14342
|
}, z.core.$strip>>;
|
|
14061
14343
|
segment: z.ZodObject<{
|
|
14062
|
-
|
|
14063
|
-
startTime: z.ZodString;
|
|
14064
|
-
endTime: z.ZodString;
|
|
14065
|
-
duration: z.ZodNumber;
|
|
14344
|
+
transactionLocator: z.ZodOptional<z.ZodString>;
|
|
14066
14345
|
element: z.ZodType<{
|
|
14067
14346
|
locator: string;
|
|
14068
14347
|
staticLocator: string;
|
|
@@ -14108,11 +14387,16 @@ export declare const transactionSnapshotResponseSchema: z.ZodObject<{
|
|
|
14108
14387
|
originalEffectiveTime?: string | undefined;
|
|
14109
14388
|
} & /*elided*/ any)[];
|
|
14110
14389
|
}, unknown>>;
|
|
14390
|
+
locator: z.ZodString;
|
|
14111
14391
|
segmentType: z.ZodEnum<{
|
|
14112
14392
|
coverage: "coverage";
|
|
14113
14393
|
gap: "gap";
|
|
14114
14394
|
}>;
|
|
14395
|
+
startTime: z.ZodISODateTime;
|
|
14396
|
+
endTime: z.ZodISODateTime;
|
|
14397
|
+
duration: z.ZodNumber;
|
|
14115
14398
|
basedOn: z.ZodOptional<z.ZodString>;
|
|
14399
|
+
anonymizedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
14116
14400
|
}, z.core.$strip>;
|
|
14117
14401
|
transactionCategory: z.ZodEnum<{
|
|
14118
14402
|
issuance: "issuance";
|
|
@@ -14169,10 +14453,11 @@ export declare const transactionStateEnumSchema: z.ZodEnum<{
|
|
|
14169
14453
|
reversed: "reversed";
|
|
14170
14454
|
}>;
|
|
14171
14455
|
|
|
14172
|
-
export declare type TransactionType = z.infer<typeof
|
|
14456
|
+
export declare type TransactionType = z.infer<typeof TransactionTypeSchema>;
|
|
14173
14457
|
|
|
14174
14458
|
export declare type TransactionTypeCategory = z.infer<typeof transactionTypeCategorySchema>;
|
|
14175
14459
|
|
|
14460
|
+
/** Config-layer name; same shape as codegen `transactionTypeRefSchema.shape.category`. */
|
|
14176
14461
|
export declare const transactionTypeCategorySchema: z.ZodEnum<{
|
|
14177
14462
|
issuance: "issuance";
|
|
14178
14463
|
change: "change";
|
|
@@ -14185,7 +14470,8 @@ export declare const transactionTypeCategorySchema: z.ZodEnum<{
|
|
|
14185
14470
|
|
|
14186
14471
|
export declare type TransactionTypeConfigRecord = z.infer<typeof transactionTypesRecordsSchema>;
|
|
14187
14472
|
|
|
14188
|
-
|
|
14473
|
+
/** Config-layer name; same shape as codegen `transactionTypeRefSchema`. */
|
|
14474
|
+
export declare const TransactionTypeSchema: z.ZodObject<{
|
|
14189
14475
|
category: z.ZodEnum<{
|
|
14190
14476
|
issuance: "issuance";
|
|
14191
14477
|
change: "change";
|
|
@@ -14197,8 +14483,8 @@ export declare const transactionTypeSchema: z.ZodObject<{
|
|
|
14197
14483
|
}>;
|
|
14198
14484
|
costBearing: z.ZodBoolean;
|
|
14199
14485
|
displayHints: z.ZodOptional<z.ZodObject<{
|
|
14200
|
-
displayName: z.ZodString
|
|
14201
|
-
displayOrder: z.
|
|
14486
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
14487
|
+
displayOrder: z.ZodOptional<z.ZodInt>;
|
|
14202
14488
|
}, z.core.$strip>>;
|
|
14203
14489
|
}, z.core.$strip>;
|
|
14204
14490
|
|
|
@@ -14214,8 +14500,8 @@ export declare const transactionTypesRecordsSchema: z.ZodRecord<z.ZodString, z.Z
|
|
|
14214
14500
|
}>;
|
|
14215
14501
|
costBearing: z.ZodBoolean;
|
|
14216
14502
|
displayHints: z.ZodOptional<z.ZodObject<{
|
|
14217
|
-
displayName: z.ZodString
|
|
14218
|
-
displayOrder: z.
|
|
14503
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
14504
|
+
displayOrder: z.ZodOptional<z.ZodInt>;
|
|
14219
14505
|
}, z.core.$strip>>;
|
|
14220
14506
|
}, z.core.$strip>>;
|
|
14221
14507
|
|