@arrowsphere/api-client 3.182.0-rc-bdj-4 → 3.182.0-rc-bdj-5

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.
@@ -2,6 +2,7 @@ export * from './types/graphqlApiQueries';
2
2
  export * from './types/graphqlApiSchemas';
3
3
  export * from './types/entities/contact';
4
4
  export * from './types/entities/company';
5
+ export * from './types/entities/contributor';
5
6
  export * from './types/entities/country';
6
7
  export * from './types/entities/currency';
7
8
  export * from './types/entities/disclaimer';
@@ -18,6 +18,7 @@ __exportStar(require("./types/graphqlApiQueries"), exports);
18
18
  __exportStar(require("./types/graphqlApiSchemas"), exports);
19
19
  __exportStar(require("./types/entities/contact"), exports);
20
20
  __exportStar(require("./types/entities/company"), exports);
21
+ __exportStar(require("./types/entities/contributor"), exports);
21
22
  __exportStar(require("./types/entities/country"), exports);
22
23
  __exportStar(require("./types/entities/currency"), exports);
23
24
  __exportStar(require("./types/entities/disclaimer"), exports);
@@ -0,0 +1,17 @@
1
+ import { WorkgroupType } from './workgroup';
2
+ export declare type GraphqlApiContributorType = {
3
+ id?: number;
4
+ icst?: GraphqlApiStaffType;
5
+ isr?: GraphqlApiStaffType;
6
+ fcst?: GraphqlApiStaffType;
7
+ fsr?: GraphqlApiStaffType;
8
+ sor?: GraphqlApiStaffType;
9
+ };
10
+ export declare type GraphqlApiStaffType = {
11
+ id?: number;
12
+ firstname?: string;
13
+ internalId?: string;
14
+ lastname?: string;
15
+ locked?: boolean;
16
+ workgroup?: WorkgroupType;
17
+ };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=contributor.js.map
@@ -1,5 +1,6 @@
1
1
  import { ArrowCompanyType, EndCustomerType, PartnerType } from './company';
2
2
  import { ContactsType } from './contact';
3
+ import { GraphqlApiContributorType } from './contributor';
3
4
  import { GraphqlApiEavType } from './eav';
4
5
  import { GraphqlApiProgramType } from './program';
5
6
  import { ItemData, QuoteType } from './quote';
@@ -11,6 +12,7 @@ export declare type OrdersType = {
11
12
  arrowCompany?: ArrowCompanyType;
12
13
  arrowContact?: ContactsType;
13
14
  commitmentAmountTotal?: number;
15
+ contributor?: GraphqlApiContributorType;
14
16
  createdAt?: string;
15
17
  eavs?: GraphqlApiEavType[];
16
18
  endCustomer?: EndCustomerType;
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.182.0-rc-bdj-4",
7
+ "version": "3.182.0-rc-bdj-5",
8
8
  "description": "Node.js client for ArrowSphere's public API",
9
9
  "main": "build/index.js",
10
10
  "types": "build/index.d.ts",