@aws-sdk/client-invoicing 3.936.0 → 3.938.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.
Files changed (47) hide show
  1. package/README.md +49 -1
  2. package/dist-cjs/index.js +465 -8
  3. package/dist-es/Invoicing.js +12 -0
  4. package/dist-es/commands/CreateProcurementPortalPreferenceCommand.js +16 -0
  5. package/dist-es/commands/DeleteProcurementPortalPreferenceCommand.js +16 -0
  6. package/dist-es/commands/GetProcurementPortalPreferenceCommand.js +16 -0
  7. package/dist-es/commands/ListProcurementPortalPreferencesCommand.js +16 -0
  8. package/dist-es/commands/PutProcurementPortalPreferenceCommand.js +16 -0
  9. package/dist-es/commands/UpdateProcurementPortalPreferenceStatusCommand.js +16 -0
  10. package/dist-es/commands/index.js +6 -0
  11. package/dist-es/models/enums.js +40 -0
  12. package/dist-es/models/errors.js +16 -0
  13. package/dist-es/pagination/ListProcurementPortalPreferencesPaginator.js +4 -0
  14. package/dist-es/pagination/index.js +1 -0
  15. package/dist-es/schemas/schemas_0.js +317 -9
  16. package/dist-types/Invoicing.d.ts +44 -1
  17. package/dist-types/InvoicingClient.d.ts +9 -3
  18. package/dist-types/commands/CreateProcurementPortalPreferenceCommand.d.ts +217 -0
  19. package/dist-types/commands/DeleteProcurementPortalPreferenceCommand.d.ts +107 -0
  20. package/dist-types/commands/GetProcurementPortalPreferenceCommand.d.ts +230 -0
  21. package/dist-types/commands/ListProcurementPortalPreferencesCommand.d.ts +229 -0
  22. package/dist-types/commands/PutProcurementPortalPreferenceCommand.d.ts +196 -0
  23. package/dist-types/commands/UpdateProcurementPortalPreferenceStatusCommand.d.ts +118 -0
  24. package/dist-types/commands/index.d.ts +6 -0
  25. package/dist-types/index.d.ts +1 -1
  26. package/dist-types/models/enums.d.ts +112 -0
  27. package/dist-types/models/errors.d.ts +22 -0
  28. package/dist-types/models/models_0.d.ts +634 -1
  29. package/dist-types/pagination/ListProcurementPortalPreferencesPaginator.d.ts +7 -0
  30. package/dist-types/pagination/index.d.ts +1 -0
  31. package/dist-types/schemas/schemas_0.d.ts +34 -0
  32. package/dist-types/ts3.4/Invoicing.d.ts +121 -0
  33. package/dist-types/ts3.4/InvoicingClient.d.ts +38 -2
  34. package/dist-types/ts3.4/commands/CreateProcurementPortalPreferenceCommand.d.ts +51 -0
  35. package/dist-types/ts3.4/commands/DeleteProcurementPortalPreferenceCommand.d.ts +51 -0
  36. package/dist-types/ts3.4/commands/GetProcurementPortalPreferenceCommand.d.ts +51 -0
  37. package/dist-types/ts3.4/commands/ListProcurementPortalPreferencesCommand.d.ts +51 -0
  38. package/dist-types/ts3.4/commands/PutProcurementPortalPreferenceCommand.d.ts +51 -0
  39. package/dist-types/ts3.4/commands/UpdateProcurementPortalPreferenceStatusCommand.d.ts +51 -0
  40. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  41. package/dist-types/ts3.4/models/enums.d.ts +56 -0
  42. package/dist-types/ts3.4/models/errors.d.ts +7 -0
  43. package/dist-types/ts3.4/models/models_0.d.ts +174 -1
  44. package/dist-types/ts3.4/pagination/ListProcurementPortalPreferencesPaginator.d.ts +11 -0
  45. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  46. package/dist-types/ts3.4/schemas/schemas_0.d.ts +34 -0
  47. package/package.json +1 -1
@@ -22,6 +22,118 @@ export declare const ValidationExceptionReason: {
22
22
  * @public
23
23
  */
24
24
  export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
25
+ /**
26
+ * @public
27
+ * @enum
28
+ */
29
+ export declare const BuyerDomain: {
30
+ readonly NetworkID: "NetworkID";
31
+ };
32
+ /**
33
+ * @public
34
+ */
35
+ export type BuyerDomain = (typeof BuyerDomain)[keyof typeof BuyerDomain];
36
+ /**
37
+ * @public
38
+ * @enum
39
+ */
40
+ export declare const ConnectionTestingMethod: {
41
+ readonly PROD_ENV_DOLLAR_TEST: "PROD_ENV_DOLLAR_TEST";
42
+ readonly TEST_ENV_REPLAY_TEST: "TEST_ENV_REPLAY_TEST";
43
+ };
44
+ /**
45
+ * @public
46
+ */
47
+ export type ConnectionTestingMethod = (typeof ConnectionTestingMethod)[keyof typeof ConnectionTestingMethod];
48
+ /**
49
+ * @public
50
+ * @enum
51
+ */
52
+ export declare const EinvoiceDeliveryAttachmentType: {
53
+ readonly INVOICE_PDF: "INVOICE_PDF";
54
+ readonly RFP_PDF: "RFP_PDF";
55
+ };
56
+ /**
57
+ * @public
58
+ */
59
+ export type EinvoiceDeliveryAttachmentType = (typeof EinvoiceDeliveryAttachmentType)[keyof typeof EinvoiceDeliveryAttachmentType];
60
+ /**
61
+ * @public
62
+ * @enum
63
+ */
64
+ export declare const EinvoiceDeliveryDocumentType: {
65
+ readonly AWS_CLOUD_CREDIT_MEMO: "AWS_CLOUD_CREDIT_MEMO";
66
+ readonly AWS_CLOUD_INVOICE: "AWS_CLOUD_INVOICE";
67
+ readonly AWS_MARKETPLACE_CREDIT_MEMO: "AWS_MARKETPLACE_CREDIT_MEMO";
68
+ readonly AWS_MARKETPLACE_INVOICE: "AWS_MARKETPLACE_INVOICE";
69
+ readonly AWS_REQUEST_FOR_PAYMENT: "AWS_REQUEST_FOR_PAYMENT";
70
+ };
71
+ /**
72
+ * @public
73
+ */
74
+ export type EinvoiceDeliveryDocumentType = (typeof EinvoiceDeliveryDocumentType)[keyof typeof EinvoiceDeliveryDocumentType];
75
+ /**
76
+ * @public
77
+ * @enum
78
+ */
79
+ export declare const Protocol: {
80
+ readonly CXML: "CXML";
81
+ };
82
+ /**
83
+ * @public
84
+ */
85
+ export type Protocol = (typeof Protocol)[keyof typeof Protocol];
86
+ /**
87
+ * @public
88
+ * @enum
89
+ */
90
+ export declare const PurchaseOrderDataSourceType: {
91
+ readonly ASSOCIATED_PURCHASE_ORDER_REQUIRED: "ASSOCIATED_PURCHASE_ORDER_REQUIRED";
92
+ readonly PURCHASE_ORDER_NOT_REQUIRED: "PURCHASE_ORDER_NOT_REQUIRED";
93
+ };
94
+ /**
95
+ * @public
96
+ */
97
+ export type PurchaseOrderDataSourceType = (typeof PurchaseOrderDataSourceType)[keyof typeof PurchaseOrderDataSourceType];
98
+ /**
99
+ * @public
100
+ * @enum
101
+ */
102
+ export declare const ProcurementPortalName: {
103
+ readonly COUPA: "COUPA";
104
+ readonly SAP_BUSINESS_NETWORK: "SAP_BUSINESS_NETWORK";
105
+ };
106
+ /**
107
+ * @public
108
+ */
109
+ export type ProcurementPortalName = (typeof ProcurementPortalName)[keyof typeof ProcurementPortalName];
110
+ /**
111
+ * @public
112
+ * @enum
113
+ */
114
+ export declare const SupplierDomain: {
115
+ readonly NetworkID: "NetworkID";
116
+ };
117
+ /**
118
+ * @public
119
+ */
120
+ export type SupplierDomain = (typeof SupplierDomain)[keyof typeof SupplierDomain];
121
+ /**
122
+ * @public
123
+ * @enum
124
+ */
125
+ export declare const ProcurementPortalPreferenceStatus: {
126
+ readonly ACTIVE: "ACTIVE";
127
+ readonly PENDING_VERIFICATION: "PENDING_VERIFICATION";
128
+ readonly SUSPENDED: "SUSPENDED";
129
+ readonly TEST_FAILED: "TEST_FAILED";
130
+ readonly TEST_INITIALIZATION_FAILED: "TEST_INITIALIZATION_FAILED";
131
+ readonly TEST_INITIALIZED: "TEST_INITIALIZED";
132
+ };
133
+ /**
134
+ * @public
135
+ */
136
+ export type ProcurementPortalPreferenceStatus = (typeof ProcurementPortalPreferenceStatus)[keyof typeof ProcurementPortalPreferenceStatus];
25
137
  /**
26
138
  * @public
27
139
  * @enum
@@ -92,6 +92,28 @@ export declare class ValidationException extends __BaseException {
92
92
  */
93
93
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
94
94
  }
95
+ /**
96
+ * <p>The request could not be completed due to a conflict with the current state of the resource. This exception occurs when a concurrent modification is detected during an update operation, or when attempting to create a resource that already exists.</p>
97
+ * @public
98
+ */
99
+ export declare class ConflictException extends __BaseException {
100
+ readonly name: "ConflictException";
101
+ readonly $fault: "client";
102
+ /**
103
+ * <p>The identifier of the resource that caused the conflict.</p>
104
+ * @public
105
+ */
106
+ resourceId?: string | undefined;
107
+ /**
108
+ * <p>The type of resource that caused the conflict.</p>
109
+ * @public
110
+ */
111
+ resourceType?: string | undefined;
112
+ /**
113
+ * @internal
114
+ */
115
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
116
+ }
95
117
  /**
96
118
  * <p>The request was rejected because it attempted to create resources beyond the current Amazon Web Services account limits. The error message describes the limit exceeded. </p>
97
119
  * @public