conductor-node 7.3.2 → 7.3.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/README.md CHANGED
@@ -70,7 +70,7 @@ The response includes the following:
70
70
  id: '{UUID}',
71
71
  integrationKey: 'quickbooks-desktop',
72
72
  endUserEmail: 'danny@constructionco.com',
73
- endUserName: 'Construction Corp',
73
+ endUserCompanyName: 'Construction Corp',
74
74
  lastHeartbeatAt: null
75
75
  }
76
76
  }
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "7.3.2",
3
+ "version": "7.3.3",
4
4
  "description": "Easily integrate with the entire QuickBooks Desktop API with fully-typed async TypeScript",
5
5
  "author": "Danny Nemer <hi@DannyNemer.com>",
6
6
  "license": "MIT",
@@ -87,7 +87,7 @@ export type GraphqlIntegrationConnectionFragment = {
87
87
  id: string;
88
88
  integrationKey: string;
89
89
  endUserEmail: string;
90
- endUserName: string;
90
+ endUserCompanyName: string;
91
91
  lastHeartbeatAt: Date | null;
92
92
  };
93
93
  export type GraphqlGetIntegrationConnectionQueryVariables = Exact<{
@@ -98,7 +98,7 @@ export type GraphqlGetIntegrationConnectionQuery = {
98
98
  id: string;
99
99
  integrationKey: string;
100
100
  endUserEmail: string;
101
- endUserName: string;
101
+ endUserCompanyName: string;
102
102
  lastHeartbeatAt: Date | null;
103
103
  };
104
104
  };
@@ -110,7 +110,7 @@ export type GraphqlGetIntegrationConnectionsQuery = {
110
110
  id: string;
111
111
  integrationKey: string;
112
112
  endUserEmail: string;
113
- endUserName: string;
113
+ endUserCompanyName: string;
114
114
  lastHeartbeatAt: Date | null;
115
115
  }>;
116
116
  };
@@ -125,7 +125,7 @@ export type GraphqlCreateIntegrationConnectionMutation = {
125
125
  id: string;
126
126
  integrationKey: string;
127
127
  endUserEmail: string;
128
- endUserName: string;
128
+ endUserCompanyName: string;
129
129
  lastHeartbeatAt: Date | null;
130
130
  };
131
131
  };
@@ -157,7 +157,7 @@ export type GraphqlIntegrationRequestQueryVariables = Exact<{
157
157
  export type GraphqlIntegrationRequestQuery = {
158
158
  integrationRequest: object;
159
159
  };
160
- export declare const IntegrationConnectionFragmentDoc = "\n fragment IntegrationConnection on IntegrationConnection {\n id\n integrationKey\n endUserEmail\n endUserName\n lastHeartbeatAt\n}\n ";
160
+ export declare const IntegrationConnectionFragmentDoc = "\n fragment IntegrationConnection on IntegrationConnection {\n id\n integrationKey\n endUserEmail\n endUserCompanyName\n lastHeartbeatAt\n}\n ";
161
161
  export declare const GetIntegrationConnectionDocument: string;
162
162
  export declare const GetIntegrationConnectionsDocument: string;
163
163
  export declare const CreateIntegrationConnectionDocument: string;
@@ -6,7 +6,7 @@ exports.IntegrationConnectionFragmentDoc = `
6
6
  id
7
7
  integrationKey
8
8
  endUserEmail
9
- endUserName
9
+ endUserCompanyName
10
10
  lastHeartbeatAt
11
11
  }
12
12
  `;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "7.3.2",
3
+ "version": "7.3.3",
4
4
  "description": "Easily integrate with the entire QuickBooks Desktop API with fully-typed async TypeScript",
5
5
  "author": "Danny Nemer <hi@DannyNemer.com>",
6
6
  "license": "MIT",