@tellescope/sdk 1.88.0 → 1.89.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tellescope/sdk",
3
- "version": "1.88.0",
3
+ "version": "1.89.1",
4
4
  "description": "Code for interacting with the Tellescope API",
5
5
  "main": "./lib/cjs/sdk.js",
6
6
  "module": "./lib/esm/sdk.js",
@@ -32,14 +32,14 @@
32
32
  },
33
33
  "homepage": "https://github.com/tellescope-os/tellescope#readme",
34
34
  "dependencies": {
35
- "@tellescope/constants": "^1.88.0",
36
- "@tellescope/schema": "^1.88.0",
35
+ "@tellescope/constants": "^1.89.1",
36
+ "@tellescope/schema": "^1.89.1",
37
37
  "@tellescope/testing": "^1.69.3",
38
- "@tellescope/types-client": "^1.88.0",
39
- "@tellescope/types-models": "^1.88.0",
38
+ "@tellescope/types-client": "^1.89.1",
39
+ "@tellescope/types-models": "^1.89.1",
40
40
  "@tellescope/types-utilities": "^1.69.3",
41
- "@tellescope/utilities": "^1.88.0",
42
- "@tellescope/validation": "^1.88.0",
41
+ "@tellescope/utilities": "^1.89.1",
42
+ "@tellescope/validation": "^1.89.1",
43
43
  "axios": "^0.21.1",
44
44
  "dotenv": "^14.2.0",
45
45
  "express": "^4.17.1",
@@ -58,5 +58,5 @@
58
58
  "publishConfig": {
59
59
  "access": "public"
60
60
  },
61
- "gitHead": "8947905ad5d2066eb79e03aac4dd2d56bc0a58d7"
61
+ "gitHead": "83ed098fbb8dec746525b2cfa0ea689131ada457"
62
62
  }
package/src/sdk.ts CHANGED
@@ -462,6 +462,9 @@ type Queries = { [K in keyof ClientModelForName]: APIQuery<K> } & {
462
462
  ),
463
463
  },
464
464
  organizations: {
465
+ sync_note_to_canvas: (args: extractFields<CustomActions['organizations']['sync_note_to_canvas']['parameters']>) => (
466
+ Promise<extractFields<CustomActions['organizations']['sync_note_to_canvas']['returns']>>
467
+ ),
465
468
  add_athena_subscription: (args: extractFields<CustomActions['organizations']['add_athena_subscription']['parameters']>) => (
466
469
  Promise<extractFields<CustomActions['organizations']['add_athena_subscription']['returns']>>
467
470
  ),
@@ -836,6 +839,7 @@ export class Session extends SessionManager {
836
839
  queries.organizations.create_and_join = a => this._POST(`/v1${schema.organizations.customActions.create_and_join.path}`, a)
837
840
  queries.organizations.add_athena_subscription = a => this._POST(`/v1${schema.organizations.customActions.add_athena_subscription.path}`, a)
838
841
  queries.organizations.sync_athena_subscription = a => this._POST(`/v1${schema.organizations.customActions.sync_athena_subscription.path}`, a)
842
+ queries.organizations.sync_note_to_canvas = a => this._POST(`/v1${schema.organizations.customActions.sync_note_to_canvas.path}`, a)
839
843
 
840
844
  queries.integrations.update_zoom = args => this._POST(`/v1${schema.integrations.customActions.update_zoom.path}`, args)
841
845
  queries.integrations.load_payers = args => this._GET(`/v1${schema.integrations.customActions.load_payers.path}`, args)
Binary file