@salesforce/lds-adapters-revenue-billing-batch 1.301.0 → 1.303.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/dist/es/es2018/revenue-billing-batch.js +357 -183
- package/dist/es/es2018/types/src/generated/adapters/postCronExecutionDates.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +2 -1
- package/dist/es/es2018/types/src/generated/resources/postConnectBillingBatchCronExecutionDates.d.ts +11 -0
- package/dist/es/es2018/types/src/generated/types/CronExecutionDatesInputRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/CronExecutionDatesOutputRepresentation.d.ts +38 -0
- package/package.json +4 -4
- package/sfdc/index.js +361 -184
- package/src/raml/api.raml +32 -1
- package/src/raml/luvio.raml +8 -0
package/src/raml/api.raml
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
securedBy:
|
|
3
3
|
- OAuth2
|
|
4
4
|
title: Salesforce Connect API
|
|
5
|
-
version: '
|
|
5
|
+
version: '62.0'
|
|
6
6
|
mediaType: application/json
|
|
7
7
|
protocols:
|
|
8
8
|
- https
|
|
@@ -38,6 +38,7 @@ types:
|
|
|
38
38
|
type: string
|
|
39
39
|
enum:
|
|
40
40
|
- Equals
|
|
41
|
+
- InList
|
|
41
42
|
value:
|
|
42
43
|
description: Value to be compared
|
|
43
44
|
type: string
|
|
@@ -242,6 +243,22 @@ types:
|
|
|
242
243
|
success:
|
|
243
244
|
description: Flag indicating the overall enqueue status
|
|
244
245
|
type: boolean
|
|
246
|
+
CronExecutionDatesInputRepresentation:
|
|
247
|
+
description: Cron Execution Dates Input Representation
|
|
248
|
+
type: ScheduleOptionsInputRepresentation
|
|
249
|
+
properties:
|
|
250
|
+
numberOfNextExecutionDates:
|
|
251
|
+
description: Number of next execution dates to be returned for the Batch Job
|
|
252
|
+
type: integer
|
|
253
|
+
CronExecutionDatesOutputRepresentation:
|
|
254
|
+
description: Cron Execution Dates Output Representation
|
|
255
|
+
type: object
|
|
256
|
+
properties:
|
|
257
|
+
executionDates:
|
|
258
|
+
description: Execution Dates
|
|
259
|
+
type: array
|
|
260
|
+
items:
|
|
261
|
+
type: string
|
|
245
262
|
/commerce/payments/payment-schedulers:
|
|
246
263
|
post:
|
|
247
264
|
description: Create Payments Batch Job Scheduler
|
|
@@ -310,3 +327,17 @@ types:
|
|
|
310
327
|
actionName:
|
|
311
328
|
type: string
|
|
312
329
|
required: true
|
|
330
|
+
/connect/billing/batch/cron/execution-dates:
|
|
331
|
+
post:
|
|
332
|
+
displayName: postCronExecutionDates
|
|
333
|
+
description: Get Execution Dates
|
|
334
|
+
responses:
|
|
335
|
+
'200':
|
|
336
|
+
description: Success
|
|
337
|
+
body:
|
|
338
|
+
application/json:
|
|
339
|
+
type: CronExecutionDatesOutputRepresentation
|
|
340
|
+
body:
|
|
341
|
+
application/json:
|
|
342
|
+
type: CronExecutionDatesInputRepresentation
|
|
343
|
+
(oas-body-name): CronExecutionDatesInput
|
package/src/raml/luvio.raml
CHANGED
|
@@ -23,6 +23,10 @@ types:
|
|
|
23
23
|
(luvio.ttl): 1000
|
|
24
24
|
(luvio.key):
|
|
25
25
|
requestIdentifier: requestIdentifier
|
|
26
|
+
CronExecutionDatesOutputRepresentation:
|
|
27
|
+
(luvio.key):
|
|
28
|
+
executionDates: executionDates
|
|
29
|
+
(luvio.ttl): 1000
|
|
26
30
|
|
|
27
31
|
/commerce/payments/payment-schedulers:
|
|
28
32
|
post:
|
|
@@ -338,3 +342,7 @@ types:
|
|
|
338
342
|
post:
|
|
339
343
|
(luvio.adapter):
|
|
340
344
|
name: postBatchInvoiceDocGen
|
|
345
|
+
/connect/billing/batch/cron/execution-dates:
|
|
346
|
+
post:
|
|
347
|
+
(luvio.adapter):
|
|
348
|
+
name: postCronExecutionDates
|