@stackedapp/types 1.9.18 → 1.9.20
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/stacked-types.d.ts +4 -0
- package/package.json +1 -1
package/dist/stacked-types.d.ts
CHANGED
|
@@ -1098,6 +1098,10 @@ interface IThirdPartyApp {
|
|
|
1098
1098
|
}>;
|
|
1099
1099
|
/** Name of the default offer preset to use for new offers */
|
|
1100
1100
|
offerPresetDefault?: string;
|
|
1101
|
+
/** map of groupID to name. For attaching names to offer groups */
|
|
1102
|
+
offerGroups?: Record<string, {
|
|
1103
|
+
name?: string;
|
|
1104
|
+
}>;
|
|
1101
1105
|
}
|
|
1102
1106
|
|
|
1103
1107
|
/**
|