Skip to content

Commit

Permalink
Merge branch 'main' into feat/show-self-actor
Browse files Browse the repository at this point in the history
  • Loading branch information
frontend-specialisten authored Oct 22, 2024
2 parents c817cee + a593555 commit 3605c8a
Show file tree
Hide file tree
Showing 43 changed files with 465 additions and 966 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,13 @@ type ApiErrorDescriptor {
type ArchivedMessage {
sender: Actor
receiver: Actor
documentType: DocumentType!
documentUrl: String
recordId: Long!
id: String!
messageId: String
documentType: DocumentType!
senderRole: ActorRole!
receiverRole: ActorRole!
createdAt: DateTime!
businessReason: String
}
Expand Down Expand Up @@ -527,7 +529,7 @@ type Query {
gridAreas: [GridAreaDto!]!
imbalancePricesOverview: ImbalancePricesOverview!
imbalancePricesForMonth(year: Int! month: Int! areaCode: PriceAreaCode!): [ImbalancePriceDaily!]!
archivedMessages(created: DateRange! senderNumber: String receiverNumber: String documentTypes: [DocumentType!] businessReasons: [BusinessReason!] includeRelated: Boolean filter: String "Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String order: ArchivedMessageSortInput): ArchivedMessagesConnection
archivedMessages(created: DateRange! senderId: UUID receiverId: UUID documentTypes: [DocumentType!] businessReasons: [BusinessReason!] includeRelated: Boolean filter: String "Returns the first _n_ elements from the list." first: Int "Returns the elements in the list that come after the specified cursor." after: String "Returns the last _n_ elements from the list." last: Int "Returns the elements in the list that come before the specified cursor." before: String order: ArchivedMessageSortInput): ArchivedMessagesConnection
organizationAuditLogs(organizationId: UUID!): [OrganizationAuditedChangeAuditLogDto!]!
organizationById(id: UUID!): Organization!
organizations: [Organization!]!
Expand Down Expand Up @@ -1046,6 +1048,20 @@ enum ActorDelegationStatus {
CANCELLED
}

enum ActorRole {
METERING_POINT_ADMINISTRATOR
ENERGY_SUPPLIER
GRID_ACCESS_PROVIDER
METERED_DATA_ADMINISTRATOR
METERED_DATA_RESPONSIBLE
BALANCE_RESPONSIBLE_PARTY
IMBALANCE_SETTLEMENT_RESPONSIBLE
SYSTEM_OPERATOR
DANISH_ENERGY_AGENCY
DELEGATED
DATA_HUB_ADMINISTRATOR
}

enum ActorStatus {
New
Active
Expand Down Expand Up @@ -1074,70 +1090,10 @@ enum BalanceResponsibleSortProperty {
}

enum BusinessReason {
D02
D03
D04
D05
D06
D07
D09
D10
D11
D12
D13
D14
D15
D16
D17
D18
D19
D20
D21
D22
D23
D24
D25
D26
D27
D28
D29
D30
D31
D32
D33
D34
D35
D36
D37
D38
D39
D40
D41
D43
D44
D45
D46
D47
E01
E02
E03
E05
E06
E0G
E20
E23
E30
E32
E34
E53
E56
E65
E66
E67
E75
E79
E80
E84
}

enum CalculationExecutionType {
Expand Down Expand Up @@ -1209,60 +1165,14 @@ enum DocumentStatus {
}

enum DocumentType {
CONFIRM_REQUEST_CHANGE_OF_SUPPLIER
REJECT_REQUEST_CHANGE_OF_SUPPLIER
REQUEST_CHANGE_OF_SUPPLIER
CONFIRM_REQUEST_REALLOCATE_CHANGE_OF_SUPPLIER
REJECT_REQUEST_REALLOCATE_CHANGE_OF_SUPPLIER
REQUEST_REALLOCATE_CHANGE_OF_SUPPLIER
GENERIC_NOTIFICATION
CONFIRM_REQUEST_END_OF_SUPPLY
REJECT_REQUEST_END_OF_SUPPLY
REQUEST_END_OF_SUPPLY
REJECT_REQUEST_ACCOUNTING_POINT_CHARACTERISTICS
REQUEST_ACCOUNTING_POINT_CHARACTERISTICS
ACKNOWLEDGEMENT
NOTIFY_VALIDATED_MEASURE_DATA
B2C_REQUEST_AGGREGATED_MEASURE_DATA
B2C_REQUEST_WHOLESALE_SETTLEMENT
NOTIFY_AGGREGATED_MEASURE_DATA
REJECT_REQUEST_VALIDATED_MEASURE_DATA
REQUEST_VALIDATED_MEASURE_DATA
NOTIFY_WHOLESALE_SERVICES
REJECT_REQUEST_AGGREGATED_MEASURE_DATA
REQUEST_AGGREGATED_MEASURE_DATA
B2_C_REQUEST_AGGREGATED_MEASURE_DATA
REJECT_REQUEST_WHOLESALE_SETTLEMENT
REQUEST_AGGREGATED_MEASURE_DATA
REQUEST_WHOLESALE_SETTLEMENT
B2_C_REQUEST_WHOLESALE_SETTLEMENT
REJECT_REQUEST_FOR_REMINDERS
REMINDER_OF_MISSING_MEASURE_DATA
REQUEST_FOR_REMINDERS
NOTIFY_WHOLESALE_SERVICES
CONFIRM_REQUEST_SERVICE
REJECT_REQUEST_SERVICE
REQUEST_SERVICE
CONFIRM_REQUEST_CHANGE_ACCOUNTING_POINT_CHARACTERISTICS
REJECT_REQUEST_CHANGE_ACCOUNTING_POINT_CHARACTERISTICS
REQUEST_CHANGE_ACCOUNTING_POINT_CHARACTERISTICS
ACCOUNTING_POINT_CHARACTERISTICS
CONFIRM_REQUEST_CANCELLATION
REJECT_REQUEST_CANCELLATION
REQUEST_CANCELLATION
NOTIFY_CANCELLATION
CONFIRM_REQUEST_CHANGE_CUSTOMER_CHARACTERISTICS
REJECT_REQUEST_CHANGE_CUSTOMER_CHARACTERISTICS
REQUEST_CHANGE_CUSTOMER_CHARACTERISTICS
CHARACTERISTICS_OF_A_CUSTOMER_AT_AN_AP
CONFIRM_REQUEST_CHANGE_BILLING_MASTER_DATA
REJECT_REQUEST_CHANGE_BILLING_MASTER_DATA
REQUEST_CHANGE_BILLING_MASTER_DATA
NOTIFY_BILLING_MASTER_DATA
REJECT_REQUEST_BILLING_MASTER_DATA
REQUEST_BILLING_MASTER_DATA
CONFIRM_REQUEST_CHANGE_OF_PRICELIST
REJECT_REQUEST_CHANGE_OF_PRICELIST
REQUEST_CHANGE_OF_PRICELIST
NOTIFY_PRICELIST
REJECT_REQUEST_PRICELIST
REQUEST_PRICELIST
}

enum ESettStageComponent {
Expand Down
25 changes: 0 additions & 25 deletions apps/dh/api-dh/source/DataHub.WebApi/Clients/EDI/Actor.cs

This file was deleted.

54 changes: 0 additions & 54 deletions apps/dh/api-dh/source/DataHub.WebApi/Clients/EDI/ActorService.cs

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 3605c8a

Please sign in to comment.