@wix/auto_sdk_get-paid_receipts 1.0.89 → 1.0.90
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/build/cjs/index.d.ts +3 -3
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +0 -6
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.d.mts +3 -3
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +0 -6
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +3 -3
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +0 -6
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.d.mts +3 -3
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +0 -6
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.d.ts
CHANGED
|
@@ -93,14 +93,14 @@ declare const updateExtendedFields: MaybeContext<BuildRESTFunction<typeof update
|
|
|
93
93
|
/**
|
|
94
94
|
* Triggered when a receipt is created.
|
|
95
95
|
*/
|
|
96
|
-
declare const onReceiptCreated: BuildEventDefinition<typeof onReceiptCreated$1
|
|
96
|
+
declare const onReceiptCreated: BuildEventDefinition<typeof onReceiptCreated$1> & typeof onReceiptCreated$1;
|
|
97
97
|
/**
|
|
98
98
|
* Triggered when a receipt is sent.
|
|
99
99
|
*/
|
|
100
|
-
declare const onReceiptSent: BuildEventDefinition<typeof onReceiptSent$1
|
|
100
|
+
declare const onReceiptSent: BuildEventDefinition<typeof onReceiptSent$1> & typeof onReceiptSent$1;
|
|
101
101
|
/**
|
|
102
102
|
* Triggered when a receipt's number allocation is updated or a receipt document is generated.
|
|
103
103
|
*/
|
|
104
|
-
declare const onReceiptUpdated: BuildEventDefinition<typeof onReceiptUpdated$1
|
|
104
|
+
declare const onReceiptUpdated: BuildEventDefinition<typeof onReceiptUpdated$1> & typeof onReceiptUpdated$1;
|
|
105
105
|
|
|
106
106
|
export { CreateReceiptApplicationErrors, GetLatestReceiptNumberOptions, GetLatestReceiptNumberResponse, Receipt, ReceiptCreatedEnvelope, ReceiptSentEnvelope, ReceiptUpdatedEnvelope, ReceiptsQueryBuilder, RegenerateReceiptDocumentApplicationErrors, SendReceiptEmailApplicationErrors, SendReceiptEmailOptions, UpdateExtendedFieldsOptions, UpdateExtendedFieldsResponse, createReceipt, getLatestReceiptNumber, getReceipt, onReceiptCreated, onReceiptSent, onReceiptUpdated, queryReceipts, regenerateReceiptDocument, sendReceiptEmail, updateExtendedFields };
|