@arrowsphere/api-client 3.70.0-rc.bdj.3 → 3.70.0-rc.bdj.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.
@@ -4,5 +4,6 @@ export * from './types/entities/contact';
4
4
  export * from './types/entities/company';
5
5
  export * from './types/entities/country';
6
6
  export * from './types/entities/partnertag';
7
+ export * from './types/entities/subscription';
7
8
  export * from './types/entities/workgroup';
8
9
  export * from './graphqlApiClient';
@@ -20,6 +20,7 @@ __exportStar(require("./types/entities/contact"), exports);
20
20
  __exportStar(require("./types/entities/company"), exports);
21
21
  __exportStar(require("./types/entities/country"), exports);
22
22
  __exportStar(require("./types/entities/partnertag"), exports);
23
+ __exportStar(require("./types/entities/subscription"), exports);
23
24
  __exportStar(require("./types/entities/workgroup"), exports);
24
25
  __exportStar(require("./graphqlApiClient"), exports);
25
26
  //# sourceMappingURL=index.js.map
@@ -1,6 +1,7 @@
1
1
  import { ArrowCompanyType, EndCustomerType, PartnerType } from './entities/company';
2
2
  import { ContinentType, CountryType } from './entities/country';
3
3
  import { PartnertagType } from './entities/partnertag';
4
+ import { SubscriptionType } from './entities/subscription';
4
5
  import { WorkgroupType } from './entities/workgroup';
5
6
  import { ErrorsSchema, PageSchema, SelectAllResponseDataSchema, SelectOneResponseDataSchema } from './graphqlApiSchemas';
6
7
  /**
@@ -113,6 +114,7 @@ export declare enum SelectDataField {
113
114
  END_CUSTOMER = "endCustomer",
114
115
  PARTNER = "partner",
115
116
  PARTNERTAG = "partnertag",
117
+ SUBSCRIPTION = "subscription",
116
118
  WORKGROUP = "workgroup"
117
119
  }
118
120
  export declare type SelectAllResultType = {
@@ -129,6 +131,7 @@ export declare type SelectAllResponseDataType = {
129
131
  [SelectDataField.END_CUSTOMER]?: EndCustomerType[];
130
132
  [SelectDataField.PARTNER]?: PartnerType[];
131
133
  [SelectDataField.PARTNERTAG]?: PartnertagType[];
134
+ [SelectDataField.SUBSCRIPTION]?: SubscriptionType[];
132
135
  [SelectDataField.WORKGROUP]?: WorkgroupType[];
133
136
  };
134
137
  export declare enum ErrorsField {
@@ -170,6 +173,7 @@ export declare type SelectOneResponseDataType = {
170
173
  [SelectDataField.END_CUSTOMER]?: EndCustomerType;
171
174
  [SelectDataField.PARTNER]?: PartnerType;
172
175
  [SelectDataField.PARTNERTAG]?: PartnertagType;
176
+ [SelectDataField.SUBSCRIPTION]?: SubscriptionType;
173
177
  [SelectDataField.WORKGROUP]?: WorkgroupType;
174
178
  };
175
179
  export declare enum QueryVariablesField {
@@ -96,6 +96,7 @@ var SelectDataField;
96
96
  SelectDataField["END_CUSTOMER"] = "endCustomer";
97
97
  SelectDataField["PARTNER"] = "partner";
98
98
  SelectDataField["PARTNERTAG"] = "partnertag";
99
+ SelectDataField["SUBSCRIPTION"] = "subscription";
99
100
  SelectDataField["WORKGROUP"] = "workgroup";
100
101
  })(SelectDataField = exports.SelectDataField || (exports.SelectDataField = {}));
101
102
  var ErrorsField;
@@ -41,6 +41,7 @@ export declare type SelectAllResponseDataSchema = {
41
41
  [SelectDataField.END_CUSTOMER]?: EndCustomerSchema;
42
42
  [SelectDataField.PARTNER]?: PartnerSchema;
43
43
  [SelectDataField.PARTNERTAG]?: PartnertagSchema;
44
+ [SelectDataField.SUBSCRIPTION]?: SubscriptionSchema;
44
45
  [SelectDataField.WORKGROUP]?: WorkgroupSchema;
45
46
  };
46
47
  export declare type SelectOneResultSchema = {
@@ -54,6 +55,7 @@ export declare type SelectOneResponseDataSchema = {
54
55
  [SelectDataField.END_CUSTOMER]?: EndCustomerSchema;
55
56
  [SelectDataField.PARTNER]?: PartnerSchema;
56
57
  [SelectDataField.PARTNERTAG]?: PartnertagSchema;
58
+ [SelectDataField.SUBSCRIPTION]?: SubscriptionSchema;
57
59
  [SelectDataField.WORKGROUP]?: WorkgroupSchema;
58
60
  };
59
61
  export declare type SelectAllQuerySchema = {
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.70.0-rc.bdj.3",
7
+ "version": "3.70.0-rc.bdj.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",