@wix/auto_sdk_ecom_order-payment-requests 1.0.62 → 1.0.63

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 (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +59 -0
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +50 -1
  5. package/build/cjs/index.typings.js +50 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +45 -2
  8. package/build/cjs/meta.js +39 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +58 -0
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +50 -1
  14. package/build/es/index.typings.mjs +49 -0
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +45 -2
  17. package/build/es/meta.mjs +38 -0
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +28 -3
  20. package/build/internal/cjs/index.js +59 -0
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +74 -1
  23. package/build/internal/cjs/index.typings.js +50 -0
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +45 -2
  26. package/build/internal/cjs/meta.js +39 -0
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +28 -3
  29. package/build/internal/es/index.mjs +58 -0
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +74 -1
  32. package/build/internal/es/index.typings.mjs +49 -0
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +45 -2
  35. package/build/internal/es/meta.mjs +38 -0
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -440,6 +440,26 @@ interface VoidOrderPaymentRequestRequest {
440
440
  }
441
441
  interface VoidOrderPaymentRequestResponse {
442
442
  }
443
+ interface ChargeOrderPaymentRequestRequest {
444
+ /**
445
+ * ID of the order payment request to charge.
446
+ * @format GUID
447
+ */
448
+ orderPaymentRequestId: string;
449
+ /**
450
+ * Token representing the payment details the customer entered, including their card and payment provider. Obtain it by calling `paymentsApi.initializePayment()` on the `paymentsApi` object provided by the Wix Cashier payments client SDK. Valid for a single charge attempt.
451
+ * @maxLength 100
452
+ */
453
+ paymentToken?: string | null;
454
+ }
455
+ interface ChargeOrderPaymentRequestResponse {
456
+ /**
457
+ * Token for completing a payment that requires an additional step from the customer, such as 3D Secure verification or an off-site redirect. Returned only when such a step is required. Pass it to `paymentsApi.continuePayment()` in the Wix Cashier payments client SDK.
458
+ * @minLength 1
459
+ * @maxLength 1000
460
+ */
461
+ paymentResponseToken?: string | null;
462
+ }
443
463
  interface DomainEvent extends DomainEventBodyOneOf {
444
464
  createdEvent?: EntityCreatedEvent;
445
465
  updatedEvent?: EntityUpdatedEvent;
@@ -667,6 +687,28 @@ type VoidOrderPaymentRequestApplicationErrors = {
667
687
  description?: string;
668
688
  data?: Record<string, any>;
669
689
  };
690
+ /** @docsIgnore */
691
+ type ChargeOrderPaymentRequestApplicationErrors = {
692
+ code?: 'ORDER_PAYMENT_REQUEST_NOT_FOUND';
693
+ description?: string;
694
+ data?: Record<string, any>;
695
+ } | {
696
+ code?: 'CANNOT_CHARGE_PAID_ORDER_PAYMENT_REQUEST';
697
+ description?: string;
698
+ data?: Record<string, any>;
699
+ } | {
700
+ code?: 'CANNOT_CHARGE_EXPIRED_ORDER_PAYMENT_REQUEST';
701
+ description?: string;
702
+ data?: Record<string, any>;
703
+ } | {
704
+ code?: 'CANNOT_CHARGE_VOIDED_ORDER_PAYMENT_REQUEST';
705
+ description?: string;
706
+ data?: Record<string, any>;
707
+ } | {
708
+ code?: 'PAYMENT_IN_PROGRESS';
709
+ description?: string;
710
+ data?: Record<string, any>;
711
+ };
670
712
  interface BaseEventMetadata {
671
713
  /**
672
714
  * App instance ID.
@@ -1245,5 +1287,12 @@ interface UpdateExtendedFieldsOptions {
1245
1287
  declare function voidOrderPaymentRequest(orderPaymentRequestId: string): Promise<void & {
1246
1288
  __applicationErrorsType?: VoidOrderPaymentRequestApplicationErrors;
1247
1289
  }>;
1290
+ interface ChargeOrderPaymentRequestOptions {
1291
+ /**
1292
+ * Token representing the payment details the customer entered, including their card and payment provider. Obtain it by calling `paymentsApi.initializePayment()` on the `paymentsApi` object provided by the Wix Cashier payments client SDK. Valid for a single charge attempt.
1293
+ * @maxLength 100
1294
+ */
1295
+ paymentToken?: string | null;
1296
+ }
1248
1297
 
1249
- export { type AccountInfo, type AccountInfoMetadata, type ActionEvent, type ActionLink, type ActionLinks, type ApplicationError, type BaseEventMetadata, type BulkActionMetadata, type BulkCreateOrderPaymentRequestsOptions, type BulkCreateOrderPaymentRequestsRequest, type BulkCreateOrderPaymentRequestsResponse, type BulkOrderPaymentRequestItem, type BulkOrderPaymentRequestResult, type CommonQueryWithEntityContext, type CreateOrderPaymentRequestApplicationErrors, type CreateOrderPaymentRequestOptions, type CreateOrderPaymentRequestRequest, type CreateOrderPaymentRequestResponse, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type DeleteOrderPaymentRequestApplicationErrors, type DeleteOrderPaymentRequestRequest, type DeleteOrderPaymentRequestResponse, type DomainEvent, type DomainEventBodyOneOf, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventMetadata, type ExtendedFields, type GetOrderPaymentRequestApplicationErrors, type GetOrderPaymentRequestRequest, type GetOrderPaymentRequestResponse, type GetOrderPaymentRequestURLRequest, type GetOrderPaymentRequestURLResponse, type GetOrderPaymentRequestUrlApplicationErrors, type IdentificationData, type IdentificationDataIdOneOf, type ItemMetadata, type MessageEnvelope, type OrderPaymentRequest, type OrderPaymentRequestCreatedEnvelope, type OrderPaymentRequestDeletedEnvelope, type OrderPaymentRequestExpired, type OrderPaymentRequestExpiredEnvelope, type OrderPaymentRequestPaid, type OrderPaymentRequestPaidEnvelope, type OrderPaymentRequestQuery, type OrderPaymentRequestQuerySpec, type OrderPaymentRequestUpdatedEnvelope, type OrderPaymentRequestVoided, type OrderPaymentRequestVoidedEnvelope, type OrderPaymentRequestsQueryBuilder, type OrderPaymentRequestsQueryResult, PaymentMethod, type PaymentMethodWithLiterals, type Price, type QueryOrderPaymentRequestsRequest, type QueryOrderPaymentRequestsResponse, type RestoreInfo, SortOrder, type SortOrderWithLiterals, type Sorting, type Source, Status, type StatusWithLiterals, type SubscriptionInfo, type UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse, type UpdateOrderPaymentRequest, type UpdateOrderPaymentRequestApplicationErrors, type UpdateOrderPaymentRequestRequest, type UpdateOrderPaymentRequestResponse, type VoidOrderPaymentRequestApplicationErrors, type VoidOrderPaymentRequestRequest, type VoidOrderPaymentRequestResponse, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, createOrderPaymentRequest, deleteOrderPaymentRequest, getOrderPaymentRequest, getOrderPaymentRequestUrl, onOrderPaymentRequestCreated, onOrderPaymentRequestDeleted, onOrderPaymentRequestExpired, onOrderPaymentRequestPaid, onOrderPaymentRequestUpdated, onOrderPaymentRequestVoided, queryOrderPaymentRequests, typedQueryOrderPaymentRequests, updateExtendedFields, updateOrderPaymentRequest, utils, voidOrderPaymentRequest };
1298
+ export { type AccountInfo, type AccountInfoMetadata, type ActionEvent, type ActionLink, type ActionLinks, type ApplicationError, type BaseEventMetadata, type BulkActionMetadata, type BulkCreateOrderPaymentRequestsOptions, type BulkCreateOrderPaymentRequestsRequest, type BulkCreateOrderPaymentRequestsResponse, type BulkOrderPaymentRequestItem, type BulkOrderPaymentRequestResult, type ChargeOrderPaymentRequestApplicationErrors, type ChargeOrderPaymentRequestOptions, type ChargeOrderPaymentRequestRequest, type ChargeOrderPaymentRequestResponse, type CommonQueryWithEntityContext, type CreateOrderPaymentRequestApplicationErrors, type CreateOrderPaymentRequestOptions, type CreateOrderPaymentRequestRequest, type CreateOrderPaymentRequestResponse, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type DeleteOrderPaymentRequestApplicationErrors, type DeleteOrderPaymentRequestRequest, type DeleteOrderPaymentRequestResponse, type DomainEvent, type DomainEventBodyOneOf, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventMetadata, type ExtendedFields, type GetOrderPaymentRequestApplicationErrors, type GetOrderPaymentRequestRequest, type GetOrderPaymentRequestResponse, type GetOrderPaymentRequestURLRequest, type GetOrderPaymentRequestURLResponse, type GetOrderPaymentRequestUrlApplicationErrors, type IdentificationData, type IdentificationDataIdOneOf, type ItemMetadata, type MessageEnvelope, type OrderPaymentRequest, type OrderPaymentRequestCreatedEnvelope, type OrderPaymentRequestDeletedEnvelope, type OrderPaymentRequestExpired, type OrderPaymentRequestExpiredEnvelope, type OrderPaymentRequestPaid, type OrderPaymentRequestPaidEnvelope, type OrderPaymentRequestQuery, type OrderPaymentRequestQuerySpec, type OrderPaymentRequestUpdatedEnvelope, type OrderPaymentRequestVoided, type OrderPaymentRequestVoidedEnvelope, type OrderPaymentRequestsQueryBuilder, type OrderPaymentRequestsQueryResult, PaymentMethod, type PaymentMethodWithLiterals, type Price, type QueryOrderPaymentRequestsRequest, type QueryOrderPaymentRequestsResponse, type RestoreInfo, SortOrder, type SortOrderWithLiterals, type Sorting, type Source, Status, type StatusWithLiterals, type SubscriptionInfo, type UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse, type UpdateOrderPaymentRequest, type UpdateOrderPaymentRequestApplicationErrors, type UpdateOrderPaymentRequestRequest, type UpdateOrderPaymentRequestResponse, type VoidOrderPaymentRequestApplicationErrors, type VoidOrderPaymentRequestRequest, type VoidOrderPaymentRequestResponse, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, createOrderPaymentRequest, deleteOrderPaymentRequest, getOrderPaymentRequest, getOrderPaymentRequestUrl, onOrderPaymentRequestCreated, onOrderPaymentRequestDeleted, onOrderPaymentRequestExpired, onOrderPaymentRequestPaid, onOrderPaymentRequestUpdated, onOrderPaymentRequestVoided, queryOrderPaymentRequests, typedQueryOrderPaymentRequests, updateExtendedFields, updateOrderPaymentRequest, utils, voidOrderPaymentRequest };
@@ -25,6 +25,7 @@ __export(index_typings_exports, {
25
25
  Status: () => Status,
26
26
  WebhookIdentityType: () => WebhookIdentityType,
27
27
  bulkCreateOrderPaymentRequests: () => bulkCreateOrderPaymentRequests2,
28
+ chargeOrderPaymentRequest: () => chargeOrderPaymentRequest2,
28
29
  createOrderPaymentRequest: () => createOrderPaymentRequest2,
29
30
  deleteOrderPaymentRequest: () => deleteOrderPaymentRequest2,
30
31
  getOrderPaymentRequest: () => getOrderPaymentRequest2,
@@ -377,6 +378,25 @@ function voidOrderPaymentRequest(payload) {
377
378
  }
378
379
  return __voidOrderPaymentRequest;
379
380
  }
381
+ function chargeOrderPaymentRequest(payload) {
382
+ function __chargeOrderPaymentRequest({ host }) {
383
+ const metadata = {
384
+ entityFqdn: "wix.ecom.v1.order_payment_request",
385
+ method: "POST",
386
+ methodFqn: "wix.ecom.order_payment_request.api.v1.OrderPaymentRequestsService.ChargeOrderPaymentRequest",
387
+ packageName: PACKAGE_NAME,
388
+ migrationOptions: {
389
+ optInTransformResponse: true
390
+ },
391
+ url: resolveWixEcomOrderPaymentRequestApiV1OrderPaymentRequestsServiceUrl(
392
+ { protoPath: "/v1/order-payment-requests/charge", data: payload, host }
393
+ ),
394
+ data: payload
395
+ };
396
+ return metadata;
397
+ }
398
+ return __chargeOrderPaymentRequest;
399
+ }
380
400
 
381
401
  // src/ecom-v1-order-payment-request-order-payment-requests.universal.ts
382
402
  var import_image = require("@wix/sdk-runtime/transformations/image");
@@ -767,6 +787,35 @@ async function voidOrderPaymentRequest2(orderPaymentRequestId) {
767
787
  throw transformedError;
768
788
  }
769
789
  }
790
+ async function chargeOrderPaymentRequest2(orderPaymentRequestId, options) {
791
+ const { httpClient, sideEffects } = arguments[2];
792
+ const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
793
+ orderPaymentRequestId,
794
+ paymentToken: options?.paymentToken
795
+ });
796
+ const reqOpts = chargeOrderPaymentRequest(payload);
797
+ sideEffects?.onSiteCall?.();
798
+ try {
799
+ const result = await httpClient.request(reqOpts);
800
+ sideEffects?.onSuccess?.(result);
801
+ return (0, import_rename_all_nested_keys.renameKeysFromRESTResponseToSDKResponse)(result.data);
802
+ } catch (err) {
803
+ const transformedError = (0, import_transform_error.transformError)(
804
+ err,
805
+ {
806
+ spreadPathsToArguments: {},
807
+ explicitPathsToArguments: {
808
+ orderPaymentRequestId: "$[0]",
809
+ paymentToken: "$[1].paymentToken"
810
+ },
811
+ singleArgumentUnchanged: false
812
+ },
813
+ ["orderPaymentRequestId", "options"]
814
+ );
815
+ sideEffects?.onError?.(err);
816
+ throw transformedError;
817
+ }
818
+ }
770
819
  // Annotate the CommonJS export names for ESM import in node:
771
820
  0 && (module.exports = {
772
821
  PaymentMethod,
@@ -774,6 +823,7 @@ async function voidOrderPaymentRequest2(orderPaymentRequestId) {
774
823
  Status,
775
824
  WebhookIdentityType,
776
825
  bulkCreateOrderPaymentRequests,
826
+ chargeOrderPaymentRequest,
777
827
  createOrderPaymentRequest,
778
828
  deleteOrderPaymentRequest,
779
829
  getOrderPaymentRequest,