@credal/actions 0.2.222 → 0.2.224
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/actions/actionMapper.js +66 -1
- package/dist/actions/autogen/templates.d.ts +9 -0
- package/dist/actions/autogen/templates.js +920 -0
- package/dist/actions/autogen/types.d.ts +893 -1
- package/dist/actions/autogen/types.js +353 -0
- package/dist/actions/groups.js +3 -31
- package/dist/actions/providers/microsoft/getSharepointItem.d.ts +3 -0
- package/dist/actions/providers/microsoft/getSharepointItem.js +61 -0
- package/dist/actions/providers/microsoft/listSharepointFolder.d.ts +3 -0
- package/dist/actions/providers/microsoft/listSharepointFolder.js +92 -0
- package/dist/actions/providers/microsoft/readSharepointContent.d.ts +3 -0
- package/dist/actions/providers/microsoft/readSharepointContent.js +157 -0
- package/dist/actions/providers/microsoft/searchSharepoint.d.ts +3 -0
- package/dist/actions/providers/microsoft/searchSharepoint.js +147 -0
- package/dist/actions/providers/microsoft/sharepointUtils.d.ts +56 -0
- package/dist/actions/providers/microsoft/sharepointUtils.js +153 -0
- package/dist/actions/providers/microsoft/utils.d.ts +1 -0
- package/dist/actions/providers/microsoft/utils.js +1 -0
- package/dist/actions/providers/servicenow/getChangeRequests.d.ts +3 -0
- package/dist/actions/providers/servicenow/getChangeRequests.js +56 -0
- package/dist/actions/providers/servicenow/getIncidents.d.ts +3 -0
- package/dist/actions/providers/servicenow/getIncidents.js +58 -0
- package/dist/actions/providers/servicenow/getRecordsByQuery.d.ts +3 -0
- package/dist/actions/providers/servicenow/getRecordsByQuery.js +42 -0
- package/dist/actions/providers/servicenow/getSCTasks.d.ts +3 -0
- package/dist/actions/providers/servicenow/getSCTasks.js +53 -0
- package/dist/actions/providers/servicenow/getVIPTickets.d.ts +3 -0
- package/dist/actions/providers/servicenow/getVIPTickets.js +61 -0
- package/dist/actions/providers/servicenow/utils/tableQuery.d.ts +22 -0
- package/dist/actions/providers/servicenow/utils/tableQuery.js +62 -0
- package/package.json +1 -1
- package/dist/actions/providers/credal/callCopilot.d.ts +0 -3
- package/dist/actions/providers/credal/callCopilot.js +0 -36
- package/dist/actions/providers/math/index.d.ts +0 -1
- package/dist/actions/providers/math/index.js +0 -37
- package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.d.ts +0 -3
- package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.js +0 -43
- package/dist/actions/providers/slack/index.d.ts +0 -1
- package/dist/actions/providers/slack/index.js +0 -37
- package/dist/actions/providers/slack/listConversations.d.ts +0 -3
- package/dist/actions/providers/slack/listConversations.js +0 -41
|
@@ -11751,6 +11751,371 @@ export const microsoftGetDocumentDefinition = {
|
|
|
11751
11751
|
name: "getDocument",
|
|
11752
11752
|
provider: "microsoft",
|
|
11753
11753
|
};
|
|
11754
|
+
export const microsoftGetSharepointItemDefinition = {
|
|
11755
|
+
displayName: "Get SharePoint or OneDrive item from URL",
|
|
11756
|
+
description: "Resolves a pasted SharePoint or OneDrive URL (file, folder, site, or page link) to its Microsoft Graph identifiers. File and folder URLs only need Files.Read.All; bare site URLs and site page URLs additionally require Sites.Read.All.",
|
|
11757
|
+
scopes: ["Files.Read.All"],
|
|
11758
|
+
tags: [],
|
|
11759
|
+
parameters: {
|
|
11760
|
+
type: "object",
|
|
11761
|
+
required: ["url"],
|
|
11762
|
+
properties: {
|
|
11763
|
+
url: {
|
|
11764
|
+
type: "string",
|
|
11765
|
+
description: "The SharePoint or OneDrive URL to resolve (file, folder, site, or page link)",
|
|
11766
|
+
},
|
|
11767
|
+
},
|
|
11768
|
+
},
|
|
11769
|
+
output: {
|
|
11770
|
+
type: "object",
|
|
11771
|
+
required: ["success"],
|
|
11772
|
+
properties: {
|
|
11773
|
+
success: {
|
|
11774
|
+
type: "boolean",
|
|
11775
|
+
description: "Whether the URL was resolved successfully",
|
|
11776
|
+
},
|
|
11777
|
+
item: {
|
|
11778
|
+
type: "object",
|
|
11779
|
+
description: "The resolved item",
|
|
11780
|
+
properties: {
|
|
11781
|
+
itemType: {
|
|
11782
|
+
type: "string",
|
|
11783
|
+
description: "One of: file | folder | site | page",
|
|
11784
|
+
},
|
|
11785
|
+
name: {
|
|
11786
|
+
type: "string",
|
|
11787
|
+
description: "The name of the item",
|
|
11788
|
+
},
|
|
11789
|
+
webUrl: {
|
|
11790
|
+
type: "string",
|
|
11791
|
+
description: "The web URL of the item",
|
|
11792
|
+
},
|
|
11793
|
+
driveId: {
|
|
11794
|
+
type: "string",
|
|
11795
|
+
description: "The ID of the drive containing the item (files and folders)",
|
|
11796
|
+
},
|
|
11797
|
+
itemId: {
|
|
11798
|
+
type: "string",
|
|
11799
|
+
description: "The ID of the item within its drive (for pages this is the site page ID)",
|
|
11800
|
+
},
|
|
11801
|
+
siteId: {
|
|
11802
|
+
type: "string",
|
|
11803
|
+
description: "The ID of the SharePoint site (sites, pages, and site-hosted items)",
|
|
11804
|
+
},
|
|
11805
|
+
mimeType: {
|
|
11806
|
+
type: "string",
|
|
11807
|
+
description: "The MIME type of the file",
|
|
11808
|
+
},
|
|
11809
|
+
sizeBytes: {
|
|
11810
|
+
type: "number",
|
|
11811
|
+
description: "The size of the file in bytes",
|
|
11812
|
+
},
|
|
11813
|
+
drives: {
|
|
11814
|
+
type: "array",
|
|
11815
|
+
description: "For sites — the document libraries in the site",
|
|
11816
|
+
items: {
|
|
11817
|
+
type: "object",
|
|
11818
|
+
properties: {
|
|
11819
|
+
driveId: {
|
|
11820
|
+
type: "string",
|
|
11821
|
+
description: "The ID of the document library drive",
|
|
11822
|
+
},
|
|
11823
|
+
name: {
|
|
11824
|
+
type: "string",
|
|
11825
|
+
description: "The name of the document library",
|
|
11826
|
+
},
|
|
11827
|
+
webUrl: {
|
|
11828
|
+
type: "string",
|
|
11829
|
+
description: "The web URL of the document library (usable as a searchSharepoint scopeUrl)",
|
|
11830
|
+
},
|
|
11831
|
+
},
|
|
11832
|
+
},
|
|
11833
|
+
},
|
|
11834
|
+
},
|
|
11835
|
+
},
|
|
11836
|
+
error: {
|
|
11837
|
+
type: "string",
|
|
11838
|
+
description: "The error that occurred if the URL was not resolved",
|
|
11839
|
+
},
|
|
11840
|
+
},
|
|
11841
|
+
},
|
|
11842
|
+
name: "getSharepointItem",
|
|
11843
|
+
provider: "microsoft",
|
|
11844
|
+
};
|
|
11845
|
+
export const microsoftListSharepointFolderDefinition = {
|
|
11846
|
+
displayName: "List contents of a SharePoint or OneDrive folder",
|
|
11847
|
+
description: "Lists the items inside a SharePoint or OneDrive folder, given either a folder URL or a driveItem reference. Given a site URL, lists the root of the site's default document library. Set recursive to true to enumerate subfolders (breadth-first) up to maxItems.",
|
|
11848
|
+
scopes: ["Files.Read.All"],
|
|
11849
|
+
tags: [],
|
|
11850
|
+
parameters: {
|
|
11851
|
+
type: "object",
|
|
11852
|
+
required: [],
|
|
11853
|
+
properties: {
|
|
11854
|
+
url: {
|
|
11855
|
+
type: "string",
|
|
11856
|
+
description: "The URL of the folder (or site) to list. Provide either this or driveItem.",
|
|
11857
|
+
},
|
|
11858
|
+
driveItem: {
|
|
11859
|
+
type: "object",
|
|
11860
|
+
description: "The exact folder to list, as returned by getSharepointItem. Provide either this or url.",
|
|
11861
|
+
required: ["driveId", "itemId"],
|
|
11862
|
+
properties: {
|
|
11863
|
+
driveId: {
|
|
11864
|
+
type: "string",
|
|
11865
|
+
description: "The ID of the drive containing the folder",
|
|
11866
|
+
},
|
|
11867
|
+
itemId: {
|
|
11868
|
+
type: "string",
|
|
11869
|
+
description: "The ID of the folder to list",
|
|
11870
|
+
},
|
|
11871
|
+
},
|
|
11872
|
+
},
|
|
11873
|
+
recursive: {
|
|
11874
|
+
type: "boolean",
|
|
11875
|
+
description: "Whether to recursively enumerate subfolders (default false)",
|
|
11876
|
+
},
|
|
11877
|
+
maxItems: {
|
|
11878
|
+
type: "number",
|
|
11879
|
+
description: "Maximum number of items to return (default 200)",
|
|
11880
|
+
},
|
|
11881
|
+
},
|
|
11882
|
+
},
|
|
11883
|
+
output: {
|
|
11884
|
+
type: "object",
|
|
11885
|
+
required: ["success"],
|
|
11886
|
+
properties: {
|
|
11887
|
+
success: {
|
|
11888
|
+
type: "boolean",
|
|
11889
|
+
description: "Whether the folder was listed successfully",
|
|
11890
|
+
},
|
|
11891
|
+
items: {
|
|
11892
|
+
type: "array",
|
|
11893
|
+
description: "The items in the folder",
|
|
11894
|
+
items: {
|
|
11895
|
+
type: "object",
|
|
11896
|
+
required: ["itemId", "name", "itemType"],
|
|
11897
|
+
properties: {
|
|
11898
|
+
itemId: {
|
|
11899
|
+
type: "string",
|
|
11900
|
+
description: "The ID of the item",
|
|
11901
|
+
},
|
|
11902
|
+
driveId: {
|
|
11903
|
+
type: "string",
|
|
11904
|
+
description: "The ID of the drive containing the item",
|
|
11905
|
+
},
|
|
11906
|
+
name: {
|
|
11907
|
+
type: "string",
|
|
11908
|
+
description: "The name of the item",
|
|
11909
|
+
},
|
|
11910
|
+
itemType: {
|
|
11911
|
+
type: "string",
|
|
11912
|
+
description: "One of: file | folder",
|
|
11913
|
+
},
|
|
11914
|
+
mimeType: {
|
|
11915
|
+
type: "string",
|
|
11916
|
+
description: "The MIME type of the file",
|
|
11917
|
+
},
|
|
11918
|
+
sizeBytes: {
|
|
11919
|
+
type: "number",
|
|
11920
|
+
description: "The size of the file in bytes",
|
|
11921
|
+
},
|
|
11922
|
+
webUrl: {
|
|
11923
|
+
type: "string",
|
|
11924
|
+
description: "The web URL of the item",
|
|
11925
|
+
},
|
|
11926
|
+
lastModified: {
|
|
11927
|
+
type: "string",
|
|
11928
|
+
description: "The last modified timestamp of the item",
|
|
11929
|
+
},
|
|
11930
|
+
},
|
|
11931
|
+
},
|
|
11932
|
+
},
|
|
11933
|
+
truncated: {
|
|
11934
|
+
type: "boolean",
|
|
11935
|
+
description: "True if enumeration stopped at maxItems before listing everything",
|
|
11936
|
+
},
|
|
11937
|
+
error: {
|
|
11938
|
+
type: "string",
|
|
11939
|
+
description: "The error that occurred if the folder was not listed",
|
|
11940
|
+
},
|
|
11941
|
+
},
|
|
11942
|
+
},
|
|
11943
|
+
name: "listSharepointFolder",
|
|
11944
|
+
provider: "microsoft",
|
|
11945
|
+
};
|
|
11946
|
+
export const microsoftReadSharepointContentDefinition = {
|
|
11947
|
+
displayName: "Read SharePoint or OneDrive content as text",
|
|
11948
|
+
description: "Reads a SharePoint or OneDrive document (docx, pdf, xlsx, pptx, txt, csv, json, html) or SharePoint site page as plain text, given a URL or a driveItem reference. Plain files only need Files.Read.All; site pages additionally require Sites.Read.All.",
|
|
11949
|
+
scopes: ["Files.Read.All", "Sites.Read.All"],
|
|
11950
|
+
tags: [],
|
|
11951
|
+
parameters: {
|
|
11952
|
+
type: "object",
|
|
11953
|
+
required: [],
|
|
11954
|
+
properties: {
|
|
11955
|
+
url: {
|
|
11956
|
+
type: "string",
|
|
11957
|
+
description: "The URL of the file or page to read. Provide either this or driveItem; when both are given, driveItem takes precedence and the url is ignored.",
|
|
11958
|
+
},
|
|
11959
|
+
driveItem: {
|
|
11960
|
+
type: "object",
|
|
11961
|
+
description: "The exact file to read, as returned by getSharepointItem. Provide either this or url.",
|
|
11962
|
+
required: ["driveId", "itemId"],
|
|
11963
|
+
properties: {
|
|
11964
|
+
driveId: {
|
|
11965
|
+
type: "string",
|
|
11966
|
+
description: "The ID of the drive containing the file",
|
|
11967
|
+
},
|
|
11968
|
+
itemId: {
|
|
11969
|
+
type: "string",
|
|
11970
|
+
description: "The ID of the file to read",
|
|
11971
|
+
},
|
|
11972
|
+
},
|
|
11973
|
+
},
|
|
11974
|
+
charLimit: {
|
|
11975
|
+
type: "number",
|
|
11976
|
+
description: "The character limit for the returned content (soft truncation)",
|
|
11977
|
+
},
|
|
11978
|
+
fileSizeLimit: {
|
|
11979
|
+
type: "number",
|
|
11980
|
+
description: "Max file size (in MB) to retrieve content from (default of 50MB)",
|
|
11981
|
+
},
|
|
11982
|
+
},
|
|
11983
|
+
},
|
|
11984
|
+
output: {
|
|
11985
|
+
type: "object",
|
|
11986
|
+
required: ["success"],
|
|
11987
|
+
properties: {
|
|
11988
|
+
success: {
|
|
11989
|
+
type: "boolean",
|
|
11990
|
+
description: "Whether the content was retrieved successfully",
|
|
11991
|
+
},
|
|
11992
|
+
results: {
|
|
11993
|
+
type: "array",
|
|
11994
|
+
description: "The results of the content read",
|
|
11995
|
+
items: {
|
|
11996
|
+
type: "object",
|
|
11997
|
+
required: ["name", "url", "contents"],
|
|
11998
|
+
properties: {
|
|
11999
|
+
name: {
|
|
12000
|
+
type: "string",
|
|
12001
|
+
description: "The name of the file or page",
|
|
12002
|
+
},
|
|
12003
|
+
url: {
|
|
12004
|
+
type: "string",
|
|
12005
|
+
description: "The URL of the file or page",
|
|
12006
|
+
},
|
|
12007
|
+
contents: {
|
|
12008
|
+
type: "object",
|
|
12009
|
+
description: "The contents of the file or page",
|
|
12010
|
+
properties: {
|
|
12011
|
+
content: {
|
|
12012
|
+
type: "string",
|
|
12013
|
+
description: "The text content of the file or page",
|
|
12014
|
+
},
|
|
12015
|
+
fileName: {
|
|
12016
|
+
type: "string",
|
|
12017
|
+
description: "The name of the file or page",
|
|
12018
|
+
},
|
|
12019
|
+
fileLength: {
|
|
12020
|
+
type: "number",
|
|
12021
|
+
description: "The length of the content prior to truncating",
|
|
12022
|
+
},
|
|
12023
|
+
},
|
|
12024
|
+
},
|
|
12025
|
+
},
|
|
12026
|
+
},
|
|
12027
|
+
},
|
|
12028
|
+
error: {
|
|
12029
|
+
type: "string",
|
|
12030
|
+
description: "Error message if content retrieval failed",
|
|
12031
|
+
},
|
|
12032
|
+
},
|
|
12033
|
+
},
|
|
12034
|
+
name: "readSharepointContent",
|
|
12035
|
+
provider: "microsoft",
|
|
12036
|
+
};
|
|
12037
|
+
export const microsoftSearchSharepointDefinition = {
|
|
12038
|
+
displayName: "Search SharePoint and OneDrive files",
|
|
12039
|
+
description: "Keyword search across SharePoint and OneDrive files via Microsoft Search (KQL matching with M365 relevance ranking, not semantic search). OneDrive is always included. Without scopeUrl, searches everything the signed-in user can access (requires Sites.Read.All). With scopeUrl, restricts results to that site, folder, or document library URL — folder and library scoping work with Files.Read.All alone; site scoping requires Sites.Read.All.",
|
|
12040
|
+
scopes: ["Files.Read.All", "Sites.Read.All"],
|
|
12041
|
+
tags: [],
|
|
12042
|
+
parameters: {
|
|
12043
|
+
type: "object",
|
|
12044
|
+
required: ["query"],
|
|
12045
|
+
properties: {
|
|
12046
|
+
query: {
|
|
12047
|
+
type: "string",
|
|
12048
|
+
description: "The text to search for",
|
|
12049
|
+
},
|
|
12050
|
+
scopeUrl: {
|
|
12051
|
+
type: "string",
|
|
12052
|
+
description: "A site, folder, or document library URL to restrict results to (optional — omit to search everything the user can access)",
|
|
12053
|
+
},
|
|
12054
|
+
limit: {
|
|
12055
|
+
type: "number",
|
|
12056
|
+
description: "Maximum number of results to return (default 25)",
|
|
12057
|
+
},
|
|
12058
|
+
},
|
|
12059
|
+
},
|
|
12060
|
+
output: {
|
|
12061
|
+
type: "object",
|
|
12062
|
+
required: ["success"],
|
|
12063
|
+
properties: {
|
|
12064
|
+
success: {
|
|
12065
|
+
type: "boolean",
|
|
12066
|
+
description: "Whether the search completed successfully",
|
|
12067
|
+
},
|
|
12068
|
+
files: {
|
|
12069
|
+
type: "array",
|
|
12070
|
+
description: "The files matching the search query",
|
|
12071
|
+
items: {
|
|
12072
|
+
type: "object",
|
|
12073
|
+
required: ["itemId", "name"],
|
|
12074
|
+
properties: {
|
|
12075
|
+
itemId: {
|
|
12076
|
+
type: "string",
|
|
12077
|
+
description: "The ID of the file",
|
|
12078
|
+
},
|
|
12079
|
+
driveId: {
|
|
12080
|
+
type: "string",
|
|
12081
|
+
description: "The ID of the drive containing the file",
|
|
12082
|
+
},
|
|
12083
|
+
name: {
|
|
12084
|
+
type: "string",
|
|
12085
|
+
description: "The name of the file",
|
|
12086
|
+
},
|
|
12087
|
+
mimeType: {
|
|
12088
|
+
type: "string",
|
|
12089
|
+
description: "The MIME type of the file",
|
|
12090
|
+
},
|
|
12091
|
+
webUrl: {
|
|
12092
|
+
type: "string",
|
|
12093
|
+
description: "The web URL of the file",
|
|
12094
|
+
},
|
|
12095
|
+
snippet: {
|
|
12096
|
+
type: "string",
|
|
12097
|
+
description: "A text snippet summarizing the match",
|
|
12098
|
+
},
|
|
12099
|
+
lastModified: {
|
|
12100
|
+
type: "string",
|
|
12101
|
+
description: "The last modified timestamp of the file",
|
|
12102
|
+
},
|
|
12103
|
+
},
|
|
12104
|
+
},
|
|
12105
|
+
},
|
|
12106
|
+
truncated: {
|
|
12107
|
+
type: "boolean",
|
|
12108
|
+
description: "True if more results were available than the limit allowed",
|
|
12109
|
+
},
|
|
12110
|
+
error: {
|
|
12111
|
+
type: "string",
|
|
12112
|
+
description: "The error that occurred if the search failed",
|
|
12113
|
+
},
|
|
12114
|
+
},
|
|
12115
|
+
},
|
|
12116
|
+
name: "searchSharepoint",
|
|
12117
|
+
provider: "microsoft",
|
|
12118
|
+
};
|
|
11754
12119
|
export const githubCreateOrUpdateFileDefinition = {
|
|
11755
12120
|
displayName: "Create or update a file",
|
|
11756
12121
|
description: "Create or update a file in a GitHub repository",
|
|
@@ -15542,3 +15907,558 @@ export const smartsheetUpdateRowDefinition = {
|
|
|
15542
15907
|
name: "updateRow",
|
|
15543
15908
|
provider: "smartsheet",
|
|
15544
15909
|
};
|
|
15910
|
+
export const servicenowGetRecordsByQueryDefinition = {
|
|
15911
|
+
displayName: "Get ServiceNow records by query",
|
|
15912
|
+
description: "Query records from any ServiceNow table (e.g. incident, change_request, sc_request) using an encoded query string via the Table API",
|
|
15913
|
+
scopes: [],
|
|
15914
|
+
tags: [],
|
|
15915
|
+
parameters: {
|
|
15916
|
+
type: "object",
|
|
15917
|
+
required: ["tableName"],
|
|
15918
|
+
properties: {
|
|
15919
|
+
tableName: {
|
|
15920
|
+
type: "string",
|
|
15921
|
+
description: "The ServiceNow table to query (e.g. incident, change_request, sc_request, sys_user, kb_knowledge)",
|
|
15922
|
+
},
|
|
15923
|
+
query: {
|
|
15924
|
+
type: "string",
|
|
15925
|
+
description: 'ServiceNow encoded query string (sysparm_query) — NOT SQL, JQL, or natural language. Conditions are joined with ^ for AND and ^OR for OR, with no spaces around the ^. Format examples: field=value, field!=value, field>value, fieldLIKEvalue, fieldISEMPTY. Sort with ^ORDERBY<field> (ascending) or ^ORDERBYDESC<field> (descending). Example: "active=true^priority=1^ORDERBYDESCsys_created_on" means active records with priority 1, sorted by most recently created first. If omitted, records are returned unfiltered up to the limit.\n',
|
|
15926
|
+
},
|
|
15927
|
+
fields: {
|
|
15928
|
+
type: "array",
|
|
15929
|
+
description: "Field names to return for each record (sysparm_fields). All fields are returned if omitted.",
|
|
15930
|
+
items: {
|
|
15931
|
+
type: "string",
|
|
15932
|
+
},
|
|
15933
|
+
},
|
|
15934
|
+
limit: {
|
|
15935
|
+
type: "number",
|
|
15936
|
+
description: "Maximum number of records to return (defaults to 25)",
|
|
15937
|
+
},
|
|
15938
|
+
offset: {
|
|
15939
|
+
type: "number",
|
|
15940
|
+
description: "Number of records to skip, for pagination (defaults to 0)",
|
|
15941
|
+
},
|
|
15942
|
+
includeDisplayValues: {
|
|
15943
|
+
type: "boolean",
|
|
15944
|
+
description: 'If false (default), each field is returned as a plain scalar value (e.g. active: true, priority: "1"). If true, every field is instead returned as an object {value: "<raw value>", display_value: "<human-readable value>"} — useful for reference fields like assigned_to, where value is a sys_id and display_value is the user\'s name.\n',
|
|
15945
|
+
},
|
|
15946
|
+
},
|
|
15947
|
+
},
|
|
15948
|
+
output: {
|
|
15949
|
+
type: "object",
|
|
15950
|
+
required: ["success"],
|
|
15951
|
+
properties: {
|
|
15952
|
+
success: {
|
|
15953
|
+
type: "boolean",
|
|
15954
|
+
description: "Whether the query was successful",
|
|
15955
|
+
},
|
|
15956
|
+
records: {
|
|
15957
|
+
type: "array",
|
|
15958
|
+
description: "The records matching the query",
|
|
15959
|
+
items: {
|
|
15960
|
+
type: "object",
|
|
15961
|
+
},
|
|
15962
|
+
},
|
|
15963
|
+
error: {
|
|
15964
|
+
type: "string",
|
|
15965
|
+
description: "Error message if the query failed",
|
|
15966
|
+
},
|
|
15967
|
+
},
|
|
15968
|
+
},
|
|
15969
|
+
name: "getRecordsByQuery",
|
|
15970
|
+
provider: "servicenow",
|
|
15971
|
+
};
|
|
15972
|
+
export const servicenowGetIncidentsDefinition = {
|
|
15973
|
+
displayName: "Get ServiceNow incidents",
|
|
15974
|
+
description: "Read incident records from ServiceNow, optionally filtered by an additional encoded query. Returns standard incident fields plus a computed time-to-closure.",
|
|
15975
|
+
scopes: [],
|
|
15976
|
+
tags: [],
|
|
15977
|
+
parameters: {
|
|
15978
|
+
type: "object",
|
|
15979
|
+
required: [],
|
|
15980
|
+
properties: {
|
|
15981
|
+
query: {
|
|
15982
|
+
type: "string",
|
|
15983
|
+
description: 'Optional additional ServiceNow encoded query (sysparm_query) ANDed onto the base incident lookup — NOT SQL, JQL, or natural language. Conditions are joined with ^ for AND and ^OR for OR, with no spaces around the ^. Example: "priority=1^state!=7" for open, priority-1 incidents. Leave empty to return all incidents up to the limit.\n',
|
|
15984
|
+
},
|
|
15985
|
+
additionalFields: {
|
|
15986
|
+
type: "array",
|
|
15987
|
+
description: 'Extra ServiceNow field technical names to fetch for instance-specific/custom fields not covered by the standard output (e.g. a custom "Program Office" field). Values are returned per record under extraFields, keyed by the field name given here.\n',
|
|
15988
|
+
items: {
|
|
15989
|
+
type: "string",
|
|
15990
|
+
},
|
|
15991
|
+
},
|
|
15992
|
+
limit: {
|
|
15993
|
+
type: "number",
|
|
15994
|
+
description: "Maximum number of incidents to return (defaults to 25)",
|
|
15995
|
+
},
|
|
15996
|
+
offset: {
|
|
15997
|
+
type: "number",
|
|
15998
|
+
description: "Number of records to skip, for pagination (defaults to 0)",
|
|
15999
|
+
},
|
|
16000
|
+
},
|
|
16001
|
+
},
|
|
16002
|
+
output: {
|
|
16003
|
+
type: "object",
|
|
16004
|
+
required: ["success"],
|
|
16005
|
+
properties: {
|
|
16006
|
+
success: {
|
|
16007
|
+
type: "boolean",
|
|
16008
|
+
description: "Whether the query was successful",
|
|
16009
|
+
},
|
|
16010
|
+
records: {
|
|
16011
|
+
type: "array",
|
|
16012
|
+
description: "The incident records matching the query",
|
|
16013
|
+
items: {
|
|
16014
|
+
type: "object",
|
|
16015
|
+
properties: {
|
|
16016
|
+
number: {
|
|
16017
|
+
type: "string",
|
|
16018
|
+
description: "The incident ticket number (e.g. INC0010023)",
|
|
16019
|
+
},
|
|
16020
|
+
caller: {
|
|
16021
|
+
type: "string",
|
|
16022
|
+
description: "The name of the person who reported the incident",
|
|
16023
|
+
},
|
|
16024
|
+
assignee: {
|
|
16025
|
+
type: "string",
|
|
16026
|
+
description: "The name of the person assigned to the incident",
|
|
16027
|
+
},
|
|
16028
|
+
assignmentGroup: {
|
|
16029
|
+
type: "string",
|
|
16030
|
+
description: "The name of the group assigned to the incident",
|
|
16031
|
+
},
|
|
16032
|
+
shortDescription: {
|
|
16033
|
+
type: "string",
|
|
16034
|
+
description: "The short description of the incident",
|
|
16035
|
+
},
|
|
16036
|
+
description: {
|
|
16037
|
+
type: "string",
|
|
16038
|
+
description: "The full description of the incident",
|
|
16039
|
+
},
|
|
16040
|
+
state: {
|
|
16041
|
+
type: "string",
|
|
16042
|
+
description: "The current state of the incident",
|
|
16043
|
+
},
|
|
16044
|
+
incidentState: {
|
|
16045
|
+
type: "string",
|
|
16046
|
+
description: "The current incident-specific state (legacy field on some instances; may be absent)",
|
|
16047
|
+
},
|
|
16048
|
+
priority: {
|
|
16049
|
+
type: "string",
|
|
16050
|
+
description: "The priority of the incident",
|
|
16051
|
+
},
|
|
16052
|
+
impact: {
|
|
16053
|
+
type: "string",
|
|
16054
|
+
description: "The impact of the incident",
|
|
16055
|
+
},
|
|
16056
|
+
urgency: {
|
|
16057
|
+
type: "string",
|
|
16058
|
+
description: "The urgency of the incident",
|
|
16059
|
+
},
|
|
16060
|
+
openedAt: {
|
|
16061
|
+
type: "string",
|
|
16062
|
+
description: "The date and time the incident was opened",
|
|
16063
|
+
},
|
|
16064
|
+
updatedAt: {
|
|
16065
|
+
type: "string",
|
|
16066
|
+
description: "The date and time the incident was last updated",
|
|
16067
|
+
},
|
|
16068
|
+
closedAt: {
|
|
16069
|
+
type: "string",
|
|
16070
|
+
description: "The date and time the incident was closed or completed, if applicable",
|
|
16071
|
+
},
|
|
16072
|
+
workNotes: {
|
|
16073
|
+
type: "string",
|
|
16074
|
+
description: "Internal work notes on the incident",
|
|
16075
|
+
},
|
|
16076
|
+
comments: {
|
|
16077
|
+
type: "string",
|
|
16078
|
+
description: "Additional (customer-visible) comments on the incident",
|
|
16079
|
+
},
|
|
16080
|
+
timeToClosureMinutes: {
|
|
16081
|
+
type: "number",
|
|
16082
|
+
description: "Minutes elapsed from opening to final closure, calculated from openedAt and closedAt",
|
|
16083
|
+
},
|
|
16084
|
+
extraFields: {
|
|
16085
|
+
type: "object",
|
|
16086
|
+
description: "Values for any fields requested via the additionalFields parameter, keyed by field name",
|
|
16087
|
+
},
|
|
16088
|
+
},
|
|
16089
|
+
},
|
|
16090
|
+
},
|
|
16091
|
+
error: {
|
|
16092
|
+
type: "string",
|
|
16093
|
+
description: "Error message if the query failed",
|
|
16094
|
+
},
|
|
16095
|
+
},
|
|
16096
|
+
},
|
|
16097
|
+
name: "getIncidents",
|
|
16098
|
+
provider: "servicenow",
|
|
16099
|
+
};
|
|
16100
|
+
export const servicenowGetChangeRequestsDefinition = {
|
|
16101
|
+
displayName: "Get ServiceNow change requests",
|
|
16102
|
+
description: "Read change request records from ServiceNow, optionally filtered by an additional encoded query. Returns standard change request fields plus a computed time-to-closure.",
|
|
16103
|
+
scopes: [],
|
|
16104
|
+
tags: [],
|
|
16105
|
+
parameters: {
|
|
16106
|
+
type: "object",
|
|
16107
|
+
required: [],
|
|
16108
|
+
properties: {
|
|
16109
|
+
query: {
|
|
16110
|
+
type: "string",
|
|
16111
|
+
description: 'Optional additional ServiceNow encoded query (sysparm_query) ANDed onto the base change request lookup — NOT SQL, JQL, or natural language. Conditions are joined with ^ for AND and ^OR for OR, with no spaces around the ^. Example: "priority=1^state!=3" for open, priority-1 change requests. Leave empty to return all change requests up to the limit.\n',
|
|
16112
|
+
},
|
|
16113
|
+
additionalFields: {
|
|
16114
|
+
type: "array",
|
|
16115
|
+
description: 'Extra ServiceNow field technical names to fetch for instance-specific/custom fields not covered by the standard output (e.g. a custom "Program Office" field). Values are returned per record under extraFields, keyed by the field name given here.\n',
|
|
16116
|
+
items: {
|
|
16117
|
+
type: "string",
|
|
16118
|
+
},
|
|
16119
|
+
},
|
|
16120
|
+
limit: {
|
|
16121
|
+
type: "number",
|
|
16122
|
+
description: "Maximum number of change requests to return (defaults to 25)",
|
|
16123
|
+
},
|
|
16124
|
+
offset: {
|
|
16125
|
+
type: "number",
|
|
16126
|
+
description: "Number of records to skip, for pagination (defaults to 0)",
|
|
16127
|
+
},
|
|
16128
|
+
},
|
|
16129
|
+
},
|
|
16130
|
+
output: {
|
|
16131
|
+
type: "object",
|
|
16132
|
+
required: ["success"],
|
|
16133
|
+
properties: {
|
|
16134
|
+
success: {
|
|
16135
|
+
type: "boolean",
|
|
16136
|
+
description: "Whether the query was successful",
|
|
16137
|
+
},
|
|
16138
|
+
records: {
|
|
16139
|
+
type: "array",
|
|
16140
|
+
description: "The change request records matching the query",
|
|
16141
|
+
items: {
|
|
16142
|
+
type: "object",
|
|
16143
|
+
properties: {
|
|
16144
|
+
number: {
|
|
16145
|
+
type: "string",
|
|
16146
|
+
description: "The change request number (e.g. CHG0010023)",
|
|
16147
|
+
},
|
|
16148
|
+
requestor: {
|
|
16149
|
+
type: "string",
|
|
16150
|
+
description: "The name of the person who requested the change",
|
|
16151
|
+
},
|
|
16152
|
+
assignee: {
|
|
16153
|
+
type: "string",
|
|
16154
|
+
description: "The name of the person assigned to the change request",
|
|
16155
|
+
},
|
|
16156
|
+
assignmentGroup: {
|
|
16157
|
+
type: "string",
|
|
16158
|
+
description: "The name of the group assigned to the change request",
|
|
16159
|
+
},
|
|
16160
|
+
shortDescription: {
|
|
16161
|
+
type: "string",
|
|
16162
|
+
description: "The short description of the change request",
|
|
16163
|
+
},
|
|
16164
|
+
description: {
|
|
16165
|
+
type: "string",
|
|
16166
|
+
description: "The full description of the change request",
|
|
16167
|
+
},
|
|
16168
|
+
state: {
|
|
16169
|
+
type: "string",
|
|
16170
|
+
description: "The current state of the change request",
|
|
16171
|
+
},
|
|
16172
|
+
priority: {
|
|
16173
|
+
type: "string",
|
|
16174
|
+
description: "The priority of the change request",
|
|
16175
|
+
},
|
|
16176
|
+
impact: {
|
|
16177
|
+
type: "string",
|
|
16178
|
+
description: "The impact of the change request",
|
|
16179
|
+
},
|
|
16180
|
+
urgency: {
|
|
16181
|
+
type: "string",
|
|
16182
|
+
description: "The urgency of the change request",
|
|
16183
|
+
},
|
|
16184
|
+
openedAt: {
|
|
16185
|
+
type: "string",
|
|
16186
|
+
description: "The date and time the change request was opened",
|
|
16187
|
+
},
|
|
16188
|
+
updatedAt: {
|
|
16189
|
+
type: "string",
|
|
16190
|
+
description: "The date and time the change request was last updated",
|
|
16191
|
+
},
|
|
16192
|
+
closedAt: {
|
|
16193
|
+
type: "string",
|
|
16194
|
+
description: "The date and time the change request was closed or completed, if applicable",
|
|
16195
|
+
},
|
|
16196
|
+
workNotes: {
|
|
16197
|
+
type: "string",
|
|
16198
|
+
description: "Internal work notes on the change request",
|
|
16199
|
+
},
|
|
16200
|
+
comments: {
|
|
16201
|
+
type: "string",
|
|
16202
|
+
description: "Additional (customer-visible) comments on the change request",
|
|
16203
|
+
},
|
|
16204
|
+
timeToClosureMinutes: {
|
|
16205
|
+
type: "number",
|
|
16206
|
+
description: "Minutes elapsed from opening to final closure, calculated from openedAt and closedAt",
|
|
16207
|
+
},
|
|
16208
|
+
extraFields: {
|
|
16209
|
+
type: "object",
|
|
16210
|
+
description: "Values for any fields requested via the additionalFields parameter, keyed by field name",
|
|
16211
|
+
},
|
|
16212
|
+
},
|
|
16213
|
+
},
|
|
16214
|
+
},
|
|
16215
|
+
error: {
|
|
16216
|
+
type: "string",
|
|
16217
|
+
description: "Error message if the query failed",
|
|
16218
|
+
},
|
|
16219
|
+
},
|
|
16220
|
+
},
|
|
16221
|
+
name: "getChangeRequests",
|
|
16222
|
+
provider: "servicenow",
|
|
16223
|
+
};
|
|
16224
|
+
export const servicenowGetSCTasksDefinition = {
|
|
16225
|
+
displayName: "Get ServiceNow catalog tasks (SCTASKs)",
|
|
16226
|
+
description: "Read service catalog task (sc_task) records from ServiceNow, optionally filtered by an additional encoded query. Returns standard SCTASK fields, the parent RITM number, and a computed time-to-closure.",
|
|
16227
|
+
scopes: [],
|
|
16228
|
+
tags: [],
|
|
16229
|
+
parameters: {
|
|
16230
|
+
type: "object",
|
|
16231
|
+
required: [],
|
|
16232
|
+
properties: {
|
|
16233
|
+
query: {
|
|
16234
|
+
type: "string",
|
|
16235
|
+
description: 'Optional additional ServiceNow encoded query (sysparm_query) ANDed onto the base SCTASK lookup — NOT SQL, JQL, or natural language. Conditions are joined with ^ for AND and ^OR for OR, with no spaces around the ^. Example: "priority=1^state!=3" for open, priority-1 SCTASKs. Leave empty to return all SCTASKs up to the limit.\n',
|
|
16236
|
+
},
|
|
16237
|
+
additionalFields: {
|
|
16238
|
+
type: "array",
|
|
16239
|
+
description: 'Extra ServiceNow field technical names to fetch for instance-specific/custom fields not covered by the standard output (e.g. a custom "Program Office" field). Values are returned per record under extraFields, keyed by the field name given here.\n',
|
|
16240
|
+
items: {
|
|
16241
|
+
type: "string",
|
|
16242
|
+
},
|
|
16243
|
+
},
|
|
16244
|
+
limit: {
|
|
16245
|
+
type: "number",
|
|
16246
|
+
description: "Maximum number of SCTASKs to return (defaults to 25)",
|
|
16247
|
+
},
|
|
16248
|
+
offset: {
|
|
16249
|
+
type: "number",
|
|
16250
|
+
description: "Number of records to skip, for pagination (defaults to 0)",
|
|
16251
|
+
},
|
|
16252
|
+
},
|
|
16253
|
+
},
|
|
16254
|
+
output: {
|
|
16255
|
+
type: "object",
|
|
16256
|
+
required: ["success"],
|
|
16257
|
+
properties: {
|
|
16258
|
+
success: {
|
|
16259
|
+
type: "boolean",
|
|
16260
|
+
description: "Whether the query was successful",
|
|
16261
|
+
},
|
|
16262
|
+
records: {
|
|
16263
|
+
type: "array",
|
|
16264
|
+
description: "The SCTASK records matching the query",
|
|
16265
|
+
items: {
|
|
16266
|
+
type: "object",
|
|
16267
|
+
properties: {
|
|
16268
|
+
number: {
|
|
16269
|
+
type: "string",
|
|
16270
|
+
description: "The SCTASK ticket number (e.g. SCTASK0010023)",
|
|
16271
|
+
},
|
|
16272
|
+
ritmNumber: {
|
|
16273
|
+
type: "string",
|
|
16274
|
+
description: "The number of the parent Requested Item (RITM) this SCTASK belongs to",
|
|
16275
|
+
},
|
|
16276
|
+
assignee: {
|
|
16277
|
+
type: "string",
|
|
16278
|
+
description: "The name of the person assigned to the SCTASK",
|
|
16279
|
+
},
|
|
16280
|
+
assignmentGroup: {
|
|
16281
|
+
type: "string",
|
|
16282
|
+
description: "The name of the group assigned to the SCTASK",
|
|
16283
|
+
},
|
|
16284
|
+
shortDescription: {
|
|
16285
|
+
type: "string",
|
|
16286
|
+
description: "The short description of the SCTASK",
|
|
16287
|
+
},
|
|
16288
|
+
description: {
|
|
16289
|
+
type: "string",
|
|
16290
|
+
description: "The full description of the SCTASK",
|
|
16291
|
+
},
|
|
16292
|
+
state: {
|
|
16293
|
+
type: "string",
|
|
16294
|
+
description: "The current state of the SCTASK",
|
|
16295
|
+
},
|
|
16296
|
+
priority: {
|
|
16297
|
+
type: "string",
|
|
16298
|
+
description: "The priority of the SCTASK",
|
|
16299
|
+
},
|
|
16300
|
+
openedAt: {
|
|
16301
|
+
type: "string",
|
|
16302
|
+
description: "The date and time the SCTASK was opened",
|
|
16303
|
+
},
|
|
16304
|
+
updatedAt: {
|
|
16305
|
+
type: "string",
|
|
16306
|
+
description: "The date and time the SCTASK was last updated",
|
|
16307
|
+
},
|
|
16308
|
+
closedAt: {
|
|
16309
|
+
type: "string",
|
|
16310
|
+
description: "The date and time the SCTASK was closed or completed, if applicable",
|
|
16311
|
+
},
|
|
16312
|
+
workNotes: {
|
|
16313
|
+
type: "string",
|
|
16314
|
+
description: "Internal work notes on the SCTASK",
|
|
16315
|
+
},
|
|
16316
|
+
comments: {
|
|
16317
|
+
type: "string",
|
|
16318
|
+
description: "Additional (customer-visible) comments on the SCTASK",
|
|
16319
|
+
},
|
|
16320
|
+
timeToClosureMinutes: {
|
|
16321
|
+
type: "number",
|
|
16322
|
+
description: "Minutes elapsed from opening to final closure, calculated from openedAt and closedAt",
|
|
16323
|
+
},
|
|
16324
|
+
extraFields: {
|
|
16325
|
+
type: "object",
|
|
16326
|
+
description: "Values for any fields requested via the additionalFields parameter, keyed by field name",
|
|
16327
|
+
},
|
|
16328
|
+
},
|
|
16329
|
+
},
|
|
16330
|
+
},
|
|
16331
|
+
error: {
|
|
16332
|
+
type: "string",
|
|
16333
|
+
description: "Error message if the query failed",
|
|
16334
|
+
},
|
|
16335
|
+
},
|
|
16336
|
+
},
|
|
16337
|
+
name: "getSCTasks",
|
|
16338
|
+
provider: "servicenow",
|
|
16339
|
+
};
|
|
16340
|
+
export const servicenowGetVIPTicketsDefinition = {
|
|
16341
|
+
displayName: "Get ServiceNow VIP tickets",
|
|
16342
|
+
description: "Read incident or SCTASK records in ServiceNow whose caller/requester is flagged as a VIP user (sys_user.vip), optionally filtered by an additional encoded query. Returns standard ticket fields and a computed time-to-closure.",
|
|
16343
|
+
scopes: [],
|
|
16344
|
+
tags: [],
|
|
16345
|
+
parameters: {
|
|
16346
|
+
type: "object",
|
|
16347
|
+
required: ["ticketType"],
|
|
16348
|
+
properties: {
|
|
16349
|
+
ticketType: {
|
|
16350
|
+
type: "string",
|
|
16351
|
+
enum: ["incident", "sc_task"],
|
|
16352
|
+
description: "Which kind of ticket to look up VIP records for",
|
|
16353
|
+
},
|
|
16354
|
+
query: {
|
|
16355
|
+
type: "string",
|
|
16356
|
+
description: 'Optional additional ServiceNow encoded query (sysparm_query) ANDed onto the base VIP lookup — NOT SQL, JQL, or natural language. Conditions are joined with ^ for AND and ^OR for OR, with no spaces around the ^. Example: "priority=1" to further narrow to priority-1 VIP tickets. Leave empty to return all VIP tickets of the given type up to the limit.\n',
|
|
16357
|
+
},
|
|
16358
|
+
additionalFields: {
|
|
16359
|
+
type: "array",
|
|
16360
|
+
description: 'Extra ServiceNow field technical names to fetch for instance-specific/custom fields not covered by the standard output (e.g. a custom "Program Office" field). Values are returned per record under extraFields, keyed by the field name given here.\n',
|
|
16361
|
+
items: {
|
|
16362
|
+
type: "string",
|
|
16363
|
+
},
|
|
16364
|
+
},
|
|
16365
|
+
limit: {
|
|
16366
|
+
type: "number",
|
|
16367
|
+
description: "Maximum number of VIP tickets to return (defaults to 25)",
|
|
16368
|
+
},
|
|
16369
|
+
offset: {
|
|
16370
|
+
type: "number",
|
|
16371
|
+
description: "Number of records to skip, for pagination (defaults to 0)",
|
|
16372
|
+
},
|
|
16373
|
+
},
|
|
16374
|
+
},
|
|
16375
|
+
output: {
|
|
16376
|
+
type: "object",
|
|
16377
|
+
required: ["success"],
|
|
16378
|
+
properties: {
|
|
16379
|
+
success: {
|
|
16380
|
+
type: "boolean",
|
|
16381
|
+
description: "Whether the query was successful",
|
|
16382
|
+
},
|
|
16383
|
+
records: {
|
|
16384
|
+
type: "array",
|
|
16385
|
+
description: "The VIP ticket records matching the query",
|
|
16386
|
+
items: {
|
|
16387
|
+
type: "object",
|
|
16388
|
+
properties: {
|
|
16389
|
+
ticketType: {
|
|
16390
|
+
type: "string",
|
|
16391
|
+
description: "Whether this record is an incident or a SCTASK",
|
|
16392
|
+
},
|
|
16393
|
+
number: {
|
|
16394
|
+
type: "string",
|
|
16395
|
+
description: "The ticket number",
|
|
16396
|
+
},
|
|
16397
|
+
ritmNumber: {
|
|
16398
|
+
type: "string",
|
|
16399
|
+
description: "The number of the parent Requested Item (RITM), if this is a SCTASK",
|
|
16400
|
+
},
|
|
16401
|
+
vipUser: {
|
|
16402
|
+
type: "string",
|
|
16403
|
+
description: "The name of the VIP caller or requester associated with this ticket",
|
|
16404
|
+
},
|
|
16405
|
+
assignee: {
|
|
16406
|
+
type: "string",
|
|
16407
|
+
description: "The name of the person assigned to the ticket",
|
|
16408
|
+
},
|
|
16409
|
+
assignmentGroup: {
|
|
16410
|
+
type: "string",
|
|
16411
|
+
description: "The name of the group assigned to the ticket",
|
|
16412
|
+
},
|
|
16413
|
+
shortDescription: {
|
|
16414
|
+
type: "string",
|
|
16415
|
+
description: "The short description of the ticket",
|
|
16416
|
+
},
|
|
16417
|
+
description: {
|
|
16418
|
+
type: "string",
|
|
16419
|
+
description: "The full description of the ticket",
|
|
16420
|
+
},
|
|
16421
|
+
state: {
|
|
16422
|
+
type: "string",
|
|
16423
|
+
description: "The current state of the ticket",
|
|
16424
|
+
},
|
|
16425
|
+
openedAt: {
|
|
16426
|
+
type: "string",
|
|
16427
|
+
description: "The date and time the ticket was opened",
|
|
16428
|
+
},
|
|
16429
|
+
updatedAt: {
|
|
16430
|
+
type: "string",
|
|
16431
|
+
description: "The date and time the ticket was last updated",
|
|
16432
|
+
},
|
|
16433
|
+
closedAt: {
|
|
16434
|
+
type: "string",
|
|
16435
|
+
description: "The date and time the ticket was closed or completed, if applicable",
|
|
16436
|
+
},
|
|
16437
|
+
workNotes: {
|
|
16438
|
+
type: "string",
|
|
16439
|
+
description: "Internal work notes on the ticket",
|
|
16440
|
+
},
|
|
16441
|
+
comments: {
|
|
16442
|
+
type: "string",
|
|
16443
|
+
description: "Additional (customer-visible) comments on the ticket",
|
|
16444
|
+
},
|
|
16445
|
+
timeToClosureMinutes: {
|
|
16446
|
+
type: "number",
|
|
16447
|
+
description: "Minutes elapsed from opening to final closure, calculated from openedAt and closedAt",
|
|
16448
|
+
},
|
|
16449
|
+
extraFields: {
|
|
16450
|
+
type: "object",
|
|
16451
|
+
description: "Values for any fields requested via the additionalFields parameter, keyed by field name",
|
|
16452
|
+
},
|
|
16453
|
+
},
|
|
16454
|
+
},
|
|
16455
|
+
},
|
|
16456
|
+
error: {
|
|
16457
|
+
type: "string",
|
|
16458
|
+
description: "Error message if the query failed",
|
|
16459
|
+
},
|
|
16460
|
+
},
|
|
16461
|
+
},
|
|
16462
|
+
name: "getVIPTickets",
|
|
16463
|
+
provider: "servicenow",
|
|
16464
|
+
};
|