graphlit-client 1.0.20240425001 → 1.0.20240426002

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.
@@ -3,8 +3,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.DisableFeed = exports.DeleteFeeds = exports.DeleteFeed = exports.DeleteAllFeeds = exports.CreateFeed = exports.UpdateConversation = exports.SuggestConversation = exports.QueryConversations = exports.PublishConversation = exports.PromptConversation = exports.GetConversation = exports.DeleteConversations = exports.DeleteConversation = exports.DeleteAllConversations = exports.CreateConversation = exports.CloseConversation = exports.ClearConversation = exports.UpdateContent = exports.SummarizeContents = exports.QueryContents = exports.QueryContentFacets = exports.PublishText = exports.PublishContents = exports.IsContentDone = exports.IngestUri = exports.IngestText = exports.IngestEncodedFile = exports.GetContent = exports.ExtractContents = exports.DeleteContents = exports.DeleteContent = exports.DeleteAllContents = exports.UpdateCollection = exports.RemoveContentsFromCollection = exports.QueryCollections = exports.GetCollection = exports.DeleteCollections = exports.DeleteCollection = exports.DeleteAllCollections = exports.CreateCollection = exports.AddContentsToCollections = exports.UpdateAlert = exports.QueryAlerts = exports.GetAlert = exports.EnableAlert = exports.DisableAlert = exports.DeleteAllAlerts = exports.DeleteAlerts = exports.DeleteAlert = exports.CreateAlert = void 0;
7
- exports.UpdateWorkflow = exports.QueryWorkflows = exports.GetWorkflow = exports.DeleteWorkflows = exports.DeleteWorkflow = exports.DeleteAllWorkflows = exports.CreateWorkflow = exports.UpdateSpecification = exports.QuerySpecifications = exports.PromptSpecifications = exports.GetSpecification = exports.DeleteSpecification = exports.CreateSpecification = exports.Usage = exports.UpdateProject = exports.Project = exports.LookupUsage = exports.LookupCredits = exports.GetProject = exports.Credits = exports.UpdateFeed = exports.QueryFeeds = exports.IsFeedDone = exports.GetFeed = exports.EnableFeed = void 0;
6
+ exports.QueryConversations = exports.PublishConversation = exports.PromptConversation = exports.GetConversation = exports.DeleteConversations = exports.DeleteConversation = exports.DeleteAllConversations = exports.CreateConversation = exports.CloseConversation = exports.ClearConversation = exports.UpdateContent = exports.SummarizeContents = exports.QueryContents = exports.QueryContentFacets = exports.PublishText = exports.PublishContents = exports.IsContentDone = exports.IngestUri = exports.IngestText = exports.IngestEncodedFile = exports.GetContent = exports.ExtractContents = exports.DeleteContents = exports.DeleteContent = exports.DeleteAllContents = exports.UpdateCollection = exports.RemoveContentsFromCollection = exports.QueryCollections = exports.GetCollection = exports.DeleteCollections = exports.DeleteCollection = exports.DeleteAllCollections = exports.CreateCollection = exports.AddContentsToCollections = exports.UpdateCategory = exports.QueryCategories = exports.GetCategory = exports.DeleteCategory = exports.DeleteCategories = exports.DeleteAllCategories = exports.CreateCategory = exports.UpdateAlert = exports.QueryAlerts = exports.GetAlert = exports.EnableAlert = exports.DisableAlert = exports.DeleteAllAlerts = exports.DeleteAlerts = exports.DeleteAlert = exports.CreateAlert = void 0;
7
+ exports.UpdatePlace = exports.QueryPlaces = exports.GetPlace = exports.DeletePlaces = exports.DeletePlace = exports.DeleteAllPlaces = exports.CreatePlace = exports.UpdatePerson = exports.QueryPersons = exports.GetPerson = exports.DeletePersons = exports.DeletePerson = exports.DeleteAllPersons = exports.CreatePerson = exports.UpdateOrganization = exports.QueryOrganizations = exports.GetOrganization = exports.DeleteOrganizations = exports.DeleteOrganization = exports.DeleteAllOrganizations = exports.CreateOrganization = exports.UpdateObservation = exports.DeleteObservation = exports.CreateObservation = exports.UpdateLabel = exports.QueryLabels = exports.GetLabel = exports.DeleteLabels = exports.DeleteLabel = exports.DeleteAllLabels = exports.CreateLabel = exports.UpdateFeed = exports.QueryFeeds = exports.IsFeedDone = exports.GetFeed = exports.EnableFeed = exports.DisableFeed = exports.DeleteFeeds = exports.DeleteFeed = exports.DeleteAllFeeds = exports.CreateFeed = exports.UpdateEvent = exports.QueryEvents = exports.GetEvent = exports.DeleteEvents = exports.DeleteEvent = exports.DeleteAllEvents = exports.CreateEvent = exports.UpdateConversation = exports.SuggestConversation = void 0;
8
+ exports.UpdateWorkflow = exports.QueryWorkflows = exports.GetWorkflow = exports.DeleteWorkflows = exports.DeleteWorkflow = exports.DeleteAllWorkflows = exports.CreateWorkflow = exports.UpdateSpecification = exports.QuerySpecifications = exports.PromptSpecifications = exports.GetSpecification = exports.DeleteSpecification = exports.CreateSpecification = exports.UpdateSoftware = exports.QuerySoftwares = exports.GetSoftware = exports.DeleteSoftwares = exports.DeleteSoftware = exports.DeleteAllSoftwares = exports.CreateSoftware = exports.UpdateRepo = exports.QueryRepos = exports.GetRepo = exports.DeleteRepos = exports.DeleteRepo = exports.DeleteAllRepos = exports.CreateRepo = exports.Usage = exports.UpdateProject = exports.LookupUsage = exports.LookupCredits = exports.GetProject = exports.Credits = exports.UpdateProduct = exports.QueryProducts = exports.GetProduct = exports.DeleteProducts = exports.DeleteProduct = exports.DeleteAllProducts = exports.CreateProduct = void 0;
8
9
  const graphql_tag_1 = __importDefault(require("graphql-tag"));
9
10
  exports.CreateAlert = (0, graphql_tag_1.default) `
10
11
  mutation CreateAlert($alert: AlertInput!, $correlationId: String) {
@@ -208,6 +209,68 @@ exports.UpdateAlert = (0, graphql_tag_1.default) `
208
209
  }
209
210
  }
210
211
  `;
212
+ exports.CreateCategory = (0, graphql_tag_1.default) `
213
+ mutation CreateCategory($category: CategoryInput!) {
214
+ createCategory(category: $category) {
215
+ id
216
+ name
217
+ }
218
+ }
219
+ `;
220
+ exports.DeleteAllCategories = (0, graphql_tag_1.default) `
221
+ mutation DeleteAllCategories($filter: CategoryFilter!) {
222
+ deleteAllCategories(filter: $filter) {
223
+ id
224
+ state
225
+ }
226
+ }
227
+ `;
228
+ exports.DeleteCategories = (0, graphql_tag_1.default) `
229
+ mutation DeleteCategories($ids: [ID!]!) {
230
+ deleteCategories(ids: $ids) {
231
+ id
232
+ state
233
+ }
234
+ }
235
+ `;
236
+ exports.DeleteCategory = (0, graphql_tag_1.default) `
237
+ mutation DeleteCategory($id: ID!) {
238
+ deleteCategory(id: $id) {
239
+ id
240
+ state
241
+ }
242
+ }
243
+ `;
244
+ exports.GetCategory = (0, graphql_tag_1.default) `
245
+ query GetCategory($id: ID!) {
246
+ category(id: $id) {
247
+ id
248
+ name
249
+ description
250
+ creationDate
251
+ }
252
+ }
253
+ `;
254
+ exports.QueryCategories = (0, graphql_tag_1.default) `
255
+ query QueryCategories($filter: CategoryFilter!) {
256
+ categories(filter: $filter) {
257
+ results {
258
+ id
259
+ name
260
+ description
261
+ creationDate
262
+ }
263
+ }
264
+ }
265
+ `;
266
+ exports.UpdateCategory = (0, graphql_tag_1.default) `
267
+ mutation UpdateCategory($category: CategoryUpdateInput!) {
268
+ updateCategory(category: $category) {
269
+ id
270
+ name
271
+ }
272
+ }
273
+ `;
211
274
  exports.AddContentsToCollections = (0, graphql_tag_1.default) `
212
275
  mutation AddContentsToCollections($contents: [EntityReferenceInput!]!, $collections: [EntityReferenceInput!]!) {
213
276
  addContentsToCollections(contents: $contents, collections: $collections) {
@@ -1184,6 +1247,102 @@ exports.UpdateConversation = (0, graphql_tag_1.default) `
1184
1247
  }
1185
1248
  }
1186
1249
  `;
1250
+ exports.CreateEvent = (0, graphql_tag_1.default) `
1251
+ mutation CreateEvent($event: EventInput!) {
1252
+ createEvent(event: $event) {
1253
+ id
1254
+ name
1255
+ }
1256
+ }
1257
+ `;
1258
+ exports.DeleteAllEvents = (0, graphql_tag_1.default) `
1259
+ mutation DeleteAllEvents($filter: EventFilter!) {
1260
+ deleteAllEvents(filter: $filter) {
1261
+ id
1262
+ state
1263
+ }
1264
+ }
1265
+ `;
1266
+ exports.DeleteEvent = (0, graphql_tag_1.default) `
1267
+ mutation DeleteEvent($id: ID!) {
1268
+ deleteEvent(id: $id) {
1269
+ id
1270
+ state
1271
+ }
1272
+ }
1273
+ `;
1274
+ exports.DeleteEvents = (0, graphql_tag_1.default) `
1275
+ mutation DeleteEvents($ids: [ID!]!) {
1276
+ deleteEvents(ids: $ids) {
1277
+ id
1278
+ state
1279
+ }
1280
+ }
1281
+ `;
1282
+ exports.GetEvent = (0, graphql_tag_1.default) `
1283
+ query GetEvent($id: ID!) {
1284
+ event(id: $id) {
1285
+ id
1286
+ name
1287
+ alternateNames
1288
+ creationDate
1289
+ address {
1290
+ streetAddress
1291
+ city
1292
+ region
1293
+ country
1294
+ postalCode
1295
+ }
1296
+ startDate
1297
+ endDate
1298
+ availabilityStartDate
1299
+ availabilityEndDate
1300
+ price
1301
+ minPrice
1302
+ maxPrice
1303
+ priceCurrency
1304
+ isAccessibleForFree
1305
+ typicalAgeRange
1306
+ }
1307
+ }
1308
+ `;
1309
+ exports.QueryEvents = (0, graphql_tag_1.default) `
1310
+ query QueryEvents($filter: EventFilter!) {
1311
+ events(filter: $filter) {
1312
+ results {
1313
+ id
1314
+ name
1315
+ alternateNames
1316
+ creationDate
1317
+ address {
1318
+ streetAddress
1319
+ city
1320
+ region
1321
+ country
1322
+ postalCode
1323
+ }
1324
+ startDate
1325
+ endDate
1326
+ availabilityStartDate
1327
+ availabilityEndDate
1328
+ price
1329
+ minPrice
1330
+ maxPrice
1331
+ priceCurrency
1332
+ isAccessibleForFree
1333
+ typicalAgeRange
1334
+ }
1335
+ }
1336
+ }
1337
+ `;
1338
+ exports.UpdateEvent = (0, graphql_tag_1.default) `
1339
+ mutation UpdateEvent($event: EventUpdateInput!) {
1340
+ updateEvent(event: $event) {
1341
+ id
1342
+ name
1343
+ }
1344
+ }
1345
+ `;
1187
1346
  exports.CreateFeed = (0, graphql_tag_1.default) `
1188
1347
  mutation CreateFeed($feed: FeedInput!, $correlationId: String) {
1189
1348
  createFeed(feed: $feed, correlationId: $correlationId) {
@@ -1545,6 +1704,438 @@ exports.UpdateFeed = (0, graphql_tag_1.default) `
1545
1704
  }
1546
1705
  }
1547
1706
  `;
1707
+ exports.CreateLabel = (0, graphql_tag_1.default) `
1708
+ mutation CreateLabel($label: LabelInput!) {
1709
+ createLabel(label: $label) {
1710
+ id
1711
+ name
1712
+ }
1713
+ }
1714
+ `;
1715
+ exports.DeleteAllLabels = (0, graphql_tag_1.default) `
1716
+ mutation DeleteAllLabels($filter: LabelFilter!) {
1717
+ deleteAllLabels(filter: $filter) {
1718
+ id
1719
+ state
1720
+ }
1721
+ }
1722
+ `;
1723
+ exports.DeleteLabel = (0, graphql_tag_1.default) `
1724
+ mutation DeleteLabel($id: ID!) {
1725
+ deleteLabel(id: $id) {
1726
+ id
1727
+ state
1728
+ }
1729
+ }
1730
+ `;
1731
+ exports.DeleteLabels = (0, graphql_tag_1.default) `
1732
+ mutation DeleteLabels($ids: [ID!]!) {
1733
+ deleteLabels(ids: $ids) {
1734
+ id
1735
+ state
1736
+ }
1737
+ }
1738
+ `;
1739
+ exports.GetLabel = (0, graphql_tag_1.default) `
1740
+ query GetLabel($id: ID!) {
1741
+ label(id: $id) {
1742
+ id
1743
+ name
1744
+ description
1745
+ creationDate
1746
+ }
1747
+ }
1748
+ `;
1749
+ exports.QueryLabels = (0, graphql_tag_1.default) `
1750
+ query QueryLabels($filter: LabelFilter!) {
1751
+ labels(filter: $filter) {
1752
+ results {
1753
+ id
1754
+ name
1755
+ description
1756
+ creationDate
1757
+ }
1758
+ }
1759
+ }
1760
+ `;
1761
+ exports.UpdateLabel = (0, graphql_tag_1.default) `
1762
+ mutation UpdateLabel($label: LabelUpdateInput!) {
1763
+ updateLabel(label: $label) {
1764
+ id
1765
+ name
1766
+ }
1767
+ }
1768
+ `;
1769
+ exports.CreateObservation = (0, graphql_tag_1.default) `
1770
+ mutation CreateObservation($observation: ObservationInput!) {
1771
+ createObservation(observation: $observation) {
1772
+ id
1773
+ state
1774
+ }
1775
+ }
1776
+ `;
1777
+ exports.DeleteObservation = (0, graphql_tag_1.default) `
1778
+ mutation DeleteObservation($id: ID!) {
1779
+ deleteObservation(id: $id) {
1780
+ id
1781
+ state
1782
+ }
1783
+ }
1784
+ `;
1785
+ exports.UpdateObservation = (0, graphql_tag_1.default) `
1786
+ mutation UpdateObservation($observation: ObservationUpdateInput!) {
1787
+ updateObservation(observation: $observation) {
1788
+ id
1789
+ state
1790
+ }
1791
+ }
1792
+ `;
1793
+ exports.CreateOrganization = (0, graphql_tag_1.default) `
1794
+ mutation CreateOrganization($organization: OrganizationInput!) {
1795
+ createOrganization(organization: $organization) {
1796
+ id
1797
+ name
1798
+ }
1799
+ }
1800
+ `;
1801
+ exports.DeleteAllOrganizations = (0, graphql_tag_1.default) `
1802
+ mutation DeleteAllOrganizations($filter: OrganizationFilter!) {
1803
+ deleteAllOrganizations(filter: $filter) {
1804
+ id
1805
+ state
1806
+ }
1807
+ }
1808
+ `;
1809
+ exports.DeleteOrganization = (0, graphql_tag_1.default) `
1810
+ mutation DeleteOrganization($id: ID!) {
1811
+ deleteOrganization(id: $id) {
1812
+ id
1813
+ state
1814
+ }
1815
+ }
1816
+ `;
1817
+ exports.DeleteOrganizations = (0, graphql_tag_1.default) `
1818
+ mutation DeleteOrganizations($ids: [ID!]!) {
1819
+ deleteOrganizations(ids: $ids) {
1820
+ id
1821
+ state
1822
+ }
1823
+ }
1824
+ `;
1825
+ exports.GetOrganization = (0, graphql_tag_1.default) `
1826
+ query GetOrganization($id: ID!) {
1827
+ organization(id: $id) {
1828
+ id
1829
+ name
1830
+ alternateNames
1831
+ creationDate
1832
+ address {
1833
+ streetAddress
1834
+ city
1835
+ region
1836
+ country
1837
+ postalCode
1838
+ }
1839
+ foundingDate
1840
+ industries
1841
+ revenue
1842
+ revenueCurrency
1843
+ investment
1844
+ investmentCurrency
1845
+ }
1846
+ }
1847
+ `;
1848
+ exports.QueryOrganizations = (0, graphql_tag_1.default) `
1849
+ query QueryOrganizations($filter: OrganizationFilter!) {
1850
+ organizations(filter: $filter) {
1851
+ results {
1852
+ id
1853
+ name
1854
+ alternateNames
1855
+ creationDate
1856
+ address {
1857
+ streetAddress
1858
+ city
1859
+ region
1860
+ country
1861
+ postalCode
1862
+ }
1863
+ foundingDate
1864
+ industries
1865
+ revenue
1866
+ revenueCurrency
1867
+ investment
1868
+ investmentCurrency
1869
+ }
1870
+ }
1871
+ }
1872
+ `;
1873
+ exports.UpdateOrganization = (0, graphql_tag_1.default) `
1874
+ mutation UpdateOrganization($organization: OrganizationUpdateInput!) {
1875
+ updateOrganization(organization: $organization) {
1876
+ id
1877
+ name
1878
+ }
1879
+ }
1880
+ `;
1881
+ exports.CreatePerson = (0, graphql_tag_1.default) `
1882
+ mutation CreatePerson($person: PersonInput!) {
1883
+ createPerson(person: $person) {
1884
+ id
1885
+ name
1886
+ }
1887
+ }
1888
+ `;
1889
+ exports.DeleteAllPersons = (0, graphql_tag_1.default) `
1890
+ mutation DeleteAllPersons($filter: PersonFilter!) {
1891
+ deleteAllPersons(filter: $filter) {
1892
+ id
1893
+ state
1894
+ }
1895
+ }
1896
+ `;
1897
+ exports.DeletePerson = (0, graphql_tag_1.default) `
1898
+ mutation DeletePerson($id: ID!) {
1899
+ deletePerson(id: $id) {
1900
+ id
1901
+ state
1902
+ }
1903
+ }
1904
+ `;
1905
+ exports.DeletePersons = (0, graphql_tag_1.default) `
1906
+ mutation DeletePersons($ids: [ID!]!) {
1907
+ deletePersons(ids: $ids) {
1908
+ id
1909
+ state
1910
+ }
1911
+ }
1912
+ `;
1913
+ exports.GetPerson = (0, graphql_tag_1.default) `
1914
+ query GetPerson($id: ID!) {
1915
+ person(id: $id) {
1916
+ id
1917
+ name
1918
+ alternateNames
1919
+ creationDate
1920
+ address {
1921
+ streetAddress
1922
+ city
1923
+ region
1924
+ country
1925
+ postalCode
1926
+ }
1927
+ email
1928
+ givenName
1929
+ familyName
1930
+ phoneNumber
1931
+ birthDate
1932
+ title
1933
+ occupation
1934
+ education
1935
+ }
1936
+ }
1937
+ `;
1938
+ exports.QueryPersons = (0, graphql_tag_1.default) `
1939
+ query QueryPersons($filter: PersonFilter!) {
1940
+ persons(filter: $filter) {
1941
+ results {
1942
+ id
1943
+ name
1944
+ alternateNames
1945
+ creationDate
1946
+ address {
1947
+ streetAddress
1948
+ city
1949
+ region
1950
+ country
1951
+ postalCode
1952
+ }
1953
+ email
1954
+ givenName
1955
+ familyName
1956
+ phoneNumber
1957
+ birthDate
1958
+ title
1959
+ occupation
1960
+ education
1961
+ }
1962
+ }
1963
+ }
1964
+ `;
1965
+ exports.UpdatePerson = (0, graphql_tag_1.default) `
1966
+ mutation UpdatePerson($person: PersonUpdateInput!) {
1967
+ updatePerson(person: $person) {
1968
+ id
1969
+ name
1970
+ }
1971
+ }
1972
+ `;
1973
+ exports.CreatePlace = (0, graphql_tag_1.default) `
1974
+ mutation CreatePlace($place: PlaceInput!) {
1975
+ createPlace(place: $place) {
1976
+ id
1977
+ name
1978
+ }
1979
+ }
1980
+ `;
1981
+ exports.DeleteAllPlaces = (0, graphql_tag_1.default) `
1982
+ mutation DeleteAllPlaces($filter: PlaceFilter!) {
1983
+ deleteAllPlaces(filter: $filter) {
1984
+ id
1985
+ state
1986
+ }
1987
+ }
1988
+ `;
1989
+ exports.DeletePlace = (0, graphql_tag_1.default) `
1990
+ mutation DeletePlace($id: ID!) {
1991
+ deletePlace(id: $id) {
1992
+ id
1993
+ state
1994
+ }
1995
+ }
1996
+ `;
1997
+ exports.DeletePlaces = (0, graphql_tag_1.default) `
1998
+ mutation DeletePlaces($ids: [ID!]!) {
1999
+ deletePlaces(ids: $ids) {
2000
+ id
2001
+ state
2002
+ }
2003
+ }
2004
+ `;
2005
+ exports.GetPlace = (0, graphql_tag_1.default) `
2006
+ query GetPlace($id: ID!) {
2007
+ place(id: $id) {
2008
+ id
2009
+ name
2010
+ alternateNames
2011
+ creationDate
2012
+ address {
2013
+ streetAddress
2014
+ city
2015
+ region
2016
+ country
2017
+ postalCode
2018
+ }
2019
+ }
2020
+ }
2021
+ `;
2022
+ exports.QueryPlaces = (0, graphql_tag_1.default) `
2023
+ query QueryPlaces($filter: PlaceFilter!) {
2024
+ places(filter: $filter) {
2025
+ results {
2026
+ id
2027
+ name
2028
+ alternateNames
2029
+ creationDate
2030
+ address {
2031
+ streetAddress
2032
+ city
2033
+ region
2034
+ country
2035
+ postalCode
2036
+ }
2037
+ }
2038
+ }
2039
+ }
2040
+ `;
2041
+ exports.UpdatePlace = (0, graphql_tag_1.default) `
2042
+ mutation UpdatePlace($place: PlaceUpdateInput!) {
2043
+ updatePlace(place: $place) {
2044
+ id
2045
+ name
2046
+ }
2047
+ }
2048
+ `;
2049
+ exports.CreateProduct = (0, graphql_tag_1.default) `
2050
+ mutation CreateProduct($product: ProductInput!) {
2051
+ createProduct(product: $product) {
2052
+ id
2053
+ name
2054
+ }
2055
+ }
2056
+ `;
2057
+ exports.DeleteAllProducts = (0, graphql_tag_1.default) `
2058
+ mutation DeleteAllProducts($filter: ProductFilter!) {
2059
+ deleteAllProducts(filter: $filter) {
2060
+ id
2061
+ state
2062
+ }
2063
+ }
2064
+ `;
2065
+ exports.DeleteProduct = (0, graphql_tag_1.default) `
2066
+ mutation DeleteProduct($id: ID!) {
2067
+ deleteProduct(id: $id) {
2068
+ id
2069
+ state
2070
+ }
2071
+ }
2072
+ `;
2073
+ exports.DeleteProducts = (0, graphql_tag_1.default) `
2074
+ mutation DeleteProducts($ids: [ID!]!) {
2075
+ deleteProducts(ids: $ids) {
2076
+ id
2077
+ state
2078
+ }
2079
+ }
2080
+ `;
2081
+ exports.GetProduct = (0, graphql_tag_1.default) `
2082
+ query GetProduct($id: ID!) {
2083
+ product(id: $id) {
2084
+ id
2085
+ name
2086
+ alternateNames
2087
+ creationDate
2088
+ address {
2089
+ streetAddress
2090
+ city
2091
+ region
2092
+ country
2093
+ postalCode
2094
+ }
2095
+ manufacturer
2096
+ model
2097
+ brand
2098
+ upc
2099
+ sku
2100
+ releaseDate
2101
+ productionDate
2102
+ }
2103
+ }
2104
+ `;
2105
+ exports.QueryProducts = (0, graphql_tag_1.default) `
2106
+ query QueryProducts($filter: ProductFilter!) {
2107
+ products(filter: $filter) {
2108
+ results {
2109
+ id
2110
+ name
2111
+ alternateNames
2112
+ creationDate
2113
+ address {
2114
+ streetAddress
2115
+ city
2116
+ region
2117
+ country
2118
+ postalCode
2119
+ }
2120
+ manufacturer
2121
+ model
2122
+ brand
2123
+ upc
2124
+ sku
2125
+ releaseDate
2126
+ productionDate
2127
+ }
2128
+ }
2129
+ }
2130
+ `;
2131
+ exports.UpdateProduct = (0, graphql_tag_1.default) `
2132
+ mutation UpdateProduct($product: ProductUpdateInput!) {
2133
+ updateProduct(product: $product) {
2134
+ id
2135
+ name
2136
+ }
2137
+ }
2138
+ `;
1548
2139
  exports.Credits = (0, graphql_tag_1.default) `
1549
2140
  query Credits($startDate: DateTime!, $duration: TimeSpan!) {
1550
2141
  credits(startDate: $startDate, duration: $duration) {
@@ -1642,36 +2233,6 @@ exports.LookupUsage = (0, graphql_tag_1.default) `
1642
2233
  }
1643
2234
  }
1644
2235
  `;
1645
- exports.Project = (0, graphql_tag_1.default) `
1646
- query Project {
1647
- project {
1648
- id
1649
- name
1650
- creationDate
1651
- modifiedDate
1652
- state
1653
- environmentType
1654
- platform
1655
- region
1656
- workflow {
1657
- id
1658
- name
1659
- }
1660
- specification {
1661
- id
1662
- name
1663
- }
1664
- quota {
1665
- storage
1666
- contents
1667
- feeds
1668
- posts
1669
- conversations
1670
- }
1671
- callbackUri
1672
- }
1673
- }
1674
- `;
1675
2236
  exports.UpdateProject = (0, graphql_tag_1.default) `
1676
2237
  mutation UpdateProject($project: ProjectUpdateInput!) {
1677
2238
  updateProject(project: $project) {
@@ -1713,6 +2274,134 @@ exports.Usage = (0, graphql_tag_1.default) `
1713
2274
  }
1714
2275
  }
1715
2276
  `;
2277
+ exports.CreateRepo = (0, graphql_tag_1.default) `
2278
+ mutation CreateRepo($repo: RepoInput!) {
2279
+ createRepo(repo: $repo) {
2280
+ id
2281
+ name
2282
+ }
2283
+ }
2284
+ `;
2285
+ exports.DeleteAllRepos = (0, graphql_tag_1.default) `
2286
+ mutation DeleteAllRepos($filter: RepoFilter!) {
2287
+ deleteAllRepos(filter: $filter) {
2288
+ id
2289
+ state
2290
+ }
2291
+ }
2292
+ `;
2293
+ exports.DeleteRepo = (0, graphql_tag_1.default) `
2294
+ mutation DeleteRepo($id: ID!) {
2295
+ deleteRepo(id: $id) {
2296
+ id
2297
+ state
2298
+ }
2299
+ }
2300
+ `;
2301
+ exports.DeleteRepos = (0, graphql_tag_1.default) `
2302
+ mutation DeleteRepos($ids: [ID!]!) {
2303
+ deleteRepos(ids: $ids) {
2304
+ id
2305
+ state
2306
+ }
2307
+ }
2308
+ `;
2309
+ exports.GetRepo = (0, graphql_tag_1.default) `
2310
+ query GetRepo($id: ID!) {
2311
+ repo(id: $id) {
2312
+ id
2313
+ name
2314
+ alternateNames
2315
+ creationDate
2316
+ }
2317
+ }
2318
+ `;
2319
+ exports.QueryRepos = (0, graphql_tag_1.default) `
2320
+ query QueryRepos($filter: RepoFilter!) {
2321
+ repos(filter: $filter) {
2322
+ results {
2323
+ id
2324
+ name
2325
+ alternateNames
2326
+ creationDate
2327
+ }
2328
+ }
2329
+ }
2330
+ `;
2331
+ exports.UpdateRepo = (0, graphql_tag_1.default) `
2332
+ mutation UpdateRepo($repo: RepoUpdateInput!) {
2333
+ updateRepo(repo: $repo) {
2334
+ id
2335
+ name
2336
+ }
2337
+ }
2338
+ `;
2339
+ exports.CreateSoftware = (0, graphql_tag_1.default) `
2340
+ mutation CreateSoftware($software: SoftwareInput!) {
2341
+ createSoftware(software: $software) {
2342
+ id
2343
+ name
2344
+ }
2345
+ }
2346
+ `;
2347
+ exports.DeleteAllSoftwares = (0, graphql_tag_1.default) `
2348
+ mutation DeleteAllSoftwares($filter: SoftwareFilter!) {
2349
+ deleteAllSoftwares(filter: $filter) {
2350
+ id
2351
+ state
2352
+ }
2353
+ }
2354
+ `;
2355
+ exports.DeleteSoftware = (0, graphql_tag_1.default) `
2356
+ mutation DeleteSoftware($id: ID!) {
2357
+ deleteSoftware(id: $id) {
2358
+ id
2359
+ state
2360
+ }
2361
+ }
2362
+ `;
2363
+ exports.DeleteSoftwares = (0, graphql_tag_1.default) `
2364
+ mutation DeleteSoftwares($ids: [ID!]!) {
2365
+ deleteSoftwares(ids: $ids) {
2366
+ id
2367
+ state
2368
+ }
2369
+ }
2370
+ `;
2371
+ exports.GetSoftware = (0, graphql_tag_1.default) `
2372
+ query GetSoftware($id: ID!) {
2373
+ software(id: $id) {
2374
+ id
2375
+ name
2376
+ alternateNames
2377
+ creationDate
2378
+ releaseDate
2379
+ developer
2380
+ }
2381
+ }
2382
+ `;
2383
+ exports.QuerySoftwares = (0, graphql_tag_1.default) `
2384
+ query QuerySoftwares($filter: SoftwareFilter!) {
2385
+ softwares(filter: $filter) {
2386
+ results {
2387
+ id
2388
+ name
2389
+ alternateNames
2390
+ creationDate
2391
+ releaseDate
2392
+ developer
2393
+ }
2394
+ }
2395
+ }
2396
+ `;
2397
+ exports.UpdateSoftware = (0, graphql_tag_1.default) `
2398
+ mutation UpdateSoftware($software: SoftwareUpdateInput!) {
2399
+ updateSoftware(software: $software) {
2400
+ id
2401
+ name
2402
+ }
2403
+ }
2404
+ `;
1716
2405
  exports.CreateSpecification = (0, graphql_tag_1.default) `
1717
2406
  mutation CreateSpecification($specification: SpecificationInput!) {
1718
2407
  createSpecification(specification: $specification) {