@aws-sdk/client-invoicing 3.952.0 → 3.954.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/dist-cjs/index.js +301 -210
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/BatchGetInvoiceProfileCommand.js +2 -2
- package/dist-es/commands/CreateInvoiceUnitCommand.js +2 -2
- package/dist-es/commands/CreateProcurementPortalPreferenceCommand.js +2 -2
- package/dist-es/commands/DeleteInvoiceUnitCommand.js +2 -2
- package/dist-es/commands/DeleteProcurementPortalPreferenceCommand.js +2 -2
- package/dist-es/commands/GetInvoicePDFCommand.js +2 -2
- package/dist-es/commands/GetInvoiceUnitCommand.js +2 -2
- package/dist-es/commands/GetProcurementPortalPreferenceCommand.js +2 -2
- package/dist-es/commands/ListInvoiceSummariesCommand.js +2 -2
- package/dist-es/commands/ListInvoiceUnitsCommand.js +2 -2
- package/dist-es/commands/ListProcurementPortalPreferencesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutProcurementPortalPreferenceCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateInvoiceUnitCommand.js +2 -2
- package/dist-es/commands/UpdateProcurementPortalPreferenceStatusCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +182 -182
- package/dist-types/InvoicingClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +92 -113
- package/dist-types/ts3.4/InvoicingClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +91 -114
- package/package.json +34 -34
|
@@ -26,12 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_0Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.invoicing",
|
|
32
|
+
version: "2024-12-01",
|
|
33
|
+
serviceTarget: "Invoicing",
|
|
34
|
+
},
|
|
35
35
|
serviceId: config?.serviceId ?? "Invoicing",
|
|
36
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { BatchGetInvoiceProfile } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchGetInvoiceProfile$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchGetInvoiceProfileCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchGetInvoiceProfileCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Invoicing", "BatchGetInvoiceProfile", {})
|
|
13
13
|
.n("InvoicingClient", "BatchGetInvoiceProfileCommand")
|
|
14
|
-
.sc(BatchGetInvoiceProfile)
|
|
14
|
+
.sc(BatchGetInvoiceProfile$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateInvoiceUnit } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateInvoiceUnit$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateInvoiceUnitCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateInvoiceUnitCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Invoicing", "CreateInvoiceUnit", {})
|
|
13
13
|
.n("InvoicingClient", "CreateInvoiceUnitCommand")
|
|
14
|
-
.sc(CreateInvoiceUnit)
|
|
14
|
+
.sc(CreateInvoiceUnit$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateProcurementPortalPreference } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateProcurementPortalPreference$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateProcurementPortalPreferenceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateProcurementPortalPreferenceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Invoicing", "CreateProcurementPortalPreference", {})
|
|
13
13
|
.n("InvoicingClient", "CreateProcurementPortalPreferenceCommand")
|
|
14
|
-
.sc(CreateProcurementPortalPreference)
|
|
14
|
+
.sc(CreateProcurementPortalPreference$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteInvoiceUnit } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteInvoiceUnit$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteInvoiceUnitCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteInvoiceUnitCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Invoicing", "DeleteInvoiceUnit", {})
|
|
13
13
|
.n("InvoicingClient", "DeleteInvoiceUnitCommand")
|
|
14
|
-
.sc(DeleteInvoiceUnit)
|
|
14
|
+
.sc(DeleteInvoiceUnit$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteProcurementPortalPreference } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteProcurementPortalPreference$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteProcurementPortalPreferenceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteProcurementPortalPreferenceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Invoicing", "DeleteProcurementPortalPreference", {})
|
|
13
13
|
.n("InvoicingClient", "DeleteProcurementPortalPreferenceCommand")
|
|
14
|
-
.sc(DeleteProcurementPortalPreference)
|
|
14
|
+
.sc(DeleteProcurementPortalPreference$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetInvoicePDF } from "../schemas/schemas_0";
|
|
4
|
+
import { GetInvoicePDF$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetInvoicePDFCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetInvoicePDFCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Invoicing", "GetInvoicePDF", {})
|
|
13
13
|
.n("InvoicingClient", "GetInvoicePDFCommand")
|
|
14
|
-
.sc(GetInvoicePDF)
|
|
14
|
+
.sc(GetInvoicePDF$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetInvoiceUnit } from "../schemas/schemas_0";
|
|
4
|
+
import { GetInvoiceUnit$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetInvoiceUnitCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetInvoiceUnitCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Invoicing", "GetInvoiceUnit", {})
|
|
13
13
|
.n("InvoicingClient", "GetInvoiceUnitCommand")
|
|
14
|
-
.sc(GetInvoiceUnit)
|
|
14
|
+
.sc(GetInvoiceUnit$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetProcurementPortalPreference } from "../schemas/schemas_0";
|
|
4
|
+
import { GetProcurementPortalPreference$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetProcurementPortalPreferenceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetProcurementPortalPreferenceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Invoicing", "GetProcurementPortalPreference", {})
|
|
13
13
|
.n("InvoicingClient", "GetProcurementPortalPreferenceCommand")
|
|
14
|
-
.sc(GetProcurementPortalPreference)
|
|
14
|
+
.sc(GetProcurementPortalPreference$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListInvoiceSummaries } from "../schemas/schemas_0";
|
|
4
|
+
import { ListInvoiceSummaries$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListInvoiceSummariesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListInvoiceSummariesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Invoicing", "ListInvoiceSummaries", {})
|
|
13
13
|
.n("InvoicingClient", "ListInvoiceSummariesCommand")
|
|
14
|
-
.sc(ListInvoiceSummaries)
|
|
14
|
+
.sc(ListInvoiceSummaries$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListInvoiceUnits } from "../schemas/schemas_0";
|
|
4
|
+
import { ListInvoiceUnits$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListInvoiceUnitsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListInvoiceUnitsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Invoicing", "ListInvoiceUnits", {})
|
|
13
13
|
.n("InvoicingClient", "ListInvoiceUnitsCommand")
|
|
14
|
-
.sc(ListInvoiceUnits)
|
|
14
|
+
.sc(ListInvoiceUnits$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListProcurementPortalPreferences } from "../schemas/schemas_0";
|
|
4
|
+
import { ListProcurementPortalPreferences$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListProcurementPortalPreferencesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListProcurementPortalPreferencesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Invoicing", "ListProcurementPortalPreferences", {})
|
|
13
13
|
.n("InvoicingClient", "ListProcurementPortalPreferencesCommand")
|
|
14
|
-
.sc(ListProcurementPortalPreferences)
|
|
14
|
+
.sc(ListProcurementPortalPreferences$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Invoicing", "ListTagsForResource", {})
|
|
13
13
|
.n("InvoicingClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutProcurementPortalPreference } from "../schemas/schemas_0";
|
|
4
|
+
import { PutProcurementPortalPreference$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutProcurementPortalPreferenceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutProcurementPortalPreferenceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Invoicing", "PutProcurementPortalPreference", {})
|
|
13
13
|
.n("InvoicingClient", "PutProcurementPortalPreferenceCommand")
|
|
14
|
-
.sc(PutProcurementPortalPreference)
|
|
14
|
+
.sc(PutProcurementPortalPreference$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Invoicing", "TagResource", {})
|
|
13
13
|
.n("InvoicingClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Invoicing", "UntagResource", {})
|
|
13
13
|
.n("InvoicingClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateInvoiceUnit } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateInvoiceUnit$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateInvoiceUnitCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateInvoiceUnitCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Invoicing", "UpdateInvoiceUnit", {})
|
|
13
13
|
.n("InvoicingClient", "UpdateInvoiceUnitCommand")
|
|
14
|
-
.sc(UpdateInvoiceUnit)
|
|
14
|
+
.sc(UpdateInvoiceUnit$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateProcurementPortalPreferenceStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateProcurementPortalPreferenceStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateProcurementPortalPreferenceStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateProcurementPortalPreferenceStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Invoicing", "UpdateProcurementPortalPreferenceStatus", {})
|
|
13
13
|
.n("InvoicingClient", "UpdateProcurementPortalPreferenceStatusCommand")
|
|
14
|
-
.sc(UpdateProcurementPortalPreferenceStatus)
|
|
14
|
+
.sc(UpdateProcurementPortalPreferenceStatus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,12 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_0Protocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.invoicing",
|
|
29
|
+
version: "2024-12-01",
|
|
30
|
+
serviceTarget: "Invoicing",
|
|
31
|
+
},
|
|
32
32
|
serviceId: config?.serviceId ?? "Invoicing",
|
|
33
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|