@credal/actions 0.2.167 → 0.2.169

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.
@@ -47,7 +47,6 @@ export declare const jiraDataCenterGetJiraTicketHistoryDefinition: ActionTemplat
47
47
  export declare const jiraDataCenterUpdateJiraTicketDetailsDefinition: ActionTemplate;
48
48
  export declare const jiraDataCenterUpdateJiraTicketStatusDefinition: ActionTemplate;
49
49
  export declare const jiraDataCenterGetJiraIssuesByQueryDefinition: ActionTemplate;
50
- export declare const kandjiGetFVRecoveryKeyForDeviceDefinition: ActionTemplate;
51
50
  export declare const googlemapsValidateAddressDefinition: ActionTemplate;
52
51
  export declare const googlemapsNearbysearchRestaurantsDefinition: ActionTemplate;
53
52
  export declare const bingGetTopNSearchResultUrlsDefinition: ActionTemplate;
@@ -118,14 +117,6 @@ export declare const gongGetGongTranscriptsDefinition: ActionTemplate;
118
117
  export declare const finnhubSymbolLookupDefinition: ActionTemplate;
119
118
  export declare const finnhubGetBasicFinancialsDefinition: ActionTemplate;
120
119
  export declare const lookerEnableUserByEmailDefinition: ActionTemplate;
121
- export declare const ashbyCreateNoteDefinition: ActionTemplate;
122
- export declare const ashbyGetCandidateInfoDefinition: ActionTemplate;
123
- export declare const ashbyAddCandidateToProjectDefinition: ActionTemplate;
124
- export declare const ashbyListCandidatesDefinition: ActionTemplate;
125
- export declare const ashbySearchCandidatesDefinition: ActionTemplate;
126
- export declare const ashbyListCandidateNotesDefinition: ActionTemplate;
127
- export declare const ashbyCreateCandidateDefinition: ActionTemplate;
128
- export declare const ashbyUpdateCandidateDefinition: ActionTemplate;
129
120
  export declare const salesforceUpdateRecordDefinition: ActionTemplate;
130
121
  export declare const salesforceCreateRecordDefinition: ActionTemplate;
131
122
  export declare const salesforceCreateCaseDefinition: ActionTemplate;
@@ -153,10 +144,6 @@ export declare const githubSearchOrganizationDefinition: ActionTemplate;
153
144
  export declare const githubGetBranchDefinition: ActionTemplate;
154
145
  export declare const githubListCommitsDefinition: ActionTemplate;
155
146
  export declare const notionSearchByTitleDefinition: ActionTemplate;
156
- export declare const jamfGetJamfFileVaultRecoveryKeyDefinition: ActionTemplate;
157
- export declare const jamfGetJamfComputerInventoryDefinition: ActionTemplate;
158
- export declare const jamfGetJamfUserComputerIdDefinition: ActionTemplate;
159
- export declare const jamfLockJamfComputerByIdDefinition: ActionTemplate;
160
147
  export declare const gitlabSearchGroupDefinition: ActionTemplate;
161
148
  export declare const gitlabGetFileContentDefinition: ActionTemplate;
162
149
  export declare const gitlabGetMergeRequestDefinition: ActionTemplate;
@@ -784,6 +784,11 @@ export const slackUserSearchSlackDefinition = {
784
784
  enum: ["latest", "today", "yesterday", "last_7d", "last_30d", "all"],
785
785
  default: "latest",
786
786
  },
787
+ messageType: {
788
+ type: "string",
789
+ description: "Optional filter for the type of messages to search for. If not specified, all message types will be searched.",
790
+ enum: ["im", "group", "channel"],
791
+ },
787
792
  limit: {
788
793
  type: "number",
789
794
  description: "Max matches to request (passed to Slack search; results are then hydrated and sorted newest-first).",
@@ -3227,44 +3232,6 @@ export const jiraDataCenterGetJiraIssuesByQueryDefinition = {
3227
3232
  name: "getJiraIssuesByQuery",
3228
3233
  provider: "jiraDataCenter",
3229
3234
  };
3230
- export const kandjiGetFVRecoveryKeyForDeviceDefinition = {
3231
- description: "Get the FileVault recovery key for a device",
3232
- scopes: [],
3233
- parameters: {
3234
- type: "object",
3235
- required: ["userEmail", "subdomain"],
3236
- properties: {
3237
- userEmail: {
3238
- type: "string",
3239
- description: "The email of the user requesting the recovery key",
3240
- },
3241
- subdomain: {
3242
- type: "string",
3243
- description: "The subdomain of the Kandji account",
3244
- },
3245
- },
3246
- },
3247
- output: {
3248
- type: "object",
3249
- required: ["success"],
3250
- properties: {
3251
- success: {
3252
- type: "boolean",
3253
- description: "Whether the recovery key was retrieved successfully",
3254
- },
3255
- recoveryKey: {
3256
- type: "string",
3257
- description: "The FileVault recovery key for the device",
3258
- },
3259
- error: {
3260
- type: "string",
3261
- description: "The error that occurred if the recovery key was not retrieved successfully",
3262
- },
3263
- },
3264
- },
3265
- name: "getFVRecoveryKeyForDevice",
3266
- provider: "kandji",
3267
- };
3268
3235
  export const googlemapsValidateAddressDefinition = {
3269
3236
  description: "Validate a Google Maps address",
3270
3237
  scopes: [],
@@ -10466,309 +10433,6 @@ export const lookerEnableUserByEmailDefinition = {
10466
10433
  name: "enableUserByEmail",
10467
10434
  provider: "looker",
10468
10435
  };
10469
- export const ashbyCreateNoteDefinition = {
10470
- description: "Creates a note on a candidate",
10471
- scopes: [],
10472
- parameters: {
10473
- type: "object",
10474
- required: ["candidateId", "note"],
10475
- properties: {
10476
- candidateId: {
10477
- type: "string",
10478
- description: "The ID of the candidate to create a note for",
10479
- },
10480
- note: {
10481
- type: "string",
10482
- description: "The note content",
10483
- },
10484
- },
10485
- },
10486
- name: "createNote",
10487
- provider: "ashby",
10488
- };
10489
- export const ashbyGetCandidateInfoDefinition = {
10490
- description: "Gets a candidate's information",
10491
- scopes: [],
10492
- parameters: {
10493
- type: "object",
10494
- required: ["candidateId"],
10495
- properties: {
10496
- candidateId: {
10497
- type: "string",
10498
- description: "The ID of the candidate whose information is to be retrieved",
10499
- },
10500
- },
10501
- },
10502
- output: {
10503
- type: "object",
10504
- required: ["candidate"],
10505
- properties: {
10506
- candidate: {
10507
- type: "object",
10508
- description: "The candidate's information",
10509
- required: [],
10510
- },
10511
- },
10512
- },
10513
- name: "getCandidateInfo",
10514
- provider: "ashby",
10515
- };
10516
- export const ashbyAddCandidateToProjectDefinition = {
10517
- description: "Adds a candidate to a project",
10518
- scopes: [],
10519
- parameters: {
10520
- type: "object",
10521
- required: ["candidateId", "projectId"],
10522
- properties: {
10523
- candidateId: {
10524
- type: "string",
10525
- description: "The ID of the candidate to add to the project",
10526
- },
10527
- projectId: {
10528
- type: "string",
10529
- description: "The ID of the project to add the candidate to",
10530
- },
10531
- },
10532
- },
10533
- name: "addCandidateToProject",
10534
- provider: "ashby",
10535
- };
10536
- export const ashbyListCandidatesDefinition = {
10537
- description: "Lists all candidates",
10538
- scopes: [],
10539
- output: {
10540
- type: "object",
10541
- required: ["candidates"],
10542
- properties: {
10543
- candidates: {
10544
- type: "array",
10545
- description: "A list of candidates",
10546
- },
10547
- },
10548
- },
10549
- name: "listCandidates",
10550
- provider: "ashby",
10551
- };
10552
- export const ashbySearchCandidatesDefinition = {
10553
- description: "Search for candidates by email and/or name.",
10554
- scopes: [],
10555
- parameters: {
10556
- type: "object",
10557
- required: [],
10558
- properties: {
10559
- email: {
10560
- type: "string",
10561
- description: "The email address of the candidate to search for",
10562
- },
10563
- name: {
10564
- type: "string",
10565
- description: "The name of the candidate to search for",
10566
- },
10567
- },
10568
- },
10569
- output: {
10570
- type: "object",
10571
- required: ["candidates"],
10572
- properties: {
10573
- candidates: {
10574
- type: "array",
10575
- description: "A list of candidates",
10576
- },
10577
- },
10578
- },
10579
- name: "searchCandidates",
10580
- provider: "ashby",
10581
- };
10582
- export const ashbyListCandidateNotesDefinition = {
10583
- description: "Lists all notes on a candidate",
10584
- scopes: [],
10585
- parameters: {
10586
- type: "object",
10587
- required: ["candidateId"],
10588
- properties: {
10589
- candidateId: {
10590
- type: "string",
10591
- description: "The ID of the candidate",
10592
- },
10593
- },
10594
- },
10595
- output: {
10596
- type: "object",
10597
- required: ["notes"],
10598
- properties: {
10599
- notes: {
10600
- type: "array",
10601
- description: "A list of notes",
10602
- },
10603
- },
10604
- },
10605
- name: "listCandidateNotes",
10606
- provider: "ashby",
10607
- };
10608
- export const ashbyCreateCandidateDefinition = {
10609
- description: "Creates a candidate",
10610
- scopes: [],
10611
- parameters: {
10612
- type: "object",
10613
- required: ["name"],
10614
- properties: {
10615
- name: {
10616
- type: "string",
10617
- description: "The first and last name of the candidate to be created.",
10618
- },
10619
- email: {
10620
- type: "string",
10621
- description: "Primary, personal email of the candidate to be created.",
10622
- },
10623
- phoneNumber: {
10624
- type: "string",
10625
- description: "Primary, personal phone number of the candidate to be created.",
10626
- },
10627
- linkedInUrl: {
10628
- type: "string",
10629
- description: "Url to the candidate's LinkedIn profile. Must be a valid Url.",
10630
- },
10631
- githubUrl: {
10632
- type: "string",
10633
- description: "Url to the candidate's Github profile. Must be a valid Url.",
10634
- },
10635
- website: {
10636
- type: "string",
10637
- description: "Url of the candidate's website. Must be a valid Url.",
10638
- },
10639
- alternateEmailAddresses: {
10640
- type: "array",
10641
- description: "Array of alternate email address to add to the candidate's profile.",
10642
- items: {
10643
- type: "string",
10644
- },
10645
- },
10646
- sourceId: {
10647
- type: "string",
10648
- description: "The source to set on the candidate being created.",
10649
- },
10650
- creditedToUserId: {
10651
- type: "string",
10652
- description: "The id of the user the candidate will be credited to.",
10653
- },
10654
- location: {
10655
- type: "object",
10656
- description: "The location of the candidate.",
10657
- properties: {
10658
- city: {
10659
- type: "string",
10660
- description: "The city of the candidate.",
10661
- },
10662
- region: {
10663
- type: "string",
10664
- description: "The region of the candidate.",
10665
- },
10666
- country: {
10667
- type: "string",
10668
- description: "The country of the candidate.",
10669
- },
10670
- },
10671
- },
10672
- },
10673
- },
10674
- name: "createCandidate",
10675
- provider: "ashby",
10676
- };
10677
- export const ashbyUpdateCandidateDefinition = {
10678
- description: "Updates a candidate",
10679
- scopes: [],
10680
- parameters: {
10681
- type: "object",
10682
- required: ["candidateId"],
10683
- properties: {
10684
- candidateId: {
10685
- type: "string",
10686
- description: "The ID of the candidate to update",
10687
- },
10688
- name: {
10689
- type: "string",
10690
- description: "The first and last name of the candidate to update.",
10691
- },
10692
- email: {
10693
- type: "string",
10694
- description: "Primary, personal email of the candidate to update.",
10695
- },
10696
- phoneNumber: {
10697
- type: "string",
10698
- description: "Primary, personal phone number of the candidate to update.",
10699
- },
10700
- linkedInUrl: {
10701
- type: "string",
10702
- description: "Url to the candidate's LinkedIn profile. Must be a valid Url.",
10703
- },
10704
- githubUrl: {
10705
- type: "string",
10706
- description: "Url to the candidate's Github profile. Must be a valid Url.",
10707
- },
10708
- websiteUrl: {
10709
- type: "string",
10710
- description: "Url of the candidate's website. Must be a valid Url.",
10711
- },
10712
- alternateEmail: {
10713
- type: "string",
10714
- description: "An alternate email address to add to the candidate's profile.",
10715
- },
10716
- socialLinks: {
10717
- type: "array",
10718
- description: "An array of social links to set on the candidate. This value replaces existing socialLinks that have been set on the candidate.",
10719
- items: {
10720
- type: "object",
10721
- properties: {
10722
- type: {
10723
- type: "string",
10724
- description: "The type of social link",
10725
- },
10726
- url: {
10727
- type: "string",
10728
- description: "The URL of the social link",
10729
- },
10730
- },
10731
- },
10732
- },
10733
- sourceId: {
10734
- type: "string",
10735
- description: "The id of source for this candidate.",
10736
- },
10737
- creditedToUserId: {
10738
- type: "string",
10739
- description: "The id of the user the candidate will be credited to.",
10740
- },
10741
- location: {
10742
- type: "object",
10743
- description: "The location of the candidate.",
10744
- properties: {
10745
- city: {
10746
- type: "string",
10747
- description: "The city of the candidate",
10748
- },
10749
- region: {
10750
- type: "string",
10751
- description: "The region of the candidate",
10752
- },
10753
- country: {
10754
- type: "string",
10755
- description: "The country of the candidate",
10756
- },
10757
- },
10758
- },
10759
- createdAt: {
10760
- type: "string",
10761
- description: "An ISO date string to set the candidate's createdAt timestamp.",
10762
- },
10763
- sendNotifications: {
10764
- type: "boolean",
10765
- description: "Whether or not users who are subscribed to the candidate should be notified that candidate was updated. Default is true.",
10766
- },
10767
- },
10768
- },
10769
- name: "updateCandidate",
10770
- provider: "ashby",
10771
- };
10772
10436
  export const salesforceUpdateRecordDefinition = {
10773
10437
  description: "Update a record in Salesforce",
10774
10438
  scopes: [],
@@ -13242,142 +12906,6 @@ export const notionSearchByTitleDefinition = {
13242
12906
  name: "searchByTitle",
13243
12907
  provider: "notion",
13244
12908
  };
13245
- export const jamfGetJamfFileVaultRecoveryKeyDefinition = {
13246
- description: "Retrieves the FileVault2 recovery key for a specified computer",
13247
- scopes: [],
13248
- parameters: {
13249
- type: "object",
13250
- required: ["computerId"],
13251
- properties: {
13252
- computerId: {
13253
- type: "string",
13254
- description: "The computerId of the device to get the FileVault2 recovery key for",
13255
- },
13256
- },
13257
- },
13258
- output: {
13259
- type: "object",
13260
- required: ["success"],
13261
- properties: {
13262
- success: {
13263
- type: "boolean",
13264
- description: "Whether the request was successful",
13265
- },
13266
- data: {
13267
- type: "string",
13268
- description: "The FileVault2 recovery key data",
13269
- },
13270
- error: {
13271
- type: "string",
13272
- description: "Error message if the request failed",
13273
- },
13274
- },
13275
- },
13276
- name: "getJamfFileVaultRecoveryKey",
13277
- provider: "jamf",
13278
- };
13279
- export const jamfGetJamfComputerInventoryDefinition = {
13280
- description: "Retrieves computer inventory information from Jamf",
13281
- scopes: [],
13282
- parameters: {
13283
- type: "object",
13284
- required: [],
13285
- properties: {
13286
- section: {
13287
- type: "string",
13288
- description: "Optional section parameter to filter inventory data",
13289
- },
13290
- },
13291
- },
13292
- output: {
13293
- type: "object",
13294
- required: ["success"],
13295
- properties: {
13296
- success: {
13297
- type: "boolean",
13298
- description: "Whether the request was successful",
13299
- },
13300
- data: {
13301
- type: "array",
13302
- description: "The computer inventory data",
13303
- },
13304
- error: {
13305
- type: "string",
13306
- description: "Error message if the request failed",
13307
- },
13308
- },
13309
- },
13310
- name: "getJamfComputerInventory",
13311
- provider: "jamf",
13312
- };
13313
- export const jamfGetJamfUserComputerIdDefinition = {
13314
- description: "Retrieves the computer ID associated with a Jamf user",
13315
- scopes: [],
13316
- parameters: {
13317
- type: "object",
13318
- required: ["userEmail"],
13319
- properties: {
13320
- userEmail: {
13321
- type: "string",
13322
- description: "The email of the Jamf user to retrieve the computer ID for",
13323
- },
13324
- },
13325
- },
13326
- output: {
13327
- type: "object",
13328
- required: ["success"],
13329
- properties: {
13330
- success: {
13331
- type: "boolean",
13332
- description: "Whether the request was successful",
13333
- },
13334
- computerId: {
13335
- type: "string",
13336
- description: "The computer ID associated with the user",
13337
- },
13338
- error: {
13339
- type: "string",
13340
- description: "Error message if the request failed",
13341
- },
13342
- },
13343
- },
13344
- name: "getJamfUserComputerId",
13345
- provider: "jamf",
13346
- };
13347
- export const jamfLockJamfComputerByIdDefinition = {
13348
- description: "Locks a Jamf computer by its ID",
13349
- scopes: [],
13350
- parameters: {
13351
- type: "object",
13352
- required: ["computerId", "passcode"],
13353
- properties: {
13354
- computerId: {
13355
- type: "string",
13356
- description: "The computer ID of the device to lock",
13357
- },
13358
- passcode: {
13359
- type: "string",
13360
- description: "Six digit passcode to unlock the computer afterwards",
13361
- },
13362
- },
13363
- },
13364
- output: {
13365
- type: "object",
13366
- required: ["success"],
13367
- properties: {
13368
- success: {
13369
- type: "boolean",
13370
- description: "Whether the lock command was successful",
13371
- },
13372
- error: {
13373
- type: "string",
13374
- description: "Error message if the lock command failed",
13375
- },
13376
- },
13377
- },
13378
- name: "lockJamfComputerById",
13379
- provider: "jamf",
13380
- };
13381
12909
  export const gitlabSearchGroupDefinition = {
13382
12910
  description: "Searches gitlab for details about a query. This will return a list of merge requests and blobs that match the query.",
13383
12911
  scopes: [],