@wix/gift-vouchers 1.0.3 → 1.0.5
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/package.json
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/gift-vouchers",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
8
|
+
"keywords": [
|
|
9
|
+
"wix-sdk-module=backend,page,public"
|
|
10
|
+
],
|
|
8
11
|
"sideEffects": false,
|
|
9
12
|
"module": "build/es/index.js",
|
|
10
13
|
"main": "build/cjs/index.js",
|
|
@@ -18,7 +21,7 @@
|
|
|
18
21
|
"type-bundles"
|
|
19
22
|
],
|
|
20
23
|
"dependencies": {
|
|
21
|
-
"@wix/gift-vouchers_gift-voucher-products": "1.0.
|
|
24
|
+
"@wix/gift-vouchers_gift-voucher-products": "1.0.4"
|
|
22
25
|
},
|
|
23
26
|
"devDependencies": {
|
|
24
27
|
"glob": "^10.4.1",
|
|
@@ -43,5 +46,5 @@
|
|
|
43
46
|
"fqdn": ""
|
|
44
47
|
}
|
|
45
48
|
},
|
|
46
|
-
"falconPackageHash": "
|
|
49
|
+
"falconPackageHash": "4dd9501735e715291cee13f484bea7ac10ae7c2c3ec8422f25928350"
|
|
47
50
|
}
|
|
@@ -520,7 +520,7 @@ interface GiftCardProduct extends GiftCardProductExpirationDateOneOf {
|
|
|
520
520
|
/** Gift card product custom variants */
|
|
521
521
|
customVariant?: CustomVariant;
|
|
522
522
|
/**
|
|
523
|
-
* [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the
|
|
523
|
+
* [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the [app dashboard](https://dev.wix.com/dc3/my-apps/) before they can be accessed with API calls.
|
|
524
524
|
* Enabling users to save custom data related to the gift card product.
|
|
525
525
|
*/
|
|
526
526
|
extendedFields?: ExtendedFields;
|
|
@@ -612,6 +612,10 @@ interface ExtendedFields {
|
|
|
612
612
|
*/
|
|
613
613
|
namespaces?: Record<string, Record<string, any>>;
|
|
614
614
|
}
|
|
615
|
+
interface TriggerGiftCardsAppInstallationFlowEvent {
|
|
616
|
+
/** The meta site ID to trigger installation flow for. */
|
|
617
|
+
metaSiteId?: string;
|
|
618
|
+
}
|
|
615
619
|
interface CreateGiftCardProductRequest {
|
|
616
620
|
/** Gift card product to be created. */
|
|
617
621
|
giftCardProduct: GiftCardProduct;
|
|
@@ -920,7 +924,7 @@ interface UpdateGiftCardProduct {
|
|
|
920
924
|
/** Gift card product custom variants */
|
|
921
925
|
customVariant?: CustomVariant;
|
|
922
926
|
/**
|
|
923
|
-
* [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the
|
|
927
|
+
* [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the [app dashboard](https://dev.wix.com/dc3/my-apps/) before they can be accessed with API calls.
|
|
924
928
|
* Enabling users to save custom data related to the gift card product.
|
|
925
929
|
*/
|
|
926
930
|
extendedFields?: ExtendedFields;
|
|
@@ -1118,6 +1122,7 @@ declare const context_SortOrder: typeof SortOrder;
|
|
|
1118
1122
|
type context_Sorting = Sorting;
|
|
1119
1123
|
type context_TimePeriod = TimePeriod;
|
|
1120
1124
|
declare const context_TimePeriod: typeof TimePeriod;
|
|
1125
|
+
type context_TriggerGiftCardsAppInstallationFlowEvent = TriggerGiftCardsAppInstallationFlowEvent;
|
|
1121
1126
|
type context_UpdateGiftCardProduct = UpdateGiftCardProduct;
|
|
1122
1127
|
type context_UpdateGiftCardProductRequest = UpdateGiftCardProductRequest;
|
|
1123
1128
|
type context_UpdateGiftCardProductResponse = UpdateGiftCardProductResponse;
|
|
@@ -1131,7 +1136,7 @@ declare const context_isInWixGiftCardsAppPopulation: typeof isInWixGiftCardsAppP
|
|
|
1131
1136
|
declare const context_queryGiftCardProducts: typeof queryGiftCardProducts;
|
|
1132
1137
|
declare const context_updateGiftCardProduct: typeof updateGiftCardProduct;
|
|
1133
1138
|
declare namespace context {
|
|
1134
|
-
export { type context_ActionEvent as ActionEvent, type context_CreateGiftCardProductRequest as CreateGiftCardProductRequest, type context_CreateGiftCardProductResponse as CreateGiftCardProductResponse, type context_CreateGiftCardProductResponseNonNullableFields as CreateGiftCardProductResponseNonNullableFields, type context_CursorPaging as CursorPaging, type context_CursorPagingMetadata as CursorPagingMetadata, type context_CursorQuery as CursorQuery, type context_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type context_Cursors as Cursors, type context_CustomVariant as CustomVariant, type context_DeleteGiftCardProductRequest as DeleteGiftCardProductRequest, type context_DeleteGiftCardProductResponse as DeleteGiftCardProductResponse, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, context_ExpirationType as ExpirationType, type context_ExtendedFields as ExtendedFields, type context_GetGiftCardProductRequest as GetGiftCardProductRequest, type context_GetGiftCardProductResponse as GetGiftCardProductResponse, type context_GetGiftCardProductResponseNonNullableFields as GetGiftCardProductResponseNonNullableFields, type context_GiftCardProduct as GiftCardProduct, type context_GiftCardProductExpirationDateOneOf as GiftCardProductExpirationDateOneOf, type context_GiftCardProductNonNullableFields as GiftCardProductNonNullableFields, type context_GiftCardProductsQueryBuilder as GiftCardProductsQueryBuilder, type context_GiftCardProductsQueryResult as GiftCardProductsQueryResult, type context_GiftCardsAppInstallationCompleted as GiftCardsAppInstallationCompleted, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_IsInWixGiftCardsAppPopulationRequest as IsInWixGiftCardsAppPopulationRequest, type context_IsInWixGiftCardsAppPopulationResponse as IsInWixGiftCardsAppPopulationResponse, type context_IsInWixGiftCardsAppPopulationResponseNonNullableFields as IsInWixGiftCardsAppPopulationResponseNonNullableFields, type context_MessageEnvelope as MessageEnvelope, type context_MultiCurrencyPrice as MultiCurrencyPrice, type context_PresetVariant as PresetVariant, type context_QueryGiftCardProductsRequest as QueryGiftCardProductsRequest, type context_QueryGiftCardProductsResponse as QueryGiftCardProductsResponse, type context_QueryGiftCardProductsResponseNonNullableFields as QueryGiftCardProductsResponseNonNullableFields, type context_RelativeExpirationDate as RelativeExpirationDate, type context_RestoreInfo as RestoreInfo, context_SortOrder as SortOrder, type context_Sorting as Sorting, context_TimePeriod as TimePeriod, type context_UpdateGiftCardProduct as UpdateGiftCardProduct, type context_UpdateGiftCardProductRequest as UpdateGiftCardProductRequest, type context_UpdateGiftCardProductResponse as UpdateGiftCardProductResponse, type context_UpdateGiftCardProductResponseNonNullableFields as UpdateGiftCardProductResponseNonNullableFields, context_WebhookIdentityType as WebhookIdentityType, context_createGiftCardProduct as createGiftCardProduct, context_deleteGiftCardProduct as deleteGiftCardProduct, context_getGiftCardProduct as getGiftCardProduct, context_isInWixGiftCardsAppPopulation as isInWixGiftCardsAppPopulation, context_queryGiftCardProducts as queryGiftCardProducts, context_updateGiftCardProduct as updateGiftCardProduct };
|
|
1139
|
+
export { type context_ActionEvent as ActionEvent, type context_CreateGiftCardProductRequest as CreateGiftCardProductRequest, type context_CreateGiftCardProductResponse as CreateGiftCardProductResponse, type context_CreateGiftCardProductResponseNonNullableFields as CreateGiftCardProductResponseNonNullableFields, type context_CursorPaging as CursorPaging, type context_CursorPagingMetadata as CursorPagingMetadata, type context_CursorQuery as CursorQuery, type context_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type context_Cursors as Cursors, type context_CustomVariant as CustomVariant, type context_DeleteGiftCardProductRequest as DeleteGiftCardProductRequest, type context_DeleteGiftCardProductResponse as DeleteGiftCardProductResponse, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, context_ExpirationType as ExpirationType, type context_ExtendedFields as ExtendedFields, type context_GetGiftCardProductRequest as GetGiftCardProductRequest, type context_GetGiftCardProductResponse as GetGiftCardProductResponse, type context_GetGiftCardProductResponseNonNullableFields as GetGiftCardProductResponseNonNullableFields, type context_GiftCardProduct as GiftCardProduct, type context_GiftCardProductExpirationDateOneOf as GiftCardProductExpirationDateOneOf, type context_GiftCardProductNonNullableFields as GiftCardProductNonNullableFields, type context_GiftCardProductsQueryBuilder as GiftCardProductsQueryBuilder, type context_GiftCardProductsQueryResult as GiftCardProductsQueryResult, type context_GiftCardsAppInstallationCompleted as GiftCardsAppInstallationCompleted, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_IsInWixGiftCardsAppPopulationRequest as IsInWixGiftCardsAppPopulationRequest, type context_IsInWixGiftCardsAppPopulationResponse as IsInWixGiftCardsAppPopulationResponse, type context_IsInWixGiftCardsAppPopulationResponseNonNullableFields as IsInWixGiftCardsAppPopulationResponseNonNullableFields, type context_MessageEnvelope as MessageEnvelope, type context_MultiCurrencyPrice as MultiCurrencyPrice, type context_PresetVariant as PresetVariant, type context_QueryGiftCardProductsRequest as QueryGiftCardProductsRequest, type context_QueryGiftCardProductsResponse as QueryGiftCardProductsResponse, type context_QueryGiftCardProductsResponseNonNullableFields as QueryGiftCardProductsResponseNonNullableFields, type context_RelativeExpirationDate as RelativeExpirationDate, type context_RestoreInfo as RestoreInfo, context_SortOrder as SortOrder, type context_Sorting as Sorting, context_TimePeriod as TimePeriod, type context_TriggerGiftCardsAppInstallationFlowEvent as TriggerGiftCardsAppInstallationFlowEvent, type context_UpdateGiftCardProduct as UpdateGiftCardProduct, type context_UpdateGiftCardProductRequest as UpdateGiftCardProductRequest, type context_UpdateGiftCardProductResponse as UpdateGiftCardProductResponse, type context_UpdateGiftCardProductResponseNonNullableFields as UpdateGiftCardProductResponseNonNullableFields, context_WebhookIdentityType as WebhookIdentityType, context_createGiftCardProduct as createGiftCardProduct, context_deleteGiftCardProduct as deleteGiftCardProduct, context_getGiftCardProduct as getGiftCardProduct, context_isInWixGiftCardsAppPopulation as isInWixGiftCardsAppPopulation, context_queryGiftCardProducts as queryGiftCardProducts, context_updateGiftCardProduct as updateGiftCardProduct };
|
|
1135
1140
|
}
|
|
1136
1141
|
|
|
1137
1142
|
export { context as giftVoucherProducts };
|
|
@@ -520,7 +520,7 @@ interface GiftCardProduct extends GiftCardProductExpirationDateOneOf {
|
|
|
520
520
|
/** Gift card product custom variants */
|
|
521
521
|
customVariant?: CustomVariant;
|
|
522
522
|
/**
|
|
523
|
-
* [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the
|
|
523
|
+
* [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the [app dashboard](https://dev.wix.com/dc3/my-apps/) before they can be accessed with API calls.
|
|
524
524
|
* Enabling users to save custom data related to the gift card product.
|
|
525
525
|
*/
|
|
526
526
|
extendedFields?: ExtendedFields;
|
|
@@ -612,6 +612,10 @@ interface ExtendedFields {
|
|
|
612
612
|
*/
|
|
613
613
|
namespaces?: Record<string, Record<string, any>>;
|
|
614
614
|
}
|
|
615
|
+
interface TriggerGiftCardsAppInstallationFlowEvent {
|
|
616
|
+
/** The meta site ID to trigger installation flow for. */
|
|
617
|
+
metaSiteId?: string;
|
|
618
|
+
}
|
|
615
619
|
interface CreateGiftCardProductRequest {
|
|
616
620
|
/** Gift card product to be created. */
|
|
617
621
|
giftCardProduct: GiftCardProduct;
|
|
@@ -920,7 +924,7 @@ interface UpdateGiftCardProduct {
|
|
|
920
924
|
/** Gift card product custom variants */
|
|
921
925
|
customVariant?: CustomVariant;
|
|
922
926
|
/**
|
|
923
|
-
* [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the
|
|
927
|
+
* [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the [app dashboard](https://dev.wix.com/dc3/my-apps/) before they can be accessed with API calls.
|
|
924
928
|
* Enabling users to save custom data related to the gift card product.
|
|
925
929
|
*/
|
|
926
930
|
extendedFields?: ExtendedFields;
|
|
@@ -1118,6 +1122,7 @@ declare const index_d_SortOrder: typeof SortOrder;
|
|
|
1118
1122
|
type index_d_Sorting = Sorting;
|
|
1119
1123
|
type index_d_TimePeriod = TimePeriod;
|
|
1120
1124
|
declare const index_d_TimePeriod: typeof TimePeriod;
|
|
1125
|
+
type index_d_TriggerGiftCardsAppInstallationFlowEvent = TriggerGiftCardsAppInstallationFlowEvent;
|
|
1121
1126
|
type index_d_UpdateGiftCardProduct = UpdateGiftCardProduct;
|
|
1122
1127
|
type index_d_UpdateGiftCardProductRequest = UpdateGiftCardProductRequest;
|
|
1123
1128
|
type index_d_UpdateGiftCardProductResponse = UpdateGiftCardProductResponse;
|
|
@@ -1131,7 +1136,7 @@ declare const index_d_isInWixGiftCardsAppPopulation: typeof isInWixGiftCardsAppP
|
|
|
1131
1136
|
declare const index_d_queryGiftCardProducts: typeof queryGiftCardProducts;
|
|
1132
1137
|
declare const index_d_updateGiftCardProduct: typeof updateGiftCardProduct;
|
|
1133
1138
|
declare namespace index_d {
|
|
1134
|
-
export { type index_d_ActionEvent as ActionEvent, type index_d_CreateGiftCardProductRequest as CreateGiftCardProductRequest, type index_d_CreateGiftCardProductResponse as CreateGiftCardProductResponse, type index_d_CreateGiftCardProductResponseNonNullableFields as CreateGiftCardProductResponseNonNullableFields, type index_d_CursorPaging as CursorPaging, type index_d_CursorPagingMetadata as CursorPagingMetadata, type index_d_CursorQuery as CursorQuery, type index_d_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type index_d_Cursors as Cursors, type index_d_CustomVariant as CustomVariant, type index_d_DeleteGiftCardProductRequest as DeleteGiftCardProductRequest, type index_d_DeleteGiftCardProductResponse as DeleteGiftCardProductResponse, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, index_d_ExpirationType as ExpirationType, type index_d_ExtendedFields as ExtendedFields, type index_d_GetGiftCardProductRequest as GetGiftCardProductRequest, type index_d_GetGiftCardProductResponse as GetGiftCardProductResponse, type index_d_GetGiftCardProductResponseNonNullableFields as GetGiftCardProductResponseNonNullableFields, type index_d_GiftCardProduct as GiftCardProduct, type index_d_GiftCardProductExpirationDateOneOf as GiftCardProductExpirationDateOneOf, type index_d_GiftCardProductNonNullableFields as GiftCardProductNonNullableFields, type index_d_GiftCardProductsQueryBuilder as GiftCardProductsQueryBuilder, type index_d_GiftCardProductsQueryResult as GiftCardProductsQueryResult, type index_d_GiftCardsAppInstallationCompleted as GiftCardsAppInstallationCompleted, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_IsInWixGiftCardsAppPopulationRequest as IsInWixGiftCardsAppPopulationRequest, type index_d_IsInWixGiftCardsAppPopulationResponse as IsInWixGiftCardsAppPopulationResponse, type index_d_IsInWixGiftCardsAppPopulationResponseNonNullableFields as IsInWixGiftCardsAppPopulationResponseNonNullableFields, type index_d_MessageEnvelope as MessageEnvelope, type index_d_MultiCurrencyPrice as MultiCurrencyPrice, type index_d_PresetVariant as PresetVariant, type index_d_QueryGiftCardProductsRequest as QueryGiftCardProductsRequest, type index_d_QueryGiftCardProductsResponse as QueryGiftCardProductsResponse, type index_d_QueryGiftCardProductsResponseNonNullableFields as QueryGiftCardProductsResponseNonNullableFields, type index_d_RelativeExpirationDate as RelativeExpirationDate, type index_d_RestoreInfo as RestoreInfo, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, index_d_TimePeriod as TimePeriod, type index_d_UpdateGiftCardProduct as UpdateGiftCardProduct, type index_d_UpdateGiftCardProductRequest as UpdateGiftCardProductRequest, type index_d_UpdateGiftCardProductResponse as UpdateGiftCardProductResponse, type index_d_UpdateGiftCardProductResponseNonNullableFields as UpdateGiftCardProductResponseNonNullableFields, index_d_WebhookIdentityType as WebhookIdentityType, index_d_createGiftCardProduct as createGiftCardProduct, index_d_deleteGiftCardProduct as deleteGiftCardProduct, index_d_getGiftCardProduct as getGiftCardProduct, index_d_isInWixGiftCardsAppPopulation as isInWixGiftCardsAppPopulation, index_d_queryGiftCardProducts as queryGiftCardProducts, index_d_updateGiftCardProduct as updateGiftCardProduct };
|
|
1139
|
+
export { type index_d_ActionEvent as ActionEvent, type index_d_CreateGiftCardProductRequest as CreateGiftCardProductRequest, type index_d_CreateGiftCardProductResponse as CreateGiftCardProductResponse, type index_d_CreateGiftCardProductResponseNonNullableFields as CreateGiftCardProductResponseNonNullableFields, type index_d_CursorPaging as CursorPaging, type index_d_CursorPagingMetadata as CursorPagingMetadata, type index_d_CursorQuery as CursorQuery, type index_d_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type index_d_Cursors as Cursors, type index_d_CustomVariant as CustomVariant, type index_d_DeleteGiftCardProductRequest as DeleteGiftCardProductRequest, type index_d_DeleteGiftCardProductResponse as DeleteGiftCardProductResponse, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, index_d_ExpirationType as ExpirationType, type index_d_ExtendedFields as ExtendedFields, type index_d_GetGiftCardProductRequest as GetGiftCardProductRequest, type index_d_GetGiftCardProductResponse as GetGiftCardProductResponse, type index_d_GetGiftCardProductResponseNonNullableFields as GetGiftCardProductResponseNonNullableFields, type index_d_GiftCardProduct as GiftCardProduct, type index_d_GiftCardProductExpirationDateOneOf as GiftCardProductExpirationDateOneOf, type index_d_GiftCardProductNonNullableFields as GiftCardProductNonNullableFields, type index_d_GiftCardProductsQueryBuilder as GiftCardProductsQueryBuilder, type index_d_GiftCardProductsQueryResult as GiftCardProductsQueryResult, type index_d_GiftCardsAppInstallationCompleted as GiftCardsAppInstallationCompleted, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_IsInWixGiftCardsAppPopulationRequest as IsInWixGiftCardsAppPopulationRequest, type index_d_IsInWixGiftCardsAppPopulationResponse as IsInWixGiftCardsAppPopulationResponse, type index_d_IsInWixGiftCardsAppPopulationResponseNonNullableFields as IsInWixGiftCardsAppPopulationResponseNonNullableFields, type index_d_MessageEnvelope as MessageEnvelope, type index_d_MultiCurrencyPrice as MultiCurrencyPrice, type index_d_PresetVariant as PresetVariant, type index_d_QueryGiftCardProductsRequest as QueryGiftCardProductsRequest, type index_d_QueryGiftCardProductsResponse as QueryGiftCardProductsResponse, type index_d_QueryGiftCardProductsResponseNonNullableFields as QueryGiftCardProductsResponseNonNullableFields, type index_d_RelativeExpirationDate as RelativeExpirationDate, type index_d_RestoreInfo as RestoreInfo, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, index_d_TimePeriod as TimePeriod, type index_d_TriggerGiftCardsAppInstallationFlowEvent as TriggerGiftCardsAppInstallationFlowEvent, type index_d_UpdateGiftCardProduct as UpdateGiftCardProduct, type index_d_UpdateGiftCardProductRequest as UpdateGiftCardProductRequest, type index_d_UpdateGiftCardProductResponse as UpdateGiftCardProductResponse, type index_d_UpdateGiftCardProductResponseNonNullableFields as UpdateGiftCardProductResponseNonNullableFields, index_d_WebhookIdentityType as WebhookIdentityType, index_d_createGiftCardProduct as createGiftCardProduct, index_d_deleteGiftCardProduct as deleteGiftCardProduct, index_d_getGiftCardProduct as getGiftCardProduct, index_d_isInWixGiftCardsAppPopulation as isInWixGiftCardsAppPopulation, index_d_queryGiftCardProducts as queryGiftCardProducts, index_d_updateGiftCardProduct as updateGiftCardProduct };
|
|
1135
1140
|
}
|
|
1136
1141
|
|
|
1137
1142
|
export { index_d as giftVoucherProducts };
|
|
@@ -42,7 +42,7 @@ interface GiftCardProduct$1 extends GiftCardProductExpirationDateOneOf$1 {
|
|
|
42
42
|
/** Gift card product custom variants */
|
|
43
43
|
customVariant?: CustomVariant$1;
|
|
44
44
|
/**
|
|
45
|
-
* [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the
|
|
45
|
+
* [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the [app dashboard](https://dev.wix.com/dc3/my-apps/) before they can be accessed with API calls.
|
|
46
46
|
* Enabling users to save custom data related to the gift card product.
|
|
47
47
|
*/
|
|
48
48
|
extendedFields?: ExtendedFields$1;
|
|
@@ -358,7 +358,7 @@ interface GiftCardProduct extends GiftCardProductExpirationDateOneOf {
|
|
|
358
358
|
/** Gift card product custom variants */
|
|
359
359
|
customVariant?: CustomVariant;
|
|
360
360
|
/**
|
|
361
|
-
* [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the
|
|
361
|
+
* [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the [app dashboard](https://dev.wix.com/dc3/my-apps/) before they can be accessed with API calls.
|
|
362
362
|
* Enabling users to save custom data related to the gift card product.
|
|
363
363
|
*/
|
|
364
364
|
extendedFields?: ExtendedFields;
|