@socotra/ec-react-schemas 2.15.2-next.0 → 2.15.2-next.1
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 +221 -200
- package/dist/index.es.js +1098 -1079
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -2886,14 +2886,12 @@ export declare const AttachDocumentRequestParamsSchema: z.ZodObject<z.objectUtil
|
|
|
2886
2886
|
|
|
2887
2887
|
export declare type AuthTokenCreateRequest = z.infer<typeof AuthTokenCreateRequestSchema>;
|
|
2888
2888
|
|
|
2889
|
-
export declare const AuthTokenCreateRequestSchema: z.ZodObject<
|
|
2889
|
+
export declare const AuthTokenCreateRequestSchema: z.ZodObject<{
|
|
2890
|
+
expiresAt: z.ZodString;
|
|
2890
2891
|
name: z.ZodString;
|
|
2891
2892
|
tenants: z.ZodArray<z.ZodString, "many">;
|
|
2892
2893
|
permissions: z.ZodArray<z.ZodString, "many">;
|
|
2893
|
-
|
|
2894
|
-
}, {
|
|
2895
|
-
expiresAt: z.ZodString;
|
|
2896
|
-
}>, "strip", z.ZodTypeAny, {
|
|
2894
|
+
}, "strip", z.ZodTypeAny, {
|
|
2897
2895
|
name: string;
|
|
2898
2896
|
tenants: string[];
|
|
2899
2897
|
permissions: string[];
|
|
@@ -2907,15 +2905,13 @@ export declare const AuthTokenCreateRequestSchema: z.ZodObject<z.objectUtil.exte
|
|
|
2907
2905
|
|
|
2908
2906
|
export declare type AuthTokenResponse = z.infer<typeof AuthTokenResponseSchema>;
|
|
2909
2907
|
|
|
2910
|
-
export declare const AuthTokenResponseSchema: z.ZodObject<
|
|
2908
|
+
export declare const AuthTokenResponseSchema: z.ZodObject<{
|
|
2909
|
+
createdAt: z.ZodString;
|
|
2911
2910
|
name: z.ZodString;
|
|
2912
2911
|
tenants: z.ZodArray<z.ZodString, "many">;
|
|
2913
2912
|
permissions: z.ZodArray<z.ZodString, "many">;
|
|
2914
|
-
createdAt: z.ZodString;
|
|
2915
2913
|
expiresAt: z.ZodString;
|
|
2916
|
-
}, {
|
|
2917
|
-
createdAt: z.ZodString;
|
|
2918
|
-
}>, "strip", z.ZodTypeAny, {
|
|
2914
|
+
}, "strip", z.ZodTypeAny, {
|
|
2919
2915
|
name: string;
|
|
2920
2916
|
createdAt: string;
|
|
2921
2917
|
tenants: string[];
|
|
@@ -4146,12 +4142,10 @@ export declare const bootstrapResourcesSchema: z.ZodObject<{
|
|
|
4146
4142
|
|
|
4147
4143
|
export declare type BootstrapResult = z.infer<typeof BootstrapResultSchema>;
|
|
4148
4144
|
|
|
4149
|
-
export declare const BootstrapResultSchema: z.ZodObject<
|
|
4150
|
-
status: z.ZodUnion<[z.ZodLiteral<"queued">, z.ZodLiteral<"failed">]>;
|
|
4151
|
-
error: z.ZodString;
|
|
4152
|
-
}, {
|
|
4145
|
+
export declare const BootstrapResultSchema: z.ZodObject<{
|
|
4153
4146
|
status: z.ZodEnum<["queued", "failed"]>;
|
|
4154
|
-
|
|
4147
|
+
error: z.ZodString;
|
|
4148
|
+
}, "strip", z.ZodTypeAny, {
|
|
4155
4149
|
status: "queued" | "failed";
|
|
4156
4150
|
error: string;
|
|
4157
4151
|
}, {
|
|
@@ -4324,37 +4318,13 @@ export declare const chargeResponseSchema: z.ZodObject<{
|
|
|
4324
4318
|
|
|
4325
4319
|
export declare type ConfigBuilderResult = z.infer<typeof ConfigBuilderResultSchema>;
|
|
4326
4320
|
|
|
4327
|
-
export declare const ConfigBuilderResultSchema: z.ZodObject<
|
|
4328
|
-
isSuccess: z.ZodBoolean;
|
|
4329
|
-
errors: z.ZodArray<z.ZodString, "many">;
|
|
4321
|
+
export declare const ConfigBuilderResultSchema: z.ZodObject<{
|
|
4330
4322
|
metadata: z.ZodObject<{
|
|
4331
|
-
version1: z.ZodString;
|
|
4332
|
-
version2: z.ZodString;
|
|
4333
|
-
plugins: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4334
|
-
latestVersion: z.ZodString;
|
|
4335
|
-
}, "strip", z.ZodTypeAny, {
|
|
4336
|
-
version1: string;
|
|
4337
|
-
version2: string;
|
|
4338
|
-
plugins: Record<string, Record<string, string>>;
|
|
4339
|
-
latestVersion: string;
|
|
4340
|
-
}, {
|
|
4341
|
-
version1: string;
|
|
4342
|
-
version2: string;
|
|
4343
|
-
plugins: Record<string, Record<string, string>>;
|
|
4344
|
-
latestVersion: string;
|
|
4345
|
-
}>;
|
|
4346
|
-
}, {
|
|
4347
|
-
metadata: z.ZodObject<z.objectUtil.extendShape<{
|
|
4348
|
-
version1: z.ZodString;
|
|
4349
|
-
version2: z.ZodString;
|
|
4350
|
-
plugins: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4351
|
-
latestVersion: z.ZodString;
|
|
4352
|
-
}, {
|
|
4353
4323
|
version1: z.ZodString;
|
|
4354
4324
|
version2: z.ZodString;
|
|
4355
4325
|
latestVersion: z.ZodString;
|
|
4356
4326
|
plugins: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4357
|
-
}
|
|
4327
|
+
}, "strip", z.ZodTypeAny, {
|
|
4358
4328
|
version1: string;
|
|
4359
4329
|
version2: string;
|
|
4360
4330
|
plugins: Record<string, Record<string, string>>;
|
|
@@ -4365,7 +4335,9 @@ export declare const ConfigBuilderResultSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
4365
4335
|
plugins: Record<string, Record<string, string>>;
|
|
4366
4336
|
latestVersion: string;
|
|
4367
4337
|
}>;
|
|
4368
|
-
|
|
4338
|
+
isSuccess: z.ZodBoolean;
|
|
4339
|
+
errors: z.ZodArray<z.ZodString, "many">;
|
|
4340
|
+
}, "strip", z.ZodTypeAny, {
|
|
4369
4341
|
errors: string[];
|
|
4370
4342
|
metadata: {
|
|
4371
4343
|
version1: string;
|
|
@@ -9507,17 +9479,12 @@ export declare const delinquencyStateEnumSchema: z.ZodEnum<["preGrace", "inGrace
|
|
|
9507
9479
|
|
|
9508
9480
|
export declare type DeploymentMetadata = z.infer<typeof DeploymentMetadataSchema>;
|
|
9509
9481
|
|
|
9510
|
-
export declare const DeploymentMetadataSchema: z.ZodObject<
|
|
9511
|
-
version1: z.ZodString;
|
|
9512
|
-
version2: z.ZodString;
|
|
9513
|
-
plugins: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
9514
|
-
latestVersion: z.ZodString;
|
|
9515
|
-
}, {
|
|
9482
|
+
export declare const DeploymentMetadataSchema: z.ZodObject<{
|
|
9516
9483
|
version1: z.ZodString;
|
|
9517
9484
|
version2: z.ZodString;
|
|
9518
9485
|
latestVersion: z.ZodString;
|
|
9519
9486
|
plugins: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
9520
|
-
}
|
|
9487
|
+
}, "strip", z.ZodTypeAny, {
|
|
9521
9488
|
version1: string;
|
|
9522
9489
|
version2: string;
|
|
9523
9490
|
plugins: Record<string, Record<string, string>>;
|
|
@@ -12341,11 +12308,11 @@ export declare function genericListResponseSchema<ItemType extends z.ZodTypeAny>
|
|
|
12341
12308
|
|
|
12342
12309
|
export declare type IdentityProviderCreateRequest = z.infer<typeof IdentityProviderCreateRequestSchema>;
|
|
12343
12310
|
|
|
12344
|
-
export declare const IdentityProviderCreateRequestSchema: z.ZodObject<
|
|
12311
|
+
export declare const IdentityProviderCreateRequestSchema: z.ZodObject<{
|
|
12345
12312
|
id: z.ZodString;
|
|
12346
12313
|
displayName: z.ZodString;
|
|
12347
12314
|
singleSignOnServiceUrl: z.ZodString;
|
|
12348
|
-
},
|
|
12315
|
+
}, "strip", z.ZodTypeAny, {
|
|
12349
12316
|
displayName: string;
|
|
12350
12317
|
id: string;
|
|
12351
12318
|
singleSignOnServiceUrl: string;
|
|
@@ -12357,7 +12324,7 @@ export declare const IdentityProviderCreateRequestSchema: z.ZodObject<z.objectUt
|
|
|
12357
12324
|
|
|
12358
12325
|
export declare type IdentityProviderResponse = z.infer<typeof IdentityProviderResponseSchema>;
|
|
12359
12326
|
|
|
12360
|
-
export declare const IdentityProviderResponseSchema: z.ZodObject<
|
|
12327
|
+
export declare const IdentityProviderResponseSchema: z.ZodObject<{
|
|
12361
12328
|
id: z.ZodString;
|
|
12362
12329
|
displayName: z.ZodString;
|
|
12363
12330
|
type: z.ZodString;
|
|
@@ -12365,7 +12332,7 @@ export declare const IdentityProviderResponseSchema: z.ZodObject<z.objectUtil.ex
|
|
|
12365
12332
|
callbackUrl: z.ZodString;
|
|
12366
12333
|
entityId: z.ZodString;
|
|
12367
12334
|
singleSignOnServiceUrl: z.ZodString;
|
|
12368
|
-
},
|
|
12335
|
+
}, "strip", z.ZodTypeAny, {
|
|
12369
12336
|
type: string;
|
|
12370
12337
|
displayName: string;
|
|
12371
12338
|
id: string;
|
|
@@ -12859,19 +12826,15 @@ export declare type ListRoleResponse = z.infer<typeof ListRoleResponseSchema>;
|
|
|
12859
12826
|
|
|
12860
12827
|
export declare const ListRoleResponseSchema: z.ZodObject<{
|
|
12861
12828
|
listCompleted: z.ZodBoolean;
|
|
12862
|
-
items: z.ZodArray<z.ZodObject<
|
|
12863
|
-
name: z.ZodString;
|
|
12829
|
+
items: z.ZodArray<z.ZodObject<{
|
|
12864
12830
|
locator: z.ZodString;
|
|
12865
|
-
permissions: z.ZodArray<z.ZodString, "many">;
|
|
12866
|
-
version: z.ZodNumber;
|
|
12867
12831
|
createdAt: z.ZodString;
|
|
12868
12832
|
createdBy: z.ZodString;
|
|
12833
|
+
name: z.ZodString;
|
|
12834
|
+
permissions: z.ZodArray<z.ZodString, "many">;
|
|
12835
|
+
version: z.ZodNumber;
|
|
12869
12836
|
description: z.ZodString;
|
|
12870
|
-
}, {
|
|
12871
|
-
locator: z.ZodString;
|
|
12872
|
-
createdAt: z.ZodString;
|
|
12873
|
-
createdBy: z.ZodString;
|
|
12874
|
-
}>, "strip", z.ZodTypeAny, {
|
|
12837
|
+
}, "strip", z.ZodTypeAny, {
|
|
12875
12838
|
locator: string;
|
|
12876
12839
|
createdBy: string;
|
|
12877
12840
|
name: string;
|
|
@@ -12916,22 +12879,15 @@ export declare type ListTenantResponse = z.infer<typeof ListTenantResponseSchema
|
|
|
12916
12879
|
|
|
12917
12880
|
export declare const ListTenantResponseSchema: z.ZodObject<{
|
|
12918
12881
|
listCompleted: z.ZodBoolean;
|
|
12919
|
-
items: z.ZodArray<z.ZodObject<
|
|
12920
|
-
locator: z.ZodString;
|
|
12921
|
-
name: z.ZodString;
|
|
12922
|
-
type: z.ZodUnion<[z.ZodLiteral<"test">, z.ZodLiteral<"production">, z.ZodLiteral<"retired">, z.ZodLiteral<"deleted">]>;
|
|
12923
|
-
description: z.ZodString;
|
|
12924
|
-
createdAt: z.ZodString;
|
|
12925
|
-
createdBy: z.ZodString;
|
|
12926
|
-
updatedAt: z.ZodString;
|
|
12927
|
-
}, {
|
|
12882
|
+
items: z.ZodArray<z.ZodObject<{
|
|
12928
12883
|
locator: z.ZodString;
|
|
12929
12884
|
type: z.ZodEnum<["test", "production", "retired", "deleted"]>;
|
|
12930
12885
|
createdAt: z.ZodString;
|
|
12931
12886
|
updatedAt: z.ZodString;
|
|
12932
12887
|
createdBy: z.ZodString;
|
|
12933
12888
|
description: z.ZodOptional<z.ZodString>;
|
|
12934
|
-
|
|
12889
|
+
name: z.ZodString;
|
|
12890
|
+
}, "strip", z.ZodTypeAny, {
|
|
12935
12891
|
locator: string;
|
|
12936
12892
|
type: "test" | "production" | "retired" | "deleted";
|
|
12937
12893
|
createdBy: string;
|
|
@@ -24918,11 +24874,11 @@ export declare const reversalTypesRecordsSchema: z.ZodRecord<z.ZodString, z.ZodO
|
|
|
24918
24874
|
|
|
24919
24875
|
export declare type RoleCreateRequest = z.infer<typeof RoleCreateRequestSchema>;
|
|
24920
24876
|
|
|
24921
|
-
export declare const RoleCreateRequestSchema: z.ZodObject<
|
|
24877
|
+
export declare const RoleCreateRequestSchema: z.ZodObject<{
|
|
24922
24878
|
name: z.ZodString;
|
|
24923
24879
|
permissions: z.ZodArray<z.ZodString, "many">;
|
|
24924
24880
|
description: z.ZodString;
|
|
24925
|
-
},
|
|
24881
|
+
}, "strip", z.ZodTypeAny, {
|
|
24926
24882
|
name: string;
|
|
24927
24883
|
description: string;
|
|
24928
24884
|
permissions: string[];
|
|
@@ -24938,19 +24894,15 @@ export declare const RoleIdSchema: z.ZodString;
|
|
|
24938
24894
|
|
|
24939
24895
|
export declare type RoleResponse = z.infer<typeof RoleResponseSchema>;
|
|
24940
24896
|
|
|
24941
|
-
export declare const RoleResponseSchema: z.ZodObject<
|
|
24942
|
-
name: z.ZodString;
|
|
24897
|
+
export declare const RoleResponseSchema: z.ZodObject<{
|
|
24943
24898
|
locator: z.ZodString;
|
|
24944
|
-
permissions: z.ZodArray<z.ZodString, "many">;
|
|
24945
|
-
version: z.ZodNumber;
|
|
24946
24899
|
createdAt: z.ZodString;
|
|
24947
24900
|
createdBy: z.ZodString;
|
|
24901
|
+
name: z.ZodString;
|
|
24902
|
+
permissions: z.ZodArray<z.ZodString, "many">;
|
|
24903
|
+
version: z.ZodNumber;
|
|
24948
24904
|
description: z.ZodString;
|
|
24949
|
-
}, {
|
|
24950
|
-
locator: z.ZodString;
|
|
24951
|
-
createdAt: z.ZodString;
|
|
24952
|
-
createdBy: z.ZodString;
|
|
24953
|
-
}>, "strip", z.ZodTypeAny, {
|
|
24905
|
+
}, "strip", z.ZodTypeAny, {
|
|
24954
24906
|
locator: string;
|
|
24955
24907
|
createdBy: string;
|
|
24956
24908
|
name: string;
|
|
@@ -24970,13 +24922,13 @@ export declare const RoleResponseSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
24970
24922
|
|
|
24971
24923
|
export declare type RoleUpdateRequest = z.infer<typeof RoleUpdateRequestSchema>;
|
|
24972
24924
|
|
|
24973
|
-
export declare const RoleUpdateRequestSchema: z.ZodObject<
|
|
24925
|
+
export declare const RoleUpdateRequestSchema: z.ZodObject<{
|
|
24974
24926
|
version: z.ZodNumber;
|
|
24975
24927
|
name: z.ZodString;
|
|
24976
24928
|
addPermissions: z.ZodArray<z.ZodString, "many">;
|
|
24977
24929
|
removePermissions: z.ZodArray<z.ZodString, "many">;
|
|
24978
24930
|
description: z.ZodString;
|
|
24979
|
-
},
|
|
24931
|
+
}, "strip", z.ZodTypeAny, {
|
|
24980
24932
|
name: string;
|
|
24981
24933
|
version: number;
|
|
24982
24934
|
description: string;
|
|
@@ -25594,49 +25546,10 @@ declare const tenantBaseConfigSchema: z.ZodObject<{
|
|
|
25594
25546
|
|
|
25595
25547
|
export declare type TenantDeploymentResult = z.infer<typeof TenantDeploymentResultSchema>;
|
|
25596
25548
|
|
|
25597
|
-
export declare const TenantDeploymentResultSchema: z.ZodObject<
|
|
25549
|
+
export declare const TenantDeploymentResultSchema: z.ZodObject<{
|
|
25598
25550
|
locator: z.ZodString;
|
|
25599
|
-
name: z.ZodString;
|
|
25600
|
-
deploymentResult: z.ZodObject<{
|
|
25601
|
-
isSuccess: z.ZodBoolean;
|
|
25602
|
-
errors: z.ZodArray<z.ZodString, "many">;
|
|
25603
|
-
metadata: z.ZodObject<{
|
|
25604
|
-
version1: z.ZodString;
|
|
25605
|
-
version2: z.ZodString;
|
|
25606
|
-
plugins: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
25607
|
-
latestVersion: z.ZodString;
|
|
25608
|
-
}, "strip", z.ZodTypeAny, {
|
|
25609
|
-
version1: string;
|
|
25610
|
-
version2: string;
|
|
25611
|
-
plugins: Record<string, Record<string, string>>;
|
|
25612
|
-
latestVersion: string;
|
|
25613
|
-
}, {
|
|
25614
|
-
version1: string;
|
|
25615
|
-
version2: string;
|
|
25616
|
-
plugins: Record<string, Record<string, string>>;
|
|
25617
|
-
latestVersion: string;
|
|
25618
|
-
}>;
|
|
25619
|
-
}, "strip", z.ZodTypeAny, {
|
|
25620
|
-
errors: string[];
|
|
25621
|
-
metadata: {
|
|
25622
|
-
version1: string;
|
|
25623
|
-
version2: string;
|
|
25624
|
-
plugins: Record<string, Record<string, string>>;
|
|
25625
|
-
latestVersion: string;
|
|
25626
|
-
};
|
|
25627
|
-
isSuccess: boolean;
|
|
25628
|
-
}, {
|
|
25629
|
-
errors: string[];
|
|
25630
|
-
metadata: {
|
|
25631
|
-
version1: string;
|
|
25632
|
-
version2: string;
|
|
25633
|
-
plugins: Record<string, Record<string, string>>;
|
|
25634
|
-
latestVersion: string;
|
|
25635
|
-
};
|
|
25636
|
-
isSuccess: boolean;
|
|
25637
|
-
}>;
|
|
25638
25551
|
bootstrapResult: z.ZodObject<{
|
|
25639
|
-
status: z.
|
|
25552
|
+
status: z.ZodEnum<["queued", "failed"]>;
|
|
25640
25553
|
error: z.ZodString;
|
|
25641
25554
|
}, "strip", z.ZodTypeAny, {
|
|
25642
25555
|
status: "queued" | "failed";
|
|
@@ -25645,51 +25558,13 @@ export declare const TenantDeploymentResultSchema: z.ZodObject<z.objectUtil.exte
|
|
|
25645
25558
|
status: "queued" | "failed";
|
|
25646
25559
|
error: string;
|
|
25647
25560
|
}>;
|
|
25648
|
-
|
|
25649
|
-
locator: z.ZodString;
|
|
25650
|
-
bootstrapResult: z.ZodObject<z.objectUtil.extendShape<{
|
|
25651
|
-
status: z.ZodUnion<[z.ZodLiteral<"queued">, z.ZodLiteral<"failed">]>;
|
|
25652
|
-
error: z.ZodString;
|
|
25653
|
-
}, {
|
|
25654
|
-
status: z.ZodEnum<["queued", "failed"]>;
|
|
25655
|
-
}>, "strip", z.ZodTypeAny, {
|
|
25656
|
-
status: "queued" | "failed";
|
|
25657
|
-
error: string;
|
|
25658
|
-
}, {
|
|
25659
|
-
status: "queued" | "failed";
|
|
25660
|
-
error: string;
|
|
25661
|
-
}>;
|
|
25662
|
-
deploymentResult: z.ZodObject<z.objectUtil.extendShape<{
|
|
25663
|
-
isSuccess: z.ZodBoolean;
|
|
25664
|
-
errors: z.ZodArray<z.ZodString, "many">;
|
|
25561
|
+
deploymentResult: z.ZodObject<{
|
|
25665
25562
|
metadata: z.ZodObject<{
|
|
25666
|
-
version1: z.ZodString;
|
|
25667
|
-
version2: z.ZodString;
|
|
25668
|
-
plugins: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
25669
|
-
latestVersion: z.ZodString;
|
|
25670
|
-
}, "strip", z.ZodTypeAny, {
|
|
25671
|
-
version1: string;
|
|
25672
|
-
version2: string;
|
|
25673
|
-
plugins: Record<string, Record<string, string>>;
|
|
25674
|
-
latestVersion: string;
|
|
25675
|
-
}, {
|
|
25676
|
-
version1: string;
|
|
25677
|
-
version2: string;
|
|
25678
|
-
plugins: Record<string, Record<string, string>>;
|
|
25679
|
-
latestVersion: string;
|
|
25680
|
-
}>;
|
|
25681
|
-
}, {
|
|
25682
|
-
metadata: z.ZodObject<z.objectUtil.extendShape<{
|
|
25683
|
-
version1: z.ZodString;
|
|
25684
|
-
version2: z.ZodString;
|
|
25685
|
-
plugins: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
25686
|
-
latestVersion: z.ZodString;
|
|
25687
|
-
}, {
|
|
25688
25563
|
version1: z.ZodString;
|
|
25689
25564
|
version2: z.ZodString;
|
|
25690
25565
|
latestVersion: z.ZodString;
|
|
25691
25566
|
plugins: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
25692
|
-
}
|
|
25567
|
+
}, "strip", z.ZodTypeAny, {
|
|
25693
25568
|
version1: string;
|
|
25694
25569
|
version2: string;
|
|
25695
25570
|
plugins: Record<string, Record<string, string>>;
|
|
@@ -25700,7 +25575,9 @@ export declare const TenantDeploymentResultSchema: z.ZodObject<z.objectUtil.exte
|
|
|
25700
25575
|
plugins: Record<string, Record<string, string>>;
|
|
25701
25576
|
latestVersion: string;
|
|
25702
25577
|
}>;
|
|
25703
|
-
|
|
25578
|
+
isSuccess: z.ZodBoolean;
|
|
25579
|
+
errors: z.ZodArray<z.ZodString, "many">;
|
|
25580
|
+
}, "strip", z.ZodTypeAny, {
|
|
25704
25581
|
errors: string[];
|
|
25705
25582
|
metadata: {
|
|
25706
25583
|
version1: string;
|
|
@@ -25719,7 +25596,8 @@ export declare const TenantDeploymentResultSchema: z.ZodObject<z.objectUtil.exte
|
|
|
25719
25596
|
};
|
|
25720
25597
|
isSuccess: boolean;
|
|
25721
25598
|
}>;
|
|
25722
|
-
|
|
25599
|
+
name: z.ZodString;
|
|
25600
|
+
}, "strip", z.ZodTypeAny, {
|
|
25723
25601
|
locator: string;
|
|
25724
25602
|
name: string;
|
|
25725
25603
|
deploymentResult: {
|
|
@@ -25775,22 +25653,15 @@ export declare const TenantQualificationsResponseSchema: z.ZodRecord<z.ZodString
|
|
|
25775
25653
|
|
|
25776
25654
|
export declare type TenantResponse = z.infer<typeof TenantResponseSchema>;
|
|
25777
25655
|
|
|
25778
|
-
export declare const TenantResponseSchema: z.ZodObject<
|
|
25779
|
-
locator: z.ZodString;
|
|
25780
|
-
name: z.ZodString;
|
|
25781
|
-
type: z.ZodUnion<[z.ZodLiteral<"test">, z.ZodLiteral<"production">, z.ZodLiteral<"retired">, z.ZodLiteral<"deleted">]>;
|
|
25782
|
-
description: z.ZodString;
|
|
25783
|
-
createdAt: z.ZodString;
|
|
25784
|
-
createdBy: z.ZodString;
|
|
25785
|
-
updatedAt: z.ZodString;
|
|
25786
|
-
}, {
|
|
25656
|
+
export declare const TenantResponseSchema: z.ZodObject<{
|
|
25787
25657
|
locator: z.ZodString;
|
|
25788
25658
|
type: z.ZodEnum<["test", "production", "retired", "deleted"]>;
|
|
25789
25659
|
createdAt: z.ZodString;
|
|
25790
25660
|
updatedAt: z.ZodString;
|
|
25791
25661
|
createdBy: z.ZodString;
|
|
25792
25662
|
description: z.ZodOptional<z.ZodString>;
|
|
25793
|
-
|
|
25663
|
+
name: z.ZodString;
|
|
25664
|
+
}, "strip", z.ZodTypeAny, {
|
|
25794
25665
|
locator: string;
|
|
25795
25666
|
type: "test" | "production" | "retired" | "deleted";
|
|
25796
25667
|
createdBy: string;
|
|
@@ -25812,10 +25683,10 @@ export declare const tenantTypeEnumSchema: z.ZodEnum<["test", "production", "ret
|
|
|
25812
25683
|
|
|
25813
25684
|
export declare type TenantUpdateRequest = z.infer<typeof TenantUpdateRequestSchema>;
|
|
25814
25685
|
|
|
25815
|
-
export declare const TenantUpdateRequestSchema: z.ZodObject<
|
|
25686
|
+
export declare const TenantUpdateRequestSchema: z.ZodObject<{
|
|
25816
25687
|
name: z.ZodString;
|
|
25817
25688
|
description: z.ZodString;
|
|
25818
|
-
},
|
|
25689
|
+
}, "strip", z.ZodTypeAny, {
|
|
25819
25690
|
name: string;
|
|
25820
25691
|
description: string;
|
|
25821
25692
|
}, {
|
|
@@ -27896,20 +27767,16 @@ export declare const UserActivitiesParamsSchema: z.ZodObject<z.objectUtil.extend
|
|
|
27896
27767
|
|
|
27897
27768
|
export declare type UserCreateRequest = z.infer<typeof UserCreateRequestSchema>;
|
|
27898
27769
|
|
|
27899
|
-
export declare const UserCreateRequestSchema: z.ZodObject<
|
|
27770
|
+
export declare const UserCreateRequestSchema: z.ZodObject<{
|
|
27900
27771
|
userName: z.ZodString;
|
|
27772
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
27773
|
+
tenants: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
27901
27774
|
firstName: z.ZodString;
|
|
27902
27775
|
lastName: z.ZodString;
|
|
27903
27776
|
password: z.ZodString;
|
|
27904
27777
|
temporaryPassword: z.ZodBoolean;
|
|
27905
27778
|
email: z.ZodString;
|
|
27906
|
-
|
|
27907
|
-
roles: z.ZodArray<z.ZodString, "many">;
|
|
27908
|
-
}, {
|
|
27909
|
-
userName: z.ZodString;
|
|
27910
|
-
roles: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
27911
|
-
tenants: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
27912
|
-
}>, "strip", z.ZodTypeAny, {
|
|
27779
|
+
}, "strip", z.ZodTypeAny, {
|
|
27913
27780
|
email: string;
|
|
27914
27781
|
userName: string;
|
|
27915
27782
|
firstName: string;
|
|
@@ -27933,6 +27800,64 @@ export declare type UserId = z.infer<typeof UserIdSchema>;
|
|
|
27933
27800
|
|
|
27934
27801
|
export declare const UserIdSchema: z.ZodString;
|
|
27935
27802
|
|
|
27803
|
+
export declare type UserListResponse = z.infer<typeof UserListResponseSchema>;
|
|
27804
|
+
|
|
27805
|
+
export declare const UserListResponseSchema: z.ZodObject<{
|
|
27806
|
+
listCompleted: z.ZodBoolean;
|
|
27807
|
+
items: z.ZodArray<z.ZodObject<{
|
|
27808
|
+
locator: z.ZodString;
|
|
27809
|
+
tenants: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
27810
|
+
permissions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
27811
|
+
userName: z.ZodString;
|
|
27812
|
+
firstName: z.ZodString;
|
|
27813
|
+
lastName: z.ZodString;
|
|
27814
|
+
email: z.ZodString;
|
|
27815
|
+
roles: z.ZodArray<z.ZodString, "many">;
|
|
27816
|
+
}, "strip", z.ZodTypeAny, {
|
|
27817
|
+
locator: string;
|
|
27818
|
+
roles: string[];
|
|
27819
|
+
email: string;
|
|
27820
|
+
userName: string;
|
|
27821
|
+
firstName: string;
|
|
27822
|
+
lastName: string;
|
|
27823
|
+
tenants?: string[] | undefined;
|
|
27824
|
+
permissions?: string[] | undefined;
|
|
27825
|
+
}, {
|
|
27826
|
+
locator: string;
|
|
27827
|
+
roles: string[];
|
|
27828
|
+
email: string;
|
|
27829
|
+
userName: string;
|
|
27830
|
+
firstName: string;
|
|
27831
|
+
lastName: string;
|
|
27832
|
+
tenants?: string[] | undefined;
|
|
27833
|
+
permissions?: string[] | undefined;
|
|
27834
|
+
}>, "many">;
|
|
27835
|
+
}, "strip", z.ZodTypeAny, {
|
|
27836
|
+
items: {
|
|
27837
|
+
locator: string;
|
|
27838
|
+
roles: string[];
|
|
27839
|
+
email: string;
|
|
27840
|
+
userName: string;
|
|
27841
|
+
firstName: string;
|
|
27842
|
+
lastName: string;
|
|
27843
|
+
tenants?: string[] | undefined;
|
|
27844
|
+
permissions?: string[] | undefined;
|
|
27845
|
+
}[];
|
|
27846
|
+
listCompleted: boolean;
|
|
27847
|
+
}, {
|
|
27848
|
+
items: {
|
|
27849
|
+
locator: string;
|
|
27850
|
+
roles: string[];
|
|
27851
|
+
email: string;
|
|
27852
|
+
userName: string;
|
|
27853
|
+
firstName: string;
|
|
27854
|
+
lastName: string;
|
|
27855
|
+
tenants?: string[] | undefined;
|
|
27856
|
+
permissions?: string[] | undefined;
|
|
27857
|
+
}[];
|
|
27858
|
+
listCompleted: boolean;
|
|
27859
|
+
}>;
|
|
27860
|
+
|
|
27936
27861
|
export declare const UserQualificationsParamsSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
27937
27862
|
tenantLocator: z.ZodString;
|
|
27938
27863
|
}, {
|
|
@@ -27964,20 +27889,16 @@ export declare const UserQualificationsUpdateRequestSchema: z.ZodObject<{
|
|
|
27964
27889
|
|
|
27965
27890
|
export declare type UserResponse = z.infer<typeof UserResponseSchema>;
|
|
27966
27891
|
|
|
27967
|
-
export declare const UserResponseSchema: z.ZodObject<
|
|
27892
|
+
export declare const UserResponseSchema: z.ZodObject<{
|
|
27968
27893
|
locator: z.ZodString;
|
|
27894
|
+
tenants: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
27895
|
+
permissions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
27969
27896
|
userName: z.ZodString;
|
|
27970
27897
|
firstName: z.ZodString;
|
|
27971
27898
|
lastName: z.ZodString;
|
|
27972
27899
|
email: z.ZodString;
|
|
27973
27900
|
roles: z.ZodArray<z.ZodString, "many">;
|
|
27974
|
-
|
|
27975
|
-
permissions: z.ZodArray<z.ZodString, "many">;
|
|
27976
|
-
}, {
|
|
27977
|
-
locator: z.ZodString;
|
|
27978
|
-
tenants: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
27979
|
-
permissions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
27980
|
-
}>, "strip", z.ZodTypeAny, {
|
|
27901
|
+
}, "strip", z.ZodTypeAny, {
|
|
27981
27902
|
locator: string;
|
|
27982
27903
|
roles: string[];
|
|
27983
27904
|
email: string;
|
|
@@ -27999,10 +27920,10 @@ export declare const UserResponseSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
27999
27920
|
|
|
28000
27921
|
export declare type UserRolesUpdateRequest = z.infer<typeof UserRolesUpdateRequestSchema>;
|
|
28001
27922
|
|
|
28002
|
-
export declare const UserRolesUpdateRequestSchema: z.ZodObject<
|
|
27923
|
+
export declare const UserRolesUpdateRequestSchema: z.ZodObject<{
|
|
28003
27924
|
addRoles: z.ZodArray<z.ZodString, "many">;
|
|
28004
27925
|
removeRoles: z.ZodArray<z.ZodString, "many">;
|
|
28005
|
-
},
|
|
27926
|
+
}, "strip", z.ZodTypeAny, {
|
|
28006
27927
|
addRoles: string[];
|
|
28007
27928
|
removeRoles: string[];
|
|
28008
27929
|
}, {
|
|
@@ -28012,10 +27933,10 @@ export declare const UserRolesUpdateRequestSchema: z.ZodObject<z.objectUtil.exte
|
|
|
28012
27933
|
|
|
28013
27934
|
export declare type UserTenantsAssignmentsUpdateRequest = z.infer<typeof UserTenantsAssignmentsUpdateRequestSchema>;
|
|
28014
27935
|
|
|
28015
|
-
export declare const UserTenantsAssignmentsUpdateRequestSchema: z.ZodObject<
|
|
27936
|
+
export declare const UserTenantsAssignmentsUpdateRequestSchema: z.ZodObject<{
|
|
28016
27937
|
addTenants: z.ZodArray<z.ZodString, "many">;
|
|
28017
27938
|
removeTenants: z.ZodArray<z.ZodString, "many">;
|
|
28018
|
-
},
|
|
27939
|
+
}, "strip", z.ZodTypeAny, {
|
|
28019
27940
|
addTenants: string[];
|
|
28020
27941
|
removeTenants: string[];
|
|
28021
27942
|
}, {
|
|
@@ -28045,6 +27966,106 @@ export declare const UserUpdateRequestSchema: z.ZodObject<{
|
|
|
28045
27966
|
lastName: string;
|
|
28046
27967
|
}>;
|
|
28047
27968
|
|
|
27969
|
+
export declare type UserWithQualsBff = z.infer<typeof UserWithQualsBffSchema>;
|
|
27970
|
+
|
|
27971
|
+
export declare const UserWithQualsBffSchema: z.ZodObject<{
|
|
27972
|
+
qualifications: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
27973
|
+
locator: z.ZodString;
|
|
27974
|
+
tenants: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
27975
|
+
permissions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
27976
|
+
userName: z.ZodString;
|
|
27977
|
+
firstName: z.ZodString;
|
|
27978
|
+
lastName: z.ZodString;
|
|
27979
|
+
email: z.ZodString;
|
|
27980
|
+
roles: z.ZodArray<z.ZodString, "many">;
|
|
27981
|
+
}, "strip", z.ZodTypeAny, {
|
|
27982
|
+
locator: string;
|
|
27983
|
+
roles: string[];
|
|
27984
|
+
email: string;
|
|
27985
|
+
userName: string;
|
|
27986
|
+
firstName: string;
|
|
27987
|
+
lastName: string;
|
|
27988
|
+
qualifications?: Record<string, string> | undefined;
|
|
27989
|
+
tenants?: string[] | undefined;
|
|
27990
|
+
permissions?: string[] | undefined;
|
|
27991
|
+
}, {
|
|
27992
|
+
locator: string;
|
|
27993
|
+
roles: string[];
|
|
27994
|
+
email: string;
|
|
27995
|
+
userName: string;
|
|
27996
|
+
firstName: string;
|
|
27997
|
+
lastName: string;
|
|
27998
|
+
qualifications?: Record<string, string> | undefined;
|
|
27999
|
+
tenants?: string[] | undefined;
|
|
28000
|
+
permissions?: string[] | undefined;
|
|
28001
|
+
}>;
|
|
28002
|
+
|
|
28003
|
+
export declare type UserWithQualsListResponseBff = z.infer<typeof UserWithQualsListResponseBffSchema>;
|
|
28004
|
+
|
|
28005
|
+
export declare const UserWithQualsListResponseBffSchema: z.ZodObject<{
|
|
28006
|
+
count: z.ZodNumber;
|
|
28007
|
+
listCompleted: z.ZodBoolean;
|
|
28008
|
+
items: z.ZodArray<z.ZodObject<{
|
|
28009
|
+
qualifications: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
28010
|
+
locator: z.ZodString;
|
|
28011
|
+
tenants: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
28012
|
+
permissions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
28013
|
+
userName: z.ZodString;
|
|
28014
|
+
firstName: z.ZodString;
|
|
28015
|
+
lastName: z.ZodString;
|
|
28016
|
+
email: z.ZodString;
|
|
28017
|
+
roles: z.ZodArray<z.ZodString, "many">;
|
|
28018
|
+
}, "strip", z.ZodTypeAny, {
|
|
28019
|
+
locator: string;
|
|
28020
|
+
roles: string[];
|
|
28021
|
+
email: string;
|
|
28022
|
+
userName: string;
|
|
28023
|
+
firstName: string;
|
|
28024
|
+
lastName: string;
|
|
28025
|
+
qualifications?: Record<string, string> | undefined;
|
|
28026
|
+
tenants?: string[] | undefined;
|
|
28027
|
+
permissions?: string[] | undefined;
|
|
28028
|
+
}, {
|
|
28029
|
+
locator: string;
|
|
28030
|
+
roles: string[];
|
|
28031
|
+
email: string;
|
|
28032
|
+
userName: string;
|
|
28033
|
+
firstName: string;
|
|
28034
|
+
lastName: string;
|
|
28035
|
+
qualifications?: Record<string, string> | undefined;
|
|
28036
|
+
tenants?: string[] | undefined;
|
|
28037
|
+
permissions?: string[] | undefined;
|
|
28038
|
+
}>, "many">;
|
|
28039
|
+
}, "strip", z.ZodTypeAny, {
|
|
28040
|
+
items: {
|
|
28041
|
+
locator: string;
|
|
28042
|
+
roles: string[];
|
|
28043
|
+
email: string;
|
|
28044
|
+
userName: string;
|
|
28045
|
+
firstName: string;
|
|
28046
|
+
lastName: string;
|
|
28047
|
+
qualifications?: Record<string, string> | undefined;
|
|
28048
|
+
tenants?: string[] | undefined;
|
|
28049
|
+
permissions?: string[] | undefined;
|
|
28050
|
+
}[];
|
|
28051
|
+
listCompleted: boolean;
|
|
28052
|
+
count: number;
|
|
28053
|
+
}, {
|
|
28054
|
+
items: {
|
|
28055
|
+
locator: string;
|
|
28056
|
+
roles: string[];
|
|
28057
|
+
email: string;
|
|
28058
|
+
userName: string;
|
|
28059
|
+
firstName: string;
|
|
28060
|
+
lastName: string;
|
|
28061
|
+
qualifications?: Record<string, string> | undefined;
|
|
28062
|
+
tenants?: string[] | undefined;
|
|
28063
|
+
permissions?: string[] | undefined;
|
|
28064
|
+
}[];
|
|
28065
|
+
listCompleted: boolean;
|
|
28066
|
+
count: number;
|
|
28067
|
+
}>;
|
|
28068
|
+
|
|
28048
28069
|
export declare const UUIDZ: z.ZodString;
|
|
28049
28070
|
|
|
28050
28071
|
export declare type ValidationItem = z.infer<typeof validationItemSchema>;
|