Skip to content
This repository has been archived by the owner on Mar 13, 2021. It is now read-only.

Commit

Permalink
DX-414: updated scaffolding apps
Browse files Browse the repository at this point in the history
  • Loading branch information
rkrauskopf committed Oct 2, 2020
1 parent 5b4b433 commit 79f5b19
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ module.exports = {
name: "Example Delivery Confirmation",
description:
"This is an example delivery confirmation. Please remove and define your own.",
type: "delivery",
code: "edc",
type: "delivery"
};
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
"id": "<%- _uuidv4 %>",
"name": "Example Delivery Confirmation",
"description": "This is an example delivery confirmation. Please remove and define your own.",
"code": "edc",
"type": "delivery"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ id: "<%- _uuidv4 %>"
name: Example Delivery Confirmation
description: This is an example delivery confirmation. Please remove and define
your own.
code: edc
type: delivery
1 change: 1 addition & 0 deletions templates/carrier/definitions/example-delivery-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
module.exports = {
id: "<%- _uuidv4 %>",
name: "Example Delivery Service",
code: "eds",
description:
"This is an example delivery service. Please remove and define your own.",
deliveryConfirmations: ["./example-delivery-confirmation.js"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"id": "<%- _uuidv4 %>",
"name": "Example Delivery Service",
"description": "This is an example delivery service. Please remove and define your own.",
"code": "eds",
"deliveryConfirmations": ["./example-delivery-confirmation.json"],
"isInsurable": true,
"manifestType": "digital",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
id: "<%- _uuidv4 %>"
name: Example Delivery Service
description: This is an example delivery service. Please remove and define your own.
code: eds
deliveryConfirmations:
- ./example-delivery-confirmation.yaml
manifestType: digital
Expand Down
1 change: 1 addition & 0 deletions templates/carrier/definitions/example-packaging.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ module.exports = {
description:
"Your own box. Cannot be longer than 36 inches or weigh more than 150 pounds",
requiresWeight: true,
code: "box",
requiresDimensions: true,
};
1 change: 1 addition & 0 deletions templates/carrier/definitions/example-packaging.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"id": "<%- _uuidv4 %>",
"name": "Box",
"description": "Your own box. Cannot be longer than 36 inches or weigh more than 150 pounds",
"code": "box",
"requiresWeight": true,
"requiresDimensions": true
}
1 change: 1 addition & 0 deletions templates/carrier/definitions/example-packaging.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { PackagingDefinition } from "@shipengine/connect";
const examplePackaging: PackagingDefinition = {
id: "<%- _uuidv4 %>",
name: "Box",
code: "box",
description:
"Your own box. Cannot be longer than 36 inches or weigh more than 150 pounds",
requiresWeight: true,
Expand Down
1 change: 1 addition & 0 deletions templates/carrier/definitions/example-packaging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ name: Box
description:
Your own box. Cannot be longer than 36 inches or weigh more than 150
pounds
code: box
requiresWeight: true
requiresDimensions: true

0 comments on commit 79f5b19

Please sign in to comment.