@awarevue/api-types 1.1.2 → 1.1.3
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/access-control/agreement.d.ts +46 -0
- package/dist/access-control/agreement.js +20 -0
- package/dist/access-control/index.d.ts +3 -0
- package/dist/access-control/index.js +3 -0
- package/dist/access-control/person-agreement.d.ts +35 -0
- package/dist/access-control/person-agreement.js +19 -0
- package/dist/access-control/person-presence.d.ts +29 -13
- package/dist/access-control/person-presence.js +3 -1
- package/dist/access-control/person-type.d.ts +85 -0
- package/dist/access-control/person-type.js +29 -0
- package/dist/access-control/person.d.ts +42 -0
- package/dist/access-control/person.js +5 -1
- package/dist/agent-communication/protocol.d.ts +96 -0
- package/dist/device/presence-tracker.d.ts +36 -0
- package/dist/device/presence-tracker.js +6 -0
- package/dist/device-event.d.ts +18 -0
- package/dist/objects.d.ts +4 -2
- package/dist/objects.js +4 -0
- package/dist/package.json +1 -1
- package/dist/permissions.d.ts +4 -4
- package/dist/permissions.js +8 -0
- package/dist/security-level.d.ts +9 -0
- package/dist/security-level.js +1 -0
- package/dist/user.d.ts +12 -12
- package/package.json +1 -1
|
@@ -2943,7 +2943,9 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
2943
2943
|
}>, "many">;
|
|
2944
2944
|
accessRules: z.ZodArray<z.ZodString, "many">;
|
|
2945
2945
|
customFields: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2946
|
+
type: z.ZodString;
|
|
2946
2947
|
}, "strip", z.ZodTypeAny, {
|
|
2948
|
+
type: string;
|
|
2947
2949
|
position: string | null;
|
|
2948
2950
|
firstName: string;
|
|
2949
2951
|
lastName: string;
|
|
@@ -2960,6 +2962,7 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
2960
2962
|
accessRules: string[];
|
|
2961
2963
|
customFields: Record<string, string> | null;
|
|
2962
2964
|
}, {
|
|
2965
|
+
type: string;
|
|
2963
2966
|
position: string | null;
|
|
2964
2967
|
firstName: string;
|
|
2965
2968
|
lastName: string;
|
|
@@ -2982,6 +2985,7 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
2982
2985
|
objectId: string;
|
|
2983
2986
|
original: null;
|
|
2984
2987
|
props: {
|
|
2988
|
+
type: string;
|
|
2985
2989
|
position: string | null;
|
|
2986
2990
|
firstName: string;
|
|
2987
2991
|
lastName: string;
|
|
@@ -3004,6 +3008,7 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3004
3008
|
objectId: string;
|
|
3005
3009
|
original: null;
|
|
3006
3010
|
props: {
|
|
3011
|
+
type: string;
|
|
3007
3012
|
position: string | null;
|
|
3008
3013
|
firstName: string;
|
|
3009
3014
|
lastName: string;
|
|
@@ -3048,7 +3053,9 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3048
3053
|
}>, "many">;
|
|
3049
3054
|
accessRules: z.ZodArray<z.ZodString, "many">;
|
|
3050
3055
|
customFields: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3056
|
+
type: z.ZodString;
|
|
3051
3057
|
}, "strip", z.ZodTypeAny, {
|
|
3058
|
+
type: string;
|
|
3052
3059
|
position: string | null;
|
|
3053
3060
|
firstName: string;
|
|
3054
3061
|
lastName: string;
|
|
@@ -3065,6 +3072,7 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3065
3072
|
accessRules: string[];
|
|
3066
3073
|
customFields: Record<string, string> | null;
|
|
3067
3074
|
}, {
|
|
3075
|
+
type: string;
|
|
3068
3076
|
position: string | null;
|
|
3069
3077
|
firstName: string;
|
|
3070
3078
|
lastName: string;
|
|
@@ -3105,7 +3113,9 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3105
3113
|
}>, "many">>;
|
|
3106
3114
|
accessRules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3107
3115
|
customFields: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
3116
|
+
type: z.ZodOptional<z.ZodString>;
|
|
3108
3117
|
}, "strip", z.ZodTypeAny, {
|
|
3118
|
+
type?: string | undefined;
|
|
3109
3119
|
position?: string | null | undefined;
|
|
3110
3120
|
firstName?: string | undefined;
|
|
3111
3121
|
lastName?: string | undefined;
|
|
@@ -3122,6 +3132,7 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3122
3132
|
accessRules?: string[] | undefined;
|
|
3123
3133
|
customFields?: Record<string, string> | null | undefined;
|
|
3124
3134
|
}, {
|
|
3135
|
+
type?: string | undefined;
|
|
3125
3136
|
position?: string | null | undefined;
|
|
3126
3137
|
firstName?: string | undefined;
|
|
3127
3138
|
lastName?: string | undefined;
|
|
@@ -3143,6 +3154,7 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3143
3154
|
objectKind: "person";
|
|
3144
3155
|
objectId: string;
|
|
3145
3156
|
original: {
|
|
3157
|
+
type: string;
|
|
3146
3158
|
position: string | null;
|
|
3147
3159
|
firstName: string;
|
|
3148
3160
|
lastName: string;
|
|
@@ -3160,6 +3172,7 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3160
3172
|
customFields: Record<string, string> | null;
|
|
3161
3173
|
};
|
|
3162
3174
|
props: {
|
|
3175
|
+
type?: string | undefined;
|
|
3163
3176
|
position?: string | null | undefined;
|
|
3164
3177
|
firstName?: string | undefined;
|
|
3165
3178
|
lastName?: string | undefined;
|
|
@@ -3181,6 +3194,7 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3181
3194
|
objectKind: "person";
|
|
3182
3195
|
objectId: string;
|
|
3183
3196
|
original: {
|
|
3197
|
+
type: string;
|
|
3184
3198
|
position: string | null;
|
|
3185
3199
|
firstName: string;
|
|
3186
3200
|
lastName: string;
|
|
@@ -3198,6 +3212,7 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3198
3212
|
customFields: Record<string, string> | null;
|
|
3199
3213
|
};
|
|
3200
3214
|
props: {
|
|
3215
|
+
type?: string | undefined;
|
|
3201
3216
|
position?: string | null | undefined;
|
|
3202
3217
|
firstName?: string | undefined;
|
|
3203
3218
|
lastName?: string | undefined;
|
|
@@ -3588,7 +3603,9 @@ export declare const sObjectDelete: z.ZodUnion<[z.ZodObject<{
|
|
|
3588
3603
|
}>, "many">;
|
|
3589
3604
|
accessRules: z.ZodArray<z.ZodString, "many">;
|
|
3590
3605
|
customFields: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3606
|
+
type: z.ZodString;
|
|
3591
3607
|
}, "strip", z.ZodTypeAny, {
|
|
3608
|
+
type: string;
|
|
3592
3609
|
position: string | null;
|
|
3593
3610
|
firstName: string;
|
|
3594
3611
|
lastName: string;
|
|
@@ -3605,6 +3622,7 @@ export declare const sObjectDelete: z.ZodUnion<[z.ZodObject<{
|
|
|
3605
3622
|
accessRules: string[];
|
|
3606
3623
|
customFields: Record<string, string> | null;
|
|
3607
3624
|
}, {
|
|
3625
|
+
type: string;
|
|
3608
3626
|
position: string | null;
|
|
3609
3627
|
firstName: string;
|
|
3610
3628
|
lastName: string;
|
|
@@ -3626,6 +3644,7 @@ export declare const sObjectDelete: z.ZodUnion<[z.ZodObject<{
|
|
|
3626
3644
|
objectKind: "person";
|
|
3627
3645
|
objectId: string;
|
|
3628
3646
|
original: {
|
|
3647
|
+
type: string;
|
|
3629
3648
|
position: string | null;
|
|
3630
3649
|
firstName: string;
|
|
3631
3650
|
lastName: string;
|
|
@@ -3647,6 +3666,7 @@ export declare const sObjectDelete: z.ZodUnion<[z.ZodObject<{
|
|
|
3647
3666
|
objectKind: "person";
|
|
3648
3667
|
objectId: string;
|
|
3649
3668
|
original: {
|
|
3669
|
+
type: string;
|
|
3650
3670
|
position: string | null;
|
|
3651
3671
|
firstName: string;
|
|
3652
3672
|
lastName: string;
|
|
@@ -4497,7 +4517,9 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4497
4517
|
}>, "many">;
|
|
4498
4518
|
accessRules: z.ZodArray<z.ZodString, "many">;
|
|
4499
4519
|
customFields: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4520
|
+
type: z.ZodString;
|
|
4500
4521
|
}, "strip", z.ZodTypeAny, {
|
|
4522
|
+
type: string;
|
|
4501
4523
|
position: string | null;
|
|
4502
4524
|
firstName: string;
|
|
4503
4525
|
lastName: string;
|
|
@@ -4514,6 +4536,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4514
4536
|
accessRules: string[];
|
|
4515
4537
|
customFields: Record<string, string> | null;
|
|
4516
4538
|
}, {
|
|
4539
|
+
type: string;
|
|
4517
4540
|
position: string | null;
|
|
4518
4541
|
firstName: string;
|
|
4519
4542
|
lastName: string;
|
|
@@ -4536,6 +4559,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4536
4559
|
objectId: string;
|
|
4537
4560
|
original: null;
|
|
4538
4561
|
props: {
|
|
4562
|
+
type: string;
|
|
4539
4563
|
position: string | null;
|
|
4540
4564
|
firstName: string;
|
|
4541
4565
|
lastName: string;
|
|
@@ -4558,6 +4582,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4558
4582
|
objectId: string;
|
|
4559
4583
|
original: null;
|
|
4560
4584
|
props: {
|
|
4585
|
+
type: string;
|
|
4561
4586
|
position: string | null;
|
|
4562
4587
|
firstName: string;
|
|
4563
4588
|
lastName: string;
|
|
@@ -4602,7 +4627,9 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4602
4627
|
}>, "many">;
|
|
4603
4628
|
accessRules: z.ZodArray<z.ZodString, "many">;
|
|
4604
4629
|
customFields: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4630
|
+
type: z.ZodString;
|
|
4605
4631
|
}, "strip", z.ZodTypeAny, {
|
|
4632
|
+
type: string;
|
|
4606
4633
|
position: string | null;
|
|
4607
4634
|
firstName: string;
|
|
4608
4635
|
lastName: string;
|
|
@@ -4619,6 +4646,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4619
4646
|
accessRules: string[];
|
|
4620
4647
|
customFields: Record<string, string> | null;
|
|
4621
4648
|
}, {
|
|
4649
|
+
type: string;
|
|
4622
4650
|
position: string | null;
|
|
4623
4651
|
firstName: string;
|
|
4624
4652
|
lastName: string;
|
|
@@ -4659,7 +4687,9 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4659
4687
|
}>, "many">>;
|
|
4660
4688
|
accessRules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4661
4689
|
customFields: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
4690
|
+
type: z.ZodOptional<z.ZodString>;
|
|
4662
4691
|
}, "strip", z.ZodTypeAny, {
|
|
4692
|
+
type?: string | undefined;
|
|
4663
4693
|
position?: string | null | undefined;
|
|
4664
4694
|
firstName?: string | undefined;
|
|
4665
4695
|
lastName?: string | undefined;
|
|
@@ -4676,6 +4706,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4676
4706
|
accessRules?: string[] | undefined;
|
|
4677
4707
|
customFields?: Record<string, string> | null | undefined;
|
|
4678
4708
|
}, {
|
|
4709
|
+
type?: string | undefined;
|
|
4679
4710
|
position?: string | null | undefined;
|
|
4680
4711
|
firstName?: string | undefined;
|
|
4681
4712
|
lastName?: string | undefined;
|
|
@@ -4697,6 +4728,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4697
4728
|
objectKind: "person";
|
|
4698
4729
|
objectId: string;
|
|
4699
4730
|
original: {
|
|
4731
|
+
type: string;
|
|
4700
4732
|
position: string | null;
|
|
4701
4733
|
firstName: string;
|
|
4702
4734
|
lastName: string;
|
|
@@ -4714,6 +4746,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4714
4746
|
customFields: Record<string, string> | null;
|
|
4715
4747
|
};
|
|
4716
4748
|
props: {
|
|
4749
|
+
type?: string | undefined;
|
|
4717
4750
|
position?: string | null | undefined;
|
|
4718
4751
|
firstName?: string | undefined;
|
|
4719
4752
|
lastName?: string | undefined;
|
|
@@ -4735,6 +4768,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4735
4768
|
objectKind: "person";
|
|
4736
4769
|
objectId: string;
|
|
4737
4770
|
original: {
|
|
4771
|
+
type: string;
|
|
4738
4772
|
position: string | null;
|
|
4739
4773
|
firstName: string;
|
|
4740
4774
|
lastName: string;
|
|
@@ -4752,6 +4786,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4752
4786
|
customFields: Record<string, string> | null;
|
|
4753
4787
|
};
|
|
4754
4788
|
props: {
|
|
4789
|
+
type?: string | undefined;
|
|
4755
4790
|
position?: string | null | undefined;
|
|
4756
4791
|
firstName?: string | undefined;
|
|
4757
4792
|
lastName?: string | undefined;
|
|
@@ -5141,7 +5176,9 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5141
5176
|
}>, "many">;
|
|
5142
5177
|
accessRules: z.ZodArray<z.ZodString, "many">;
|
|
5143
5178
|
customFields: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5179
|
+
type: z.ZodString;
|
|
5144
5180
|
}, "strip", z.ZodTypeAny, {
|
|
5181
|
+
type: string;
|
|
5145
5182
|
position: string | null;
|
|
5146
5183
|
firstName: string;
|
|
5147
5184
|
lastName: string;
|
|
@@ -5158,6 +5195,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5158
5195
|
accessRules: string[];
|
|
5159
5196
|
customFields: Record<string, string> | null;
|
|
5160
5197
|
}, {
|
|
5198
|
+
type: string;
|
|
5161
5199
|
position: string | null;
|
|
5162
5200
|
firstName: string;
|
|
5163
5201
|
lastName: string;
|
|
@@ -5179,6 +5217,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5179
5217
|
objectKind: "person";
|
|
5180
5218
|
objectId: string;
|
|
5181
5219
|
original: {
|
|
5220
|
+
type: string;
|
|
5182
5221
|
position: string | null;
|
|
5183
5222
|
firstName: string;
|
|
5184
5223
|
lastName: string;
|
|
@@ -5200,6 +5239,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5200
5239
|
objectKind: "person";
|
|
5201
5240
|
objectId: string;
|
|
5202
5241
|
original: {
|
|
5242
|
+
type: string;
|
|
5203
5243
|
position: string | null;
|
|
5204
5244
|
firstName: string;
|
|
5205
5245
|
lastName: string;
|
|
@@ -6057,7 +6097,9 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6057
6097
|
}>, "many">;
|
|
6058
6098
|
accessRules: z.ZodArray<z.ZodString, "many">;
|
|
6059
6099
|
customFields: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6100
|
+
type: z.ZodString;
|
|
6060
6101
|
}, "strip", z.ZodTypeAny, {
|
|
6102
|
+
type: string;
|
|
6061
6103
|
position: string | null;
|
|
6062
6104
|
firstName: string;
|
|
6063
6105
|
lastName: string;
|
|
@@ -6074,6 +6116,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6074
6116
|
accessRules: string[];
|
|
6075
6117
|
customFields: Record<string, string> | null;
|
|
6076
6118
|
}, {
|
|
6119
|
+
type: string;
|
|
6077
6120
|
position: string | null;
|
|
6078
6121
|
firstName: string;
|
|
6079
6122
|
lastName: string;
|
|
@@ -6096,6 +6139,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6096
6139
|
objectId: string;
|
|
6097
6140
|
original: null;
|
|
6098
6141
|
props: {
|
|
6142
|
+
type: string;
|
|
6099
6143
|
position: string | null;
|
|
6100
6144
|
firstName: string;
|
|
6101
6145
|
lastName: string;
|
|
@@ -6118,6 +6162,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6118
6162
|
objectId: string;
|
|
6119
6163
|
original: null;
|
|
6120
6164
|
props: {
|
|
6165
|
+
type: string;
|
|
6121
6166
|
position: string | null;
|
|
6122
6167
|
firstName: string;
|
|
6123
6168
|
lastName: string;
|
|
@@ -6162,7 +6207,9 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6162
6207
|
}>, "many">;
|
|
6163
6208
|
accessRules: z.ZodArray<z.ZodString, "many">;
|
|
6164
6209
|
customFields: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6210
|
+
type: z.ZodString;
|
|
6165
6211
|
}, "strip", z.ZodTypeAny, {
|
|
6212
|
+
type: string;
|
|
6166
6213
|
position: string | null;
|
|
6167
6214
|
firstName: string;
|
|
6168
6215
|
lastName: string;
|
|
@@ -6179,6 +6226,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6179
6226
|
accessRules: string[];
|
|
6180
6227
|
customFields: Record<string, string> | null;
|
|
6181
6228
|
}, {
|
|
6229
|
+
type: string;
|
|
6182
6230
|
position: string | null;
|
|
6183
6231
|
firstName: string;
|
|
6184
6232
|
lastName: string;
|
|
@@ -6219,7 +6267,9 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6219
6267
|
}>, "many">>;
|
|
6220
6268
|
accessRules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6221
6269
|
customFields: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
6270
|
+
type: z.ZodOptional<z.ZodString>;
|
|
6222
6271
|
}, "strip", z.ZodTypeAny, {
|
|
6272
|
+
type?: string | undefined;
|
|
6223
6273
|
position?: string | null | undefined;
|
|
6224
6274
|
firstName?: string | undefined;
|
|
6225
6275
|
lastName?: string | undefined;
|
|
@@ -6236,6 +6286,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6236
6286
|
accessRules?: string[] | undefined;
|
|
6237
6287
|
customFields?: Record<string, string> | null | undefined;
|
|
6238
6288
|
}, {
|
|
6289
|
+
type?: string | undefined;
|
|
6239
6290
|
position?: string | null | undefined;
|
|
6240
6291
|
firstName?: string | undefined;
|
|
6241
6292
|
lastName?: string | undefined;
|
|
@@ -6257,6 +6308,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6257
6308
|
objectKind: "person";
|
|
6258
6309
|
objectId: string;
|
|
6259
6310
|
original: {
|
|
6311
|
+
type: string;
|
|
6260
6312
|
position: string | null;
|
|
6261
6313
|
firstName: string;
|
|
6262
6314
|
lastName: string;
|
|
@@ -6274,6 +6326,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6274
6326
|
customFields: Record<string, string> | null;
|
|
6275
6327
|
};
|
|
6276
6328
|
props: {
|
|
6329
|
+
type?: string | undefined;
|
|
6277
6330
|
position?: string | null | undefined;
|
|
6278
6331
|
firstName?: string | undefined;
|
|
6279
6332
|
lastName?: string | undefined;
|
|
@@ -6295,6 +6348,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6295
6348
|
objectKind: "person";
|
|
6296
6349
|
objectId: string;
|
|
6297
6350
|
original: {
|
|
6351
|
+
type: string;
|
|
6298
6352
|
position: string | null;
|
|
6299
6353
|
firstName: string;
|
|
6300
6354
|
lastName: string;
|
|
@@ -6312,6 +6366,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6312
6366
|
customFields: Record<string, string> | null;
|
|
6313
6367
|
};
|
|
6314
6368
|
props: {
|
|
6369
|
+
type?: string | undefined;
|
|
6315
6370
|
position?: string | null | undefined;
|
|
6316
6371
|
firstName?: string | undefined;
|
|
6317
6372
|
lastName?: string | undefined;
|
|
@@ -6701,7 +6756,9 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6701
6756
|
}>, "many">;
|
|
6702
6757
|
accessRules: z.ZodArray<z.ZodString, "many">;
|
|
6703
6758
|
customFields: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6759
|
+
type: z.ZodString;
|
|
6704
6760
|
}, "strip", z.ZodTypeAny, {
|
|
6761
|
+
type: string;
|
|
6705
6762
|
position: string | null;
|
|
6706
6763
|
firstName: string;
|
|
6707
6764
|
lastName: string;
|
|
@@ -6718,6 +6775,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6718
6775
|
accessRules: string[];
|
|
6719
6776
|
customFields: Record<string, string> | null;
|
|
6720
6777
|
}, {
|
|
6778
|
+
type: string;
|
|
6721
6779
|
position: string | null;
|
|
6722
6780
|
firstName: string;
|
|
6723
6781
|
lastName: string;
|
|
@@ -6739,6 +6797,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6739
6797
|
objectKind: "person";
|
|
6740
6798
|
objectId: string;
|
|
6741
6799
|
original: {
|
|
6800
|
+
type: string;
|
|
6742
6801
|
position: string | null;
|
|
6743
6802
|
firstName: string;
|
|
6744
6803
|
lastName: string;
|
|
@@ -6760,6 +6819,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6760
6819
|
objectKind: "person";
|
|
6761
6820
|
objectId: string;
|
|
6762
6821
|
original: {
|
|
6822
|
+
type: string;
|
|
6763
6823
|
position: string | null;
|
|
6764
6824
|
firstName: string;
|
|
6765
6825
|
lastName: string;
|
|
@@ -6944,6 +7004,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6944
7004
|
objectId: string;
|
|
6945
7005
|
original: null;
|
|
6946
7006
|
props: {
|
|
7007
|
+
type: string;
|
|
6947
7008
|
position: string | null;
|
|
6948
7009
|
firstName: string;
|
|
6949
7010
|
lastName: string;
|
|
@@ -6965,6 +7026,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6965
7026
|
objectKind: "person";
|
|
6966
7027
|
objectId: string;
|
|
6967
7028
|
original: {
|
|
7029
|
+
type: string;
|
|
6968
7030
|
position: string | null;
|
|
6969
7031
|
firstName: string;
|
|
6970
7032
|
lastName: string;
|
|
@@ -6982,6 +7044,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6982
7044
|
customFields: Record<string, string> | null;
|
|
6983
7045
|
};
|
|
6984
7046
|
props: {
|
|
7047
|
+
type?: string | undefined;
|
|
6985
7048
|
position?: string | null | undefined;
|
|
6986
7049
|
firstName?: string | undefined;
|
|
6987
7050
|
lastName?: string | undefined;
|
|
@@ -7068,6 +7131,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7068
7131
|
objectKind: "person";
|
|
7069
7132
|
objectId: string;
|
|
7070
7133
|
original: {
|
|
7134
|
+
type: string;
|
|
7071
7135
|
position: string | null;
|
|
7072
7136
|
firstName: string;
|
|
7073
7137
|
lastName: string;
|
|
@@ -7230,6 +7294,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7230
7294
|
objectId: string;
|
|
7231
7295
|
original: null;
|
|
7232
7296
|
props: {
|
|
7297
|
+
type: string;
|
|
7233
7298
|
position: string | null;
|
|
7234
7299
|
firstName: string;
|
|
7235
7300
|
lastName: string;
|
|
@@ -7251,6 +7316,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7251
7316
|
objectKind: "person";
|
|
7252
7317
|
objectId: string;
|
|
7253
7318
|
original: {
|
|
7319
|
+
type: string;
|
|
7254
7320
|
position: string | null;
|
|
7255
7321
|
firstName: string;
|
|
7256
7322
|
lastName: string;
|
|
@@ -7268,6 +7334,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7268
7334
|
customFields: Record<string, string> | null;
|
|
7269
7335
|
};
|
|
7270
7336
|
props: {
|
|
7337
|
+
type?: string | undefined;
|
|
7271
7338
|
position?: string | null | undefined;
|
|
7272
7339
|
firstName?: string | undefined;
|
|
7273
7340
|
lastName?: string | undefined;
|
|
@@ -7354,6 +7421,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7354
7421
|
objectKind: "person";
|
|
7355
7422
|
objectId: string;
|
|
7356
7423
|
original: {
|
|
7424
|
+
type: string;
|
|
7357
7425
|
position: string | null;
|
|
7358
7426
|
firstName: string;
|
|
7359
7427
|
lastName: string;
|
|
@@ -8262,7 +8330,9 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8262
8330
|
}>, "many">;
|
|
8263
8331
|
accessRules: z.ZodArray<z.ZodString, "many">;
|
|
8264
8332
|
customFields: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
8333
|
+
type: z.ZodString;
|
|
8265
8334
|
}, "strip", z.ZodTypeAny, {
|
|
8335
|
+
type: string;
|
|
8266
8336
|
position: string | null;
|
|
8267
8337
|
firstName: string;
|
|
8268
8338
|
lastName: string;
|
|
@@ -8279,6 +8349,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8279
8349
|
accessRules: string[];
|
|
8280
8350
|
customFields: Record<string, string> | null;
|
|
8281
8351
|
}, {
|
|
8352
|
+
type: string;
|
|
8282
8353
|
position: string | null;
|
|
8283
8354
|
firstName: string;
|
|
8284
8355
|
lastName: string;
|
|
@@ -8301,6 +8372,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8301
8372
|
objectId: string;
|
|
8302
8373
|
original: null;
|
|
8303
8374
|
props: {
|
|
8375
|
+
type: string;
|
|
8304
8376
|
position: string | null;
|
|
8305
8377
|
firstName: string;
|
|
8306
8378
|
lastName: string;
|
|
@@ -8323,6 +8395,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8323
8395
|
objectId: string;
|
|
8324
8396
|
original: null;
|
|
8325
8397
|
props: {
|
|
8398
|
+
type: string;
|
|
8326
8399
|
position: string | null;
|
|
8327
8400
|
firstName: string;
|
|
8328
8401
|
lastName: string;
|
|
@@ -8367,7 +8440,9 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8367
8440
|
}>, "many">;
|
|
8368
8441
|
accessRules: z.ZodArray<z.ZodString, "many">;
|
|
8369
8442
|
customFields: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
8443
|
+
type: z.ZodString;
|
|
8370
8444
|
}, "strip", z.ZodTypeAny, {
|
|
8445
|
+
type: string;
|
|
8371
8446
|
position: string | null;
|
|
8372
8447
|
firstName: string;
|
|
8373
8448
|
lastName: string;
|
|
@@ -8384,6 +8459,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8384
8459
|
accessRules: string[];
|
|
8385
8460
|
customFields: Record<string, string> | null;
|
|
8386
8461
|
}, {
|
|
8462
|
+
type: string;
|
|
8387
8463
|
position: string | null;
|
|
8388
8464
|
firstName: string;
|
|
8389
8465
|
lastName: string;
|
|
@@ -8424,7 +8500,9 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8424
8500
|
}>, "many">>;
|
|
8425
8501
|
accessRules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8426
8502
|
customFields: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
8503
|
+
type: z.ZodOptional<z.ZodString>;
|
|
8427
8504
|
}, "strip", z.ZodTypeAny, {
|
|
8505
|
+
type?: string | undefined;
|
|
8428
8506
|
position?: string | null | undefined;
|
|
8429
8507
|
firstName?: string | undefined;
|
|
8430
8508
|
lastName?: string | undefined;
|
|
@@ -8441,6 +8519,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8441
8519
|
accessRules?: string[] | undefined;
|
|
8442
8520
|
customFields?: Record<string, string> | null | undefined;
|
|
8443
8521
|
}, {
|
|
8522
|
+
type?: string | undefined;
|
|
8444
8523
|
position?: string | null | undefined;
|
|
8445
8524
|
firstName?: string | undefined;
|
|
8446
8525
|
lastName?: string | undefined;
|
|
@@ -8462,6 +8541,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8462
8541
|
objectKind: "person";
|
|
8463
8542
|
objectId: string;
|
|
8464
8543
|
original: {
|
|
8544
|
+
type: string;
|
|
8465
8545
|
position: string | null;
|
|
8466
8546
|
firstName: string;
|
|
8467
8547
|
lastName: string;
|
|
@@ -8479,6 +8559,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8479
8559
|
customFields: Record<string, string> | null;
|
|
8480
8560
|
};
|
|
8481
8561
|
props: {
|
|
8562
|
+
type?: string | undefined;
|
|
8482
8563
|
position?: string | null | undefined;
|
|
8483
8564
|
firstName?: string | undefined;
|
|
8484
8565
|
lastName?: string | undefined;
|
|
@@ -8500,6 +8581,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8500
8581
|
objectKind: "person";
|
|
8501
8582
|
objectId: string;
|
|
8502
8583
|
original: {
|
|
8584
|
+
type: string;
|
|
8503
8585
|
position: string | null;
|
|
8504
8586
|
firstName: string;
|
|
8505
8587
|
lastName: string;
|
|
@@ -8517,6 +8599,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8517
8599
|
customFields: Record<string, string> | null;
|
|
8518
8600
|
};
|
|
8519
8601
|
props: {
|
|
8602
|
+
type?: string | undefined;
|
|
8520
8603
|
position?: string | null | undefined;
|
|
8521
8604
|
firstName?: string | undefined;
|
|
8522
8605
|
lastName?: string | undefined;
|
|
@@ -8906,7 +8989,9 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8906
8989
|
}>, "many">;
|
|
8907
8990
|
accessRules: z.ZodArray<z.ZodString, "many">;
|
|
8908
8991
|
customFields: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
8992
|
+
type: z.ZodString;
|
|
8909
8993
|
}, "strip", z.ZodTypeAny, {
|
|
8994
|
+
type: string;
|
|
8910
8995
|
position: string | null;
|
|
8911
8996
|
firstName: string;
|
|
8912
8997
|
lastName: string;
|
|
@@ -8923,6 +9008,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8923
9008
|
accessRules: string[];
|
|
8924
9009
|
customFields: Record<string, string> | null;
|
|
8925
9010
|
}, {
|
|
9011
|
+
type: string;
|
|
8926
9012
|
position: string | null;
|
|
8927
9013
|
firstName: string;
|
|
8928
9014
|
lastName: string;
|
|
@@ -8944,6 +9030,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8944
9030
|
objectKind: "person";
|
|
8945
9031
|
objectId: string;
|
|
8946
9032
|
original: {
|
|
9033
|
+
type: string;
|
|
8947
9034
|
position: string | null;
|
|
8948
9035
|
firstName: string;
|
|
8949
9036
|
lastName: string;
|
|
@@ -8965,6 +9052,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8965
9052
|
objectKind: "person";
|
|
8966
9053
|
objectId: string;
|
|
8967
9054
|
original: {
|
|
9055
|
+
type: string;
|
|
8968
9056
|
position: string | null;
|
|
8969
9057
|
firstName: string;
|
|
8970
9058
|
lastName: string;
|
|
@@ -9149,6 +9237,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9149
9237
|
objectId: string;
|
|
9150
9238
|
original: null;
|
|
9151
9239
|
props: {
|
|
9240
|
+
type: string;
|
|
9152
9241
|
position: string | null;
|
|
9153
9242
|
firstName: string;
|
|
9154
9243
|
lastName: string;
|
|
@@ -9170,6 +9259,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9170
9259
|
objectKind: "person";
|
|
9171
9260
|
objectId: string;
|
|
9172
9261
|
original: {
|
|
9262
|
+
type: string;
|
|
9173
9263
|
position: string | null;
|
|
9174
9264
|
firstName: string;
|
|
9175
9265
|
lastName: string;
|
|
@@ -9187,6 +9277,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9187
9277
|
customFields: Record<string, string> | null;
|
|
9188
9278
|
};
|
|
9189
9279
|
props: {
|
|
9280
|
+
type?: string | undefined;
|
|
9190
9281
|
position?: string | null | undefined;
|
|
9191
9282
|
firstName?: string | undefined;
|
|
9192
9283
|
lastName?: string | undefined;
|
|
@@ -9273,6 +9364,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9273
9364
|
objectKind: "person";
|
|
9274
9365
|
objectId: string;
|
|
9275
9366
|
original: {
|
|
9367
|
+
type: string;
|
|
9276
9368
|
position: string | null;
|
|
9277
9369
|
firstName: string;
|
|
9278
9370
|
lastName: string;
|
|
@@ -9435,6 +9527,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9435
9527
|
objectId: string;
|
|
9436
9528
|
original: null;
|
|
9437
9529
|
props: {
|
|
9530
|
+
type: string;
|
|
9438
9531
|
position: string | null;
|
|
9439
9532
|
firstName: string;
|
|
9440
9533
|
lastName: string;
|
|
@@ -9456,6 +9549,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9456
9549
|
objectKind: "person";
|
|
9457
9550
|
objectId: string;
|
|
9458
9551
|
original: {
|
|
9552
|
+
type: string;
|
|
9459
9553
|
position: string | null;
|
|
9460
9554
|
firstName: string;
|
|
9461
9555
|
lastName: string;
|
|
@@ -9473,6 +9567,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9473
9567
|
customFields: Record<string, string> | null;
|
|
9474
9568
|
};
|
|
9475
9569
|
props: {
|
|
9570
|
+
type?: string | undefined;
|
|
9476
9571
|
position?: string | null | undefined;
|
|
9477
9572
|
firstName?: string | undefined;
|
|
9478
9573
|
lastName?: string | undefined;
|
|
@@ -9559,6 +9654,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9559
9654
|
objectKind: "person";
|
|
9560
9655
|
objectId: string;
|
|
9561
9656
|
original: {
|
|
9657
|
+
type: string;
|
|
9562
9658
|
position: string | null;
|
|
9563
9659
|
firstName: string;
|
|
9564
9660
|
lastName: string;
|