@aws-sdk/client-invoicing 3.1130.0 → 3.1131.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 +14 -0
- package/dist-cjs/index.js +108 -3
- package/dist-es/Invoicing.js +8 -0
- package/dist-es/commands/ListProcurementPortalSuppliersCommand.js +4 -0
- package/dist-es/commands/ListProcurementPortalsCommand.js +4 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/enums.js +4 -0
- package/dist-es/pagination/ListProcurementPortalSuppliersPaginator.js +4 -0
- package/dist-es/pagination/ListProcurementPortalsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +74 -2
- package/dist-types/Invoicing.d.ts +29 -0
- package/dist-types/InvoicingClient.d.ts +4 -2
- package/dist-types/commands/ListProcurementPortalSuppliersCommand.d.ts +128 -0
- package/dist-types/commands/ListProcurementPortalsCommand.d.ts +155 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/enums.d.ts +18 -0
- package/dist-types/models/models_0.d.ts +145 -1
- package/dist-types/pagination/ListProcurementPortalSuppliersPaginator.d.ts +7 -0
- package/dist-types/pagination/ListProcurementPortalsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/schemas/schemas_0.d.ts +10 -0
- package/dist-types/ts3.4/Invoicing.d.ts +49 -0
- package/dist-types/ts3.4/InvoicingClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/ListProcurementPortalSuppliersCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListProcurementPortalsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/enums.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +37 -0
- package/dist-types/ts3.4/pagination/ListProcurementPortalSuppliersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListProcurementPortalsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -0
- package/package.json +1 -1
|
@@ -47,6 +47,14 @@ import {
|
|
|
47
47
|
ListProcurementPortalPreferencesCommandInput,
|
|
48
48
|
ListProcurementPortalPreferencesCommandOutput,
|
|
49
49
|
} from "./commands/ListProcurementPortalPreferencesCommand";
|
|
50
|
+
import {
|
|
51
|
+
ListProcurementPortalsCommandInput,
|
|
52
|
+
ListProcurementPortalsCommandOutput,
|
|
53
|
+
} from "./commands/ListProcurementPortalsCommand";
|
|
54
|
+
import {
|
|
55
|
+
ListProcurementPortalSuppliersCommandInput,
|
|
56
|
+
ListProcurementPortalSuppliersCommandOutput,
|
|
57
|
+
} from "./commands/ListProcurementPortalSuppliersCommand";
|
|
50
58
|
import {
|
|
51
59
|
ListTagsForResourceCommandInput,
|
|
52
60
|
ListTagsForResourceCommandOutput,
|
|
@@ -223,6 +231,33 @@ export interface Invoicing {
|
|
|
223
231
|
options: __HttpHandlerOptions,
|
|
224
232
|
cb: (err: any, data?: ListProcurementPortalPreferencesCommandOutput) => void,
|
|
225
233
|
): void;
|
|
234
|
+
listProcurementPortals(): Promise<ListProcurementPortalsCommandOutput>;
|
|
235
|
+
listProcurementPortals(
|
|
236
|
+
args: ListProcurementPortalsCommandInput,
|
|
237
|
+
options?: __HttpHandlerOptions,
|
|
238
|
+
): Promise<ListProcurementPortalsCommandOutput>;
|
|
239
|
+
listProcurementPortals(
|
|
240
|
+
args: ListProcurementPortalsCommandInput,
|
|
241
|
+
cb: (err: any, data?: ListProcurementPortalsCommandOutput) => void,
|
|
242
|
+
): void;
|
|
243
|
+
listProcurementPortals(
|
|
244
|
+
args: ListProcurementPortalsCommandInput,
|
|
245
|
+
options: __HttpHandlerOptions,
|
|
246
|
+
cb: (err: any, data?: ListProcurementPortalsCommandOutput) => void,
|
|
247
|
+
): void;
|
|
248
|
+
listProcurementPortalSuppliers(
|
|
249
|
+
args: ListProcurementPortalSuppliersCommandInput,
|
|
250
|
+
options?: __HttpHandlerOptions,
|
|
251
|
+
): Promise<ListProcurementPortalSuppliersCommandOutput>;
|
|
252
|
+
listProcurementPortalSuppliers(
|
|
253
|
+
args: ListProcurementPortalSuppliersCommandInput,
|
|
254
|
+
cb: (err: any, data?: ListProcurementPortalSuppliersCommandOutput) => void,
|
|
255
|
+
): void;
|
|
256
|
+
listProcurementPortalSuppliers(
|
|
257
|
+
args: ListProcurementPortalSuppliersCommandInput,
|
|
258
|
+
options: __HttpHandlerOptions,
|
|
259
|
+
cb: (err: any, data?: ListProcurementPortalSuppliersCommandOutput) => void,
|
|
260
|
+
): void;
|
|
226
261
|
listTagsForResource(
|
|
227
262
|
args: ListTagsForResourceCommandInput,
|
|
228
263
|
options?: __HttpHandlerOptions,
|
|
@@ -348,5 +383,19 @@ export interface Invoicing {
|
|
|
348
383
|
Exclude<keyof PaginationConfiguration, "client">
|
|
349
384
|
>,
|
|
350
385
|
): Paginator<ListProcurementPortalPreferencesCommandOutput>;
|
|
386
|
+
paginateListProcurementPortals(
|
|
387
|
+
args?: ListProcurementPortalsCommandInput,
|
|
388
|
+
paginationConfig?: Pick<
|
|
389
|
+
PaginationConfiguration,
|
|
390
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
391
|
+
>,
|
|
392
|
+
): Paginator<ListProcurementPortalsCommandOutput>;
|
|
393
|
+
paginateListProcurementPortalSuppliers(
|
|
394
|
+
args: ListProcurementPortalSuppliersCommandInput,
|
|
395
|
+
paginationConfig?: Pick<
|
|
396
|
+
PaginationConfiguration,
|
|
397
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
398
|
+
>,
|
|
399
|
+
): Paginator<ListProcurementPortalSuppliersCommandOutput>;
|
|
351
400
|
}
|
|
352
401
|
export declare class Invoicing extends InvoicingClient implements Invoicing {}
|
|
@@ -77,6 +77,14 @@ import {
|
|
|
77
77
|
ListProcurementPortalPreferencesCommandInput,
|
|
78
78
|
ListProcurementPortalPreferencesCommandOutput,
|
|
79
79
|
} from "./commands/ListProcurementPortalPreferencesCommand";
|
|
80
|
+
import {
|
|
81
|
+
ListProcurementPortalsCommandInput,
|
|
82
|
+
ListProcurementPortalsCommandOutput,
|
|
83
|
+
} from "./commands/ListProcurementPortalsCommand";
|
|
84
|
+
import {
|
|
85
|
+
ListProcurementPortalSuppliersCommandInput,
|
|
86
|
+
ListProcurementPortalSuppliersCommandOutput,
|
|
87
|
+
} from "./commands/ListProcurementPortalSuppliersCommand";
|
|
80
88
|
import {
|
|
81
89
|
ListTagsForResourceCommandInput,
|
|
82
90
|
ListTagsForResourceCommandOutput,
|
|
@@ -125,6 +133,8 @@ export type ServiceInputTypes =
|
|
|
125
133
|
| ListInvoiceSummariesCommandInput
|
|
126
134
|
| ListInvoiceUnitsCommandInput
|
|
127
135
|
| ListProcurementPortalPreferencesCommandInput
|
|
136
|
+
| ListProcurementPortalSuppliersCommandInput
|
|
137
|
+
| ListProcurementPortalsCommandInput
|
|
128
138
|
| ListTagsForResourceCommandInput
|
|
129
139
|
| PutProcurementPortalPreferenceCommandInput
|
|
130
140
|
| SendProcurementPortalValidationCommandInput
|
|
@@ -145,6 +155,8 @@ export type ServiceOutputTypes =
|
|
|
145
155
|
| ListInvoiceSummariesCommandOutput
|
|
146
156
|
| ListInvoiceUnitsCommandOutput
|
|
147
157
|
| ListProcurementPortalPreferencesCommandOutput
|
|
158
|
+
| ListProcurementPortalSuppliersCommandOutput
|
|
159
|
+
| ListProcurementPortalsCommandOutput
|
|
148
160
|
| ListTagsForResourceCommandOutput
|
|
149
161
|
| PutProcurementPortalPreferenceCommandOutput
|
|
150
162
|
| SendProcurementPortalValidationCommandOutput
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListProcurementPortalSuppliersRequest,
|
|
4
|
+
ListProcurementPortalSuppliersResponse,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface ListProcurementPortalSuppliersCommandInput extends ListProcurementPortalSuppliersRequest {}
|
|
8
|
+
export interface ListProcurementPortalSuppliersCommandOutput
|
|
9
|
+
extends ListProcurementPortalSuppliersResponse, __MetadataBearer {}
|
|
10
|
+
declare const ListProcurementPortalSuppliersCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: ListProcurementPortalSuppliersCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
ListProcurementPortalSuppliersCommandInput,
|
|
15
|
+
ListProcurementPortalSuppliersCommandOutput,
|
|
16
|
+
import("..").InvoicingClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: ListProcurementPortalSuppliersCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
ListProcurementPortalSuppliersCommandInput,
|
|
24
|
+
ListProcurementPortalSuppliersCommandOutput,
|
|
25
|
+
import("..").InvoicingClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class ListProcurementPortalSuppliersCommand extends ListProcurementPortalSuppliersCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: ListProcurementPortalSuppliersRequest;
|
|
35
|
+
output: ListProcurementPortalSuppliersResponse;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: ListProcurementPortalSuppliersCommandInput;
|
|
39
|
+
output: ListProcurementPortalSuppliersCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { ListProcurementPortalsRequest, ListProcurementPortalsResponse } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface ListProcurementPortalsCommandInput extends ListProcurementPortalsRequest {}
|
|
5
|
+
export interface ListProcurementPortalsCommandOutput
|
|
6
|
+
extends ListProcurementPortalsResponse, __MetadataBearer {}
|
|
7
|
+
declare const ListProcurementPortalsCommand_base: {
|
|
8
|
+
new (
|
|
9
|
+
input: ListProcurementPortalsCommandInput,
|
|
10
|
+
): import("@smithy/core/client").CommandImpl<
|
|
11
|
+
ListProcurementPortalsCommandInput,
|
|
12
|
+
ListProcurementPortalsCommandOutput,
|
|
13
|
+
import("..").InvoicingClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
16
|
+
>;
|
|
17
|
+
new (
|
|
18
|
+
...[input]: [] | [ListProcurementPortalsCommandInput]
|
|
19
|
+
): import("@smithy/core/client").CommandImpl<
|
|
20
|
+
ListProcurementPortalsCommandInput,
|
|
21
|
+
ListProcurementPortalsCommandOutput,
|
|
22
|
+
import("..").InvoicingClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
export declare class ListProcurementPortalsCommand extends ListProcurementPortalsCommand_base {
|
|
29
|
+
protected static __types: {
|
|
30
|
+
api: {
|
|
31
|
+
input: ListProcurementPortalsRequest;
|
|
32
|
+
output: ListProcurementPortalsResponse;
|
|
33
|
+
};
|
|
34
|
+
sdk: {
|
|
35
|
+
input: ListProcurementPortalsCommandInput;
|
|
36
|
+
output: ListProcurementPortalsCommandOutput;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
}
|
|
@@ -9,6 +9,8 @@ export * from "./GetProcurementPortalPreferenceCommand";
|
|
|
9
9
|
export * from "./ListInvoiceSummariesCommand";
|
|
10
10
|
export * from "./ListInvoiceUnitsCommand";
|
|
11
11
|
export * from "./ListProcurementPortalPreferencesCommand";
|
|
12
|
+
export * from "./ListProcurementPortalSuppliersCommand";
|
|
13
|
+
export * from "./ListProcurementPortalsCommand";
|
|
12
14
|
export * from "./ListTagsForResourceCommand";
|
|
13
15
|
export * from "./PutProcurementPortalPreferenceCommand";
|
|
14
16
|
export * from "./SendProcurementPortalValidationCommand";
|
|
@@ -125,3 +125,8 @@ export declare const ListInvoiceSummariesResourceType: {
|
|
|
125
125
|
};
|
|
126
126
|
export type ListInvoiceSummariesResourceType =
|
|
127
127
|
(typeof ListInvoiceSummariesResourceType)[keyof typeof ListInvoiceSummariesResourceType];
|
|
128
|
+
export declare const ProcurementPortalEnv: {
|
|
129
|
+
readonly PROD: "PROD";
|
|
130
|
+
readonly TEST: "TEST";
|
|
131
|
+
};
|
|
132
|
+
export type ProcurementPortalEnv = (typeof ProcurementPortalEnv)[keyof typeof ProcurementPortalEnv];
|
|
@@ -9,6 +9,7 @@ import {
|
|
|
9
9
|
InvoiceFrequency,
|
|
10
10
|
InvoiceType,
|
|
11
11
|
ListInvoiceSummariesResourceType,
|
|
12
|
+
ProcurementPortalEnv,
|
|
12
13
|
ProcurementPortalName,
|
|
13
14
|
ProcurementPortalPreferenceStatus,
|
|
14
15
|
Protocol,
|
|
@@ -179,6 +180,13 @@ export interface Entity {
|
|
|
179
180
|
InvoicingEntity?: string | undefined;
|
|
180
181
|
BillingEntity?: BillingEntity | undefined;
|
|
181
182
|
}
|
|
183
|
+
export interface InvoiceConfiguration {
|
|
184
|
+
DocumentTypes?: EinvoiceDeliveryDocumentType[] | undefined;
|
|
185
|
+
AttachmentTypes?: EinvoiceDeliveryAttachmentType[] | undefined;
|
|
186
|
+
}
|
|
187
|
+
export interface FeatureConfigurations {
|
|
188
|
+
InvoiceConfiguration?: InvoiceConfiguration | undefined;
|
|
189
|
+
}
|
|
182
190
|
export interface Filters {
|
|
183
191
|
Names?: string[] | undefined;
|
|
184
192
|
InvoiceReceivers?: string[] | undefined;
|
|
@@ -351,6 +359,35 @@ export interface ListProcurementPortalPreferencesResponse {
|
|
|
351
359
|
ProcurementPortalPreferences?: ProcurementPortalPreferenceSummary[] | undefined;
|
|
352
360
|
NextToken?: string | undefined;
|
|
353
361
|
}
|
|
362
|
+
export interface ListProcurementPortalsRequest {
|
|
363
|
+
NextToken?: string | undefined;
|
|
364
|
+
MaxResults?: number | undefined;
|
|
365
|
+
}
|
|
366
|
+
export interface ProcurementPortal {
|
|
367
|
+
PortalIdentifier: string | undefined;
|
|
368
|
+
PortalName: ProcurementPortalName | undefined;
|
|
369
|
+
PortalDisplayName?: string | undefined;
|
|
370
|
+
DefaultFeatureConfigurations?: FeatureConfigurations | undefined;
|
|
371
|
+
}
|
|
372
|
+
export interface ListProcurementPortalsResponse {
|
|
373
|
+
ProcurementPortals: ProcurementPortal[] | undefined;
|
|
374
|
+
NextToken?: string | undefined;
|
|
375
|
+
}
|
|
376
|
+
export interface ListProcurementPortalSuppliersRequest {
|
|
377
|
+
PortalIdentifier: string | undefined;
|
|
378
|
+
NextToken?: string | undefined;
|
|
379
|
+
MaxResults?: number | undefined;
|
|
380
|
+
}
|
|
381
|
+
export interface ProcurementPortalSupplier {
|
|
382
|
+
SupplierIdentifier: string | undefined;
|
|
383
|
+
SellerOfRecord?: string | undefined;
|
|
384
|
+
CountryCode?: string | undefined;
|
|
385
|
+
Environment?: ProcurementPortalEnv | undefined;
|
|
386
|
+
}
|
|
387
|
+
export interface ListProcurementPortalSuppliersResponse {
|
|
388
|
+
ProcurementPortalSuppliers: ProcurementPortalSupplier[] | undefined;
|
|
389
|
+
NextToken?: string | undefined;
|
|
390
|
+
}
|
|
354
391
|
export interface ListTagsForResourceRequest {
|
|
355
392
|
ResourceArn: string | undefined;
|
|
356
393
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListProcurementPortalSuppliersCommandInput,
|
|
4
|
+
ListProcurementPortalSuppliersCommandOutput,
|
|
5
|
+
} from "../commands/ListProcurementPortalSuppliersCommand";
|
|
6
|
+
import { InvoicingPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListProcurementPortalSuppliers: (
|
|
8
|
+
config: InvoicingPaginationConfiguration,
|
|
9
|
+
input: ListProcurementPortalSuppliersCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListProcurementPortalSuppliersCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListProcurementPortalsCommandInput,
|
|
4
|
+
ListProcurementPortalsCommandOutput,
|
|
5
|
+
} from "../commands/ListProcurementPortalsCommand";
|
|
6
|
+
import { InvoicingPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListProcurementPortals: (
|
|
8
|
+
config: InvoicingPaginationConfiguration,
|
|
9
|
+
input: ListProcurementPortalsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListProcurementPortalsCommandOutput>;
|
|
@@ -2,3 +2,5 @@ export * from "./Interfaces";
|
|
|
2
2
|
export * from "./ListInvoiceSummariesPaginator";
|
|
3
3
|
export * from "./ListInvoiceUnitsPaginator";
|
|
4
4
|
export * from "./ListProcurementPortalPreferencesPaginator";
|
|
5
|
+
export * from "./ListProcurementPortalsPaginator";
|
|
6
|
+
export * from "./ListProcurementPortalSuppliersPaginator";
|
|
@@ -28,6 +28,7 @@ export declare var DiscountsBreakdown$: StaticStructureSchema;
|
|
|
28
28
|
export declare var DiscountsBreakdownAmount$: StaticStructureSchema;
|
|
29
29
|
export declare var EinvoiceDeliveryPreference$: StaticStructureSchema;
|
|
30
30
|
export declare var Entity$: StaticStructureSchema;
|
|
31
|
+
export declare var FeatureConfigurations$: StaticStructureSchema;
|
|
31
32
|
export declare var FeesBreakdown$: StaticStructureSchema;
|
|
32
33
|
export declare var FeesBreakdownAmount$: StaticStructureSchema;
|
|
33
34
|
export declare var Filters$: StaticStructureSchema;
|
|
@@ -37,6 +38,7 @@ export declare var GetInvoiceUnitRequest$: StaticStructureSchema;
|
|
|
37
38
|
export declare var GetInvoiceUnitResponse$: StaticStructureSchema;
|
|
38
39
|
export declare var GetProcurementPortalPreferenceRequest$: StaticStructureSchema;
|
|
39
40
|
export declare var GetProcurementPortalPreferenceResponse$: StaticStructureSchema;
|
|
41
|
+
export declare var InvoiceConfiguration$: StaticStructureSchema;
|
|
40
42
|
export declare var InvoiceCurrencyAmount$: StaticStructureSchema;
|
|
41
43
|
export declare var InvoicePDF$: StaticStructureSchema;
|
|
42
44
|
export declare var InvoiceProfile$: StaticStructureSchema;
|
|
@@ -51,11 +53,17 @@ export declare var ListInvoiceUnitsRequest$: StaticStructureSchema;
|
|
|
51
53
|
export declare var ListInvoiceUnitsResponse$: StaticStructureSchema;
|
|
52
54
|
export declare var ListProcurementPortalPreferencesRequest$: StaticStructureSchema;
|
|
53
55
|
export declare var ListProcurementPortalPreferencesResponse$: StaticStructureSchema;
|
|
56
|
+
export declare var ListProcurementPortalsRequest$: StaticStructureSchema;
|
|
57
|
+
export declare var ListProcurementPortalsResponse$: StaticStructureSchema;
|
|
58
|
+
export declare var ListProcurementPortalSuppliersRequest$: StaticStructureSchema;
|
|
59
|
+
export declare var ListProcurementPortalSuppliersResponse$: StaticStructureSchema;
|
|
54
60
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
55
61
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
62
|
+
export declare var ProcurementPortal$: StaticStructureSchema;
|
|
56
63
|
export declare var ProcurementPortalPreference$: StaticStructureSchema;
|
|
57
64
|
export declare var ProcurementPortalPreferenceSelector$: StaticStructureSchema;
|
|
58
65
|
export declare var ProcurementPortalPreferenceSummary$: StaticStructureSchema;
|
|
66
|
+
export declare var ProcurementPortalSupplier$: StaticStructureSchema;
|
|
59
67
|
export declare var PurchaseOrderDataSource$: StaticStructureSchema;
|
|
60
68
|
export declare var PutProcurementPortalPreferenceRequest$: StaticStructureSchema;
|
|
61
69
|
export declare var PutProcurementPortalPreferenceResponse$: StaticStructureSchema;
|
|
@@ -90,6 +98,8 @@ export declare var GetProcurementPortalPreference$: StaticOperationSchema;
|
|
|
90
98
|
export declare var ListInvoiceSummaries$: StaticOperationSchema;
|
|
91
99
|
export declare var ListInvoiceUnits$: StaticOperationSchema;
|
|
92
100
|
export declare var ListProcurementPortalPreferences$: StaticOperationSchema;
|
|
101
|
+
export declare var ListProcurementPortals$: StaticOperationSchema;
|
|
102
|
+
export declare var ListProcurementPortalSuppliers$: StaticOperationSchema;
|
|
93
103
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
94
104
|
export declare var PutProcurementPortalPreference$: StaticOperationSchema;
|
|
95
105
|
export declare var SendProcurementPortalValidation$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-invoicing",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1131.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Invoicing Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-invoicing",
|
|
6
6
|
"license": "Apache-2.0",
|