-
Notifications
You must be signed in to change notification settings - Fork 0
/
functionBlockBuilder.d.ts
83 lines (83 loc) · 3.07 KB
/
functionBlockBuilder.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
declare const availableFunctionBlocks: Readonly<{
1: "Common";
2: "Download My Data";
3: "Connect My Data";
4: "Interval Metering";
5: "Interval Electricity Metering";
6: "Demand Electricity Metering";
7: "Net Metering";
8: "Forward and Reverse Metering";
9: "Register Values";
10: "Gas";
11: "Water";
12: "Cost of Interval Data";
13: "Security and Privacy Classes";
/**
* @deprecated replaced by FB 31
*/
14: "Authorization and Authentication";
15: "Usage Summary";
16: "Usage Summary with Cost";
17: "Power Quality Summary";
18: "Multiple Usage Points";
19: "Partial Update Data";
27: "Usage Summary with Demands and Previous Day Attributes";
28: "Usage Summary Costs for Current Billing Period";
29: "Temperature Interval Metering";
30: "Common User Experience (DMD only)";
31: "Authorization and Authentication w/o Pre-Negotiated Scope";
32: "Resource Level REST";
33: "Management REST Services";
34: "SFTP for Bulk";
35: "REST for Bulk";
36: "Third Party Dynamic Registration";
37: "Query Parameters";
38: "On Demand Requests";
39: "PUSH Model";
40: "Offline Authorization";
41: "Manage ApplicationInformation Resource";
44: "Manage Authorization Resource";
/**
* @deprecated replaced by FB 51
*/
46: "Core Retail Customer";
/**
* @deprecated replaced by FB 67
*/
47: "REST for Retail Customer Bulk";
/**
* @deprecated replaced by FB 66
*/
48: "SFTP for Retail Customer Bulk";
49: "Retail Customer Management REST";
50: "Retail Customer Resource Level REST";
51: "Retail Customer Common";
52: "Retail Customer Download My Data";
53: "Retail Customer Connect My Data";
54: "Retail Customer Basic Information";
55: "Retail Customer Demographic Information";
56: "Retail Customer Billing Information";
57: "Retail Customer AccountAgreement Information";
58: "Retail Customer ServiceLocation Information";
59: "Retail Customer ServiceSupplier Information";
60: "Retail Customer Meter Information";
61: "Retail Customer EndDevice Information";
62: "Retail Customer ProgramDateIdMappings Information";
64: "Retail Customer Security and Privacy";
65: "Retail Customer Authorization and Authentication w/o Pre-Negotiated Scope";
66: "SFTP for Retail Customer Bulk";
67: "REST for Retail Customer Bulk";
68: "Retail Customer Query Parameters";
69: "Retail Customer PUSH Model";
70: "Retail Customer Offline Authorization";
}>;
export declare class GreenButtonFunctionBlockBuilder {
#private;
constructor(functionBlockString?: string);
addFunctionBlock(functionBlock: keyof typeof availableFunctionBlocks): void;
addFunctionBlockByName(functionBlockName: (typeof availableFunctionBlocks)[keyof typeof availableFunctionBlocks]): boolean;
removeFunctionBlock(functionBlock: keyof typeof availableFunctionBlocks): void;
hasFunctionBlock(functionBlock: keyof typeof availableFunctionBlocks): boolean;
toString(): string;
}
export {};