@credal/actions 0.2.215 → 0.2.217

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.
Files changed (31) hide show
  1. package/dist/actions/autogen/templates.js +39 -23
  2. package/dist/actions/autogen/types.d.ts +27 -26
  3. package/dist/actions/autogen/types.js +299 -242
  4. package/dist/actions/parse.js +10 -2
  5. package/dist/actions/providers/github/searchRepository.js +7 -7
  6. package/dist/actions/providers/google-oauth/appendRowsToSpreadsheet.js +8 -7
  7. package/dist/actions/providers/google-oauth/listFilesWithAssignedComments.d.ts +3 -0
  8. package/dist/actions/providers/google-oauth/listFilesWithAssignedComments.js +41 -0
  9. package/dist/actions/providers/google-oauth/updateRowsInSpreadsheet.js +18 -12
  10. package/dist/actions/providers/jira/getJiraDCIssuesByQuery.d.ts +4 -3
  11. package/dist/actions/providers/jira/getJiraDCIssuesByQuery.js +7 -3
  12. package/dist/actions/providers/jira/getJiraIssuesByQuery.js +8 -1
  13. package/dist/actions/providers/jira/updateServiceDeskRequest.d.ts +3 -0
  14. package/dist/actions/providers/jira/updateServiceDeskRequest.js +72 -0
  15. package/dist/actions/providers/microsoft/sendOutlookEmail.d.ts +3 -0
  16. package/dist/actions/providers/microsoft/sendOutlookEmail.js +48 -0
  17. package/package.json +1 -1
  18. package/dist/actions/groups.d.ts +0 -6
  19. package/dist/actions/groups.js +0 -248
  20. package/dist/actions/providers/credal/callCopilot.d.ts +0 -3
  21. package/dist/actions/providers/credal/callCopilot.js +0 -36
  22. package/dist/actions/providers/math/index.d.ts +0 -1
  23. package/dist/actions/providers/math/index.js +0 -37
  24. package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.d.ts +0 -3
  25. package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.js +0 -43
  26. package/dist/actions/providers/slack/archiveChannel.d.ts +0 -3
  27. package/dist/actions/providers/slack/archiveChannel.js +0 -35
  28. package/dist/actions/providers/slack/index.d.ts +0 -1
  29. package/dist/actions/providers/slack/index.js +0 -37
  30. package/dist/actions/providers/slack/listConversations.d.ts +0 -3
  31. package/dist/actions/providers/slack/listConversations.js +0 -41
@@ -2018,7 +2018,7 @@ export const jiraGetJiraIssuesByQueryDefinition = {
2018
2018
  },
2019
2019
  limit: {
2020
2020
  type: "number",
2021
- description: "The maximum number of records to retrieve",
2021
+ description: "The maximum number of records to retrieve. Defaults to 100. For exhaustive queries where all matching issues are needed, set this to a value larger than the expected result count (e.g. 500 or 1000).",
2022
2022
  },
2023
2023
  },
2024
2024
  },
@@ -2194,6 +2194,14 @@ export const jiraGetJiraIssuesByQueryDefinition = {
2194
2194
  },
2195
2195
  },
2196
2196
  },
2197
+ total: {
2198
+ type: "number",
2199
+ description: "The total number of Jira issues matching the query. When present and greater than the number of results returned, re-run with a higher limit to retrieve all issues.",
2200
+ },
2201
+ truncated: {
2202
+ type: "boolean",
2203
+ description: "True when the result set was cut off at the requested limit and more issues exist. Re-run with a higher limit to retrieve all issues.",
2204
+ },
2197
2205
  error: {
2198
2206
  type: "string",
2199
2207
  description: "The error that occurred if the records were not successfully retrieved",
@@ -2874,7 +2882,7 @@ export const jiraOrgGetJiraIssuesByQueryDefinition = {
2874
2882
  },
2875
2883
  limit: {
2876
2884
  type: "number",
2877
- description: "The maximum number of records to retrieve",
2885
+ description: "The maximum number of records to retrieve. Defaults to 100. For exhaustive queries where all matching issues are needed, set this to a value larger than the expected result count (e.g. 500 or 1000).",
2878
2886
  },
2879
2887
  },
2880
2888
  },
@@ -3050,6 +3058,14 @@ export const jiraOrgGetJiraIssuesByQueryDefinition = {
3050
3058
  },
3051
3059
  },
3052
3060
  },
3061
+ total: {
3062
+ type: "number",
3063
+ description: "The total number of Jira issues matching the query. When present and greater than the number of results returned, re-run with a higher limit to retrieve all issues.",
3064
+ },
3065
+ truncated: {
3066
+ type: "boolean",
3067
+ description: "True when the result set was cut off at the requested limit and more issues exist. Re-run with a higher limit to retrieve all issues.",
3068
+ },
3053
3069
  error: {
3054
3070
  type: "string",
3055
3071
  description: "The error that occurred if the records were not successfully retrieved",
@@ -3730,7 +3746,7 @@ export const jiraDataCenterGetJiraIssuesByQueryDefinition = {
3730
3746
  },
3731
3747
  limit: {
3732
3748
  type: "number",
3733
- description: "The maximum number of records to retrieve",
3749
+ description: "The maximum number of records to retrieve. Defaults to 100. For exhaustive queries where all matching issues are needed, set this to a value larger than the expected result count (e.g. 500 or 1000).",
3734
3750
  },
3735
3751
  },
3736
3752
  },
@@ -3906,6 +3922,14 @@ export const jiraDataCenterGetJiraIssuesByQueryDefinition = {
3906
3922
  },
3907
3923
  },
3908
3924
  },
3925
+ total: {
3926
+ type: "number",
3927
+ description: "The total number of Jira issues matching the query. When present and greater than the number of results returned, re-run with a higher limit to retrieve all issues.",
3928
+ },
3929
+ truncated: {
3930
+ type: "boolean",
3931
+ description: "True when the result set was cut off at the requested limit and more issues exist. Re-run with a higher limit to retrieve all issues.",
3932
+ },
3909
3933
  error: {
3910
3934
  type: "string",
3911
3935
  description: "The error that occurred if the records were not successfully retrieved",
@@ -7652,19 +7676,13 @@ export const googleOauthAppendRowsToSpreadsheetDefinition = {
7652
7676
  },
7653
7677
  rows: {
7654
7678
  type: "array",
7655
- description: "Rows of cells to append to the spreadsheet",
7679
+ description: 'Rows of cells to append to the spreadsheet. Each row is an array of string cell values. For example, [["Alice", "30"], ["Bob", "25"]].',
7656
7680
  items: {
7657
7681
  type: "array",
7658
- description: "A list of cells to append to the spreadsheet",
7682
+ description: "A list of cell values for this row, each as a plain string",
7659
7683
  items: {
7660
- type: "object",
7661
- required: ["stringValue"],
7662
- properties: {
7663
- stringValue: {
7664
- type: "string",
7665
- description: "The value of the cell",
7666
- },
7667
- },
7684
+ type: "string",
7685
+ description: "The string value of the cell",
7668
7686
  },
7669
7687
  },
7670
7688
  },
@@ -7765,21 +7783,19 @@ export const googleOauthUpdateRowsInSpreadsheetDefinition = {
7765
7783
  type: "integer",
7766
7784
  description: "The row number to start updating from (1-based). For example, to update starting from the first row, use 1. To start from the second row, use 2.",
7767
7785
  },
7786
+ startColumn: {
7787
+ type: "string",
7788
+ description: 'The column letter(s) to start writing from (default: "A"). For example, use "A" to start from the first column, "C" to start from column C, or "BE" to start from column BE. This allows targeting a specific column range in the spreadsheet.',
7789
+ },
7768
7790
  rows: {
7769
7791
  type: "array",
7770
- description: "Rows of cells to update in the spreadsheet. Each row will be written sequentially starting from startRow.",
7792
+ description: 'Rows of cells to update in the spreadsheet. Each row is an array of string cell values written sequentially starting from startRow/startColumn. For example, [["Alice", "30"], ["Bob", "25"]].',
7771
7793
  items: {
7772
7794
  type: "array",
7773
- description: "A list of cells for this row",
7795
+ description: "A list of cell values for this row, each as a plain string",
7774
7796
  items: {
7775
- type: "object",
7776
- required: ["stringValue"],
7777
- properties: {
7778
- stringValue: {
7779
- type: "string",
7780
- description: "The value of the cell",
7781
- },
7782
- },
7797
+ type: "string",
7798
+ description: "The string value of the cell",
7783
7799
  },
7784
7800
  },
7785
7801
  },
@@ -2292,6 +2292,8 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
2292
2292
  resolution?: string | null | undefined;
2293
2293
  };
2294
2294
  }>, "many">>;
2295
+ total: z.ZodOptional<z.ZodNumber>;
2296
+ truncated: z.ZodOptional<z.ZodBoolean>;
2295
2297
  error: z.ZodOptional<z.ZodString>;
2296
2298
  }, "strip", z.ZodTypeAny, {
2297
2299
  error?: string | undefined;
@@ -2339,6 +2341,8 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
2339
2341
  resolution?: string | null | undefined;
2340
2342
  };
2341
2343
  }[] | undefined;
2344
+ total?: number | undefined;
2345
+ truncated?: boolean | undefined;
2342
2346
  }, {
2343
2347
  error?: string | undefined;
2344
2348
  results?: {
@@ -2385,6 +2389,8 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
2385
2389
  resolution?: string | null | undefined;
2386
2390
  };
2387
2391
  }[] | undefined;
2392
+ total?: number | undefined;
2393
+ truncated?: boolean | undefined;
2388
2394
  }>;
2389
2395
  export type jiraGetJiraIssuesByQueryOutputType = z.infer<typeof jiraGetJiraIssuesByQueryOutputSchema>;
2390
2396
  export type jiraGetJiraIssuesByQueryFunction = ActionFunction<jiraGetJiraIssuesByQueryParamsType, AuthParamsType, jiraGetJiraIssuesByQueryOutputType>;
@@ -3101,6 +3107,8 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
3101
3107
  resolution?: string | null | undefined;
3102
3108
  };
3103
3109
  }>, "many">>;
3110
+ total: z.ZodOptional<z.ZodNumber>;
3111
+ truncated: z.ZodOptional<z.ZodBoolean>;
3104
3112
  error: z.ZodOptional<z.ZodString>;
3105
3113
  }, "strip", z.ZodTypeAny, {
3106
3114
  error?: string | undefined;
@@ -3148,6 +3156,8 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
3148
3156
  resolution?: string | null | undefined;
3149
3157
  };
3150
3158
  }[] | undefined;
3159
+ total?: number | undefined;
3160
+ truncated?: boolean | undefined;
3151
3161
  }, {
3152
3162
  error?: string | undefined;
3153
3163
  results?: {
@@ -3194,6 +3204,8 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
3194
3204
  resolution?: string | null | undefined;
3195
3205
  };
3196
3206
  }[] | undefined;
3207
+ total?: number | undefined;
3208
+ truncated?: boolean | undefined;
3197
3209
  }>;
3198
3210
  export type jiraOrgGetJiraIssuesByQueryOutputType = z.infer<typeof jiraOrgGetJiraIssuesByQueryOutputSchema>;
3199
3211
  export type jiraOrgGetJiraIssuesByQueryFunction = ActionFunction<jiraOrgGetJiraIssuesByQueryParamsType, AuthParamsType, jiraOrgGetJiraIssuesByQueryOutputType>;
@@ -3910,6 +3922,8 @@ export declare const jiraDataCenterGetJiraIssuesByQueryOutputSchema: z.ZodObject
3910
3922
  resolution?: string | null | undefined;
3911
3923
  };
3912
3924
  }>, "many">>;
3925
+ total: z.ZodOptional<z.ZodNumber>;
3926
+ truncated: z.ZodOptional<z.ZodBoolean>;
3913
3927
  error: z.ZodOptional<z.ZodString>;
3914
3928
  }, "strip", z.ZodTypeAny, {
3915
3929
  error?: string | undefined;
@@ -3957,6 +3971,8 @@ export declare const jiraDataCenterGetJiraIssuesByQueryOutputSchema: z.ZodObject
3957
3971
  resolution?: string | null | undefined;
3958
3972
  };
3959
3973
  }[] | undefined;
3974
+ total?: number | undefined;
3975
+ truncated?: boolean | undefined;
3960
3976
  }, {
3961
3977
  error?: string | undefined;
3962
3978
  results?: {
@@ -4003,6 +4019,8 @@ export declare const jiraDataCenterGetJiraIssuesByQueryOutputSchema: z.ZodObject
4003
4019
  resolution?: string | null | undefined;
4004
4020
  };
4005
4021
  }[] | undefined;
4022
+ total?: number | undefined;
4023
+ truncated?: boolean | undefined;
4006
4024
  }>;
4007
4025
  export type jiraDataCenterGetJiraIssuesByQueryOutputType = z.infer<typeof jiraDataCenterGetJiraIssuesByQueryOutputSchema>;
4008
4026
  export type jiraDataCenterGetJiraIssuesByQueryFunction = ActionFunction<jiraDataCenterGetJiraIssuesByQueryParamsType, AuthParamsType, jiraDataCenterGetJiraIssuesByQueryOutputType>;
@@ -5981,24 +5999,14 @@ export type googleOauthUpdateSpreadsheetFunction = ActionFunction<googleOauthUpd
5981
5999
  export declare const googleOauthAppendRowsToSpreadsheetParamsSchema: z.ZodObject<{
5982
6000
  spreadsheetId: z.ZodString;
5983
6001
  sheetName: z.ZodOptional<z.ZodString>;
5984
- rows: z.ZodArray<z.ZodArray<z.ZodObject<{
5985
- stringValue: z.ZodString;
5986
- }, "strip", z.ZodTypeAny, {
5987
- stringValue: string;
5988
- }, {
5989
- stringValue: string;
5990
- }>, "many">, "many">;
6002
+ rows: z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">;
5991
6003
  }, "strip", z.ZodTypeAny, {
5992
6004
  spreadsheetId: string;
5993
- rows: {
5994
- stringValue: string;
5995
- }[][];
6005
+ rows: string[][];
5996
6006
  sheetName?: string | undefined;
5997
6007
  }, {
5998
6008
  spreadsheetId: string;
5999
- rows: {
6000
- stringValue: string;
6001
- }[][];
6009
+ rows: string[][];
6002
6010
  sheetName?: string | undefined;
6003
6011
  }>;
6004
6012
  export type googleOauthAppendRowsToSpreadsheetParamsType = z.infer<typeof googleOauthAppendRowsToSpreadsheetParamsSchema>;
@@ -6053,27 +6061,20 @@ export declare const googleOauthUpdateRowsInSpreadsheetParamsSchema: z.ZodObject
6053
6061
  spreadsheetId: z.ZodString;
6054
6062
  sheetName: z.ZodOptional<z.ZodString>;
6055
6063
  startRow: z.ZodNumber;
6056
- rows: z.ZodArray<z.ZodArray<z.ZodObject<{
6057
- stringValue: z.ZodString;
6058
- }, "strip", z.ZodTypeAny, {
6059
- stringValue: string;
6060
- }, {
6061
- stringValue: string;
6062
- }>, "many">, "many">;
6064
+ startColumn: z.ZodOptional<z.ZodString>;
6065
+ rows: z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">;
6063
6066
  }, "strip", z.ZodTypeAny, {
6064
6067
  spreadsheetId: string;
6065
- rows: {
6066
- stringValue: string;
6067
- }[][];
6068
+ rows: string[][];
6068
6069
  startRow: number;
6069
6070
  sheetName?: string | undefined;
6071
+ startColumn?: string | undefined;
6070
6072
  }, {
6071
6073
  spreadsheetId: string;
6072
- rows: {
6073
- stringValue: string;
6074
- }[][];
6074
+ rows: string[][];
6075
6075
  startRow: number;
6076
6076
  sheetName?: string | undefined;
6077
+ startColumn?: string | undefined;
6077
6078
  }>;
6078
6079
  export type googleOauthUpdateRowsInSpreadsheetParamsType = z.infer<typeof googleOauthUpdateRowsInSpreadsheetParamsSchema>;
6079
6080
  export declare const googleOauthUpdateRowsInSpreadsheetOutputSchema: z.ZodObject<{