@devhelm/sdk 0.4.0 → 0.5.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.
@@ -2464,6 +2464,32 @@ export declare const schemas: {
2464
2464
  expected: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2465
2465
  actual: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2466
2466
  }, z.core.$strict>;
2467
+ MemberRoleChangedMetadata: z.ZodObject<{
2468
+ kind: z.ZodLiteral<"member_role_changed">;
2469
+ oldRole: z.ZodEnum<{
2470
+ OWNER: "OWNER";
2471
+ ADMIN: "ADMIN";
2472
+ MEMBER: "MEMBER";
2473
+ }>;
2474
+ newRole: z.ZodEnum<{
2475
+ OWNER: "OWNER";
2476
+ ADMIN: "ADMIN";
2477
+ MEMBER: "MEMBER";
2478
+ }>;
2479
+ }, z.core.$strict>;
2480
+ AuditMetadata: z.ZodObject<{
2481
+ kind: z.ZodLiteral<"member_role_changed">;
2482
+ oldRole: z.ZodEnum<{
2483
+ OWNER: "OWNER";
2484
+ ADMIN: "ADMIN";
2485
+ MEMBER: "MEMBER";
2486
+ }>;
2487
+ newRole: z.ZodEnum<{
2488
+ OWNER: "OWNER";
2489
+ ADMIN: "ADMIN";
2490
+ MEMBER: "MEMBER";
2491
+ }>;
2492
+ }, z.core.$strict>;
2467
2493
  AuditEventDto: z.ZodObject<{
2468
2494
  id: z.ZodNumber;
2469
2495
  actorId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -2472,7 +2498,19 @@ export declare const schemas: {
2472
2498
  resourceType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2473
2499
  resourceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2474
2500
  resourceName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2475
- metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodObject<{}, z.core.$strict>>>>>;
2501
+ metadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2502
+ kind: z.ZodLiteral<"member_role_changed">;
2503
+ oldRole: z.ZodEnum<{
2504
+ OWNER: "OWNER";
2505
+ ADMIN: "ADMIN";
2506
+ MEMBER: "MEMBER";
2507
+ }>;
2508
+ newRole: z.ZodEnum<{
2509
+ OWNER: "OWNER";
2510
+ ADMIN: "ADMIN";
2511
+ MEMBER: "MEMBER";
2512
+ }>;
2513
+ }, z.core.$strict>>>;
2476
2514
  createdAt: z.ZodString;
2477
2515
  }, z.core.$strict>;
2478
2516
  KeyInfo: z.ZodObject<{
@@ -2876,6 +2914,101 @@ export declare const schemas: {
2876
2914
  }, z.core.$strict>>>;
2877
2915
  checkId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2878
2916
  }, z.core.$strict>;
2917
+ RuleEvaluationDto: z.ZodObject<{
2918
+ id: z.ZodString;
2919
+ occurredAt: z.ZodString;
2920
+ monitorId: z.ZodString;
2921
+ region: z.ZodString;
2922
+ policySnapshotHashHex: z.ZodString;
2923
+ ruleIndex: z.ZodNumber;
2924
+ ruleType: z.ZodString;
2925
+ ruleScope: z.ZodString;
2926
+ inputResultIds: z.ZodArray<z.ZodString>;
2927
+ outputMatched: z.ZodBoolean;
2928
+ evaluationDetails: z.ZodRecord<z.ZodString, z.ZodObject<{}, z.core.$strict>>;
2929
+ engineVersion: z.ZodString;
2930
+ checkId: z.ZodString;
2931
+ triggeringTransitionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2932
+ }, z.core.$strict>;
2933
+ StateTransitionDetails: z.ZodObject<{
2934
+ source: z.ZodEnum<{
2935
+ pipeline: "pipeline";
2936
+ "public-api": "public-api";
2937
+ }>;
2938
+ }, z.core.$strict>;
2939
+ IncidentStateTransitionDto: z.ZodObject<{
2940
+ id: z.ZodString;
2941
+ occurredAt: z.ZodString;
2942
+ monitorId: z.ZodString;
2943
+ incidentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2944
+ fromStatus: z.ZodString;
2945
+ toStatus: z.ZodString;
2946
+ reason: z.ZodString;
2947
+ triggeringEvaluationIds: z.ZodArray<z.ZodString>;
2948
+ affectedRegions: z.ZodArray<z.ZodString>;
2949
+ policySnapshotHashHex: z.ZodString;
2950
+ engineVersion: z.ZodString;
2951
+ checkId: z.ZodString;
2952
+ details: z.ZodObject<{
2953
+ source: z.ZodEnum<{
2954
+ pipeline: "pipeline";
2955
+ "public-api": "public-api";
2956
+ }>;
2957
+ }, z.core.$strict>;
2958
+ }, z.core.$strict>;
2959
+ PolicySnapshotDto: z.ZodObject<{
2960
+ hashHex: z.ZodString;
2961
+ policy: z.ZodRecord<z.ZodString, z.ZodObject<{}, z.core.$strict>>;
2962
+ engineVersion: z.ZodString;
2963
+ firstSeenAt: z.ZodString;
2964
+ lastSeenAt: z.ZodString;
2965
+ }, z.core.$strict>;
2966
+ CheckTraceDto: z.ZodObject<{
2967
+ checkId: z.ZodString;
2968
+ evaluations: z.ZodArray<z.ZodObject<{
2969
+ id: z.ZodString;
2970
+ occurredAt: z.ZodString;
2971
+ monitorId: z.ZodString;
2972
+ region: z.ZodString;
2973
+ policySnapshotHashHex: z.ZodString;
2974
+ ruleIndex: z.ZodNumber;
2975
+ ruleType: z.ZodString;
2976
+ ruleScope: z.ZodString;
2977
+ inputResultIds: z.ZodArray<z.ZodString>;
2978
+ outputMatched: z.ZodBoolean;
2979
+ evaluationDetails: z.ZodRecord<z.ZodString, z.ZodObject<{}, z.core.$strict>>;
2980
+ engineVersion: z.ZodString;
2981
+ checkId: z.ZodString;
2982
+ triggeringTransitionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2983
+ }, z.core.$strict>>;
2984
+ transitions: z.ZodArray<z.ZodObject<{
2985
+ id: z.ZodString;
2986
+ occurredAt: z.ZodString;
2987
+ monitorId: z.ZodString;
2988
+ incidentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2989
+ fromStatus: z.ZodString;
2990
+ toStatus: z.ZodString;
2991
+ reason: z.ZodString;
2992
+ triggeringEvaluationIds: z.ZodArray<z.ZodString>;
2993
+ affectedRegions: z.ZodArray<z.ZodString>;
2994
+ policySnapshotHashHex: z.ZodString;
2995
+ engineVersion: z.ZodString;
2996
+ checkId: z.ZodString;
2997
+ details: z.ZodObject<{
2998
+ source: z.ZodEnum<{
2999
+ pipeline: "pipeline";
3000
+ "public-api": "public-api";
3001
+ }>;
3002
+ }, z.core.$strict>;
3003
+ }, z.core.$strict>>;
3004
+ policySnapshot: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3005
+ hashHex: z.ZodString;
3006
+ policy: z.ZodRecord<z.ZodString, z.ZodObject<{}, z.core.$strict>>;
3007
+ engineVersion: z.ZodString;
3008
+ firstSeenAt: z.ZodString;
3009
+ lastSeenAt: z.ZodString;
3010
+ }, z.core.$strict>>>;
3011
+ }, z.core.$strict>;
2879
3012
  ComponentImpact: z.ZodObject<{
2880
3013
  componentId: z.ZodString;
2881
3014
  componentName: z.ZodString;
@@ -3233,6 +3366,10 @@ export declare const schemas: {
3233
3366
  monitorType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3234
3367
  resourceGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3235
3368
  resourceGroupName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3369
+ triggeringCheckId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3370
+ triggeredByRuleSnapshotHashHex: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3371
+ triggeredByRuleIndex: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3372
+ engineVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3236
3373
  }, z.core.$strict>;
3237
3374
  IncidentUpdateDto: z.ZodObject<{
3238
3375
  id: z.ZodString;
@@ -3329,6 +3466,10 @@ export declare const schemas: {
3329
3466
  monitorType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3330
3467
  resourceGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3331
3468
  resourceGroupName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3469
+ triggeringCheckId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3470
+ triggeredByRuleSnapshotHashHex: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3471
+ triggeredByRuleIndex: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3472
+ engineVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3332
3473
  }, z.core.$strict>;
3333
3474
  updates: z.ZodArray<z.ZodObject<{
3334
3475
  id: z.ZodString;
@@ -3446,6 +3587,51 @@ export declare const schemas: {
3446
3587
  monitorRegionCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3447
3588
  checkFrequencySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3448
3589
  }, z.core.$strict>;
3590
+ IncidentTimelineDto: z.ZodObject<{
3591
+ transitions: z.ZodArray<z.ZodObject<{
3592
+ id: z.ZodString;
3593
+ occurredAt: z.ZodString;
3594
+ monitorId: z.ZodString;
3595
+ incidentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3596
+ fromStatus: z.ZodString;
3597
+ toStatus: z.ZodString;
3598
+ reason: z.ZodString;
3599
+ triggeringEvaluationIds: z.ZodArray<z.ZodString>;
3600
+ affectedRegions: z.ZodArray<z.ZodString>;
3601
+ policySnapshotHashHex: z.ZodString;
3602
+ engineVersion: z.ZodString;
3603
+ checkId: z.ZodString;
3604
+ details: z.ZodObject<{
3605
+ source: z.ZodEnum<{
3606
+ pipeline: "pipeline";
3607
+ "public-api": "public-api";
3608
+ }>;
3609
+ }, z.core.$strict>;
3610
+ }, z.core.$strict>>;
3611
+ triggeringEvaluations: z.ZodArray<z.ZodObject<{
3612
+ id: z.ZodString;
3613
+ occurredAt: z.ZodString;
3614
+ monitorId: z.ZodString;
3615
+ region: z.ZodString;
3616
+ policySnapshotHashHex: z.ZodString;
3617
+ ruleIndex: z.ZodNumber;
3618
+ ruleType: z.ZodString;
3619
+ ruleScope: z.ZodString;
3620
+ inputResultIds: z.ZodArray<z.ZodString>;
3621
+ outputMatched: z.ZodBoolean;
3622
+ evaluationDetails: z.ZodRecord<z.ZodString, z.ZodObject<{}, z.core.$strict>>;
3623
+ engineVersion: z.ZodString;
3624
+ checkId: z.ZodString;
3625
+ triggeringTransitionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3626
+ }, z.core.$strict>>;
3627
+ policySnapshot: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3628
+ hashHex: z.ZodString;
3629
+ policy: z.ZodRecord<z.ZodString, z.ZodObject<{}, z.core.$strict>>;
3630
+ engineVersion: z.ZodString;
3631
+ firstSeenAt: z.ZodString;
3632
+ lastSeenAt: z.ZodString;
3633
+ }, z.core.$strict>>>;
3634
+ }, z.core.$strict>;
3449
3635
  IntegrationFieldDto: z.ZodObject<{
3450
3636
  key: z.ZodString;
3451
3637
  label: z.ZodString;
@@ -5384,6 +5570,54 @@ export declare const schemas: {
5384
5570
  }, z.core.$strict>>;
5385
5571
  }, z.core.$strict>;
5386
5572
  }, z.core.$strict>;
5573
+ SingleValueResponseCheckTraceDto: z.ZodObject<{
5574
+ data: z.ZodObject<{
5575
+ checkId: z.ZodString;
5576
+ evaluations: z.ZodArray<z.ZodObject<{
5577
+ id: z.ZodString;
5578
+ occurredAt: z.ZodString;
5579
+ monitorId: z.ZodString;
5580
+ region: z.ZodString;
5581
+ policySnapshotHashHex: z.ZodString;
5582
+ ruleIndex: z.ZodNumber;
5583
+ ruleType: z.ZodString;
5584
+ ruleScope: z.ZodString;
5585
+ inputResultIds: z.ZodArray<z.ZodString>;
5586
+ outputMatched: z.ZodBoolean;
5587
+ evaluationDetails: z.ZodRecord<z.ZodString, z.ZodObject<{}, z.core.$strict>>;
5588
+ engineVersion: z.ZodString;
5589
+ checkId: z.ZodString;
5590
+ triggeringTransitionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5591
+ }, z.core.$strict>>;
5592
+ transitions: z.ZodArray<z.ZodObject<{
5593
+ id: z.ZodString;
5594
+ occurredAt: z.ZodString;
5595
+ monitorId: z.ZodString;
5596
+ incidentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5597
+ fromStatus: z.ZodString;
5598
+ toStatus: z.ZodString;
5599
+ reason: z.ZodString;
5600
+ triggeringEvaluationIds: z.ZodArray<z.ZodString>;
5601
+ affectedRegions: z.ZodArray<z.ZodString>;
5602
+ policySnapshotHashHex: z.ZodString;
5603
+ engineVersion: z.ZodString;
5604
+ checkId: z.ZodString;
5605
+ details: z.ZodObject<{
5606
+ source: z.ZodEnum<{
5607
+ pipeline: "pipeline";
5608
+ "public-api": "public-api";
5609
+ }>;
5610
+ }, z.core.$strict>;
5611
+ }, z.core.$strict>>;
5612
+ policySnapshot: z.ZodOptional<z.ZodNullable<z.ZodObject<{
5613
+ hashHex: z.ZodString;
5614
+ policy: z.ZodRecord<z.ZodString, z.ZodObject<{}, z.core.$strict>>;
5615
+ engineVersion: z.ZodString;
5616
+ firstSeenAt: z.ZodString;
5617
+ lastSeenAt: z.ZodString;
5618
+ }, z.core.$strict>>>;
5619
+ }, z.core.$strict>;
5620
+ }, z.core.$strict>;
5387
5621
  SingleValueResponseDashboardOverviewDto: z.ZodObject<{
5388
5622
  data: z.ZodObject<{
5389
5623
  monitors: z.ZodObject<{
@@ -5516,6 +5750,10 @@ export declare const schemas: {
5516
5750
  monitorType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5517
5751
  resourceGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5518
5752
  resourceGroupName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5753
+ triggeringCheckId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5754
+ triggeredByRuleSnapshotHashHex: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5755
+ triggeredByRuleIndex: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5756
+ engineVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5519
5757
  }, z.core.$strict>;
5520
5758
  updates: z.ZodArray<z.ZodObject<{
5521
5759
  id: z.ZodString;
@@ -5607,6 +5845,53 @@ export declare const schemas: {
5607
5845
  checkFrequencySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5608
5846
  }, z.core.$strict>;
5609
5847
  }, z.core.$strict>;
5848
+ SingleValueResponseIncidentTimelineDto: z.ZodObject<{
5849
+ data: z.ZodObject<{
5850
+ transitions: z.ZodArray<z.ZodObject<{
5851
+ id: z.ZodString;
5852
+ occurredAt: z.ZodString;
5853
+ monitorId: z.ZodString;
5854
+ incidentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5855
+ fromStatus: z.ZodString;
5856
+ toStatus: z.ZodString;
5857
+ reason: z.ZodString;
5858
+ triggeringEvaluationIds: z.ZodArray<z.ZodString>;
5859
+ affectedRegions: z.ZodArray<z.ZodString>;
5860
+ policySnapshotHashHex: z.ZodString;
5861
+ engineVersion: z.ZodString;
5862
+ checkId: z.ZodString;
5863
+ details: z.ZodObject<{
5864
+ source: z.ZodEnum<{
5865
+ pipeline: "pipeline";
5866
+ "public-api": "public-api";
5867
+ }>;
5868
+ }, z.core.$strict>;
5869
+ }, z.core.$strict>>;
5870
+ triggeringEvaluations: z.ZodArray<z.ZodObject<{
5871
+ id: z.ZodString;
5872
+ occurredAt: z.ZodString;
5873
+ monitorId: z.ZodString;
5874
+ region: z.ZodString;
5875
+ policySnapshotHashHex: z.ZodString;
5876
+ ruleIndex: z.ZodNumber;
5877
+ ruleType: z.ZodString;
5878
+ ruleScope: z.ZodString;
5879
+ inputResultIds: z.ZodArray<z.ZodString>;
5880
+ outputMatched: z.ZodBoolean;
5881
+ evaluationDetails: z.ZodRecord<z.ZodString, z.ZodObject<{}, z.core.$strict>>;
5882
+ engineVersion: z.ZodString;
5883
+ checkId: z.ZodString;
5884
+ triggeringTransitionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5885
+ }, z.core.$strict>>;
5886
+ policySnapshot: z.ZodOptional<z.ZodNullable<z.ZodObject<{
5887
+ hashHex: z.ZodString;
5888
+ policy: z.ZodRecord<z.ZodString, z.ZodObject<{}, z.core.$strict>>;
5889
+ engineVersion: z.ZodString;
5890
+ firstSeenAt: z.ZodString;
5891
+ lastSeenAt: z.ZodString;
5892
+ }, z.core.$strict>>>;
5893
+ }, z.core.$strict>;
5894
+ }, z.core.$strict>;
5610
5895
  SingleValueResponseInviteDto: z.ZodObject<{
5611
5896
  data: z.ZodObject<{
5612
5897
  inviteId: z.ZodNumber;
@@ -6782,6 +7067,15 @@ export declare const schemas: {
6782
7067
  websiteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6783
7068
  }, z.core.$strict>;
6784
7069
  }, z.core.$strict>;
7070
+ SingleValueResponsePolicySnapshotDto: z.ZodObject<{
7071
+ data: z.ZodNullable<z.ZodObject<{
7072
+ hashHex: z.ZodString;
7073
+ policy: z.ZodRecord<z.ZodString, z.ZodObject<{}, z.core.$strict>>;
7074
+ engineVersion: z.ZodString;
7075
+ firstSeenAt: z.ZodString;
7076
+ lastSeenAt: z.ZodString;
7077
+ }, z.core.$strict>>;
7078
+ }, z.core.$strict>;
6785
7079
  SingleValueResponseResourceGroupDto: z.ZodObject<{
6786
7080
  data: z.ZodObject<{
6787
7081
  id: z.ZodString;
@@ -7866,7 +8160,19 @@ export declare const schemas: {
7866
8160
  resourceType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7867
8161
  resourceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7868
8162
  resourceName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7869
- metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodObject<{}, z.core.$strict>>>>>;
8163
+ metadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
8164
+ kind: z.ZodLiteral<"member_role_changed">;
8165
+ oldRole: z.ZodEnum<{
8166
+ OWNER: "OWNER";
8167
+ ADMIN: "ADMIN";
8168
+ MEMBER: "MEMBER";
8169
+ }>;
8170
+ newRole: z.ZodEnum<{
8171
+ OWNER: "OWNER";
8172
+ ADMIN: "ADMIN";
8173
+ MEMBER: "MEMBER";
8174
+ }>;
8175
+ }, z.core.$strict>>>;
7870
8176
  createdAt: z.ZodString;
7871
8177
  }, z.core.$strict>>;
7872
8178
  hasNext: z.ZodBoolean;
@@ -7990,6 +8296,36 @@ export declare const schemas: {
7990
8296
  monitorType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7991
8297
  resourceGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7992
8298
  resourceGroupName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8299
+ triggeringCheckId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8300
+ triggeredByRuleSnapshotHashHex: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8301
+ triggeredByRuleIndex: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8302
+ engineVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8303
+ }, z.core.$strict>>;
8304
+ hasNext: z.ZodBoolean;
8305
+ hasPrev: z.ZodBoolean;
8306
+ totalElements: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8307
+ totalPages: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8308
+ }, z.core.$strict>;
8309
+ TableValueResultIncidentStateTransitionDto: z.ZodObject<{
8310
+ data: z.ZodArray<z.ZodObject<{
8311
+ id: z.ZodString;
8312
+ occurredAt: z.ZodString;
8313
+ monitorId: z.ZodString;
8314
+ incidentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8315
+ fromStatus: z.ZodString;
8316
+ toStatus: z.ZodString;
8317
+ reason: z.ZodString;
8318
+ triggeringEvaluationIds: z.ZodArray<z.ZodString>;
8319
+ affectedRegions: z.ZodArray<z.ZodString>;
8320
+ policySnapshotHashHex: z.ZodString;
8321
+ engineVersion: z.ZodString;
8322
+ checkId: z.ZodString;
8323
+ details: z.ZodObject<{
8324
+ source: z.ZodEnum<{
8325
+ pipeline: "pipeline";
8326
+ "public-api": "public-api";
8327
+ }>;
8328
+ }, z.core.$strict>;
7993
8329
  }, z.core.$strict>>;
7994
8330
  hasNext: z.ZodBoolean;
7995
8331
  hasPrev: z.ZodBoolean;
@@ -9032,6 +9368,28 @@ export declare const schemas: {
9032
9368
  totalElements: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9033
9369
  totalPages: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9034
9370
  }, z.core.$strict>;
9371
+ TableValueResultRuleEvaluationDto: z.ZodObject<{
9372
+ data: z.ZodArray<z.ZodObject<{
9373
+ id: z.ZodString;
9374
+ occurredAt: z.ZodString;
9375
+ monitorId: z.ZodString;
9376
+ region: z.ZodString;
9377
+ policySnapshotHashHex: z.ZodString;
9378
+ ruleIndex: z.ZodNumber;
9379
+ ruleType: z.ZodString;
9380
+ ruleScope: z.ZodString;
9381
+ inputResultIds: z.ZodArray<z.ZodString>;
9382
+ outputMatched: z.ZodBoolean;
9383
+ evaluationDetails: z.ZodRecord<z.ZodString, z.ZodObject<{}, z.core.$strict>>;
9384
+ engineVersion: z.ZodString;
9385
+ checkId: z.ZodString;
9386
+ triggeringTransitionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9387
+ }, z.core.$strict>>;
9388
+ hasNext: z.ZodBoolean;
9389
+ hasPrev: z.ZodBoolean;
9390
+ totalElements: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9391
+ totalPages: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9392
+ }, z.core.$strict>;
9035
9393
  TableValueResultScheduledMaintenanceDto: z.ZodObject<{
9036
9394
  data: z.ZodArray<z.ZodObject<{
9037
9395
  id: z.ZodString;
@@ -1 +1 @@
1
- {"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../src/generated/schemas.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AA2oGxB,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqVnB,CAAC"}
1
+ {"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../src/generated/schemas.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAgvGxB,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkWnB,CAAC"}