@arrowsphere/api-client 3.159.0 → 3.160.0-rc-bdj-2

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,7 +2,7 @@ import { ArrowCompanyType, EndCustomerType, PartnerType } from './entities/compa
2
2
  import { ContinentType, CountryType } from './entities/country';
3
3
  import { LicenseBudgetType } from './entities/licenseBudget';
4
4
  import { PartnertagType } from './entities/partnertag';
5
- import { SubscribedProgramType } from './entities/program';
5
+ import { GraphqlApiProgramType, SubscribedProgramType } from './entities/program';
6
6
  import { QuoteType } from './entities/quote';
7
7
  import { SubscriptionType } from './entities/subscription';
8
8
  import { UserHistoryType, UserType } from './entities/user';
@@ -119,6 +119,7 @@ export declare enum SelectDataField {
119
119
  LICENSE_BUDGET = "licenseBudget",
120
120
  PARTNER = "partner",
121
121
  PARTNERTAG = "partnertag",
122
+ PROGRAM = "program",
122
123
  QUOTE = "quote",
123
124
  SUBSCRIBED_PROGRAM = "subscribedProgram",
124
125
  SUBSCRIPTION = "subscription",
@@ -141,6 +142,7 @@ export declare type SelectAllResponseDataType = {
141
142
  [SelectDataField.LICENSE_BUDGET]?: LicenseBudgetType[];
142
143
  [SelectDataField.PARTNER]?: PartnerType[];
143
144
  [SelectDataField.PARTNERTAG]?: PartnertagType[];
145
+ [SelectDataField.PROGRAM]?: GraphqlApiProgramType[];
144
146
  [SelectDataField.QUOTE]?: QuoteType[];
145
147
  [SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramType[];
146
148
  [SelectDataField.SUBSCRIPTION]?: SubscriptionType[];
@@ -189,6 +191,7 @@ export declare type SelectOneResponseDataType = {
189
191
  [SelectDataField.LICENSE_BUDGET]?: LicenseBudgetType;
190
192
  [SelectDataField.PARTNER]?: PartnerType;
191
193
  [SelectDataField.PARTNERTAG]?: PartnertagType;
194
+ [SelectDataField.PROGRAM]?: GraphqlApiProgramType;
192
195
  [SelectDataField.QUOTE]?: QuoteType;
193
196
  [SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramType;
194
197
  [SelectDataField.SUBSCRIPTION]?: SubscriptionType;
@@ -97,6 +97,7 @@ var SelectDataField;
97
97
  SelectDataField["LICENSE_BUDGET"] = "licenseBudget";
98
98
  SelectDataField["PARTNER"] = "partner";
99
99
  SelectDataField["PARTNERTAG"] = "partnertag";
100
+ SelectDataField["PROGRAM"] = "program";
100
101
  SelectDataField["QUOTE"] = "quote";
101
102
  SelectDataField["SUBSCRIBED_PROGRAM"] = "subscribedProgram";
102
103
  SelectDataField["SUBSCRIPTION"] = "subscription";
@@ -117,6 +117,7 @@ export declare type SelectAllResponseDataSchema = {
117
117
  [SelectDataField.LICENSE_BUDGET]?: LicenseBudgetSchema;
118
118
  [SelectDataField.PARTNER]?: PartnerSchema;
119
119
  [SelectDataField.PARTNERTAG]?: PartnertagSchema;
120
+ [SelectDataField.PROGRAM]?: GraphqlApiProgramSchema;
120
121
  [SelectDataField.QUOTE]?: QuoteSchema;
121
122
  [SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramSchema;
122
123
  [SelectDataField.SUBSCRIPTION]?: SubscriptionSchema;
@@ -136,6 +137,7 @@ export declare type SelectOneResponseDataSchema = {
136
137
  [SelectDataField.LICENSE_BUDGET]?: LicenseBudgetSchema;
137
138
  [SelectDataField.PARTNER]?: PartnerSchema;
138
139
  [SelectDataField.PARTNERTAG]?: PartnertagSchema;
140
+ [SelectDataField.PROGRAM]?: GraphqlApiProgramSchema;
139
141
  [SelectDataField.QUOTE]?: QuoteSchema;
140
142
  [SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramSchema;
141
143
  [SelectDataField.SUBSCRIPTION]?: SubscriptionSchema;
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.159.0",
7
+ "version": "3.160.0-rc-bdj-2",
8
8
  "description": "Node.js client for ArrowSphere's public API",
9
9
  "main": "build/index.js",
10
10
  "types": "build/index.d.ts",