@salesforce/lds-adapters-revenue-billing-batch 1.302.0 → 1.304.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/src/raml/api.raml CHANGED
@@ -2,7 +2,7 @@
2
2
  securedBy:
3
3
  - OAuth2
4
4
  title: Salesforce Connect API
5
- version: '61.0'
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,42 @@ 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: object
249
+ properties:
250
+ numberOfNextExecutionDates:
251
+ description: Number of next execution dates to be returned for the Batch Job
252
+ type: integer
253
+ startDate:
254
+ description: Batch Job Start Date
255
+ type: string
256
+ timezone:
257
+ description: Preferred Time Zone of the invoice Scheduler
258
+ type: string
259
+ frequencyCadenceOptions:
260
+ description: Frequency Cadence Options for Invoice Scheduler
261
+ type: any
262
+ frequencyCadence:
263
+ description: Frequency Cadence for the Batch Job
264
+ type: string
265
+ enum:
266
+ - Daily
267
+ - Monthly
268
+ - Once
269
+ - Weekly
270
+ preferredTime:
271
+ description: Batch Job Preferred Run Time
272
+ type: string
273
+ CronExecutionDatesOutputRepresentation:
274
+ description: Cron Execution Dates Output Representation
275
+ type: object
276
+ properties:
277
+ executionDates:
278
+ description: Execution Dates
279
+ type: array
280
+ items:
281
+ type: string
245
282
  /commerce/payments/payment-schedulers:
246
283
  post:
247
284
  description: Create Payments Batch Job Scheduler
@@ -310,3 +347,17 @@ types:
310
347
  actionName:
311
348
  type: string
312
349
  required: true
350
+ /connect/billing/batch/cron/execution-dates:
351
+ post:
352
+ displayName: postCronExecutionDates
353
+ description: Get Execution Dates
354
+ responses:
355
+ '200':
356
+ description: Success
357
+ body:
358
+ application/json:
359
+ type: CronExecutionDatesOutputRepresentation
360
+ body:
361
+ application/json:
362
+ type: CronExecutionDatesInputRepresentation
363
+ (oas-body-name): CronExecutionDatesInput
@@ -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