Skip to content

Commit 9b86b95

Browse files
committed
Release 0.33.6
Introduce new dynamic variable $currentRequestName Signed-off-by: Gopal S Akshintala <[email protected]>
1 parent 5a3f19e commit 9b86b95

17 files changed

+4577
-4564
lines changed

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ endif::[]
1616
:pmtemplates: src/integrationTest/resources/pm-templates
1717
:imagesdir: docs/images
1818
:prewrap!:
19-
:revoman-version: 0.33.5
19+
:revoman-version: 0.33.6
2020

2121
'''
2222

buildSrc/src/main/kotlin/Config.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
* ************************************************************************************************
77
*/
88
const val GROUP_ID = "com.salesforce.revoman"
9-
const val VERSION = "0.33.5"
9+
const val VERSION = "0.33.6"
1010
const val ARTIFACT_ID = "revoman"
1111
const val STAGING_PROFILE_ID = "1ea0a23e61ba7d"

src/integrationTest/resources/json/pq-payload.json

Lines changed: 73 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -1,99 +1,99 @@
11
{
2-
"pricingPref": "System",
3-
"doAsync": true,
4-
"graph": {
5-
"graphId": "pq-create-with-bundles",
6-
"records": [
2+
"pricingPref" : "System",
3+
"doAsync" : true,
4+
"graph" : {
5+
"graphId" : "pq-create-with-bundles",
6+
"records" : [
77
{
8-
"referenceId": "refQuote",
9-
"record": {
10-
"attributes": {
11-
"type": "Quote",
12-
"method": "POST"
8+
"referenceId" : "refQuote",
9+
"record" : {
10+
"attributes" : {
11+
"type" : "Quote",
12+
"method" : "POST"
1313
},
14-
"Name": "Quote_{{$randomCompanyName}}",
15-
"OpportunityId": "{{opportunityId}}"
14+
"Name" : "Quote_{{$randomCompanyName}}",
15+
"OpportunityId" : "{{opportunityId}}"
1616
}
1717
},
1818
{
19-
"referenceId": "refQuoteItem1",
20-
"record": {
21-
"attributes": {
22-
"type": "QuoteLineItem",
23-
"method": "POST"
19+
"referenceId" : "refQuoteItem1",
20+
"record" : {
21+
"attributes" : {
22+
"type" : "QuoteLineItem",
23+
"method" : "POST"
2424
},
25-
"QuoteId": "@{refQuote.id}",
26-
"PricebookEntryId": "{{evergreenPriceBookEntryId}}",
27-
"Product2Id": "{{evergreenProductId}}",
28-
"Quantity": 2.0,
29-
"UnitPrice": 25.0,
30-
"PeriodBoundary": "Anniversary",
31-
"BillingFrequency": "Monthly",
32-
"StartDate": "{{$currentDate}}"
25+
"QuoteId" : "@{refQuote.id}",
26+
"PricebookEntryId" : "{{evergreenPriceBookEntryId}}",
27+
"Product2Id" : "{{evergreenProductId}}",
28+
"Quantity" : 2.0,
29+
"UnitPrice" : 25.0,
30+
"PeriodBoundary" : "Anniversary",
31+
"BillingFrequency" : "Monthly",
32+
"StartDate" : "{{$currentDate}}"
3333
}
3434
},
3535
{
36-
"referenceId": "refQuoteItem2",
37-
"record": {
38-
"attributes": {
39-
"type": "QuoteLineItem",
40-
"method": "POST"
36+
"referenceId" : "refQuoteItem2",
37+
"record" : {
38+
"attributes" : {
39+
"type" : "QuoteLineItem",
40+
"method" : "POST"
4141
},
42-
"QuoteId": "@{refQuote.id}",
43-
"PricebookEntryId": "{{termedPriceBookEntryId}}",
44-
"Product2Id": "{{termedProductId}}",
45-
"Quantity": 2.0,
46-
"UnitPrice": 25.0,
47-
"EndDate": "{{$randomFutureDate}}",
48-
"PeriodBoundary": "DayOfPeriod",
49-
"PeriodBoundaryDay": 4,
50-
"BillingFrequency": "Monthly",
51-
"StartDate": "{{$currentDate}}"
42+
"QuoteId" : "@{refQuote.id}",
43+
"PricebookEntryId" : "{{termedPriceBookEntryId}}",
44+
"Product2Id" : "{{termedProductId}}",
45+
"Quantity" : 2.0,
46+
"UnitPrice" : 25.0,
47+
"EndDate" : "{{$randomFutureDate}}",
48+
"PeriodBoundary" : "DayOfPeriod",
49+
"PeriodBoundaryDay" : 4,
50+
"BillingFrequency" : "Monthly",
51+
"StartDate" : "{{$currentDate}}"
5252
}
5353
},
5454
{
55-
"referenceId": "refQuoteItem3",
56-
"record": {
57-
"attributes": {
58-
"type": "QuoteLineItem",
59-
"method": "POST"
55+
"referenceId" : "refQuoteItem3",
56+
"record" : {
57+
"attributes" : {
58+
"type" : "QuoteLineItem",
59+
"method" : "POST"
6060
},
61-
"QuoteId": "@{refQuote.id}",
62-
"PricebookEntryId": "{{oneTimePriceBookEntryId}}",
63-
"Product2Id": "{{oneTimeProductId}}",
64-
"Quantity": 2.0,
65-
"UnitPrice": 25.0,
66-
"StartDate": "{{$currentDate}}",
67-
"BillingFrequency": null,
68-
"PeriodBoundary": null
61+
"QuoteId" : "@{refQuote.id}",
62+
"PricebookEntryId" : "{{oneTimePriceBookEntryId}}",
63+
"Product2Id" : "{{oneTimeProductId}}",
64+
"Quantity" : 2.0,
65+
"UnitPrice" : 25.0,
66+
"StartDate" : "{{$currentDate}}",
67+
"BillingFrequency" : null,
68+
"PeriodBoundary" : null
6969
}
7070
},
7171
{
72-
"referenceId": "refQuoteItem4",
73-
"record": {
74-
"attributes": {
75-
"type": "QuoteLineItem",
76-
"method": "POST"
72+
"referenceId" : "refQuoteItem4",
73+
"record" : {
74+
"attributes" : {
75+
"type" : "QuoteLineItem",
76+
"method" : "POST"
7777
},
78-
"QuoteId": "@{refQuote.id}",
79-
"PricebookEntryId": "{{oneTimePriceBookEntryId}}",
80-
"Product2Id": "{{oneTimeProductId}}",
81-
"Quantity": 2.0,
82-
"UnitPrice": 25.0,
83-
"StartDate": "{{$currentDate}}"
78+
"QuoteId" : "@{refQuote.id}",
79+
"PricebookEntryId" : "{{oneTimePriceBookEntryId}}",
80+
"Product2Id" : "{{oneTimeProductId}}",
81+
"Quantity" : 2.0,
82+
"UnitPrice" : 25.0,
83+
"StartDate" : "{{$currentDate}}"
8484
}
8585
},
8686
{
87-
"referenceId": "refQLR1",
88-
"record": {
89-
"attributes": {
90-
"type": "QuoteLineRelationship",
91-
"method": "POST"
87+
"referenceId" : "refQLR1",
88+
"record" : {
89+
"attributes" : {
90+
"type" : "QuoteLineRelationship",
91+
"method" : "POST"
9292
},
93-
"MainQuoteLineId": "@{refQuoteItem1.id}",
94-
"AssociatedQuoteLineId": "@{refQuoteItem4.id}",
95-
"ProductRelationshipTypeId": "{{productRelationshipTypeId}}",
96-
"AssociatedQuoteLinePricing": "IncludedInBundlePrice"
93+
"MainQuoteLineId" : "@{refQuoteItem1.id}",
94+
"AssociatedQuoteLineId" : "@{refQuoteItem4.id}",
95+
"ProductRelationshipTypeId" : "{{productRelationshipTypeId}}",
96+
"AssociatedQuoteLinePricing" : "IncludedInBundlePrice"
9797
}
9898
}
9999
]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"pricingPref": "SYSTEM"
2+
"pricingPref" : "SYSTEM"
33
}

src/integrationTest/resources/log4j2.xml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@
77
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
88

99
<Configuration status="WARN">
10-
<Appenders>
11-
<Console name="Console" target="SYSTEM_OUT">
12-
<PatternLayout disableAnsi="false" pattern="%d{${LOG_DATEFORMAT_PATTERN:-yyyy-MM-dd HH:mm:ss.SSS}} %highlight{${LOG_LEVEL_PATTERN:-%5p}}{FATAL=red blink, ERROR=red, WARN=yellow bold, INFO=green, DEBUG=green bold, TRACE=blue} %style{}{magenta} [%M] %style{%40C}{cyan} : %m%n${LOG_EXCEPTION_CONVERSION_WORD:-%xEx}" />
13-
</Console>
14-
</Appenders>
15-
<Loggers>
16-
<Root level="INFO">
17-
<AppenderRef ref="Console"/>
18-
</Root>
19-
</Loggers>
10+
<Appenders>
11+
<Console name="Console" target="SYSTEM_OUT">
12+
<PatternLayout disableAnsi="false"
13+
pattern="%d{${LOG_DATEFORMAT_PATTERN:-yyyy-MM-dd HH:mm:ss.SSS}} %highlight{${LOG_LEVEL_PATTERN:-%5p}}{FATAL=red blink, ERROR=red, WARN=yellow bold, INFO=green, DEBUG=green bold, TRACE=blue} %style{}{magenta} [%M] %style{%40C}{cyan} : %m%n${LOG_EXCEPTION_CONVERSION_WORD:-%xEx}"/>
14+
</Console>
15+
</Appenders>
16+
<Loggers>
17+
<Root level="INFO">
18+
<AppenderRef ref="Console"/>
19+
</Root>
20+
</Loggers>
2021
</Configuration>

0 commit comments

Comments
 (0)