@appconda/sdk 1.0.458 → 1.0.462
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/modules/emploid/schema.d.ts +193 -0
- package/dist/modules/emploid/schema.js +233 -1
- package/dist/modules/emploid/service.d.ts +39 -1
- package/dist/modules/emploid/service.js +88 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +321 -1
- package/src/modules/emploid/service.ts +299 -1
|
@@ -154,6 +154,10 @@ export declare const UpdateAgentFlowSchema: z.ZodObject<{
|
|
|
154
154
|
name: z.ZodOptional<z.ZodString>;
|
|
155
155
|
description: z.ZodOptional<z.ZodString>;
|
|
156
156
|
}, z.core.$strip>;
|
|
157
|
+
export declare const ChangeAgentflowProjectSchema: z.ZodObject<{
|
|
158
|
+
id: z.ZodString;
|
|
159
|
+
projectId: z.ZodString;
|
|
160
|
+
}, z.core.$strip>;
|
|
157
161
|
export declare const ListAgentFlowsSchema: z.ZodObject<{
|
|
158
162
|
tenantId: z.ZodString;
|
|
159
163
|
}, z.core.$strip>;
|
|
@@ -497,3 +501,192 @@ export declare const DeleteTaskTemplateSchema: z.ZodObject<{
|
|
|
497
501
|
export declare const ListTaskTemplatesSchema: z.ZodObject<{
|
|
498
502
|
emploidId: z.ZodOptional<z.ZodString>;
|
|
499
503
|
}, z.core.$strip>;
|
|
504
|
+
export declare const CreateRecordSchema: z.ZodObject<{
|
|
505
|
+
tenantId: z.ZodString;
|
|
506
|
+
collectionId: z.ZodString;
|
|
507
|
+
data: z.ZodObject<{}, z.core.$catchall<z.ZodAny>>;
|
|
508
|
+
}, z.core.$strip>;
|
|
509
|
+
export declare const GetRecordByIdSchema: z.ZodObject<{
|
|
510
|
+
tenantId: z.ZodString;
|
|
511
|
+
collectionId: z.ZodString;
|
|
512
|
+
recordId: z.ZodString;
|
|
513
|
+
}, z.core.$strip>;
|
|
514
|
+
export declare const ListRecordsSchema: z.ZodObject<{
|
|
515
|
+
tenantId: z.ZodString;
|
|
516
|
+
collectionId: z.ZodString;
|
|
517
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
518
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
519
|
+
filter: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
520
|
+
sort: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodString>>>;
|
|
521
|
+
}, z.core.$strip>;
|
|
522
|
+
export declare const UpdateRecordSchema: z.ZodObject<{
|
|
523
|
+
tenantId: z.ZodString;
|
|
524
|
+
collectionId: z.ZodString;
|
|
525
|
+
recordId: z.ZodString;
|
|
526
|
+
data: z.ZodObject<{}, z.core.$catchall<z.ZodAny>>;
|
|
527
|
+
}, z.core.$strip>;
|
|
528
|
+
export declare const DeleteRecordSchema: z.ZodObject<{
|
|
529
|
+
tenantId: z.ZodString;
|
|
530
|
+
collectionId: z.ZodString;
|
|
531
|
+
recordId: z.ZodString;
|
|
532
|
+
}, z.core.$strip>;
|
|
533
|
+
export declare const RestoreRecordSchema: z.ZodObject<{
|
|
534
|
+
tenantId: z.ZodString;
|
|
535
|
+
collectionId: z.ZodString;
|
|
536
|
+
recordId: z.ZodString;
|
|
537
|
+
}, z.core.$strip>;
|
|
538
|
+
export declare const UpsertRecordSchema: z.ZodObject<{
|
|
539
|
+
tenantId: z.ZodString;
|
|
540
|
+
collectionId: z.ZodString;
|
|
541
|
+
recordId: z.ZodOptional<z.ZodString>;
|
|
542
|
+
data: z.ZodObject<{}, z.core.$catchall<z.ZodAny>>;
|
|
543
|
+
}, z.core.$strip>;
|
|
544
|
+
export declare const BulkCreateRecordsSchema: z.ZodObject<{
|
|
545
|
+
tenantId: z.ZodString;
|
|
546
|
+
collectionId: z.ZodString;
|
|
547
|
+
records: z.ZodArray<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
548
|
+
}, z.core.$strip>;
|
|
549
|
+
export declare const BulkUpdateRecordsSchema: z.ZodObject<{
|
|
550
|
+
tenantId: z.ZodString;
|
|
551
|
+
collectionId: z.ZodString;
|
|
552
|
+
records: z.ZodArray<z.ZodObject<{
|
|
553
|
+
recordId: z.ZodString;
|
|
554
|
+
data: z.ZodObject<{}, z.core.$catchall<z.ZodAny>>;
|
|
555
|
+
}, z.core.$strip>>;
|
|
556
|
+
}, z.core.$strip>;
|
|
557
|
+
export declare const BulkDeleteRecordsSchema: z.ZodObject<{
|
|
558
|
+
tenantId: z.ZodString;
|
|
559
|
+
collectionId: z.ZodString;
|
|
560
|
+
recordIds: z.ZodArray<z.ZodString>;
|
|
561
|
+
}, z.core.$strip>;
|
|
562
|
+
export declare const DuplicateRecordSchema: z.ZodObject<{
|
|
563
|
+
tenantId: z.ZodString;
|
|
564
|
+
collectionId: z.ZodString;
|
|
565
|
+
recordId: z.ZodString;
|
|
566
|
+
overrides: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
567
|
+
}, z.core.$strip>;
|
|
568
|
+
export declare const QueryRecordsSchema: z.ZodObject<{
|
|
569
|
+
tenantId: z.ZodString;
|
|
570
|
+
collectionId: z.ZodString;
|
|
571
|
+
filter: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
572
|
+
fields: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
573
|
+
sort: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodString>>>;
|
|
574
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
575
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
576
|
+
}, z.core.$strip>;
|
|
577
|
+
export declare const SearchRecordsSchema: z.ZodObject<{
|
|
578
|
+
tenantId: z.ZodString;
|
|
579
|
+
collectionId: z.ZodString;
|
|
580
|
+
query: z.ZodString;
|
|
581
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
582
|
+
filter: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
583
|
+
sort: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodString>>>;
|
|
584
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
585
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
586
|
+
}, z.core.$strip>;
|
|
587
|
+
export declare const CountRecordsSchema: z.ZodObject<{
|
|
588
|
+
tenantId: z.ZodString;
|
|
589
|
+
collectionId: z.ZodString;
|
|
590
|
+
filter: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
591
|
+
}, z.core.$strip>;
|
|
592
|
+
export declare const GroupRecordsSchema: z.ZodObject<{
|
|
593
|
+
tenantId: z.ZodString;
|
|
594
|
+
collectionId: z.ZodString;
|
|
595
|
+
by: z.ZodArray<z.ZodString>;
|
|
596
|
+
filter: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
597
|
+
aggregations: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
598
|
+
sort: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodString>>>;
|
|
599
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
600
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
601
|
+
}, z.core.$strip>;
|
|
602
|
+
export declare const AggregateRecordsSchema: z.ZodObject<{
|
|
603
|
+
tenantId: z.ZodString;
|
|
604
|
+
collectionId: z.ZodString;
|
|
605
|
+
pipeline: z.ZodArray<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
606
|
+
filter: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
607
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
608
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
609
|
+
}, z.core.$strip>;
|
|
610
|
+
export declare const DistinctFieldValuesSchema: z.ZodObject<{
|
|
611
|
+
tenantId: z.ZodString;
|
|
612
|
+
collectionId: z.ZodString;
|
|
613
|
+
field: z.ZodString;
|
|
614
|
+
filter: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
615
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
616
|
+
}, z.core.$strip>;
|
|
617
|
+
export declare const CreateCollectionFieldSchema: z.ZodObject<{
|
|
618
|
+
tenantId: z.ZodString;
|
|
619
|
+
collectionId: z.ZodString;
|
|
620
|
+
name: z.ZodString;
|
|
621
|
+
label: z.ZodString;
|
|
622
|
+
type: z.ZodString;
|
|
623
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
624
|
+
config: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
625
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
626
|
+
}, z.core.$strip>;
|
|
627
|
+
export declare const UpdateCollectionFieldSchema: z.ZodObject<{
|
|
628
|
+
tenantId: z.ZodString;
|
|
629
|
+
collectionId: z.ZodString;
|
|
630
|
+
fieldId: z.ZodString;
|
|
631
|
+
label: z.ZodOptional<z.ZodString>;
|
|
632
|
+
type: z.ZodOptional<z.ZodString>;
|
|
633
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
634
|
+
config: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
635
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
636
|
+
}, z.core.$strip>;
|
|
637
|
+
export declare const DeleteCollectionFieldSchema: z.ZodObject<{
|
|
638
|
+
tenantId: z.ZodString;
|
|
639
|
+
collectionId: z.ZodString;
|
|
640
|
+
fieldId: z.ZodString;
|
|
641
|
+
}, z.core.$strip>;
|
|
642
|
+
export declare const ReorderCollectionFieldsSchema: z.ZodObject<{
|
|
643
|
+
tenantId: z.ZodString;
|
|
644
|
+
collectionId: z.ZodString;
|
|
645
|
+
fields: z.ZodArray<z.ZodObject<{
|
|
646
|
+
fieldId: z.ZodString;
|
|
647
|
+
order: z.ZodNumber;
|
|
648
|
+
}, z.core.$strip>>;
|
|
649
|
+
}, z.core.$strip>;
|
|
650
|
+
export declare const GetCollectionSchemaSchema: z.ZodObject<{
|
|
651
|
+
tenantId: z.ZodString;
|
|
652
|
+
collectionId: z.ZodString;
|
|
653
|
+
}, z.core.$strip>;
|
|
654
|
+
export declare const ValidateRecordSchema: z.ZodObject<{
|
|
655
|
+
tenantId: z.ZodString;
|
|
656
|
+
collectionId: z.ZodString;
|
|
657
|
+
data: z.ZodObject<{}, z.core.$catchall<z.ZodAny>>;
|
|
658
|
+
recordId: z.ZodOptional<z.ZodString>;
|
|
659
|
+
}, z.core.$strip>;
|
|
660
|
+
export declare const PreviewValidationErrorsSchema: z.ZodObject<{
|
|
661
|
+
tenantId: z.ZodString;
|
|
662
|
+
collectionId: z.ZodString;
|
|
663
|
+
data: z.ZodObject<{}, z.core.$catchall<z.ZodAny>>;
|
|
664
|
+
recordId: z.ZodOptional<z.ZodString>;
|
|
665
|
+
}, z.core.$strip>;
|
|
666
|
+
export declare const CheckRecordPermissionSchema: z.ZodObject<{
|
|
667
|
+
tenantId: z.ZodString;
|
|
668
|
+
collectionId: z.ZodString;
|
|
669
|
+
recordId: z.ZodString;
|
|
670
|
+
action: z.ZodString;
|
|
671
|
+
}, z.core.$strip>;
|
|
672
|
+
export declare const ListRecordPermissionsSchema: z.ZodObject<{
|
|
673
|
+
tenantId: z.ZodString;
|
|
674
|
+
collectionId: z.ZodString;
|
|
675
|
+
recordId: z.ZodString;
|
|
676
|
+
}, z.core.$strip>;
|
|
677
|
+
export declare const GrantRecordPermissionSchema: z.ZodObject<{
|
|
678
|
+
tenantId: z.ZodString;
|
|
679
|
+
collectionId: z.ZodString;
|
|
680
|
+
recordId: z.ZodString;
|
|
681
|
+
subjectType: z.ZodString;
|
|
682
|
+
subjectId: z.ZodString;
|
|
683
|
+
actions: z.ZodArray<z.ZodString>;
|
|
684
|
+
}, z.core.$strip>;
|
|
685
|
+
export declare const RevokeRecordPermissionSchema: z.ZodObject<{
|
|
686
|
+
tenantId: z.ZodString;
|
|
687
|
+
collectionId: z.ZodString;
|
|
688
|
+
recordId: z.ZodString;
|
|
689
|
+
subjectType: z.ZodString;
|
|
690
|
+
subjectId: z.ZodString;
|
|
691
|
+
actions: z.ZodArray<z.ZodString>;
|
|
692
|
+
}, z.core.$strip>;
|