@ultracart/bq-skill 0.1.2
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/LICENSE +191 -0
- package/README.md +952 -0
- package/dist/cli.d.ts +3 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +42 -0
- package/dist/cli.js.map +1 -0
- package/dist/commands/alarm.d.ts +3 -0
- package/dist/commands/alarm.d.ts.map +1 -0
- package/dist/commands/alarm.js +146 -0
- package/dist/commands/alarm.js.map +1 -0
- package/dist/commands/config.d.ts +3 -0
- package/dist/commands/config.d.ts.map +1 -0
- package/dist/commands/config.js +749 -0
- package/dist/commands/config.js.map +1 -0
- package/dist/commands/deck.d.ts +3 -0
- package/dist/commands/deck.d.ts.map +1 -0
- package/dist/commands/deck.js +567 -0
- package/dist/commands/deck.js.map +1 -0
- package/dist/commands/dry-run.d.ts +3 -0
- package/dist/commands/dry-run.d.ts.map +1 -0
- package/dist/commands/dry-run.js +105 -0
- package/dist/commands/dry-run.js.map +1 -0
- package/dist/commands/history.d.ts +3 -0
- package/dist/commands/history.d.ts.map +1 -0
- package/dist/commands/history.js +127 -0
- package/dist/commands/history.js.map +1 -0
- package/dist/commands/init.d.ts +3 -0
- package/dist/commands/init.d.ts.map +1 -0
- package/dist/commands/init.js +302 -0
- package/dist/commands/init.js.map +1 -0
- package/dist/commands/install-skill.d.ts +3 -0
- package/dist/commands/install-skill.d.ts.map +1 -0
- package/dist/commands/install-skill.js +132 -0
- package/dist/commands/install-skill.js.map +1 -0
- package/dist/commands/list.d.ts +3 -0
- package/dist/commands/list.d.ts.map +1 -0
- package/dist/commands/list.js +89 -0
- package/dist/commands/list.js.map +1 -0
- package/dist/commands/query.d.ts +3 -0
- package/dist/commands/query.d.ts.map +1 -0
- package/dist/commands/query.js +152 -0
- package/dist/commands/query.js.map +1 -0
- package/dist/commands/render.d.ts +3 -0
- package/dist/commands/render.d.ts.map +1 -0
- package/dist/commands/render.js +107 -0
- package/dist/commands/render.js.map +1 -0
- package/dist/commands/run-all.d.ts +3 -0
- package/dist/commands/run-all.d.ts.map +1 -0
- package/dist/commands/run-all.js +285 -0
- package/dist/commands/run-all.js.map +1 -0
- package/dist/commands/run.d.ts +3 -0
- package/dist/commands/run.d.ts.map +1 -0
- package/dist/commands/run.js +321 -0
- package/dist/commands/run.js.map +1 -0
- package/dist/commands/schema.d.ts +3 -0
- package/dist/commands/schema.d.ts.map +1 -0
- package/dist/commands/schema.js +271 -0
- package/dist/commands/schema.js.map +1 -0
- package/dist/commands/validate.d.ts +3 -0
- package/dist/commands/validate.d.ts.map +1 -0
- package/dist/commands/validate.js +109 -0
- package/dist/commands/validate.js.map +1 -0
- package/dist/lib/alarm-notify.d.ts +16 -0
- package/dist/lib/alarm-notify.d.ts.map +1 -0
- package/dist/lib/alarm-notify.js +312 -0
- package/dist/lib/alarm-notify.js.map +1 -0
- package/dist/lib/alarm-state.d.ts +26 -0
- package/dist/lib/alarm-state.d.ts.map +1 -0
- package/dist/lib/alarm-state.js +118 -0
- package/dist/lib/alarm-state.js.map +1 -0
- package/dist/lib/alarm.d.ts +28 -0
- package/dist/lib/alarm.d.ts.map +1 -0
- package/dist/lib/alarm.js +215 -0
- package/dist/lib/alarm.js.map +1 -0
- package/dist/lib/analysis.d.ts +16 -0
- package/dist/lib/analysis.d.ts.map +1 -0
- package/dist/lib/analysis.js +134 -0
- package/dist/lib/analysis.js.map +1 -0
- package/dist/lib/bigquery.d.ts +55 -0
- package/dist/lib/bigquery.d.ts.map +1 -0
- package/dist/lib/bigquery.js +321 -0
- package/dist/lib/bigquery.js.map +1 -0
- package/dist/lib/config-writer.d.ts +3 -0
- package/dist/lib/config-writer.d.ts.map +1 -0
- package/dist/lib/config-writer.js +60 -0
- package/dist/lib/config-writer.js.map +1 -0
- package/dist/lib/config.d.ts +63 -0
- package/dist/lib/config.d.ts.map +1 -0
- package/dist/lib/config.js +151 -0
- package/dist/lib/config.js.map +1 -0
- package/dist/lib/dashboard.d.ts +3 -0
- package/dist/lib/dashboard.d.ts.map +1 -0
- package/dist/lib/dashboard.js +468 -0
- package/dist/lib/dashboard.js.map +1 -0
- package/dist/lib/deck.d.ts +58 -0
- package/dist/lib/deck.d.ts.map +1 -0
- package/dist/lib/deck.js +232 -0
- package/dist/lib/deck.js.map +1 -0
- package/dist/lib/deliver-email.d.ts +14 -0
- package/dist/lib/deliver-email.d.ts.map +1 -0
- package/dist/lib/deliver-email.js +360 -0
- package/dist/lib/deliver-email.js.map +1 -0
- package/dist/lib/deliver-slack.d.ts +6 -0
- package/dist/lib/deliver-slack.d.ts.map +1 -0
- package/dist/lib/deliver-slack.js +73 -0
- package/dist/lib/deliver-slack.js.map +1 -0
- package/dist/lib/deliver.d.ts +10 -0
- package/dist/lib/deliver.d.ts.map +1 -0
- package/dist/lib/deliver.js +95 -0
- package/dist/lib/deliver.js.map +1 -0
- package/dist/lib/llm/anthropic.d.ts +7 -0
- package/dist/lib/llm/anthropic.d.ts.map +1 -0
- package/dist/lib/llm/anthropic.js +69 -0
- package/dist/lib/llm/anthropic.js.map +1 -0
- package/dist/lib/llm/bedrock.d.ts +7 -0
- package/dist/lib/llm/bedrock.d.ts.map +1 -0
- package/dist/lib/llm/bedrock.js +67 -0
- package/dist/lib/llm/bedrock.js.map +1 -0
- package/dist/lib/llm/gemini.d.ts +7 -0
- package/dist/lib/llm/gemini.d.ts.map +1 -0
- package/dist/lib/llm/gemini.js +67 -0
- package/dist/lib/llm/gemini.js.map +1 -0
- package/dist/lib/llm/index.d.ts +5 -0
- package/dist/lib/llm/index.d.ts.map +1 -0
- package/dist/lib/llm/index.js +61 -0
- package/dist/lib/llm/index.js.map +1 -0
- package/dist/lib/llm/models.d.ts +5 -0
- package/dist/lib/llm/models.d.ts.map +1 -0
- package/dist/lib/llm/models.js +33 -0
- package/dist/lib/llm/models.js.map +1 -0
- package/dist/lib/llm/openai.d.ts +8 -0
- package/dist/lib/llm/openai.d.ts.map +1 -0
- package/dist/lib/llm/openai.js +48 -0
- package/dist/lib/llm/openai.js.map +1 -0
- package/dist/lib/llm/provider.d.ts +28 -0
- package/dist/lib/llm/provider.d.ts.map +1 -0
- package/dist/lib/llm/provider.js +3 -0
- package/dist/lib/llm/provider.js.map +1 -0
- package/dist/lib/manifest.d.ts +95 -0
- package/dist/lib/manifest.d.ts.map +1 -0
- package/dist/lib/manifest.js +105 -0
- package/dist/lib/manifest.js.map +1 -0
- package/dist/lib/params.d.ts +27 -0
- package/dist/lib/params.d.ts.map +1 -0
- package/dist/lib/params.js +192 -0
- package/dist/lib/params.js.map +1 -0
- package/dist/lib/pdf.d.ts +8 -0
- package/dist/lib/pdf.d.ts.map +1 -0
- package/dist/lib/pdf.js +86 -0
- package/dist/lib/pdf.js.map +1 -0
- package/dist/lib/renderer.d.ts +17 -0
- package/dist/lib/renderer.d.ts.map +1 -0
- package/dist/lib/renderer.js +166 -0
- package/dist/lib/renderer.js.map +1 -0
- package/dist/lib/schema-filter.d.ts +3 -0
- package/dist/lib/schema-filter.d.ts.map +1 -0
- package/dist/lib/schema-filter.js +49 -0
- package/dist/lib/schema-filter.js.map +1 -0
- package/dist/lib/template.d.ts +4 -0
- package/dist/lib/template.d.ts.map +1 -0
- package/dist/lib/template.js +37 -0
- package/dist/lib/template.js.map +1 -0
- package/dist/lib/validator.d.ts +8 -0
- package/dist/lib/validator.d.ts.map +1 -0
- package/dist/lib/validator.js +88 -0
- package/dist/lib/validator.js.map +1 -0
- package/package.json +59 -0
- package/schemas/deck.schema.json +122 -0
- package/schemas/report-manifest.schema.json +309 -0
- package/schemas/tables/README.md +45 -0
- package/schemas/tables/ultracart_dw/uc_affiliate_clicks.json +186 -0
- package/schemas/tables/ultracart_dw/uc_affiliate_commission_groups.json +317 -0
- package/schemas/tables/ultracart_dw/uc_affiliate_ledgers.json +404 -0
- package/schemas/tables/ultracart_dw/uc_affiliate_network_pixel_postback_logs.json +166 -0
- package/schemas/tables/ultracart_dw/uc_affiliate_network_pixels.json +106 -0
- package/schemas/tables/ultracart_dw/uc_affiliate_payments.json +204 -0
- package/schemas/tables/ultracart_dw/uc_affiliate_postback_logs.json +90 -0
- package/schemas/tables/ultracart_dw/uc_affiliates.json +425 -0
- package/schemas/tables/ultracart_dw/uc_auto_orders.json +13848 -0
- package/schemas/tables/ultracart_dw/uc_cart_abandons.json +3971 -0
- package/schemas/tables/ultracart_dw/uc_conversation_pbx_calls.json +374 -0
- package/schemas/tables/ultracart_dw/uc_conversations.json +374 -0
- package/schemas/tables/ultracart_dw/uc_coupons.json +1893 -0
- package/schemas/tables/ultracart_dw/uc_customers.json +11886 -0
- package/schemas/tables/ultracart_dw/uc_fraud_rules.json +239 -0
- package/schemas/tables/ultracart_dw/uc_gift_certificates.json +135 -0
- package/schemas/tables/ultracart_dw/uc_item_inventory_history.json +79 -0
- package/schemas/tables/ultracart_dw/uc_items.json +4437 -0
- package/schemas/tables/ultracart_dw/uc_orders.json +6629 -0
- package/schemas/tables/ultracart_dw/uc_rotating_transaction_gateway_history.json +271 -0
- package/schemas/tables/ultracart_dw/uc_rotating_transaction_gateways.json +416 -0
- package/schemas/tables/ultracart_dw/uc_shipping_methods.json +1372 -0
- package/schemas/tables/ultracart_dw/uc_storefront_customers.json +261 -0
- package/schemas/tables/ultracart_dw/uc_storefront_experiments.json +386 -0
- package/schemas/tables/ultracart_dw/uc_storefront_pages.json +513 -0
- package/schemas/tables/ultracart_dw/uc_storefront_upsell_offer_events.json +338 -0
- package/schemas/tables/ultracart_dw/uc_storefront_upsell_offers.json +431 -0
- package/schemas/tables/ultracart_dw/uc_storefront_upsell_paths.json +163 -0
- package/schemas/tables/ultracart_dw/uc_storefronts.json +62 -0
- package/schemas/tables/ultracart_dw/uc_surveys.json +238 -0
- package/schemas/tables/ultracart_dw/uc_workflow_tasks.json +377 -0
- package/schemas/tables/ultracart_dw/uc_zoho_desk_tickets.json +1184 -0
- package/schemas/tables/ultracart_dw_high/uc_affiliate_clicks.json +186 -0
- package/schemas/tables/ultracart_dw_high/uc_affiliate_commission_groups.json +317 -0
- package/schemas/tables/ultracart_dw_high/uc_affiliate_ledgers.json +404 -0
- package/schemas/tables/ultracart_dw_high/uc_affiliate_network_pixel_postback_logs.json +166 -0
- package/schemas/tables/ultracart_dw_high/uc_affiliate_network_pixels.json +106 -0
- package/schemas/tables/ultracart_dw_high/uc_affiliate_payments.json +204 -0
- package/schemas/tables/ultracart_dw_high/uc_affiliate_postback_logs.json +90 -0
- package/schemas/tables/ultracart_dw_high/uc_affiliates.json +425 -0
- package/schemas/tables/ultracart_dw_high/uc_auto_orders.json +14332 -0
- package/schemas/tables/ultracart_dw_high/uc_cart_abandons.json +4245 -0
- package/schemas/tables/ultracart_dw_high/uc_conversation_pbx_calls.json +415 -0
- package/schemas/tables/ultracart_dw_high/uc_conversations.json +415 -0
- package/schemas/tables/ultracart_dw_high/uc_coupons.json +1893 -0
- package/schemas/tables/ultracart_dw_high/uc_customers.json +12250 -0
- package/schemas/tables/ultracart_dw_high/uc_fraud_rules.json +239 -0
- package/schemas/tables/ultracart_dw_high/uc_gift_certificates.json +135 -0
- package/schemas/tables/ultracart_dw_high/uc_item_inventory_history.json +79 -0
- package/schemas/tables/ultracart_dw_high/uc_items.json +4437 -0
- package/schemas/tables/ultracart_dw_high/uc_orders.json +6871 -0
- package/schemas/tables/ultracart_dw_high/uc_rotating_transaction_gateway_history.json +271 -0
- package/schemas/tables/ultracart_dw_high/uc_rotating_transaction_gateways.json +416 -0
- package/schemas/tables/ultracart_dw_high/uc_shipping_methods.json +1372 -0
- package/schemas/tables/ultracart_dw_high/uc_storefront_customers.json +261 -0
- package/schemas/tables/ultracart_dw_high/uc_storefront_experiments.json +386 -0
- package/schemas/tables/ultracart_dw_high/uc_storefront_pages.json +513 -0
- package/schemas/tables/ultracart_dw_high/uc_storefront_upsell_offer_events.json +338 -0
- package/schemas/tables/ultracart_dw_high/uc_storefront_upsell_offers.json +431 -0
- package/schemas/tables/ultracart_dw_high/uc_storefront_upsell_paths.json +163 -0
- package/schemas/tables/ultracart_dw_high/uc_storefronts.json +62 -0
- package/schemas/tables/ultracart_dw_high/uc_surveys.json +269 -0
- package/schemas/tables/ultracart_dw_high/uc_workflow_tasks.json +377 -0
- package/schemas/tables/ultracart_dw_high/uc_zoho_desk_tickets.json +1330 -0
- package/schemas/tables/ultracart_dw_low/uc_affiliate_clicks.json +186 -0
- package/schemas/tables/ultracart_dw_low/uc_affiliate_commission_groups.json +317 -0
- package/schemas/tables/ultracart_dw_low/uc_affiliate_ledgers.json +404 -0
- package/schemas/tables/ultracart_dw_low/uc_affiliate_network_pixel_postback_logs.json +166 -0
- package/schemas/tables/ultracart_dw_low/uc_affiliate_network_pixels.json +106 -0
- package/schemas/tables/ultracart_dw_low/uc_affiliate_payments.json +204 -0
- package/schemas/tables/ultracart_dw_low/uc_affiliate_postback_logs.json +90 -0
- package/schemas/tables/ultracart_dw_low/uc_affiliates.json +425 -0
- package/schemas/tables/ultracart_dw_low/uc_auto_orders.json +13868 -0
- package/schemas/tables/ultracart_dw_low/uc_cart_abandons.json +3971 -0
- package/schemas/tables/ultracart_dw_low/uc_conversation_pbx_calls.json +374 -0
- package/schemas/tables/ultracart_dw_low/uc_conversations.json +374 -0
- package/schemas/tables/ultracart_dw_low/uc_coupons.json +1893 -0
- package/schemas/tables/ultracart_dw_low/uc_customers.json +11900 -0
- package/schemas/tables/ultracart_dw_low/uc_fraud_rules.json +239 -0
- package/schemas/tables/ultracart_dw_low/uc_gift_certificates.json +135 -0
- package/schemas/tables/ultracart_dw_low/uc_item_inventory_history.json +79 -0
- package/schemas/tables/ultracart_dw_low/uc_items.json +4437 -0
- package/schemas/tables/ultracart_dw_low/uc_orders.json +6639 -0
- package/schemas/tables/ultracart_dw_low/uc_rotating_transaction_gateway_history.json +271 -0
- package/schemas/tables/ultracart_dw_low/uc_rotating_transaction_gateways.json +416 -0
- package/schemas/tables/ultracart_dw_low/uc_shipping_methods.json +1372 -0
- package/schemas/tables/ultracart_dw_low/uc_storefront_customers.json +261 -0
- package/schemas/tables/ultracart_dw_low/uc_storefront_experiments.json +386 -0
- package/schemas/tables/ultracart_dw_low/uc_storefront_pages.json +513 -0
- package/schemas/tables/ultracart_dw_low/uc_storefront_upsell_offer_events.json +338 -0
- package/schemas/tables/ultracart_dw_low/uc_storefront_upsell_offers.json +431 -0
- package/schemas/tables/ultracart_dw_low/uc_storefront_upsell_paths.json +163 -0
- package/schemas/tables/ultracart_dw_low/uc_storefronts.json +62 -0
- package/schemas/tables/ultracart_dw_low/uc_surveys.json +238 -0
- package/schemas/tables/ultracart_dw_low/uc_workflow_tasks.json +377 -0
- package/schemas/tables/ultracart_dw_low/uc_zoho_desk_tickets.json +1184 -0
- package/schemas/tables/ultracart_dw_medium/uc_affiliate_clicks.json +186 -0
- package/schemas/tables/ultracart_dw_medium/uc_affiliate_commission_groups.json +317 -0
- package/schemas/tables/ultracart_dw_medium/uc_affiliate_ledgers.json +404 -0
- package/schemas/tables/ultracart_dw_medium/uc_affiliate_network_pixel_postback_logs.json +166 -0
- package/schemas/tables/ultracart_dw_medium/uc_affiliate_network_pixels.json +106 -0
- package/schemas/tables/ultracart_dw_medium/uc_affiliate_payments.json +204 -0
- package/schemas/tables/ultracart_dw_medium/uc_affiliate_postback_logs.json +90 -0
- package/schemas/tables/ultracart_dw_medium/uc_affiliates.json +425 -0
- package/schemas/tables/ultracart_dw_medium/uc_auto_orders.json +14320 -0
- package/schemas/tables/ultracart_dw_medium/uc_cart_abandons.json +4245 -0
- package/schemas/tables/ultracart_dw_medium/uc_conversation_pbx_calls.json +415 -0
- package/schemas/tables/ultracart_dw_medium/uc_conversations.json +415 -0
- package/schemas/tables/ultracart_dw_medium/uc_coupons.json +1893 -0
- package/schemas/tables/ultracart_dw_medium/uc_customers.json +12250 -0
- package/schemas/tables/ultracart_dw_medium/uc_fraud_rules.json +239 -0
- package/schemas/tables/ultracart_dw_medium/uc_gift_certificates.json +135 -0
- package/schemas/tables/ultracart_dw_medium/uc_item_inventory_history.json +79 -0
- package/schemas/tables/ultracart_dw_medium/uc_items.json +4437 -0
- package/schemas/tables/ultracart_dw_medium/uc_orders.json +6865 -0
- package/schemas/tables/ultracart_dw_medium/uc_rotating_transaction_gateway_history.json +271 -0
- package/schemas/tables/ultracart_dw_medium/uc_rotating_transaction_gateways.json +416 -0
- package/schemas/tables/ultracart_dw_medium/uc_shipping_methods.json +1372 -0
- package/schemas/tables/ultracart_dw_medium/uc_storefront_customers.json +261 -0
- package/schemas/tables/ultracart_dw_medium/uc_storefront_experiments.json +386 -0
- package/schemas/tables/ultracart_dw_medium/uc_storefront_pages.json +513 -0
- package/schemas/tables/ultracart_dw_medium/uc_storefront_upsell_offer_events.json +338 -0
- package/schemas/tables/ultracart_dw_medium/uc_storefront_upsell_offers.json +431 -0
- package/schemas/tables/ultracart_dw_medium/uc_storefront_upsell_paths.json +163 -0
- package/schemas/tables/ultracart_dw_medium/uc_storefronts.json +62 -0
- package/schemas/tables/ultracart_dw_medium/uc_surveys.json +269 -0
- package/schemas/tables/ultracart_dw_medium/uc_workflow_tasks.json +377 -0
- package/schemas/tables/ultracart_dw_medium/uc_zoho_desk_tickets.json +1330 -0
- package/schemas/tables/ultracart_dw_streaming/uc_analytics_session_streaming.json +2444 -0
- package/schemas/tables/ultracart_dw_streaming/uc_screen_recording_streaming.json +509 -0
- package/schemas/ultracart-bq-config.schema.json +140 -0
- package/skill/skill.md +1228 -0
- package/templates/render.html +73 -0
|
@@ -0,0 +1,338 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"mode": "NULLABLE",
|
|
4
|
+
"name": "partition_date",
|
|
5
|
+
"type": "DATE"
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"mode": "NULLABLE",
|
|
9
|
+
"name": "storefront_upsell_offer_event_oid",
|
|
10
|
+
"type": "INTEGER"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"mode": "NULLABLE",
|
|
14
|
+
"name": "storefront_upsell_offer_oid",
|
|
15
|
+
"type": "INTEGER"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"mode": "NULLABLE",
|
|
19
|
+
"name": "order_id",
|
|
20
|
+
"type": "STRING"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"mode": "NULLABLE",
|
|
24
|
+
"name": "event_dts",
|
|
25
|
+
"description": "Event date/time",
|
|
26
|
+
"type": "DATETIME"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"mode": "NULLABLE",
|
|
30
|
+
"name": "view_count",
|
|
31
|
+
"type": "INTEGER"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"mode": "NULLABLE",
|
|
35
|
+
"name": "decline_count",
|
|
36
|
+
"type": "INTEGER"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"mode": "NULLABLE",
|
|
40
|
+
"name": "item_id",
|
|
41
|
+
"type": "STRING"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"mode": "NULLABLE",
|
|
45
|
+
"name": "quantity",
|
|
46
|
+
"type": "INTEGER"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"mode": "NULLABLE",
|
|
50
|
+
"name": "refund_quantity",
|
|
51
|
+
"type": "INTEGER"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"mode": "NULLABLE",
|
|
55
|
+
"name": "successful_charge",
|
|
56
|
+
"type": "INTEGER"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"mode": "NULLABLE",
|
|
60
|
+
"name": "revenue",
|
|
61
|
+
"type": "NUMERIC"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"mode": "NULLABLE",
|
|
65
|
+
"name": "profit",
|
|
66
|
+
"type": "NUMERIC"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"mode": "NULLABLE",
|
|
70
|
+
"name": "screen_size",
|
|
71
|
+
"type": "STRING"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"mode": "NULLABLE",
|
|
75
|
+
"name": "session_id",
|
|
76
|
+
"description": "Session ID - cart id if they did not complete, otherwise the order id",
|
|
77
|
+
"type": "STRING"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"mode": "NULLABLE",
|
|
81
|
+
"name": "refunded_revenue",
|
|
82
|
+
"type": "NUMERIC"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"mode": "NULLABLE",
|
|
86
|
+
"name": "refunded_profit",
|
|
87
|
+
"type": "NUMERIC"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"mode": "REPEATED",
|
|
91
|
+
"name": "utms",
|
|
92
|
+
"description": "UTM clicks. The zero index is the most recent (last) UTM click",
|
|
93
|
+
"type": "RECORD",
|
|
94
|
+
"fields": [
|
|
95
|
+
{
|
|
96
|
+
"mode": "NULLABLE",
|
|
97
|
+
"name": "click_dts",
|
|
98
|
+
"description": "Date/time that the click happened",
|
|
99
|
+
"type": "DATETIME"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"mode": "NULLABLE",
|
|
103
|
+
"name": "utm_source",
|
|
104
|
+
"type": "STRING"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"mode": "NULLABLE",
|
|
108
|
+
"name": "utm_medium",
|
|
109
|
+
"type": "STRING"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"mode": "NULLABLE",
|
|
113
|
+
"name": "utm_campaign",
|
|
114
|
+
"type": "STRING"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"mode": "NULLABLE",
|
|
118
|
+
"name": "utm_term",
|
|
119
|
+
"type": "STRING"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"mode": "NULLABLE",
|
|
123
|
+
"name": "utm_content",
|
|
124
|
+
"type": "STRING"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"mode": "NULLABLE",
|
|
128
|
+
"name": "utm_id",
|
|
129
|
+
"type": "STRING"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"mode": "NULLABLE",
|
|
133
|
+
"name": "facebook_ad_id",
|
|
134
|
+
"type": "STRING"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"mode": "NULLABLE",
|
|
138
|
+
"name": "uc_message_id",
|
|
139
|
+
"type": "STRING"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"mode": "NULLABLE",
|
|
143
|
+
"name": "glcid",
|
|
144
|
+
"type": "STRING"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"mode": "NULLABLE",
|
|
148
|
+
"name": "wbraid",
|
|
149
|
+
"type": "STRING"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"mode": "NULLABLE",
|
|
153
|
+
"name": "gbraid",
|
|
154
|
+
"type": "STRING"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"mode": "NULLABLE",
|
|
158
|
+
"name": "msclkid",
|
|
159
|
+
"type": "STRING"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"mode": "NULLABLE",
|
|
163
|
+
"name": "fbclid",
|
|
164
|
+
"type": "STRING"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"mode": "NULLABLE",
|
|
168
|
+
"name": "ttclid",
|
|
169
|
+
"type": "STRING"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"mode": "NULLABLE",
|
|
173
|
+
"name": "vmcid",
|
|
174
|
+
"type": "STRING"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"mode": "NULLABLE",
|
|
178
|
+
"name": "attribution_first_click_total",
|
|
179
|
+
"type": "NUMERIC"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"mode": "NULLABLE",
|
|
183
|
+
"name": "attribution_first_click_subtotal",
|
|
184
|
+
"type": "NUMERIC"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"mode": "NULLABLE",
|
|
188
|
+
"name": "attribution_last_click_total",
|
|
189
|
+
"type": "NUMERIC"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"mode": "NULLABLE",
|
|
193
|
+
"name": "attribution_last_click_subtotal",
|
|
194
|
+
"type": "NUMERIC"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"mode": "NULLABLE",
|
|
198
|
+
"name": "attribution_linear_total",
|
|
199
|
+
"type": "NUMERIC"
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"mode": "NULLABLE",
|
|
203
|
+
"name": "attribution_linear_subtotal",
|
|
204
|
+
"type": "NUMERIC"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"mode": "NULLABLE",
|
|
208
|
+
"name": "attribution_position_based_total",
|
|
209
|
+
"type": "NUMERIC"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"mode": "NULLABLE",
|
|
213
|
+
"name": "attribution_position_based_subtotal",
|
|
214
|
+
"type": "NUMERIC"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"mode": "NULLABLE",
|
|
218
|
+
"name": "attribution_first_click_revenue",
|
|
219
|
+
"type": "NUMERIC"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"mode": "NULLABLE",
|
|
223
|
+
"name": "attribution_first_click_profit",
|
|
224
|
+
"type": "NUMERIC"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"mode": "NULLABLE",
|
|
228
|
+
"name": "attribution_first_click_refunded_revenue",
|
|
229
|
+
"type": "NUMERIC"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"mode": "NULLABLE",
|
|
233
|
+
"name": "attribution_first_click_refunded_profit",
|
|
234
|
+
"type": "NUMERIC"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"mode": "NULLABLE",
|
|
238
|
+
"name": "attribution_last_click_revenue",
|
|
239
|
+
"type": "NUMERIC"
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"mode": "NULLABLE",
|
|
243
|
+
"name": "attribution_last_click_profit",
|
|
244
|
+
"type": "NUMERIC"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"mode": "NULLABLE",
|
|
248
|
+
"name": "attribution_last_click_refunded_revenue",
|
|
249
|
+
"type": "NUMERIC"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"mode": "NULLABLE",
|
|
253
|
+
"name": "attribution_last_click_refunded_profit",
|
|
254
|
+
"type": "NUMERIC"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"mode": "NULLABLE",
|
|
258
|
+
"name": "attribution_linear_revenue",
|
|
259
|
+
"type": "NUMERIC"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"mode": "NULLABLE",
|
|
263
|
+
"name": "attribution_linear_profit",
|
|
264
|
+
"type": "NUMERIC"
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"mode": "NULLABLE",
|
|
268
|
+
"name": "attribution_linear_refunded_revenue",
|
|
269
|
+
"type": "NUMERIC"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"mode": "NULLABLE",
|
|
273
|
+
"name": "attribution_linear_refunded_profit",
|
|
274
|
+
"type": "NUMERIC"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"mode": "NULLABLE",
|
|
278
|
+
"name": "attribution_position_based_revenue",
|
|
279
|
+
"type": "NUMERIC"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"mode": "NULLABLE",
|
|
283
|
+
"name": "attribution_position_based_profit",
|
|
284
|
+
"type": "NUMERIC"
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"mode": "NULLABLE",
|
|
288
|
+
"name": "attribution_position_based_refunded_revenue",
|
|
289
|
+
"type": "NUMERIC"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"mode": "NULLABLE",
|
|
293
|
+
"name": "attribution_position_based_refunded_profit",
|
|
294
|
+
"type": "NUMERIC"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"mode": "NULLABLE",
|
|
298
|
+
"name": "itm_source",
|
|
299
|
+
"type": "STRING"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"mode": "NULLABLE",
|
|
303
|
+
"name": "itm_medium",
|
|
304
|
+
"type": "STRING"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"mode": "NULLABLE",
|
|
308
|
+
"name": "itm_campaign",
|
|
309
|
+
"type": "STRING"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"mode": "NULLABLE",
|
|
313
|
+
"name": "itm_term",
|
|
314
|
+
"type": "STRING"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"mode": "NULLABLE",
|
|
318
|
+
"name": "itm_content",
|
|
319
|
+
"type": "STRING"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"mode": "NULLABLE",
|
|
323
|
+
"name": "itm_id",
|
|
324
|
+
"type": "STRING"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"mode": "NULLABLE",
|
|
328
|
+
"name": "short_code",
|
|
329
|
+
"type": "STRING"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"mode": "NULLABLE",
|
|
333
|
+
"name": "short_code_backup",
|
|
334
|
+
"type": "BOOLEAN"
|
|
335
|
+
}
|
|
336
|
+
]
|
|
337
|
+
}
|
|
338
|
+
]
|