@aws-sdk/client-invoicing 3.936.0 → 3.939.0
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/README.md +49 -1
- package/dist-cjs/index.js +465 -8
- package/dist-es/Invoicing.js +12 -0
- package/dist-es/commands/CreateProcurementPortalPreferenceCommand.js +16 -0
- package/dist-es/commands/DeleteProcurementPortalPreferenceCommand.js +16 -0
- package/dist-es/commands/GetProcurementPortalPreferenceCommand.js +16 -0
- package/dist-es/commands/ListProcurementPortalPreferencesCommand.js +16 -0
- package/dist-es/commands/PutProcurementPortalPreferenceCommand.js +16 -0
- package/dist-es/commands/UpdateProcurementPortalPreferenceStatusCommand.js +16 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/enums.js +40 -0
- package/dist-es/models/errors.js +16 -0
- package/dist-es/pagination/ListProcurementPortalPreferencesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +317 -9
- package/dist-types/Invoicing.d.ts +44 -1
- package/dist-types/InvoicingClient.d.ts +9 -3
- package/dist-types/commands/CreateProcurementPortalPreferenceCommand.d.ts +217 -0
- package/dist-types/commands/DeleteProcurementPortalPreferenceCommand.d.ts +107 -0
- package/dist-types/commands/GetProcurementPortalPreferenceCommand.d.ts +230 -0
- package/dist-types/commands/ListProcurementPortalPreferencesCommand.d.ts +229 -0
- package/dist-types/commands/PutProcurementPortalPreferenceCommand.d.ts +196 -0
- package/dist-types/commands/UpdateProcurementPortalPreferenceStatusCommand.d.ts +118 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/enums.d.ts +112 -0
- package/dist-types/models/errors.d.ts +22 -0
- package/dist-types/models/models_0.d.ts +634 -1
- package/dist-types/pagination/ListProcurementPortalPreferencesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +34 -0
- package/dist-types/ts3.4/Invoicing.d.ts +121 -0
- package/dist-types/ts3.4/InvoicingClient.d.ts +38 -2
- package/dist-types/ts3.4/commands/CreateProcurementPortalPreferenceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteProcurementPortalPreferenceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetProcurementPortalPreferenceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListProcurementPortalPreferencesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutProcurementPortalPreferenceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateProcurementPortalPreferenceStatusCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/enums.d.ts +56 -0
- package/dist-types/ts3.4/models/errors.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +174 -1
- package/dist-types/ts3.4/pagination/ListProcurementPortalPreferencesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +34 -0
- package/package.json +2 -2
|
@@ -5,14 +5,21 @@ export declare var AmountBreakdown: StaticStructureSchema;
|
|
|
5
5
|
export declare var BatchGetInvoiceProfileRequest: StaticStructureSchema;
|
|
6
6
|
export declare var BatchGetInvoiceProfileResponse: StaticStructureSchema;
|
|
7
7
|
export declare var BillingPeriod: StaticStructureSchema;
|
|
8
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
9
|
+
export declare var Contact: StaticStructureSchema;
|
|
8
10
|
export declare var CreateInvoiceUnitRequest: StaticStructureSchema;
|
|
9
11
|
export declare var CreateInvoiceUnitResponse: StaticStructureSchema;
|
|
12
|
+
export declare var CreateProcurementPortalPreferenceRequest: StaticStructureSchema;
|
|
13
|
+
export declare var CreateProcurementPortalPreferenceResponse: StaticStructureSchema;
|
|
10
14
|
export declare var CurrencyExchangeDetails: StaticStructureSchema;
|
|
11
15
|
export declare var DateInterval: StaticStructureSchema;
|
|
12
16
|
export declare var DeleteInvoiceUnitRequest: StaticStructureSchema;
|
|
13
17
|
export declare var DeleteInvoiceUnitResponse: StaticStructureSchema;
|
|
18
|
+
export declare var DeleteProcurementPortalPreferenceRequest: StaticStructureSchema;
|
|
19
|
+
export declare var DeleteProcurementPortalPreferenceResponse: StaticStructureSchema;
|
|
14
20
|
export declare var DiscountsBreakdown: StaticStructureSchema;
|
|
15
21
|
export declare var DiscountsBreakdownAmount: StaticStructureSchema;
|
|
22
|
+
export declare var EinvoiceDeliveryPreference: StaticStructureSchema;
|
|
16
23
|
export declare var Entity: StaticStructureSchema;
|
|
17
24
|
export declare var FeesBreakdown: StaticStructureSchema;
|
|
18
25
|
export declare var FeesBreakdownAmount: StaticStructureSchema;
|
|
@@ -21,6 +28,8 @@ export declare var GetInvoicePDFRequest: StaticStructureSchema;
|
|
|
21
28
|
export declare var GetInvoicePDFResponse: StaticStructureSchema;
|
|
22
29
|
export declare var GetInvoiceUnitRequest: StaticStructureSchema;
|
|
23
30
|
export declare var GetInvoiceUnitResponse: StaticStructureSchema;
|
|
31
|
+
export declare var GetProcurementPortalPreferenceRequest: StaticStructureSchema;
|
|
32
|
+
export declare var GetProcurementPortalPreferenceResponse: StaticStructureSchema;
|
|
24
33
|
export declare var InternalServerException: StaticErrorSchema;
|
|
25
34
|
export declare var InvoiceCurrencyAmount: StaticStructureSchema;
|
|
26
35
|
export declare var InvoicePDF: StaticStructureSchema;
|
|
@@ -34,8 +43,16 @@ export declare var ListInvoiceSummariesRequest: StaticStructureSchema;
|
|
|
34
43
|
export declare var ListInvoiceSummariesResponse: StaticStructureSchema;
|
|
35
44
|
export declare var ListInvoiceUnitsRequest: StaticStructureSchema;
|
|
36
45
|
export declare var ListInvoiceUnitsResponse: StaticStructureSchema;
|
|
46
|
+
export declare var ListProcurementPortalPreferencesRequest: StaticStructureSchema;
|
|
47
|
+
export declare var ListProcurementPortalPreferencesResponse: StaticStructureSchema;
|
|
37
48
|
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
38
49
|
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
50
|
+
export declare var ProcurementPortalPreference: StaticStructureSchema;
|
|
51
|
+
export declare var ProcurementPortalPreferenceSelector: StaticStructureSchema;
|
|
52
|
+
export declare var ProcurementPortalPreferenceSummary: StaticStructureSchema;
|
|
53
|
+
export declare var PurchaseOrderDataSource: StaticStructureSchema;
|
|
54
|
+
export declare var PutProcurementPortalPreferenceRequest: StaticStructureSchema;
|
|
55
|
+
export declare var PutProcurementPortalPreferenceResponse: StaticStructureSchema;
|
|
39
56
|
export declare var ReceiverAddress: StaticStructureSchema;
|
|
40
57
|
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
41
58
|
export declare var ResourceTag: StaticStructureSchema;
|
|
@@ -45,36 +62,53 @@ export declare var TagResourceRequest: StaticStructureSchema;
|
|
|
45
62
|
export declare var TagResourceResponse: StaticStructureSchema;
|
|
46
63
|
export declare var TaxesBreakdown: StaticStructureSchema;
|
|
47
64
|
export declare var TaxesBreakdownAmount: StaticStructureSchema;
|
|
65
|
+
export declare var TestEnvPreference: StaticStructureSchema;
|
|
66
|
+
export declare var TestEnvPreferenceInput: StaticStructureSchema;
|
|
48
67
|
export declare var ThrottlingException: StaticErrorSchema;
|
|
49
68
|
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
50
69
|
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
51
70
|
export declare var UpdateInvoiceUnitRequest: StaticStructureSchema;
|
|
52
71
|
export declare var UpdateInvoiceUnitResponse: StaticStructureSchema;
|
|
72
|
+
export declare var UpdateProcurementPortalPreferenceStatusRequest: StaticStructureSchema;
|
|
73
|
+
export declare var UpdateProcurementPortalPreferenceStatusResponse: StaticStructureSchema;
|
|
53
74
|
export declare var ValidationException: StaticErrorSchema;
|
|
54
75
|
export declare var ValidationExceptionField: StaticStructureSchema;
|
|
55
76
|
export declare var __Unit: "unit";
|
|
56
77
|
export declare var InvoicingServiceException: StaticErrorSchema;
|
|
57
78
|
export declare var AccountIdList: number;
|
|
79
|
+
export declare var Contacts: StaticListSchema;
|
|
58
80
|
export declare var DiscountsBreakdownAmountList: StaticListSchema;
|
|
81
|
+
export declare var EinvoiceDeliveryAttachmentTypes: number;
|
|
82
|
+
export declare var EinvoiceDeliveryDocumentTypes: number;
|
|
59
83
|
export declare var FeesBreakdownAmountList: StaticListSchema;
|
|
60
84
|
export declare var InvoiceSummaries: StaticListSchema;
|
|
85
|
+
export declare var InvoiceUnitArns: number;
|
|
61
86
|
export declare var InvoiceUnitNames: number;
|
|
62
87
|
export declare var InvoiceUnits: StaticListSchema;
|
|
88
|
+
export declare var ProcurementPortalPreferenceSummaries: StaticListSchema;
|
|
63
89
|
export declare var ProfileList: StaticListSchema;
|
|
90
|
+
export declare var PurchaseOrderDataSources: StaticListSchema;
|
|
64
91
|
export declare var ResourceTagKeyList: number;
|
|
65
92
|
export declare var ResourceTagList: StaticListSchema;
|
|
66
93
|
export declare var RuleAccountIdList: number;
|
|
94
|
+
export declare var SellerOfRecords: number;
|
|
67
95
|
export declare var SupplementalDocuments: StaticListSchema;
|
|
68
96
|
export declare var TaxesBreakdownAmountList: StaticListSchema;
|
|
69
97
|
export declare var ValidationExceptionFieldList: StaticListSchema;
|
|
70
98
|
export declare var BatchGetInvoiceProfile: StaticOperationSchema;
|
|
71
99
|
export declare var CreateInvoiceUnit: StaticOperationSchema;
|
|
100
|
+
export declare var CreateProcurementPortalPreference: StaticOperationSchema;
|
|
72
101
|
export declare var DeleteInvoiceUnit: StaticOperationSchema;
|
|
102
|
+
export declare var DeleteProcurementPortalPreference: StaticOperationSchema;
|
|
73
103
|
export declare var GetInvoicePDF: StaticOperationSchema;
|
|
74
104
|
export declare var GetInvoiceUnit: StaticOperationSchema;
|
|
105
|
+
export declare var GetProcurementPortalPreference: StaticOperationSchema;
|
|
75
106
|
export declare var ListInvoiceSummaries: StaticOperationSchema;
|
|
76
107
|
export declare var ListInvoiceUnits: StaticOperationSchema;
|
|
108
|
+
export declare var ListProcurementPortalPreferences: StaticOperationSchema;
|
|
77
109
|
export declare var ListTagsForResource: StaticOperationSchema;
|
|
110
|
+
export declare var PutProcurementPortalPreference: StaticOperationSchema;
|
|
78
111
|
export declare var TagResource: StaticOperationSchema;
|
|
79
112
|
export declare var UntagResource: StaticOperationSchema;
|
|
80
113
|
export declare var UpdateInvoiceUnit: StaticOperationSchema;
|
|
114
|
+
export declare var UpdateProcurementPortalPreferenceStatus: StaticOperationSchema;
|
|
@@ -7,10 +7,18 @@ import {
|
|
|
7
7
|
CreateInvoiceUnitCommandInput,
|
|
8
8
|
CreateInvoiceUnitCommandOutput,
|
|
9
9
|
} from "./commands/CreateInvoiceUnitCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateProcurementPortalPreferenceCommandInput,
|
|
12
|
+
CreateProcurementPortalPreferenceCommandOutput,
|
|
13
|
+
} from "./commands/CreateProcurementPortalPreferenceCommand";
|
|
10
14
|
import {
|
|
11
15
|
DeleteInvoiceUnitCommandInput,
|
|
12
16
|
DeleteInvoiceUnitCommandOutput,
|
|
13
17
|
} from "./commands/DeleteInvoiceUnitCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteProcurementPortalPreferenceCommandInput,
|
|
20
|
+
DeleteProcurementPortalPreferenceCommandOutput,
|
|
21
|
+
} from "./commands/DeleteProcurementPortalPreferenceCommand";
|
|
14
22
|
import {
|
|
15
23
|
GetInvoicePDFCommandInput,
|
|
16
24
|
GetInvoicePDFCommandOutput,
|
|
@@ -19,6 +27,10 @@ import {
|
|
|
19
27
|
GetInvoiceUnitCommandInput,
|
|
20
28
|
GetInvoiceUnitCommandOutput,
|
|
21
29
|
} from "./commands/GetInvoiceUnitCommand";
|
|
30
|
+
import {
|
|
31
|
+
GetProcurementPortalPreferenceCommandInput,
|
|
32
|
+
GetProcurementPortalPreferenceCommandOutput,
|
|
33
|
+
} from "./commands/GetProcurementPortalPreferenceCommand";
|
|
22
34
|
import {
|
|
23
35
|
ListInvoiceSummariesCommandInput,
|
|
24
36
|
ListInvoiceSummariesCommandOutput,
|
|
@@ -27,10 +39,18 @@ import {
|
|
|
27
39
|
ListInvoiceUnitsCommandInput,
|
|
28
40
|
ListInvoiceUnitsCommandOutput,
|
|
29
41
|
} from "./commands/ListInvoiceUnitsCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListProcurementPortalPreferencesCommandInput,
|
|
44
|
+
ListProcurementPortalPreferencesCommandOutput,
|
|
45
|
+
} from "./commands/ListProcurementPortalPreferencesCommand";
|
|
30
46
|
import {
|
|
31
47
|
ListTagsForResourceCommandInput,
|
|
32
48
|
ListTagsForResourceCommandOutput,
|
|
33
49
|
} from "./commands/ListTagsForResourceCommand";
|
|
50
|
+
import {
|
|
51
|
+
PutProcurementPortalPreferenceCommandInput,
|
|
52
|
+
PutProcurementPortalPreferenceCommandOutput,
|
|
53
|
+
} from "./commands/PutProcurementPortalPreferenceCommand";
|
|
34
54
|
import {
|
|
35
55
|
TagResourceCommandInput,
|
|
36
56
|
TagResourceCommandOutput,
|
|
@@ -43,6 +63,10 @@ import {
|
|
|
43
63
|
UpdateInvoiceUnitCommandInput,
|
|
44
64
|
UpdateInvoiceUnitCommandOutput,
|
|
45
65
|
} from "./commands/UpdateInvoiceUnitCommand";
|
|
66
|
+
import {
|
|
67
|
+
UpdateProcurementPortalPreferenceStatusCommandInput,
|
|
68
|
+
UpdateProcurementPortalPreferenceStatusCommandOutput,
|
|
69
|
+
} from "./commands/UpdateProcurementPortalPreferenceStatusCommand";
|
|
46
70
|
import { InvoicingClient } from "./InvoicingClient";
|
|
47
71
|
export interface Invoicing {
|
|
48
72
|
batchGetInvoiceProfile(
|
|
@@ -71,6 +95,25 @@ export interface Invoicing {
|
|
|
71
95
|
options: __HttpHandlerOptions,
|
|
72
96
|
cb: (err: any, data?: CreateInvoiceUnitCommandOutput) => void
|
|
73
97
|
): void;
|
|
98
|
+
createProcurementPortalPreference(
|
|
99
|
+
args: CreateProcurementPortalPreferenceCommandInput,
|
|
100
|
+
options?: __HttpHandlerOptions
|
|
101
|
+
): Promise<CreateProcurementPortalPreferenceCommandOutput>;
|
|
102
|
+
createProcurementPortalPreference(
|
|
103
|
+
args: CreateProcurementPortalPreferenceCommandInput,
|
|
104
|
+
cb: (
|
|
105
|
+
err: any,
|
|
106
|
+
data?: CreateProcurementPortalPreferenceCommandOutput
|
|
107
|
+
) => void
|
|
108
|
+
): void;
|
|
109
|
+
createProcurementPortalPreference(
|
|
110
|
+
args: CreateProcurementPortalPreferenceCommandInput,
|
|
111
|
+
options: __HttpHandlerOptions,
|
|
112
|
+
cb: (
|
|
113
|
+
err: any,
|
|
114
|
+
data?: CreateProcurementPortalPreferenceCommandOutput
|
|
115
|
+
) => void
|
|
116
|
+
): void;
|
|
74
117
|
deleteInvoiceUnit(
|
|
75
118
|
args: DeleteInvoiceUnitCommandInput,
|
|
76
119
|
options?: __HttpHandlerOptions
|
|
@@ -84,6 +127,25 @@ export interface Invoicing {
|
|
|
84
127
|
options: __HttpHandlerOptions,
|
|
85
128
|
cb: (err: any, data?: DeleteInvoiceUnitCommandOutput) => void
|
|
86
129
|
): void;
|
|
130
|
+
deleteProcurementPortalPreference(
|
|
131
|
+
args: DeleteProcurementPortalPreferenceCommandInput,
|
|
132
|
+
options?: __HttpHandlerOptions
|
|
133
|
+
): Promise<DeleteProcurementPortalPreferenceCommandOutput>;
|
|
134
|
+
deleteProcurementPortalPreference(
|
|
135
|
+
args: DeleteProcurementPortalPreferenceCommandInput,
|
|
136
|
+
cb: (
|
|
137
|
+
err: any,
|
|
138
|
+
data?: DeleteProcurementPortalPreferenceCommandOutput
|
|
139
|
+
) => void
|
|
140
|
+
): void;
|
|
141
|
+
deleteProcurementPortalPreference(
|
|
142
|
+
args: DeleteProcurementPortalPreferenceCommandInput,
|
|
143
|
+
options: __HttpHandlerOptions,
|
|
144
|
+
cb: (
|
|
145
|
+
err: any,
|
|
146
|
+
data?: DeleteProcurementPortalPreferenceCommandOutput
|
|
147
|
+
) => void
|
|
148
|
+
): void;
|
|
87
149
|
getInvoicePDF(
|
|
88
150
|
args: GetInvoicePDFCommandInput,
|
|
89
151
|
options?: __HttpHandlerOptions
|
|
@@ -110,6 +172,19 @@ export interface Invoicing {
|
|
|
110
172
|
options: __HttpHandlerOptions,
|
|
111
173
|
cb: (err: any, data?: GetInvoiceUnitCommandOutput) => void
|
|
112
174
|
): void;
|
|
175
|
+
getProcurementPortalPreference(
|
|
176
|
+
args: GetProcurementPortalPreferenceCommandInput,
|
|
177
|
+
options?: __HttpHandlerOptions
|
|
178
|
+
): Promise<GetProcurementPortalPreferenceCommandOutput>;
|
|
179
|
+
getProcurementPortalPreference(
|
|
180
|
+
args: GetProcurementPortalPreferenceCommandInput,
|
|
181
|
+
cb: (err: any, data?: GetProcurementPortalPreferenceCommandOutput) => void
|
|
182
|
+
): void;
|
|
183
|
+
getProcurementPortalPreference(
|
|
184
|
+
args: GetProcurementPortalPreferenceCommandInput,
|
|
185
|
+
options: __HttpHandlerOptions,
|
|
186
|
+
cb: (err: any, data?: GetProcurementPortalPreferenceCommandOutput) => void
|
|
187
|
+
): void;
|
|
113
188
|
listInvoiceSummaries(
|
|
114
189
|
args: ListInvoiceSummariesCommandInput,
|
|
115
190
|
options?: __HttpHandlerOptions
|
|
@@ -137,6 +212,20 @@ export interface Invoicing {
|
|
|
137
212
|
options: __HttpHandlerOptions,
|
|
138
213
|
cb: (err: any, data?: ListInvoiceUnitsCommandOutput) => void
|
|
139
214
|
): void;
|
|
215
|
+
listProcurementPortalPreferences(): Promise<ListProcurementPortalPreferencesCommandOutput>;
|
|
216
|
+
listProcurementPortalPreferences(
|
|
217
|
+
args: ListProcurementPortalPreferencesCommandInput,
|
|
218
|
+
options?: __HttpHandlerOptions
|
|
219
|
+
): Promise<ListProcurementPortalPreferencesCommandOutput>;
|
|
220
|
+
listProcurementPortalPreferences(
|
|
221
|
+
args: ListProcurementPortalPreferencesCommandInput,
|
|
222
|
+
cb: (err: any, data?: ListProcurementPortalPreferencesCommandOutput) => void
|
|
223
|
+
): void;
|
|
224
|
+
listProcurementPortalPreferences(
|
|
225
|
+
args: ListProcurementPortalPreferencesCommandInput,
|
|
226
|
+
options: __HttpHandlerOptions,
|
|
227
|
+
cb: (err: any, data?: ListProcurementPortalPreferencesCommandOutput) => void
|
|
228
|
+
): void;
|
|
140
229
|
listTagsForResource(
|
|
141
230
|
args: ListTagsForResourceCommandInput,
|
|
142
231
|
options?: __HttpHandlerOptions
|
|
@@ -150,6 +239,19 @@ export interface Invoicing {
|
|
|
150
239
|
options: __HttpHandlerOptions,
|
|
151
240
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
152
241
|
): void;
|
|
242
|
+
putProcurementPortalPreference(
|
|
243
|
+
args: PutProcurementPortalPreferenceCommandInput,
|
|
244
|
+
options?: __HttpHandlerOptions
|
|
245
|
+
): Promise<PutProcurementPortalPreferenceCommandOutput>;
|
|
246
|
+
putProcurementPortalPreference(
|
|
247
|
+
args: PutProcurementPortalPreferenceCommandInput,
|
|
248
|
+
cb: (err: any, data?: PutProcurementPortalPreferenceCommandOutput) => void
|
|
249
|
+
): void;
|
|
250
|
+
putProcurementPortalPreference(
|
|
251
|
+
args: PutProcurementPortalPreferenceCommandInput,
|
|
252
|
+
options: __HttpHandlerOptions,
|
|
253
|
+
cb: (err: any, data?: PutProcurementPortalPreferenceCommandOutput) => void
|
|
254
|
+
): void;
|
|
153
255
|
tagResource(
|
|
154
256
|
args: TagResourceCommandInput,
|
|
155
257
|
options?: __HttpHandlerOptions
|
|
@@ -189,5 +291,24 @@ export interface Invoicing {
|
|
|
189
291
|
options: __HttpHandlerOptions,
|
|
190
292
|
cb: (err: any, data?: UpdateInvoiceUnitCommandOutput) => void
|
|
191
293
|
): void;
|
|
294
|
+
updateProcurementPortalPreferenceStatus(
|
|
295
|
+
args: UpdateProcurementPortalPreferenceStatusCommandInput,
|
|
296
|
+
options?: __HttpHandlerOptions
|
|
297
|
+
): Promise<UpdateProcurementPortalPreferenceStatusCommandOutput>;
|
|
298
|
+
updateProcurementPortalPreferenceStatus(
|
|
299
|
+
args: UpdateProcurementPortalPreferenceStatusCommandInput,
|
|
300
|
+
cb: (
|
|
301
|
+
err: any,
|
|
302
|
+
data?: UpdateProcurementPortalPreferenceStatusCommandOutput
|
|
303
|
+
) => void
|
|
304
|
+
): void;
|
|
305
|
+
updateProcurementPortalPreferenceStatus(
|
|
306
|
+
args: UpdateProcurementPortalPreferenceStatusCommandInput,
|
|
307
|
+
options: __HttpHandlerOptions,
|
|
308
|
+
cb: (
|
|
309
|
+
err: any,
|
|
310
|
+
data?: UpdateProcurementPortalPreferenceStatusCommandOutput
|
|
311
|
+
) => void
|
|
312
|
+
): void;
|
|
192
313
|
}
|
|
193
314
|
export declare class Invoicing extends InvoicingClient implements Invoicing {}
|
|
@@ -56,10 +56,18 @@ import {
|
|
|
56
56
|
CreateInvoiceUnitCommandInput,
|
|
57
57
|
CreateInvoiceUnitCommandOutput,
|
|
58
58
|
} from "./commands/CreateInvoiceUnitCommand";
|
|
59
|
+
import {
|
|
60
|
+
CreateProcurementPortalPreferenceCommandInput,
|
|
61
|
+
CreateProcurementPortalPreferenceCommandOutput,
|
|
62
|
+
} from "./commands/CreateProcurementPortalPreferenceCommand";
|
|
59
63
|
import {
|
|
60
64
|
DeleteInvoiceUnitCommandInput,
|
|
61
65
|
DeleteInvoiceUnitCommandOutput,
|
|
62
66
|
} from "./commands/DeleteInvoiceUnitCommand";
|
|
67
|
+
import {
|
|
68
|
+
DeleteProcurementPortalPreferenceCommandInput,
|
|
69
|
+
DeleteProcurementPortalPreferenceCommandOutput,
|
|
70
|
+
} from "./commands/DeleteProcurementPortalPreferenceCommand";
|
|
63
71
|
import {
|
|
64
72
|
GetInvoicePDFCommandInput,
|
|
65
73
|
GetInvoicePDFCommandOutput,
|
|
@@ -68,6 +76,10 @@ import {
|
|
|
68
76
|
GetInvoiceUnitCommandInput,
|
|
69
77
|
GetInvoiceUnitCommandOutput,
|
|
70
78
|
} from "./commands/GetInvoiceUnitCommand";
|
|
79
|
+
import {
|
|
80
|
+
GetProcurementPortalPreferenceCommandInput,
|
|
81
|
+
GetProcurementPortalPreferenceCommandOutput,
|
|
82
|
+
} from "./commands/GetProcurementPortalPreferenceCommand";
|
|
71
83
|
import {
|
|
72
84
|
ListInvoiceSummariesCommandInput,
|
|
73
85
|
ListInvoiceSummariesCommandOutput,
|
|
@@ -76,10 +88,18 @@ import {
|
|
|
76
88
|
ListInvoiceUnitsCommandInput,
|
|
77
89
|
ListInvoiceUnitsCommandOutput,
|
|
78
90
|
} from "./commands/ListInvoiceUnitsCommand";
|
|
91
|
+
import {
|
|
92
|
+
ListProcurementPortalPreferencesCommandInput,
|
|
93
|
+
ListProcurementPortalPreferencesCommandOutput,
|
|
94
|
+
} from "./commands/ListProcurementPortalPreferencesCommand";
|
|
79
95
|
import {
|
|
80
96
|
ListTagsForResourceCommandInput,
|
|
81
97
|
ListTagsForResourceCommandOutput,
|
|
82
98
|
} from "./commands/ListTagsForResourceCommand";
|
|
99
|
+
import {
|
|
100
|
+
PutProcurementPortalPreferenceCommandInput,
|
|
101
|
+
PutProcurementPortalPreferenceCommandOutput,
|
|
102
|
+
} from "./commands/PutProcurementPortalPreferenceCommand";
|
|
83
103
|
import {
|
|
84
104
|
TagResourceCommandInput,
|
|
85
105
|
TagResourceCommandOutput,
|
|
@@ -92,6 +112,10 @@ import {
|
|
|
92
112
|
UpdateInvoiceUnitCommandInput,
|
|
93
113
|
UpdateInvoiceUnitCommandOutput,
|
|
94
114
|
} from "./commands/UpdateInvoiceUnitCommand";
|
|
115
|
+
import {
|
|
116
|
+
UpdateProcurementPortalPreferenceStatusCommandInput,
|
|
117
|
+
UpdateProcurementPortalPreferenceStatusCommandOutput,
|
|
118
|
+
} from "./commands/UpdateProcurementPortalPreferenceStatusCommand";
|
|
95
119
|
import {
|
|
96
120
|
ClientInputEndpointParameters,
|
|
97
121
|
ClientResolvedEndpointParameters,
|
|
@@ -102,27 +126,39 @@ export { __Client };
|
|
|
102
126
|
export type ServiceInputTypes =
|
|
103
127
|
| BatchGetInvoiceProfileCommandInput
|
|
104
128
|
| CreateInvoiceUnitCommandInput
|
|
129
|
+
| CreateProcurementPortalPreferenceCommandInput
|
|
105
130
|
| DeleteInvoiceUnitCommandInput
|
|
131
|
+
| DeleteProcurementPortalPreferenceCommandInput
|
|
106
132
|
| GetInvoicePDFCommandInput
|
|
107
133
|
| GetInvoiceUnitCommandInput
|
|
134
|
+
| GetProcurementPortalPreferenceCommandInput
|
|
108
135
|
| ListInvoiceSummariesCommandInput
|
|
109
136
|
| ListInvoiceUnitsCommandInput
|
|
137
|
+
| ListProcurementPortalPreferencesCommandInput
|
|
110
138
|
| ListTagsForResourceCommandInput
|
|
139
|
+
| PutProcurementPortalPreferenceCommandInput
|
|
111
140
|
| TagResourceCommandInput
|
|
112
141
|
| UntagResourceCommandInput
|
|
113
|
-
| UpdateInvoiceUnitCommandInput
|
|
142
|
+
| UpdateInvoiceUnitCommandInput
|
|
143
|
+
| UpdateProcurementPortalPreferenceStatusCommandInput;
|
|
114
144
|
export type ServiceOutputTypes =
|
|
115
145
|
| BatchGetInvoiceProfileCommandOutput
|
|
116
146
|
| CreateInvoiceUnitCommandOutput
|
|
147
|
+
| CreateProcurementPortalPreferenceCommandOutput
|
|
117
148
|
| DeleteInvoiceUnitCommandOutput
|
|
149
|
+
| DeleteProcurementPortalPreferenceCommandOutput
|
|
118
150
|
| GetInvoicePDFCommandOutput
|
|
119
151
|
| GetInvoiceUnitCommandOutput
|
|
152
|
+
| GetProcurementPortalPreferenceCommandOutput
|
|
120
153
|
| ListInvoiceSummariesCommandOutput
|
|
121
154
|
| ListInvoiceUnitsCommandOutput
|
|
155
|
+
| ListProcurementPortalPreferencesCommandOutput
|
|
122
156
|
| ListTagsForResourceCommandOutput
|
|
157
|
+
| PutProcurementPortalPreferenceCommandOutput
|
|
123
158
|
| TagResourceCommandOutput
|
|
124
159
|
| UntagResourceCommandOutput
|
|
125
|
-
| UpdateInvoiceUnitCommandOutput
|
|
160
|
+
| UpdateInvoiceUnitCommandOutput
|
|
161
|
+
| UpdateProcurementPortalPreferenceStatusCommandOutput;
|
|
126
162
|
export interface ClientDefaults
|
|
127
163
|
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
128
164
|
requestHandler?: __HttpHandlerUserInput;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
InvoicingClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../InvoicingClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateProcurementPortalPreferenceRequest,
|
|
10
|
+
CreateProcurementPortalPreferenceResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateProcurementPortalPreferenceCommandInput
|
|
15
|
+
extends CreateProcurementPortalPreferenceRequest {}
|
|
16
|
+
export interface CreateProcurementPortalPreferenceCommandOutput
|
|
17
|
+
extends CreateProcurementPortalPreferenceResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateProcurementPortalPreferenceCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateProcurementPortalPreferenceCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateProcurementPortalPreferenceCommandInput,
|
|
24
|
+
CreateProcurementPortalPreferenceCommandOutput,
|
|
25
|
+
InvoicingClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateProcurementPortalPreferenceCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateProcurementPortalPreferenceCommandInput,
|
|
33
|
+
CreateProcurementPortalPreferenceCommandOutput,
|
|
34
|
+
InvoicingClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateProcurementPortalPreferenceCommand extends CreateProcurementPortalPreferenceCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateProcurementPortalPreferenceRequest;
|
|
44
|
+
output: CreateProcurementPortalPreferenceResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateProcurementPortalPreferenceCommandInput;
|
|
48
|
+
output: CreateProcurementPortalPreferenceCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
InvoicingClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../InvoicingClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteProcurementPortalPreferenceRequest,
|
|
10
|
+
DeleteProcurementPortalPreferenceResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteProcurementPortalPreferenceCommandInput
|
|
15
|
+
extends DeleteProcurementPortalPreferenceRequest {}
|
|
16
|
+
export interface DeleteProcurementPortalPreferenceCommandOutput
|
|
17
|
+
extends DeleteProcurementPortalPreferenceResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteProcurementPortalPreferenceCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteProcurementPortalPreferenceCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteProcurementPortalPreferenceCommandInput,
|
|
24
|
+
DeleteProcurementPortalPreferenceCommandOutput,
|
|
25
|
+
InvoicingClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteProcurementPortalPreferenceCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteProcurementPortalPreferenceCommandInput,
|
|
33
|
+
DeleteProcurementPortalPreferenceCommandOutput,
|
|
34
|
+
InvoicingClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteProcurementPortalPreferenceCommand extends DeleteProcurementPortalPreferenceCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteProcurementPortalPreferenceRequest;
|
|
44
|
+
output: DeleteProcurementPortalPreferenceResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteProcurementPortalPreferenceCommandInput;
|
|
48
|
+
output: DeleteProcurementPortalPreferenceCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
InvoicingClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../InvoicingClient";
|
|
8
|
+
import {
|
|
9
|
+
GetProcurementPortalPreferenceRequest,
|
|
10
|
+
GetProcurementPortalPreferenceResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetProcurementPortalPreferenceCommandInput
|
|
15
|
+
extends GetProcurementPortalPreferenceRequest {}
|
|
16
|
+
export interface GetProcurementPortalPreferenceCommandOutput
|
|
17
|
+
extends GetProcurementPortalPreferenceResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetProcurementPortalPreferenceCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetProcurementPortalPreferenceCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetProcurementPortalPreferenceCommandInput,
|
|
24
|
+
GetProcurementPortalPreferenceCommandOutput,
|
|
25
|
+
InvoicingClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetProcurementPortalPreferenceCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetProcurementPortalPreferenceCommandInput,
|
|
33
|
+
GetProcurementPortalPreferenceCommandOutput,
|
|
34
|
+
InvoicingClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetProcurementPortalPreferenceCommand extends GetProcurementPortalPreferenceCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetProcurementPortalPreferenceRequest;
|
|
44
|
+
output: GetProcurementPortalPreferenceResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetProcurementPortalPreferenceCommandInput;
|
|
48
|
+
output: GetProcurementPortalPreferenceCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
InvoicingClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../InvoicingClient";
|
|
8
|
+
import {
|
|
9
|
+
ListProcurementPortalPreferencesRequest,
|
|
10
|
+
ListProcurementPortalPreferencesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListProcurementPortalPreferencesCommandInput
|
|
15
|
+
extends ListProcurementPortalPreferencesRequest {}
|
|
16
|
+
export interface ListProcurementPortalPreferencesCommandOutput
|
|
17
|
+
extends ListProcurementPortalPreferencesResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListProcurementPortalPreferencesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListProcurementPortalPreferencesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListProcurementPortalPreferencesCommandInput,
|
|
24
|
+
ListProcurementPortalPreferencesCommandOutput,
|
|
25
|
+
InvoicingClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListProcurementPortalPreferencesCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListProcurementPortalPreferencesCommandInput,
|
|
33
|
+
ListProcurementPortalPreferencesCommandOutput,
|
|
34
|
+
InvoicingClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListProcurementPortalPreferencesCommand extends ListProcurementPortalPreferencesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListProcurementPortalPreferencesRequest;
|
|
44
|
+
output: ListProcurementPortalPreferencesResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListProcurementPortalPreferencesCommandInput;
|
|
48
|
+
output: ListProcurementPortalPreferencesCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
InvoicingClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../InvoicingClient";
|
|
8
|
+
import {
|
|
9
|
+
PutProcurementPortalPreferenceRequest,
|
|
10
|
+
PutProcurementPortalPreferenceResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface PutProcurementPortalPreferenceCommandInput
|
|
15
|
+
extends PutProcurementPortalPreferenceRequest {}
|
|
16
|
+
export interface PutProcurementPortalPreferenceCommandOutput
|
|
17
|
+
extends PutProcurementPortalPreferenceResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const PutProcurementPortalPreferenceCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: PutProcurementPortalPreferenceCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
PutProcurementPortalPreferenceCommandInput,
|
|
24
|
+
PutProcurementPortalPreferenceCommandOutput,
|
|
25
|
+
InvoicingClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: PutProcurementPortalPreferenceCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
PutProcurementPortalPreferenceCommandInput,
|
|
33
|
+
PutProcurementPortalPreferenceCommandOutput,
|
|
34
|
+
InvoicingClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class PutProcurementPortalPreferenceCommand extends PutProcurementPortalPreferenceCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: PutProcurementPortalPreferenceRequest;
|
|
44
|
+
output: PutProcurementPortalPreferenceResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: PutProcurementPortalPreferenceCommandInput;
|
|
48
|
+
output: PutProcurementPortalPreferenceCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|