@arrowsphere/api-client 3.21.0-rc.2 → 3.21.0-rc.4

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.
@@ -12,7 +12,7 @@ export declare const InvitationContactFields: {
12
12
  COLUMN_REFERENCE: InvitationContactEnum.COLUMN_REFERENCE;
13
13
  };
14
14
  interface InvitationContactInterface {
15
- [InvitationContactFields.COLUMN_USERNAME]: string;
15
+ [InvitationContactFields.COLUMN_USERNAME]: string | null;
16
16
  [InvitationContactFields.COLUMN_REFERENCE]: string;
17
17
  }
18
18
  export declare type InvitationContactType = InvitationContactInterface & SharedContactInterface;
@@ -20,7 +20,7 @@ export declare class InvitationContact extends AbstractEntity<InvitationContactT
20
20
  #private;
21
21
  constructor(getCustomersContactDataInput: InvitationContactType);
22
22
  get reference(): string;
23
- get username(): string;
23
+ get username(): string | null;
24
24
  get firstName(): string;
25
25
  get lastName(): string;
26
26
  get email(): string;
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.21.0-rc.2",
7
+ "version": "3.21.0-rc.4",
8
8
  "description": "Node.js client for ArrowSphere's public API",
9
9
  "main": "build/index.js",
10
10
  "types": "build/index.d.ts",