@flowio/api-types 0.0.235 → 0.0.237

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-types",
3
- "version": "0.0.235",
3
+ "version": "0.0.237",
4
4
  "description": "Global TypeScript typings for Flow Commerce API",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,5 +14,5 @@
14
14
  "scripts": {
15
15
  "generate": "apibuilder update && node scripts/generate-index.js"
16
16
  },
17
- "gitHead": "c096f29e80640d1f9e270b50c13e20e26b631283"
17
+ "gitHead": "ae8c62050d9783d8da6c3d07da43b35187197742"
18
18
  }
@@ -1,28 +0,0 @@
1
- declare namespace io.flow.pricing.indicator.internal.event.v0.enums {
2
- type PricingIndicatorStatus = 'complete' | 'in_progress';
3
- type ServiceName = 'catalog' | 'demandware' | 'metric';
4
- }
5
-
6
- declare namespace io.flow.pricing.indicator.internal.event.v0.models {
7
- interface Details {
8
- readonly 'catalog_item': io.flow.common.v0.models.CatalogItemSummary;
9
- readonly 'experience'?: io.flow.common.v0.models.ExperienceSummary;
10
- readonly 'upserted_at': string;
11
- readonly 'time_elapsed_since_upserted': number;
12
- }
13
-
14
- interface PricingIndicator {
15
- readonly 'discriminator': 'pricing_indicator';
16
- readonly 'event_id': string;
17
- readonly 'timestamp': string;
18
- readonly 'organization': string;
19
- readonly 'published_from': io.flow.pricing.indicator.internal.event.v0.enums.ServiceName;
20
- readonly 'status': io.flow.pricing.indicator.internal.event.v0.enums.PricingIndicatorStatus;
21
- readonly 'event_identifier': string;
22
- readonly 'details': io.flow.pricing.indicator.internal.event.v0.models.Details;
23
- }
24
- }
25
-
26
- declare namespace io.flow.pricing.indicator.internal.event.v0.unions {
27
- type PricingIndicatorEvent = (io.flow.pricing.indicator.internal.event.v0.models.PricingIndicator);
28
- }