author
int64
658
755k
date
stringdate
2012-06-12 08:34:29
2024-07-22 14:51:21
timezone
int64
-46,800
43.2k
hash
stringlengths
40
40
message
stringlengths
5
490
mods
listlengths
1
16
language
stringclasses
20 values
license
stringclasses
3 values
repo
stringlengths
5
68
original_message
stringlengths
12
491
305,164
28.02.2019 16:38:08
28,800
f3e06be3174635ecdd276c45a8b2ac8f168930d3
Standardize label methods in dashboards
[ { "change_type": "MODIFY", "old_path": "src/wrappers/dashboards.ts", "new_path": "src/wrappers/dashboards.ts", "diff": "@@ -97,7 +97,7 @@ export default class {\nreturn data.cells || [];\n}\n- public async createLabel(dashboardID: string, labelID: string): Promise<ILabel> {\n+ public async addLabel(...
TypeScript
MIT License
influxdata/influxdb-client-js
Standardize label methods in dashboards
305,164
01.03.2019 09:49:30
28,800
1dbe6543033ebced4c31397ca13eebd54bed7a5f
Add getAllByOrgID to dashboards
[ { "change_type": "MODIFY", "old_path": "src/api/api.ts", "new_path": "src/api/api.ts", "diff": "@@ -863,6 +863,32 @@ export interface CreateCell {\nusingView?: string;\n}\n+/**\n+ *\n+ * @export\n+ * @interface CreateDashboardRequest\n+ */\n+export interface CreateDashboardRequest {\n+ /**\n+ * id o...
TypeScript
MIT License
influxdata/influxdb-client-js
Add getAllByOrgID to dashboards
305,164
01.03.2019 11:13:35
28,800
d272bd81b46d3baa937672660d6a5950adf2cb82
Remove unused variable and fix tsconfig to prevent future issues
[ { "change_type": "MODIFY", "old_path": "src/types/index.ts", "new_path": "src/types/index.ts", "diff": "-import {Bucket, Cell, Dashboard, Task} from \"../api\";\n+import {Bucket, Dashboard, Task} from \"../api\";\nimport { Label as APILabel } from \"../api\";\ninterface ILabelProperties {\n" }, ...
TypeScript
MIT License
influxdata/influxdb-client-js
Remove unused variable and fix tsconfig to prevent future issues
305,161
03.03.2019 23:26:29
28,800
947f18be45b8c01226870bbb7dca6ff3c245ee33
Add create from template function to tasks
[ { "change_type": "MODIFY", "old_path": "src/wrappers/labels.ts", "new_path": "src/wrappers/labels.ts", "diff": "@@ -3,7 +3,7 @@ import {ILabel} from \"../types\";\nconst DEFAULT_LABEL_COLOR = \"#326BBA\";\n-interface ILabelProperties {\n+export interface ILabelProperties {\ncolor: string;\ndescripti...
TypeScript
MIT License
influxdata/influxdb-client-js
Add create from template function to tasks
305,168
04.03.2019 15:11:00
28,800
815f1065cc8dbcffdf997ac97c1aa448c23ac8c1
Update users api to include a get call for all users
[ { "change_type": "MODIFY", "old_path": "src/wrappers/users.ts", "new_path": "src/wrappers/users.ts", "diff": "-import { User, UsersApi } from \"../api\";\n+import { User, Users, UsersApi } from \"../api\";\nexport default class {\nprivate service: UsersApi;\n@@ -12,4 +12,10 @@ export default class {...
TypeScript
MIT License
influxdata/influxdb-client-js
Update users api to include a get call for all users
305,161
05.03.2019 11:21:00
28,800
fec9c1b23aa54a76cb708fd72ff074981872e408
Break create task from template function in to smaller chunks
[ { "change_type": "MODIFY", "old_path": "src/wrappers/tasks.ts", "new_path": "src/wrappers/tasks.ts", "diff": "-import {LabelsApi, LogEvent, Run, Task, TasksApi, User} from \"../api\";\n+import {Label, LabelsApi, LogEvent, Run, Task, TasksApi, User} from \"../api\";\nimport {ILabel, ITask} from \"../...
TypeScript
MIT License
influxdata/influxdb-client-js
Break create task from template function in to smaller chunks
305,168
05.03.2019 12:53:10
28,800
243ef537341070715a99e8e1cc678e65d8c4e0ed
Update orgs api to include add members to org
[ { "change_type": "MODIFY", "old_path": "src/wrappers/organizations.ts", "new_path": "src/wrappers/organizations.ts", "diff": "@@ -76,4 +76,13 @@ export default class {\nreturn data;\n}\n+\n+ public async addMember(\n+ id: string,\n+ user: AddResourceMemberRequestBody,\n+ ): Promise<ResourceMember> {...
TypeScript
MIT License
influxdata/influxdb-client-js
Update orgs api to include add members to org
305,161
05.03.2019 14:57:28
28,800
a49c065ea9fdd192af15edc7f5fc9248b583d763
Unify LabelProperty types
[ { "change_type": "MODIFY", "old_path": "src/types/index.ts", "new_path": "src/types/index.ts", "diff": "import {Bucket, Dashboard, Task} from \"../api\";\nimport { Label as APILabel } from \"../api\";\n-interface ILabelProperties {\n+export interface ILabelProperties {\ncolor: string;\ndescription?:...
TypeScript
MIT License
influxdata/influxdb-client-js
Unify LabelProperty types
305,161
05.03.2019 14:59:15
28,800
35811cb4e921e998cdf3e429f92e455ff82356d8
move template types from templates to types folder
[ { "change_type": "MODIFY", "old_path": "src/types/index.ts", "new_path": "src/types/index.ts", "diff": "@@ -32,3 +32,69 @@ type DashboardRequired = {[P in keyof DashboardPicked]-?: DashboardPicked[P]};\nexport interface IDashboard extends DashboardOriginal, DashboardRequired {\nlabels: ILabel[];\n}\...
TypeScript
MIT License
influxdata/influxdb-client-js
move template types from templates to types folder
305,161
05.03.2019 15:18:58
28,800
5b98b6677612c43f436615eb59128d18c5631583
Correct task template instantiation functions
[ { "change_type": "MODIFY", "old_path": "src/wrappers/tasks.ts", "new_path": "src/wrappers/tasks.ts", "diff": "@@ -174,11 +174,13 @@ export default class {\npublic async createFromTemplate(template: ITaskTemplate, orgID: string): Promise<ITask> {\n- if (template.data.type !== TemplateType.Task) {\n+ ...
TypeScript
MIT License
influxdata/influxdb-client-js
Correct task template instantiation functions
305,161
05.03.2019 15:37:20
28,800
6287aba55cad7b3229553e4eb82e05aaa38f8fe8
Add version check to task template instantiator
[ { "change_type": "MODIFY", "old_path": "src/wrappers/tasks.ts", "new_path": "src/wrappers/tasks.ts", "diff": "@@ -176,7 +176,7 @@ export default class {\nconst {content} = template;\n- if (content.data.type !== TemplateType.Task) {\n+ if (content.data.type !== TemplateType.Task || template.meta.vers...
TypeScript
MIT License
influxdata/influxdb-client-js
Add version check to task template instantiator
305,166
04.03.2019 17:10:28
18,000
14cf300764c47590467d363289475f16d353e5f4
fix(wrappers/dash): return IDashaboard in dashboard wrappers
[ { "change_type": "MODIFY", "old_path": "src/wrappers/dashboards.ts", "new_path": "src/wrappers/dashboards.ts", "diff": "@@ -38,19 +38,19 @@ export default class {\nthis.service = new DashboardsApi({basePath});\n}\n- public async get(id: string): Promise<Dashboard> {\n+ public async get(id: string): ...
TypeScript
MIT License
influxdata/influxdb-client-js
fix(wrappers/dash): return IDashaboard in dashboard wrappers
305,161
06.03.2019 14:43:15
28,800
bc2efd53d717cd6030b8d4cd5791a124094d84a9
Prevent duplicating cells when cloning dashboards
[ { "change_type": "MODIFY", "old_path": "src/wrappers/dashboards.ts", "new_path": "src/wrappers/dashboards.ts", "diff": "@@ -150,8 +150,12 @@ export default class {\npublic async clone(dashboardID: string, cloneName: string): Promise<IDashboard | null> {\nconst original = await this.get(dashboardID);...
TypeScript
MIT License
influxdata/influxdb-client-js
Prevent duplicating cells when cloning dashboards
305,165
06.03.2019 18:28:55
28,800
180c72ad608e7e5109b5e4fb4c5e9357be9e1560
Update create from template function names
[ { "change_type": "MODIFY", "old_path": "src/wrappers/dashboards.ts", "new_path": "src/wrappers/dashboards.ts", "diff": "@@ -257,18 +257,24 @@ export default class {\nconst createdDashboard = await this.create({ orgID, name, description });\n- await this.createIncludedLabelsFromTemplate(template, cre...
TypeScript
MIT License
influxdata/influxdb-client-js
Update create from template function names
305,168
07.03.2019 11:51:44
28,800
78f69594fc353900a268317caeab56c01a97c16f
Update orgs wrapper to be able to remove member from org
[ { "change_type": "MODIFY", "old_path": "src/wrappers/organizations.ts", "new_path": "src/wrappers/organizations.ts", "diff": "@@ -85,4 +85,12 @@ export default class {\nreturn data;\n}\n+\n+ public async removeMember(\n+ orgID: string,\n+ userID: string,\n+ ): Promise<Response> {\n+ const { data } =...
TypeScript
MIT License
influxdata/influxdb-client-js
Update orgs wrapper to be able to remove member from org
305,164
07.03.2019 11:56:17
28,800
0254b67aa9dc8176b233b167b65ceb11a74d8065
Add precommit task
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "\"description\": \"Influxdb v2 client\",\n\"main\": \"dist/index.js\",\n\"scripts\": {\n+ \"precommit\": \"npm run vet\",\n\"prepublishOnly\": \"npm run build\",\n\"test\": \"echo \\\"Error: no test specified...
TypeScript
MIT License
influxdata/influxdb-client-js
Add precommit task
305,164
07.03.2019 11:59:19
28,800
7fd193391e4db727c8730a60c7ca4aa32eeb6545
Add husky as dev dependency
[ { "change_type": "MODIFY", "old_path": "package-lock.json", "new_path": "package-lock.json", "diff": "{\n\"name\": \"@influxdata/influx\",\n- \"version\": \"0.2.13\",\n+ \"version\": \"0.2.22\",\n\"lockfileVersion\": 1,\n\"requires\": true,\n\"dependencies\": {\n\"integrity\": \"sha1-Jw8HbFpywC9bZaR...
TypeScript
MIT License
influxdata/influxdb-client-js
Add husky as dev dependency
305,165
07.03.2019 11:28:55
28,800
ade93eb86f9c170af597baa5b777fac51bcd97df
prevent duplicate labels from getting created when creating task from template
[ { "change_type": "MODIFY", "old_path": "src/wrappers/tasks.ts", "new_path": "src/wrappers/tasks.ts", "diff": "import { Label, LabelsApi, LogEvent, Run, Task, TasksApi, User } from \"../api\";\nimport {\nILabel,\n+ ILabelIncluded,\nITask,\nITaskTemplate,\n- ITemplate,\nTemplateType,\n} from \"../type...
TypeScript
MIT License
influxdata/influxdb-client-js
prevent duplicate labels from getting created when creating task from template
305,165
07.03.2019 12:39:02
28,800
7f64060bcc3132e6abccdf5c0fe1407ad3808a2e
prevent duplicate labels from getting created when creating dashboardls from template
[ { "change_type": "MODIFY", "old_path": "src/wrappers/dashboards.ts", "new_path": "src/wrappers/dashboards.ts", "diff": "@@ -294,7 +294,7 @@ export default class {\nconst includedResources = content.included || [];\n- const labelsToCreate = includedResources.reduce((acc, ir) => {\n+ const labelsInclu...
TypeScript
MIT License
influxdata/influxdb-client-js
prevent duplicate labels from getting created when creating dashboardls from template
305,165
07.03.2019 14:41:06
28,800
d8549f98a0fe6c1960989f016d654ea16b627f1f
Update tasks label and create from template to be consistent with dashboard's
[ { "change_type": "MODIFY", "old_path": "src/wrappers/dashboards.ts", "new_path": "src/wrappers/dashboards.ts", "diff": "@@ -161,7 +161,7 @@ export default class {\n);\nif (!data.label) {\n- throw new Error(\"Failed to create label\");\n+ throw new Error(\"Failed to add label\");\n}\nreturn addLabelD...
TypeScript
MIT License
influxdata/influxdb-client-js
Update tasks label and create from template to be consistent with dashboard's
305,164
07.03.2019 15:31:33
28,800
474fdb3d50b0a9d2679912ca6a9dab86fbbabe39
Clean up creating labels from dashboard templates
[ { "change_type": "MODIFY", "old_path": "src/types/index.ts", "new_path": "src/types/index.ts", "diff": "@@ -151,7 +151,7 @@ interface IDashboardTemplateData extends ITemplateData {\n};\n}\n-type IDashboardTemplateIncluded =\n+export type IDashboardTemplateIncluded =\n| ICellIncluded\n| IViewIncluded...
TypeScript
MIT License
influxdata/influxdb-client-js
Clean up creating labels from dashboard templates Co-authored-by: Iris Scholten <ischolten.is@gmail.com>
305,164
07.03.2019 15:49:50
28,800
31704c36251c0cd17061d0942b457dae54d70a7f
Clean up label creation from task templates
[ { "change_type": "MODIFY", "old_path": "src/wrappers/dashboards.ts", "new_path": "src/wrappers/dashboards.ts", "diff": "@@ -281,13 +281,13 @@ export default class {\nthrow new Error(\"Can not add labels to undefined Dashboard\");\n}\n- const { content: {data: {relationships}, included} } = template;...
TypeScript
MIT License
influxdata/influxdb-client-js
Clean up label creation from task templates Co-authored-by: Iris Scholten <ischolten.is@gmail.com>
305,165
07.03.2019 16:20:02
28,800
7e0f70c92453adc1955150d6ecc0807165fcad43
Update tasks removeLabels to take labelIDs instead of labels array
[ { "change_type": "MODIFY", "old_path": "src/wrappers/tasks.ts", "new_path": "src/wrappers/tasks.ts", "diff": "@@ -132,8 +132,8 @@ export default class {\nreturn Promise.all(promises);\n}\n- public removeLabels(taskID: string, labels: ILabel[]): Promise<Response[]> {\n- const promises = labels.map((l...
TypeScript
MIT License
influxdata/influxdb-client-js
Update tasks removeLabels to take labelIDs instead of labels array
305,165
08.03.2019 10:01:16
28,800
c0ce1717543818308630ba42bd50128ec3c6105a
Fix error in create cell from template in dashboards
[ { "change_type": "MODIFY", "old_path": "src/wrappers/dashboards.ts", "new_path": "src/wrappers/dashboards.ts", "diff": "@@ -356,8 +356,8 @@ export default class {\n}, [] as ICellIncluded[]);\nconst pendingCells = cellsToCreate.map((c) => {\n- const { attributes: { name, x, y, w, h } } = c;\n- return...
TypeScript
MIT License
influxdata/influxdb-client-js
Fix error in create cell from template in dashboards
305,165
08.03.2019 16:05:47
28,800
4be6710f08e5f6d1e47eafffc4f9e2c0ba4e413c
fix add existing label when creating from templates
[ { "change_type": "MODIFY", "old_path": "package-lock.json", "new_path": "package-lock.json", "diff": "{\n\"name\": \"@influxdata/influx\",\n- \"version\": \"0.2.31\",\n+ \"version\": \"0.2.32\",\n\"lockfileVersion\": 1,\n\"requires\": true,\n\"dependencies\": {\n" }, { "change_type": "MODIFY...
TypeScript
MIT License
influxdata/influxdb-client-js
fix add existing label when creating from templates
305,161
11.03.2019 12:42:48
25,200
b0a23e0a28b4ea5f4831c1d40dff3c6a273372f8
Create wrapper for templates api
[ { "change_type": "MODIFY", "old_path": "src/api/api.ts", "new_path": "src/api/api.ts", "diff": "@@ -491,23 +491,35 @@ export interface Bucket {\n*/\nexport interface BucketLinks {\n/**\n- *\n+ * URI of resource.\n* @type {string}\n* @memberof BucketLinks\n*/\nself?: string;\n/**\n- *\n+ * URI of res...
TypeScript
MIT License
influxdata/influxdb-client-js
Create wrapper for templates api
305,166
07.03.2019 13:03:05
18,000
90ea7bba8e706b82764c7c296f0fb89d16ccb8d4
fix(wrappers/telegrafs): ensure labels for telegrafs
[ { "change_type": "MODIFY", "old_path": "src/types/index.ts", "new_path": "src/types/index.ts", "diff": "-import {Bucket, Cell, Dashboard, Task, View} from '../api'\n+import {Bucket, Cell, Dashboard, Task, Telegraf, View} from '../api'\nimport {Label as APILabel} from '../api'\nexport interface ILabe...
TypeScript
MIT License
influxdata/influxdb-client-js
fix(wrappers/telegrafs): ensure labels for telegrafs
305,161
12.03.2019 16:10:46
25,200
eb2a98d36c1494fd19669a070a369cc121181132
Fix return type of dashboards get all byorgID
[ { "change_type": "MODIFY", "old_path": "src/wrappers/dashboards.ts", "new_path": "src/wrappers/dashboards.ts", "diff": "@@ -66,7 +66,7 @@ export default class {\nreturn addDefaultsToAll(data.dashboards || [])\n}\n- public async getAllByOrgID(orgID: string): Promise<Dashboard[]> {\n+ public async get...
TypeScript
MIT License
influxdata/influxdb-client-js
Fix return type of dashboards get all byorgID
305,164
12.03.2019 16:57:34
25,200
da5a0ed8e5420c8400514fd5c66bed02b38a1fcc
Make release-patch script
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "\"tsc\": \"tsc -p ./tsconfig.json --noEmit --pretty\",\n\"eslint\": \"eslint 'src/**/*.ts'\",\n\"eslint:fix\": \"eslint --fix 'src/**/*.ts'\",\n- \"release\": \"release-it minor --git.tagName 'Bump version ${...
TypeScript
MIT License
influxdata/influxdb-client-js
Make release-patch script
305,164
12.03.2019 17:02:30
25,200
9e98d96bbc36c0df92b2300e7b4b891575623b66
Use simple release tag name
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "\"tsc\": \"tsc -p ./tsconfig.json --noEmit --pretty\",\n\"eslint\": \"eslint 'src/**/*.ts'\",\n\"eslint:fix\": \"eslint --fix 'src/**/*.ts'\",\n- \"release-patch\": \"release-it patch --git.tagName='Bump vers...
TypeScript
MIT License
influxdata/influxdb-client-js
Use simple release tag name
305,161
14.03.2019 12:37:46
25,200
498c41fa6ec8e4f114228bf10b08ac0cdc835c51
Add required types to Document
[ { "change_type": "MODIFY", "old_path": "src/api/api.ts", "new_path": "src/api/api.ts", "diff": "@@ -1178,25 +1178,25 @@ export interface Document {\n* @type {string}\n* @memberof Document\n*/\n- id?: string;\n+ id: string;\n/**\n*\n* @type {DocumentMeta}\n* @memberof Document\n*/\n- meta?: DocumentM...
TypeScript
MIT License
influxdata/influxdb-client-js
Add required types to Document
305,161
14.03.2019 12:56:49
25,200
73d6095cc9846f707bd04f0ee53c6ee0640b397f
Convert documents to template before returning
[ { "change_type": "MODIFY", "old_path": "src/types/index.ts", "new_path": "src/types/index.ts", "diff": "-import {Bucket, Cell, Dashboard, Task, Telegraf, View} from '../api'\n+import {Bucket, Cell, Dashboard, Task, Telegraf, View, Document} from '../api'\nimport {Label as APILabel} from '../api'\nex...
TypeScript
MIT License
influxdata/influxdb-client-js
Convert documents to template before returning
305,161
15.03.2019 13:29:27
25,200
a80af38e9936d75475f7e126134730b2d525f9c4
Clean up template types
[ { "change_type": "MODIFY", "old_path": "src/types/index.ts", "new_path": "src/types/index.ts", "diff": "@@ -52,51 +52,31 @@ interface IKeyValuePairs {\n[key: string]: any\n}\n-export interface ITemplate extends Document {\n- content: ITemplateContent\n+// Templates\n+interface ITemplateBase extends ...
TypeScript
MIT License
influxdata/influxdb-client-js
Clean up template types
305,165
13.03.2019 16:14:30
25,200
aea4bd46d1ce6f29b2e7f976230217704632f73d
Regenerate client code and update types
[ { "change_type": "MODIFY", "old_path": "src/api/api.ts", "new_path": "src/api/api.ts", "diff": "@@ -495,31 +495,43 @@ export interface BucketLinks {\n* @type {string}\n* @memberof BucketLinks\n*/\n- self?: string;\n+ labels?: string;\n/**\n* URI of resource.\n* @type {string}\n* @memberof BucketLink...
TypeScript
MIT License
influxdata/influxdb-client-js
Regenerate client code and update types
305,172
18.03.2019 11:47:22
25,200
6f8fedf085875249a21e78669d39d3d1ecb51c57
feat(labels): update label name
[ { "change_type": "MODIFY", "old_path": "package-lock.json", "new_path": "package-lock.json", "diff": "{\n\"name\": \"@influxdata/influx\",\n- \"version\": \"0.2.37\",\n+ \"version\": \"0.2.42\",\n\"lockfileVersion\": 1,\n\"requires\": true,\n\"dependencies\": {\n" }, { "change_type": "MODIFY...
TypeScript
MIT License
influxdata/influxdb-client-js
feat(labels): update label name
305,172
18.03.2019 14:07:54
25,200
53457befb1cdf461b247318fb177eebac5a6604c
chore: change update to match task update pattern
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "{\n\"name\": \"@influxdata/influx\",\n- \"version\": \"0.2.43\",\n+ \"version\": \"0.2.42\",\n\"description\": \"Influxdb v2 client\",\n\"main\": \"dist/index.js\",\n\"scripts\": {\n" }, { "change_typ...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: change update to match task update pattern
305,161
18.03.2019 15:43:15
25,200
f456aabc445de8f539be8e9ed580cc747d81b2ab
Add TemplateSummary type, and defaults
[ { "change_type": "MODIFY", "old_path": "src/types/index.ts", "new_path": "src/types/index.ts", "diff": "import {Bucket, Cell, Dashboard, Task, Telegraf, View, Document} from '../api'\n-import {Label as APILabel} from '../api'\n+import {Label as APILabel, DocumentListEntry} from '../api'\ninterface K...
TypeScript
MIT License
influxdata/influxdb-client-js
Add TemplateSummary type, and defaults
305,161
18.03.2019 17:33:55
25,200
a542022279ec261ded1abba16763fa870b22aa26
Add guaranteed labels parameter to templates
[ { "change_type": "MODIFY", "old_path": "src/api/api.ts", "new_path": "src/api/api.ts", "diff": "@@ -1202,7 +1202,7 @@ export interface Document {\n* @type {Array<Label>}\n* @memberof Document\n*/\n- labels: Array<Label>;\n+ labels?: Array<Label>;\n}\n/**\n@@ -1266,7 +1266,7 @@ export interface Docum...
TypeScript
MIT License
influxdata/influxdb-client-js
Add guaranteed labels parameter to templates
305,164
19.03.2019 11:13:50
25,200
6e9db81f079b8195bc2b4b6652997bd6f6ea0066
Update api for required orgID on labels
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "\"description\": \"Influxdb v2 client\",\n\"main\": \"dist/index.js\",\n\"scripts\": {\n- \"precommit\": \"npm run vet\",\n\"prepublishOnly\": \"npm run build\",\n\"test\": \"echo \\\"Error: no test specified...
TypeScript
MIT License
influxdata/influxdb-client-js
Update api for required orgID on labels
305,161
20.03.2019 13:44:22
25,200
79d31d7134f1af792354006df8aaac19b571e1dd
Add variable type to dashboard template
[ { "change_type": "MODIFY", "old_path": "src/types/index.ts", "new_path": "src/types/index.ts", "diff": "-import {Bucket, Cell, Dashboard, Task, Telegraf, View, Document} from '../api'\n+import {\n+ Bucket,\n+ Cell,\n+ Dashboard,\n+ Task,\n+ Telegraf,\n+ View,\n+ Document,\n+ Variable,\n+} from '../a...
TypeScript
MIT License
influxdata/influxdb-client-js
Add variable type to dashboard template
305,164
21.03.2019 14:49:26
25,200
1c73ab8326ef951a4bcaf397e03e5eb878f3aec7
Add wrapper method to create authorizations
[ { "change_type": "MODIFY", "old_path": "src/wrappers/authorizations.ts", "new_path": "src/wrappers/authorizations.ts", "diff": "@@ -39,6 +39,12 @@ export default class {\nreturn authorizations || []\n}\n+ public async create(auth: Authorization): Promise<Authorization> {\n+ const {data} = await this...
TypeScript
MIT License
influxdata/influxdb-client-js
Add wrapper method to create authorizations
305,161
21.03.2019 15:24:21
25,200
81adc6b9f27139c4e16ecabff61df38517f20fb1
Add create all function to labels
[ { "change_type": "MODIFY", "old_path": "src/wrappers/labels.ts", "new_path": "src/wrappers/labels.ts", "diff": "@@ -57,6 +57,17 @@ export default class {\nreturn addLabelDefaults(label)\n}\n+ public async createAll(\n+ labels: {\n+ orgID: string\n+ name: string\n+ properties: ILabelProperties\n+ }[]...
TypeScript
MIT License
influxdata/influxdb-client-js
Add create all function to labels
305,161
21.03.2019 16:03:30
25,200
96b9ddaf96e2dc2e1481aa8208f157bf0827e022
Add create all function for variables
[ { "change_type": "MODIFY", "old_path": "src/wrappers/variables.ts", "new_path": "src/wrappers/variables.ts", "diff": "@@ -45,6 +45,11 @@ export default class {\nreturn data\n}\n+ public async createAll(variables: Variable[]): Promise<Variable[]> {\n+ const pendingVariables = variables.map(v => this....
TypeScript
MIT License
influxdata/influxdb-client-js
Add create all function for variables
305,164
25.03.2019 09:53:54
25,200
d3c8da58617238f894673a4a6b2ba9bdd2015510
Introduce sagas for transactions Implement for labels createAll
[ { "change_type": "ADD", "old_path": null, "new_path": "src/utils/sagas.ts", "diff": "+interface Saga<T> {\n+ action: () => Promise<T>\n+ rollback: (result?: T) => Promise<void>\n+ result?: T\n+}\n+\n+async function rollback<T>(index: number, sagas: Saga<T>[]) {\n+ for (let i = index; i >= 0; i--) {\...
TypeScript
MIT License
influxdata/influxdb-client-js
Introduce sagas for transactions - Implement for labels createAll
305,168
25.03.2019 15:46:07
25,200
5fc458c37128fb125f26a1559eb13837cee86eb1
Update templates wrapper with delete api call
[ { "change_type": "MODIFY", "old_path": "src/api/api.ts", "new_path": "src/api/api.ts", "diff": "@@ -1654,26 +1654,6 @@ export interface IndexExpression {\nindex?: Expression;\n}\n-/**\n- *\n- * @export\n- * @interface InlineResponse200\n- */\n-export interface InlineResponse200 {\n- /**\n- *\n- * @t...
TypeScript
MIT License
influxdata/influxdb-client-js
Update templates wrapper with delete api call
305,166
26.03.2019 11:25:17
14,400
a1ec4520ff219bab0e8a596d96dd624e9455e7eb
rm(wrappers/tasks/createFromTemplate): prefer wrapping calls in UI
[ { "change_type": "MODIFY", "old_path": "src/wrappers/tasks.ts", "new_path": "src/wrappers/tasks.ts", "diff": "-import {Label, LabelsApi, LogEvent, Run, Task, TasksApi, User} from '../api'\n-import {\n- ILabel,\n- ILabelIncluded,\n- ITask,\n- ITaskTemplate,\n- TemplateType,\n-} from '../types'\n+impo...
TypeScript
MIT License
influxdata/influxdb-client-js
rm(wrappers/tasks/createFromTemplate): prefer wrapping calls in UI
305,161
26.03.2019 11:33:52
25,200
4cd2b6cfdca81e6cfcc8a60b53ee089bc6769a8f
Remove templating methods from dashboards
[ { "change_type": "MODIFY", "old_path": "src/wrappers/dashboards.ts", "new_path": "src/wrappers/dashboards.ts", "diff": "@@ -4,20 +4,10 @@ import {\nCreateDashboardRequest,\nDashboard,\nDashboardsApi,\n- Label,\n- LabelsApi,\nProtosApi,\nView,\n} from '../api'\n-import {\n- ICellIncluded,\n- IDashboa...
TypeScript
MIT License
influxdata/influxdb-client-js
Remove templating methods from dashboards
305,168
26.03.2019 11:09:18
25,200
9772dca424b39ce2c1841b32f8433b9aad554bd8
Update templates wrapper for cloning a template
[ { "change_type": "MODIFY", "old_path": "src/wrappers/templates.ts", "new_path": "src/wrappers/templates.ts", "diff": "@@ -57,4 +57,28 @@ export default class {\nreturn data\n}\n+\n+ public async clone(templateID: string): Promise<ITemplate> {\n+ const {data} = await this.service.documentsTemplatesTe...
TypeScript
MIT License
influxdata/influxdb-client-js
Update templates wrapper for cloning a template
305,168
26.03.2019 13:21:10
25,200
0c4b9b1d4eda7b53773aa842a4000ab61a5dd8d1
Update templates wrapper clone function to include org
[ { "change_type": "MODIFY", "old_path": "src/wrappers/templates.ts", "new_path": "src/wrappers/templates.ts", "diff": "@@ -58,20 +58,26 @@ export default class {\nreturn data\n}\n- public async clone(templateID: string): Promise<ITemplate> {\n+ public async clone(templateID: string, orgID: string): P...
TypeScript
MIT License
influxdata/influxdb-client-js
Update templates wrapper clone function to include org
305,169
26.03.2019 11:04:06
25,200
3f3ac271ffd92594a66abd365696dae5d74f27d5
Add wrapper for updating a Template
[ { "change_type": "MODIFY", "old_path": "package-lock.json", "new_path": "package-lock.json", "diff": "{\n\"name\": \"@influxdata/influx\",\n- \"version\": \"0.2.42\",\n+ \"version\": \"0.2.52\",\n\"lockfileVersion\": 1,\n\"requires\": true,\n\"dependencies\": {\n" }, { "change_type": "MODIFY...
TypeScript
MIT License
influxdata/influxdb-client-js
Add wrapper for updating a Template
305,164
28.03.2019 11:23:00
25,200
572a9ba40e8292aa721cc570be2c3b42ce962305
Add get to users wrapper fix getAll to follow standard format
[ { "change_type": "MODIFY", "old_path": "src/wrappers/users.ts", "new_path": "src/wrappers/users.ts", "diff": "-import {User, Users, UsersApi} from '../api'\n+import {User, UsersApi} from '../api'\nexport default class {\nprivate service: UsersApi\n@@ -13,9 +13,15 @@ export default class {\nreturn da...
TypeScript
MIT License
influxdata/influxdb-client-js
Add get to users wrapper - fix getAll to follow standard format
305,168
01.04.2019 12:25:23
25,200
bcea6868eaa33ebe0bb3b6e3125ab1d3471d32c9
Update telegraf and dashboard labels to remove multiple
[ { "change_type": "MODIFY", "old_path": "src/wrappers/dashboards.ts", "new_path": "src/wrappers/dashboards.ts", "diff": "@@ -182,6 +182,15 @@ export default class {\nreturn data\n}\n+ public removeLabels(\n+ dashboardID: string,\n+ labelIDs: string[]\n+ ): Promise<Response[]> {\n+ const promises = la...
TypeScript
MIT License
influxdata/influxdb-client-js
Update telegraf and dashboard labels to remove multiple
305,168
01.04.2019 13:35:27
25,200
5ef19bbdb725619e2e16ce4f73460f786bb25c83
Update the telegraf and dashboards addLabels to include saga pattern
[ { "change_type": "MODIFY", "old_path": "src/wrappers/dashboards.ts", "new_path": "src/wrappers/dashboards.ts", "diff": "@@ -9,6 +9,7 @@ import {\n} from '../api'\nimport {IDashboard, ILabel} from '../types'\nimport {addLabelDefaults} from './labels'\n+import saga from '../utils/sagas'\nconst addDefa...
TypeScript
MIT License
influxdata/influxdb-client-js
Update the telegraf and dashboards addLabels to include saga pattern
305,161
01.04.2019 16:10:57
25,200
123a3d373529f191c55ac8faaf5d239be0239860
Add createBucket type and optional orgID to getAll
[ { "change_type": "MODIFY", "old_path": "src/wrappers/buckets.ts", "new_path": "src/wrappers/buckets.ts", "diff": "@@ -2,6 +2,11 @@ import {Bucket, BucketsApi} from '../api'\nimport {IBucket} from '../types'\nimport {addLabelDefaults} from './labels'\n+type BucketPicked = Pick<Bucket, 'organizationID...
TypeScript
MIT License
influxdata/influxdb-client-js
Add createBucket type and optional orgID to getAll
305,161
01.04.2019 16:27:21
25,200
0570b5a26dfd28bcd0fc7e12f18c8ae1f43ec794
Add getAll with optional orgID to variables
[ { "change_type": "MODIFY", "old_path": "src/wrappers/variables.ts", "new_path": "src/wrappers/variables.ts", "diff": "@@ -31,10 +31,10 @@ export default class {\nreturn variables || []\n}\n- public async getAll(): Promise<Variable[]> {\n+ public async getAll(orgID?: string): Promise<Variable[]> {\nc...
TypeScript
MIT License
influxdata/influxdb-client-js
Add getAll with optional orgID to variables
305,168
02.04.2019 14:08:55
25,200
cea27d57b1ca9dbfe4ee17311449a1c03a3de50c
Update variables to contain add/remove variables
[ { "change_type": "MODIFY", "old_path": "src/api/api.ts", "new_path": "src/api/api.ts", "diff": "@@ -2136,10 +2136,10 @@ export interface MapVariableProperties {\ntype?: MapVariableProperties.TypeEnum;\n/**\n*\n- * @type {any}\n+ * @type {{ [key: string]: string; }}\n* @memberof MapVariableProperties...
TypeScript
MIT License
influxdata/influxdb-client-js
Update variables to contain add/remove variables
305,166
03.04.2019 11:38:05
14,400
5550abe6abb10a00c76a7915fdd811d926158bcf
fix(wrapper/variable.labels): ensure defaults and labels
[ { "change_type": "MODIFY", "old_path": "src/types/index.ts", "new_path": "src/types/index.ts", "diff": "@@ -42,6 +42,10 @@ export interface ITelegraf extends Telegraf {\nlabels: ILabel[]\n}\n+export interface IVariable extends Variable {\n+ labels: ILabel[]\n+}\n+\ntype DashboardPicked = Pick<Dashbo...
TypeScript
MIT License
influxdata/influxdb-client-js
fix(wrapper/variable.labels): ensure defaults and labels
305,166
03.04.2019 12:03:18
14,400
cf9ac70fa76b88c8785158428a24193704454bfa
fix(wrappers/template.labels): require labels array
[ { "change_type": "MODIFY", "old_path": "src/types/index.ts", "new_path": "src/types/index.ts", "diff": "@@ -69,7 +69,7 @@ interface IKeyValuePairs {\n// Templates\ninterface ITemplateBase extends Document {\ncontent: {data: ITemplateData; included: ITemplateIncluded[]}\n- labels?: ILabel[]\n+ labels...
TypeScript
MIT License
influxdata/influxdb-client-js
fix(wrappers/template.labels): require labels array
305,165
03.04.2019 11:00:27
25,200
c194427d547f5d0c5815da7034ae9927428dde34
Add optional orgID to dashboards getAll
[ { "change_type": "MODIFY", "old_path": "src/wrappers/dashboards.ts", "new_path": "src/wrappers/dashboards.ts", "diff": "@@ -43,19 +43,7 @@ export default class {\nreturn addDefaults(data)\n}\n- public async getAll(): Promise<IDashboard[]> {\n- const {data} = await this.service.dashboardsGet(undefine...
TypeScript
MIT License
influxdata/influxdb-client-js
Add optional orgID to dashboards getAll
305,166
03.04.2019 21:13:01
14,400
85c9df22cb5a892c0aafd8145ed40c86a7bf6e7a
fix(wrappers/vars.getall): return IVar array
[ { "change_type": "MODIFY", "old_path": "src/wrappers/variables.ts", "new_path": "src/wrappers/variables.ts", "diff": "@@ -44,7 +44,7 @@ export default class {\nreturn (variables || []).map(v => addDefaults(v))\n}\n- public async getAll(orgID?: string): Promise<Variable[]> {\n+ public async getAll(or...
TypeScript
MIT License
influxdata/influxdb-client-js
fix(wrappers/vars.getall): return IVar array
305,164
04.04.2019 10:55:24
25,200
7e2ce5cb2be398a0966de8fb7c7e89b02371d9ab
Update client from swagger Remove protos Add orgIDs to getALL
[ { "change_type": "MODIFY", "old_path": "src/api/api.ts", "new_path": "src/api/api.ts", "diff": "@@ -902,20 +902,6 @@ export interface CreateDashboardRequest {\ndescription?: string;\n}\n-/**\n- *\n- * @export\n- * @interface CreateProtoResourcesRequest\n- */\n-export interface CreateProtoResourcesRe...
TypeScript
MIT License
influxdata/influxdb-client-js
Update client from swagger - Remove protos - Add orgIDs to getALL
305,161
05.04.2019 14:22:57
25,200
4ab67a3e238dc479fa6fef1bf384b7618b8b30bc
add orgID to templates getAll
[ { "change_type": "MODIFY", "old_path": "src/api/api.ts", "new_path": "src/api/api.ts", "diff": "@@ -19185,16 +19185,13 @@ export const TemplatesApiAxiosParamCreator = function (configuration?: Configura\nreturn {\n/**\n*\n- * @param {string} org specifies the name of the organization of the template...
TypeScript
MIT License
influxdata/influxdb-client-js
add orgID to templates getAll
305,172
08.04.2019 15:31:02
25,200
9a3111fca617bf3c19aa4904cd47a197b7d59ea9
chore(dashboards): clone takes an orgID
[ { "change_type": "MODIFY", "old_path": "dist/wrappers/dashboards.d.ts", "new_path": "dist/wrappers/dashboards.d.ts", "diff": "@@ -19,7 +19,7 @@ export default class {\nremoveLabels(dashboardID: string, labelIDs: string[]): Promise<Response[]>;\ngetView(dashboardID: string, cellID: string): Promise<V...
TypeScript
MIT License
influxdata/influxdb-client-js
chore(dashboards): clone takes an orgID
305,166
10.04.2019 15:53:21
14,400
e105b07e72f40c8a48557f193f2f91a404a79bf5
fix(types/template): add variabletemplate
[ { "change_type": "MODIFY", "old_path": "dist/types/index.d.ts", "new_path": "dist/types/index.d.ts", "diff": "@@ -108,6 +108,7 @@ export interface IVariableIncluded extends ITemplateIncluded {\n}\nexport declare type ITaskTemplateIncluded = ILabelIncluded;\nexport declare type IDashboardTemplateIncl...
TypeScript
MIT License
influxdata/influxdb-client-js
fix(types/template): add variabletemplate
305,161
12.04.2019 17:18:39
25,200
e18eca8e3510d7372919d105a81b97ae069208d1
Add orgID to tasks getAll
[ { "change_type": "MODIFY", "old_path": "dist/wrappers/tasks.d.ts", "new_path": "dist/wrappers/tasks.d.ts", "diff": "@@ -6,9 +6,8 @@ export default class {\ncreate(org: string, script: string): Promise<ITask>;\ncreateByOrgID(orgID: string, script: string): Promise<ITask>;\nget(id: string): Promise<IT...
TypeScript
MIT License
influxdata/influxdb-client-js
Add orgID to tasks getAll
305,161
15.04.2019 10:36:31
25,200
2000c7d03889c447a3c97a57191b32f5fa684fba
Add orgID parameter to getAll authorizations
[ { "change_type": "MODIFY", "old_path": "dist/api/api.d.ts", "new_path": "dist/api/api.d.ts", "diff": "@@ -1445,28 +1445,28 @@ export declare const AuthorizationsApiAxiosParamCreator: (configuration?: Config\nauthorizationsAuthIDDelete(authID: string, zapTraceSpan?: string | undefined, options?: any)...
TypeScript
MIT License
influxdata/influxdb-client-js
Add orgID parameter to getAll authorizations
305,164
18.04.2019 16:07:21
25,200
e12edf42cbc143e0d926945dd881ad5a4ebf2e6b
Add initial implementation of streaming queries
[ { "change_type": "ADD", "old_path": null, "new_path": "dist/utils/platform.d.ts", "diff": "+export declare const isInBrowser: () => boolean;\n" }, { "change_type": "ADD", "old_path": null, "new_path": "dist/utils/platform.js", "diff": "+\"use strict\";\n+Object.defineProperty(exp...
TypeScript
MIT License
influxdata/influxdb-client-js
Add initial implementation of streaming queries
305,164
19.04.2019 11:36:41
25,200
8e0581aed968967506ecb18f229f72d9dda519fd
Expose query execution to client
[ { "change_type": "MODIFY", "old_path": "dist/wrappers/queries.d.ts", "new_path": "dist/wrappers/queries.d.ts", "diff": "import { Package } from '../api';\nimport { ServiceOptions } from '../types';\n+import { Stream } from 'stream';\nexport default class {\nprivate service;\n+ private basePath;\n+ p...
TypeScript
MIT License
influxdata/influxdb-client-js
Expose query execution to client
305,164
19.04.2019 13:57:56
25,200
39bec174ffade9426634991546291cd2fb508090
Fix File type used for query
[ { "change_type": "MODIFY", "old_path": "dist/utils/request/browser.d.ts", "new_path": "dist/utils/request/browser.d.ts", "diff": "-import { ServiceOptions } from '../../types';\n+import { ServiceOptions, File } from '../../types';\nimport { Stream } from 'stream';\nexport declare class CancellationE...
TypeScript
MIT License
influxdata/influxdb-client-js
Fix File type used for query
305,164
19.04.2019 14:27:05
25,200
738a35047336964d1337ef7b1e1e2a86d6407739
Fix request imports
[ { "change_type": "MODIFY", "old_path": "dist/utils/request/browser.d.ts", "new_path": "dist/utils/request/browser.d.ts", "diff": "@@ -2,7 +2,7 @@ import { ServiceOptions, File } from '../../types';\nimport { Stream } from 'stream';\nexport declare class CancellationError extends Error {\n}\n-export ...
TypeScript
MIT License
influxdata/influxdb-client-js
Fix request imports
305,164
19.04.2019 14:51:46
25,200
e769ca3777f9cdabe672bd2b523de776d04f28ac
Fix browser request url
[ { "change_type": "MODIFY", "old_path": "dist/utils/request/browser.js", "new_path": "dist/utils/request/browser.js", "diff": "@@ -65,7 +65,7 @@ function default_1(orgID, basePath, baseOptions, query, extern) {\nxhr.onerror = handleError;\nvar dialect = { annotations: ['group', 'datatype', 'default']...
TypeScript
MIT License
influxdata/influxdb-client-js
Fix browser request url
305,164
22.04.2019 14:42:40
25,200
35846372ad32653268056405dae1fa5b0586e4fe
Return status code for queries that error
[ { "change_type": "MODIFY", "old_path": "dist/index.js", "new_path": "dist/index.js", "diff": "@@ -40,7 +40,7 @@ var Client = (function () {\nfunction Client(basePath, token) {\nvar options = {};\nif (token) {\n- options = __assign({}, options, { headers: { Authorization: \"token \" + token } });\n+ ...
TypeScript
MIT License
influxdata/influxdb-client-js
Return status code for queries that error
305,164
24.04.2019 11:01:13
25,200
477f91630ca10e9866c6a4f2fbb7eeab5c54c436
Standardize write api to use orgID
[ { "change_type": "MODIFY", "old_path": "dist/wrappers/write.d.ts", "new_path": "dist/wrappers/write.d.ts", "diff": "@@ -8,6 +8,6 @@ export default class {\nprivate serviceOptions;\nconstructor(basePath: string, baseOptions: ServiceOptions);\nreadonly WritePrecision: typeof WritePrecision;\n- create(...
TypeScript
MIT License
influxdata/influxdb-client-js
Standardize write api to use orgID
305,164
24.04.2019 13:11:08
25,200
e8856631bb5215869df4291a18e918b7d7cc0b4d
Initial documentation write query
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "This library is a work in progress and should not be considered production ready pre v1.0\n+## Usage\n+\n+Initializing the client\n+\n+```typescript\n+\n+import Client from '@influxdata/influx'\n+\n+const client = ...
TypeScript
MIT License
influxdata/influxdb-client-js
Initial documentation - write - query
305,164
24.04.2019 13:17:03
25,200
41ac49e4f64554e93ad2f3f607168c10f722ac35
Exclude examples from compilation
[ { "change_type": "DELETE", "old_path": "dist/examples/query.d.ts", "new_path": null, "diff": "-export {};\n" }, { "change_type": "DELETE", "old_path": "dist/examples/query.js", "new_path": null, "diff": "-\"use strict\";\n-var __importDefault = (this && this.__importDefault) || f...
TypeScript
MIT License
influxdata/influxdb-client-js
Exclude examples from compilation
305,164
24.04.2019 16:03:22
25,200
0b53f132e78f2b3ca26cb819bbecf6e44f937e16
Emit full error if query fails
[ { "change_type": "MODIFY", "old_path": "dist/utils/request/browser.js", "new_path": "dist/utils/request/browser.js", "diff": "@@ -50,8 +50,9 @@ function default_1(orgID, basePath, baseOptions, query, extern) {\nbodyError = xhr.responseText;\n}\n}\n- bodyError.status = xhr.status;\n- out.emit('error'...
TypeScript
MIT License
influxdata/influxdb-client-js
Emit full error if query fails
305,174
07.05.2019 10:12:49
25,200
d5eb75bbf061875ca1bd4d892647af2c4759ffad
Fix data race in streaming CSV parsing
[ { "change_type": "MODIFY", "old_path": "dist/utils/request/browser.js", "new_path": "dist/utils/request/browser.js", "diff": "@@ -27,21 +27,25 @@ function default_1(orgID, basePath, baseOptions, query, extern) {\nvar out = new stream_1.PassThrough({ encoding: 'utf8' });\nvar fullURL = basePath + \"/...
TypeScript
MIT License
influxdata/influxdb-client-js
Fix data race in streaming CSV parsing
305,164
03.06.2019 10:47:17
25,200
ac0ba3ffcb467e79b91fa0cb9025e6f8dc63d1d7
Update axios dependency
[ { "change_type": "MODIFY", "old_path": "package-lock.json", "new_path": "package-lock.json", "diff": "\"dev\": true\n},\n\"axios\": {\n- \"version\": \"0.18.0\",\n- \"resolved\": \"http://registry.npmjs.org/axios/-/axios-0.18.0.tgz\",\n- \"integrity\": \"sha1-MtU+SFHv3AoRmTts0AB4nXDAUQI=\",\n+ \"ver...
TypeScript
MIT License
influxdata/influxdb-client-js
Update axios dependency
305,174
20.06.2019 10:27:33
25,200
0911a12853c53bbc3e20092d78e6b1cacf377878
Fix cloning templates with labels
[ { "change_type": "MODIFY", "old_path": "dist/wrappers/templates.js", "new_path": "dist/wrappers/templates.js", "diff": "@@ -175,23 +175,21 @@ var default_1 = (function () {\n};\ndefault_1.prototype.clone = function (templateID, orgID) {\nreturn __awaiter(this, void 0, void 0, function () {\n- var da...
TypeScript
MIT License
influxdata/influxdb-client-js
Fix cloning templates with labels
305,168
20.06.2019 14:58:12
25,200
9fb321e6199692b2711fc8b40874553a05d74a9d
Update tasks wrapper's create to include token in post api
[ { "change_type": "MODIFY", "old_path": "dist/wrappers/tasks.d.ts", "new_path": "dist/wrappers/tasks.d.ts", "diff": "@@ -2,10 +2,11 @@ import { LogEvent, Run, Task, User } from '../api';\nimport { ILabel, ITask, ServiceOptions } from '../types';\nexport default class {\nprivate service;\n+ private au...
TypeScript
MIT License
influxdata/influxdb-client-js
Update tasks wrapper's create to include token in post api
305,168
20.06.2019 15:16:45
25,200
f67dc5a78c3f9f940de6ad259fea91ed3eba0dce
Fix initialization for authService in tasks wrapper
[ { "change_type": "MODIFY", "old_path": "dist/wrappers/tasks.js", "new_path": "dist/wrappers/tasks.js", "diff": "@@ -57,6 +57,7 @@ var addDefaultsToAll = function (tasks) {\nvar default_1 = (function () {\nfunction default_1(basePath, baseOptions) {\nthis.service = new api_1.TasksApi({ basePath: base...
TypeScript
MIT License
influxdata/influxdb-client-js
Fix initialization for authService in tasks wrapper
305,174
21.06.2019 14:09:01
25,200
e82fa82ee0aa26e5de8331ce29c095c87148bc0c
Update README.md, publish scripts
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -48,19 +48,27 @@ const response = await client.write.create('orgID', 'bucketID', data)\n```\n-## Development requirements\n+## Development\n+\n+### Requirements\n- OpenJDK 8 or higher\n- Node 10.x or higher\n-##...
TypeScript
MIT License
influxdata/influxdb-client-js
Update README.md, publish scripts
305,174
21.06.2019 14:14:34
25,200
392728df50ca191281dc80fb614d568b669097b8
Tweak publish workflow
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -70,5 +70,5 @@ yarn run generate\n### Releasing a new version\n```\n-yarn version\n+yarn publish --access=public\n```\n" }, { "change_type": "MODIFY", "old_path": "package.json", "new_path": "pac...
TypeScript
MIT License
influxdata/influxdb-client-js
Tweak publish workflow
305,174
03.07.2019 09:40:21
25,200
8c6a13b4dca152415055ee4078d5e617c1a8e08c
Add publishing script
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -69,6 +69,15 @@ yarn run generate\n### Releasing a new version\n+Ensure that:\n+\n+- You have administrator access to this repo on GitHub\n+- You have permissions to publish to the [influxdata](https://www.npmjs...
TypeScript
MIT License
influxdata/influxdb-client-js
Add publishing script
305,161
12.07.2019 14:44:43
25,200
0ab3542b01ba6edd9582468ed7f1ef67b698e0fd
Add oathID to user
[ { "change_type": "MODIFY", "old_path": "src/api/api.ts", "new_path": "src/api/api.ts", "diff": "@@ -6207,6 +6207,12 @@ export interface User {\n* @memberof User\n*/\nid?: string;\n+ /**\n+ *\n+ * @type {string}\n+ * @memberof User\n+ */\n+ oauthID?: string;\n/**\n*\n* @type {string}\n" } ]
TypeScript
MIT License
influxdata/influxdb-client-js
Add oathID to user
305,161
15.07.2019 17:32:21
25,200
6dd928a69e22541175255d54a9a80153f808250d
Add wrappers for checks and notifications
[ { "change_type": "MODIFY", "old_path": "src/index.ts", "new_path": "src/index.ts", "diff": "@@ -19,8 +19,8 @@ export {CancellationError, LargeResponseError} from './utils/errors'\nexport * from './api'\nexport * from './types'\n-// Must locally re-export manually generated ast types to resolve\n-// ...
TypeScript
MIT License
influxdata/influxdb-client-js
Add wrappers for checks and notifications
305,161
16.07.2019 12:21:47
25,200
137477d1eb74766a2732b6ec9ca094a96c0b4139
fix getAll in checks and notifications
[ { "change_type": "MODIFY", "old_path": "src/index.ts", "new_path": "src/index.ts", "diff": "@@ -62,7 +62,13 @@ export {\nVariableAssignment,\n} from './types/ast'\n-export {Check, NotificationRule, ThresholdCheck} from './types/alerts'\n+export {\n+ Check,\n+ NotificationRule,\n+ ThresholdCheck,\n+ ...
TypeScript
MIT License
influxdata/influxdb-client-js
fix getAll in checks and notifications
305,161
17.07.2019 11:17:54
25,200
6c2435d03fd3e96ac50e38c67e69ad6937ebfcac
regenerate after view and type additions to swagger
[ { "change_type": "MODIFY", "old_path": "src/api/api.ts", "new_path": "src/api/api.ts", "diff": "@@ -796,6 +796,12 @@ export interface CheckBase {\n* @memberof CheckBase\n*/\nid?: string;\n+ /**\n+ *\n+ * @type {CheckType}\n+ * @memberof CheckBase\n+ */\n+ type: CheckType;\n/**\n*\n* @type {string}\n...
TypeScript
MIT License
influxdata/influxdb-client-js
regenerate after view and type additions to swagger
305,161
17.07.2019 12:03:15
25,200
0e1e4d980fea46bd6f50cd172721f8598052d9e6
Add view type modifications
[ { "change_type": "MODIFY", "old_path": "src/index.ts", "new_path": "src/index.ts", "diff": "@@ -70,6 +70,33 @@ export {\nNotificationRules,\n} from './types/alerts'\n+export {\n+ View,\n+ ViewProperties,\n+ XYViewProperties,\n+ LinePlusSingleStatProperties,\n+ SingleStatViewProperties,\n+ TableViewP...
TypeScript
MIT License
influxdata/influxdb-client-js
Add view type modifications
305,161
17.07.2019 12:15:54
25,200
467fef3199a498c7ad3ad9e280abf4966f138179
Add new wrappers to client class
[ { "change_type": "MODIFY", "old_path": "src/index.ts", "new_path": "src/index.ts", "diff": "@@ -14,6 +14,8 @@ import Users from './wrappers/users'\nimport Variables from './wrappers/variables'\nimport Write from './wrappers/write'\nimport Templates from './wrappers/templates'\n+import Checks from '....
TypeScript
MIT License
influxdata/influxdb-client-js
Add new wrappers to client class
305,161
17.07.2019 20:24:23
25,200
7bdaf9760947c1391f8028fbad9470eda5d87d87
Release patch versions with ./publish
[ { "change_type": "MODIFY", "old_path": "publish", "new_path": "publish", "diff": "yarn install --frozen-lockfile && \\\nyarn run test && \\\nyarn run build && \\\n- yarn publish --minor --access=public && \\\n+ yarn publish --patch --access=public && \\\ngit push --follow-tags && \\\necho \"Publish ...
TypeScript
MIT License
influxdata/influxdb-client-js
Release patch versions with ./publish
305,161
17.07.2019 20:29:07
25,200
cf7b9c60932b0162ab4c5466bad0fbe6f8094034
generate dashboard query types
[ { "change_type": "MODIFY", "old_path": "src/api/api.ts", "new_path": "src/api/api.ts", "diff": "@@ -350,11 +350,21 @@ export interface Axis {\n*/\nbase?: string;\n/**\n- * Scale is the axis formatting scale. Supported: \\\"log\\\", \\\"linear\\\"\n- * @type {string}\n+ *\n+ * @type {AxisScaleType}\n...
TypeScript
MIT License
influxdata/influxdb-client-js
generate dashboard query types
305,161
22.07.2019 15:20:14
25,200
c4311e25eccd63162a16f2f8f90f4e5cdfce9d7a
Extend alert types to more distinguishable types.
[ { "change_type": "MODIFY", "old_path": "src/index.ts", "new_path": "src/index.ts", "diff": "@@ -67,9 +67,16 @@ export {\nexport {\nCheck,\nNotificationRule,\n- ThresholdCheck,\nChecks,\n+ DeadmanCheck,\n+ ThresholdCheck,\nNotificationRules,\n+ GreaterThresold,\n+ LesserThreshold,\n+ RangeThreshold,\...
TypeScript
MIT License
influxdata/influxdb-client-js
Extend alert types to more distinguishable types.
305,161
22.07.2019 15:46:06
25,200
41bafcd925acdfc67f05c61b0d4d2c45d416861b
Fix type in greaterthreshold
[ { "change_type": "MODIFY", "old_path": "src/index.ts", "new_path": "src/index.ts", "diff": "@@ -71,7 +71,7 @@ export {\nDeadmanCheck,\nThresholdCheck,\nNotificationRules,\n- GreaterThresold,\n+ GreaterThreshold,\nLesserThreshold,\nRangeThreshold,\nSlackNotificationRule,\n" }, { "change_type"...
TypeScript
MIT License
influxdata/influxdb-client-js
Fix type in greaterthreshold
305,161
22.07.2019 15:48:50
25,200
cd61f3d8f0485a399e39177aa21bed86f754e43e
Add checkThreshold type
[ { "change_type": "MODIFY", "old_path": "src/types/alerts.ts", "new_path": "src/types/alerts.ts", "diff": "@@ -25,9 +25,11 @@ export interface RangeThreshold extends RangeThresholdGen {\ntype: ThresholdType.Range\n}\n+export type CheckThreshold = GreaterThreshold | LesserThreshold | RangeThreshold\n+...
TypeScript
MIT License
influxdata/influxdb-client-js
Add checkThreshold type
305,168
06.09.2019 18:20:27
25,200
5ae0cd2452cfc7ce8eb0aae8864bb93ff18915b4
Add bucket type to js client api
[ { "change_type": "MODIFY", "old_path": "src/api/api.ts", "new_path": "src/api/api.ts", "diff": "@@ -477,6 +477,12 @@ export interface Bucket {\n* @memberof Bucket\n*/\nid?: string;\n+ /**\n+ *\n+ * @type {string}\n+ * @memberof Bucket\n+ */\n+ type?: Bucket.TypeEnum;\n/**\n*\n* @type {string}\n@@ -5...
TypeScript
MIT License
influxdata/influxdb-client-js
Add bucket type to js client api
305,159
29.11.2019 22:54:40
-3,600
04ab4881350b6a97388f390be15116ae0545a83f
introduce node transport layer
[ { "change_type": "MODIFY", "old_path": ".eslintrc.json", "new_path": ".eslintrc.json", "diff": "\"plugin:prettier/recommended\",\n\"prettier/@typescript-eslint\"\n],\n- \"rules\": {}\n+ \"rules\": {\n+ \"@typescript-eslint/no-explicit-any\": \"off\",\n+ \"@typescript-eslint/no-unused-vars\": [\n+ \"...
TypeScript
MIT License
influxdata/influxdb-client-js
introduce node transport layer
305,159
02.12.2019 09:34:26
-3,600
404e1b0e4aadf472e58e308e3d8e28433f19433b
allow to cancel communication
[ { "change_type": "MODIFY", "old_path": "src/client/impl/NodeHttpTransport.ts", "new_path": "src/client/impl/NodeHttpTransport.ts", "diff": "@@ -19,7 +19,7 @@ const DEFAULT_OPTIONS: Partial<ConnectionOptions> = {\n/** Informs about changes in the communication with the server */\nexport interface Com...
TypeScript
MIT License
influxdata/influxdb-client-js
allow to cancel communication
305,159
02.12.2019 10:11:56
-3,600
3c01692a02a384dab81eb69f028fc956ce8f8e49
accept retry delay from errors
[ { "change_type": "MODIFY", "old_path": "src/client/errors.ts", "new_path": "src/client/errors.ts", "diff": "-interface RetriableDecision {\n+export interface RetriableDecision {\ncanRetry(): boolean\n+ /**\n+ * Get the delay in millisecond to retry the action. Can return negative number\n+ * to let ...
TypeScript
MIT License
influxdata/influxdb-client-js
accept retry delay from errors
305,159
02.12.2019 10:23:35
-3,600
8cf869a79c80b8c6016941aac3df7c6f4bcdb65d
cancel retry timeouts on cancel
[ { "change_type": "MODIFY", "old_path": "src/client/impl/NodeHttpTransport.ts", "new_path": "src/client/impl/NodeHttpTransport.ts", "diff": "@@ -48,12 +48,21 @@ export interface Cancellable {\n}\nclass CancellableImpl implements Cancellable {\nprivate cancelled = false\n+ timeouts: Array<() => void> ...
TypeScript
MIT License
influxdata/influxdb-client-js
cancel retry timeouts on cancel