@equinor/roma-framework 0.0.10 → 0.0.11
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/dev-portal/lib/api/roma/model/romaConfigurationDtoValue.d.ts +1 -3
- package/dev-portal/lib/api/roma/model/serverSentEventActivityLogDto.d.ts +1 -3
- package/dev-portal/lib/api/roma/model/serverSentEventStandardEventDto.d.ts +1 -3
- package/dev-portal/lib/api/roma/model/settingDtoValue.d.ts +1 -3
- package/dev-portal/lib/dev-portal/ErrorViewer.d.ts +8 -0
- package/dev-portal/lib/dev-portal/Navigation.d.ts +1 -1
- package/dev-portal/lib/query/persister.d.ts +6 -0
- package/dev-portal/package.json +1 -1
- package/dev-portal/roma-framework.umd.js +1186 -5361
- package/index.d.ts +1 -1
- package/lib/api/fetcher.d.ts +4 -4
- package/lib/api/roma/model/romaConfigurationDtoValue.d.ts +1 -3
- package/lib/api/roma/model/serverSentEventActivityLogDto.d.ts +1 -3
- package/lib/api/roma/model/serverSentEventStandardEventDto.d.ts +1 -3
- package/lib/api/roma/model/settingDtoValue.d.ts +1 -3
- package/lib/dev-portal/ErrorViewer.d.ts +8 -0
- package/lib/query/persister.d.ts +6 -0
- package/package.json +1 -1
- package/roma-framework.mjs +93 -102
- package/dev-portal/index.d.ts +0 -12
- package/dev-portal/lib/api/fetcher.d.ts +0 -21
- package/dev-portal/lib/api/trade-recap/deal.d.ts +0 -160
- package/dev-portal/lib/api/trade-recap/download-recap.d.ts +0 -6
- package/dev-portal/lib/api/trade-recap/get-deals.d.ts +0 -15
- package/dev-portal/lib/api/trade-recap/get-recap.d.ts +0 -11
- package/dev-portal/lib/api/trade-recap/index.d.ts +0 -5
- package/dev-portal/lib/api/trade-recap/recap.d.ts +0 -22
- package/dev-portal/lib/api/util.d.ts +0 -1
- package/dev-portal/lib/dev-portal/HttpErrorViewer.d.ts +0 -13
- package/dev-portal/lib/hooks/use-get-api-roles.d.ts +0 -14
- package/dev-portal/lib/hooks/use-has-api-role.d.ts +0 -7
- package/lib/api/trade-recap/deal.d.ts +0 -160
- package/lib/api/trade-recap/download-recap.d.ts +0 -6
- package/lib/api/trade-recap/get-deals.d.ts +0 -15
- package/lib/api/trade-recap/get-recap.d.ts +0 -11
- package/lib/api/trade-recap/index.d.ts +0 -5
- package/lib/api/trade-recap/recap.d.ts +0 -22
- package/lib/api/util.d.ts +0 -1
|
@@ -1,160 +0,0 @@
|
|
|
1
|
-
type Nullable<T> = T | null | undefined;
|
|
2
|
-
export type Response = {
|
|
3
|
-
items: Item[];
|
|
4
|
-
salesOfficeContext: string[];
|
|
5
|
-
page: number;
|
|
6
|
-
currentPage: number;
|
|
7
|
-
previousPage: Nullable<number>;
|
|
8
|
-
nextPage: Nullable<number>;
|
|
9
|
-
totalCount: number;
|
|
10
|
-
pageSize: number;
|
|
11
|
-
maxDeepSearch: number;
|
|
12
|
-
searchSuccessful: boolean;
|
|
13
|
-
errorMessage: Nullable<string>;
|
|
14
|
-
onRecapDataEnrichmentDisabledMessage: string;
|
|
15
|
-
last: boolean;
|
|
16
|
-
recapDataEnrichmentEnabled: boolean;
|
|
17
|
-
};
|
|
18
|
-
export type Item = {
|
|
19
|
-
dealId: number;
|
|
20
|
-
dealKey: DealKey;
|
|
21
|
-
salePurchaseInd: string;
|
|
22
|
-
typeOfTrade: string;
|
|
23
|
-
customer: Customer;
|
|
24
|
-
strategy: Strategy;
|
|
25
|
-
generalTermsAndConditions?: string;
|
|
26
|
-
tradeDate: string;
|
|
27
|
-
buyer: string;
|
|
28
|
-
buyerShortName?: string;
|
|
29
|
-
seller: string;
|
|
30
|
-
sellerShortName?: string;
|
|
31
|
-
law?: string;
|
|
32
|
-
arbitration: boolean;
|
|
33
|
-
inspectionCost?: string;
|
|
34
|
-
deliveryType: string;
|
|
35
|
-
deliveryYear: number;
|
|
36
|
-
deliveryMth: number;
|
|
37
|
-
creditTerms?: string;
|
|
38
|
-
location?: string;
|
|
39
|
-
grade: string;
|
|
40
|
-
quality: string;
|
|
41
|
-
vesselName?: string;
|
|
42
|
-
dealStatus: string;
|
|
43
|
-
cargoNo?: string;
|
|
44
|
-
sportNo?: string;
|
|
45
|
-
lastModifiedDate: string;
|
|
46
|
-
createdBy: string;
|
|
47
|
-
spotTermIndicator: string;
|
|
48
|
-
transportType?: string;
|
|
49
|
-
lcNumberExt?: string;
|
|
50
|
-
lcNumberInt: any;
|
|
51
|
-
blDate: string;
|
|
52
|
-
blDateIsActual: boolean;
|
|
53
|
-
norDate?: string;
|
|
54
|
-
norDateIsActual: boolean;
|
|
55
|
-
codDate?: string;
|
|
56
|
-
codDateIsActual: boolean;
|
|
57
|
-
blVolume?: number;
|
|
58
|
-
outturnVolume?: number;
|
|
59
|
-
contractualVolume: number;
|
|
60
|
-
volumeUnit: string;
|
|
61
|
-
gainLossPercentage?: number;
|
|
62
|
-
acceptUpdateFromSport: boolean;
|
|
63
|
-
titlePoint: string;
|
|
64
|
-
dischargePort?: string;
|
|
65
|
-
paymentDueDate?: string;
|
|
66
|
-
tolerance: string;
|
|
67
|
-
demurrage?: string;
|
|
68
|
-
laytime?: string;
|
|
69
|
-
contractualDateType: string;
|
|
70
|
-
contractualStartDate: string;
|
|
71
|
-
contractualEndDate: string;
|
|
72
|
-
volumeFrom: string;
|
|
73
|
-
status?: Status;
|
|
74
|
-
attentionRequired: boolean;
|
|
75
|
-
cargoStatusRats?: string;
|
|
76
|
-
bookoutSequence: any;
|
|
77
|
-
titleTransferDate: string;
|
|
78
|
-
broker?: Broker;
|
|
79
|
-
responsibleOps?: string;
|
|
80
|
-
mailSent: boolean;
|
|
81
|
-
pricingStartDate?: string;
|
|
82
|
-
pricingEndDate?: string;
|
|
83
|
-
priceDifferential: string;
|
|
84
|
-
typeOfPricing: string;
|
|
85
|
-
priceText: string;
|
|
86
|
-
priceIndicator: string;
|
|
87
|
-
counterpartyReferenceNumber: any;
|
|
88
|
-
counterpartyReferenceDate: any;
|
|
89
|
-
reference1?: string;
|
|
90
|
-
reference2?: string;
|
|
91
|
-
termDsYear?: number;
|
|
92
|
-
termDsNo?: number;
|
|
93
|
-
officialLoadingRangeFrom?: string;
|
|
94
|
-
officialLoadingRangeTo?: string;
|
|
95
|
-
pricingPeriodDescription?: string;
|
|
96
|
-
finalVolume: number;
|
|
97
|
-
paymentTerm?: string;
|
|
98
|
-
sportRemarks?: string;
|
|
99
|
-
imosVesselCode?: string;
|
|
100
|
-
imosVoyageNo?: string;
|
|
101
|
-
imosVoyageStatus?: string;
|
|
102
|
-
priceEscalated: boolean;
|
|
103
|
-
loadingPort?: string;
|
|
104
|
-
cargoStatusSport?: string;
|
|
105
|
-
priceBasis: string;
|
|
106
|
-
deliveryPeriod: string;
|
|
107
|
-
};
|
|
108
|
-
export type DealKey = {
|
|
109
|
-
companyId: string;
|
|
110
|
-
salesOffice: string;
|
|
111
|
-
dsYear: number;
|
|
112
|
-
dsNo: number;
|
|
113
|
-
dealNo: number;
|
|
114
|
-
lineItemNo: number;
|
|
115
|
-
dealKeyShort: string;
|
|
116
|
-
dealKeyFull: string;
|
|
117
|
-
};
|
|
118
|
-
export type Customer = {
|
|
119
|
-
custNo: string;
|
|
120
|
-
custName: string;
|
|
121
|
-
custFullName: string;
|
|
122
|
-
};
|
|
123
|
-
export type Strategy = {
|
|
124
|
-
id: number;
|
|
125
|
-
year: number;
|
|
126
|
-
no: number;
|
|
127
|
-
description: string;
|
|
128
|
-
reportingMonth: number;
|
|
129
|
-
strategyKey: string;
|
|
130
|
-
closed: boolean;
|
|
131
|
-
class1: string;
|
|
132
|
-
class2: string;
|
|
133
|
-
class3: string;
|
|
134
|
-
class4: string;
|
|
135
|
-
dateClosed: any;
|
|
136
|
-
dateOpened: string;
|
|
137
|
-
};
|
|
138
|
-
export type Status = {
|
|
139
|
-
statusLines: StatusLine[];
|
|
140
|
-
message: string;
|
|
141
|
-
statusType: string;
|
|
142
|
-
};
|
|
143
|
-
export type StatusLine = {
|
|
144
|
-
statusType: string;
|
|
145
|
-
propertyName: string;
|
|
146
|
-
propertyType: any;
|
|
147
|
-
displayName: string;
|
|
148
|
-
message: string;
|
|
149
|
-
source1: any;
|
|
150
|
-
value1: any;
|
|
151
|
-
source2: any;
|
|
152
|
-
value2: any;
|
|
153
|
-
};
|
|
154
|
-
export type Broker = {
|
|
155
|
-
brokerNo: string;
|
|
156
|
-
name: string;
|
|
157
|
-
fullName: string;
|
|
158
|
-
active: boolean;
|
|
159
|
-
};
|
|
160
|
-
export {};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { HttpResponseError } from '@equinor/fusion-framework-module-http';
|
|
2
|
-
type Params = Partial<{
|
|
3
|
-
dealId: number;
|
|
4
|
-
}>;
|
|
5
|
-
export declare const useDownloadRecap: (params: Params) => import("@tanstack/react-query/build/legacy/types").UseQueryResult<Blob, HttpResponseError<Response>>;
|
|
6
|
-
export {};
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { Response } from './deal';
|
|
2
|
-
import { HttpError } from '../fetcher';
|
|
3
|
-
type Params = {
|
|
4
|
-
dsYears: Array<number>;
|
|
5
|
-
pageSize: number;
|
|
6
|
-
bolDateFrom: string;
|
|
7
|
-
bolDateTo: string;
|
|
8
|
-
typeOfTrade: string;
|
|
9
|
-
traders: Array<string>;
|
|
10
|
-
sort: string;
|
|
11
|
-
page: number;
|
|
12
|
-
salesOffices: Array<string>;
|
|
13
|
-
};
|
|
14
|
-
export declare const useGetDeals: (params: Params) => import("@tanstack/react-query/build/legacy/types").UseQueryResult<Response, HttpError>;
|
|
15
|
-
export {};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { HttpResponseError } from '@equinor/fusion-framework-module-http';
|
|
2
|
-
import { TradeRecap } from './recap';
|
|
3
|
-
type Params = Partial<{
|
|
4
|
-
companyId: string;
|
|
5
|
-
so: string;
|
|
6
|
-
dsYear: string;
|
|
7
|
-
dsId: string;
|
|
8
|
-
dsNo: string;
|
|
9
|
-
}>;
|
|
10
|
-
export declare const useGetRecap: (params: Params) => import("@tanstack/react-query/build/legacy/types").UseQueryResult<TradeRecap, HttpResponseError<Response>>;
|
|
11
|
-
export {};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { DealKey } from './deal';
|
|
2
|
-
export interface TradeRecap {
|
|
3
|
-
dealKey: DealKey;
|
|
4
|
-
strategy: string;
|
|
5
|
-
typeOfTrade: string;
|
|
6
|
-
priceIndicator: string;
|
|
7
|
-
dealDate: string;
|
|
8
|
-
trader: string;
|
|
9
|
-
brokerName: string;
|
|
10
|
-
seller: string;
|
|
11
|
-
buyer: string;
|
|
12
|
-
generalTermsAndConditions: string;
|
|
13
|
-
law: string;
|
|
14
|
-
arbitration: boolean;
|
|
15
|
-
inspectionCost: string;
|
|
16
|
-
operational: Operational;
|
|
17
|
-
salePurchaseIndicator: string;
|
|
18
|
-
dealId: number;
|
|
19
|
-
}
|
|
20
|
-
export interface Operational {
|
|
21
|
-
lastUpdate: string;
|
|
22
|
-
}
|
package/lib/api/util.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const createUrlParamsFromObject: (obj: Record<string, unknown>) => URLSearchParams;
|