@arrowsphere/api-client 3.115.0-rc.bdj.1 → 3.115.0-rc.bdj.3

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,16 @@
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.2] - 2024.04.26
7
+
8
+ ### Removed
9
+ - [License schedules tasks] remove deprecated and unsused endpoint getSchedulesTasks
10
+
11
+ ## [3.114.1] - 2024.04.25
12
+
13
+ ### Fixed
14
+ - [License schedules tasks] Fixes post/update scheduled task payload
15
+
6
16
  ## [3.114.0] - 2024.04.24
7
17
 
8
18
  ### 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 {};
@@ -8,6 +8,7 @@ export * from './types/entities/order';
8
8
  export * from './types/entities/partnertag';
9
9
  export * from './types/entities/subscription';
10
10
  export * from './types/entities/specialPriceRate';
11
+ export * from './types/entities/user';
11
12
  export * from './types/entities/vendor';
12
13
  export * from './types/entities/workgroup';
13
14
  export * from './graphqlApiClient';
@@ -24,6 +24,7 @@ __exportStar(require("./types/entities/order"), exports);
24
24
  __exportStar(require("./types/entities/partnertag"), exports);
25
25
  __exportStar(require("./types/entities/subscription"), exports);
26
26
  __exportStar(require("./types/entities/specialPriceRate"), exports);
27
+ __exportStar(require("./types/entities/user"), exports);
27
28
  __exportStar(require("./types/entities/vendor"), exports);
28
29
  __exportStar(require("./types/entities/workgroup"), exports);
29
30
  __exportStar(require("./graphqlApiClient"), exports);
@@ -0,0 +1,15 @@
1
+ import { ContactsType } from './contact';
2
+ export declare type UserType = {
3
+ id?: number;
4
+ allowDirectLogin?: boolean;
5
+ validatedAt?: string;
6
+ contact?: ContactsType;
7
+ };
8
+ export declare type UserHistoryType = {
9
+ id?: number;
10
+ action?: string;
11
+ createdAt?: string;
12
+ description?: string;
13
+ impactedUser?: UserType;
14
+ originatorUser?: UserType;
15
+ };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=user.js.map
@@ -4,6 +4,7 @@ import { LicenseBudgetType } from './entities/licenseBudget';
4
4
  import { PartnertagType } from './entities/partnertag';
5
5
  import { SubscribedProgramType } from './entities/program';
6
6
  import { SubscriptionType } from './entities/subscription';
7
+ import { UserHistoryType } from './entities/user';
7
8
  import { WorkgroupType } from './entities/workgroup';
8
9
  import { ErrorsSchema, PageSchema, SelectAllResponseDataSchema, SelectOneResponseDataSchema } from './graphqlApiSchemas';
9
10
  /**
@@ -119,6 +120,7 @@ export declare enum SelectDataField {
119
120
  PARTNERTAG = "partnertag",
120
121
  SUBSCRIBED_PROGRAM = "subscribedProgram",
121
122
  SUBSCRIPTION = "subscription",
123
+ USER_HISTORY = "userHistory",
122
124
  WORKGROUP = "workgroup"
123
125
  }
124
126
  export declare type SelectAllResultType = {
@@ -138,6 +140,7 @@ export declare type SelectAllResponseDataType = {
138
140
  [SelectDataField.PARTNERTAG]?: PartnertagType[];
139
141
  [SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramType[];
140
142
  [SelectDataField.SUBSCRIPTION]?: SubscriptionType[];
143
+ [SelectDataField.USER_HISTORY]?: UserHistoryType[];
141
144
  [SelectDataField.WORKGROUP]?: WorkgroupType[];
142
145
  };
143
146
  export declare enum ErrorsField {
@@ -99,6 +99,7 @@ var SelectDataField;
99
99
  SelectDataField["PARTNERTAG"] = "partnertag";
100
100
  SelectDataField["SUBSCRIBED_PROGRAM"] = "subscribedProgram";
101
101
  SelectDataField["SUBSCRIPTION"] = "subscription";
102
+ SelectDataField["USER_HISTORY"] = "userHistory";
102
103
  SelectDataField["WORKGROUP"] = "workgroup";
103
104
  })(SelectDataField = exports.SelectDataField || (exports.SelectDataField = {}));
104
105
  var ErrorsField;
@@ -12,6 +12,7 @@ import { OrderItemsType, OrdersType } from './entities/order';
12
12
  import { VendorsType } from './entities/vendor';
13
13
  import { SubscribedProgramType } from './entities/program';
14
14
  import { LicenseBudgetNotificationType, LicenseBudgetType } from './entities/licenseBudget';
15
+ import { UserHistoryType, UserType } from './entities/user';
15
16
  export declare type PartnertagSchema = Schema<PartnertagType, boolean>;
16
17
  declare type MissingFieldsOfCompanySchema = {
17
18
  contacts?: ContactsSchema;
@@ -59,6 +60,8 @@ export declare type ProgramSchema = Schema<ProgramType, boolean>;
59
60
  export declare type SpecialPriceRateSchema = Schema<SpecialPriceRateType, boolean>;
60
61
  export declare type SubscribedProgramSchema = Schema<SubscribedProgramType, boolean>;
61
62
  export declare type SubscriptionSchema = Schema<SubscriptionType, boolean>;
63
+ export declare type UserSchema = Schema<UserType, boolean>;
64
+ export declare type UserHistorySchema = Schema<UserHistoryType, boolean>;
62
65
  export declare type VendorSchema = Schema<VendorsType, boolean>;
63
66
  export declare type WorkgroupSchema = Schema<WorkgroupType, boolean>;
64
67
  export declare type SelectAllResultSchema = {
@@ -76,6 +79,7 @@ export declare type SelectAllResponseDataSchema = {
76
79
  [SelectDataField.PARTNERTAG]?: PartnertagSchema;
77
80
  [SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramSchema;
78
81
  [SelectDataField.SUBSCRIPTION]?: SubscriptionSchema;
82
+ [SelectDataField.USER_HISTORY]?: UserHistorySchema;
79
83
  [SelectDataField.WORKGROUP]?: WorkgroupSchema;
80
84
  };
81
85
  export declare type SelectOneResultSchema = {
@@ -92,6 +96,7 @@ export declare type SelectOneResponseDataSchema = {
92
96
  [SelectDataField.PARTNERTAG]?: PartnertagSchema;
93
97
  [SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramSchema;
94
98
  [SelectDataField.SUBSCRIPTION]?: SubscriptionSchema;
99
+ [SelectDataField.USER_HISTORY]?: UserHistorySchema;
95
100
  [SelectDataField.WORKGROUP]?: WorkgroupSchema;
96
101
  };
97
102
  export declare type SelectAllQuerySchema = {
@@ -239,9 +239,9 @@ export declare type SaveBillingCommentsInputType = {
239
239
  [SaveBillingCommentsInputFields.COLUMN_COMMENT_TWO]?: string | null;
240
240
  };
241
241
  export declare type ScheduleTasks = {
242
- periodicity: number;
243
- term: number;
244
- seats: number;
242
+ periodicity?: number;
243
+ term?: number;
244
+ seats?: number;
245
245
  executionDate: string;
246
246
  };
247
247
  export declare type UpdateScheduledTaskRequestType = Omit<ScheduleTasks, 'executionDate'>;
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.115.0-rc.bdj.1",
7
+ "version": "3.115.0-rc.bdj.3",
8
8
  "description": "Node.js client for ArrowSphere's public API",
9
9
  "main": "build/index.js",
10
10
  "types": "build/index.d.ts",