@satorijs/adapter-lark 3.11.8 → 3.11.9

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/lib/index.cjs CHANGED
@@ -1600,6 +1600,9 @@ __export(types_exports, {
1600
1600
  Approval: () => Approval,
1601
1601
  Attendance: () => Attendance,
1602
1602
  Bitable: () => Bitable,
1603
+ ColorType: () => ColorType,
1604
+ ConnectorArrowStyle: () => ConnectorArrowStyle,
1605
+ ConnectorLineShape: () => ConnectorLineShape,
1603
1606
  Contact: () => Contact,
1604
1607
  Corehr: () => Corehr,
1605
1608
  CustomFieldValueEnumType: () => CustomFieldValueEnumType,
@@ -1614,7 +1617,10 @@ __export(types_exports, {
1614
1617
  Hire: () => Hire,
1615
1618
  IdentityProvider: () => IdentityProvider,
1616
1619
  Mail: () => Mail,
1620
+ MindMapLayout: () => MindMapLayout,
1621
+ MindMapType: () => MindMapType,
1617
1622
  Okr: () => Okr,
1623
+ PaintType: () => PaintType,
1618
1624
  Passport: () => Passport,
1619
1625
  Payroll: () => Payroll,
1620
1626
  Performance: () => Performance,
@@ -1623,6 +1629,8 @@ __export(types_exports, {
1623
1629
  ResignTypeDirectory: () => ResignTypeDirectory,
1624
1630
  RunStatus: () => RunStatus,
1625
1631
  Search: () => Search,
1632
+ SecurityAndCompliance: () => SecurityAndCompliance,
1633
+ SnapTo: () => SnapTo,
1626
1634
  Vc: () => Vc
1627
1635
  });
1628
1636
 
@@ -1793,6 +1801,9 @@ Internal.define({
1793
1801
 
1794
1802
  // src/types/apaas.ts
1795
1803
  Internal.define({
1804
+ "/apaas/v1/apps": {
1805
+ GET: { name: "apaas.app.list", pagination: { argIndex: 0 } }
1806
+ },
1796
1807
  "/apaas/v1/seat_assignments": {
1797
1808
  GET: { name: "apaas.seatAssignment.list", pagination: { argIndex: 0 } }
1798
1809
  },
@@ -1811,6 +1822,12 @@ Internal.define({
1811
1822
  "/apaas/v1/applications/{namespace}/audit_log/data_change_log_detail": {
1812
1823
  GET: "apaas.application.auditLog.dataChangeLogDetail"
1813
1824
  },
1825
+ "/apaas/v1/applications/{namespace}/record_permissions/{record_permission_api_name}/member/batch_remove_authorization": {
1826
+ POST: "apaas.application.recordPermission.member.batchRemoveAuthorization"
1827
+ },
1828
+ "/apaas/v1/applications/{namespace}/record_permissions/{record_permission_api_name}/member/batch_create_authorization": {
1829
+ POST: "apaas.application.recordPermission.member.batchCreateAuthorization"
1830
+ },
1814
1831
  "/apaas/v1/applications/{namespace}/roles/{role_api_name}/member/batch_remove_authorization": {
1815
1832
  POST: "apaas.application.role.member.batchRemoveAuthorization"
1816
1833
  },
@@ -1820,12 +1837,6 @@ Internal.define({
1820
1837
  "/apaas/v1/applications/{namespace}/roles/{role_api_name}/member": {
1821
1838
  GET: "apaas.application.role.member.get"
1822
1839
  },
1823
- "/apaas/v1/applications/{namespace}/record_permissions/{record_permission_api_name}/member/batch_remove_authorization": {
1824
- POST: "apaas.application.recordPermission.member.batchRemoveAuthorization"
1825
- },
1826
- "/apaas/v1/applications/{namespace}/record_permissions/{record_permission_api_name}/member/batch_create_authorization": {
1827
- POST: "apaas.application.recordPermission.member.batchCreateAuthorization"
1828
- },
1829
1840
  "/apaas/v1/applications/{namespace}/objects/oql_query": {
1830
1841
  POST: "apaas.application.object.oqlQuery"
1831
1842
  },
@@ -2586,11 +2597,18 @@ Internal.define({
2586
2597
 
2587
2598
  // src/types/board.ts
2588
2599
  Internal.define({
2589
- "/board/v1/whiteboards/{whiteboard_id}/nodes": {
2590
- GET: "board.whiteboard.node.list"
2600
+ "/board/v1/whiteboards/{whiteboard_id}/theme": {
2601
+ GET: "board.whiteboard.theme"
2602
+ },
2603
+ "/board/v1/whiteboards/{whiteboard_id}/update_theme": {
2604
+ POST: "board.whiteboard.updateTheme"
2591
2605
  },
2592
2606
  "/board/v1/whiteboards/{whiteboard_id}/download_as_image": {
2593
2607
  GET: { name: "board.whiteboard.downloadAsImage", type: "binary" }
2608
+ },
2609
+ "/board/v1/whiteboards/{whiteboard_id}/nodes": {
2610
+ POST: "board.whiteboard.node.create",
2611
+ GET: "board.whiteboard.node.list"
2594
2612
  }
2595
2613
  });
2596
2614
 
@@ -2608,9 +2626,18 @@ Internal.define({
2608
2626
  "/calendar/v4/calendars/primary": {
2609
2627
  POST: "calendar.primary"
2610
2628
  },
2629
+ "/calendar/v4/calendars/primarys": {
2630
+ POST: "calendar.primarys"
2631
+ },
2632
+ "/calendar/v4/calendars/mget": {
2633
+ POST: "calendar.mget"
2634
+ },
2611
2635
  "/calendar/v4/freebusy/list": {
2612
2636
  POST: "calendar.freebusy.list"
2613
2637
  },
2638
+ "/calendar/v4/freebusy/batch": {
2639
+ POST: "calendar.freebusy.batch"
2640
+ },
2614
2641
  "/calendar/v4/calendars/search": {
2615
2642
  POST: { name: "calendar.search", pagination: { argIndex: 1 } }
2616
2643
  },
@@ -2733,6 +2760,9 @@ Internal.define({
2733
2760
 
2734
2761
  // src/types/compensation.ts
2735
2762
  Internal.define({
2763
+ "/compensation/v1/archives": {
2764
+ POST: "compensation.archive.create"
2765
+ },
2736
2766
  "/compensation/v1/archives/query": {
2737
2767
  POST: { name: "compensation.archive.query", pagination: { argIndex: 1 } }
2738
2768
  },
@@ -2750,6 +2780,48 @@ Internal.define({
2750
2780
  },
2751
2781
  "/compensation/v1/change_reasons": {
2752
2782
  GET: { name: "compensation.changeReason.list", pagination: { argIndex: 0 } }
2783
+ },
2784
+ "/compensation/v1/social_insurances": {
2785
+ GET: "compensation.socialInsurance.list"
2786
+ },
2787
+ "/compensation/v1/social_plans/query": {
2788
+ POST: "compensation.socialPlan.query"
2789
+ },
2790
+ "/compensation/v1/social_plans": {
2791
+ GET: { name: "compensation.socialPlan.list", pagination: { argIndex: 0, itemsKey: "plans" } }
2792
+ },
2793
+ "/compensation/v1/social_archive_adjust_record/query": {
2794
+ POST: "compensation.socialArchiveAdjustRecord.query"
2795
+ },
2796
+ "/compensation/v1/social_archive/query": {
2797
+ POST: "compensation.socialArchive.query"
2798
+ },
2799
+ "/compensation/v1/lump_sum_payment/batch_create": {
2800
+ POST: "compensation.lumpSumPayment.batchCreate"
2801
+ },
2802
+ "/compensation/v1/lump_sum_payment/batch_update": {
2803
+ POST: "compensation.lumpSumPayment.batchUpdate"
2804
+ },
2805
+ "/compensation/v1/lump_sum_payment/query": {
2806
+ POST: { name: "compensation.lumpSumPayment.query", pagination: { argIndex: 1, itemsKey: "records" } }
2807
+ },
2808
+ "/compensation/v1/lump_sum_payment/query_detail": {
2809
+ POST: { name: "compensation.lumpSumPayment.queryDetail", pagination: { argIndex: 1, itemsKey: "records" } }
2810
+ },
2811
+ "/compensation/v1/lump_sum_payment/batch_remove": {
2812
+ POST: "compensation.lumpSumPayment.batchRemove"
2813
+ },
2814
+ "/compensation/v1/recurring_payment/query": {
2815
+ POST: { name: "compensation.recurringPayment.query", pagination: { argIndex: 1, itemsKey: "records" } }
2816
+ },
2817
+ "/compensation/v1/recurring_payment/batch_update": {
2818
+ POST: "compensation.recurringPayment.batchUpdate"
2819
+ },
2820
+ "/compensation/v1/recurring_payment/batch_remove": {
2821
+ POST: "compensation.recurringPayment.batchRemove"
2822
+ },
2823
+ "/compensation/v1/recurring_payment/batch_create": {
2824
+ POST: "compensation.recurringPayment.batchCreate"
2753
2825
  }
2754
2826
  });
2755
2827
 
@@ -3276,6 +3348,14 @@ Internal.define({
3276
3348
  "/corehr/v2/employees/job_datas/batch_get": {
3277
3349
  POST: "corehr.employees.jobData.batchGet"
3278
3350
  },
3351
+ "/corehr/v2/employees/international_assignments": {
3352
+ POST: "corehr.employees.internationalAssignment.create",
3353
+ GET: "corehr.employees.internationalAssignment.list"
3354
+ },
3355
+ "/corehr/v2/employees/international_assignments/{international_assignment_id}": {
3356
+ PATCH: "corehr.employees.internationalAssignment.patch",
3357
+ DELETE: "corehr.employees.internationalAssignment.delete"
3358
+ },
3279
3359
  "/corehr/v2/employees/additional_jobs": {
3280
3360
  POST: "corehr.employees.additionalJob.create"
3281
3361
  },
@@ -3428,6 +3508,12 @@ Internal.define({
3428
3508
  "/corehr/v2/custom_orgs/delete_org": {
3429
3509
  POST: "corehr.customOrg.deleteOrg"
3430
3510
  },
3511
+ "/corehr/v2/drafts/{draft_id}": {
3512
+ GET: "corehr.draft.get"
3513
+ },
3514
+ "/corehr/v2/approval_groups/open_query_position_change_list_by_ids": {
3515
+ POST: "corehr.approvalGroups.openQueryPositionChangeListByIds"
3516
+ },
3431
3517
  "/corehr/v2/approval_groups/{process_id}": {
3432
3518
  GET: "corehr.approvalGroups.get"
3433
3519
  },
@@ -3452,6 +3538,9 @@ Internal.define({
3452
3538
  "/corehr/v2/job_families/batch_get": {
3453
3539
  POST: "corehr.jobFamily.batchGet"
3454
3540
  },
3541
+ "/corehr/v2/job_families/query_multi_timeline": {
3542
+ POST: "corehr.jobFamily.queryMultiTimeline"
3543
+ },
3455
3544
  "/corehr/v1/job_levels": {
3456
3545
  POST: "corehr.jobLevel.create",
3457
3546
  GET: { name: "corehr.jobLevel.list", pagination: { argIndex: 0 } }
@@ -3480,6 +3569,19 @@ Internal.define({
3480
3569
  "/corehr/v2/job_grades/query_recent_change": {
3481
3570
  GET: "corehr.jobGrade.queryRecentChange"
3482
3571
  },
3572
+ "/corehr/v2/pathways": {
3573
+ POST: "corehr.pathway.create"
3574
+ },
3575
+ "/corehr/v2/pathways/{pathway_id}": {
3576
+ PATCH: "corehr.pathway.patch",
3577
+ DELETE: "corehr.pathway.delete"
3578
+ },
3579
+ "/corehr/v2/pathways/active": {
3580
+ POST: "corehr.pathway.active"
3581
+ },
3582
+ "/corehr/v2/pathways/batch_get": {
3583
+ POST: "corehr.pathway.batchGet"
3584
+ },
3483
3585
  "/corehr/v1/jobs": {
3484
3586
  POST: "corehr.job.create"
3485
3587
  },
@@ -3493,9 +3595,33 @@ Internal.define({
3493
3595
  "/corehr/v2/jobs": {
3494
3596
  GET: { name: "corehr.job.list", pagination: { argIndex: 0 } }
3495
3597
  },
3598
+ "/corehr/v2/jobs/batch_get": {
3599
+ POST: "corehr.job.batchGet"
3600
+ },
3601
+ "/corehr/v2/jobs/query_multi_timeline": {
3602
+ POST: "corehr.job.queryMultiTimeline"
3603
+ },
3496
3604
  "/corehr/v2/jobs/query_recent_change": {
3497
3605
  GET: "corehr.job.queryRecentChange"
3498
3606
  },
3607
+ "/corehr/v2/positions": {
3608
+ POST: "corehr.position.create"
3609
+ },
3610
+ "/corehr/v2/positions/{position_id}": {
3611
+ PATCH: "corehr.position.patch"
3612
+ },
3613
+ "/corehr/v2/positions/query": {
3614
+ POST: { name: "corehr.position.query", pagination: { argIndex: 1 } }
3615
+ },
3616
+ "/corehr/v2/positions/query_recent_change": {
3617
+ GET: "corehr.position.queryRecentChange"
3618
+ },
3619
+ "/corehr/v2/positions/active": {
3620
+ POST: "corehr.position.active"
3621
+ },
3622
+ "/corehr/v2/positions/del_position": {
3623
+ POST: "corehr.position.delPosition"
3624
+ },
3499
3625
  "/corehr/v2/pre_hires/withdraw_onboarding": {
3500
3626
  POST: "corehr.preHire.withdrawOnboarding"
3501
3627
  },
@@ -3518,6 +3644,9 @@ Internal.define({
3518
3644
  "/corehr/v2/pre_hires/{pre_hire_id}/transit_task": {
3519
3645
  POST: "corehr.preHire.transitTask"
3520
3646
  },
3647
+ "/corehr/v2/pre_hires/transform_onboarding_task": {
3648
+ POST: "corehr.preHire.transformOnboardingTask"
3649
+ },
3521
3650
  "/corehr/v2/pre_hires/{pre_hire_id}/complete": {
3522
3651
  POST: "corehr.preHire.complete"
3523
3652
  },
@@ -3666,6 +3795,9 @@ Internal.define({
3666
3795
  "/corehr/v2/processes/{process_id}": {
3667
3796
  GET: "corehr.process.get"
3668
3797
  },
3798
+ "/corehr/v2/processes/{process_id}/flow_variable_data": {
3799
+ GET: "corehr.process.flowVariableData"
3800
+ },
3669
3801
  "/corehr/v2/processes/{process_id}/form_variable_data": {
3670
3802
  GET: "corehr.process.formVariableData.get"
3671
3803
  },
@@ -3755,9 +3887,6 @@ Internal.define({
3755
3887
  "/directory/v1/employees/search": {
3756
3888
  POST: "directory.employee.search"
3757
3889
  },
3758
- "/directory/v1/employees/idconvert": {
3759
- POST: "directory.employee.idconvert"
3760
- },
3761
3890
  "/directory/v1/departments": {
3762
3891
  POST: "directory.department.create"
3763
3892
  },
@@ -3774,9 +3903,6 @@ Internal.define({
3774
3903
  "/directory/v1/departments/search": {
3775
3904
  POST: "directory.department.search"
3776
3905
  },
3777
- "/directory/v1/departments/idconvert": {
3778
- POST: "directory.department.idconvert"
3779
- },
3780
3906
  "/directory/v1/share_entities": {
3781
3907
  GET: "directory.collborationShareEntity.list"
3782
3908
  },
@@ -3919,6 +4045,9 @@ Internal.define({
3919
4045
  },
3920
4046
  "/docx/v1/documents/{document_id}/blocks/{block_id}/children/batch_delete": {
3921
4047
  DELETE: "docx.document.block.children.batchDelete"
4048
+ },
4049
+ "/docx/v1/documents/blocks/convert": {
4050
+ POST: "docx.document.convert"
3922
4051
  }
3923
4052
  });
3924
4053
 
@@ -4022,32 +4151,32 @@ Internal.define({
4022
4151
  "/drive/v1/files/{file_token}/delete_subscribe": {
4023
4152
  DELETE: "drive.file.deleteSubscribe"
4024
4153
  },
4154
+ "/drive/v1/permissions/{token}/members": {
4155
+ POST: "drive.permission.member.create",
4156
+ GET: "drive.permission.member.list"
4157
+ },
4025
4158
  "/drive/v1/permissions/{token}/members/batch_create": {
4026
4159
  POST: "drive.permission.member.batchCreate"
4027
4160
  },
4161
+ "/drive/v1/permissions/{token}/members/{member_id}": {
4162
+ PUT: "drive.permission.member.update",
4163
+ DELETE: "drive.permission.member.delete"
4164
+ },
4028
4165
  "/drive/v1/permissions/{token}/members/transfer_owner": {
4029
4166
  POST: "drive.permission.member.transferOwner"
4030
4167
  },
4031
4168
  "/drive/v1/permissions/{token}/members/auth": {
4032
4169
  GET: "drive.permission.member.auth"
4033
4170
  },
4034
- "/drive/v1/permissions/{token}/members": {
4035
- GET: "drive.permission.member.list",
4036
- POST: "drive.permission.member.create"
4037
- },
4038
- "/drive/v1/permissions/{token}/members/{member_id}": {
4039
- PUT: "drive.permission.member.update",
4040
- DELETE: "drive.permission.member.delete"
4171
+ "/drive/v2/permissions/{token}/public": {
4172
+ PATCH: "drive.permission.public.patch",
4173
+ GET: "drive.permission.public.get"
4041
4174
  },
4042
4175
  "/drive/v1/permissions/{token}/public/password": {
4043
4176
  POST: "drive.permission.public.password.create",
4044
4177
  PUT: "drive.permission.public.password.update",
4045
4178
  DELETE: "drive.permission.public.password.delete"
4046
4179
  },
4047
- "/drive/v2/permissions/{token}/public": {
4048
- GET: "drive.permission.public.get",
4049
- PATCH: "drive.permission.public.patch"
4050
- },
4051
4180
  "/drive/v1/files/{file_token}/comments": {
4052
4181
  GET: { name: "drive.file.comment.list", pagination: { argIndex: 1 } },
4053
4182
  POST: "drive.file.comment.create"
@@ -4621,6 +4750,9 @@ var Hire;
4621
4750
  })(OfferSchema = Hire2.OfferSchema || (Hire2.OfferSchema = {}));
4622
4751
  })(Hire || (Hire = {}));
4623
4752
  Internal.define({
4753
+ "/hire/v1/portal_apply_schemas": {
4754
+ GET: { name: "hire.portalApplySchema.list", pagination: { argIndex: 0 } }
4755
+ },
4624
4756
  "/hire/v1/locations/query": {
4625
4757
  POST: { name: "hire.location.query", pagination: { argIndex: 1 } }
4626
4758
  },
@@ -4725,6 +4857,9 @@ Internal.define({
4725
4857
  "/hire/v1/interviewers/{interviewer_id}": {
4726
4858
  PATCH: "hire.interviewer.patch"
4727
4859
  },
4860
+ "/hire/v1/offer_approval_templates": {
4861
+ GET: { name: "hire.offerApprovalTemplate.list", pagination: { argIndex: 0 } }
4862
+ },
4728
4863
  "/hire/v1/offer_custom_fields/{offer_custom_field_id}": {
4729
4864
  PUT: "hire.offerCustomField.update"
4730
4865
  },
@@ -4973,6 +5108,9 @@ Internal.define({
4973
5108
  "/hire/v1/background_check_orders": {
4974
5109
  GET: { name: "hire.backgroundCheckOrder.list", pagination: { argIndex: 0 } }
4975
5110
  },
5111
+ "/hire/v1/background_check_orders/batch_query": {
5112
+ POST: { name: "hire.backgroundCheckOrder.batchQuery", pagination: { argIndex: 1 } }
5113
+ },
4976
5114
  "/hire/v1/tripartite_agreements": {
4977
5115
  POST: "hire.tripartiteAgreement.create",
4978
5116
  GET: { name: "hire.tripartiteAgreement.list", pagination: { argIndex: 0 } }
@@ -5664,6 +5802,15 @@ Internal.define({
5664
5802
  // src/types/payroll.ts
5665
5803
  var Payroll;
5666
5804
  ((Payroll2) => {
5805
+ let CostAllocationDetail;
5806
+ ((CostAllocationDetail2) => {
5807
+ let ListQueryReportType;
5808
+ ((ListQueryReportType2) => {
5809
+ ListQueryReportType2[ListQueryReportType2["Default"] = 0] = "Default";
5810
+ ListQueryReportType2[ListQueryReportType2["Accrued"] = 1] = "Accrued";
5811
+ ListQueryReportType2[ListQueryReportType2["Paid"] = 2] = "Paid";
5812
+ })(ListQueryReportType = CostAllocationDetail2.ListQueryReportType || (CostAllocationDetail2.ListQueryReportType = {}));
5813
+ })(CostAllocationDetail = Payroll2.CostAllocationDetail || (Payroll2.CostAllocationDetail = {}));
5667
5814
  let CostAllocationReport;
5668
5815
  ((CostAllocationReport2) => {
5669
5816
  let ListQueryReportType;
@@ -5675,17 +5822,14 @@ var Payroll;
5675
5822
  })(CostAllocationReport = Payroll2.CostAllocationReport || (Payroll2.CostAllocationReport = {}));
5676
5823
  })(Payroll || (Payroll = {}));
5677
5824
  Internal.define({
5678
- "/payroll/v1/payment_activity_details": {
5679
- GET: "payroll.paymentActivityDetail.list"
5680
- },
5681
- "/payroll/v1/payment_detail/query": {
5682
- POST: "payroll.paymentDetail.query"
5825
+ "/payroll/v1/acct_items": {
5826
+ GET: { name: "payroll.acctItem.list", pagination: { argIndex: 0 } }
5683
5827
  },
5684
- "/payroll/v1/payment_activitys/archive": {
5685
- POST: "payroll.paymentActivity.archive"
5828
+ "/payroll/v1/paygroups": {
5829
+ GET: { name: "payroll.paygroup.list", pagination: { argIndex: 0 } }
5686
5830
  },
5687
- "/payroll/v1/payment_activitys": {
5688
- GET: { name: "payroll.paymentActivity.list", pagination: { argIndex: 0, itemsKey: "payment_activitys" } }
5831
+ "/payroll/v1/datasources": {
5832
+ GET: { name: "payroll.datasource.list", pagination: { argIndex: 0, itemsKey: "datasources" } }
5689
5833
  },
5690
5834
  "/payroll/v1/datasource_records/save": {
5691
5835
  POST: "payroll.datasourceRecord.save"
@@ -5693,20 +5837,26 @@ Internal.define({
5693
5837
  "/payroll/v1/datasource_records/query": {
5694
5838
  POST: { name: "payroll.datasourceRecord.query", pagination: { argIndex: 1, itemsKey: "records" } }
5695
5839
  },
5696
- "/payroll/v1/datasources": {
5697
- GET: { name: "payroll.datasource.list", pagination: { argIndex: 0, itemsKey: "datasources" } }
5840
+ "/payroll/v1/payment_activitys/archive": {
5841
+ POST: "payroll.paymentActivity.archive"
5698
5842
  },
5699
- "/payroll/v1/acct_items": {
5700
- GET: { name: "payroll.acctItem.list", pagination: { argIndex: 0 } }
5843
+ "/payroll/v1/payment_activitys": {
5844
+ GET: { name: "payroll.paymentActivity.list", pagination: { argIndex: 0, itemsKey: "payment_activitys" } }
5845
+ },
5846
+ "/payroll/v1/payment_activity_details": {
5847
+ GET: "payroll.paymentActivityDetail.list"
5848
+ },
5849
+ "/payroll/v1/payment_detail/query": {
5850
+ POST: "payroll.paymentDetail.query"
5851
+ },
5852
+ "/payroll/v1/cost_allocation_details": {
5853
+ GET: "payroll.costAllocationDetail.list"
5701
5854
  },
5702
5855
  "/payroll/v1/cost_allocation_reports": {
5703
5856
  GET: "payroll.costAllocationReport.list"
5704
5857
  },
5705
5858
  "/payroll/v1/cost_allocation_plans": {
5706
5859
  GET: { name: "payroll.costAllocationPlan.list", pagination: { argIndex: 0 } }
5707
- },
5708
- "/payroll/v1/paygroups": {
5709
- GET: { name: "payroll.paygroup.list", pagination: { argIndex: 0 } }
5710
5860
  }
5711
5861
  });
5712
5862
 
@@ -5885,7 +6035,101 @@ Internal.define({
5885
6035
  });
5886
6036
 
5887
6037
  // src/types/security_and_compliance.ts
6038
+ var SecurityAndCompliance;
6039
+ ((SecurityAndCompliance2) => {
6040
+ let DeviceRecord;
6041
+ ((DeviceRecord2) => {
6042
+ let MineResponseDeviceOwnership;
6043
+ ((MineResponseDeviceOwnership2) => {
6044
+ MineResponseDeviceOwnership2[MineResponseDeviceOwnership2["Unknown"] = 0] = "Unknown";
6045
+ MineResponseDeviceOwnership2[MineResponseDeviceOwnership2["Personal"] = 1] = "Personal";
6046
+ MineResponseDeviceOwnership2[MineResponseDeviceOwnership2["Company"] = 2] = "Company";
6047
+ })(MineResponseDeviceOwnership = DeviceRecord2.MineResponseDeviceOwnership || (DeviceRecord2.MineResponseDeviceOwnership = {}));
6048
+ let MineResponseDeviceStatus;
6049
+ ((MineResponseDeviceStatus2) => {
6050
+ MineResponseDeviceStatus2[MineResponseDeviceStatus2["Unknown"] = 0] = "Unknown";
6051
+ MineResponseDeviceStatus2[MineResponseDeviceStatus2["Trusted"] = 1] = "Trusted";
6052
+ MineResponseDeviceStatus2[MineResponseDeviceStatus2["Untrusted"] = 2] = "Untrusted";
6053
+ })(MineResponseDeviceStatus = DeviceRecord2.MineResponseDeviceStatus || (DeviceRecord2.MineResponseDeviceStatus = {}));
6054
+ let CreateRequestDeviceSystem;
6055
+ ((CreateRequestDeviceSystem2) => {
6056
+ CreateRequestDeviceSystem2[CreateRequestDeviceSystem2["Windows"] = 1] = "Windows";
6057
+ CreateRequestDeviceSystem2[CreateRequestDeviceSystem2["MacOS"] = 2] = "MacOS";
6058
+ CreateRequestDeviceSystem2[CreateRequestDeviceSystem2["Linux"] = 3] = "Linux";
6059
+ CreateRequestDeviceSystem2[CreateRequestDeviceSystem2["Android"] = 4] = "Android";
6060
+ CreateRequestDeviceSystem2[CreateRequestDeviceSystem2["IOS"] = 5] = "IOS";
6061
+ CreateRequestDeviceSystem2[CreateRequestDeviceSystem2["OpenHarmony"] = 6] = "OpenHarmony";
6062
+ })(CreateRequestDeviceSystem = DeviceRecord2.CreateRequestDeviceSystem || (DeviceRecord2.CreateRequestDeviceSystem = {}));
6063
+ let CreateRequestDeviceOwnership;
6064
+ ((CreateRequestDeviceOwnership2) => {
6065
+ CreateRequestDeviceOwnership2[CreateRequestDeviceOwnership2["Unknown"] = 0] = "Unknown";
6066
+ CreateRequestDeviceOwnership2[CreateRequestDeviceOwnership2["Personal"] = 1] = "Personal";
6067
+ CreateRequestDeviceOwnership2[CreateRequestDeviceOwnership2["Company"] = 2] = "Company";
6068
+ })(CreateRequestDeviceOwnership = DeviceRecord2.CreateRequestDeviceOwnership || (DeviceRecord2.CreateRequestDeviceOwnership = {}));
6069
+ let CreateRequestDeviceStatus;
6070
+ ((CreateRequestDeviceStatus2) => {
6071
+ CreateRequestDeviceStatus2[CreateRequestDeviceStatus2["Unknown"] = 0] = "Unknown";
6072
+ CreateRequestDeviceStatus2[CreateRequestDeviceStatus2["Trusted"] = 1] = "Trusted";
6073
+ CreateRequestDeviceStatus2[CreateRequestDeviceStatus2["Untrusted"] = 2] = "Untrusted";
6074
+ })(CreateRequestDeviceStatus = DeviceRecord2.CreateRequestDeviceStatus || (DeviceRecord2.CreateRequestDeviceStatus = {}));
6075
+ let ListQueryDeviceOwnership;
6076
+ ((ListQueryDeviceOwnership2) => {
6077
+ ListQueryDeviceOwnership2[ListQueryDeviceOwnership2["Unknown"] = 0] = "Unknown";
6078
+ ListQueryDeviceOwnership2[ListQueryDeviceOwnership2["Personal"] = 1] = "Personal";
6079
+ ListQueryDeviceOwnership2[ListQueryDeviceOwnership2["Company"] = 2] = "Company";
6080
+ })(ListQueryDeviceOwnership = DeviceRecord2.ListQueryDeviceOwnership || (DeviceRecord2.ListQueryDeviceOwnership = {}));
6081
+ let ListQueryDeviceStatus;
6082
+ ((ListQueryDeviceStatus2) => {
6083
+ ListQueryDeviceStatus2[ListQueryDeviceStatus2["Unknown"] = 0] = "Unknown";
6084
+ ListQueryDeviceStatus2[ListQueryDeviceStatus2["Trusted"] = 1] = "Trusted";
6085
+ ListQueryDeviceStatus2[ListQueryDeviceStatus2["Untrusted"] = 2] = "Untrusted";
6086
+ })(ListQueryDeviceStatus = DeviceRecord2.ListQueryDeviceStatus || (DeviceRecord2.ListQueryDeviceStatus = {}));
6087
+ let ListQueryDeviceTerminalType;
6088
+ ((ListQueryDeviceTerminalType2) => {
6089
+ ListQueryDeviceTerminalType2[ListQueryDeviceTerminalType2["Unknown"] = 0] = "Unknown";
6090
+ ListQueryDeviceTerminalType2[ListQueryDeviceTerminalType2["Mobile"] = 1] = "Mobile";
6091
+ ListQueryDeviceTerminalType2[ListQueryDeviceTerminalType2["PC"] = 2] = "PC";
6092
+ })(ListQueryDeviceTerminalType = DeviceRecord2.ListQueryDeviceTerminalType || (DeviceRecord2.ListQueryDeviceTerminalType = {}));
6093
+ let ListQueryOs;
6094
+ ((ListQueryOs2) => {
6095
+ ListQueryOs2[ListQueryOs2["Unknown"] = 0] = "Unknown";
6096
+ ListQueryOs2[ListQueryOs2["Windows"] = 1] = "Windows";
6097
+ ListQueryOs2[ListQueryOs2["MacOS"] = 2] = "MacOS";
6098
+ ListQueryOs2[ListQueryOs2["Linux"] = 3] = "Linux";
6099
+ ListQueryOs2[ListQueryOs2["Android"] = 4] = "Android";
6100
+ ListQueryOs2[ListQueryOs2["IOS"] = 5] = "IOS";
6101
+ ListQueryOs2[ListQueryOs2["OpenHarmony"] = 6] = "OpenHarmony";
6102
+ })(ListQueryOs = DeviceRecord2.ListQueryOs || (DeviceRecord2.ListQueryOs = {}));
6103
+ let UpdateRequestDeviceOwnership;
6104
+ ((UpdateRequestDeviceOwnership2) => {
6105
+ UpdateRequestDeviceOwnership2[UpdateRequestDeviceOwnership2["Unknown"] = 0] = "Unknown";
6106
+ UpdateRequestDeviceOwnership2[UpdateRequestDeviceOwnership2["Personal"] = 1] = "Personal";
6107
+ UpdateRequestDeviceOwnership2[UpdateRequestDeviceOwnership2["Company"] = 2] = "Company";
6108
+ })(UpdateRequestDeviceOwnership = DeviceRecord2.UpdateRequestDeviceOwnership || (DeviceRecord2.UpdateRequestDeviceOwnership = {}));
6109
+ let UpdateRequestDeviceStatus;
6110
+ ((UpdateRequestDeviceStatus2) => {
6111
+ UpdateRequestDeviceStatus2[UpdateRequestDeviceStatus2["Unknown"] = 0] = "Unknown";
6112
+ UpdateRequestDeviceStatus2[UpdateRequestDeviceStatus2["Trusted"] = 1] = "Trusted";
6113
+ UpdateRequestDeviceStatus2[UpdateRequestDeviceStatus2["Untrusted"] = 2] = "Untrusted";
6114
+ })(UpdateRequestDeviceStatus = DeviceRecord2.UpdateRequestDeviceStatus || (DeviceRecord2.UpdateRequestDeviceStatus = {}));
6115
+ })(DeviceRecord = SecurityAndCompliance2.DeviceRecord || (SecurityAndCompliance2.DeviceRecord = {}));
6116
+ })(SecurityAndCompliance || (SecurityAndCompliance = {}));
5888
6117
  Internal.define({
6118
+ "/security_and_compliance/v2/device_records/mine": {
6119
+ GET: "securityAndCompliance.deviceRecord.mine"
6120
+ },
6121
+ "/security_and_compliance/v2/device_records": {
6122
+ POST: "securityAndCompliance.deviceRecord.create",
6123
+ GET: { name: "securityAndCompliance.deviceRecord.list", pagination: { argIndex: 0 } }
6124
+ },
6125
+ "/security_and_compliance/v2/device_records/{device_record_id}": {
6126
+ GET: "securityAndCompliance.deviceRecord.get",
6127
+ PUT: "securityAndCompliance.deviceRecord.update",
6128
+ DELETE: "securityAndCompliance.deviceRecord.delete"
6129
+ },
6130
+ "/security_and_compliance/v2/device_apply_records/{device_apply_record_id}": {
6131
+ PUT: "securityAndCompliance.deviceApplyRecord.update"
6132
+ },
5889
6133
  "/security_and_compliance/v1/openapi_logs/list_data": {
5890
6134
  POST: "securityAndCompliance.openapiLog.listData"
5891
6135
  }
@@ -6563,6 +6807,36 @@ var AilySenderType = /* @__PURE__ */ ((AilySenderType2) => {
6563
6807
  AilySenderType2["SenderTypeAssistant"] = "ASSISTANT";
6564
6808
  return AilySenderType2;
6565
6809
  })(AilySenderType || {});
6810
+ var ColorType = /* @__PURE__ */ ((ColorType2) => {
6811
+ ColorType2[ColorType2["SystemColor"] = 0] = "SystemColor";
6812
+ ColorType2[ColorType2["CustomColor"] = 1] = "CustomColor";
6813
+ return ColorType2;
6814
+ })(ColorType || {});
6815
+ var ConnectorArrowStyle = /* @__PURE__ */ ((ConnectorArrowStyle2) => {
6816
+ ConnectorArrowStyle2["None"] = "none";
6817
+ ConnectorArrowStyle2["LineArrow"] = "line_arrow";
6818
+ ConnectorArrowStyle2["TriangleArrow"] = "triangle_arrow";
6819
+ ConnectorArrowStyle2["EmptyTriangleArrow"] = "empty_triangle_arrow";
6820
+ ConnectorArrowStyle2["CircleArrow"] = "circle_arrow";
6821
+ ConnectorArrowStyle2["EmptyCircleArrow"] = "empty_circle_arrow";
6822
+ ConnectorArrowStyle2["DiamondArrow"] = "diamond_arrow";
6823
+ ConnectorArrowStyle2["EmptyDiamondArrow"] = "empty_diamond_arrow";
6824
+ ConnectorArrowStyle2["SingleArrow"] = "single_arrow";
6825
+ ConnectorArrowStyle2["MultiArrow"] = "multi_arrow";
6826
+ ConnectorArrowStyle2["ExactSingleArrow"] = "exact_single_arrow";
6827
+ ConnectorArrowStyle2["ZeroOrMultiArrow"] = "zero_or_multi_arrow";
6828
+ ConnectorArrowStyle2["ZeroOrSingleArrow"] = "zero_or_single_arrow";
6829
+ ConnectorArrowStyle2["SingleOrMultiArrow"] = "single_or_multi_arrow";
6830
+ ConnectorArrowStyle2["XArrow"] = "x_arrow";
6831
+ return ConnectorArrowStyle2;
6832
+ })(ConnectorArrowStyle || {});
6833
+ var ConnectorLineShape = /* @__PURE__ */ ((ConnectorLineShape2) => {
6834
+ ConnectorLineShape2["Straight"] = "straight";
6835
+ ConnectorLineShape2["Polyline"] = "polyline";
6836
+ ConnectorLineShape2["Curve"] = "curve";
6837
+ ConnectorLineShape2["RightAngledPolyline"] = "right_angled_polyline";
6838
+ return ConnectorLineShape2;
6839
+ })(ConnectorLineShape || {});
6566
6840
  var CustomFieldValueEnumType = /* @__PURE__ */ ((CustomFieldValueEnumType2) => {
6567
6841
  CustomFieldValueEnumType2["CustomFieldValueEnumTypeText"] = "1";
6568
6842
  CustomFieldValueEnumType2["CustomFieldValueEnumTypePicture"] = "2";
@@ -6615,6 +6889,27 @@ var IdentityProvider = /* @__PURE__ */ ((IdentityProvider2) => {
6615
6889
  IdentityProvider2["IdentityProviderFeishu"] = "FEISHU";
6616
6890
  return IdentityProvider2;
6617
6891
  })(IdentityProvider || {});
6892
+ var MindMapLayout = /* @__PURE__ */ ((MindMapLayout2) => {
6893
+ MindMapLayout2["UpDown"] = "up_down";
6894
+ MindMapLayout2["LeftRight"] = "left_right";
6895
+ MindMapLayout2["TreeLeft"] = "tree_left";
6896
+ MindMapLayout2["TreeRight"] = "tree_right";
6897
+ MindMapLayout2["TreeBalance"] = "tree_balance";
6898
+ MindMapLayout2["VerticalTimeLine"] = "vertical_time_line";
6899
+ MindMapLayout2["HorizontalTimeLine"] = "horizontal_time_line";
6900
+ return MindMapLayout2;
6901
+ })(MindMapLayout || {});
6902
+ var MindMapType = /* @__PURE__ */ ((MindMapType2) => {
6903
+ MindMapType2["MindMapText"] = "mind_map_text";
6904
+ MindMapType2["MindMapFullRoundRect"] = "mind_map_full_round_rect";
6905
+ MindMapType2["MindMapRoundRect"] = "mind_map_round_rect";
6906
+ return MindMapType2;
6907
+ })(MindMapType || {});
6908
+ var PaintType = /* @__PURE__ */ ((PaintType2) => {
6909
+ PaintType2["Marker"] = "marker";
6910
+ PaintType2["Highlight"] = "highlight";
6911
+ return PaintType2;
6912
+ })(PaintType || {});
6618
6913
  var ResignReasonDirectory = /* @__PURE__ */ ((ResignReasonDirectory2) => {
6619
6914
  ResignReasonDirectory2["ResignReasonDirectoryEmpty"] = "0";
6620
6915
  ResignReasonDirectory2["ResignReasonDirectoryNotSatisfiedWithSalary"] = "1";
@@ -6661,6 +6956,14 @@ var RunStatus = /* @__PURE__ */ ((RunStatus2) => {
6661
6956
  RunStatus2["RunStatusExpired"] = "EXPIRED";
6662
6957
  return RunStatus2;
6663
6958
  })(RunStatus || {});
6959
+ var SnapTo = /* @__PURE__ */ ((SnapTo2) => {
6960
+ SnapTo2["Auto"] = "auto";
6961
+ SnapTo2["Top"] = "top";
6962
+ SnapTo2["Right"] = "right";
6963
+ SnapTo2["Bottom"] = "bottom";
6964
+ SnapTo2["Left"] = "left";
6965
+ return SnapTo2;
6966
+ })(SnapTo || {});
6664
6967
 
6665
6968
  // src/index.ts
6666
6969
  var index_default = LarkBot;
@@ -62,17 +62,17 @@ export declare namespace Aily {
62
62
  namespace AilyMessage {
63
63
  interface Methods {
64
64
  /**
65
- * 发送智能伙伴消息
65
+ * 发送 Aily 消息
66
66
  * @see https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/aily-v1/aily_session-aily_message/create
67
67
  */
68
68
  create(aily_session_id: string, body: CreateRequest): Promise<CreateResponse>;
69
69
  /**
70
- * 获取智能伙伴消息
70
+ * 获取 Aily 消息
71
71
  * @see https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/aily-v1/aily_session-aily_message/get
72
72
  */
73
73
  get(aily_session_id: string, aily_message_id: string): Promise<GetResponse>;
74
74
  /**
75
- * 列出智能伙伴消息
75
+ * 列出 Aily 消息
76
76
  * @see https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/aily-v1/aily_session-aily_message/list
77
77
  */
78
78
  list(aily_session_id: string, query?: ListQuery): Paginated<Lark.AilyMessage, 'messages'>;