@rawdash/connector-salesforce 0.0.1 → 0.17.0
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/LICENSE +202 -0
- package/dist/index.d.ts +184 -1
- package/dist/index.js +6 -3
- package/dist/index.js.map +1 -1
- package/package.json +14 -13
package/LICENSE
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
package/dist/index.d.ts
CHANGED
|
@@ -43,6 +43,189 @@ type SalesforceCredentials = typeof salesforceCredentials;
|
|
|
43
43
|
declare const PHASE_ORDER: readonly ["users", "accounts", "leads", "opportunities", "opportunity_events"];
|
|
44
44
|
type SalesforcePhase = (typeof PHASE_ORDER)[number];
|
|
45
45
|
type SalesforceResource = SalesforcePhase;
|
|
46
|
+
declare const salesforceResources: {
|
|
47
|
+
readonly salesforce_user: {
|
|
48
|
+
readonly shape: "entity";
|
|
49
|
+
readonly description: "Salesforce users, keyed by user id, with name, email, and active state. Used to attribute opportunities, accounts, and stage changes to owners.";
|
|
50
|
+
readonly endpoint: "GET /services/data/v{version}/query (SOQL: FROM User)";
|
|
51
|
+
readonly notes: "Users are backfilled in full on every run; the table is small.";
|
|
52
|
+
readonly fields: [{
|
|
53
|
+
readonly name: "name";
|
|
54
|
+
readonly description: "Full name of the user.";
|
|
55
|
+
}, {
|
|
56
|
+
readonly name: "email";
|
|
57
|
+
readonly description: "User email address.";
|
|
58
|
+
}, {
|
|
59
|
+
readonly name: "isActive";
|
|
60
|
+
readonly description: "Whether the user is active.";
|
|
61
|
+
}];
|
|
62
|
+
readonly responses: {
|
|
63
|
+
readonly oauth_token: z.ZodObject<{
|
|
64
|
+
access_token: z.ZodString;
|
|
65
|
+
instance_url: z.ZodOptional<z.ZodString>;
|
|
66
|
+
}, z.core.$strip>;
|
|
67
|
+
readonly users: z.ZodArray<z.ZodObject<{
|
|
68
|
+
Id: z.ZodString;
|
|
69
|
+
Name: z.ZodNullable<z.ZodString>;
|
|
70
|
+
Email: z.ZodNullable<z.ZodString>;
|
|
71
|
+
IsActive: z.ZodBoolean;
|
|
72
|
+
}, z.core.$strip>>;
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
readonly salesforce_account: {
|
|
76
|
+
readonly shape: "entity";
|
|
77
|
+
readonly description: "Accounts (companies), keyed by account id, with industry, annual revenue, owner, and creation time.";
|
|
78
|
+
readonly endpoint: "GET /services/data/v{version}/query (SOQL: FROM Account)";
|
|
79
|
+
readonly notes: "Upserts by id; incremental syncs filter on LastModifiedDate.";
|
|
80
|
+
readonly fields: [{
|
|
81
|
+
readonly name: "name";
|
|
82
|
+
readonly description: "Account name.";
|
|
83
|
+
}, {
|
|
84
|
+
readonly name: "industry";
|
|
85
|
+
readonly description: "Industry classification.";
|
|
86
|
+
}, {
|
|
87
|
+
readonly name: "annualRevenue";
|
|
88
|
+
readonly description: "Annual revenue in the org currency.";
|
|
89
|
+
}, {
|
|
90
|
+
readonly name: "ownerId";
|
|
91
|
+
readonly description: "User id of the account owner.";
|
|
92
|
+
}, {
|
|
93
|
+
readonly name: "createdAt";
|
|
94
|
+
readonly description: "Account creation time (Unix ms).";
|
|
95
|
+
}];
|
|
96
|
+
readonly responses: {
|
|
97
|
+
readonly accounts: z.ZodArray<z.ZodObject<{
|
|
98
|
+
Id: z.ZodString;
|
|
99
|
+
Name: z.ZodNullable<z.ZodString>;
|
|
100
|
+
Industry: z.ZodNullable<z.ZodString>;
|
|
101
|
+
AnnualRevenue: z.ZodNullable<z.ZodNumber>;
|
|
102
|
+
OwnerId: z.ZodNullable<z.ZodString>;
|
|
103
|
+
CreatedDate: z.ZodString;
|
|
104
|
+
LastModifiedDate: z.ZodString;
|
|
105
|
+
}, z.core.$strip>>;
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
readonly salesforce_lead: {
|
|
109
|
+
readonly shape: "entity";
|
|
110
|
+
readonly description: "Leads, keyed by lead id, with email, status, source, and conversion time.";
|
|
111
|
+
readonly endpoint: "GET /services/data/v{version}/query (SOQL: FROM Lead)";
|
|
112
|
+
readonly notes: "Upserts by id; incremental syncs filter on LastModifiedDate.";
|
|
113
|
+
readonly fields: [{
|
|
114
|
+
readonly name: "email";
|
|
115
|
+
readonly description: "Lead email address.";
|
|
116
|
+
}, {
|
|
117
|
+
readonly name: "status";
|
|
118
|
+
readonly description: "Lead status.";
|
|
119
|
+
}, {
|
|
120
|
+
readonly name: "source";
|
|
121
|
+
readonly description: "Lead source (LeadSource).";
|
|
122
|
+
}, {
|
|
123
|
+
readonly name: "convertedAt";
|
|
124
|
+
readonly description: "When the lead was converted (Unix ms), if any.";
|
|
125
|
+
}, {
|
|
126
|
+
readonly name: "createdAt";
|
|
127
|
+
readonly description: "Lead creation time (Unix ms).";
|
|
128
|
+
}];
|
|
129
|
+
readonly responses: {
|
|
130
|
+
readonly leads: z.ZodArray<z.ZodObject<{
|
|
131
|
+
Id: z.ZodString;
|
|
132
|
+
Email: z.ZodNullable<z.ZodString>;
|
|
133
|
+
Status: z.ZodNullable<z.ZodString>;
|
|
134
|
+
LeadSource: z.ZodNullable<z.ZodString>;
|
|
135
|
+
ConvertedDate: z.ZodNullable<z.ZodString>;
|
|
136
|
+
CreatedDate: z.ZodString;
|
|
137
|
+
LastModifiedDate: z.ZodString;
|
|
138
|
+
}, z.core.$strip>>;
|
|
139
|
+
};
|
|
140
|
+
};
|
|
141
|
+
readonly salesforce_opportunity: {
|
|
142
|
+
readonly shape: "entity";
|
|
143
|
+
readonly description: "Opportunities, keyed by opportunity id, with stage, amount, close date, owner, probability, forecast category, and closed/won flags.";
|
|
144
|
+
readonly endpoint: "GET /services/data/v{version}/query (SOQL: FROM Opportunity)";
|
|
145
|
+
readonly notes: "Upserts by id; incremental syncs filter on LastModifiedDate.";
|
|
146
|
+
readonly fields: [{
|
|
147
|
+
readonly name: "name";
|
|
148
|
+
readonly description: "Opportunity name.";
|
|
149
|
+
}, {
|
|
150
|
+
readonly name: "stage";
|
|
151
|
+
readonly description: "Current StageName.";
|
|
152
|
+
}, {
|
|
153
|
+
readonly name: "amount";
|
|
154
|
+
readonly description: "Opportunity amount in org currency.";
|
|
155
|
+
}, {
|
|
156
|
+
readonly name: "closeDate";
|
|
157
|
+
readonly description: "Expected close date (Unix ms).";
|
|
158
|
+
}, {
|
|
159
|
+
readonly name: "ownerId";
|
|
160
|
+
readonly description: "User id of the opportunity owner.";
|
|
161
|
+
}, {
|
|
162
|
+
readonly name: "probability";
|
|
163
|
+
readonly description: "Win probability percentage.";
|
|
164
|
+
}, {
|
|
165
|
+
readonly name: "forecastCategory";
|
|
166
|
+
readonly description: "Forecast category name.";
|
|
167
|
+
}, {
|
|
168
|
+
readonly name: "isClosed";
|
|
169
|
+
readonly description: "Whether the opportunity is closed.";
|
|
170
|
+
}, {
|
|
171
|
+
readonly name: "isWon";
|
|
172
|
+
readonly description: "Whether the opportunity is won.";
|
|
173
|
+
}, {
|
|
174
|
+
readonly name: "createdAt";
|
|
175
|
+
readonly description: "Opportunity creation time (Unix ms).";
|
|
176
|
+
}];
|
|
177
|
+
readonly responses: {
|
|
178
|
+
readonly opportunities: z.ZodArray<z.ZodObject<{
|
|
179
|
+
Id: z.ZodString;
|
|
180
|
+
Name: z.ZodNullable<z.ZodString>;
|
|
181
|
+
StageName: z.ZodNullable<z.ZodString>;
|
|
182
|
+
Amount: z.ZodNullable<z.ZodNumber>;
|
|
183
|
+
CloseDate: z.ZodNullable<z.ZodString>;
|
|
184
|
+
OwnerId: z.ZodNullable<z.ZodString>;
|
|
185
|
+
Probability: z.ZodNullable<z.ZodNumber>;
|
|
186
|
+
ForecastCategoryName: z.ZodNullable<z.ZodString>;
|
|
187
|
+
IsClosed: z.ZodBoolean;
|
|
188
|
+
IsWon: z.ZodBoolean;
|
|
189
|
+
CreatedDate: z.ZodString;
|
|
190
|
+
LastModifiedDate: z.ZodString;
|
|
191
|
+
}, z.core.$strip>>;
|
|
192
|
+
};
|
|
193
|
+
};
|
|
194
|
+
readonly salesforce_opportunity_stage_change: {
|
|
195
|
+
readonly shape: "event";
|
|
196
|
+
readonly description: "Opportunity stage transitions derived from OpportunityFieldHistory rows where Field = StageName. One event per transition, timestamped at the change CreatedDate.";
|
|
197
|
+
readonly endpoint: "GET /services/data/v{version}/query (SOQL: FROM OpportunityFieldHistory WHERE Field = 'StageName')";
|
|
198
|
+
readonly notes: "Stage-change events are immutable; their scope is only cleared on a full sync so an incremental window does not drop history outside its range.";
|
|
199
|
+
readonly fields: [{
|
|
200
|
+
readonly name: "historyId";
|
|
201
|
+
readonly description: "OpportunityFieldHistory row id.";
|
|
202
|
+
}, {
|
|
203
|
+
readonly name: "opportunityId";
|
|
204
|
+
readonly description: "Id of the opportunity that changed stage.";
|
|
205
|
+
}, {
|
|
206
|
+
readonly name: "fromStage";
|
|
207
|
+
readonly description: "Previous StageName (OldValue).";
|
|
208
|
+
}, {
|
|
209
|
+
readonly name: "toStage";
|
|
210
|
+
readonly description: "New StageName (NewValue).";
|
|
211
|
+
}, {
|
|
212
|
+
readonly name: "actorId";
|
|
213
|
+
readonly description: "User id who made the change (CreatedById).";
|
|
214
|
+
}];
|
|
215
|
+
readonly responses: {
|
|
216
|
+
readonly opportunity_events: z.ZodArray<z.ZodObject<{
|
|
217
|
+
Id: z.ZodString;
|
|
218
|
+
OpportunityId: z.ZodString;
|
|
219
|
+
Field: z.ZodString;
|
|
220
|
+
OldValue: z.ZodNullable<z.ZodString>;
|
|
221
|
+
NewValue: z.ZodNullable<z.ZodString>;
|
|
222
|
+
CreatedDate: z.ZodString;
|
|
223
|
+
CreatedById: z.ZodNullable<z.ZodString>;
|
|
224
|
+
}, z.core.$strip>>;
|
|
225
|
+
};
|
|
226
|
+
};
|
|
227
|
+
};
|
|
228
|
+
declare const id = "salesforce";
|
|
46
229
|
declare class SalesforceConnector extends BaseConnector<SalesforceSettings, SalesforceCredentials> {
|
|
47
230
|
static readonly id = "salesforce";
|
|
48
231
|
static readonly resources: {
|
|
@@ -318,4 +501,4 @@ declare class SalesforceConnector extends BaseConnector<SalesforceSettings, Sale
|
|
|
318
501
|
sync(options: SyncOptions, storage: StorageHandle, signal?: AbortSignal): Promise<SyncResult>;
|
|
319
502
|
}
|
|
320
503
|
|
|
321
|
-
export { SalesforceConnector, type SalesforceResource, type SalesforceSettings, configFields, SalesforceConnector as default, doc };
|
|
504
|
+
export { SalesforceConnector, type SalesforceResource, type SalesforceSettings, configFields, SalesforceConnector as default, doc, id, salesforceResources as resources };
|
package/dist/index.js
CHANGED
|
@@ -311,8 +311,9 @@ function parseDateMs(value) {
|
|
|
311
311
|
const ms = Date.parse(value);
|
|
312
312
|
return Number.isFinite(ms) ? ms : null;
|
|
313
313
|
}
|
|
314
|
+
var id = "salesforce";
|
|
314
315
|
var SalesforceConnector = class _SalesforceConnector extends BaseConnector {
|
|
315
|
-
static id =
|
|
316
|
+
static id = id;
|
|
316
317
|
static resources = salesforceResources;
|
|
317
318
|
static schemas = schemasFromResources(salesforceResources);
|
|
318
319
|
static create(input, ctx) {
|
|
@@ -331,7 +332,7 @@ var SalesforceConnector = class _SalesforceConnector extends BaseConnector {
|
|
|
331
332
|
ctx
|
|
332
333
|
);
|
|
333
334
|
}
|
|
334
|
-
id =
|
|
335
|
+
id = id;
|
|
335
336
|
credentials = salesforceCredentials;
|
|
336
337
|
accessToken = null;
|
|
337
338
|
apiVersion() {
|
|
@@ -578,6 +579,8 @@ export {
|
|
|
578
579
|
SalesforceConnector,
|
|
579
580
|
configFields,
|
|
580
581
|
index_default as default,
|
|
581
|
-
doc
|
|
582
|
+
doc,
|
|
583
|
+
id,
|
|
584
|
+
salesforceResources as resources
|
|
582
585
|
};
|
|
583
586
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../connector-shared/src/errors.ts","../../../connector-shared/src/retry.ts","../../../connector-shared/src/version.ts","../../../connector-shared/src/request.ts","../../../connector-shared/src/rate-limit.ts","../../../connector-shared/src/sanitize.ts","../../../connector-shared/src/epoch.ts","../../../connector-shared/src/pagination.ts","../../../connector-shared/src/logger.ts","../src/salesforce.ts","../src/index.ts"],"sourcesContent":["import type { HttpResponse } from './types';\n\nexport type HttpErrorKind =\n | 'transient'\n | 'rate_limit'\n | 'auth'\n | 'upstream_bug'\n | 'client_bug';\n\nexport abstract class HttpClientError extends Error {\n abstract readonly kind: HttpErrorKind;\n readonly response?: HttpResponse;\n\n constructor(message: string, response?: HttpResponse) {\n super(message);\n this.name = new.target.name;\n this.response = response;\n }\n}\n\nexport class TransientError extends HttpClientError {\n readonly kind = 'transient' as const;\n}\n\nexport class RateLimitError extends HttpClientError {\n readonly kind = 'rate_limit' as const;\n readonly retryAfter?: Date;\n\n constructor(message: string, response?: HttpResponse, retryAfter?: Date) {\n super(message, response);\n this.retryAfter = retryAfter;\n }\n}\n\nexport class AuthError extends HttpClientError {\n readonly kind = 'auth' as const;\n}\n\nexport class UpstreamBugError extends HttpClientError {\n readonly kind = 'upstream_bug' as const;\n}\n\nexport class ClientBugError extends HttpClientError {\n readonly kind = 'client_bug' as const;\n}\n\nexport function classifyStatus(status: number): HttpErrorKind {\n if (status === 429) {\n return 'rate_limit';\n }\n if (status === 401 || status === 403) {\n return 'auth';\n }\n if (status === 408) {\n return 'transient';\n }\n if (status >= 500) {\n return 'upstream_bug';\n }\n if (status >= 400) {\n return 'client_bug';\n }\n return 'client_bug';\n}\n\nexport function errorForStatus(\n message: string,\n response: HttpResponse,\n retryAfter?: Date,\n): HttpClientError {\n const kind = classifyStatus(response.status);\n switch (kind) {\n case 'rate_limit':\n return new RateLimitError(message, response, retryAfter);\n case 'auth':\n return new AuthError(message, response);\n case 'transient':\n return new TransientError(message, response);\n case 'upstream_bug':\n return new UpstreamBugError(message, response);\n case 'client_bug':\n return new ClientBugError(message, response);\n }\n}\n","import { HttpClientError, RateLimitError, TransientError } from './errors';\n\nexport interface RetryPolicy {\n maxAttempts?: number;\n initialDelayMs?: number;\n maxDelayMs?: number;\n retryOn?: (status: number | null, err?: Error) => boolean;\n}\n\nexport const defaultRetryOn = (status: number | null, err?: Error): boolean => {\n if (err instanceof RateLimitError) {\n return true;\n }\n if (err instanceof TransientError) {\n return true;\n }\n if (status === null) {\n return err instanceof Error && !(err instanceof HttpClientError);\n }\n if (status === 408 || status === 429) {\n return true;\n }\n if (status >= 500) {\n return true;\n }\n return false;\n};\n\nexport function backoffDelayMs(\n attempt: number,\n policy: Required<Pick<RetryPolicy, 'initialDelayMs' | 'maxDelayMs'>>,\n): number {\n const base = policy.initialDelayMs * 2 ** attempt;\n const jitter = base * 0.25 * Math.random();\n return Math.min(base + jitter, policy.maxDelayMs);\n}\n\nexport function parseRetryAfter(\n headerValue: string | null,\n now: Date = new Date(),\n): Date | undefined {\n if (!headerValue) {\n return undefined;\n }\n const trimmed = headerValue.trim();\n if (/^\\d+$/.test(trimmed)) {\n return new Date(now.getTime() + Number(trimmed) * 1000);\n }\n const parsed = Date.parse(trimmed);\n if (Number.isNaN(parsed)) {\n return undefined;\n }\n return new Date(parsed);\n}\n\nexport function sleep(ms: number, signal?: AbortSignal): Promise<void> {\n if (signal?.aborted) {\n return Promise.reject(signal.reason ?? new Error('Aborted'));\n }\n return new Promise<void>((resolve, reject) => {\n const onAbort = () => {\n clearTimeout(timer);\n reject(signal!.reason ?? new Error('Aborted'));\n };\n const timer = setTimeout(() => {\n signal?.removeEventListener('abort', onAbort);\n resolve();\n }, ms);\n signal?.addEventListener('abort', onAbort, { once: true });\n });\n}\n","export const HTTP_CLIENT_VERSION = '0.0.0';\n\nexport const DEFAULT_USER_AGENT = `rawdash-connector/${HTTP_CLIENT_VERSION} (+https://rawdash.dev)`;\n\nexport function connectorUserAgent(connectorId: string): string {\n return `rawdash-connector-${connectorId}/${HTTP_CLIENT_VERSION} (+https://rawdash.dev)`;\n}\n","import {\n AuthError,\n ClientBugError,\n HttpClientError,\n RateLimitError,\n TransientError,\n UpstreamBugError,\n errorForStatus,\n} from './errors';\nimport { defaultRetryOn, parseRetryAfter, sleep } from './retry';\nimport type { FetchLike, HttpMethod, HttpRequest, HttpResponse } from './types';\nimport { DEFAULT_USER_AGENT } from './version';\n\nconst DEFAULT_TIMEOUT_MS = 10_000;\nconst DEFAULT_MAX_ATTEMPTS = 3;\nconst DEFAULT_INITIAL_DELAY_MS = 1000;\nconst DEFAULT_MAX_DELAY_MS = 60_000;\nconst OBSERVER_TIMEOUT_MS = 250;\n\nexport interface RequestObservation {\n url: string;\n method: HttpMethod;\n status: number;\n resource: string;\n requestId: string;\n body: unknown;\n}\n\nexport type RequestObserver = (\n event: RequestObservation,\n) => void | Promise<void>;\n\nexport interface RequestOptions {\n fetch?: FetchLike;\n observer?: RequestObserver;\n resource: string;\n requestId?: string;\n}\n\nasync function notifyObserver(\n observer: RequestObserver,\n event: RequestObservation,\n): Promise<void> {\n let result: void | Promise<void>;\n try {\n result = observer(event);\n } catch (err) {\n console.warn('[connector-shared] request observer threw:', err);\n return;\n }\n if (!(result instanceof Promise)) {\n return;\n }\n const guarded = result.catch((err) => {\n console.warn('[connector-shared] request observer rejected:', err);\n });\n let timer: ReturnType<typeof setTimeout> | undefined;\n const timeout = new Promise<void>((resolve) => {\n timer = setTimeout(resolve, OBSERVER_TIMEOUT_MS);\n });\n try {\n await Promise.race([guarded, timeout]);\n } finally {\n if (timer) {\n clearTimeout(timer);\n }\n }\n}\n\nfunction newRequestId(): string {\n const c = (globalThis as { crypto?: { randomUUID?: () => string } }).crypto;\n if (c?.randomUUID) {\n return c.randomUUID();\n }\n return `${Date.now().toString(36)}-${Math.random().toString(36).slice(2, 10)}`;\n}\n\nfunction mergeHeaders(\n defaults: Record<string, string>,\n overrides: Record<string, string> | undefined,\n): Record<string, string> {\n const merged: Record<string, string> = {};\n for (const [k, v] of Object.entries(defaults)) {\n merged[k.toLowerCase()] = v;\n }\n if (overrides) {\n for (const [k, v] of Object.entries(overrides)) {\n merged[k.toLowerCase()] = v;\n }\n }\n return merged;\n}\n\nfunction linkTimeoutSignal(\n parent: AbortSignal | undefined,\n timeoutMs: number,\n): { signal: AbortSignal; cancel: () => void } {\n const controller = new AbortController();\n const onParentAbort = () => {\n controller.abort(parent?.reason);\n };\n if (parent) {\n if (parent.aborted) {\n controller.abort(parent.reason);\n } else {\n parent.addEventListener('abort', onParentAbort, { once: true });\n }\n }\n const timer = setTimeout(() => {\n controller.abort(new Error(`Request timed out after ${timeoutMs}ms`));\n }, timeoutMs);\n return {\n signal: controller.signal,\n cancel: () => {\n clearTimeout(timer);\n if (parent) {\n parent.removeEventListener('abort', onParentAbort);\n }\n },\n };\n}\n\nasync function readBody(res: Response, parseJson: boolean): Promise<unknown> {\n if (res.status === 204 || res.status === 205) {\n return null;\n }\n const contentType = res.headers.get('content-type') ?? '';\n if (parseJson && contentType.includes('application/json')) {\n const text = await res.text();\n if (text.length === 0) {\n return null;\n }\n return JSON.parse(text);\n }\n return res.text();\n}\n\nexport async function request<T = unknown>(\n req: HttpRequest,\n options: RequestOptions,\n): Promise<HttpResponse<T>> {\n const fetchImpl: FetchLike = options.fetch ?? (globalThis.fetch as FetchLike);\n const retry = req.retry ?? {};\n const maxAttempts = retry.maxAttempts ?? DEFAULT_MAX_ATTEMPTS;\n const initialDelayMs = retry.initialDelayMs ?? DEFAULT_INITIAL_DELAY_MS;\n const maxDelayMs = retry.maxDelayMs ?? DEFAULT_MAX_DELAY_MS;\n const retryOn = retry.retryOn ?? defaultRetryOn;\n const timeoutMs = req.timeoutMs ?? DEFAULT_TIMEOUT_MS;\n const parseJson = req.parseJson ?? true;\n\n const headers = mergeHeaders(\n {\n 'User-Agent': DEFAULT_USER_AGENT,\n Accept: 'application/json',\n },\n req.headers,\n );\n\n let lastErr: Error | undefined;\n\n for (let attempt = 0; attempt < maxAttempts; attempt++) {\n req.signal?.throwIfAborted();\n\n const { signal, cancel } = linkTimeoutSignal(req.signal, timeoutMs);\n let res: Response;\n try {\n res = await fetchImpl(req.url, {\n method: req.method ?? 'GET',\n headers,\n body: req.body as RequestInit['body'],\n signal,\n });\n } catch (err) {\n cancel();\n if (req.signal?.aborted) {\n throw req.signal.reason ?? err;\n }\n const error = err instanceof Error ? err : new Error(String(err));\n lastErr = error;\n if (attempt < maxAttempts - 1 && retryOn(null, error)) {\n const delay = computeDelay(attempt, initialDelayMs, maxDelayMs);\n await sleep(delay, req.signal);\n continue;\n }\n throw new TransientError(error.message);\n }\n cancel();\n\n const body = await readBody(res, parseJson);\n const httpResponse: HttpResponse<T> = {\n status: res.status,\n headers: res.headers,\n body: body as T,\n };\n if (req.rateLimit) {\n const state = req.rateLimit.parse(res.headers);\n if (state) {\n httpResponse.rateLimitState = state;\n }\n }\n\n if (options.observer) {\n await notifyObserver(options.observer, {\n url: req.url,\n method: req.method ?? 'GET',\n status: res.status,\n resource: options.resource,\n requestId: options.requestId ?? newRequestId(),\n body,\n });\n }\n\n if (res.ok) {\n return httpResponse;\n }\n\n const retryAfter = parseRetryAfter(res.headers.get('retry-after'));\n const message = `HTTP ${res.status} ${res.statusText} for ${req.method ?? 'GET'} ${req.url}`;\n const err = errorForStatus(message, httpResponse, retryAfter);\n\n if (\n attempt < maxAttempts - 1 &&\n retryOn(res.status, err) &&\n !(err instanceof AuthError) &&\n !(err instanceof ClientBugError)\n ) {\n lastErr = err;\n let delay = computeDelay(attempt, initialDelayMs, maxDelayMs);\n if (err instanceof RateLimitError && retryAfter) {\n const wait = retryAfter.getTime() - Date.now();\n if (wait > 0) {\n delay = Math.min(wait, maxDelayMs);\n }\n }\n await sleep(delay, req.signal);\n continue;\n }\n\n throw err;\n }\n\n throw lastErr ?? new UpstreamBugError('Exhausted retry attempts');\n}\n\nfunction computeDelay(\n attempt: number,\n initialDelayMs: number,\n maxDelayMs: number,\n): number {\n const base = initialDelayMs * 2 ** attempt;\n const jitter = base * 0.25 * Math.random();\n return Math.min(base + jitter, maxDelayMs);\n}\n\nexport { HttpClientError };\n","export interface RateLimitState {\n remaining: number;\n resetAt: Date;\n}\n\nexport interface RateLimitPolicy {\n parse(headers: Headers): RateLimitState | null;\n}\n\nexport interface StandardRateLimitPolicyConfig {\n remainingHeader: string;\n resetHeader: string;\n resetUnit: 's' | 'ms';\n resetFallbackMs?: number;\n}\n\nexport function standardRateLimitPolicy(\n config: StandardRateLimitPolicyConfig,\n): RateLimitPolicy {\n const { remainingHeader, resetHeader, resetUnit, resetFallbackMs } = config;\n const multiplier = resetUnit === 's' ? 1000 : 1;\n return {\n parse(h) {\n const remainingRaw = h.get(remainingHeader);\n if (remainingRaw === null || remainingRaw.trim() === '') {\n return null;\n }\n const remaining = Number(remainingRaw);\n if (!Number.isFinite(remaining)) {\n return null;\n }\n const resetRaw = h.get(resetHeader);\n if (resetRaw === null) {\n if (resetFallbackMs === undefined) {\n return null;\n }\n return {\n remaining,\n resetAt: new Date(Date.now() + resetFallbackMs),\n };\n }\n if (resetRaw.trim() === '') {\n return null;\n }\n const reset = Number(resetRaw);\n if (!Number.isFinite(reset) || reset < 0) {\n return null;\n }\n const resetMs = reset * multiplier;\n if (!Number.isFinite(resetMs)) {\n return null;\n }\n return { remaining, resetAt: new Date(resetMs) };\n },\n };\n}\n","export interface SanitizeAllowedUrlOptions {\n url: string | null;\n host: string;\n pathname: string;\n protocol?: 'https:' | 'http:';\n}\n\nexport function sanitizeAllowedUrl(\n options: SanitizeAllowedUrlOptions,\n): string | null {\n const { url, host, pathname, protocol = 'https:' } = options;\n if (url === null) {\n return null;\n }\n try {\n const u = new URL(url);\n if (u.protocol !== protocol || u.host !== host || u.pathname !== pathname) {\n return null;\n }\n return u.toString();\n } catch {\n return null;\n }\n}\n","export type EpochUnit = 'ms' | 's' | 'iso';\n\nexport function parseEpoch(\n value: number | string | null | undefined,\n unit: EpochUnit,\n): number | null {\n if (value === null || value === undefined) {\n return null;\n }\n if (unit === 'iso') {\n if (typeof value !== 'string') {\n return null;\n }\n const ms = new Date(value).getTime();\n return Number.isFinite(ms) ? ms : null;\n }\n if (typeof value === 'string' && value.trim() === '') {\n return null;\n }\n const n = typeof value === 'number' ? value : Number(value);\n if (!Number.isFinite(n)) {\n return null;\n }\n const result = unit === 's' ? n * 1000 : n;\n return Number.isFinite(result) ? result : null;\n}\n","import { request } from './request';\nimport type { HttpRequest } from './types';\n\nexport function parseLinkHeader(header: string | null): Record<string, string> {\n if (!header) {\n return {};\n }\n const result: Record<string, string> = {};\n for (const part of header.split(',')) {\n const match = part.match(/<([^>]+)>\\s*;\\s*rel=\"([^\"]+)\"/);\n if (match) {\n result[match[2]!] = match[1]!;\n }\n }\n return result;\n}\n\nexport async function* paginateLink<T>(\n initial: HttpRequest,\n parse: (body: unknown) => T[],\n options: { resource: string },\n): AsyncIterable<T> {\n let next: string | null = initial.url;\n while (next) {\n const res: Awaited<ReturnType<typeof request>> = await request(\n {\n ...initial,\n url: next,\n },\n { resource: options.resource },\n );\n for (const item of parse(res.body)) {\n yield item;\n }\n const links = parseLinkHeader(res.headers.get('link'));\n next = links['next'] ?? null;\n }\n}\n\nexport async function* paginateCursor<T>(\n initial: HttpRequest,\n parse: (body: unknown) => { items: T[]; nextCursor: string | null },\n buildNext: (req: HttpRequest, cursor: string) => HttpRequest,\n options: { resource: string },\n): AsyncIterable<T> {\n let req: HttpRequest = initial;\n while (true) {\n const res = await request(req, { resource: options.resource });\n const { items, nextCursor } = parse(res.body);\n for (const item of items) {\n yield item;\n }\n if (!nextCursor) {\n return;\n }\n req = buildNext(req, nextCursor);\n }\n}\n\nexport async function* paginatePage<T>(\n initial: HttpRequest,\n parse: (body: unknown) => { items: T[]; hasMore: boolean },\n buildPage: (req: HttpRequest, page: number) => HttpRequest,\n options: { resource: string },\n): AsyncIterable<T> {\n let page = 1;\n while (true) {\n const req = page === 1 ? initial : buildPage(initial, page);\n const res = await request(req, { resource: options.resource });\n const { items, hasMore } = parse(res.body);\n for (const item of items) {\n yield item;\n }\n if (!hasMore || items.length === 0) {\n return;\n }\n page++;\n }\n}\n","export type LogFields = Record<string, unknown>;\n\nexport interface ConnectorLogger {\n info(event: string, fields?: LogFields): void;\n warn(event: string, fields?: LogFields): void;\n}\n\nexport interface ConnectorLoggerOptions {\n scope: string;\n}\n\nconst MAX_VALUE_LEN = 120;\n\nfunction truncate(s: string, max = MAX_VALUE_LEN): string {\n if (s.length <= max) {\n return s;\n }\n return `${s.slice(0, max - 1)}…`;\n}\n\nfunction formatValue(value: unknown): string {\n if (value === null) {\n return 'null';\n }\n if (value === undefined) {\n return '';\n }\n if (typeof value === 'number' || typeof value === 'boolean') {\n return String(value);\n }\n if (typeof value === 'string') {\n const t = truncate(value);\n if (/[\\s\"=]/.test(t)) {\n return JSON.stringify(t);\n }\n return t;\n }\n if (typeof value === 'bigint') {\n return value.toString();\n }\n let json: string | undefined;\n try {\n json = JSON.stringify(value);\n } catch {\n json = undefined;\n }\n return truncate(json ?? String(value));\n}\n\nexport function formatLogFields(fields?: LogFields): string {\n if (!fields) {\n return '';\n }\n const parts: string[] = [];\n for (const [k, v] of Object.entries(fields)) {\n if (v === undefined) {\n continue;\n }\n parts.push(`${k}=${formatValue(v)}`);\n }\n return parts.length > 0 ? ` ${parts.join(' ')}` : '';\n}\n\nexport function formatLogLine(\n scope: string,\n event: string,\n fields?: LogFields,\n): string {\n return `[${scope}] ${event}${formatLogFields(fields)}`;\n}\n\nexport function createDefaultConnectorLogger(\n opts: ConnectorLoggerOptions,\n): ConnectorLogger {\n return {\n info(event, fields) {\n console.info(formatLogLine(opts.scope, event, fields));\n },\n warn(event, fields) {\n console.warn(formatLogLine(opts.scope, event, fields));\n },\n };\n}\n\nconst NOOP_LOGGER: ConnectorLogger = {\n info() {},\n warn() {},\n};\n\nexport function noopConnectorLogger(): ConnectorLogger {\n return NOOP_LOGGER;\n}\n","import {\n type HttpResponse,\n connectorUserAgent,\n} from '@rawdash/connector-shared';\nimport {\n BaseConnector,\n type ConnectorContext,\n type ConnectorDoc,\n type CredentialsSchema,\n type StorageHandle,\n type SyncOptions,\n type SyncResult,\n defineConfigFields,\n defineConnectorDoc,\n defineResources,\n makeChunkedCursorGuard,\n paginateChunked,\n schemasFromResources,\n selectActivePhases,\n} from '@rawdash/core';\nimport { z } from 'zod';\n\n// ---------------------------------------------------------------------------\n// configFields\n// ---------------------------------------------------------------------------\n\nexport const configFields = defineConfigFields(\n z.object({\n clientId: z.string().min(1).meta({\n label: 'Connected app consumer key',\n description:\n 'Consumer key (client ID) of the Salesforce Connected App used for OAuth 2.0 refresh-token exchange.',\n placeholder: '3MVG9...',\n }),\n clientSecret: z.object({ $secret: z.string().min(1) }).meta({\n label: 'Connected app consumer secret',\n description: 'Consumer secret of the Salesforce Connected App.',\n placeholder: 'SF_CLIENT_SECRET',\n secret: true,\n }),\n refreshToken: z.object({ $secret: z.string().min(1) }).meta({\n label: 'OAuth refresh token',\n description:\n 'OAuth 2.0 refresh token obtained from the Connected App authorization code flow. Stored as a secret.',\n placeholder: 'SF_REFRESH_TOKEN',\n secret: true,\n }),\n instanceUrl: z.string().url().meta({\n label: 'Instance URL',\n description:\n 'Salesforce instance URL, e.g. https://mycompany.my.salesforce.com. Returned alongside the refresh token from the OAuth flow; never use the generic login.salesforce.com URL here.',\n placeholder: 'https://mycompany.my.salesforce.com',\n }),\n apiVersion: z\n .string()\n .regex(/^\\d+\\.\\d+$/)\n .optional()\n .meta({\n label: 'REST API version',\n description:\n 'Salesforce REST API version, e.g. \"59.0\". Defaults to 59.0; bump to pick up newer SOQL semantics.',\n placeholder: '59.0',\n }),\n resources: z\n .array(\n z.enum([\n 'users',\n 'accounts',\n 'leads',\n 'opportunities',\n 'opportunity_events',\n ]),\n )\n .nonempty()\n .optional()\n .meta({\n label: 'Resources',\n description:\n 'Which Salesforce resources to sync. Omit to sync all resources. The Connected App only needs read access for the resources listed here.',\n }),\n }),\n);\n\nexport const doc: ConnectorDoc = defineConnectorDoc({\n displayName: 'Salesforce',\n category: 'sales',\n brandColor: '#00A1E0',\n tagline:\n 'Sync opportunities, opportunity stage-change events, accounts, leads, and users from a Salesforce org for pipeline, forecast, and quota-attainment dashboards.',\n vendor: {\n name: 'Salesforce',\n apiDocs:\n 'https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/',\n website: 'https://www.salesforce.com',\n },\n auth: {\n summary:\n 'OAuth 2.0 with a refresh token issued by a Salesforce Connected App. Requires the consumer key/secret, a refresh token, and the org instance URL.',\n setup: [\n 'In Salesforce, go to Setup → App Manager → New Connected App and check \"Enable OAuth Settings\".',\n 'Set the callback URL to a URL you control (e.g. https://localhost:8080/callback); it only has to be reachable when minting the initial refresh token.',\n 'Under Selected OAuth Scopes add \"Access and manage your data (api)\" and \"Perform requests on your behalf at any time (refresh_token, offline_access)\".',\n 'Save, then copy the Consumer Key (client ID) and Consumer Secret from the connected app detail page.',\n 'Authorize via https://login.salesforce.com/services/oauth2/authorize?response_type=code&client_id=<KEY>&redirect_uri=<URL> and exchange the resulting code at /services/oauth2/token to obtain a refresh token and the org instance_url.',\n 'Use the org instance URL from the token response (e.g. https://mycompany.my.salesforce.com), not login.salesforce.com.',\n 'Store the consumer secret and refresh token as rawdash secrets and reference them as secret(\"SF_CLIENT_SECRET\") and secret(\"SF_REFRESH_TOKEN\").',\n ],\n },\n rateLimit:\n 'Salesforce caps total API calls per org per 24 hours. Responses include a Sforce-Limit-Info header (api-usage=NN/MM); size sync intervals so the daily budget is not exhausted. The shared HTTP client retries on 429 with Retry-After.',\n limitations: [\n 'Custom objects are out of scope for v1; only the standard objects listed above are synced.',\n 'Salesforce Marketing Cloud is tracked under a separate connector.',\n ],\n});\n\nexport interface SalesforceSettings {\n instanceUrl: string;\n apiVersion?: string;\n resources?: readonly SalesforceResource[];\n}\n\n// ---------------------------------------------------------------------------\n// Credentials\n// ---------------------------------------------------------------------------\n\nconst salesforceCredentials = {\n clientId: {\n description: 'Salesforce Connected App consumer key (client ID)',\n auth: 'required' as const,\n },\n clientSecret: {\n description: 'Salesforce Connected App consumer secret',\n auth: 'required' as const,\n },\n refreshToken: {\n description: 'Salesforce OAuth 2.0 refresh token',\n auth: 'required' as const,\n },\n} satisfies CredentialsSchema;\n\ntype SalesforceCredentials = typeof salesforceCredentials;\n\n// ---------------------------------------------------------------------------\n// Phases + cursor\n// ---------------------------------------------------------------------------\n\nconst PHASE_ORDER = [\n 'users',\n 'accounts',\n 'leads',\n 'opportunities',\n 'opportunity_events',\n] as const;\n\ntype SalesforcePhase = (typeof PHASE_ORDER)[number];\n\nexport type SalesforceResource = SalesforcePhase;\n\nconst isSalesforceSyncCursor = makeChunkedCursorGuard(PHASE_ORDER);\n\nconst ENTITY_TYPE_BY_PHASE: Partial<Record<SalesforcePhase, string>> = {\n users: 'salesforce_user',\n accounts: 'salesforce_account',\n leads: 'salesforce_lead',\n opportunities: 'salesforce_opportunity',\n};\n\nconst STAGE_CHANGE_EVENT = 'salesforce_opportunity_stage_change';\n\nconst DEFAULT_API_VERSION = '59.0';\n\n// ---------------------------------------------------------------------------\n// API response types\n// ---------------------------------------------------------------------------\n\ninterface QueryResponse<T> {\n totalSize: number;\n done: boolean;\n nextRecordsUrl?: string;\n records: T[];\n}\n\ninterface OauthTokenResponse {\n access_token: string;\n instance_url?: string;\n}\n\ninterface SalesforceUser {\n Id: string;\n Name: string | null;\n Email: string | null;\n IsActive: boolean;\n}\n\ninterface SalesforceAccount {\n Id: string;\n Name: string | null;\n Industry: string | null;\n AnnualRevenue: number | null;\n OwnerId: string | null;\n CreatedDate: string;\n LastModifiedDate: string;\n}\n\ninterface SalesforceLead {\n Id: string;\n Email: string | null;\n Status: string | null;\n LeadSource: string | null;\n ConvertedDate: string | null;\n CreatedDate: string;\n LastModifiedDate: string;\n}\n\ninterface SalesforceOpportunity {\n Id: string;\n Name: string | null;\n StageName: string | null;\n Amount: number | null;\n CloseDate: string | null;\n OwnerId: string | null;\n Probability: number | null;\n ForecastCategoryName: string | null;\n IsClosed: boolean;\n IsWon: boolean;\n CreatedDate: string;\n LastModifiedDate: string;\n}\n\ninterface SalesforceFieldHistory {\n Id: string;\n OpportunityId: string;\n Field: string;\n OldValue: string | null;\n NewValue: string | null;\n CreatedDate: string;\n CreatedById: string | null;\n}\n\n// ---------------------------------------------------------------------------\n// Zod schemas\n// ---------------------------------------------------------------------------\n\nconst idString = z.string().min(1);\nconst isoDate = z.string().min(1);\n\nconst oauthTokenSchema = z.object({\n access_token: z.string().min(1),\n instance_url: z.string().optional(),\n});\n\nconst userSchema = z.object({\n Id: idString,\n Name: z.string().nullable(),\n Email: z.string().nullable(),\n IsActive: z.boolean(),\n});\n\nconst accountSchema = z.object({\n Id: idString,\n Name: z.string().nullable(),\n Industry: z.string().nullable(),\n AnnualRevenue: z.number().nullable(),\n OwnerId: z.string().nullable(),\n CreatedDate: isoDate,\n LastModifiedDate: isoDate,\n});\n\nconst leadSchema = z.object({\n Id: idString,\n Email: z.string().nullable(),\n Status: z.string().nullable(),\n LeadSource: z.string().nullable(),\n ConvertedDate: z.string().nullable(),\n CreatedDate: isoDate,\n LastModifiedDate: isoDate,\n});\n\nconst opportunitySchema = z.object({\n Id: idString,\n Name: z.string().nullable(),\n StageName: z.string().nullable(),\n Amount: z.number().nullable(),\n CloseDate: z.string().nullable(),\n OwnerId: z.string().nullable(),\n Probability: z.number().nullable(),\n ForecastCategoryName: z.string().nullable(),\n IsClosed: z.boolean(),\n IsWon: z.boolean(),\n CreatedDate: isoDate,\n LastModifiedDate: isoDate,\n});\n\nconst fieldHistorySchema = z.object({\n Id: idString,\n OpportunityId: idString,\n Field: z.string(),\n OldValue: z.string().nullable(),\n NewValue: z.string().nullable(),\n CreatedDate: isoDate,\n CreatedById: z.string().nullable(),\n});\n\n// ---------------------------------------------------------------------------\n// Resources\n// ---------------------------------------------------------------------------\n\nconst salesforceResources = defineResources({\n salesforce_user: {\n shape: 'entity',\n description:\n 'Salesforce users, keyed by user id, with name, email, and active state. Used to attribute opportunities, accounts, and stage changes to owners.',\n endpoint: 'GET /services/data/v{version}/query (SOQL: FROM User)',\n notes: 'Users are backfilled in full on every run; the table is small.',\n fields: [\n { name: 'name', description: 'Full name of the user.' },\n { name: 'email', description: 'User email address.' },\n { name: 'isActive', description: 'Whether the user is active.' },\n ],\n responses: {\n oauth_token: oauthTokenSchema,\n users: z.array(userSchema),\n },\n },\n salesforce_account: {\n shape: 'entity',\n description:\n 'Accounts (companies), keyed by account id, with industry, annual revenue, owner, and creation time.',\n endpoint: 'GET /services/data/v{version}/query (SOQL: FROM Account)',\n notes: 'Upserts by id; incremental syncs filter on LastModifiedDate.',\n fields: [\n { name: 'name', description: 'Account name.' },\n { name: 'industry', description: 'Industry classification.' },\n {\n name: 'annualRevenue',\n description: 'Annual revenue in the org currency.',\n },\n { name: 'ownerId', description: 'User id of the account owner.' },\n {\n name: 'createdAt',\n description: 'Account creation time (Unix ms).',\n },\n ],\n responses: { accounts: z.array(accountSchema) },\n },\n salesforce_lead: {\n shape: 'entity',\n description:\n 'Leads, keyed by lead id, with email, status, source, and conversion time.',\n endpoint: 'GET /services/data/v{version}/query (SOQL: FROM Lead)',\n notes: 'Upserts by id; incremental syncs filter on LastModifiedDate.',\n fields: [\n { name: 'email', description: 'Lead email address.' },\n { name: 'status', description: 'Lead status.' },\n { name: 'source', description: 'Lead source (LeadSource).' },\n {\n name: 'convertedAt',\n description: 'When the lead was converted (Unix ms), if any.',\n },\n { name: 'createdAt', description: 'Lead creation time (Unix ms).' },\n ],\n responses: { leads: z.array(leadSchema) },\n },\n salesforce_opportunity: {\n shape: 'entity',\n description:\n 'Opportunities, keyed by opportunity id, with stage, amount, close date, owner, probability, forecast category, and closed/won flags.',\n endpoint: 'GET /services/data/v{version}/query (SOQL: FROM Opportunity)',\n notes: 'Upserts by id; incremental syncs filter on LastModifiedDate.',\n fields: [\n { name: 'name', description: 'Opportunity name.' },\n { name: 'stage', description: 'Current StageName.' },\n { name: 'amount', description: 'Opportunity amount in org currency.' },\n { name: 'closeDate', description: 'Expected close date (Unix ms).' },\n { name: 'ownerId', description: 'User id of the opportunity owner.' },\n { name: 'probability', description: 'Win probability percentage.' },\n {\n name: 'forecastCategory',\n description: 'Forecast category name.',\n },\n { name: 'isClosed', description: 'Whether the opportunity is closed.' },\n { name: 'isWon', description: 'Whether the opportunity is won.' },\n {\n name: 'createdAt',\n description: 'Opportunity creation time (Unix ms).',\n },\n ],\n responses: { opportunities: z.array(opportunitySchema) },\n },\n salesforce_opportunity_stage_change: {\n shape: 'event',\n description:\n 'Opportunity stage transitions derived from OpportunityFieldHistory rows where Field = StageName. One event per transition, timestamped at the change CreatedDate.',\n endpoint:\n \"GET /services/data/v{version}/query (SOQL: FROM OpportunityFieldHistory WHERE Field = 'StageName')\",\n notes:\n 'Stage-change events are immutable; their scope is only cleared on a full sync so an incremental window does not drop history outside its range.',\n fields: [\n {\n name: 'historyId',\n description: 'OpportunityFieldHistory row id.',\n },\n {\n name: 'opportunityId',\n description: 'Id of the opportunity that changed stage.',\n },\n { name: 'fromStage', description: 'Previous StageName (OldValue).' },\n { name: 'toStage', description: 'New StageName (NewValue).' },\n {\n name: 'actorId',\n description: 'User id who made the change (CreatedById).',\n },\n ],\n responses: { opportunity_events: z.array(fieldHistorySchema) },\n },\n});\n\n// ---------------------------------------------------------------------------\n// SOQL helpers\n// ---------------------------------------------------------------------------\n\nconst PHASE_SOQL: Record<SalesforcePhase, string> = {\n users: 'SELECT Id, Name, Email, IsActive FROM User',\n accounts:\n 'SELECT Id, Name, Industry, AnnualRevenue, OwnerId, CreatedDate, LastModifiedDate FROM Account',\n leads:\n 'SELECT Id, Email, Status, LeadSource, ConvertedDate, CreatedDate, LastModifiedDate FROM Lead',\n opportunities:\n 'SELECT Id, Name, StageName, Amount, CloseDate, OwnerId, Probability, ForecastCategoryName, IsClosed, IsWon, CreatedDate, LastModifiedDate FROM Opportunity',\n opportunity_events:\n \"SELECT Id, OpportunityId, Field, OldValue, NewValue, CreatedDate, CreatedById FROM OpportunityFieldHistory WHERE Field = 'StageName'\",\n};\n\nconst PHASE_TIMESTAMP: Record<SalesforcePhase, string> = {\n users: '',\n accounts: 'LastModifiedDate',\n leads: 'LastModifiedDate',\n opportunities: 'LastModifiedDate',\n opportunity_events: 'CreatedDate',\n};\n\n// Salesforce SOQL accepts ISO 8601 date-time literals without quotes\n// (e.g. 2024-01-01T00:00:00Z). Numeric milliseconds get stripped because the\n// reference grammar specifies whole-second precision for date-time literals.\nfunction soqlDateLiteral(iso: string): string {\n const d = new Date(iso);\n if (Number.isNaN(d.getTime())) {\n return iso;\n }\n return `${d.toISOString().replace(/\\.\\d{3}Z$/, 'Z')}`;\n}\n\nfunction buildPhaseSoql(\n phase: SalesforcePhase,\n since: string | undefined,\n): string {\n const base = PHASE_SOQL[phase];\n const timestampField = PHASE_TIMESTAMP[phase];\n if (!timestampField || !since) {\n // Users have no LastModifiedDate filter on a per-row basis here; full\n // SOQL is cheap and the table is small enough that a backfill on every\n // tick is fine.\n return timestampField\n ? `${base} ORDER BY ${timestampField} ASC`\n : `${base} ORDER BY Id ASC`;\n }\n const literal = soqlDateLiteral(since);\n const connector = base.includes('WHERE') ? 'AND' : 'WHERE';\n return `${base} ${connector} ${timestampField} >= ${literal} ORDER BY ${timestampField} ASC`;\n}\n\n// ---------------------------------------------------------------------------\n// Helpers\n// ---------------------------------------------------------------------------\n\nfunction parseDateMs(value: string | null | undefined): number | null {\n if (value === null || value === undefined || value === '') {\n return null;\n }\n const ms = Date.parse(value);\n return Number.isFinite(ms) ? ms : null;\n}\n\n// ---------------------------------------------------------------------------\n// SalesforceConnector\n// ---------------------------------------------------------------------------\n\nexport class SalesforceConnector extends BaseConnector<\n SalesforceSettings,\n SalesforceCredentials\n> {\n static readonly id = 'salesforce';\n\n static readonly resources = salesforceResources;\n\n static readonly schemas = schemasFromResources(salesforceResources);\n\n static create(input: unknown, ctx?: ConnectorContext): SalesforceConnector {\n const parsed = configFields.parse(input);\n return new SalesforceConnector(\n {\n instanceUrl: parsed.instanceUrl,\n apiVersion: parsed.apiVersion,\n resources: parsed.resources,\n },\n {\n clientId: parsed.clientId,\n clientSecret: parsed.clientSecret,\n refreshToken: parsed.refreshToken,\n },\n ctx,\n );\n }\n\n readonly id = 'salesforce';\n override readonly credentials = salesforceCredentials;\n\n private accessToken: string | null = null;\n\n private apiVersion(): string {\n return this.settings.apiVersion ?? DEFAULT_API_VERSION;\n }\n\n private baseUrl(): string {\n return this.settings.instanceUrl.replace(/\\/+$/, '');\n }\n\n private async refreshAccessToken(signal?: AbortSignal): Promise<string> {\n const body = new URLSearchParams({\n grant_type: 'refresh_token',\n client_id: this.creds.clientId,\n client_secret: this.creds.clientSecret,\n refresh_token: this.creds.refreshToken,\n }).toString();\n const res = await this.post<OauthTokenResponse>(\n `${this.baseUrl()}/services/oauth2/token`,\n {\n resource: 'oauth_token',\n headers: {\n 'Content-Type': 'application/x-www-form-urlencoded',\n 'User-Agent': connectorUserAgent('salesforce'),\n },\n body,\n signal,\n },\n );\n return res.body.access_token;\n }\n\n private async getAccessToken(signal?: AbortSignal): Promise<string> {\n if (!this.accessToken) {\n this.accessToken = await this.refreshAccessToken(signal);\n }\n return this.accessToken;\n }\n\n private async apiGet<T>(\n pathOrUrl: string,\n resource: string,\n signal?: AbortSignal,\n ): Promise<HttpResponse<T>> {\n const url = pathOrUrl.startsWith('http')\n ? pathOrUrl\n : `${this.baseUrl()}${pathOrUrl}`;\n const token = await this.getAccessToken(signal);\n return this.get<T>(url, {\n resource,\n headers: {\n Authorization: `Bearer ${token}`,\n Accept: 'application/json',\n 'User-Agent': connectorUserAgent('salesforce'),\n },\n signal,\n });\n }\n\n // Salesforce returns nextRecordsUrl as a path like\n // \"/services/data/v59.0/query/01g...-2000\". We pass the path back through\n // the cursor verbatim; defensively strip the origin if the server ever\n // returns an absolute URL so the cursor cannot exfiltrate credentials to\n // an attacker-controlled host.\n private sanitizeNextRecordsUrl(value: string | undefined): string | null {\n if (!value) {\n return null;\n }\n if (value.startsWith('/services/data/')) {\n return value;\n }\n try {\n const parsed = new URL(value);\n if (parsed.pathname.startsWith('/services/data/')) {\n return parsed.pathname + parsed.search;\n }\n } catch {\n // ignore — fall through\n }\n return null;\n }\n\n private async fetchPage(\n phase: SalesforcePhase,\n page: string | null,\n options: SyncOptions,\n signal: AbortSignal | undefined,\n ): Promise<{ items: unknown[]; next: string | null }> {\n let path: string;\n if (page) {\n // Resumed cursor pages may have been tampered with; re-run them through\n // the same allowlist used for fresh nextRecordsUrl values so a forged\n // absolute URL can never carry the bearer token to an unintended host.\n const safePage = this.sanitizeNextRecordsUrl(page);\n if (!safePage) {\n throw new Error(`Invalid Salesforce cursor page: ${page}`);\n }\n path = safePage;\n } else {\n const soql = buildPhaseSoql(phase, options.since);\n const url = new URL(\n `${this.baseUrl()}/services/data/v${this.apiVersion()}/query`,\n );\n url.searchParams.set('q', soql);\n path = `${url.pathname}?${url.searchParams.toString()}`;\n }\n const res = await this.apiGet<QueryResponse<unknown>>(path, phase, signal);\n return {\n items: res.body.records,\n next: res.body.done\n ? null\n : this.sanitizeNextRecordsUrl(res.body.nextRecordsUrl),\n };\n }\n\n // ---------------------------------------------------------------------------\n // Writers\n // ---------------------------------------------------------------------------\n\n private async writeUsers(\n storage: StorageHandle,\n items: SalesforceUser[],\n ): Promise<void> {\n for (const u of items) {\n await storage.entity({\n type: 'salesforce_user',\n id: u.Id,\n attributes: {\n name: u.Name,\n email: u.Email,\n isActive: u.IsActive,\n },\n updated_at: 0,\n });\n }\n }\n\n private async writeAccounts(\n storage: StorageHandle,\n items: SalesforceAccount[],\n ): Promise<void> {\n for (const a of items) {\n await storage.entity({\n type: 'salesforce_account',\n id: a.Id,\n attributes: {\n name: a.Name,\n industry: a.Industry,\n annualRevenue: a.AnnualRevenue,\n ownerId: a.OwnerId,\n createdAt: parseDateMs(a.CreatedDate),\n },\n updated_at: parseDateMs(a.LastModifiedDate) ?? 0,\n });\n }\n }\n\n private async writeLeads(\n storage: StorageHandle,\n items: SalesforceLead[],\n ): Promise<void> {\n for (const l of items) {\n await storage.entity({\n type: 'salesforce_lead',\n id: l.Id,\n attributes: {\n email: l.Email,\n status: l.Status,\n source: l.LeadSource,\n convertedAt: parseDateMs(l.ConvertedDate),\n createdAt: parseDateMs(l.CreatedDate),\n },\n updated_at: parseDateMs(l.LastModifiedDate) ?? 0,\n });\n }\n }\n\n private async writeOpportunities(\n storage: StorageHandle,\n items: SalesforceOpportunity[],\n ): Promise<void> {\n for (const o of items) {\n await storage.entity({\n type: 'salesforce_opportunity',\n id: o.Id,\n attributes: {\n name: o.Name,\n stage: o.StageName,\n amount: o.Amount,\n closeDate: parseDateMs(o.CloseDate),\n ownerId: o.OwnerId,\n probability: o.Probability,\n forecastCategory: o.ForecastCategoryName,\n isClosed: o.IsClosed,\n isWon: o.IsWon,\n createdAt: parseDateMs(o.CreatedDate),\n },\n updated_at: parseDateMs(o.LastModifiedDate) ?? 0,\n });\n }\n }\n\n private async writeOpportunityEvents(\n storage: StorageHandle,\n items: SalesforceFieldHistory[],\n ): Promise<void> {\n for (const h of items) {\n const ts = parseDateMs(h.CreatedDate);\n if (ts === null) {\n continue;\n }\n await storage.event({\n name: STAGE_CHANGE_EVENT,\n start_ts: ts,\n end_ts: null,\n attributes: {\n historyId: h.Id,\n opportunityId: h.OpportunityId,\n fromStage: h.OldValue,\n toStage: h.NewValue,\n actorId: h.CreatedById,\n },\n });\n }\n }\n\n private async writePhase(\n storage: StorageHandle,\n phase: SalesforcePhase,\n items: unknown[],\n ): Promise<void> {\n switch (phase) {\n case 'users':\n return this.writeUsers(storage, items as SalesforceUser[]);\n case 'accounts':\n return this.writeAccounts(storage, items as SalesforceAccount[]);\n case 'leads':\n return this.writeLeads(storage, items as SalesforceLead[]);\n case 'opportunities':\n return this.writeOpportunities(\n storage,\n items as SalesforceOpportunity[],\n );\n case 'opportunity_events':\n return this.writeOpportunityEvents(\n storage,\n items as SalesforceFieldHistory[],\n );\n }\n }\n\n private async clearScopeOnFirstPage(\n storage: StorageHandle,\n phase: SalesforcePhase,\n isFull: boolean,\n ): Promise<void> {\n if (phase === 'opportunity_events') {\n // Stage-change events are immutable; only clear on a full sync so an\n // incremental window doesn't drop history outside its range.\n if (isFull) {\n await storage.events([], { names: [STAGE_CHANGE_EVENT] });\n }\n return;\n }\n if (!isFull) {\n return;\n }\n const entityType = ENTITY_TYPE_BY_PHASE[phase];\n if (entityType) {\n await storage.entities([], { types: [entityType] });\n }\n }\n\n async sync(\n options: SyncOptions,\n storage: StorageHandle,\n signal?: AbortSignal,\n ): Promise<SyncResult> {\n const cursor = isSalesforceSyncCursor(options.cursor)\n ? options.cursor\n : undefined;\n const isFull = options.mode === 'full';\n\n const phases = selectActivePhases<SalesforceResource, SalesforcePhase>(\n (r) => r,\n PHASE_ORDER,\n this.settings.resources,\n );\n\n return paginateChunked<SalesforcePhase, string>({\n phases,\n cursor,\n signal,\n logger: this.logger,\n fetchPage: (phase, page, sig) =>\n this.fetchPage(phase, page, options, sig),\n writeBatch: async (phase, items, page) => {\n if (page === null) {\n await this.clearScopeOnFirstPage(storage, phase, isFull);\n }\n await this.writePhase(storage, phase, items);\n },\n });\n }\n}\n","import { SalesforceConnector } from './salesforce';\n\nexport { configFields, doc, SalesforceConnector } from './salesforce';\nexport type { SalesforceSettings, SalesforceResource } from './salesforce';\nexport default SalesforceConnector;\n"],"mappings":";AEAO,IAAM,sBAAsB;AAE5B,IAAM,qBAAqB,qBAAqB,mBAAmB;AAEnE,SAAS,mBAAmB,aAA6B;AAC9D,SAAO,qBAAqB,WAAW,IAAI,mBAAmB;AAChE;;;AOFA;AAAA,EACE;AAAA,EAOA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AACP,SAAS,SAAS;AAMX,IAAM,eAAe;AAAA,EAC1B,EAAE,OAAO;AAAA,IACP,UAAU,EAAE,OAAO,EAAE,IAAI,CAAC,EAAE,KAAK;AAAA,MAC/B,OAAO;AAAA,MACP,aACE;AAAA,MACF,aAAa;AAAA,IACf,CAAC;AAAA,IACD,cAAc,EAAE,OAAO,EAAE,SAAS,EAAE,OAAO,EAAE,IAAI,CAAC,EAAE,CAAC,EAAE,KAAK;AAAA,MAC1D,OAAO;AAAA,MACP,aAAa;AAAA,MACb,aAAa;AAAA,MACb,QAAQ;AAAA,IACV,CAAC;AAAA,IACD,cAAc,EAAE,OAAO,EAAE,SAAS,EAAE,OAAO,EAAE,IAAI,CAAC,EAAE,CAAC,EAAE,KAAK;AAAA,MAC1D,OAAO;AAAA,MACP,aACE;AAAA,MACF,aAAa;AAAA,MACb,QAAQ;AAAA,IACV,CAAC;AAAA,IACD,aAAa,EAAE,OAAO,EAAE,IAAI,EAAE,KAAK;AAAA,MACjC,OAAO;AAAA,MACP,aACE;AAAA,MACF,aAAa;AAAA,IACf,CAAC;AAAA,IACD,YAAY,EACT,OAAO,EACP,MAAM,YAAY,EAClB,SAAS,EACT,KAAK;AAAA,MACJ,OAAO;AAAA,MACP,aACE;AAAA,MACF,aAAa;AAAA,IACf,CAAC;AAAA,IACH,WAAW,EACR;AAAA,MACC,EAAE,KAAK;AAAA,QACL;AAAA,QACA;AAAA,QACA;AAAA,QACA;AAAA,QACA;AAAA,MACF,CAAC;AAAA,IACH,EACC,SAAS,EACT,SAAS,EACT,KAAK;AAAA,MACJ,OAAO;AAAA,MACP,aACE;AAAA,IACJ,CAAC;AAAA,EACL,CAAC;AACH;AAEO,IAAM,MAAoB,mBAAmB;AAAA,EAClD,aAAa;AAAA,EACb,UAAU;AAAA,EACV,YAAY;AAAA,EACZ,SACE;AAAA,EACF,QAAQ;AAAA,IACN,MAAM;AAAA,IACN,SACE;AAAA,IACF,SAAS;AAAA,EACX;AAAA,EACA,MAAM;AAAA,IACJ,SACE;AAAA,IACF,OAAO;AAAA,MACL;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,IACF;AAAA,EACF;AAAA,EACA,WACE;AAAA,EACF,aAAa;AAAA,IACX;AAAA,IACA;AAAA,EACF;AACF,CAAC;AAYD,IAAM,wBAAwB;AAAA,EAC5B,UAAU;AAAA,IACR,aAAa;AAAA,IACb,MAAM;AAAA,EACR;AAAA,EACA,cAAc;AAAA,IACZ,aAAa;AAAA,IACb,MAAM;AAAA,EACR;AAAA,EACA,cAAc;AAAA,IACZ,aAAa;AAAA,IACb,MAAM;AAAA,EACR;AACF;AAQA,IAAM,cAAc;AAAA,EAClB;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF;AAMA,IAAM,yBAAyB,uBAAuB,WAAW;AAEjE,IAAM,uBAAiE;AAAA,EACrE,OAAO;AAAA,EACP,UAAU;AAAA,EACV,OAAO;AAAA,EACP,eAAe;AACjB;AAEA,IAAM,qBAAqB;AAE3B,IAAM,sBAAsB;AA0E5B,IAAM,WAAW,EAAE,OAAO,EAAE,IAAI,CAAC;AACjC,IAAM,UAAU,EAAE,OAAO,EAAE,IAAI,CAAC;AAEhC,IAAM,mBAAmB,EAAE,OAAO;AAAA,EAChC,cAAc,EAAE,OAAO,EAAE,IAAI,CAAC;AAAA,EAC9B,cAAc,EAAE,OAAO,EAAE,SAAS;AACpC,CAAC;AAED,IAAM,aAAa,EAAE,OAAO;AAAA,EAC1B,IAAI;AAAA,EACJ,MAAM,EAAE,OAAO,EAAE,SAAS;AAAA,EAC1B,OAAO,EAAE,OAAO,EAAE,SAAS;AAAA,EAC3B,UAAU,EAAE,QAAQ;AACtB,CAAC;AAED,IAAM,gBAAgB,EAAE,OAAO;AAAA,EAC7B,IAAI;AAAA,EACJ,MAAM,EAAE,OAAO,EAAE,SAAS;AAAA,EAC1B,UAAU,EAAE,OAAO,EAAE,SAAS;AAAA,EAC9B,eAAe,EAAE,OAAO,EAAE,SAAS;AAAA,EACnC,SAAS,EAAE,OAAO,EAAE,SAAS;AAAA,EAC7B,aAAa;AAAA,EACb,kBAAkB;AACpB,CAAC;AAED,IAAM,aAAa,EAAE,OAAO;AAAA,EAC1B,IAAI;AAAA,EACJ,OAAO,EAAE,OAAO,EAAE,SAAS;AAAA,EAC3B,QAAQ,EAAE,OAAO,EAAE,SAAS;AAAA,EAC5B,YAAY,EAAE,OAAO,EAAE,SAAS;AAAA,EAChC,eAAe,EAAE,OAAO,EAAE,SAAS;AAAA,EACnC,aAAa;AAAA,EACb,kBAAkB;AACpB,CAAC;AAED,IAAM,oBAAoB,EAAE,OAAO;AAAA,EACjC,IAAI;AAAA,EACJ,MAAM,EAAE,OAAO,EAAE,SAAS;AAAA,EAC1B,WAAW,EAAE,OAAO,EAAE,SAAS;AAAA,EAC/B,QAAQ,EAAE,OAAO,EAAE,SAAS;AAAA,EAC5B,WAAW,EAAE,OAAO,EAAE,SAAS;AAAA,EAC/B,SAAS,EAAE,OAAO,EAAE,SAAS;AAAA,EAC7B,aAAa,EAAE,OAAO,EAAE,SAAS;AAAA,EACjC,sBAAsB,EAAE,OAAO,EAAE,SAAS;AAAA,EAC1C,UAAU,EAAE,QAAQ;AAAA,EACpB,OAAO,EAAE,QAAQ;AAAA,EACjB,aAAa;AAAA,EACb,kBAAkB;AACpB,CAAC;AAED,IAAM,qBAAqB,EAAE,OAAO;AAAA,EAClC,IAAI;AAAA,EACJ,eAAe;AAAA,EACf,OAAO,EAAE,OAAO;AAAA,EAChB,UAAU,EAAE,OAAO,EAAE,SAAS;AAAA,EAC9B,UAAU,EAAE,OAAO,EAAE,SAAS;AAAA,EAC9B,aAAa;AAAA,EACb,aAAa,EAAE,OAAO,EAAE,SAAS;AACnC,CAAC;AAMD,IAAM,sBAAsB,gBAAgB;AAAA,EAC1C,iBAAiB;AAAA,IACf,OAAO;AAAA,IACP,aACE;AAAA,IACF,UAAU;AAAA,IACV,OAAO;AAAA,IACP,QAAQ;AAAA,MACN,EAAE,MAAM,QAAQ,aAAa,yBAAyB;AAAA,MACtD,EAAE,MAAM,SAAS,aAAa,sBAAsB;AAAA,MACpD,EAAE,MAAM,YAAY,aAAa,8BAA8B;AAAA,IACjE;AAAA,IACA,WAAW;AAAA,MACT,aAAa;AAAA,MACb,OAAO,EAAE,MAAM,UAAU;AAAA,IAC3B;AAAA,EACF;AAAA,EACA,oBAAoB;AAAA,IAClB,OAAO;AAAA,IACP,aACE;AAAA,IACF,UAAU;AAAA,IACV,OAAO;AAAA,IACP,QAAQ;AAAA,MACN,EAAE,MAAM,QAAQ,aAAa,gBAAgB;AAAA,MAC7C,EAAE,MAAM,YAAY,aAAa,2BAA2B;AAAA,MAC5D;AAAA,QACE,MAAM;AAAA,QACN,aAAa;AAAA,MACf;AAAA,MACA,EAAE,MAAM,WAAW,aAAa,gCAAgC;AAAA,MAChE;AAAA,QACE,MAAM;AAAA,QACN,aAAa;AAAA,MACf;AAAA,IACF;AAAA,IACA,WAAW,EAAE,UAAU,EAAE,MAAM,aAAa,EAAE;AAAA,EAChD;AAAA,EACA,iBAAiB;AAAA,IACf,OAAO;AAAA,IACP,aACE;AAAA,IACF,UAAU;AAAA,IACV,OAAO;AAAA,IACP,QAAQ;AAAA,MACN,EAAE,MAAM,SAAS,aAAa,sBAAsB;AAAA,MACpD,EAAE,MAAM,UAAU,aAAa,eAAe;AAAA,MAC9C,EAAE,MAAM,UAAU,aAAa,4BAA4B;AAAA,MAC3D;AAAA,QACE,MAAM;AAAA,QACN,aAAa;AAAA,MACf;AAAA,MACA,EAAE,MAAM,aAAa,aAAa,gCAAgC;AAAA,IACpE;AAAA,IACA,WAAW,EAAE,OAAO,EAAE,MAAM,UAAU,EAAE;AAAA,EAC1C;AAAA,EACA,wBAAwB;AAAA,IACtB,OAAO;AAAA,IACP,aACE;AAAA,IACF,UAAU;AAAA,IACV,OAAO;AAAA,IACP,QAAQ;AAAA,MACN,EAAE,MAAM,QAAQ,aAAa,oBAAoB;AAAA,MACjD,EAAE,MAAM,SAAS,aAAa,qBAAqB;AAAA,MACnD,EAAE,MAAM,UAAU,aAAa,sCAAsC;AAAA,MACrE,EAAE,MAAM,aAAa,aAAa,iCAAiC;AAAA,MACnE,EAAE,MAAM,WAAW,aAAa,oCAAoC;AAAA,MACpE,EAAE,MAAM,eAAe,aAAa,8BAA8B;AAAA,MAClE;AAAA,QACE,MAAM;AAAA,QACN,aAAa;AAAA,MACf;AAAA,MACA,EAAE,MAAM,YAAY,aAAa,qCAAqC;AAAA,MACtE,EAAE,MAAM,SAAS,aAAa,kCAAkC;AAAA,MAChE;AAAA,QACE,MAAM;AAAA,QACN,aAAa;AAAA,MACf;AAAA,IACF;AAAA,IACA,WAAW,EAAE,eAAe,EAAE,MAAM,iBAAiB,EAAE;AAAA,EACzD;AAAA,EACA,qCAAqC;AAAA,IACnC,OAAO;AAAA,IACP,aACE;AAAA,IACF,UACE;AAAA,IACF,OACE;AAAA,IACF,QAAQ;AAAA,MACN;AAAA,QACE,MAAM;AAAA,QACN,aAAa;AAAA,MACf;AAAA,MACA;AAAA,QACE,MAAM;AAAA,QACN,aAAa;AAAA,MACf;AAAA,MACA,EAAE,MAAM,aAAa,aAAa,iCAAiC;AAAA,MACnE,EAAE,MAAM,WAAW,aAAa,4BAA4B;AAAA,MAC5D;AAAA,QACE,MAAM;AAAA,QACN,aAAa;AAAA,MACf;AAAA,IACF;AAAA,IACA,WAAW,EAAE,oBAAoB,EAAE,MAAM,kBAAkB,EAAE;AAAA,EAC/D;AACF,CAAC;AAMD,IAAM,aAA8C;AAAA,EAClD,OAAO;AAAA,EACP,UACE;AAAA,EACF,OACE;AAAA,EACF,eACE;AAAA,EACF,oBACE;AACJ;AAEA,IAAM,kBAAmD;AAAA,EACvD,OAAO;AAAA,EACP,UAAU;AAAA,EACV,OAAO;AAAA,EACP,eAAe;AAAA,EACf,oBAAoB;AACtB;AAKA,SAAS,gBAAgB,KAAqB;AAC5C,QAAM,IAAI,IAAI,KAAK,GAAG;AACtB,MAAI,OAAO,MAAM,EAAE,QAAQ,CAAC,GAAG;AAC7B,WAAO;AAAA,EACT;AACA,SAAO,GAAG,EAAE,YAAY,EAAE,QAAQ,aAAa,GAAG,CAAC;AACrD;AAEA,SAAS,eACP,OACA,OACQ;AACR,QAAM,OAAO,WAAW,KAAK;AAC7B,QAAM,iBAAiB,gBAAgB,KAAK;AAC5C,MAAI,CAAC,kBAAkB,CAAC,OAAO;AAI7B,WAAO,iBACH,GAAG,IAAI,aAAa,cAAc,SAClC,GAAG,IAAI;AAAA,EACb;AACA,QAAM,UAAU,gBAAgB,KAAK;AACrC,QAAM,YAAY,KAAK,SAAS,OAAO,IAAI,QAAQ;AACnD,SAAO,GAAG,IAAI,IAAI,SAAS,IAAI,cAAc,OAAO,OAAO,aAAa,cAAc;AACxF;AAMA,SAAS,YAAY,OAAiD;AACpE,MAAI,UAAU,QAAQ,UAAU,UAAa,UAAU,IAAI;AACzD,WAAO;AAAA,EACT;AACA,QAAM,KAAK,KAAK,MAAM,KAAK;AAC3B,SAAO,OAAO,SAAS,EAAE,IAAI,KAAK;AACpC;AAMO,IAAM,sBAAN,MAAM,6BAA4B,cAGvC;AAAA,EACA,OAAgB,KAAK;AAAA,EAErB,OAAgB,YAAY;AAAA,EAE5B,OAAgB,UAAU,qBAAqB,mBAAmB;AAAA,EAElE,OAAO,OAAO,OAAgB,KAA6C;AACzE,UAAM,SAAS,aAAa,MAAM,KAAK;AACvC,WAAO,IAAI;AAAA,MACT;AAAA,QACE,aAAa,OAAO;AAAA,QACpB,YAAY,OAAO;AAAA,QACnB,WAAW,OAAO;AAAA,MACpB;AAAA,MACA;AAAA,QACE,UAAU,OAAO;AAAA,QACjB,cAAc,OAAO;AAAA,QACrB,cAAc,OAAO;AAAA,MACvB;AAAA,MACA;AAAA,IACF;AAAA,EACF;AAAA,EAES,KAAK;AAAA,EACI,cAAc;AAAA,EAExB,cAA6B;AAAA,EAE7B,aAAqB;AAC3B,WAAO,KAAK,SAAS,cAAc;AAAA,EACrC;AAAA,EAEQ,UAAkB;AACxB,WAAO,KAAK,SAAS,YAAY,QAAQ,QAAQ,EAAE;AAAA,EACrD;AAAA,EAEA,MAAc,mBAAmB,QAAuC;AACtE,UAAM,OAAO,IAAI,gBAAgB;AAAA,MAC/B,YAAY;AAAA,MACZ,WAAW,KAAK,MAAM;AAAA,MACtB,eAAe,KAAK,MAAM;AAAA,MAC1B,eAAe,KAAK,MAAM;AAAA,IAC5B,CAAC,EAAE,SAAS;AACZ,UAAM,MAAM,MAAM,KAAK;AAAA,MACrB,GAAG,KAAK,QAAQ,CAAC;AAAA,MACjB;AAAA,QACE,UAAU;AAAA,QACV,SAAS;AAAA,UACP,gBAAgB;AAAA,UAChB,cAAc,mBAAmB,YAAY;AAAA,QAC/C;AAAA,QACA;AAAA,QACA;AAAA,MACF;AAAA,IACF;AACA,WAAO,IAAI,KAAK;AAAA,EAClB;AAAA,EAEA,MAAc,eAAe,QAAuC;AAClE,QAAI,CAAC,KAAK,aAAa;AACrB,WAAK,cAAc,MAAM,KAAK,mBAAmB,MAAM;AAAA,IACzD;AACA,WAAO,KAAK;AAAA,EACd;AAAA,EAEA,MAAc,OACZ,WACA,UACA,QAC0B;AAC1B,UAAM,MAAM,UAAU,WAAW,MAAM,IACnC,YACA,GAAG,KAAK,QAAQ,CAAC,GAAG,SAAS;AACjC,UAAM,QAAQ,MAAM,KAAK,eAAe,MAAM;AAC9C,WAAO,KAAK,IAAO,KAAK;AAAA,MACtB;AAAA,MACA,SAAS;AAAA,QACP,eAAe,UAAU,KAAK;AAAA,QAC9B,QAAQ;AAAA,QACR,cAAc,mBAAmB,YAAY;AAAA,MAC/C;AAAA,MACA;AAAA,IACF,CAAC;AAAA,EACH;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAOQ,uBAAuB,OAA0C;AACvE,QAAI,CAAC,OAAO;AACV,aAAO;AAAA,IACT;AACA,QAAI,MAAM,WAAW,iBAAiB,GAAG;AACvC,aAAO;AAAA,IACT;AACA,QAAI;AACF,YAAM,SAAS,IAAI,IAAI,KAAK;AAC5B,UAAI,OAAO,SAAS,WAAW,iBAAiB,GAAG;AACjD,eAAO,OAAO,WAAW,OAAO;AAAA,MAClC;AAAA,IACF,QAAQ;AAAA,IAER;AACA,WAAO;AAAA,EACT;AAAA,EAEA,MAAc,UACZ,OACA,MACA,SACA,QACoD;AACpD,QAAI;AACJ,QAAI,MAAM;AAIR,YAAM,WAAW,KAAK,uBAAuB,IAAI;AACjD,UAAI,CAAC,UAAU;AACb,cAAM,IAAI,MAAM,mCAAmC,IAAI,EAAE;AAAA,MAC3D;AACA,aAAO;AAAA,IACT,OAAO;AACL,YAAM,OAAO,eAAe,OAAO,QAAQ,KAAK;AAChD,YAAM,MAAM,IAAI;AAAA,QACd,GAAG,KAAK,QAAQ,CAAC,mBAAmB,KAAK,WAAW,CAAC;AAAA,MACvD;AACA,UAAI,aAAa,IAAI,KAAK,IAAI;AAC9B,aAAO,GAAG,IAAI,QAAQ,IAAI,IAAI,aAAa,SAAS,CAAC;AAAA,IACvD;AACA,UAAM,MAAM,MAAM,KAAK,OAA+B,MAAM,OAAO,MAAM;AACzE,WAAO;AAAA,MACL,OAAO,IAAI,KAAK;AAAA,MAChB,MAAM,IAAI,KAAK,OACX,OACA,KAAK,uBAAuB,IAAI,KAAK,cAAc;AAAA,IACzD;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAMA,MAAc,WACZ,SACA,OACe;AACf,eAAW,KAAK,OAAO;AACrB,YAAM,QAAQ,OAAO;AAAA,QACnB,MAAM;AAAA,QACN,IAAI,EAAE;AAAA,QACN,YAAY;AAAA,UACV,MAAM,EAAE;AAAA,UACR,OAAO,EAAE;AAAA,UACT,UAAU,EAAE;AAAA,QACd;AAAA,QACA,YAAY;AAAA,MACd,CAAC;AAAA,IACH;AAAA,EACF;AAAA,EAEA,MAAc,cACZ,SACA,OACe;AACf,eAAW,KAAK,OAAO;AACrB,YAAM,QAAQ,OAAO;AAAA,QACnB,MAAM;AAAA,QACN,IAAI,EAAE;AAAA,QACN,YAAY;AAAA,UACV,MAAM,EAAE;AAAA,UACR,UAAU,EAAE;AAAA,UACZ,eAAe,EAAE;AAAA,UACjB,SAAS,EAAE;AAAA,UACX,WAAW,YAAY,EAAE,WAAW;AAAA,QACtC;AAAA,QACA,YAAY,YAAY,EAAE,gBAAgB,KAAK;AAAA,MACjD,CAAC;AAAA,IACH;AAAA,EACF;AAAA,EAEA,MAAc,WACZ,SACA,OACe;AACf,eAAW,KAAK,OAAO;AACrB,YAAM,QAAQ,OAAO;AAAA,QACnB,MAAM;AAAA,QACN,IAAI,EAAE;AAAA,QACN,YAAY;AAAA,UACV,OAAO,EAAE;AAAA,UACT,QAAQ,EAAE;AAAA,UACV,QAAQ,EAAE;AAAA,UACV,aAAa,YAAY,EAAE,aAAa;AAAA,UACxC,WAAW,YAAY,EAAE,WAAW;AAAA,QACtC;AAAA,QACA,YAAY,YAAY,EAAE,gBAAgB,KAAK;AAAA,MACjD,CAAC;AAAA,IACH;AAAA,EACF;AAAA,EAEA,MAAc,mBACZ,SACA,OACe;AACf,eAAW,KAAK,OAAO;AACrB,YAAM,QAAQ,OAAO;AAAA,QACnB,MAAM;AAAA,QACN,IAAI,EAAE;AAAA,QACN,YAAY;AAAA,UACV,MAAM,EAAE;AAAA,UACR,OAAO,EAAE;AAAA,UACT,QAAQ,EAAE;AAAA,UACV,WAAW,YAAY,EAAE,SAAS;AAAA,UAClC,SAAS,EAAE;AAAA,UACX,aAAa,EAAE;AAAA,UACf,kBAAkB,EAAE;AAAA,UACpB,UAAU,EAAE;AAAA,UACZ,OAAO,EAAE;AAAA,UACT,WAAW,YAAY,EAAE,WAAW;AAAA,QACtC;AAAA,QACA,YAAY,YAAY,EAAE,gBAAgB,KAAK;AAAA,MACjD,CAAC;AAAA,IACH;AAAA,EACF;AAAA,EAEA,MAAc,uBACZ,SACA,OACe;AACf,eAAW,KAAK,OAAO;AACrB,YAAM,KAAK,YAAY,EAAE,WAAW;AACpC,UAAI,OAAO,MAAM;AACf;AAAA,MACF;AACA,YAAM,QAAQ,MAAM;AAAA,QAClB,MAAM;AAAA,QACN,UAAU;AAAA,QACV,QAAQ;AAAA,QACR,YAAY;AAAA,UACV,WAAW,EAAE;AAAA,UACb,eAAe,EAAE;AAAA,UACjB,WAAW,EAAE;AAAA,UACb,SAAS,EAAE;AAAA,UACX,SAAS,EAAE;AAAA,QACb;AAAA,MACF,CAAC;AAAA,IACH;AAAA,EACF;AAAA,EAEA,MAAc,WACZ,SACA,OACA,OACe;AACf,YAAQ,OAAO;AAAA,MACb,KAAK;AACH,eAAO,KAAK,WAAW,SAAS,KAAyB;AAAA,MAC3D,KAAK;AACH,eAAO,KAAK,cAAc,SAAS,KAA4B;AAAA,MACjE,KAAK;AACH,eAAO,KAAK,WAAW,SAAS,KAAyB;AAAA,MAC3D,KAAK;AACH,eAAO,KAAK;AAAA,UACV;AAAA,UACA;AAAA,QACF;AAAA,MACF,KAAK;AACH,eAAO,KAAK;AAAA,UACV;AAAA,UACA;AAAA,QACF;AAAA,IACJ;AAAA,EACF;AAAA,EAEA,MAAc,sBACZ,SACA,OACA,QACe;AACf,QAAI,UAAU,sBAAsB;AAGlC,UAAI,QAAQ;AACV,cAAM,QAAQ,OAAO,CAAC,GAAG,EAAE,OAAO,CAAC,kBAAkB,EAAE,CAAC;AAAA,MAC1D;AACA;AAAA,IACF;AACA,QAAI,CAAC,QAAQ;AACX;AAAA,IACF;AACA,UAAM,aAAa,qBAAqB,KAAK;AAC7C,QAAI,YAAY;AACd,YAAM,QAAQ,SAAS,CAAC,GAAG,EAAE,OAAO,CAAC,UAAU,EAAE,CAAC;AAAA,IACpD;AAAA,EACF;AAAA,EAEA,MAAM,KACJ,SACA,SACA,QACqB;AACrB,UAAM,SAAS,uBAAuB,QAAQ,MAAM,IAChD,QAAQ,SACR;AACJ,UAAM,SAAS,QAAQ,SAAS;AAEhC,UAAM,SAAS;AAAA,MACb,CAAC,MAAM;AAAA,MACP;AAAA,MACA,KAAK,SAAS;AAAA,IAChB;AAEA,WAAO,gBAAyC;AAAA,MAC9C;AAAA,MACA;AAAA,MACA;AAAA,MACA,QAAQ,KAAK;AAAA,MACb,WAAW,CAAC,OAAO,MAAM,QACvB,KAAK,UAAU,OAAO,MAAM,SAAS,GAAG;AAAA,MAC1C,YAAY,OAAO,OAAO,OAAO,SAAS;AACxC,YAAI,SAAS,MAAM;AACjB,gBAAM,KAAK,sBAAsB,SAAS,OAAO,MAAM;AAAA,QACzD;AACA,cAAM,KAAK,WAAW,SAAS,OAAO,KAAK;AAAA,MAC7C;AAAA,IACF,CAAC;AAAA,EACH;AACF;;;AClzBA,IAAO,gBAAQ;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../../connector-shared/src/errors.ts","../../../connector-shared/src/retry.ts","../../../connector-shared/src/version.ts","../../../connector-shared/src/request.ts","../../../connector-shared/src/rate-limit.ts","../../../connector-shared/src/sanitize.ts","../../../connector-shared/src/epoch.ts","../../../connector-shared/src/pagination.ts","../../../connector-shared/src/logger.ts","../src/salesforce.ts","../src/index.ts"],"sourcesContent":["import type { HttpResponse } from './types';\n\nexport type HttpErrorKind =\n | 'transient'\n | 'rate_limit'\n | 'auth'\n | 'upstream_bug'\n | 'client_bug';\n\nexport abstract class HttpClientError extends Error {\n abstract readonly kind: HttpErrorKind;\n readonly response?: HttpResponse;\n\n constructor(message: string, response?: HttpResponse) {\n super(message);\n this.name = new.target.name;\n this.response = response;\n }\n}\n\nexport class TransientError extends HttpClientError {\n readonly kind = 'transient' as const;\n}\n\nexport class RateLimitError extends HttpClientError {\n readonly kind = 'rate_limit' as const;\n readonly retryAfter?: Date;\n\n constructor(message: string, response?: HttpResponse, retryAfter?: Date) {\n super(message, response);\n this.retryAfter = retryAfter;\n }\n}\n\nexport class AuthError extends HttpClientError {\n readonly kind = 'auth' as const;\n}\n\nexport class UpstreamBugError extends HttpClientError {\n readonly kind = 'upstream_bug' as const;\n}\n\nexport class ClientBugError extends HttpClientError {\n readonly kind = 'client_bug' as const;\n}\n\nexport function classifyStatus(status: number): HttpErrorKind {\n if (status === 429) {\n return 'rate_limit';\n }\n if (status === 401 || status === 403) {\n return 'auth';\n }\n if (status === 408) {\n return 'transient';\n }\n if (status >= 500) {\n return 'upstream_bug';\n }\n if (status >= 400) {\n return 'client_bug';\n }\n return 'client_bug';\n}\n\nexport function errorForStatus(\n message: string,\n response: HttpResponse,\n retryAfter?: Date,\n): HttpClientError {\n const kind = classifyStatus(response.status);\n switch (kind) {\n case 'rate_limit':\n return new RateLimitError(message, response, retryAfter);\n case 'auth':\n return new AuthError(message, response);\n case 'transient':\n return new TransientError(message, response);\n case 'upstream_bug':\n return new UpstreamBugError(message, response);\n case 'client_bug':\n return new ClientBugError(message, response);\n }\n}\n","import { HttpClientError, RateLimitError, TransientError } from './errors';\n\nexport interface RetryPolicy {\n maxAttempts?: number;\n initialDelayMs?: number;\n maxDelayMs?: number;\n retryOn?: (status: number | null, err?: Error) => boolean;\n}\n\nexport const defaultRetryOn = (status: number | null, err?: Error): boolean => {\n if (err instanceof RateLimitError) {\n return true;\n }\n if (err instanceof TransientError) {\n return true;\n }\n if (status === null) {\n return err instanceof Error && !(err instanceof HttpClientError);\n }\n if (status === 408 || status === 429) {\n return true;\n }\n if (status >= 500) {\n return true;\n }\n return false;\n};\n\nexport function backoffDelayMs(\n attempt: number,\n policy: Required<Pick<RetryPolicy, 'initialDelayMs' | 'maxDelayMs'>>,\n): number {\n const base = policy.initialDelayMs * 2 ** attempt;\n const jitter = base * 0.25 * Math.random();\n return Math.min(base + jitter, policy.maxDelayMs);\n}\n\nexport function parseRetryAfter(\n headerValue: string | null,\n now: Date = new Date(),\n): Date | undefined {\n if (!headerValue) {\n return undefined;\n }\n const trimmed = headerValue.trim();\n if (/^\\d+$/.test(trimmed)) {\n return new Date(now.getTime() + Number(trimmed) * 1000);\n }\n const parsed = Date.parse(trimmed);\n if (Number.isNaN(parsed)) {\n return undefined;\n }\n return new Date(parsed);\n}\n\nexport function sleep(ms: number, signal?: AbortSignal): Promise<void> {\n if (signal?.aborted) {\n return Promise.reject(signal.reason ?? new Error('Aborted'));\n }\n return new Promise<void>((resolve, reject) => {\n const onAbort = () => {\n clearTimeout(timer);\n reject(signal!.reason ?? new Error('Aborted'));\n };\n const timer = setTimeout(() => {\n signal?.removeEventListener('abort', onAbort);\n resolve();\n }, ms);\n signal?.addEventListener('abort', onAbort, { once: true });\n });\n}\n","export const HTTP_CLIENT_VERSION = '0.0.0';\n\nexport const DEFAULT_USER_AGENT = `rawdash-connector/${HTTP_CLIENT_VERSION} (+https://rawdash.dev)`;\n\nexport function connectorUserAgent(connectorId: string): string {\n return `rawdash-connector-${connectorId}/${HTTP_CLIENT_VERSION} (+https://rawdash.dev)`;\n}\n","import {\n AuthError,\n ClientBugError,\n HttpClientError,\n RateLimitError,\n TransientError,\n UpstreamBugError,\n errorForStatus,\n} from './errors';\nimport { defaultRetryOn, parseRetryAfter, sleep } from './retry';\nimport type { FetchLike, HttpMethod, HttpRequest, HttpResponse } from './types';\nimport { DEFAULT_USER_AGENT } from './version';\n\nconst DEFAULT_TIMEOUT_MS = 10_000;\nconst DEFAULT_MAX_ATTEMPTS = 3;\nconst DEFAULT_INITIAL_DELAY_MS = 1000;\nconst DEFAULT_MAX_DELAY_MS = 60_000;\nconst OBSERVER_TIMEOUT_MS = 250;\n\nexport interface RequestObservation {\n url: string;\n method: HttpMethod;\n status: number;\n resource: string;\n requestId: string;\n body: unknown;\n}\n\nexport type RequestObserver = (\n event: RequestObservation,\n) => void | Promise<void>;\n\nexport interface RequestOptions {\n fetch?: FetchLike;\n observer?: RequestObserver;\n resource: string;\n requestId?: string;\n}\n\nasync function notifyObserver(\n observer: RequestObserver,\n event: RequestObservation,\n): Promise<void> {\n let result: void | Promise<void>;\n try {\n result = observer(event);\n } catch (err) {\n console.warn('[connector-shared] request observer threw:', err);\n return;\n }\n if (!(result instanceof Promise)) {\n return;\n }\n const guarded = result.catch((err) => {\n console.warn('[connector-shared] request observer rejected:', err);\n });\n let timer: ReturnType<typeof setTimeout> | undefined;\n const timeout = new Promise<void>((resolve) => {\n timer = setTimeout(resolve, OBSERVER_TIMEOUT_MS);\n });\n try {\n await Promise.race([guarded, timeout]);\n } finally {\n if (timer) {\n clearTimeout(timer);\n }\n }\n}\n\nfunction newRequestId(): string {\n const c = (globalThis as { crypto?: { randomUUID?: () => string } }).crypto;\n if (c?.randomUUID) {\n return c.randomUUID();\n }\n return `${Date.now().toString(36)}-${Math.random().toString(36).slice(2, 10)}`;\n}\n\nfunction mergeHeaders(\n defaults: Record<string, string>,\n overrides: Record<string, string> | undefined,\n): Record<string, string> {\n const merged: Record<string, string> = {};\n for (const [k, v] of Object.entries(defaults)) {\n merged[k.toLowerCase()] = v;\n }\n if (overrides) {\n for (const [k, v] of Object.entries(overrides)) {\n merged[k.toLowerCase()] = v;\n }\n }\n return merged;\n}\n\nfunction linkTimeoutSignal(\n parent: AbortSignal | undefined,\n timeoutMs: number,\n): { signal: AbortSignal; cancel: () => void } {\n const controller = new AbortController();\n const onParentAbort = () => {\n controller.abort(parent?.reason);\n };\n if (parent) {\n if (parent.aborted) {\n controller.abort(parent.reason);\n } else {\n parent.addEventListener('abort', onParentAbort, { once: true });\n }\n }\n const timer = setTimeout(() => {\n controller.abort(new Error(`Request timed out after ${timeoutMs}ms`));\n }, timeoutMs);\n return {\n signal: controller.signal,\n cancel: () => {\n clearTimeout(timer);\n if (parent) {\n parent.removeEventListener('abort', onParentAbort);\n }\n },\n };\n}\n\nasync function readBody(res: Response, parseJson: boolean): Promise<unknown> {\n if (res.status === 204 || res.status === 205) {\n return null;\n }\n const contentType = res.headers.get('content-type') ?? '';\n if (parseJson && contentType.includes('application/json')) {\n const text = await res.text();\n if (text.length === 0) {\n return null;\n }\n return JSON.parse(text);\n }\n return res.text();\n}\n\nexport async function request<T = unknown>(\n req: HttpRequest,\n options: RequestOptions,\n): Promise<HttpResponse<T>> {\n const fetchImpl: FetchLike = options.fetch ?? (globalThis.fetch as FetchLike);\n const retry = req.retry ?? {};\n const maxAttempts = retry.maxAttempts ?? DEFAULT_MAX_ATTEMPTS;\n const initialDelayMs = retry.initialDelayMs ?? DEFAULT_INITIAL_DELAY_MS;\n const maxDelayMs = retry.maxDelayMs ?? DEFAULT_MAX_DELAY_MS;\n const retryOn = retry.retryOn ?? defaultRetryOn;\n const timeoutMs = req.timeoutMs ?? DEFAULT_TIMEOUT_MS;\n const parseJson = req.parseJson ?? true;\n\n const headers = mergeHeaders(\n {\n 'User-Agent': DEFAULT_USER_AGENT,\n Accept: 'application/json',\n },\n req.headers,\n );\n\n let lastErr: Error | undefined;\n\n for (let attempt = 0; attempt < maxAttempts; attempt++) {\n req.signal?.throwIfAborted();\n\n const { signal, cancel } = linkTimeoutSignal(req.signal, timeoutMs);\n let res: Response;\n try {\n res = await fetchImpl(req.url, {\n method: req.method ?? 'GET',\n headers,\n body: req.body as RequestInit['body'],\n signal,\n });\n } catch (err) {\n cancel();\n if (req.signal?.aborted) {\n throw req.signal.reason ?? err;\n }\n const error = err instanceof Error ? err : new Error(String(err));\n lastErr = error;\n if (attempt < maxAttempts - 1 && retryOn(null, error)) {\n const delay = computeDelay(attempt, initialDelayMs, maxDelayMs);\n await sleep(delay, req.signal);\n continue;\n }\n throw new TransientError(error.message);\n }\n cancel();\n\n const body = await readBody(res, parseJson);\n const httpResponse: HttpResponse<T> = {\n status: res.status,\n headers: res.headers,\n body: body as T,\n };\n if (req.rateLimit) {\n const state = req.rateLimit.parse(res.headers);\n if (state) {\n httpResponse.rateLimitState = state;\n }\n }\n\n if (options.observer) {\n await notifyObserver(options.observer, {\n url: req.url,\n method: req.method ?? 'GET',\n status: res.status,\n resource: options.resource,\n requestId: options.requestId ?? newRequestId(),\n body,\n });\n }\n\n if (res.ok) {\n return httpResponse;\n }\n\n const retryAfter = parseRetryAfter(res.headers.get('retry-after'));\n const message = `HTTP ${res.status} ${res.statusText} for ${req.method ?? 'GET'} ${req.url}`;\n const err = errorForStatus(message, httpResponse, retryAfter);\n\n if (\n attempt < maxAttempts - 1 &&\n retryOn(res.status, err) &&\n !(err instanceof AuthError) &&\n !(err instanceof ClientBugError)\n ) {\n lastErr = err;\n let delay = computeDelay(attempt, initialDelayMs, maxDelayMs);\n if (err instanceof RateLimitError && retryAfter) {\n const wait = retryAfter.getTime() - Date.now();\n if (wait > 0) {\n delay = Math.min(wait, maxDelayMs);\n }\n }\n await sleep(delay, req.signal);\n continue;\n }\n\n throw err;\n }\n\n throw lastErr ?? new UpstreamBugError('Exhausted retry attempts');\n}\n\nfunction computeDelay(\n attempt: number,\n initialDelayMs: number,\n maxDelayMs: number,\n): number {\n const base = initialDelayMs * 2 ** attempt;\n const jitter = base * 0.25 * Math.random();\n return Math.min(base + jitter, maxDelayMs);\n}\n\nexport { HttpClientError };\n","export interface RateLimitState {\n remaining: number;\n resetAt: Date;\n}\n\nexport interface RateLimitPolicy {\n parse(headers: Headers): RateLimitState | null;\n}\n\nexport interface StandardRateLimitPolicyConfig {\n remainingHeader: string;\n resetHeader: string;\n resetUnit: 's' | 'ms';\n resetFallbackMs?: number;\n}\n\nexport function standardRateLimitPolicy(\n config: StandardRateLimitPolicyConfig,\n): RateLimitPolicy {\n const { remainingHeader, resetHeader, resetUnit, resetFallbackMs } = config;\n const multiplier = resetUnit === 's' ? 1000 : 1;\n return {\n parse(h) {\n const remainingRaw = h.get(remainingHeader);\n if (remainingRaw === null || remainingRaw.trim() === '') {\n return null;\n }\n const remaining = Number(remainingRaw);\n if (!Number.isFinite(remaining)) {\n return null;\n }\n const resetRaw = h.get(resetHeader);\n if (resetRaw === null) {\n if (resetFallbackMs === undefined) {\n return null;\n }\n return {\n remaining,\n resetAt: new Date(Date.now() + resetFallbackMs),\n };\n }\n if (resetRaw.trim() === '') {\n return null;\n }\n const reset = Number(resetRaw);\n if (!Number.isFinite(reset) || reset < 0) {\n return null;\n }\n const resetMs = reset * multiplier;\n if (!Number.isFinite(resetMs)) {\n return null;\n }\n return { remaining, resetAt: new Date(resetMs) };\n },\n };\n}\n","export interface SanitizeAllowedUrlOptions {\n url: string | null;\n host: string;\n pathname: string;\n protocol?: 'https:' | 'http:';\n}\n\nexport function sanitizeAllowedUrl(\n options: SanitizeAllowedUrlOptions,\n): string | null {\n const { url, host, pathname, protocol = 'https:' } = options;\n if (url === null) {\n return null;\n }\n try {\n const u = new URL(url);\n if (u.protocol !== protocol || u.host !== host || u.pathname !== pathname) {\n return null;\n }\n return u.toString();\n } catch {\n return null;\n }\n}\n","export type EpochUnit = 'ms' | 's' | 'iso';\n\nexport function parseEpoch(\n value: number | string | null | undefined,\n unit: EpochUnit,\n): number | null {\n if (value === null || value === undefined) {\n return null;\n }\n if (unit === 'iso') {\n if (typeof value !== 'string') {\n return null;\n }\n const ms = new Date(value).getTime();\n return Number.isFinite(ms) ? ms : null;\n }\n if (typeof value === 'string' && value.trim() === '') {\n return null;\n }\n const n = typeof value === 'number' ? value : Number(value);\n if (!Number.isFinite(n)) {\n return null;\n }\n const result = unit === 's' ? n * 1000 : n;\n return Number.isFinite(result) ? result : null;\n}\n","import { request } from './request';\nimport type { HttpRequest } from './types';\n\nexport function parseLinkHeader(header: string | null): Record<string, string> {\n if (!header) {\n return {};\n }\n const result: Record<string, string> = {};\n for (const part of header.split(',')) {\n const match = part.match(/<([^>]+)>\\s*;\\s*rel=\"([^\"]+)\"/);\n if (match) {\n result[match[2]!] = match[1]!;\n }\n }\n return result;\n}\n\nexport async function* paginateLink<T>(\n initial: HttpRequest,\n parse: (body: unknown) => T[],\n options: { resource: string },\n): AsyncIterable<T> {\n let next: string | null = initial.url;\n while (next) {\n const res: Awaited<ReturnType<typeof request>> = await request(\n {\n ...initial,\n url: next,\n },\n { resource: options.resource },\n );\n for (const item of parse(res.body)) {\n yield item;\n }\n const links = parseLinkHeader(res.headers.get('link'));\n next = links['next'] ?? null;\n }\n}\n\nexport async function* paginateCursor<T>(\n initial: HttpRequest,\n parse: (body: unknown) => { items: T[]; nextCursor: string | null },\n buildNext: (req: HttpRequest, cursor: string) => HttpRequest,\n options: { resource: string },\n): AsyncIterable<T> {\n let req: HttpRequest = initial;\n while (true) {\n const res = await request(req, { resource: options.resource });\n const { items, nextCursor } = parse(res.body);\n for (const item of items) {\n yield item;\n }\n if (!nextCursor) {\n return;\n }\n req = buildNext(req, nextCursor);\n }\n}\n\nexport async function* paginatePage<T>(\n initial: HttpRequest,\n parse: (body: unknown) => { items: T[]; hasMore: boolean },\n buildPage: (req: HttpRequest, page: number) => HttpRequest,\n options: { resource: string },\n): AsyncIterable<T> {\n let page = 1;\n while (true) {\n const req = page === 1 ? initial : buildPage(initial, page);\n const res = await request(req, { resource: options.resource });\n const { items, hasMore } = parse(res.body);\n for (const item of items) {\n yield item;\n }\n if (!hasMore || items.length === 0) {\n return;\n }\n page++;\n }\n}\n","export type LogFields = Record<string, unknown>;\n\nexport interface ConnectorLogger {\n info(event: string, fields?: LogFields): void;\n warn(event: string, fields?: LogFields): void;\n}\n\nexport interface ConnectorLoggerOptions {\n scope: string;\n}\n\nconst MAX_VALUE_LEN = 120;\n\nfunction truncate(s: string, max = MAX_VALUE_LEN): string {\n if (s.length <= max) {\n return s;\n }\n return `${s.slice(0, max - 1)}…`;\n}\n\nfunction formatValue(value: unknown): string {\n if (value === null) {\n return 'null';\n }\n if (value === undefined) {\n return '';\n }\n if (typeof value === 'number' || typeof value === 'boolean') {\n return String(value);\n }\n if (typeof value === 'string') {\n const t = truncate(value);\n if (/[\\s\"=]/.test(t)) {\n return JSON.stringify(t);\n }\n return t;\n }\n if (typeof value === 'bigint') {\n return value.toString();\n }\n let json: string | undefined;\n try {\n json = JSON.stringify(value);\n } catch {\n json = undefined;\n }\n return truncate(json ?? String(value));\n}\n\nexport function formatLogFields(fields?: LogFields): string {\n if (!fields) {\n return '';\n }\n const parts: string[] = [];\n for (const [k, v] of Object.entries(fields)) {\n if (v === undefined) {\n continue;\n }\n parts.push(`${k}=${formatValue(v)}`);\n }\n return parts.length > 0 ? ` ${parts.join(' ')}` : '';\n}\n\nexport function formatLogLine(\n scope: string,\n event: string,\n fields?: LogFields,\n): string {\n return `[${scope}] ${event}${formatLogFields(fields)}`;\n}\n\nexport function createDefaultConnectorLogger(\n opts: ConnectorLoggerOptions,\n): ConnectorLogger {\n return {\n info(event, fields) {\n console.info(formatLogLine(opts.scope, event, fields));\n },\n warn(event, fields) {\n console.warn(formatLogLine(opts.scope, event, fields));\n },\n };\n}\n\nconst NOOP_LOGGER: ConnectorLogger = {\n info() {},\n warn() {},\n};\n\nexport function noopConnectorLogger(): ConnectorLogger {\n return NOOP_LOGGER;\n}\n","import {\n type HttpResponse,\n connectorUserAgent,\n} from '@rawdash/connector-shared';\nimport {\n BaseConnector,\n type ConnectorContext,\n type ConnectorDoc,\n type CredentialsSchema,\n type StorageHandle,\n type SyncOptions,\n type SyncResult,\n defineConfigFields,\n defineConnectorDoc,\n defineResources,\n makeChunkedCursorGuard,\n paginateChunked,\n schemasFromResources,\n selectActivePhases,\n} from '@rawdash/core';\nimport { z } from 'zod';\n\n// ---------------------------------------------------------------------------\n// configFields\n// ---------------------------------------------------------------------------\n\nexport const configFields = defineConfigFields(\n z.object({\n clientId: z.string().min(1).meta({\n label: 'Connected app consumer key',\n description:\n 'Consumer key (client ID) of the Salesforce Connected App used for OAuth 2.0 refresh-token exchange.',\n placeholder: '3MVG9...',\n }),\n clientSecret: z.object({ $secret: z.string().min(1) }).meta({\n label: 'Connected app consumer secret',\n description: 'Consumer secret of the Salesforce Connected App.',\n placeholder: 'SF_CLIENT_SECRET',\n secret: true,\n }),\n refreshToken: z.object({ $secret: z.string().min(1) }).meta({\n label: 'OAuth refresh token',\n description:\n 'OAuth 2.0 refresh token obtained from the Connected App authorization code flow. Stored as a secret.',\n placeholder: 'SF_REFRESH_TOKEN',\n secret: true,\n }),\n instanceUrl: z.string().url().meta({\n label: 'Instance URL',\n description:\n 'Salesforce instance URL, e.g. https://mycompany.my.salesforce.com. Returned alongside the refresh token from the OAuth flow; never use the generic login.salesforce.com URL here.',\n placeholder: 'https://mycompany.my.salesforce.com',\n }),\n apiVersion: z\n .string()\n .regex(/^\\d+\\.\\d+$/)\n .optional()\n .meta({\n label: 'REST API version',\n description:\n 'Salesforce REST API version, e.g. \"59.0\". Defaults to 59.0; bump to pick up newer SOQL semantics.',\n placeholder: '59.0',\n }),\n resources: z\n .array(\n z.enum([\n 'users',\n 'accounts',\n 'leads',\n 'opportunities',\n 'opportunity_events',\n ]),\n )\n .nonempty()\n .optional()\n .meta({\n label: 'Resources',\n description:\n 'Which Salesforce resources to sync. Omit to sync all resources. The Connected App only needs read access for the resources listed here.',\n }),\n }),\n);\n\nexport const doc: ConnectorDoc = defineConnectorDoc({\n displayName: 'Salesforce',\n category: 'sales',\n brandColor: '#00A1E0',\n tagline:\n 'Sync opportunities, opportunity stage-change events, accounts, leads, and users from a Salesforce org for pipeline, forecast, and quota-attainment dashboards.',\n vendor: {\n name: 'Salesforce',\n apiDocs:\n 'https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/',\n website: 'https://www.salesforce.com',\n },\n auth: {\n summary:\n 'OAuth 2.0 with a refresh token issued by a Salesforce Connected App. Requires the consumer key/secret, a refresh token, and the org instance URL.',\n setup: [\n 'In Salesforce, go to Setup → App Manager → New Connected App and check \"Enable OAuth Settings\".',\n 'Set the callback URL to a URL you control (e.g. https://localhost:8080/callback); it only has to be reachable when minting the initial refresh token.',\n 'Under Selected OAuth Scopes add \"Access and manage your data (api)\" and \"Perform requests on your behalf at any time (refresh_token, offline_access)\".',\n 'Save, then copy the Consumer Key (client ID) and Consumer Secret from the connected app detail page.',\n 'Authorize via https://login.salesforce.com/services/oauth2/authorize?response_type=code&client_id=<KEY>&redirect_uri=<URL> and exchange the resulting code at /services/oauth2/token to obtain a refresh token and the org instance_url.',\n 'Use the org instance URL from the token response (e.g. https://mycompany.my.salesforce.com), not login.salesforce.com.',\n 'Store the consumer secret and refresh token as rawdash secrets and reference them as secret(\"SF_CLIENT_SECRET\") and secret(\"SF_REFRESH_TOKEN\").',\n ],\n },\n rateLimit:\n 'Salesforce caps total API calls per org per 24 hours. Responses include a Sforce-Limit-Info header (api-usage=NN/MM); size sync intervals so the daily budget is not exhausted. The shared HTTP client retries on 429 with Retry-After.',\n limitations: [\n 'Custom objects are out of scope for v1; only the standard objects listed above are synced.',\n 'Salesforce Marketing Cloud is tracked under a separate connector.',\n ],\n});\n\nexport interface SalesforceSettings {\n instanceUrl: string;\n apiVersion?: string;\n resources?: readonly SalesforceResource[];\n}\n\n// ---------------------------------------------------------------------------\n// Credentials\n// ---------------------------------------------------------------------------\n\nconst salesforceCredentials = {\n clientId: {\n description: 'Salesforce Connected App consumer key (client ID)',\n auth: 'required' as const,\n },\n clientSecret: {\n description: 'Salesforce Connected App consumer secret',\n auth: 'required' as const,\n },\n refreshToken: {\n description: 'Salesforce OAuth 2.0 refresh token',\n auth: 'required' as const,\n },\n} satisfies CredentialsSchema;\n\ntype SalesforceCredentials = typeof salesforceCredentials;\n\n// ---------------------------------------------------------------------------\n// Phases + cursor\n// ---------------------------------------------------------------------------\n\nconst PHASE_ORDER = [\n 'users',\n 'accounts',\n 'leads',\n 'opportunities',\n 'opportunity_events',\n] as const;\n\ntype SalesforcePhase = (typeof PHASE_ORDER)[number];\n\nexport type SalesforceResource = SalesforcePhase;\n\nconst isSalesforceSyncCursor = makeChunkedCursorGuard(PHASE_ORDER);\n\nconst ENTITY_TYPE_BY_PHASE: Partial<Record<SalesforcePhase, string>> = {\n users: 'salesforce_user',\n accounts: 'salesforce_account',\n leads: 'salesforce_lead',\n opportunities: 'salesforce_opportunity',\n};\n\nconst STAGE_CHANGE_EVENT = 'salesforce_opportunity_stage_change';\n\nconst DEFAULT_API_VERSION = '59.0';\n\n// ---------------------------------------------------------------------------\n// API response types\n// ---------------------------------------------------------------------------\n\ninterface QueryResponse<T> {\n totalSize: number;\n done: boolean;\n nextRecordsUrl?: string;\n records: T[];\n}\n\ninterface OauthTokenResponse {\n access_token: string;\n instance_url?: string;\n}\n\ninterface SalesforceUser {\n Id: string;\n Name: string | null;\n Email: string | null;\n IsActive: boolean;\n}\n\ninterface SalesforceAccount {\n Id: string;\n Name: string | null;\n Industry: string | null;\n AnnualRevenue: number | null;\n OwnerId: string | null;\n CreatedDate: string;\n LastModifiedDate: string;\n}\n\ninterface SalesforceLead {\n Id: string;\n Email: string | null;\n Status: string | null;\n LeadSource: string | null;\n ConvertedDate: string | null;\n CreatedDate: string;\n LastModifiedDate: string;\n}\n\ninterface SalesforceOpportunity {\n Id: string;\n Name: string | null;\n StageName: string | null;\n Amount: number | null;\n CloseDate: string | null;\n OwnerId: string | null;\n Probability: number | null;\n ForecastCategoryName: string | null;\n IsClosed: boolean;\n IsWon: boolean;\n CreatedDate: string;\n LastModifiedDate: string;\n}\n\ninterface SalesforceFieldHistory {\n Id: string;\n OpportunityId: string;\n Field: string;\n OldValue: string | null;\n NewValue: string | null;\n CreatedDate: string;\n CreatedById: string | null;\n}\n\n// ---------------------------------------------------------------------------\n// Zod schemas\n// ---------------------------------------------------------------------------\n\nconst idString = z.string().min(1);\nconst isoDate = z.string().min(1);\n\nconst oauthTokenSchema = z.object({\n access_token: z.string().min(1),\n instance_url: z.string().optional(),\n});\n\nconst userSchema = z.object({\n Id: idString,\n Name: z.string().nullable(),\n Email: z.string().nullable(),\n IsActive: z.boolean(),\n});\n\nconst accountSchema = z.object({\n Id: idString,\n Name: z.string().nullable(),\n Industry: z.string().nullable(),\n AnnualRevenue: z.number().nullable(),\n OwnerId: z.string().nullable(),\n CreatedDate: isoDate,\n LastModifiedDate: isoDate,\n});\n\nconst leadSchema = z.object({\n Id: idString,\n Email: z.string().nullable(),\n Status: z.string().nullable(),\n LeadSource: z.string().nullable(),\n ConvertedDate: z.string().nullable(),\n CreatedDate: isoDate,\n LastModifiedDate: isoDate,\n});\n\nconst opportunitySchema = z.object({\n Id: idString,\n Name: z.string().nullable(),\n StageName: z.string().nullable(),\n Amount: z.number().nullable(),\n CloseDate: z.string().nullable(),\n OwnerId: z.string().nullable(),\n Probability: z.number().nullable(),\n ForecastCategoryName: z.string().nullable(),\n IsClosed: z.boolean(),\n IsWon: z.boolean(),\n CreatedDate: isoDate,\n LastModifiedDate: isoDate,\n});\n\nconst fieldHistorySchema = z.object({\n Id: idString,\n OpportunityId: idString,\n Field: z.string(),\n OldValue: z.string().nullable(),\n NewValue: z.string().nullable(),\n CreatedDate: isoDate,\n CreatedById: z.string().nullable(),\n});\n\n// ---------------------------------------------------------------------------\n// Resources\n// ---------------------------------------------------------------------------\n\nexport const salesforceResources = defineResources({\n salesforce_user: {\n shape: 'entity',\n description:\n 'Salesforce users, keyed by user id, with name, email, and active state. Used to attribute opportunities, accounts, and stage changes to owners.',\n endpoint: 'GET /services/data/v{version}/query (SOQL: FROM User)',\n notes: 'Users are backfilled in full on every run; the table is small.',\n fields: [\n { name: 'name', description: 'Full name of the user.' },\n { name: 'email', description: 'User email address.' },\n { name: 'isActive', description: 'Whether the user is active.' },\n ],\n responses: {\n oauth_token: oauthTokenSchema,\n users: z.array(userSchema),\n },\n },\n salesforce_account: {\n shape: 'entity',\n description:\n 'Accounts (companies), keyed by account id, with industry, annual revenue, owner, and creation time.',\n endpoint: 'GET /services/data/v{version}/query (SOQL: FROM Account)',\n notes: 'Upserts by id; incremental syncs filter on LastModifiedDate.',\n fields: [\n { name: 'name', description: 'Account name.' },\n { name: 'industry', description: 'Industry classification.' },\n {\n name: 'annualRevenue',\n description: 'Annual revenue in the org currency.',\n },\n { name: 'ownerId', description: 'User id of the account owner.' },\n {\n name: 'createdAt',\n description: 'Account creation time (Unix ms).',\n },\n ],\n responses: { accounts: z.array(accountSchema) },\n },\n salesforce_lead: {\n shape: 'entity',\n description:\n 'Leads, keyed by lead id, with email, status, source, and conversion time.',\n endpoint: 'GET /services/data/v{version}/query (SOQL: FROM Lead)',\n notes: 'Upserts by id; incremental syncs filter on LastModifiedDate.',\n fields: [\n { name: 'email', description: 'Lead email address.' },\n { name: 'status', description: 'Lead status.' },\n { name: 'source', description: 'Lead source (LeadSource).' },\n {\n name: 'convertedAt',\n description: 'When the lead was converted (Unix ms), if any.',\n },\n { name: 'createdAt', description: 'Lead creation time (Unix ms).' },\n ],\n responses: { leads: z.array(leadSchema) },\n },\n salesforce_opportunity: {\n shape: 'entity',\n description:\n 'Opportunities, keyed by opportunity id, with stage, amount, close date, owner, probability, forecast category, and closed/won flags.',\n endpoint: 'GET /services/data/v{version}/query (SOQL: FROM Opportunity)',\n notes: 'Upserts by id; incremental syncs filter on LastModifiedDate.',\n fields: [\n { name: 'name', description: 'Opportunity name.' },\n { name: 'stage', description: 'Current StageName.' },\n { name: 'amount', description: 'Opportunity amount in org currency.' },\n { name: 'closeDate', description: 'Expected close date (Unix ms).' },\n { name: 'ownerId', description: 'User id of the opportunity owner.' },\n { name: 'probability', description: 'Win probability percentage.' },\n {\n name: 'forecastCategory',\n description: 'Forecast category name.',\n },\n { name: 'isClosed', description: 'Whether the opportunity is closed.' },\n { name: 'isWon', description: 'Whether the opportunity is won.' },\n {\n name: 'createdAt',\n description: 'Opportunity creation time (Unix ms).',\n },\n ],\n responses: { opportunities: z.array(opportunitySchema) },\n },\n salesforce_opportunity_stage_change: {\n shape: 'event',\n description:\n 'Opportunity stage transitions derived from OpportunityFieldHistory rows where Field = StageName. One event per transition, timestamped at the change CreatedDate.',\n endpoint:\n \"GET /services/data/v{version}/query (SOQL: FROM OpportunityFieldHistory WHERE Field = 'StageName')\",\n notes:\n 'Stage-change events are immutable; their scope is only cleared on a full sync so an incremental window does not drop history outside its range.',\n fields: [\n {\n name: 'historyId',\n description: 'OpportunityFieldHistory row id.',\n },\n {\n name: 'opportunityId',\n description: 'Id of the opportunity that changed stage.',\n },\n { name: 'fromStage', description: 'Previous StageName (OldValue).' },\n { name: 'toStage', description: 'New StageName (NewValue).' },\n {\n name: 'actorId',\n description: 'User id who made the change (CreatedById).',\n },\n ],\n responses: { opportunity_events: z.array(fieldHistorySchema) },\n },\n});\n\n// ---------------------------------------------------------------------------\n// SOQL helpers\n// ---------------------------------------------------------------------------\n\nconst PHASE_SOQL: Record<SalesforcePhase, string> = {\n users: 'SELECT Id, Name, Email, IsActive FROM User',\n accounts:\n 'SELECT Id, Name, Industry, AnnualRevenue, OwnerId, CreatedDate, LastModifiedDate FROM Account',\n leads:\n 'SELECT Id, Email, Status, LeadSource, ConvertedDate, CreatedDate, LastModifiedDate FROM Lead',\n opportunities:\n 'SELECT Id, Name, StageName, Amount, CloseDate, OwnerId, Probability, ForecastCategoryName, IsClosed, IsWon, CreatedDate, LastModifiedDate FROM Opportunity',\n opportunity_events:\n \"SELECT Id, OpportunityId, Field, OldValue, NewValue, CreatedDate, CreatedById FROM OpportunityFieldHistory WHERE Field = 'StageName'\",\n};\n\nconst PHASE_TIMESTAMP: Record<SalesforcePhase, string> = {\n users: '',\n accounts: 'LastModifiedDate',\n leads: 'LastModifiedDate',\n opportunities: 'LastModifiedDate',\n opportunity_events: 'CreatedDate',\n};\n\n// Salesforce SOQL accepts ISO 8601 date-time literals without quotes\n// (e.g. 2024-01-01T00:00:00Z). Numeric milliseconds get stripped because the\n// reference grammar specifies whole-second precision for date-time literals.\nfunction soqlDateLiteral(iso: string): string {\n const d = new Date(iso);\n if (Number.isNaN(d.getTime())) {\n return iso;\n }\n return `${d.toISOString().replace(/\\.\\d{3}Z$/, 'Z')}`;\n}\n\nfunction buildPhaseSoql(\n phase: SalesforcePhase,\n since: string | undefined,\n): string {\n const base = PHASE_SOQL[phase];\n const timestampField = PHASE_TIMESTAMP[phase];\n if (!timestampField || !since) {\n // Users have no LastModifiedDate filter on a per-row basis here; full\n // SOQL is cheap and the table is small enough that a backfill on every\n // tick is fine.\n return timestampField\n ? `${base} ORDER BY ${timestampField} ASC`\n : `${base} ORDER BY Id ASC`;\n }\n const literal = soqlDateLiteral(since);\n const connector = base.includes('WHERE') ? 'AND' : 'WHERE';\n return `${base} ${connector} ${timestampField} >= ${literal} ORDER BY ${timestampField} ASC`;\n}\n\n// ---------------------------------------------------------------------------\n// Helpers\n// ---------------------------------------------------------------------------\n\nfunction parseDateMs(value: string | null | undefined): number | null {\n if (value === null || value === undefined || value === '') {\n return null;\n }\n const ms = Date.parse(value);\n return Number.isFinite(ms) ? ms : null;\n}\n\n// ---------------------------------------------------------------------------\n// SalesforceConnector\n// ---------------------------------------------------------------------------\n\nexport const id = 'salesforce';\n\nexport class SalesforceConnector extends BaseConnector<\n SalesforceSettings,\n SalesforceCredentials\n> {\n static readonly id = id;\n\n static readonly resources = salesforceResources;\n\n static readonly schemas = schemasFromResources(salesforceResources);\n\n static create(input: unknown, ctx?: ConnectorContext): SalesforceConnector {\n const parsed = configFields.parse(input);\n return new SalesforceConnector(\n {\n instanceUrl: parsed.instanceUrl,\n apiVersion: parsed.apiVersion,\n resources: parsed.resources,\n },\n {\n clientId: parsed.clientId,\n clientSecret: parsed.clientSecret,\n refreshToken: parsed.refreshToken,\n },\n ctx,\n );\n }\n\n readonly id = id;\n override readonly credentials = salesforceCredentials;\n\n private accessToken: string | null = null;\n\n private apiVersion(): string {\n return this.settings.apiVersion ?? DEFAULT_API_VERSION;\n }\n\n private baseUrl(): string {\n return this.settings.instanceUrl.replace(/\\/+$/, '');\n }\n\n private async refreshAccessToken(signal?: AbortSignal): Promise<string> {\n const body = new URLSearchParams({\n grant_type: 'refresh_token',\n client_id: this.creds.clientId,\n client_secret: this.creds.clientSecret,\n refresh_token: this.creds.refreshToken,\n }).toString();\n const res = await this.post<OauthTokenResponse>(\n `${this.baseUrl()}/services/oauth2/token`,\n {\n resource: 'oauth_token',\n headers: {\n 'Content-Type': 'application/x-www-form-urlencoded',\n 'User-Agent': connectorUserAgent('salesforce'),\n },\n body,\n signal,\n },\n );\n return res.body.access_token;\n }\n\n private async getAccessToken(signal?: AbortSignal): Promise<string> {\n if (!this.accessToken) {\n this.accessToken = await this.refreshAccessToken(signal);\n }\n return this.accessToken;\n }\n\n private async apiGet<T>(\n pathOrUrl: string,\n resource: string,\n signal?: AbortSignal,\n ): Promise<HttpResponse<T>> {\n const url = pathOrUrl.startsWith('http')\n ? pathOrUrl\n : `${this.baseUrl()}${pathOrUrl}`;\n const token = await this.getAccessToken(signal);\n return this.get<T>(url, {\n resource,\n headers: {\n Authorization: `Bearer ${token}`,\n Accept: 'application/json',\n 'User-Agent': connectorUserAgent('salesforce'),\n },\n signal,\n });\n }\n\n // Salesforce returns nextRecordsUrl as a path like\n // \"/services/data/v59.0/query/01g...-2000\". We pass the path back through\n // the cursor verbatim; defensively strip the origin if the server ever\n // returns an absolute URL so the cursor cannot exfiltrate credentials to\n // an attacker-controlled host.\n private sanitizeNextRecordsUrl(value: string | undefined): string | null {\n if (!value) {\n return null;\n }\n if (value.startsWith('/services/data/')) {\n return value;\n }\n try {\n const parsed = new URL(value);\n if (parsed.pathname.startsWith('/services/data/')) {\n return parsed.pathname + parsed.search;\n }\n } catch {\n // ignore — fall through\n }\n return null;\n }\n\n private async fetchPage(\n phase: SalesforcePhase,\n page: string | null,\n options: SyncOptions,\n signal: AbortSignal | undefined,\n ): Promise<{ items: unknown[]; next: string | null }> {\n let path: string;\n if (page) {\n // Resumed cursor pages may have been tampered with; re-run them through\n // the same allowlist used for fresh nextRecordsUrl values so a forged\n // absolute URL can never carry the bearer token to an unintended host.\n const safePage = this.sanitizeNextRecordsUrl(page);\n if (!safePage) {\n throw new Error(`Invalid Salesforce cursor page: ${page}`);\n }\n path = safePage;\n } else {\n const soql = buildPhaseSoql(phase, options.since);\n const url = new URL(\n `${this.baseUrl()}/services/data/v${this.apiVersion()}/query`,\n );\n url.searchParams.set('q', soql);\n path = `${url.pathname}?${url.searchParams.toString()}`;\n }\n const res = await this.apiGet<QueryResponse<unknown>>(path, phase, signal);\n return {\n items: res.body.records,\n next: res.body.done\n ? null\n : this.sanitizeNextRecordsUrl(res.body.nextRecordsUrl),\n };\n }\n\n // ---------------------------------------------------------------------------\n // Writers\n // ---------------------------------------------------------------------------\n\n private async writeUsers(\n storage: StorageHandle,\n items: SalesforceUser[],\n ): Promise<void> {\n for (const u of items) {\n await storage.entity({\n type: 'salesforce_user',\n id: u.Id,\n attributes: {\n name: u.Name,\n email: u.Email,\n isActive: u.IsActive,\n },\n updated_at: 0,\n });\n }\n }\n\n private async writeAccounts(\n storage: StorageHandle,\n items: SalesforceAccount[],\n ): Promise<void> {\n for (const a of items) {\n await storage.entity({\n type: 'salesforce_account',\n id: a.Id,\n attributes: {\n name: a.Name,\n industry: a.Industry,\n annualRevenue: a.AnnualRevenue,\n ownerId: a.OwnerId,\n createdAt: parseDateMs(a.CreatedDate),\n },\n updated_at: parseDateMs(a.LastModifiedDate) ?? 0,\n });\n }\n }\n\n private async writeLeads(\n storage: StorageHandle,\n items: SalesforceLead[],\n ): Promise<void> {\n for (const l of items) {\n await storage.entity({\n type: 'salesforce_lead',\n id: l.Id,\n attributes: {\n email: l.Email,\n status: l.Status,\n source: l.LeadSource,\n convertedAt: parseDateMs(l.ConvertedDate),\n createdAt: parseDateMs(l.CreatedDate),\n },\n updated_at: parseDateMs(l.LastModifiedDate) ?? 0,\n });\n }\n }\n\n private async writeOpportunities(\n storage: StorageHandle,\n items: SalesforceOpportunity[],\n ): Promise<void> {\n for (const o of items) {\n await storage.entity({\n type: 'salesforce_opportunity',\n id: o.Id,\n attributes: {\n name: o.Name,\n stage: o.StageName,\n amount: o.Amount,\n closeDate: parseDateMs(o.CloseDate),\n ownerId: o.OwnerId,\n probability: o.Probability,\n forecastCategory: o.ForecastCategoryName,\n isClosed: o.IsClosed,\n isWon: o.IsWon,\n createdAt: parseDateMs(o.CreatedDate),\n },\n updated_at: parseDateMs(o.LastModifiedDate) ?? 0,\n });\n }\n }\n\n private async writeOpportunityEvents(\n storage: StorageHandle,\n items: SalesforceFieldHistory[],\n ): Promise<void> {\n for (const h of items) {\n const ts = parseDateMs(h.CreatedDate);\n if (ts === null) {\n continue;\n }\n await storage.event({\n name: STAGE_CHANGE_EVENT,\n start_ts: ts,\n end_ts: null,\n attributes: {\n historyId: h.Id,\n opportunityId: h.OpportunityId,\n fromStage: h.OldValue,\n toStage: h.NewValue,\n actorId: h.CreatedById,\n },\n });\n }\n }\n\n private async writePhase(\n storage: StorageHandle,\n phase: SalesforcePhase,\n items: unknown[],\n ): Promise<void> {\n switch (phase) {\n case 'users':\n return this.writeUsers(storage, items as SalesforceUser[]);\n case 'accounts':\n return this.writeAccounts(storage, items as SalesforceAccount[]);\n case 'leads':\n return this.writeLeads(storage, items as SalesforceLead[]);\n case 'opportunities':\n return this.writeOpportunities(\n storage,\n items as SalesforceOpportunity[],\n );\n case 'opportunity_events':\n return this.writeOpportunityEvents(\n storage,\n items as SalesforceFieldHistory[],\n );\n }\n }\n\n private async clearScopeOnFirstPage(\n storage: StorageHandle,\n phase: SalesforcePhase,\n isFull: boolean,\n ): Promise<void> {\n if (phase === 'opportunity_events') {\n // Stage-change events are immutable; only clear on a full sync so an\n // incremental window doesn't drop history outside its range.\n if (isFull) {\n await storage.events([], { names: [STAGE_CHANGE_EVENT] });\n }\n return;\n }\n if (!isFull) {\n return;\n }\n const entityType = ENTITY_TYPE_BY_PHASE[phase];\n if (entityType) {\n await storage.entities([], { types: [entityType] });\n }\n }\n\n async sync(\n options: SyncOptions,\n storage: StorageHandle,\n signal?: AbortSignal,\n ): Promise<SyncResult> {\n const cursor = isSalesforceSyncCursor(options.cursor)\n ? options.cursor\n : undefined;\n const isFull = options.mode === 'full';\n\n const phases = selectActivePhases<SalesforceResource, SalesforcePhase>(\n (r) => r,\n PHASE_ORDER,\n this.settings.resources,\n );\n\n return paginateChunked<SalesforcePhase, string>({\n phases,\n cursor,\n signal,\n logger: this.logger,\n fetchPage: (phase, page, sig) =>\n this.fetchPage(phase, page, options, sig),\n writeBatch: async (phase, items, page) => {\n if (page === null) {\n await this.clearScopeOnFirstPage(storage, phase, isFull);\n }\n await this.writePhase(storage, phase, items);\n },\n });\n }\n}\n","import { SalesforceConnector } from './salesforce';\n\nexport {\n configFields,\n doc,\n SalesforceConnector,\n salesforceResources as resources,\n id,\n} from './salesforce';\nexport type { SalesforceSettings, SalesforceResource } from './salesforce';\nexport default SalesforceConnector;\n"],"mappings":"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","names":[]}
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rawdash/connector-salesforce",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.17.0",
|
|
4
4
|
"description": "Rawdash connector for Salesforce — opportunities, stage-change events, accounts, leads, and users",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
7
|
+
"sideEffects": false,
|
|
7
8
|
"repository": {
|
|
8
9
|
"type": "git",
|
|
9
10
|
"url": "https://github.com/rawdash/rawdash.git",
|
|
@@ -21,22 +22,22 @@
|
|
|
21
22
|
"import": "./dist/index.js"
|
|
22
23
|
}
|
|
23
24
|
},
|
|
24
|
-
"scripts": {
|
|
25
|
-
"build": "tsup",
|
|
26
|
-
"typecheck": "tsc --noEmit",
|
|
27
|
-
"lint": "eslint src",
|
|
28
|
-
"test": "vitest run"
|
|
29
|
-
},
|
|
30
25
|
"dependencies": {
|
|
31
|
-
"
|
|
32
|
-
"
|
|
26
|
+
"zod": "^4.4.3",
|
|
27
|
+
"@rawdash/core": "0.17.0"
|
|
33
28
|
},
|
|
34
29
|
"devDependencies": {
|
|
35
|
-
"@rawdash/connector-shared": "workspace:*",
|
|
36
|
-
"@rawdash/connector-test-utils": "workspace:*",
|
|
37
30
|
"fast-check": "^4.8.0",
|
|
38
31
|
"tsup": "^8.0.0",
|
|
39
32
|
"typescript": "^5.7.2",
|
|
40
|
-
"vitest": "^4.1.4"
|
|
33
|
+
"vitest": "^4.1.4",
|
|
34
|
+
"@rawdash/connector-test-utils": "0.0.4",
|
|
35
|
+
"@rawdash/connector-shared": "0.3.0"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build": "tsup",
|
|
39
|
+
"typecheck": "tsc --noEmit",
|
|
40
|
+
"lint": "eslint src",
|
|
41
|
+
"test": "vitest run"
|
|
41
42
|
}
|
|
42
|
-
}
|
|
43
|
+
}
|