@arrowsphere/api-client 3.114.1-rc.bdj.2 → 3.114.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/CHANGELOG.md CHANGED
@@ -3,6 +3,11 @@
3
3
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
4
4
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5
5
 
6
+ ## [3.114.1] - 2024.04.25
7
+
8
+ ### Fixed
9
+ - [License schedules tasks] Fixes post/update scheduled task payload
10
+
6
11
  ## [3.114.0] - 2024.04.24
7
12
 
8
13
  ### Added
@@ -43,11 +43,11 @@ export declare enum CustomerFields {
43
43
  COLUMN_PARTNER_TAGS = "PartnerTags",
44
44
  COLUMN_PARTNER_TAGS_LABEL = "label"
45
45
  }
46
- declare type CompanyReseller = {
46
+ export declare type CompanyReseller = {
47
47
  [CustomerFields.COLUMN_REF]: string;
48
48
  [CustomerFields.COLUMN_COMPANY_NAME]: string;
49
49
  };
50
- declare type PartnerTags = {
50
+ export declare type PartnerTags = {
51
51
  [CustomerFields.COLUMN_PARTNER_TAGS_LABEL]: string;
52
52
  };
53
53
  export declare type CustomerType = {
@@ -131,4 +131,3 @@ export declare class Customer extends AbstractEntity<CustomerType> {
131
131
  get PartnerTags(): PartnerTags[] | undefined;
132
132
  toJSON(): CustomerType;
133
133
  }
134
- export {};
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "type": "git",
5
5
  "url": "https://github.com/ArrowSphere/nodejs-api-client.git"
6
6
  },
7
- "version": "3.114.1-rc.bdj.2",
7
+ "version": "3.114.1",
8
8
  "description": "Node.js client for ArrowSphere's public API",
9
9
  "main": "build/index.js",
10
10
  "types": "build/index.d.ts",