@dszp/n8n-nodes-onebill 0.0.1

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.
Files changed (34) hide show
  1. package/README.md +57 -0
  2. package/dist/credentials/OneBillApi.credentials.d.ts +8 -0
  3. package/dist/credentials/OneBillApi.credentials.js +60 -0
  4. package/dist/credentials/OneBillApi.credentials.js.map +1 -0
  5. package/dist/credentials/oneBill.svg +4 -0
  6. package/dist/nodes/OneBill/GenericFunctions.d.ts +6 -0
  7. package/dist/nodes/OneBill/GenericFunctions.js +156 -0
  8. package/dist/nodes/OneBill/GenericFunctions.js.map +1 -0
  9. package/dist/nodes/OneBill/OneBill.node.d.ts +10 -0
  10. package/dist/nodes/OneBill/OneBill.node.js +426 -0
  11. package/dist/nodes/OneBill/OneBill.node.js.map +1 -0
  12. package/dist/nodes/OneBill/OneBill.node.json +18 -0
  13. package/dist/nodes/OneBill/descriptions/InvoiceDescription.d.ts +3 -0
  14. package/dist/nodes/OneBill/descriptions/InvoiceDescription.js +176 -0
  15. package/dist/nodes/OneBill/descriptions/InvoiceDescription.js.map +1 -0
  16. package/dist/nodes/OneBill/descriptions/OrderDescription.d.ts +3 -0
  17. package/dist/nodes/OneBill/descriptions/OrderDescription.js +240 -0
  18. package/dist/nodes/OneBill/descriptions/OrderDescription.js.map +1 -0
  19. package/dist/nodes/OneBill/descriptions/PaymentDescription.d.ts +3 -0
  20. package/dist/nodes/OneBill/descriptions/PaymentDescription.js +209 -0
  21. package/dist/nodes/OneBill/descriptions/PaymentDescription.js.map +1 -0
  22. package/dist/nodes/OneBill/descriptions/ProductDescription.d.ts +3 -0
  23. package/dist/nodes/OneBill/descriptions/ProductDescription.js +260 -0
  24. package/dist/nodes/OneBill/descriptions/ProductDescription.js.map +1 -0
  25. package/dist/nodes/OneBill/descriptions/SubscriberDescription.d.ts +3 -0
  26. package/dist/nodes/OneBill/descriptions/SubscriberDescription.js +453 -0
  27. package/dist/nodes/OneBill/descriptions/SubscriberDescription.js.map +1 -0
  28. package/dist/nodes/OneBill/descriptions/TicketDescription.d.ts +3 -0
  29. package/dist/nodes/OneBill/descriptions/TicketDescription.js +296 -0
  30. package/dist/nodes/OneBill/descriptions/TicketDescription.js.map +1 -0
  31. package/dist/nodes/OneBill/oneBill.svg +4 -0
  32. package/dist/package.json +50 -0
  33. package/dist/tsconfig.tsbuildinfo +1 -0
  34. package/package.json +50 -0
@@ -0,0 +1,453 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.subscriberFields = exports.subscriberOperations = void 0;
4
+ exports.subscriberOperations = [
5
+ {
6
+ displayName: 'Operation',
7
+ name: 'operation',
8
+ type: 'options',
9
+ noDataExpression: true,
10
+ displayOptions: {
11
+ show: {
12
+ resource: ['subscriber'],
13
+ },
14
+ },
15
+ options: [
16
+ {
17
+ name: 'Close',
18
+ value: 'close',
19
+ description: 'Close a subscriber account permanently',
20
+ action: 'Close a subscriber',
21
+ },
22
+ {
23
+ name: 'Create',
24
+ value: 'create',
25
+ description: 'Create a new subscriber',
26
+ action: 'Create a subscriber',
27
+ },
28
+ {
29
+ name: 'Get',
30
+ value: 'get',
31
+ description: 'Retrieve a subscriber',
32
+ action: 'Get a subscriber',
33
+ },
34
+ {
35
+ name: 'Get Balance',
36
+ value: 'getBalance',
37
+ description: 'Retrieve the account balance for a subscriber',
38
+ action: 'Get a subscriber balance',
39
+ },
40
+ {
41
+ name: 'Get Many',
42
+ value: 'getAll',
43
+ description: 'Retrieve a list of subscribers',
44
+ action: 'Get many subscribers',
45
+ },
46
+ {
47
+ name: 'Get Subscriptions',
48
+ value: 'getSubscriptions',
49
+ description: 'Retrieve all subscriptions for a subscriber',
50
+ action: 'Get subscriber subscriptions',
51
+ },
52
+ {
53
+ name: 'Reopen',
54
+ value: 'reopen',
55
+ description: 'Reopen a previously closed subscriber account',
56
+ action: 'Reopen a subscriber',
57
+ },
58
+ {
59
+ name: 'Resume',
60
+ value: 'resume',
61
+ description: 'Resume a suspended subscriber account',
62
+ action: 'Resume a subscriber',
63
+ },
64
+ {
65
+ name: 'Suspend',
66
+ value: 'suspend',
67
+ description: 'Suspend a subscriber account',
68
+ action: 'Suspend a subscriber',
69
+ },
70
+ {
71
+ name: 'Update',
72
+ value: 'update',
73
+ description: 'Update a subscriber',
74
+ action: 'Update a subscriber',
75
+ },
76
+ ],
77
+ default: 'getAll',
78
+ },
79
+ ];
80
+ exports.subscriberFields = [
81
+ {
82
+ displayName: 'Account Name',
83
+ name: 'accountName',
84
+ type: 'string',
85
+ required: true,
86
+ default: '',
87
+ displayOptions: {
88
+ show: {
89
+ resource: ['subscriber'],
90
+ operation: ['create'],
91
+ },
92
+ },
93
+ description: 'The name of the subscriber account',
94
+ },
95
+ {
96
+ displayName: 'First Name',
97
+ name: 'firstName',
98
+ type: 'string',
99
+ required: true,
100
+ default: '',
101
+ displayOptions: {
102
+ show: {
103
+ resource: ['subscriber'],
104
+ operation: ['create'],
105
+ },
106
+ },
107
+ description: 'The first name of the primary contact',
108
+ },
109
+ {
110
+ displayName: 'Last Name',
111
+ name: 'lastName',
112
+ type: 'string',
113
+ required: true,
114
+ default: '',
115
+ displayOptions: {
116
+ show: {
117
+ resource: ['subscriber'],
118
+ operation: ['create'],
119
+ },
120
+ },
121
+ description: 'The last name of the primary contact',
122
+ },
123
+ {
124
+ displayName: 'Email',
125
+ name: 'email',
126
+ type: 'string',
127
+ placeholder: 'e.g. nathan@example.com',
128
+ required: true,
129
+ default: '',
130
+ displayOptions: {
131
+ show: {
132
+ resource: ['subscriber'],
133
+ operation: ['create'],
134
+ },
135
+ },
136
+ description: 'The email address of the primary contact',
137
+ },
138
+ {
139
+ displayName: 'Additional Fields',
140
+ name: 'additionalFields',
141
+ type: 'collection',
142
+ placeholder: 'Add Field',
143
+ default: {},
144
+ displayOptions: {
145
+ show: {
146
+ resource: ['subscriber'],
147
+ operation: ['create'],
148
+ },
149
+ },
150
+ options: [
151
+ {
152
+ displayName: 'Account Type',
153
+ name: 'accountType',
154
+ type: 'string',
155
+ default: '',
156
+ description: 'The type of account (e.g. Residential, Business)',
157
+ },
158
+ {
159
+ displayName: 'Address Line 1',
160
+ name: 'addressLine1',
161
+ type: 'string',
162
+ default: '',
163
+ description: 'The first line of the billing address',
164
+ },
165
+ {
166
+ displayName: 'Address Line 2',
167
+ name: 'addressLine2',
168
+ type: 'string',
169
+ default: '',
170
+ description: 'The second line of the billing address',
171
+ },
172
+ {
173
+ displayName: 'Billing Day of Month',
174
+ name: 'billingDayOfMonth',
175
+ type: 'number',
176
+ default: 1,
177
+ description: 'The day of the month when billing occurs',
178
+ },
179
+ {
180
+ displayName: 'Billing Frequency',
181
+ name: 'billingFrequency',
182
+ type: 'string',
183
+ default: '',
184
+ description: 'The billing frequency (e.g. Monthly, Quarterly, Annually)',
185
+ },
186
+ {
187
+ displayName: 'City',
188
+ name: 'city',
189
+ type: 'string',
190
+ default: '',
191
+ description: 'The city of the billing address',
192
+ },
193
+ {
194
+ displayName: 'Company',
195
+ name: 'company',
196
+ type: 'string',
197
+ default: '',
198
+ description: 'The company name',
199
+ },
200
+ {
201
+ displayName: 'Country',
202
+ name: 'country',
203
+ type: 'string',
204
+ default: '',
205
+ description: 'The country of the billing address',
206
+ },
207
+ {
208
+ displayName: 'Currency',
209
+ name: 'currency',
210
+ type: 'string',
211
+ default: '',
212
+ description: 'The currency code (e.g. USD, EUR)',
213
+ },
214
+ {
215
+ displayName: 'Custom Fields (JSON)',
216
+ name: 'customFields',
217
+ type: 'json',
218
+ default: '{}',
219
+ description: 'Custom fields as a JSON object',
220
+ },
221
+ {
222
+ displayName: 'Invoice Delivery Preference',
223
+ name: 'invoiceDeliveryPreference',
224
+ type: 'string',
225
+ default: '',
226
+ description: 'How invoices should be delivered (e.g. Email, Print)',
227
+ },
228
+ {
229
+ displayName: 'Invoice Format',
230
+ name: 'invoiceFormat',
231
+ type: 'string',
232
+ default: '',
233
+ description: 'The format of invoices (e.g. Summary, Detailed)',
234
+ },
235
+ {
236
+ displayName: 'Phone',
237
+ name: 'phone',
238
+ type: 'string',
239
+ default: '',
240
+ description: 'The phone number of the primary contact',
241
+ },
242
+ {
243
+ displayName: 'State',
244
+ name: 'state',
245
+ type: 'string',
246
+ default: '',
247
+ description: 'The state or province of the billing address',
248
+ },
249
+ {
250
+ displayName: 'ZIP Code',
251
+ name: 'zipCode',
252
+ type: 'string',
253
+ default: '',
254
+ description: 'The postal or ZIP code of the billing address',
255
+ },
256
+ ],
257
+ },
258
+ {
259
+ displayName: 'Account Number',
260
+ name: 'accountNumber',
261
+ type: 'string',
262
+ required: true,
263
+ default: '',
264
+ displayOptions: {
265
+ show: {
266
+ resource: ['subscriber'],
267
+ operation: ['get', 'update', 'close', 'suspend', 'resume', 'reopen', 'getBalance', 'getSubscriptions'],
268
+ },
269
+ },
270
+ description: 'The account number of the subscriber',
271
+ },
272
+ {
273
+ displayName: 'Return All',
274
+ name: 'returnAll',
275
+ type: 'boolean',
276
+ default: false,
277
+ displayOptions: {
278
+ show: {
279
+ resource: ['subscriber'],
280
+ operation: ['getAll'],
281
+ },
282
+ },
283
+ description: 'Whether to return all results or only up to a given limit',
284
+ },
285
+ {
286
+ displayName: 'Limit',
287
+ name: 'limit',
288
+ type: 'number',
289
+ default: 50,
290
+ typeOptions: {
291
+ minValue: 1,
292
+ },
293
+ displayOptions: {
294
+ show: {
295
+ resource: ['subscriber'],
296
+ operation: ['getAll'],
297
+ returnAll: [false],
298
+ },
299
+ },
300
+ description: 'Max number of results to return',
301
+ },
302
+ {
303
+ displayName: 'Filters',
304
+ name: 'filters',
305
+ type: 'collection',
306
+ placeholder: 'Add Filter',
307
+ default: {},
308
+ displayOptions: {
309
+ show: {
310
+ resource: ['subscriber'],
311
+ operation: ['getAll'],
312
+ },
313
+ },
314
+ options: [
315
+ {
316
+ displayName: 'Order By',
317
+ name: 'orderBy',
318
+ type: 'string',
319
+ default: '',
320
+ description: 'The field to sort results by',
321
+ },
322
+ {
323
+ displayName: 'Search By',
324
+ name: 'searchBy',
325
+ type: 'string',
326
+ default: '',
327
+ description: 'The field name to search by',
328
+ },
329
+ {
330
+ displayName: 'Search String',
331
+ name: 'searchString',
332
+ type: 'string',
333
+ default: '',
334
+ description: 'The value to search for',
335
+ },
336
+ {
337
+ displayName: 'Sort Ascending',
338
+ name: 'ascending',
339
+ type: 'boolean',
340
+ default: true,
341
+ description: 'Whether to sort results in ascending order',
342
+ },
343
+ ],
344
+ },
345
+ {
346
+ displayName: 'Update Fields',
347
+ name: 'updateFields',
348
+ type: 'collection',
349
+ placeholder: 'Add Field',
350
+ default: {},
351
+ displayOptions: {
352
+ show: {
353
+ resource: ['subscriber'],
354
+ operation: ['update'],
355
+ },
356
+ },
357
+ options: [
358
+ {
359
+ displayName: 'Account Name',
360
+ name: 'accountName',
361
+ type: 'string',
362
+ default: '',
363
+ description: 'The name of the subscriber account',
364
+ },
365
+ {
366
+ displayName: 'Address Line 1',
367
+ name: 'addressLine1',
368
+ type: 'string',
369
+ default: '',
370
+ description: 'The first line of the billing address',
371
+ },
372
+ {
373
+ displayName: 'Address Line 2',
374
+ name: 'addressLine2',
375
+ type: 'string',
376
+ default: '',
377
+ description: 'The second line of the billing address',
378
+ },
379
+ {
380
+ displayName: 'City',
381
+ name: 'city',
382
+ type: 'string',
383
+ default: '',
384
+ description: 'The city of the billing address',
385
+ },
386
+ {
387
+ displayName: 'Company',
388
+ name: 'company',
389
+ type: 'string',
390
+ default: '',
391
+ description: 'The company name',
392
+ },
393
+ {
394
+ displayName: 'Country',
395
+ name: 'country',
396
+ type: 'string',
397
+ default: '',
398
+ description: 'The country of the billing address',
399
+ },
400
+ {
401
+ displayName: 'Custom Fields (JSON)',
402
+ name: 'customFields',
403
+ type: 'json',
404
+ default: '{}',
405
+ description: 'Custom fields as a JSON object',
406
+ },
407
+ {
408
+ displayName: 'Email',
409
+ name: 'email',
410
+ type: 'string',
411
+ placeholder: 'name@email.com',
412
+ default: '',
413
+ description: 'The email address of the primary contact',
414
+ },
415
+ {
416
+ displayName: 'First Name',
417
+ name: 'firstName',
418
+ type: 'string',
419
+ default: '',
420
+ description: 'The first name of the primary contact',
421
+ },
422
+ {
423
+ displayName: 'Last Name',
424
+ name: 'lastName',
425
+ type: 'string',
426
+ default: '',
427
+ description: 'The last name of the primary contact',
428
+ },
429
+ {
430
+ displayName: 'Phone',
431
+ name: 'phone',
432
+ type: 'string',
433
+ default: '',
434
+ description: 'The phone number of the primary contact',
435
+ },
436
+ {
437
+ displayName: 'State',
438
+ name: 'state',
439
+ type: 'string',
440
+ default: '',
441
+ description: 'The state or province of the billing address',
442
+ },
443
+ {
444
+ displayName: 'ZIP Code',
445
+ name: 'zipCode',
446
+ type: 'string',
447
+ default: '',
448
+ description: 'The postal or ZIP code of the billing address',
449
+ },
450
+ ],
451
+ },
452
+ ];
453
+ //# sourceMappingURL=SubscriberDescription.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SubscriberDescription.js","sourceRoot":"","sources":["../../../../nodes/OneBill/descriptions/SubscriberDescription.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,3 @@
1
+ import type { INodeProperties } from 'n8n-workflow';
2
+ export declare const ticketOperations: INodeProperties[];
3
+ export declare const ticketFields: INodeProperties[];