Skip to content

L2 config #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 23 commits into
base: draft
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
7cb2f3b
Examples and implementation guide for EV Charging
Aug 31, 2023
5ae30db
Updating examples in the yaml file
Aug 31, 2023
5e39f84
Merge pull request #10 from shenoyninad/release-v0.2.0
Sep 1, 2023
04d0c33
Update README.md
Sep 1, 2023
d876b71
Update README.md
Sep 1, 2023
fcc1c90
Update README.md
Sep 1, 2023
8d0dfdd
Update README.md
Sep 25, 2023
5647343
Update README.md
Sep 25, 2023
bfcab0a
Merge pull request #11 from beckn/release-v0.2.0
Sep 25, 2023
37c64a3
Update README.md
Oct 9, 2023
542ae56
Merge pull request #12 from beckn/ravi-prakash-v-patch-2
Oct 9, 2023
c2e1622
Update issue templates
vishi24 Jan 16, 2024
e2ddd01
Update issue templates
vishi24 Jan 16, 2024
ca75892
Merge pull request #1 from rajaneeshk90/main
rajaneeshk90 Feb 8, 2024
9979e55
Revert "Merging main into draft"
rajaneeshk90 Feb 8, 2024
5678222
Merge pull request #2 from rajaneeshk90/revert-1-main
rajaneeshk90 Feb 8, 2024
3666a40
adding a specific enum in fulfillment component and making cancellati…
rajaneeshk90 Mar 28, 2024
54c5903
adding l2 config for uei
rajaneeshk90 May 30, 2024
f970e75
adding AUTOMATIC_DISPATCH and VIRTUAL_POWER_PURCHASE_AGREEMENTS as fu…
rajaneeshk90 May 30, 2024
be5a924
adding validations in the uei layer2 specification
rajaneeshk90 Jun 10, 2024
fd36df1
fixning the example jsons in the layer2 config according to the layer…
rajaneeshk90 Jun 11, 2024
e0ef1a3
Merge pull request #15 from vishi24/main
Jun 26, 2024
81ee24a
Merge branch 'beckn:main' into l2-config
rajaneeshk90 Sep 11, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
92 changes: 92 additions & 0 deletions .github/ISSUE_TEMPLATE/simple-issue-template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
---
name: Simple issue template
about: Describe this issue template's purpose here.
title: ''
labels: ''
assignees: ''

---

---
name: Issue simple
about: Used to standard issue in simple format.
title: ''
labels: ''
assignees: ''

---

---
name: BOC
about: BOC Community Issues Template
title: "[BOC] Button for likes"
labels: BOC
---

## Description

[Provide a brief description of the feature, including why it is needed and what it will accomplish. You can skip any of Goals, Expected Outcome, Implementation Details, Mockups / Wireframes if they are irrelevant. Please note that this section of the ticket is suggestive & you can structure it as per your prerogative.]

## Goals

- [ ] [Goal 1]
- [ ] [Goal 2]
- [ ] [Goal 3]
- [ ] [Goal 4]
- [ ] [Goal 5]

## Expected Outcome

[Describe in detail what the final product or result should look like and how it should behave.]

## Acceptance Criteria

- [ ] [Criteria 1]
- [ ] [Criteria 2]
- [ ] [Criteria 3]
- [ ] [Criteria 4]
- [ ] [Criteria 5]

## Implementation Details

[List any technical details about the proposed implementation, including any specific technologies that will be used.]

## Mockups / Wireframes

[Include links to any visual aids, mockups, wireframes, or diagrams that help illustrate what the final product should look like. This is not always necessary, but can be very helpful in many cases.]

---

[Please note that the below section of the ticket ****has to be in the format as mentioned as it is key to enabling proper listing of the project.**** Please only choose the options mentioned under the headings wherever applicable.]

### Product Name

[Product Name: For eg: Beckn, Sunbird Obsrv etc]

### Project Name

[Project Name: Descriptive of the ticket]

### Organization Name:

[Organization Name]

### Domain

[Area of governance]

### Tech Skills Needed:

[Required technical skills for the project]

### Complexity

Pick one of [High]/[Medium]/[Low]

### Category

Pick one or more of [CI/CD], [Integrations], [Performance Improvement], [Security], [UI/UX/Design], [Bug], [Feature], [Documentation], [Deployment], [Test], [PoC]

### Sub Category

Pick one or more of [API], [Database], [Analytics], [Refactoring], [Data Science], [Machine Learning], [Accessibility], [Internationalization], [Localization], [Frontend], [Backend], [Mobile], [SEO], [Configuration], [Deprecation], [Breaking Change], [Maintenance], [Support], [Question], [Technical Debt], [Beginner friendly], [Research], [Reproducible], [Needs Reproduction].
5 changes: 5 additions & 0 deletions api/dent.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,7 @@ paths:
$ref: '#/components/schemas/Descriptor'
required:
- order_id
- cancellation_reason_id
required:
- context
- message
Expand Down Expand Up @@ -1903,6 +1904,10 @@ components:
type:
description: 'A code that describes the mode of fulfillment. This is typically set when there are multiple ways an order can be fulfilled. For example, a retail order can be fulfilled either via store pickup or a home delivery. Similarly, a medical consultation can be provided either in-person or via tele-consultation. The network policy must publish standard fulfillment type codes for the different modes of fulfillment.'
type: string
enum:
- CHARGING
- AUTOMATIC-DISPATCH
- VIRTUAL-POWER PURCHASE-AGREEMENTS
rateable:
description: Whether the fulfillment can be rated or not
type: boolean
Expand Down
Loading