@saasquatch/mint-components 1.8.0-53 → 1.8.0-54

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.
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
5
5
  const index = require('./index-78c52836.js');
6
6
  const stencilHooks_module = require('./stencil-hooks.module-7c2013c9.js');
7
7
  const index_module = require('./index.module-9243c470.js');
8
- require('./cjs-1066ec21.js');
8
+ const cjs = require('./cjs-1066ec21.js');
9
9
  require('./JSS-8503a151.js');
10
10
  const utils = require('./utils-6847bc06.js');
11
11
  const data = require('./data-190a4bba.js');
@@ -990,8 +990,8 @@ const TaxAndCashMonolith = class {
990
990
  };
991
991
  }
992
992
  render() {
993
- const props = useTaxAndCash();
994
- // const props = isDemo() ? useDemoTaxAndCash(this) : useTaxAndCash();
993
+ // const props = useTaxAndCash();
994
+ const props = index_module.isDemo() ? useDemoTaxAndCash(this) : useTaxAndCash();
995
995
  console.log({ dashboardProps: this.getGeneralStepTextProps("dashboard_") });
996
996
  switch (props.step) {
997
997
  case "/1":
@@ -1008,5 +1008,15 @@ const TaxAndCashMonolith = class {
1008
1008
  return index.h(LoadingView.LoadingView, null);
1009
1009
  }
1010
1010
  };
1011
+ function useDemoTaxAndCash(props) {
1012
+ const [step, setStep] = data.useParentState({
1013
+ namespace: data.TAX_CONTEXT_NAMESPACE,
1014
+ initialValue: "/1",
1015
+ });
1016
+ return cjs.cjs({
1017
+ step,
1018
+ setStep,
1019
+ }, props.demoData || {}, { arrayMerge: (_, a) => a });
1020
+ }
1011
1021
 
1012
1022
  exports.sqm_tax_and_cash = TaxAndCashMonolith;
@@ -7,6 +7,7 @@ import LoadingView from "./LoadingView";
7
7
  import { TAX_CONTEXT_NAMESPACE } from "./data";
8
8
  import { extractProps } from "./extractProps";
9
9
  import { useTaxAndCash } from "./useTaxAndCash";
10
+ import { isDemo } from "@saasquatch/component-boilerplate";
10
11
  /**
11
12
  * @uiName Tax and Cash
12
13
  * @exampleGroup Tax and Cash
@@ -840,8 +841,8 @@ export class TaxAndCashMonolith {
840
841
  };
841
842
  }
842
843
  render() {
843
- const props = useTaxAndCash();
844
- // const props = isDemo() ? useDemoTaxAndCash(this) : useTaxAndCash();
844
+ // const props = useTaxAndCash();
845
+ const props = isDemo() ? useDemoTaxAndCash(this) : useTaxAndCash();
845
846
  console.log({ dashboardProps: this.getGeneralStepTextProps("dashboard_") });
846
847
  switch (props.step) {
847
848
  case "/1":
@@ -1,4 +1,4 @@
1
- import { c as createCommonjsModule, a as commonjsGlobal, n as d, y, f as useEffect } from './stencil-hooks.module-aa42e74f.js';
1
+ import { c as createCommonjsModule, a as commonjsGlobal, y, n as d, f as useEffect } from './stencil-hooks.module-aa42e74f.js';
2
2
  import { O, g as gn, d as dist } from './index.module-a46df001.js';
3
3
 
4
4
  var fastEquals = createCommonjsModule(function (module, exports) {
@@ -1,7 +1,7 @@
1
1
  import { r as registerInstance, h as h$1 } from './index-f16aa635.js';
2
2
  import { u as useMemo, f as useEffect, m as h } from './stencil-hooks.module-aa42e74f.js';
3
- import { O, H } from './index.module-a46df001.js';
4
- import './cjs-bdfb4486.js';
3
+ import { O, H, i as isDemo } from './index.module-a46df001.js';
4
+ import { c as cjs } from './cjs-bdfb4486.js';
5
5
  import './JSS-67b5cff8.js';
6
6
  import { g as getProps } from './utils-334c1e34.js';
7
7
  import { g as getContextValueName, e as useParentState, f as useParentQuery, c as TAX_CONTEXT_NAMESPACE, T as TAX_FORM_CONTEXT_NAMESPACE, h as USER_FORM_CONTEXT_NAMESPACE, C as CURRENCIES_NAMESPACE, i as COUNTRIES_NAMESPACE, U as USER_QUERY_NAMESPACE, G as GET_USER, j as COUNTRIES_QUERY_NAMESPACE, k as GET_COUNTRIES, F as FINANCE_NETWORK_SETTINGS_NAMESPACE, l as GET_FINANCE_NETWORK_SETTINGS, m as CURRENCIES_QUERY_NAMESPACE, n as GET_CURRENCIES } from './data-2b125d65.js';
@@ -986,8 +986,8 @@ const TaxAndCashMonolith = class {
986
986
  };
987
987
  }
988
988
  render() {
989
- const props = useTaxAndCash();
990
- // const props = isDemo() ? useDemoTaxAndCash(this) : useTaxAndCash();
989
+ // const props = useTaxAndCash();
990
+ const props = isDemo() ? useDemoTaxAndCash(this) : useTaxAndCash();
991
991
  console.log({ dashboardProps: this.getGeneralStepTextProps("dashboard_") });
992
992
  switch (props.step) {
993
993
  case "/1":
@@ -1004,5 +1004,15 @@ const TaxAndCashMonolith = class {
1004
1004
  return h$1(LoadingView, null);
1005
1005
  }
1006
1006
  };
1007
+ function useDemoTaxAndCash(props) {
1008
+ const [step, setStep] = useParentState({
1009
+ namespace: TAX_CONTEXT_NAMESPACE,
1010
+ initialValue: "/1",
1011
+ });
1012
+ return cjs({
1013
+ step,
1014
+ setStep,
1015
+ }, props.demoData || {}, { arrayMerge: (_, a) => a });
1016
+ }
1007
1017
 
1008
1018
  export { TaxAndCashMonolith as sqm_tax_and_cash };
@@ -1 +1 @@
1
- var __makeTemplateObject=this&&this.__makeTemplateObject||function(e,n){if(Object.defineProperty){Object.defineProperty(e,"raw",{value:n})}else{e.raw=n}return e};import{c as createCommonjsModule,a as commonjsGlobal,n as d,y,f as useEffect}from"./stencil-hooks.module-aa42e74f.js";import{O,g as gn,d as dist}from"./index.module-a46df001.js";var fastEquals=createCommonjsModule((function(e,n){(function(e,t){t(n)})(commonjsGlobal,(function(e){function n(e){return function n(t,r,a,u,i,o,c){return e(t,r,c)}}function t(e){return function n(t,r,a,u){if(!t||!r||typeof t!=="object"||typeof r!=="object"){return e(t,r,a,u)}var i=u.get(t);var o=u.get(r);if(i&&o){return i===r&&o===t}u.set(t,r);u.set(r,t);var c=e(t,r,a,u);u.delete(t);u.delete(r);return c}}function r(e,n){var t={};for(var r in e){t[r]=e[r]}for(var r in n){t[r]=n[r]}return t}function a(e){return e.constructor===Object||e.constructor==null}function u(e){return typeof e.then==="function"}function i(e,n){return e===n||e!==e&&n!==n}var o="[object Arguments]";var c="[object Boolean]";var s="[object Date]";var l="[object RegExp]";var f="[object Map]";var E="[object Number]";var m="[object Object]";var d="[object Set]";var p="[object String]";var N=Object.prototype.toString;function v(e){var n=e.areArraysEqual,t=e.areDatesEqual,r=e.areMapsEqual,v=e.areObjectsEqual,y=e.areRegExpsEqual,C=e.areSetsEqual,_=e.createIsNestedEqual;var S=_(T);function T(e,_,T){if(e===_){return true}if(!e||!_||typeof e!=="object"||typeof _!=="object"){return e!==e&&_!==_}if(a(e)&&a(_)){return v(e,_,S,T)}var O=Array.isArray(e);var b=Array.isArray(_);if(O||b){return O===b&&n(e,_,S,T)}var q=N.call(e);if(q!==N.call(_)){return false}if(q===s){return t(e,_,S,T)}if(q===l){return y(e,_,S,T)}if(q===f){return r(e,_,S,T)}if(q===d){return C(e,_,S,T)}if(q===m||q===o){return u(e)||u(_)?false:v(e,_,S,T)}if(q===c||q===E||q===p){return i(e.valueOf(),_.valueOf())}return false}return T}function y(e,n,t,r){var a=e.length;if(n.length!==a){return false}while(a-- >0){if(!t(e[a],n[a],a,a,e,n,r)){return false}}return true}var C=t(y);function _(e,n){return i(e.valueOf(),n.valueOf())}function S(e,n,t,r){var a=e.size===n.size;if(!a){return false}if(!e.size){return true}var u={};var i=0;e.forEach((function(o,c){if(!a){return}var s=false;var l=0;n.forEach((function(a,f){if(!s&&!u[l]&&(s=t(c,f,i,l,e,n,r)&&t(o,a,c,f,e,n,r))){u[l]=true}l++}));i++;a=s}));return a}var T=t(S);var O="_owner";var b=Object.prototype.hasOwnProperty;function q(e,n,t,r){var a=Object.keys(e);var u=a.length;if(Object.keys(n).length!==u){return false}var i;while(u-- >0){i=a[u];if(i===O){var o=!!e.$$typeof;var c=!!n.$$typeof;if((o||c)&&o!==c){return false}}if(!b.call(n,i)||!t(e[i],n[i],i,i,e,n,r)){return false}}return true}var A=t(q);function g(e,n){return e.source===n.source&&e.flags===n.flags}function j(e,n,t,r){var a=e.size===n.size;if(!a){return false}if(!e.size){return true}var u={};e.forEach((function(i,o){if(!a){return}var c=false;var s=0;n.forEach((function(a,l){if(!c&&!u[s]&&(c=t(i,a,o,l,e,n,r))){u[s]=true}s++}));a=c}));return a}var h=t(j);var R=Object.freeze({areArraysEqual:y,areDatesEqual:_,areMapsEqual:S,areObjectsEqual:q,areRegExpsEqual:g,areSetsEqual:j,createIsNestedEqual:n});var P=Object.freeze({areArraysEqual:C,areDatesEqual:_,areMapsEqual:T,areObjectsEqual:A,areRegExpsEqual:g,areSetsEqual:h,createIsNestedEqual:n});var I=v(R);function M(e,n){return I(e,n,undefined)}var x=v(r(R,{createIsNestedEqual:function(){return i}}));function F(e,n){return x(e,n,undefined)}var w=v(P);function U(e,n){return w(e,n,new WeakMap)}var k=v(r(P,{createIsNestedEqual:function(){return i}}));function G(e,n){return k(e,n,new WeakMap)}function V(e){return v(r(R,e(R)))}function D(e){var n=v(r(P,e(P)));return function(e,t,r){if(r===void 0){r=new WeakMap}return n(e,t,r)}}e.circularDeepEqual=U;e.circularShallowEqual=G;e.createCustomCircularEqual=D;e.createCustomEqual=V;e.deepEqual=M;e.sameValueZeroEqual=i;e.shallowEqual=F;Object.defineProperty(e,"__esModule",{value:true})}))}));function useParentState(e){var n=O();var t=y(n,getContextValueName(e.namespace),e.initialValue),r=t[0],a=t[1];y(n,getContextName(e.namespace),[r,a]);return[r,a]}function useParent(e){var n=d(getContextName(e));var t=d(getContextValueName(e));if(!n)return[undefined,undefined];return[t,n[1]]}function useSetParent(e){var n=d(getContextName(e));if(!n)return undefined;return n[1]}function useParentValue(e){var n=d(getContextValueName(e));return n}function getContextValueName(e){return e+"-value"}function getContextName(e){return e+"-state"}function useParentQuery(e){var n=O();var t=gn(e.query,e.variables||{},e.skip);var r=y(n,getContextValueName(e.namespace),t),a=r[0],u=r[1];useEffect((function(){if(fastEquals.deepEqual(t,a))return;u(t)}),[t,a]);return t}function useParentQueryValue(e){var n=d(getContextValueName(e));if(!n)return{data:null,loading:true,refetch:function(){return console.warn("component still loading")}};return n}var TAX_CONTEXT_NAMESPACE="sq:tax-and-cash";var TAX_FORM_CONTEXT_NAMESPACE="sq:tax-form-context";var USER_QUERY_NAMESPACE="sq:user-info-query";var USER_FORM_CONTEXT_NAMESPACE="sq:user-form-context";var FINANCE_NETWORK_SETTINGS_NAMESPACE="sq:finance-network-settings";var COUNTRIES_NAMESPACE="sq:countries:list";var COUNTRIES_QUERY_NAMESPACE="sq:countries:query";var CURRENCIES_NAMESPACE="sq:currencies:list";var CURRENCIES_QUERY_NAMESPACE="sq:currencies:query";var GET_USER=dist.gql(templateObject_1||(templateObject_1=__makeTemplateObject(["\n query getUserTaxInfo {\n user: viewer {\n ... on User {\n firstName\n lastName\n email\n countryCode\n customFields\n impactConnection {\n connected\n user {\n firstName\n lastName\n }\n publisher {\n countryCode\n currency\n requiredTaxDocumentType\n indirectTaxId\n currentTaxDocument {\n status\n type\n dateCreated\n }\n withdrawalSettings {\n paymentMethod\n paypalEmailAddress\n bankCountry\n bankAccountNumber\n paymentSchedulingType\n paymentThreshold\n paymentDay\n }\n payoutsAccount {\n hold\n balance\n }\n }\n }\n }\n }\n }\n"],["\n query getUserTaxInfo {\n user: viewer {\n ... on User {\n firstName\n lastName\n email\n countryCode\n customFields\n impactConnection {\n connected\n user {\n firstName\n lastName\n }\n publisher {\n countryCode\n currency\n requiredTaxDocumentType\n indirectTaxId\n currentTaxDocument {\n status\n type\n dateCreated\n }\n withdrawalSettings {\n paymentMethod\n paypalEmailAddress\n bankCountry\n bankAccountNumber\n paymentSchedulingType\n paymentThreshold\n paymentDay\n }\n payoutsAccount {\n hold\n balance\n }\n }\n }\n }\n }\n }\n"])));var GET_COUNTRIES=dist.gql(templateObject_2||(templateObject_2=__makeTemplateObject(["\n query getCountries {\n impactPayoutCountries(limit: 1000) {\n data {\n countryCode\n displayName\n }\n }\n }\n"],["\n query getCountries {\n impactPayoutCountries(limit: 1000) {\n data {\n countryCode\n displayName\n }\n }\n }\n"])));var GET_CURRENCIES=dist.gql(templateObject_3||(templateObject_3=__makeTemplateObject(["\n query currencies {\n currencies(limit: 300) {\n data {\n displayName\n currencyCode\n }\n }\n }\n"],["\n query currencies {\n currencies(limit: 300) {\n data {\n displayName\n currencyCode\n }\n }\n }\n"])));var GET_FINANCE_NETWORK_SETTINGS=dist.gql(templateObject_4||(templateObject_4=__makeTemplateObject(["\n query impactFinanceNetworkSettings(\n $filter: ImpactFinanceNetworkSettingsFilterInput\n ) {\n impactFinanceNetworkSettings(filter: $filter, limit: 1000) {\n data {\n countryCode\n currency\n defaultFinancePaymentMethodId\n thresholdOptions\n withdrawalSettingId\n internationalEftFee\n foreignFxFee\n defaultFxFee\n }\n totalCount\n }\n }\n"],["\n query impactFinanceNetworkSettings(\n $filter: ImpactFinanceNetworkSettingsFilterInput\n ) {\n impactFinanceNetworkSettings(filter: $filter, limit: 1000) {\n data {\n countryCode\n currency\n defaultFinancePaymentMethodId\n thresholdOptions\n withdrawalSettingId\n internationalEftFee\n foreignFxFee\n defaultFxFee\n }\n totalCount\n }\n }\n"])));export{CURRENCIES_NAMESPACE as C,FINANCE_NETWORK_SETTINGS_NAMESPACE as F,GET_USER as G,TAX_FORM_CONTEXT_NAMESPACE as T,USER_QUERY_NAMESPACE as U,useSetParent as a,useParentQueryValue as b,TAX_CONTEXT_NAMESPACE as c,useParent as d,useParentState as e,useParentQuery as f,getContextValueName as g,USER_FORM_CONTEXT_NAMESPACE as h,COUNTRIES_NAMESPACE as i,COUNTRIES_QUERY_NAMESPACE as j,GET_COUNTRIES as k,GET_FINANCE_NETWORK_SETTINGS as l,CURRENCIES_QUERY_NAMESPACE as m,GET_CURRENCIES as n,useParentValue as u};var templateObject_1,templateObject_2,templateObject_3,templateObject_4;
1
+ var __makeTemplateObject=this&&this.__makeTemplateObject||function(e,n){if(Object.defineProperty){Object.defineProperty(e,"raw",{value:n})}else{e.raw=n}return e};import{c as createCommonjsModule,a as commonjsGlobal,y,n as d,f as useEffect}from"./stencil-hooks.module-aa42e74f.js";import{O,g as gn,d as dist}from"./index.module-a46df001.js";var fastEquals=createCommonjsModule((function(e,n){(function(e,t){t(n)})(commonjsGlobal,(function(e){function n(e){return function n(t,r,a,u,i,o,c){return e(t,r,c)}}function t(e){return function n(t,r,a,u){if(!t||!r||typeof t!=="object"||typeof r!=="object"){return e(t,r,a,u)}var i=u.get(t);var o=u.get(r);if(i&&o){return i===r&&o===t}u.set(t,r);u.set(r,t);var c=e(t,r,a,u);u.delete(t);u.delete(r);return c}}function r(e,n){var t={};for(var r in e){t[r]=e[r]}for(var r in n){t[r]=n[r]}return t}function a(e){return e.constructor===Object||e.constructor==null}function u(e){return typeof e.then==="function"}function i(e,n){return e===n||e!==e&&n!==n}var o="[object Arguments]";var c="[object Boolean]";var s="[object Date]";var l="[object RegExp]";var f="[object Map]";var E="[object Number]";var m="[object Object]";var d="[object Set]";var p="[object String]";var N=Object.prototype.toString;function v(e){var n=e.areArraysEqual,t=e.areDatesEqual,r=e.areMapsEqual,v=e.areObjectsEqual,y=e.areRegExpsEqual,C=e.areSetsEqual,_=e.createIsNestedEqual;var S=_(T);function T(e,_,T){if(e===_){return true}if(!e||!_||typeof e!=="object"||typeof _!=="object"){return e!==e&&_!==_}if(a(e)&&a(_)){return v(e,_,S,T)}var O=Array.isArray(e);var b=Array.isArray(_);if(O||b){return O===b&&n(e,_,S,T)}var q=N.call(e);if(q!==N.call(_)){return false}if(q===s){return t(e,_,S,T)}if(q===l){return y(e,_,S,T)}if(q===f){return r(e,_,S,T)}if(q===d){return C(e,_,S,T)}if(q===m||q===o){return u(e)||u(_)?false:v(e,_,S,T)}if(q===c||q===E||q===p){return i(e.valueOf(),_.valueOf())}return false}return T}function y(e,n,t,r){var a=e.length;if(n.length!==a){return false}while(a-- >0){if(!t(e[a],n[a],a,a,e,n,r)){return false}}return true}var C=t(y);function _(e,n){return i(e.valueOf(),n.valueOf())}function S(e,n,t,r){var a=e.size===n.size;if(!a){return false}if(!e.size){return true}var u={};var i=0;e.forEach((function(o,c){if(!a){return}var s=false;var l=0;n.forEach((function(a,f){if(!s&&!u[l]&&(s=t(c,f,i,l,e,n,r)&&t(o,a,c,f,e,n,r))){u[l]=true}l++}));i++;a=s}));return a}var T=t(S);var O="_owner";var b=Object.prototype.hasOwnProperty;function q(e,n,t,r){var a=Object.keys(e);var u=a.length;if(Object.keys(n).length!==u){return false}var i;while(u-- >0){i=a[u];if(i===O){var o=!!e.$$typeof;var c=!!n.$$typeof;if((o||c)&&o!==c){return false}}if(!b.call(n,i)||!t(e[i],n[i],i,i,e,n,r)){return false}}return true}var A=t(q);function g(e,n){return e.source===n.source&&e.flags===n.flags}function j(e,n,t,r){var a=e.size===n.size;if(!a){return false}if(!e.size){return true}var u={};e.forEach((function(i,o){if(!a){return}var c=false;var s=0;n.forEach((function(a,l){if(!c&&!u[s]&&(c=t(i,a,o,l,e,n,r))){u[s]=true}s++}));a=c}));return a}var h=t(j);var R=Object.freeze({areArraysEqual:y,areDatesEqual:_,areMapsEqual:S,areObjectsEqual:q,areRegExpsEqual:g,areSetsEqual:j,createIsNestedEqual:n});var P=Object.freeze({areArraysEqual:C,areDatesEqual:_,areMapsEqual:T,areObjectsEqual:A,areRegExpsEqual:g,areSetsEqual:h,createIsNestedEqual:n});var I=v(R);function M(e,n){return I(e,n,undefined)}var x=v(r(R,{createIsNestedEqual:function(){return i}}));function F(e,n){return x(e,n,undefined)}var w=v(P);function U(e,n){return w(e,n,new WeakMap)}var k=v(r(P,{createIsNestedEqual:function(){return i}}));function G(e,n){return k(e,n,new WeakMap)}function V(e){return v(r(R,e(R)))}function D(e){var n=v(r(P,e(P)));return function(e,t,r){if(r===void 0){r=new WeakMap}return n(e,t,r)}}e.circularDeepEqual=U;e.circularShallowEqual=G;e.createCustomCircularEqual=D;e.createCustomEqual=V;e.deepEqual=M;e.sameValueZeroEqual=i;e.shallowEqual=F;Object.defineProperty(e,"__esModule",{value:true})}))}));function useParentState(e){var n=O();var t=y(n,getContextValueName(e.namespace),e.initialValue),r=t[0],a=t[1];y(n,getContextName(e.namespace),[r,a]);return[r,a]}function useParent(e){var n=d(getContextName(e));var t=d(getContextValueName(e));if(!n)return[undefined,undefined];return[t,n[1]]}function useSetParent(e){var n=d(getContextName(e));if(!n)return undefined;return n[1]}function useParentValue(e){var n=d(getContextValueName(e));return n}function getContextValueName(e){return e+"-value"}function getContextName(e){return e+"-state"}function useParentQuery(e){var n=O();var t=gn(e.query,e.variables||{},e.skip);var r=y(n,getContextValueName(e.namespace),t),a=r[0],u=r[1];useEffect((function(){if(fastEquals.deepEqual(t,a))return;u(t)}),[t,a]);return t}function useParentQueryValue(e){var n=d(getContextValueName(e));if(!n)return{data:null,loading:true,refetch:function(){return console.warn("component still loading")}};return n}var TAX_CONTEXT_NAMESPACE="sq:tax-and-cash";var TAX_FORM_CONTEXT_NAMESPACE="sq:tax-form-context";var USER_QUERY_NAMESPACE="sq:user-info-query";var USER_FORM_CONTEXT_NAMESPACE="sq:user-form-context";var FINANCE_NETWORK_SETTINGS_NAMESPACE="sq:finance-network-settings";var COUNTRIES_NAMESPACE="sq:countries:list";var COUNTRIES_QUERY_NAMESPACE="sq:countries:query";var CURRENCIES_NAMESPACE="sq:currencies:list";var CURRENCIES_QUERY_NAMESPACE="sq:currencies:query";var GET_USER=dist.gql(templateObject_1||(templateObject_1=__makeTemplateObject(["\n query getUserTaxInfo {\n user: viewer {\n ... on User {\n firstName\n lastName\n email\n countryCode\n customFields\n impactConnection {\n connected\n user {\n firstName\n lastName\n }\n publisher {\n countryCode\n currency\n requiredTaxDocumentType\n indirectTaxId\n currentTaxDocument {\n status\n type\n dateCreated\n }\n withdrawalSettings {\n paymentMethod\n paypalEmailAddress\n bankCountry\n bankAccountNumber\n paymentSchedulingType\n paymentThreshold\n paymentDay\n }\n payoutsAccount {\n hold\n balance\n }\n }\n }\n }\n }\n }\n"],["\n query getUserTaxInfo {\n user: viewer {\n ... on User {\n firstName\n lastName\n email\n countryCode\n customFields\n impactConnection {\n connected\n user {\n firstName\n lastName\n }\n publisher {\n countryCode\n currency\n requiredTaxDocumentType\n indirectTaxId\n currentTaxDocument {\n status\n type\n dateCreated\n }\n withdrawalSettings {\n paymentMethod\n paypalEmailAddress\n bankCountry\n bankAccountNumber\n paymentSchedulingType\n paymentThreshold\n paymentDay\n }\n payoutsAccount {\n hold\n balance\n }\n }\n }\n }\n }\n }\n"])));var GET_COUNTRIES=dist.gql(templateObject_2||(templateObject_2=__makeTemplateObject(["\n query getCountries {\n impactPayoutCountries(limit: 1000) {\n data {\n countryCode\n displayName\n }\n }\n }\n"],["\n query getCountries {\n impactPayoutCountries(limit: 1000) {\n data {\n countryCode\n displayName\n }\n }\n }\n"])));var GET_CURRENCIES=dist.gql(templateObject_3||(templateObject_3=__makeTemplateObject(["\n query currencies {\n currencies(limit: 300) {\n data {\n displayName\n currencyCode\n }\n }\n }\n"],["\n query currencies {\n currencies(limit: 300) {\n data {\n displayName\n currencyCode\n }\n }\n }\n"])));var GET_FINANCE_NETWORK_SETTINGS=dist.gql(templateObject_4||(templateObject_4=__makeTemplateObject(["\n query impactFinanceNetworkSettings(\n $filter: ImpactFinanceNetworkSettingsFilterInput\n ) {\n impactFinanceNetworkSettings(filter: $filter, limit: 1000) {\n data {\n countryCode\n currency\n defaultFinancePaymentMethodId\n thresholdOptions\n withdrawalSettingId\n internationalEftFee\n foreignFxFee\n defaultFxFee\n }\n totalCount\n }\n }\n"],["\n query impactFinanceNetworkSettings(\n $filter: ImpactFinanceNetworkSettingsFilterInput\n ) {\n impactFinanceNetworkSettings(filter: $filter, limit: 1000) {\n data {\n countryCode\n currency\n defaultFinancePaymentMethodId\n thresholdOptions\n withdrawalSettingId\n internationalEftFee\n foreignFxFee\n defaultFxFee\n }\n totalCount\n }\n }\n"])));export{CURRENCIES_NAMESPACE as C,FINANCE_NETWORK_SETTINGS_NAMESPACE as F,GET_USER as G,TAX_FORM_CONTEXT_NAMESPACE as T,USER_QUERY_NAMESPACE as U,useSetParent as a,useParentQueryValue as b,TAX_CONTEXT_NAMESPACE as c,useParent as d,useParentState as e,useParentQuery as f,getContextValueName as g,USER_FORM_CONTEXT_NAMESPACE as h,COUNTRIES_NAMESPACE as i,COUNTRIES_QUERY_NAMESPACE as j,GET_COUNTRIES as k,GET_FINANCE_NETWORK_SETTINGS as l,CURRENCIES_QUERY_NAMESPACE as m,GET_CURRENCIES as n,useParentValue as u};var templateObject_1,templateObject_2,templateObject_3,templateObject_4;
@@ -1 +1 @@
1
- var __assign=this&&this.__assign||function(){__assign=Object.assign||function(e){for(var t,a=1,i=arguments.length;a<i;a++){t=arguments[a];for(var r in t)if(Object.prototype.hasOwnProperty.call(t,r))e[r]=t[r]}return e};return __assign.apply(this,arguments)};var __spreadArrays=this&&this.__spreadArrays||function(){for(var e=0,t=0,a=arguments.length;t<a;t++)e+=arguments[t].length;for(var i=Array(e),r=0,t=0;t<a;t++)for(var s=arguments[t],n=0,o=s.length;n<o;n++,r++)i[r]=s[n];return i};import{r as registerInstance,h as h$1}from"./index-f16aa635.js";import{u as useMemo,f as useEffect,m as h}from"./stencil-hooks.module-aa42e74f.js";import{O,H}from"./index.module-a46df001.js";import"./cjs-bdfb4486.js";import"./JSS-67b5cff8.js";import{g as getProps}from"./utils-334c1e34.js";import{g as getContextValueName,e as useParentState,f as useParentQuery,c as TAX_CONTEXT_NAMESPACE,T as TAX_FORM_CONTEXT_NAMESPACE,h as USER_FORM_CONTEXT_NAMESPACE,C as CURRENCIES_NAMESPACE,i as COUNTRIES_NAMESPACE,U as USER_QUERY_NAMESPACE,G as GET_USER,j as COUNTRIES_QUERY_NAMESPACE,k as GET_COUNTRIES,F as FINANCE_NETWORK_SETTINGS_NAMESPACE,l as GET_FINANCE_NETWORK_SETTINGS,m as CURRENCIES_QUERY_NAMESPACE,n as GET_CURRENCIES}from"./data-2b125d65.js";import{L as LoadingView}from"./LoadingView-bd976435.js";function extractProps(e,t){var a=Object.keys(e).filter((function(e){return e.startsWith(t)}));var i=a.reduce((function(a,i){var r;var s=i.replace(t,"");return __assign(__assign({},a),(r={},r[s]=e[i],r))}),{});return i}function getCurrentStep(e){var t,a;if(!((t=e.impactConnection)===null||t===void 0?void 0:t.publisher)||!((a=e.impactConnection)===null||a===void 0?void 0:a.connected)){return"/1"}var i=e.impactConnection.publisher,r=i.requiredTaxDocumentType,s=i.currentTaxDocument,n=i.withdrawalSettings;if(r&&(!s||(s===null||s===void 0?void 0:s.status)==="INACTIVE"||(s===null||s===void 0?void 0:s.status)==="NEW")){return"/3"}if(!n)return"/4";return"/submitted"}function useTaxAndCash(){var e,t,a,i;var r=O();var s=H();var n=useParentState({namespace:TAX_CONTEXT_NAMESPACE,initialValue:"/loading"}),o=n[0],d=n[1];var u=useParentState({namespace:TAX_FORM_CONTEXT_NAMESPACE,initialValue:{}}),c=u[0],h=u[1];var p=useParentState({namespace:USER_FORM_CONTEXT_NAMESPACE,initialValue:{firstName:undefined,lastName:undefined,email:undefined,countryCode:undefined,currency:undefined}}),m=p[0],l=p[1];var b=useParentState({namespace:CURRENCIES_NAMESPACE,initialValue:[]}),f=b[0],_=b[1];var y=useParentState({namespace:COUNTRIES_NAMESPACE,initialValue:[]}),T=y[0],S=y[1];var g=useParentQuery({namespace:USER_QUERY_NAMESPACE,query:GET_USER,skip:!s}).data;var E=((a=(t=(e=g===null||g===void 0?void 0:g.user)===null||e===void 0?void 0:e.impactConnection)===null||t===void 0?void 0:t.publisher)===null||a===void 0?void 0:a.countryCode)||m.countryCode;useParentQuery({namespace:COUNTRIES_QUERY_NAMESPACE,query:GET_COUNTRIES,skip:!s});var x=useParentQuery({namespace:FINANCE_NETWORK_SETTINGS_NAMESPACE,query:GET_FINANCE_NETWORK_SETTINGS,skip:!s,variables:{filter:P()}}),v=x.data,C=x.refetch;var N=useParentQuery({namespace:CURRENCIES_QUERY_NAMESPACE,query:GET_CURRENCIES,skip:!s}).data;var A=useMemo((function(){var e,t;var a=(t=(e=v===null||v===void 0?void 0:v.impactFinanceNetworkSettings)===null||e===void 0?void 0:e.data)===null||t===void 0?void 0:t.reduce((function(e,t){var a,i;var r=(i=(a=N===null||N===void 0?void 0:N.currencies)===null||a===void 0?void 0:a.data)===null||i===void 0?void 0:i.find((function(e){return e.currencyCode===t.currency}));if(!r)return e;if(e.find((function(e){return e.currencyCode===t.currency})))return e;if(m.countryCode&&t.countryCode!==E)return e;return __spreadArrays(e,[r])}),[]);return a}),[v,E]);useEffect((function(){if(A)_(A)}),[A]);useEffect((function(){if(!r||!s)return;if(g){var e=g===null||g===void 0?void 0:g.user;if(!e||o!=="/loading")return;var t=getCurrentStep(e);d(t)}}),[r,s,(i=g===null||g===void 0?void 0:g.user)===null||i===void 0?void 0:i.email]);function P(){var e,t,a;if(o==="/4")return{currency_eq:(a=(t=(e=g===null||g===void 0?void 0:g.user)===null||e===void 0?void 0:e.impactConnection)===null||t===void 0?void 0:t.publisher)===null||a===void 0?void 0:a.currency};if(E)return{countryCode_eq:E};return{}}return{step:o,setStep:d,context:c,namespace:getContextValueName(TAX_CONTEXT_NAMESPACE),loading:o==="/loading"}}var TaxAndCashMonolith=function(){function e(e){registerInstance(this,e);this.step1_firstName="First name";this.step1_lastName="Last name";this.step1_email="Email";this.step1_country="Country";this.step1_currency="Currency";this.step1_allowBankingCollection="I have read the {termsAndConditionsLink} and allow impact.com to collect my tax and banking information";this.step1_formStep="Step 1 of 4";this.step1_personalInformation="Personal Information";this.termsAndConditionsLabel="terms and conditions";this.step1_submitButton="Continue";this.step2_formStep="Step 2 of 4";this.step2_indirectTax="Indirect Tax";this.step2_indirectTaxDescription="Indirect Taxes (e.g. VAT, HST, GST) are transactional based taxes that are required to be levied by service providers by most tax authorities.";this.step2_indirectTaxDetails="Indirect Tax Details";this.step2_indirectTaxDetailsDescription="Not sure if you are registered for indirect tax? Contact our Support team to find out more.";this.step2_otherRegion="I am registered for Indirect Tax in a different Country / Region";this.otherRegionSubtext="IIf you represent a business based outside of the US may be registered. Not sure? Contact our Support team to find out more.";this.step2_notRegistered="I am not registered for Indirect Tax";this.notRegisteredSubtext="If you’re joining this referral program as an individual or you’re based in the US, then you’re not registered.";this.step2_selectedRegion="Country / Region of Indirect Tax";this.step2_province="Province";this.step2_indirectTaxNumber="{taxType, select, GST {GST Number} HST {HST Number} VAT {VAT Number} CT {CT Number} SST {SST Number} GENERAL {Indirect Tax Number}}";this.step2_qstNumber="QST Number";this.step2_isRegisteredQST="I am registered for QST Tax";this.step2_isRegisteredSubRegionIncomeTax="I am an individual registered for Income Tax purposes in Spain, and withholding tax will apply to any payments made to me.";this.step2_subRegion="Sub-region";this.step2_subRegionTaxNumberLabel="Income Tax Number";this.step2_submitButton="Continue";this.step2_backButton="Back";this.step2_cannotChangeInfoAlert="Changes to your personal information and indirect tax can only be made through our Support team after you complete this step. Ensure these are correct before continuing.";this.step2_indirectTaxNumberError="{taxType, select, GST {GST Number} HST {HST Number} VAT {VAT Number} CT {CT Number} SST {SST Number} GENERAL {Indirect Tax Number}} is required";this.step3_formStep="Step 3 of 4";this.step3_taxForm="Tax form";this.step3_taxFormLabel="{documentType} Tax Form";this.step3_participantType="Participant type";this.step3_businessEntity="I represent a company";this.step3_individualParticipant="I am an individual participant";this.step3_taxFormDescription="Participants based in the US and partnering with US-based brands need to submit a {documentType} form.";this.step3_taxFormDescriptionIndividualParticipant="Participants residing outside of the US, joining the referral program of a US-based company, need to submit a {documentType} form.";this.step3_taxFormDescriptionBusinessEntity="Participants residing outside of the US who represent a business entity need to submit a {documentType} form.";this.stop3NotBasedInUS="Not based in the US?";this.step3_banner="For your security, we automatically end your session when you have not interacted with the form after 20 minutes.";this.step3_checkboxLabel="Form submission";this.step3_checkboxDescription="I have completed and submitted my tax form";this.step3_docusignExpired="For your security and privacy, we automatically end your session after 20 minutes of inactivity. Please refresh and re-enter your tax information to continue.";this.step3_docusignCompleted="Your document has been completed and submitted.";this.step3_docusignError="There was a problem displaying this form. Please refresh the page. If this problem continues, contact Support.";this.step3_refreshButton="Refresh Page";this.step3_backButton="Back";this.step3_formSubmissionError="This field is required";this.step4_formStep="Step 4 of 4";this.step4_taxAndPayouts="Tax and Payouts";this.step4_taxAndPayoutsDescription="Submit your tax documents and add your banking information to receive your rewards.";this.step4_directlyToBankAccount="Directly to my bank account";this.step4_toPayPalAccount="PayPal (2% processing fee capped to {feeCap})";this.step4_paymentScheduleBalanceThreshold="Pay me when my balance reaches a threshold";this.step4_paymentScheduleFixedDay="Pay me on a fixed day of the month";this.step4_paymentDaySelectLabel="Payment Day";this.step4_paymentThresholdSelectLabel="Payment Threshold";this.step4_paymentDayFirstOfMonthLabelText="1st of the month";this.step4_paymentDayFifteenthOfMonthLabelText="15th of the month";this.step4_paymentMethod="Payment Method";this.step4_paymentSchedule="Payment Schedule";this.step4_paymentMethodSubtext="Payouts will be sent on the first day of each month from our referral program provider, impact.com.";this.step4_payPalInputLabel="PayPal Email";this.step4_bankLocationLabel="Bank Country Location";this.step4_beneficiaryAccountNameLabel="Beneficiary Account Name";this.step4_bankAccountTypeLabel="Bank Account Type";this.step4_checkingSelectItemLabel="Checking";this.step4_savingsSelectItemLabel="Savings";this.step4_bankAccountNumberLabel="Bank Account Number";this.step4_ibanLabel="IBAN";this.step4_swiftCodeLabel="SWIFT Code";this.step4_routingCodeLabel="Routing Code";this.step4_bankNameLabel="Bank Name";this.step4_classificationEntityLabel="Classification Entity";this.step4_businessSelectItemLabel="Business";this.step4_individualSelectItemLabel="Individual";this.step4_foreignSelectItemLabel="Foreign";this.step4_classificationCPFLabel="Classification CPF";this.step4_patronymicNameLabel="Patronymic Name";this.step4_voCodeLabel="VO Code";this.step4_agencyCodeLabel="Agency Code";this.step4_branchCodeLabel="Branch Code";this.step4_classificationLabel="Classification";this.step4_taxPayerIdLabel="Taxpayer ID";this.step4_bankAddressLabel="Bank Address";this.step4_bankCityLabel="Bank City";this.step4_bankStateLabel="Bank Province / State";this.step4_bankPostalCodeLabel="Bank Postal Code";this.step4_cannotChangeInfoAlert="Your payout information cannot be changed after saving. Ensure your payout method and schedule are correct before submitting.";this.dashboard_statusTextActive="Active";this.dashboard_statusTextNotActive="Invalid Tax Form";this.dashboard_statusTextNotVerified="Not Verified";this.dashboard_badgeTextSubmittedOn="Submitted on {dateSubmitted}";this.dashboard_badgeTextSubmittedOnW8="Submitted on {dateSubmitted}. Valid for three years after submission.";this.dashboard_badgeTextAwaitingReview="Awaiting review. Submitted on {dateSubmitted}.";this.dashboard_taxAlertHeaderNotActiveW9="Your W9 tax form has personal information that doesn’t match your profile";this.dashboard_taxAlertHeaderNotActiveW8="{documentType} tax form is invalid";this.dashboard_taxAlertNotActiveMessageW9="Please resubmit a new {documentType} form.";this.dashboard_taxAlertNotActiveMessageW8="Your tax form may have expired or has personal information that doesn’t match your profile. Please submit a new W8-BEN form.";this.dashboard_invalidForm="Ensure your information matches your profile and resubmit a new document.";this.dashboard_bankingInformationSectionHeader="Banking Information";this.dashboard_taxDocumentSectionHeader="Tax documents";this.dashboard_taxDocumentSectionSubHeader="{documentType} tax form";this.dashboard_noFormNeededSubtext="Tax documents are only required if you are based in the US. If your country of residence has changed, please contact Support.";this.dashboard_indirectTaxInfoSectionHeader="Indirect tax";this.dashboard_indirectTaxInfoCanada="Registered in {province}, {country}";this.dashboard_indirectTaxInfoOtherCountry="Registered in {country}";this.dashboard_indirectTaxInfoSpain="Registered in {country}, {subRegion}";this.dashboard_indirectTaxTooltipSupport="To make changes to your indirect tax information, please contact Support.";this.dashboard_indirectTaxDetails="{indirectTaxType} number: {indirectTaxNumber}";this.dashboard_newFormButton="Submit New Form";this.dashboard_editPaymentInformationButton="Edit Payout Information";this.dashboard_notRegisteredForTax="Not registered. Participants representing a company in countries that enforce indirect tax (e.g. GST, HST, VAT) must add their indirect tax information.";this.dashboard_qstNumber="QST number: {qstNumber}";this.dashboard_subRegionTaxNumber="Income tax number: {incomeTaxNumber}";this.dashboard_statusBadgeText="{badgeText, select, payoutToday {Payout Today} nextPayout {Next Payout} }";this.dashboard_thresholdPayoutText="Next payout occurs when balance is";this.dashboard_accountText="Account";this.dashboard_errorTitleText="There was an error with your payout infomation";this.dashboard_errorDescriptionText="Please ensure your payout information is correct. If this problem continues, contact Support.";this.generalErrorTitle="There was a problem submitting your information";this.generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.";this.fieldRequiredError="{fieldName} is required";this.continueButton="Continue";this.isPartnerAlertHeader="An account with this email already exists with our referral program provider, impact.com";this.isPartnerAlertDescription="If you don’t recognize this referral program provider or believe this is a mistake, please contact Support or sign up for this referral program with a different email.";h(this)}e.prototype.disconnectedCallback=function(){};e.prototype.getGeneralStepTextProps=function(e){var t=getProps(this);return __assign(__assign({},extractProps(t,e)),{generalErrorTitle:t.generalErrorTitle,generalErrorDescription:t.generalErrorDescription,fieldRequiredError:t.fieldRequiredError,submitButton:t.continueButton,isPartnerAlertHeader:t.isPartnerAlertHeader,isPartnerAlertDescription:t.isPartnerAlertDescription})};e.prototype.render=function(){var e=useTaxAndCash();console.log({dashboardProps:this.getGeneralStepTextProps("dashboard_")});switch(e.step){case"/1":return h$1("sqm-user-info-form",Object.assign({},this.getGeneralStepTextProps("step1_")));case"/2":return h$1("sqm-indirect-tax-form",Object.assign({},this.getGeneralStepTextProps("step2_")));case"/3":return h$1("sqm-docusign-form",Object.assign({},this.getGeneralStepTextProps("step3_")));case"/4":return h$1("sqm-banking-info-form",Object.assign({},this.getGeneralStepTextProps("step4_")));case"/submitted":return h$1("sqm-tax-and-cash-dashboard",Object.assign({},this.getGeneralStepTextProps("dashboard_")))}return h$1(LoadingView,null)};return e}();export{TaxAndCashMonolith as sqm_tax_and_cash};
1
+ var __assign=this&&this.__assign||function(){__assign=Object.assign||function(e){for(var t,a=1,i=arguments.length;a<i;a++){t=arguments[a];for(var r in t)if(Object.prototype.hasOwnProperty.call(t,r))e[r]=t[r]}return e};return __assign.apply(this,arguments)};var __spreadArrays=this&&this.__spreadArrays||function(){for(var e=0,t=0,a=arguments.length;t<a;t++)e+=arguments[t].length;for(var i=Array(e),r=0,t=0;t<a;t++)for(var s=arguments[t],n=0,o=s.length;n<o;n++,r++)i[r]=s[n];return i};import{r as registerInstance,h as h$1}from"./index-f16aa635.js";import{u as useMemo,f as useEffect,m as h}from"./stencil-hooks.module-aa42e74f.js";import{O,H,i as isDemo}from"./index.module-a46df001.js";import{c as cjs}from"./cjs-bdfb4486.js";import"./JSS-67b5cff8.js";import{g as getProps}from"./utils-334c1e34.js";import{g as getContextValueName,e as useParentState,f as useParentQuery,c as TAX_CONTEXT_NAMESPACE,T as TAX_FORM_CONTEXT_NAMESPACE,h as USER_FORM_CONTEXT_NAMESPACE,C as CURRENCIES_NAMESPACE,i as COUNTRIES_NAMESPACE,U as USER_QUERY_NAMESPACE,G as GET_USER,j as COUNTRIES_QUERY_NAMESPACE,k as GET_COUNTRIES,F as FINANCE_NETWORK_SETTINGS_NAMESPACE,l as GET_FINANCE_NETWORK_SETTINGS,m as CURRENCIES_QUERY_NAMESPACE,n as GET_CURRENCIES}from"./data-2b125d65.js";import{L as LoadingView}from"./LoadingView-bd976435.js";function extractProps(e,t){var a=Object.keys(e).filter((function(e){return e.startsWith(t)}));var i=a.reduce((function(a,i){var r;var s=i.replace(t,"");return __assign(__assign({},a),(r={},r[s]=e[i],r))}),{});return i}function getCurrentStep(e){var t,a;if(!((t=e.impactConnection)===null||t===void 0?void 0:t.publisher)||!((a=e.impactConnection)===null||a===void 0?void 0:a.connected)){return"/1"}var i=e.impactConnection.publisher,r=i.requiredTaxDocumentType,s=i.currentTaxDocument,n=i.withdrawalSettings;if(r&&(!s||(s===null||s===void 0?void 0:s.status)==="INACTIVE"||(s===null||s===void 0?void 0:s.status)==="NEW")){return"/3"}if(!n)return"/4";return"/submitted"}function useTaxAndCash(){var e,t,a,i;var r=O();var s=H();var n=useParentState({namespace:TAX_CONTEXT_NAMESPACE,initialValue:"/loading"}),o=n[0],d=n[1];var u=useParentState({namespace:TAX_FORM_CONTEXT_NAMESPACE,initialValue:{}}),c=u[0],h=u[1];var p=useParentState({namespace:USER_FORM_CONTEXT_NAMESPACE,initialValue:{firstName:undefined,lastName:undefined,email:undefined,countryCode:undefined,currency:undefined}}),m=p[0],l=p[1];var b=useParentState({namespace:CURRENCIES_NAMESPACE,initialValue:[]}),f=b[0],_=b[1];var y=useParentState({namespace:COUNTRIES_NAMESPACE,initialValue:[]}),T=y[0],S=y[1];var g=useParentQuery({namespace:USER_QUERY_NAMESPACE,query:GET_USER,skip:!s}).data;var E=((a=(t=(e=g===null||g===void 0?void 0:g.user)===null||e===void 0?void 0:e.impactConnection)===null||t===void 0?void 0:t.publisher)===null||a===void 0?void 0:a.countryCode)||m.countryCode;useParentQuery({namespace:COUNTRIES_QUERY_NAMESPACE,query:GET_COUNTRIES,skip:!s});var x=useParentQuery({namespace:FINANCE_NETWORK_SETTINGS_NAMESPACE,query:GET_FINANCE_NETWORK_SETTINGS,skip:!s,variables:{filter:P()}}),v=x.data,C=x.refetch;var N=useParentQuery({namespace:CURRENCIES_QUERY_NAMESPACE,query:GET_CURRENCIES,skip:!s}).data;var A=useMemo((function(){var e,t;var a=(t=(e=v===null||v===void 0?void 0:v.impactFinanceNetworkSettings)===null||e===void 0?void 0:e.data)===null||t===void 0?void 0:t.reduce((function(e,t){var a,i;var r=(i=(a=N===null||N===void 0?void 0:N.currencies)===null||a===void 0?void 0:a.data)===null||i===void 0?void 0:i.find((function(e){return e.currencyCode===t.currency}));if(!r)return e;if(e.find((function(e){return e.currencyCode===t.currency})))return e;if(m.countryCode&&t.countryCode!==E)return e;return __spreadArrays(e,[r])}),[]);return a}),[v,E]);useEffect((function(){if(A)_(A)}),[A]);useEffect((function(){if(!r||!s)return;if(g){var e=g===null||g===void 0?void 0:g.user;if(!e||o!=="/loading")return;var t=getCurrentStep(e);d(t)}}),[r,s,(i=g===null||g===void 0?void 0:g.user)===null||i===void 0?void 0:i.email]);function P(){var e,t,a;if(o==="/4")return{currency_eq:(a=(t=(e=g===null||g===void 0?void 0:g.user)===null||e===void 0?void 0:e.impactConnection)===null||t===void 0?void 0:t.publisher)===null||a===void 0?void 0:a.currency};if(E)return{countryCode_eq:E};return{}}return{step:o,setStep:d,context:c,namespace:getContextValueName(TAX_CONTEXT_NAMESPACE),loading:o==="/loading"}}var TaxAndCashMonolith=function(){function e(e){registerInstance(this,e);this.step1_firstName="First name";this.step1_lastName="Last name";this.step1_email="Email";this.step1_country="Country";this.step1_currency="Currency";this.step1_allowBankingCollection="I have read the {termsAndConditionsLink} and allow impact.com to collect my tax and banking information";this.step1_formStep="Step 1 of 4";this.step1_personalInformation="Personal Information";this.termsAndConditionsLabel="terms and conditions";this.step1_submitButton="Continue";this.step2_formStep="Step 2 of 4";this.step2_indirectTax="Indirect Tax";this.step2_indirectTaxDescription="Indirect Taxes (e.g. VAT, HST, GST) are transactional based taxes that are required to be levied by service providers by most tax authorities.";this.step2_indirectTaxDetails="Indirect Tax Details";this.step2_indirectTaxDetailsDescription="Not sure if you are registered for indirect tax? Contact our Support team to find out more.";this.step2_otherRegion="I am registered for Indirect Tax in a different Country / Region";this.otherRegionSubtext="IIf you represent a business based outside of the US may be registered. Not sure? Contact our Support team to find out more.";this.step2_notRegistered="I am not registered for Indirect Tax";this.notRegisteredSubtext="If you’re joining this referral program as an individual or you’re based in the US, then you’re not registered.";this.step2_selectedRegion="Country / Region of Indirect Tax";this.step2_province="Province";this.step2_indirectTaxNumber="{taxType, select, GST {GST Number} HST {HST Number} VAT {VAT Number} CT {CT Number} SST {SST Number} GENERAL {Indirect Tax Number}}";this.step2_qstNumber="QST Number";this.step2_isRegisteredQST="I am registered for QST Tax";this.step2_isRegisteredSubRegionIncomeTax="I am an individual registered for Income Tax purposes in Spain, and withholding tax will apply to any payments made to me.";this.step2_subRegion="Sub-region";this.step2_subRegionTaxNumberLabel="Income Tax Number";this.step2_submitButton="Continue";this.step2_backButton="Back";this.step2_cannotChangeInfoAlert="Changes to your personal information and indirect tax can only be made through our Support team after you complete this step. Ensure these are correct before continuing.";this.step2_indirectTaxNumberError="{taxType, select, GST {GST Number} HST {HST Number} VAT {VAT Number} CT {CT Number} SST {SST Number} GENERAL {Indirect Tax Number}} is required";this.step3_formStep="Step 3 of 4";this.step3_taxForm="Tax form";this.step3_taxFormLabel="{documentType} Tax Form";this.step3_participantType="Participant type";this.step3_businessEntity="I represent a company";this.step3_individualParticipant="I am an individual participant";this.step3_taxFormDescription="Participants based in the US and partnering with US-based brands need to submit a {documentType} form.";this.step3_taxFormDescriptionIndividualParticipant="Participants residing outside of the US, joining the referral program of a US-based company, need to submit a {documentType} form.";this.step3_taxFormDescriptionBusinessEntity="Participants residing outside of the US who represent a business entity need to submit a {documentType} form.";this.stop3NotBasedInUS="Not based in the US?";this.step3_banner="For your security, we automatically end your session when you have not interacted with the form after 20 minutes.";this.step3_checkboxLabel="Form submission";this.step3_checkboxDescription="I have completed and submitted my tax form";this.step3_docusignExpired="For your security and privacy, we automatically end your session after 20 minutes of inactivity. Please refresh and re-enter your tax information to continue.";this.step3_docusignCompleted="Your document has been completed and submitted.";this.step3_docusignError="There was a problem displaying this form. Please refresh the page. If this problem continues, contact Support.";this.step3_refreshButton="Refresh Page";this.step3_backButton="Back";this.step3_formSubmissionError="This field is required";this.step4_formStep="Step 4 of 4";this.step4_taxAndPayouts="Tax and Payouts";this.step4_taxAndPayoutsDescription="Submit your tax documents and add your banking information to receive your rewards.";this.step4_directlyToBankAccount="Directly to my bank account";this.step4_toPayPalAccount="PayPal (2% processing fee capped to {feeCap})";this.step4_paymentScheduleBalanceThreshold="Pay me when my balance reaches a threshold";this.step4_paymentScheduleFixedDay="Pay me on a fixed day of the month";this.step4_paymentDaySelectLabel="Payment Day";this.step4_paymentThresholdSelectLabel="Payment Threshold";this.step4_paymentDayFirstOfMonthLabelText="1st of the month";this.step4_paymentDayFifteenthOfMonthLabelText="15th of the month";this.step4_paymentMethod="Payment Method";this.step4_paymentSchedule="Payment Schedule";this.step4_paymentMethodSubtext="Payouts will be sent on the first day of each month from our referral program provider, impact.com.";this.step4_payPalInputLabel="PayPal Email";this.step4_bankLocationLabel="Bank Country Location";this.step4_beneficiaryAccountNameLabel="Beneficiary Account Name";this.step4_bankAccountTypeLabel="Bank Account Type";this.step4_checkingSelectItemLabel="Checking";this.step4_savingsSelectItemLabel="Savings";this.step4_bankAccountNumberLabel="Bank Account Number";this.step4_ibanLabel="IBAN";this.step4_swiftCodeLabel="SWIFT Code";this.step4_routingCodeLabel="Routing Code";this.step4_bankNameLabel="Bank Name";this.step4_classificationEntityLabel="Classification Entity";this.step4_businessSelectItemLabel="Business";this.step4_individualSelectItemLabel="Individual";this.step4_foreignSelectItemLabel="Foreign";this.step4_classificationCPFLabel="Classification CPF";this.step4_patronymicNameLabel="Patronymic Name";this.step4_voCodeLabel="VO Code";this.step4_agencyCodeLabel="Agency Code";this.step4_branchCodeLabel="Branch Code";this.step4_classificationLabel="Classification";this.step4_taxPayerIdLabel="Taxpayer ID";this.step4_bankAddressLabel="Bank Address";this.step4_bankCityLabel="Bank City";this.step4_bankStateLabel="Bank Province / State";this.step4_bankPostalCodeLabel="Bank Postal Code";this.step4_cannotChangeInfoAlert="Your payout information cannot be changed after saving. Ensure your payout method and schedule are correct before submitting.";this.dashboard_statusTextActive="Active";this.dashboard_statusTextNotActive="Invalid Tax Form";this.dashboard_statusTextNotVerified="Not Verified";this.dashboard_badgeTextSubmittedOn="Submitted on {dateSubmitted}";this.dashboard_badgeTextSubmittedOnW8="Submitted on {dateSubmitted}. Valid for three years after submission.";this.dashboard_badgeTextAwaitingReview="Awaiting review. Submitted on {dateSubmitted}.";this.dashboard_taxAlertHeaderNotActiveW9="Your W9 tax form has personal information that doesn’t match your profile";this.dashboard_taxAlertHeaderNotActiveW8="{documentType} tax form is invalid";this.dashboard_taxAlertNotActiveMessageW9="Please resubmit a new {documentType} form.";this.dashboard_taxAlertNotActiveMessageW8="Your tax form may have expired or has personal information that doesn’t match your profile. Please submit a new W8-BEN form.";this.dashboard_invalidForm="Ensure your information matches your profile and resubmit a new document.";this.dashboard_bankingInformationSectionHeader="Banking Information";this.dashboard_taxDocumentSectionHeader="Tax documents";this.dashboard_taxDocumentSectionSubHeader="{documentType} tax form";this.dashboard_noFormNeededSubtext="Tax documents are only required if you are based in the US. If your country of residence has changed, please contact Support.";this.dashboard_indirectTaxInfoSectionHeader="Indirect tax";this.dashboard_indirectTaxInfoCanada="Registered in {province}, {country}";this.dashboard_indirectTaxInfoOtherCountry="Registered in {country}";this.dashboard_indirectTaxInfoSpain="Registered in {country}, {subRegion}";this.dashboard_indirectTaxTooltipSupport="To make changes to your indirect tax information, please contact Support.";this.dashboard_indirectTaxDetails="{indirectTaxType} number: {indirectTaxNumber}";this.dashboard_newFormButton="Submit New Form";this.dashboard_editPaymentInformationButton="Edit Payout Information";this.dashboard_notRegisteredForTax="Not registered. Participants representing a company in countries that enforce indirect tax (e.g. GST, HST, VAT) must add their indirect tax information.";this.dashboard_qstNumber="QST number: {qstNumber}";this.dashboard_subRegionTaxNumber="Income tax number: {incomeTaxNumber}";this.dashboard_statusBadgeText="{badgeText, select, payoutToday {Payout Today} nextPayout {Next Payout} }";this.dashboard_thresholdPayoutText="Next payout occurs when balance is";this.dashboard_accountText="Account";this.dashboard_errorTitleText="There was an error with your payout infomation";this.dashboard_errorDescriptionText="Please ensure your payout information is correct. If this problem continues, contact Support.";this.generalErrorTitle="There was a problem submitting your information";this.generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.";this.fieldRequiredError="{fieldName} is required";this.continueButton="Continue";this.isPartnerAlertHeader="An account with this email already exists with our referral program provider, impact.com";this.isPartnerAlertDescription="If you don’t recognize this referral program provider or believe this is a mistake, please contact Support or sign up for this referral program with a different email.";h(this)}e.prototype.disconnectedCallback=function(){};e.prototype.getGeneralStepTextProps=function(e){var t=getProps(this);return __assign(__assign({},extractProps(t,e)),{generalErrorTitle:t.generalErrorTitle,generalErrorDescription:t.generalErrorDescription,fieldRequiredError:t.fieldRequiredError,submitButton:t.continueButton,isPartnerAlertHeader:t.isPartnerAlertHeader,isPartnerAlertDescription:t.isPartnerAlertDescription})};e.prototype.render=function(){var e=isDemo()?useDemoTaxAndCash(this):useTaxAndCash();console.log({dashboardProps:this.getGeneralStepTextProps("dashboard_")});switch(e.step){case"/1":return h$1("sqm-user-info-form",Object.assign({},this.getGeneralStepTextProps("step1_")));case"/2":return h$1("sqm-indirect-tax-form",Object.assign({},this.getGeneralStepTextProps("step2_")));case"/3":return h$1("sqm-docusign-form",Object.assign({},this.getGeneralStepTextProps("step3_")));case"/4":return h$1("sqm-banking-info-form",Object.assign({},this.getGeneralStepTextProps("step4_")));case"/submitted":return h$1("sqm-tax-and-cash-dashboard",Object.assign({},this.getGeneralStepTextProps("dashboard_")))}return h$1(LoadingView,null)};return e}();function useDemoTaxAndCash(e){var t=useParentState({namespace:TAX_CONTEXT_NAMESPACE,initialValue:"/1"}),a=t[0],i=t[1];return cjs({step:a,setStep:i},e.demoData||{},{arrayMerge:function(e,t){return t}})}export{TaxAndCashMonolith as sqm_tax_and_cash};
@@ -1 +1 @@
1
- import{p as e,H as t,b as r}from"./p-f6e5df75.js";import"./p-8d37b2a1.js";import"./p-caca3160.js";import"./p-94ad6231.js";const a=e=>{const t=e.cloneNode;e.cloneNode=function(e){if("TEMPLATE"===this.nodeName)return t.call(this,e);const r=t.call(this,!1),a=this.childNodes;if(e)for(let e=0;e<a.length;e++)2!==a[e].nodeType&&r.appendChild(a[e].cloneNode(!0));return r}};(()=>{a(t.prototype);const r=import.meta.url,o={};return""!==r&&(o.resourcesUrl=new URL(".",r).href),e(o)})().then((e=>r(JSON.parse('[["p-3ecce16f",[[4,"sqm-stencilbook",{"ignored":[32]}]]],["p-7cf07e42",[[1,"sqm-tax-and-cash",{"step1_firstName":[1,"step-1_first-name"],"step1_lastName":[1,"step-1_last-name"],"step1_email":[1,"step-1_email"],"step1_country":[1,"step-1_country"],"step1_currency":[1,"step-1_currency"],"step1_allowBankingCollection":[1,"step-1_allow-banking-collection"],"step1_formStep":[1,"step-1_form-step"],"step1_personalInformation":[1,"step-1_personal-information"],"termsAndConditionsLabel":[1,"terms-and-conditions-label"],"step1_submitButton":[1,"step-1_submit-button"],"step2_formStep":[1,"step-2_form-step"],"step2_indirectTax":[1,"step-2_indirect-tax"],"step2_indirectTaxDescription":[1,"step-2_indirect-tax-description"],"step2_indirectTaxDetails":[1,"step-2_indirect-tax-details"],"step2_indirectTaxDetailsDescription":[1,"step-2_indirect-tax-details-description"],"step2_otherRegion":[1,"step-2_other-region"],"otherRegionSubtext":[1,"other-region-subtext"],"step2_notRegistered":[1,"step-2_not-registered"],"notRegisteredSubtext":[1,"not-registered-subtext"],"step2_selectedRegion":[1,"step-2_selected-region"],"step2_province":[1,"step-2_province"],"step2_indirectTaxNumber":[1,"step-2_indirect-tax-number"],"step2_qstNumber":[1,"step-2_qst-number"],"step2_isRegisteredQST":[1,"step-2_is-registered-q-s-t"],"step2_isRegisteredSubRegionIncomeTax":[1,"step-2_is-registered-sub-region-income-tax"],"step2_subRegion":[1,"step-2_sub-region"],"step2_subRegionTaxNumberLabel":[1,"step-2_sub-region-tax-number-label"],"step2_submitButton":[1,"step-2_submit-button"],"step2_backButton":[1,"step-2_back-button"],"step2_cannotChangeInfoAlert":[1,"step-2_cannot-change-info-alert"],"step2_indirectTaxNumberError":[1,"step-2_indirect-tax-number-error"],"step3_formStep":[1,"step-3_form-step"],"step3_taxForm":[1,"step-3_tax-form"],"step3_taxFormLabel":[1,"step-3_tax-form-label"],"step3_participantType":[1,"step-3_participant-type"],"step3_businessEntity":[1,"step-3_business-entity"],"step3_individualParticipant":[1,"step-3_individual-participant"],"step3_taxFormDescription":[1,"step-3_tax-form-description"],"step3_taxFormDescriptionIndividualParticipant":[1,"step-3_tax-form-description-individual-participant"],"step3_taxFormDescriptionBusinessEntity":[1,"step-3_tax-form-description-business-entity"],"stop3NotBasedInUS":[1,"stop-3-not-based-in-u-s"],"step3_banner":[1,"step-3_banner"],"step3_checkboxLabel":[1,"step-3_checkbox-label"],"step3_checkboxDescription":[1,"step-3_checkbox-description"],"step3_docusignExpired":[1,"step-3_docusign-expired"],"step3_docusignCompleted":[1,"step-3_docusign-completed"],"step3_docusignError":[1,"step-3_docusign-error"],"step3_refreshButton":[1,"step-3_refresh-button"],"step3_backButton":[1,"step-3_back-button"],"step3_formSubmissionError":[1,"step-3_form-submission-error"],"step4_formStep":[1,"step-4_form-step"],"step4_taxAndPayouts":[1,"step-4_tax-and-payouts"],"step4_taxAndPayoutsDescription":[1,"step-4_tax-and-payouts-description"],"step4_directlyToBankAccount":[1,"step-4_directly-to-bank-account"],"step4_toPayPalAccount":[1,"step-4_to-pay-pal-account"],"step4_paymentScheduleBalanceThreshold":[1,"step-4_payment-schedule-balance-threshold"],"step4_paymentScheduleFixedDay":[1,"step-4_payment-schedule-fixed-day"],"step4_paymentDaySelectLabel":[1,"step-4_payment-day-select-label"],"step4_paymentThresholdSelectLabel":[1,"step-4_payment-threshold-select-label"],"step4_paymentDayFirstOfMonthLabelText":[1,"step-4_payment-day-first-of-month-label-text"],"step4_paymentDayFifteenthOfMonthLabelText":[1,"step-4_payment-day-fifteenth-of-month-label-text"],"step4_paymentMethod":[1,"step-4_payment-method"],"step4_paymentSchedule":[1,"step-4_payment-schedule"],"step4_paymentMethodSubtext":[1,"step-4_payment-method-subtext"],"step4_payPalInputLabel":[1,"step-4_pay-pal-input-label"],"step4_bankLocationLabel":[1,"step-4_bank-location-label"],"step4_beneficiaryAccountNameLabel":[1,"step-4_beneficiary-account-name-label"],"step4_bankAccountTypeLabel":[1,"step-4_bank-account-type-label"],"step4_checkingSelectItemLabel":[1,"step-4_checking-select-item-label"],"step4_savingsSelectItemLabel":[1,"step-4_savings-select-item-label"],"step4_bankAccountNumberLabel":[1,"step-4_bank-account-number-label"],"step4_ibanLabel":[1,"step-4_iban-label"],"step4_swiftCodeLabel":[1,"step-4_swift-code-label"],"step4_routingCodeLabel":[1,"step-4_routing-code-label"],"step4_bankNameLabel":[1,"step-4_bank-name-label"],"step4_classificationEntityLabel":[1,"step-4_classification-entity-label"],"step4_businessSelectItemLabel":[1,"step-4_business-select-item-label"],"step4_individualSelectItemLabel":[1,"step-4_individual-select-item-label"],"step4_foreignSelectItemLabel":[1,"step-4_foreign-select-item-label"],"step4_classificationCPFLabel":[1,"step-4_classification-c-p-f-label"],"step4_patronymicNameLabel":[1,"step-4_patronymic-name-label"],"step4_voCodeLabel":[1,"step-4_vo-code-label"],"step4_agencyCodeLabel":[1,"step-4_agency-code-label"],"step4_branchCodeLabel":[1,"step-4_branch-code-label"],"step4_classificationLabel":[1,"step-4_classification-label"],"step4_taxPayerIdLabel":[1,"step-4_tax-payer-id-label"],"step4_bankAddressLabel":[1,"step-4_bank-address-label"],"step4_bankCityLabel":[1,"step-4_bank-city-label"],"step4_bankStateLabel":[1,"step-4_bank-state-label"],"step4_bankPostalCodeLabel":[1,"step-4_bank-postal-code-label"],"step4_cannotChangeInfoAlert":[1,"step-4_cannot-change-info-alert"],"dashboard_statusTextActive":[1,"dashboard_status-text-active"],"dashboard_statusTextNotActive":[1,"dashboard_status-text-not-active"],"dashboard_statusTextNotVerified":[1,"dashboard_status-text-not-verified"],"dashboard_badgeTextSubmittedOn":[1,"dashboard_badge-text-submitted-on"],"dashboard_badgeTextSubmittedOnW8":[1,"dashboard_badge-text-submitted-on-w-8"],"dashboard_badgeTextAwaitingReview":[1,"dashboard_badge-text-awaiting-review"],"dashboard_taxAlertHeaderNotActiveW9":[1,"dashboard_tax-alert-header-not-active-w-9"],"dashboard_taxAlertHeaderNotActiveW8":[1,"dashboard_tax-alert-header-not-active-w-8"],"dashboard_taxAlertNotActiveMessageW9":[1,"dashboard_tax-alert-not-active-message-w-9"],"dashboard_taxAlertNotActiveMessageW8":[1,"dashboard_tax-alert-not-active-message-w-8"],"dashboard_invalidForm":[1,"dashboard_invalid-form"],"dashboard_bankingInformationSectionHeader":[1,"dashboard_banking-information-section-header"],"dashboard_taxDocumentSectionHeader":[1,"dashboard_tax-document-section-header"],"dashboard_taxDocumentSectionSubHeader":[1,"dashboard_tax-document-section-sub-header"],"dashboard_noFormNeededSubtext":[1,"dashboard_no-form-needed-subtext"],"dashboard_indirectTaxInfoSectionHeader":[1,"dashboard_indirect-tax-info-section-header"],"dashboard_indirectTaxInfoCanada":[1,"dashboard_indirect-tax-info-canada"],"dashboard_indirectTaxInfoOtherCountry":[1,"dashboard_indirect-tax-info-other-country"],"dashboard_indirectTaxInfoSpain":[1,"dashboard_indirect-tax-info-spain"],"dashboard_indirectTaxTooltipSupport":[1,"dashboard_indirect-tax-tooltip-support"],"dashboard_indirectTaxDetails":[1,"dashboard_indirect-tax-details"],"dashboard_newFormButton":[1,"dashboard_new-form-button"],"dashboard_editPaymentInformationButton":[1,"dashboard_edit-payment-information-button"],"dashboard_notRegisteredForTax":[1,"dashboard_not-registered-for-tax"],"dashboard_qstNumber":[1,"dashboard_qst-number"],"dashboard_subRegionTaxNumber":[1,"dashboard_sub-region-tax-number"],"dashboard_statusBadgeText":[1,"dashboard_status-badge-text"],"dashboard_thresholdPayoutText":[1,"dashboard_threshold-payout-text"],"dashboard_accountText":[1,"dashboard_account-text"],"dashboard_errorTitleText":[1,"dashboard_error-title-text"],"dashboard_errorDescriptionText":[1,"dashboard_error-description-text"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"fieldRequiredError":[1,"field-required-error"],"continueButton":[1,"continue-button"],"isPartnerAlertHeader":[1,"is-partner-alert-header"],"isPartnerAlertDescription":[1,"is-partner-alert-description"],"demoData":[16]}]]],["p-73e3e768",[[1,"sqm-portal-registration-form",{"nextPage":[1,"next-page"],"redirectPath":[1,"redirect-path"],"emailLabel":[1,"email-label"],"passwordLabel":[1,"password-label"],"submitLabel":[1,"submit-label"],"loginLabel":[1,"login-label"],"confirmPasswordLabel":[1,"confirm-password-label"],"confirmPassword":[4,"confirm-password"],"disablePasswordValidation":[4,"disable-password-validation"],"hideInputs":[4,"hide-inputs"],"pageLabel":[1,"page-label"],"loginPath":[1,"login-path"],"requiredFieldErrorMessage":[1,"required-field-error-message"],"networkErrorMessage":[1,"network-error-message"],"passwordMismatchErrorMessage":[1,"password-mismatch-error-message"],"invalidEmailErrorMessage":[1,"invalid-email-error-message"],"formDisabledErrorMessage":[1,"form-disabled-error-message"],"meetsRequirementsText":[1,"meets-requirements-text"],"doesNotMeetRequirementsText":[1,"does-not-meet-requirements-text"],"minErrorText":[1,"min-error-text"],"uppercaseErrorText":[1,"uppercase-error-text"],"lowercaseErrorText":[1,"lowercase-error-text"],"hasErrorText":[1,"has-error-text"],"formKey":[1,"form-key"],"demoData":[16],"ignored":[32]}]]],["p-d812f2f1",[[1,"sqm-portal-reset-password",{"nextPage":[1,"next-page"],"failedPage":[1,"failed-page"],"confirmPassword":[4,"confirm-password"],"resetPasswordHeader":[1,"reset-password-header"],"passwordResetHeader":[1,"password-reset-header"],"resetPasswordButtonText":[1,"reset-password-button-text"],"continueButtonText":[1,"continue-button-text"],"confirmPasswordFieldLabel":[1,"confirm-password-field-label"],"passwordFieldLabel":[1,"password-field-label"],"meetsRequirementsText":[1,"meets-requirements-text"],"doesNotMeetRequirementsText":[1,"does-not-meet-requirements-text"],"minErrorText":[1,"min-error-text"],"uppercaseErrorText":[1,"uppercase-error-text"],"lowercaseErrorText":[1,"lowercase-error-text"],"hasErrorText":[1,"has-error-text"],"passwordMismatchText":[1,"password-mismatch-text"],"codeInvalidText":[1,"code-invalid-text"],"resetSuccessText":[1,"reset-success-text"],"networkErrorMessage":[1,"network-error-message"],"demoData":[16],"ignored":[32]}]]],["p-61f546e6",[[1,"sqm-instant-access-registration",{"emailLabel":[1,"email-label"],"firstNameLabel":[1,"first-name-label"],"lastNameLabel":[1,"last-name-label"],"registerLabel":[1,"register-label"],"includeName":[4,"include-name"],"hideBorder":[4,"hide-border"],"requiredFieldErrorMessage":[1,"required-field-error-message"],"invalidEmailErrorMessage":[1,"invalid-email-error-message"],"networkErrorMessage":[1,"network-error-message"],"paddingTop":[1,"padding-top"],"paddingRight":[1,"padding-right"],"paddingBottom":[1,"padding-bottom"],"paddingLeft":[1,"padding-left"],"backgroundColor":[1,"background-color"],"includeCookies":[4,"include-cookies"],"demoData":[16],"ignored":[32]}]]],["p-107c3f3e",[[1,"sqm-portal-email-verification",{"redirectPath":[1,"redirect-path"],"emailVerificationHeader":[1,"email-verification-header"],"resendEmailButtonText":[1,"resend-email-button-text"],"verifyMessage":[1,"verify-message"],"verificationStatusMessage":[1,"verification-status-message"],"verificationLoadingMessage":[1,"verification-loading-message"],"verificationResentMessage":[1,"verification-resent-message"],"networkErrorMessage":[1,"network-error-message"],"demoData":[16],"ignored":[32]}]]],["p-5e8b7e98",[[1,"sqm-portal-forgot-password",{"redirectPath":[1,"redirect-path"],"emailLabel":[1,"email-label"],"submitLabel":[1,"submit-label"],"loginPath":[1,"login-path"],"headerText":[1,"header-text"],"loginText":[1,"login-text"],"networkErrorMessage":[1,"network-error-message"],"successAlertText":[1,"success-alert-text"],"demoData":[16],"ignored":[32]}]]],["p-2cb996af",[[1,"sqm-portal-profile",{"firstnametext":[1],"lastnametext":[1],"emailtext":[1],"countrytext":[1],"editProfileHeader":[1,"edit-profile-header"],"editProfileSubHeader":[1,"edit-profile-sub-header"],"submitChangeButtonText":[1,"submit-change-button-text"],"hideCountry":[4,"hide-country"],"networkRequestMessage":[1,"network-request-message"],"fieldEmptyText":[1,"field-empty-text"],"formErrorText":[1,"form-error-text"],"submissionSuccessText":[1,"submission-success-text"],"demoData":[16],"ignored":[32]}]]],["p-66c21bac",[[1,"sqm-portal-verify-email",{"nextPage":[1,"next-page"],"failedPage":[1,"failed-page"],"verifyEmailText":[1,"verify-email-text"],"verifySuccessText":[1,"verify-success-text"],"verifyInvalidText":[1,"verify-invalid-text"],"continueText":[1,"continue-text"],"networkErrorMessage":[1,"network-error-message"],"demoData":[16],"ignored":[32]}]]],["p-d1cde664",[[1,"sqm-referred-registration",{"emailLabel":[1,"email-label"],"firstNameLabel":[1,"first-name-label"],"lastNameLabel":[1,"last-name-label"],"registerLabel":[1,"register-label"],"includeName":[4,"include-name"],"hideBorder":[4,"hide-border"],"requiredFieldErrorMessage":[1,"required-field-error-message"],"invalidEmailErrorMessage":[1,"invalid-email-error-message"],"networkErrorMessage":[1,"network-error-message"],"fraudErrorMessage":[1,"fraud-error-message"],"fraudErrorMessageTitle":[1,"fraud-error-message-title"],"paddingTop":[1,"padding-top"],"paddingRight":[1,"padding-right"],"paddingBottom":[1,"padding-bottom"],"paddingLeft":[1,"padding-left"],"backgroundColor":[1,"background-color"],"includeCookies":[4,"include-cookies"],"demoData":[16],"ignored":[32]}]]],["p-88380a45",[[1,"sqm-rewards-table-customer-note-column",{"columnTitle":[1,"column-title"],"renderCell":[64],"renderLabel":[64]}]]],["p-1c9fe397",[[4,"raisins-plop-target",{"renderCell":[64],"renderLabel":[64]}]]],["p-02b7a1a3",[[1,"sqm-asset-card",{"titleText":[1,"title-text"],"imgUrl":[1,"img-url"],"demoData":[16],"ignored":[32]}]]],["p-42949824",[[1,"sqm-close-button",{"color":[1]}]]],["p-f0c0bec9",[[4,"sqm-context-router",{"contextName":[1,"context-name"],"ignored":[32]}]]],["p-589f63ce",[[1,"sqm-document-type-form",{"formStep":[1,"form-step"],"formLabel":[1,"form-label"],"taxForm":[1,"tax-form"],"w9Label":[1,"w-9-label"],"w9Description":[1,"w-9-description"],"w8Label":[1,"w-8-label"],"w8Description":[1,"w-8-description"],"w8ELabel":[1,"w-8-e-label"],"w8EDescription":[1,"w-8-e-description"],"submitButton":[1,"submit-button"],"backButton":[1,"back-button"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"demoData":[16]}]]],["p-df8f553b",[[1,"sqm-docusign-embed",{"url":[1]}]]],["p-fa11bb8f",[[4,"sqm-graphql-client-provider",{"domain":[1],"ignored":[32]}]]],["p-ee74765c",[[1,"sqm-header-logo",{"imageUrl":[1,"image-url"],"nextPage":[1,"next-page"],"height":[2]}]]],["p-965b6a7d",[[1,"sqm-leaderboard-rank",{"rankType":[1,"rank-type"],"rankText":[1,"rank-text"],"leaderboardType":[1,"leaderboard-type"],"unrankedText":[1,"unranked-text"],"interval":[1],"programId":[1,"program-id"],"demoData":[16]}]]],["p-021207af",[[1,"sqm-logout-current-user",{"userIdentificationText":[1,"user-identification-text"],"switchUserText":[1,"switch-user-text"],"emailErrorText":[1,"email-error-text"],"demoData":[16]}]]],["p-eba772a8",[[1,"sqm-navigation-sidebar",{"ignored":[32]}]]],["p-c3160411",[[1,"sqm-navigation-sidebar-item",{"path":[1],"icon":[1],"label":[1],"demoData":[16]}]]],["p-0b1330d9",[[4,"sqm-popup-container",{"poweredBy":[4,"powered-by"],"closeButton":[4,"close-button"],"closeButtonText":[1,"close-button-text"],"poweredByText":[1,"powered-by-text"],"embedPadding":[1,"embed-padding"],"popupPadding":[1,"popup-padding"]}]]],["p-12929f2d",[[1,"sqm-portal-logout",{"nextPage":[1,"next-page"],"ignored":[32]}]]],["p-2e5c408f",[[1,"sqm-portal-protected-route",{"redirectTo":[1,"redirect-to"],"requireEmailVerification":[4,"require-email-verification"],"redirectToUnverified":[1,"redirect-to-unverified"],"ignored":[32]}]]],["p-1a69f973",[[1,"sqm-route",{"path":[1],"ignored":[32]}]]],["p-c7d2b2e3",[[4,"sqm-tab",{"header":[1]}]]],["p-c59d4f22",[[1,"sqm-tabs",{"placement":[1]}]]],["p-e37a287c",[[0,"sqm-text-span",{"text":[1],"type":[1],"ignored":[32]}]]],["p-11d95a57",[[1,"sqm-rewards-table-customer-note-cell",{"note":[1],"locale":[1],"ignored":[32]}]]],["p-8502e27c",[[0,"sqm-password-field",{"fieldLabel":[1,"field-label"],"disableValidation":[4,"disable-validation"],"meetsRequirementsText":[1,"meets-requirements-text"],"doesNotMeetRequirementsText":[1,"does-not-meet-requirements-text"],"minErrorText":[1,"min-error-text"],"uppercaseErrorText":[1,"uppercase-error-text"],"lowercaseErrorText":[1,"lowercase-error-text"],"hasErrorText":[1,"has-error-text"],"demoData":[16],"ignored":[32]}]]],["p-23669a93",[[1,"sqm-form-message",{"type":[1],"icon":[1],"ignored":[32]}]]],["p-ad342c61",[[1,"sqm-empty",{"emptyStateImage":[1,"empty-state-image"],"emptyStateHeader":[1,"empty-state-header"],"emptyStateText":[1,"empty-state-text"]}],[1,"sqm-image",{"imageUrl":[1,"image-url"],"alignment":[1],"backgroundColor":[1,"background-color"],"minHeight":[1,"min-height"]}],[1,"sqm-portal-container",{"direction":[1],"padding":[1],"gap":[1],"minWidth":[1,"min-width"],"display":[1],"justifyContent":[1,"justify-content"],"maxWidth":[1,"max-width"],"center":[4],"backgroundColor":[1,"background-color"],"ignored":[32]}],[4,"sqm-text",{"ignored":[32]}],[1,"sqm-titled-section",{"label":[1],"textAlign":[1,"text-align"],"labelMargin":[1,"label-margin"],"padding":[1]}]]],["p-0bc8896e",[[1,"sqm-leaderboard",{"programId":[1,"program-id"],"usersheading":[1],"statsheading":[1],"rankheading":[1],"showRank":[4,"show-rank"],"hideViewer":[4,"hide-viewer"],"rankType":[1,"rank-type"],"leaderboardType":[1,"leaderboard-type"],"anonymousUser":[1,"anonymous-user"],"interval":[1],"maxRows":[2,"max-rows"],"demoData":[16],"ignored":[32]}],[1,"sqm-reward-exchange-list",{"notAvailableError":[1,"not-available-error"],"chooseRewardTitle":[1,"choose-reward-title"],"chooseAmountTitle":[1,"choose-amount-title"],"confirmationTitle":[1,"confirmation-title"],"rewardTitle":[1,"reward-title"],"cancelText":[1,"cancel-text"],"backText":[1,"back-text"],"continueText":[1,"continue-text"],"continueToConfirmationText":[1,"continue-to-confirmation-text"],"redeemText":[1,"redeem-text"],"redeemTitle":[1,"redeem-title"],"redemptionSuccessText":[1,"redemption-success-text"],"sourceAmountMessage":[1,"source-amount-message"],"tooltipText":[1,"tooltip-text"],"doneText":[1,"done-text"],"selectText":[1,"select-text"],"queryError":[1,"query-error"],"redemptionError":[1,"redemption-error"],"notEnoughError":[1,"not-enough-error"],"rewardRedeemedText":[1,"reward-redeemed-text"],"promoCode":[1,"promo-code"],"skeletonCardNum":[2,"skeleton-card-num"],"rewardNameTitle":[1,"reward-name-title"],"rewardAmountTitle":[1,"reward-amount-title"],"costTitle":[1,"cost-title"],"demoData":[16],"ignored":[32]}],[1,"sqm-portal-change-password",{"modalChangePasswordHeader":[1,"modal-change-password-header"],"cancelText":[1,"cancel-text"],"changePasswordButtonText":[1,"change-password-button-text"],"passwordFieldLabel":[1,"password-field-label"],"confirmPasswordFieldLabel":[1,"confirm-password-field-label"],"successMessage":[1,"success-message"],"portalChangePasswordHeader":[1,"portal-change-password-header"],"portalChangePasswordButtonText":[1,"portal-change-password-button-text"],"meetsRequirementsText":[1,"meets-requirements-text"],"doesNotMeetRequirementsText":[1,"does-not-meet-requirements-text"],"minErrorText":[1,"min-error-text"],"uppercaseErrorText":[1,"uppercase-error-text"],"lowercaseErrorText":[1,"lowercase-error-text"],"nonMatchingPasswordErrorText":[1,"non-matching-password-error-text"],"invalidSessionErrorText":[1,"invalid-session-error-text"],"hasErrorText":[1,"has-error-text"],"demoData":[16],"ignored":[32]}],[1,"sqm-portal-register",{"nextPage":[1,"next-page"],"redirectPath":[1,"redirect-path"],"emailLabel":[1,"email-label"],"passwordLabel":[1,"password-label"],"submitLabel":[1,"submit-label"],"loginLabel":[1,"login-label"],"confirmPasswordLabel":[1,"confirm-password-label"],"confirmPassword":[4,"confirm-password"],"disablePasswordValidation":[4,"disable-password-validation"],"hideInputs":[4,"hide-inputs"],"pageLabel":[1,"page-label"],"loginPath":[1,"login-path"],"requiredFieldErrorMessage":[1,"required-field-error-message"],"networkErrorMessage":[1,"network-error-message"],"passwordMismatchErrorMessage":[1,"password-mismatch-error-message"],"invalidEmailErrorMessage":[1,"invalid-email-error-message"],"meetsRequirementsText":[1,"meets-requirements-text"],"doesNotMeetRequirementsText":[1,"does-not-meet-requirements-text"],"minErrorText":[1,"min-error-text"],"uppercaseErrorText":[1,"uppercase-error-text"],"lowercaseErrorText":[1,"lowercase-error-text"],"hasErrorText":[1,"has-error-text"],"demoData":[16],"ignored":[32]}],[1,"sqm-coupon-code",{"programId":[1,"program-id"],"tooltiptext":[1,"tooltip-text"],"tooltiplifespan":[2,"tooltip-lifespan"],"textAlign":[1,"text-align"],"copyButtonLabel":[1,"copy-button-label"],"buttonStyle":[1,"copy-button-style"],"couponCodeLabel":[1,"coupon-code-label"],"cancelledErrorText":[1,"cancelled-error-text"],"redeemedErrorText":[1,"redeemed-error-text"],"expiredErrorText":[1,"expired-error-text"],"fullfillmentErrorText":[1,"fullfilled-error-text"],"pendingErrorText":[1,"pending-error-text"],"genericErrorText":[1,"error-text"],"couponCodePlaceholder":[1,"coupon-code-placeholder"],"demoData":[16]}],[1,"sqm-edit-profile",{"editprofileheader":[1],"editprofiletext":[1],"canceltext":[1],"updatetext":[1],"firstnametext":[1],"lastnametext":[1],"currentregiontext":[1],"showregion":[4],"networkErrorMessage":[1,"network-error-message"],"fieldEmptyText":[1,"field-empty-text"],"formErrorText":[1,"form-error-text"],"demoData":[16],"ignored":[32]}],[1,"sqm-portal-login",{"nextPage":[1,"next-page"],"emailLabel":[1,"email-label"],"passwordLabel":[1,"password-label"],"submitLabel":[1,"submit-label"],"forgotPasswordPath":[1,"forgot-password-path"],"forgotPasswordLabel":[1,"forgot-password-label"],"registerLabel":[1,"register-label"],"registerPath":[1,"register-path"],"pageLabel":[1,"page-label"],"networkErrorMessage":[1,"network-error-message"],"demoData":[16],"ignored":[32]}],[1,"sqm-big-stat",{"statType":[1,"stat-type"],"flexReverse":[4,"flex-reverse"],"alignment":[1],"programId":[1,"program-id"],"demoData":[16],"ignored":[32]}],[1,"sqm-brand",{"brandColor":[1,"brand-color"],"brandFont":[1,"brand-font"]}],[1,"sqm-card-feed",{"width":[2],"gap":[2],"ignored":[32]}],[0,"sqm-checkbox-field",{"checkboxName":[1,"checkbox-name"],"checkboxLabel":[1,"checkbox-label"],"checkboxLabelLink":[1,"checkbox-label-link"],"checkboxLabelLinkText":[1,"checkbox-label-link-text"],"errorMessage":[1,"error-message"],"checkboxOptional":[4,"checkbox-optional"],"demoData":[16],"ignored":[32]}],[1,"sqm-divided-layout",{"direction":[1],"contentAreaWidth":[1,"content-area-width"],"dividerStyle":[1,"divider-style"]}],[4,"sqm-dropdown-field",{"dropdownName":[1,"dropdown-name"],"dropdownLabel":[1,"dropdown-label"],"errorMessage":[1,"error-message"],"dropdownOptional":[4,"dropdown-optional"],"demoData":[16],"ignored":[32]}],[1,"sqm-hero",{"columns":[2],"minHeight":[2,"min-height"],"background":[1],"paddingSize":[1,"padding-size"],"secondaryBackground":[1,"secondary-background"],"wrapDirection":[1,"wrap-direction"]}],[1,"sqm-hero-image",{"imageUrl":[1,"image-url"],"overlayColor":[1,"overlay-color"],"overlayOpacity":[1,"overlay-opacity"],"textColor":[1,"text-color"],"backgroundColor":[1,"background-color"],"layout":[1],"imagePercentage":[2,"image-percentage"],"imagePos":[1,"image-pos"],"imageMobilePos":[1,"image-mobile-pos"],"header":[1],"description":[1],"buttonText":[1,"button-text"],"buttonLink":[1,"button-link"],"buttonNewTab":[4,"button-new-tab"],"paddingText":[1,"padding-text"],"paddingImage":[1,"padding-image"]}],[0,"sqm-hook-story-container",{"hookStory":[16],"ignored":[32]}],[0,"sqm-input-field",{"fieldName":[1,"field-name"],"fieldLabel":[1,"field-label"],"fieldType":[1,"field-type"],"errorMessage":[1,"error-message"],"fieldOptional":[4,"field-optional"],"demoData":[16],"ignored":[32]}],[1,"sqm-link-button",{"link":[1],"openInNewTab":[4,"open-in-new-tab"],"buttonText":[1,"button-text"]}],[0,"sqm-name-fields",{"firstNameLabel":[1,"first-name-label"],"lastNameLabel":[1,"last-name-label"],"demoData":[16],"ignored":[32]}],[1,"sqm-navigation-menu",{"includeDropdown":[4,"include-dropdown"],"menuLabel":[1,"menu-label"],"demoData":[16],"ignored":[32]}],[1,"sqm-portal-footer",{"hideSupportText":[4,"hide-support-text"],"supportEmail":[1,"support-email"],"supportText":[1,"support-text"],"termsLink":[1,"terms-link"],"termsText":[1,"terms-text"],"faqLink":[1,"faq-link"],"faqText":[1,"faq-text"],"hidePoweredBy":[4,"hide-powered-by"],"poweredByLink":[1,"powered-by-link"],"paddingTop":[1,"padding-top"],"paddingRight":[1,"padding-right"],"paddingBottom":[1,"padding-bottom"],"paddingLeft":[1,"padding-left"],"ignored":[32]}],[1,"sqm-portal-frame",{"notFullScreen":[4,"not-full-screen"],"demoData":[16],"ignored":[32]}],[1,"sqm-program-explainer",{"header":[1],"textColor":[1,"text-color"],"backgroundColor":[1,"background-color"],"ignored":[32]}],[1,"sqm-program-explainer-step",{"header":[1],"description":[1],"textColor":[1,"text-color"],"backgroundColor":[1,"background-color"],"imageUrl":[1,"image-url"],"icon":[1]}],[4,"sqm-program-menu",{"ignored":[32]}],[1,"sqm-referral-card",{"verticalAlignment":[1,"vertical-alignment"],"hideBorder":[4,"hide-border"],"paddingTop":[1,"padding-top"],"paddingRight":[1,"padding-right"],"paddingBottom":[1,"padding-bottom"],"paddingLeft":[1,"padding-left"],"backgroundColor":[1,"background-color"],"limitWidth":[4,"limit-width"],"ignored":[32]}],[0,"sqm-referral-iframe",{"iframeSrc":[1,"iframe-src"],"iframeHeight":[1,"iframe-height"],"iframeWidth":[1,"iframe-width"],"demoData":[16],"ignored":[32]}],[4,"sqm-router",{"ignored":[32]}],[1,"sqm-scroll",{"buttonType":[1,"button-type"],"buttonText":[1,"button-text"],"scrollTagName":[1,"scroll-tag-name"],"scrollId":[1,"scroll-id"],"scrollAnimation":[1,"scroll-animation"],"size":[1],"outline":[4],"pill":[4],"circle":[4],"iconSlot":[1,"icon-slot"],"iconName":[1,"icon-name"],"mobile":[4],"ignored":[32]}],[1,"sqm-share-button",{"medium":[1],"programId":[1,"program-id"],"borderradius":[2],"backgroundcolor":[1],"textcolor":[1],"pill":[4],"disabled":[4],"type":[1],"size":[1],"iconslot":[1],"icon":[1],"hideicon":[4],"hidetext":[4],"sharetitle":[1],"sharetext":[1],"undefinedLinkText":[1,"undefined-link-text"],"unsupportedPlatformText":[1,"unsupported-platform-text"],"demoData":[16]}],[1,"sqm-share-code",{"programId":[1,"program-id"],"tooltiptext":[1,"tooltip-text"],"tooltiplifespan":[2,"tooltip-lifespan"],"textAlign":[1,"text-align"],"copyButtonLabel":[1,"copy-button-label"],"buttonStyle":[1,"copy-button-style"],"demoData":[16]}],[1,"sqm-share-link",{"programId":[1,"program-id"],"tooltiptext":[1,"tooltip-text"],"tooltiplifespan":[2,"tooltip-lifespan"],"textAlign":[1,"text-align"],"copyButtonLabel":[1,"copy-button-label"],"buttonStyle":[1,"copy-button-style"],"demoData":[16]}],[1,"sqm-stat-container",{"space":[1],"display":[1],"ignored":[32]}],[1,"sqm-task-card",{"rewardAmount":[1,"reward-amount"],"rewardUnit":[1,"reward-unit"],"cardTitle":[1,"card-title"],"description":[1],"repeatable":[4],"finite":[2],"showProgressBar":[4,"show-progress-bar"],"goal":[2],"steps":[4],"progressBarUnit":[1,"progress-bar-unit"],"expiryMessage":[1,"expiry-message"],"rewardDuration":[1,"reward-duration"],"startsOnMessage":[1,"starts-on-message"],"displayDuration":[1,"display-duration"],"endedMessage":[1,"ended-message"],"completedText":[1,"completed-text"],"buttonText":[1,"button-text"],"buttonLink":[1,"button-link"],"openNewTab":[4,"open-new-tab"],"statType":[1,"stat-type"],"eventKey":[1,"event-key"],"programId":[1,"program-id"],"hideButton":[4,"hide-button"],"demoData":[16],"ignored":[32]}],[1,"sqm-timeline",{"icon":[1],"ignored":[32]}],[1,"sqm-timeline-entry",{"reward":[1],"unit":[1],"desc":[1],"icon":[1],"ignored":[32],"iconState":[32],"setIcon":[64]}],[1,"sqm-user-name",{"fallback":[1],"loadingText":[1,"loading-text"],"demoData":[16],"ignored":[32]}],[1,"sqm-table-cell",{"colspan":[2],"padding":[1]}],[1,"sqm-table-row",{"border":[1]}]]],["p-44e9c6a0",[[1,"sqm-rewards-table",{"programId":[1,"program-id"],"perPage":[2,"per-page"],"hideLabels":[4,"hide-labels"],"prevLabel":[1,"prev-label"],"moreLabel":[1,"more-label"],"hiddenColumns":[1,"hidden-columns"],"smBreakpoint":[2,"sm-breakpoint"],"mdBreakpoint":[2,"md-breakpoint"],"demoData":[16]}],[1,"sqm-rewards-table-date-column",{"columnTitle":[1,"column-title"],"dateShown":[1,"date-shown"],"renderCell":[64],"renderLabel":[64]}],[1,"sqm-rewards-table-reward-column",{"columnTitle":[1,"column-title"],"redeemedText":[1,"redeemed-text"],"availableText":[1,"available-text"],"copyText":[1,"copy-text"],"renderCell":[64],"renderLabel":[64]}],[1,"sqm-rewards-table-source-column",{"columnTitle":[1,"column-title"],"anonymousUser":[1,"anonymous-user"],"deletedUser":[1,"deleted-user"],"rewardExchangeText":[1,"reward-exchange-text"],"referralText":[1,"referral-text"],"rewardSourceText":[1,"reward-source-text"],"renderCell":[64],"renderLabel":[64]}],[1,"sqm-rewards-table-status-column",{"columnTitle":[1,"column-title"],"statusText":[1,"status-text"],"expiryText":[1,"expiry-text"],"pendingUsTax":[1,"pending-us-tax"],"pendingScheduled":[1,"pending-scheduled"],"pendingUnhandled":[1,"pending-unhandled"],"pendingReviewText":[1,"pending-review-text"],"deniedText":[1,"denied-text"],"pendingTaxReview":[1,"pending-tax-review"],"pendingNewTaxForm":[1,"pending-new-tax-form"],"pendingTaxSubmission":[1,"pending-tax-submission"],"pendingPartnerCreation":[1,"pending-partner-creation"],"payoutFailed":[1,"payout-failed"],"payoutSent":[1,"payout-sent"],"renderCell":[64],"renderLabel":[64]}],[1,"sqm-rewards-table-date-cell",{"date":[2],"locale":[1],"ignored":[32]}],[1,"sqm-rewards-table-reward-cell",{"reward":[16],"redeemedText":[1,"redeemed-text"],"availableText":[1,"available-text"],"copyText":[1,"copy-text"],"locale":[1]}],[1,"sqm-rewards-table-source-cell",{"reward":[16],"deletedUserText":[1,"deleted-user-text"],"anonymousUserText":[1,"anonymous-user-text"],"rewardExchangeText":[1,"reward-exchange-text"],"referralText":[1,"referral-text"],"rewardSourceText":[1,"reward-source-text"],"locale":[1]}],[1,"sqm-rewards-table-status-cell",{"statusText":[1,"status-text"],"reward":[16],"taxConnection":[16],"expiryText":[1,"expiry-text"],"locale":[1],"pendingUsTax":[1,"pending-us-tax"],"pendingTaxReview":[1,"pending-tax-review"],"pendingNewTaxForm":[1,"pending-new-tax-form"],"pendingTaxSubmission":[1,"pending-tax-submission"],"pendingPartnerCreation":[1,"pending-partner-creation"],"pendingScheduled":[1,"pending-scheduled"],"pendingUnhandled":[1,"pending-unhandled"],"pendingReviewText":[1,"pending-review-text"],"deniedText":[1,"denied-text"],"payoutFailed":[1,"payout-failed"],"payoutSent":[1,"payout-sent"]}]]],["p-5286bddf",[[1,"sqm-referral-table-column",{"columnTitle":[1,"column-title"],"renderCell":[64],"renderLabel":[64]}],[1,"sqm-referral-table",{"programId":[1,"program-id"],"perPage":[2,"per-page"],"hideLabels":[4,"hide-labels"],"prevLabel":[1,"prev-label"],"moreLabel":[1,"more-label"],"showReferrer":[4,"show-referrer"],"hiddenColumns":[1,"hidden-columns"],"smBreakpoint":[2,"sm-breakpoint"],"mdBreakpoint":[2,"md-breakpoint"],"demoData":[16]}],[1,"sqm-referral-table-date-column",{"columnTitle":[1,"column-title"],"dateShown":[1,"date-shown"],"renderCell":[64],"renderLabel":[64],"renderReferrerCell":[64]}],[1,"sqm-referral-table-rewards-column",{"columnTitle":[1,"column-title"],"statusText":[1,"status-text"],"statusLongText":[1,"status-long-text"],"fuelTankText":[1,"fuel-tank-text"],"rewardReceivedText":[1,"reward-received-text"],"expiringText":[1,"expiring-text"],"pendingForText":[1,"pending-for-text"],"deniedHelpText":[1,"denied-help-text"],"hideDetails":[4,"hide-details"],"renderCell":[64],"renderLabel":[64],"renderReferrerCell":[64]}],[1,"sqm-referral-table-status-column",{"columnTitle":[1,"column-title"],"convertedStatusText":[1,"converted-status-text"],"inProgressStatusText":[1,"in-progress-status-text"],"pendingReviewStatusText":[1,"pending-review-status-text"],"deniedStatusText":[1,"denied-status-text"],"pendingReviewStatusSubText":[1,"pending-review-status-sub-text"],"deniedStatusSubText":[1,"denied-status-sub-text"],"renderCell":[64],"renderLabel":[64],"renderReferrerCell":[64]}],[1,"sqm-referral-table-user-column",{"columnTitle":[1,"column-title"],"anonymousUser":[1,"anonymous-user"],"deletedUser":[1,"deleted-user"],"renderCell":[64],"renderLabel":[64],"renderReferrerCell":[64]}],[1,"sqm-referral-table-cell",{"innerTemplate":[1,"inner-template"],"ignored":[32]}],[1,"sqm-referral-table-date-cell",{"date":[2],"locale":[1],"ignored":[32]}],[1,"sqm-referral-table-rewards-cell",{"rewards":[16],"taxConnection":[16],"hideDetails":[4,"hide-details"],"statusText":[1,"status-text"],"statusLongText":[1,"status-long-text"],"fuelTankText":[1,"fuel-tank-text"],"rewardReceivedText":[1,"reward-received-text"],"expiringText":[1,"expiring-text"],"pendingForText":[1,"pending-for-text"],"deniedHelpText":[1,"denied-help-text"],"locale":[1]}],[1,"sqm-referral-table-status-cell",{"statusText":[1,"status-text"],"fraudStatus":[1,"fraud-status"],"converted":[4],"statusSubText":[1,"status-sub-text"]}],[1,"sqm-referral-table-user-cell",{"name":[1]}]]],["p-90423c8a",[[1,"sqm-user-info-form",{"firstName":[1,"first-name"],"lastName":[1,"last-name"],"email":[1],"country":[1],"currency":[1],"currencyHelpText":[1,"currency-help-text"],"allowBankingCollection":[1,"allow-banking-collection"],"formStep":[1,"form-step"],"personalInformation":[1,"personal-information"],"continueButton":[1,"continue-button"],"isPartnerAlertHeader":[1,"is-partner-alert-header"],"isPartnerAlertDescription":[1,"is-partner-alert-description"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"termsAndConditionsLabel":[1,"terms-and-conditions-label"],"fieldRequiredError":[1,"field-required-error"],"demoData":[16],"ignored":[32]}],[1,"sqm-tax-and-cash-dashboard",{"statusTextActive":[1,"status-text-active"],"statusTextNotActive":[1,"status-text-not-active"],"statusTextNotVerified":[1,"status-text-not-verified"],"badgeTextSubmittedOn":[1,"badge-text-submitted-on"],"badgeTextSubmittedOnW8":[1,"badge-text-submitted-on-w-8"],"badgeTextAwaitingReview":[1,"badge-text-awaiting-review"],"taxAlertHeaderNotActiveW9":[1,"tax-alert-header-not-active-w-9"],"taxAlertHeaderNotActiveW8":[1,"tax-alert-header-not-active-w-8"],"taxAlertNotActiveMessageW9":[1,"tax-alert-not-active-message-w-9"],"taxAlertNotActiveMessageW8":[1,"tax-alert-not-active-message-w-8"],"invalidForm":[1,"invalid-form"],"bankingInformationSectionHeader":[1,"banking-information-section-header"],"indirectTaxInfoSectionHeader":[1,"indirect-tax-info-section-header"],"indirectTaxInfoCanada":[1,"indirect-tax-info-canada"],"indirectTaxInfoOtherCountry":[1,"indirect-tax-info-other-country"],"indirectTaxInfoSpain":[1,"indirect-tax-info-spain"],"indirectTaxTooltipSupport":[1,"indirect-tax-tooltip-support"],"indirectTaxDetails":[1,"indirect-tax-details"],"taxDocumentSectionHeader":[1,"tax-document-section-header"],"taxDocumentSectionSubHeader":[1,"tax-document-section-sub-header"],"noFormNeededSubtext":[1,"no-form-needed-subtext"],"newFormButton":[1,"new-form-button"],"editIndirectTaxButton":[1,"edit-indirect-tax-button"],"editPaymentInformationButton":[1,"edit-payment-information-button"],"notRegisteredForTax":[1,"not-registered-for-tax"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"qstNumber":[1,"qst-number"],"subRegionTaxNumber":[1,"sub-region-tax-number"],"payoutFromImpact":[1,"payout-from-impact"],"demoData":[16]}],[0,"sqm-banking-info-form",{"formStep":[1,"form-step"],"taxAndPayouts":[1,"tax-and-payouts"],"taxAndPayoutsDescription":[1,"tax-and-payouts-description"],"directlyToBankAccount":[1,"directly-to-bank-account"],"toPayPalAccount":[1,"to-pay-pal-account"],"paymentScheduleBalanceThreshold":[1,"payment-schedule-balance-threshold"],"paymentScheduleFixedDay":[1,"payment-schedule-fixed-day"],"paymentDaySelectLabel":[1,"payment-day-select-label"],"paymentThresholdSelectLabel":[1,"payment-threshold-select-label"],"paymentDayFirstOfMonthLabelText":[1,"payment-day-first-of-month-label-text"],"paymentDayFifteenthOfMonthLabelText":[1,"payment-day-fifteenth-of-month-label-text"],"paymentMethod":[1,"payment-method"],"paymentSchedule":[1,"payment-schedule"],"paymentMethodSubtext":[1,"payment-method-subtext"],"payPalInputLabel":[1,"pay-pal-input-label"],"submitButton":[1,"submit-button"],"bankLocationLabel":[1,"bank-location-label"],"beneficiaryAccountNameLabel":[1,"beneficiary-account-name-label"],"bankAccountTypeLabel":[1,"bank-account-type-label"],"checkingSelectItemLabel":[1,"checking-select-item-label"],"savingsSelectItemLabel":[1,"savings-select-item-label"],"bankAccountNumberLabel":[1,"bank-account-number-label"],"ibanLabel":[1,"iban-label"],"swiftCodeLabel":[1,"swift-code-label"],"routingCodeLabel":[1,"routing-code-label"],"bankNameLabel":[1,"bank-name-label"],"classificationEntityLabel":[1,"classification-entity-label"],"businessSelectItemLabel":[1,"business-select-item-label"],"individualSelectItemLabel":[1,"individual-select-item-label"],"foreignSelectItemLabel":[1,"foreign-select-item-label"],"isPartnerAlertHeader":[1,"is-partner-alert-header"],"isPartnerAlertDescription":[1,"is-partner-alert-description"],"classificationCPFLabel":[1,"classification-c-p-f-label"],"patronymicNameLabel":[1,"patronymic-name-label"],"voCodeLabel":[1,"vo-code-label"],"agencyCodeLabel":[1,"agency-code-label"],"branchCodeLabel":[1,"branch-code-label"],"classificationLabel":[1,"classification-label"],"taxPayerIdLabel":[1,"tax-payer-id-label"],"bankAddressLabel":[1,"bank-address-label"],"bankCityLabel":[1,"bank-city-label"],"bankStateLabel":[1,"bank-state-label"],"bankPostalCodeLabel":[1,"bank-postal-code-label"],"cannotChangeInfoAlert":[1,"cannot-change-info-alert"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"demoData":[16],"ignored":[32]}],[0,"sqm-docusign-form",{"formStep":[1,"form-step"],"taxForm":[1,"tax-form"],"taxFormLabel":[1,"tax-form-label"],"taxFormDescription":[1,"tax-form-description"],"taxFormDescriptionIndividualParticipant":[1,"tax-form-description-individual-participant"],"taxFormDescriptionBusinessEntity":[1,"tax-form-description-business-entity"],"notBasedInUS":[1,"not-based-in-u-s"],"banner":[1],"checkboxLabel":[1,"checkbox-label"],"checkboxDescription":[1,"checkbox-description"],"docusignExpired":[1,"docusign-expired"],"docusignCompleted":[1,"docusign-completed"],"participantType":[1,"participant-type"],"businessEntity":[1,"business-entity"],"individualParticipant":[1,"individual-participant"],"docusignError":[1,"docusign-error"],"refreshButton":[1,"refresh-button"],"backButton":[1,"back-button"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"formSubmissionError":[1,"form-submission-error"],"demoData":[16],"ignored":[32]}],[1,"sqm-indirect-tax-form",{"formStep":[1,"form-step"],"indirectTax":[1,"indirect-tax"],"indirectTaxDescription":[1,"indirect-tax-description"],"indirectTaxDetails":[1,"indirect-tax-details"],"indirectTaxDetailsDescription":[1,"indirect-tax-details-description"],"otherRegion":[1,"other-region"],"otherRegionSubtext":[1,"other-region-subtext"],"notRegistered":[1,"not-registered"],"notRegisteredSubtext":[1,"not-registered-subtext"],"selectedRegion":[1,"selected-region"],"province":[1],"indirectTaxNumber":[1,"indirect-tax-number"],"isPartnerAlertHeader":[1,"is-partner-alert-header"],"isPartnerAlertDescription":[1,"is-partner-alert-description"],"continueButton":[1,"continue-button"],"backButton":[1,"back-button"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"indirectTaxNumberError":[1,"indirect-tax-number-error"],"subRegion":[1,"sub-region"],"qstNumber":[1,"qst-number"],"subRegionTaxNumberLabel":[1,"sub-region-tax-number-label"],"isRegisteredQST":[1,"is-registered-q-s-t"],"isRegisteredSubRegionIncomeTax":[1,"is-registered-sub-region-income-tax"],"cannotChangeInfoAlert":[1,"cannot-change-info-alert"],"fieldRequiredError":[1,"field-required-error"],"demoData":[16]}],[1,"sqm-payout-details-card",{"statusBadgeText":[1,"status-badge-text"],"thresholdPayoutText":[1,"threshold-payout-text"],"accountText":[1,"account-text"],"errorTitleText":[1,"error-title-text"],"errorDescriptionText":[1,"error-description-text"],"demoData":[16]}]]]]'),e)));
1
+ import{p as e,H as t,b as r}from"./p-f6e5df75.js";import"./p-8d37b2a1.js";import"./p-caca3160.js";import"./p-94ad6231.js";const a=e=>{const t=e.cloneNode;e.cloneNode=function(e){if("TEMPLATE"===this.nodeName)return t.call(this,e);const r=t.call(this,!1),a=this.childNodes;if(e)for(let e=0;e<a.length;e++)2!==a[e].nodeType&&r.appendChild(a[e].cloneNode(!0));return r}};(()=>{a(t.prototype);const r=import.meta.url,o={};return""!==r&&(o.resourcesUrl=new URL(".",r).href),e(o)})().then((e=>r(JSON.parse('[["p-3ecce16f",[[4,"sqm-stencilbook",{"ignored":[32]}]]],["p-19d81823",[[1,"sqm-tax-and-cash",{"step1_firstName":[1,"step-1_first-name"],"step1_lastName":[1,"step-1_last-name"],"step1_email":[1,"step-1_email"],"step1_country":[1,"step-1_country"],"step1_currency":[1,"step-1_currency"],"step1_allowBankingCollection":[1,"step-1_allow-banking-collection"],"step1_formStep":[1,"step-1_form-step"],"step1_personalInformation":[1,"step-1_personal-information"],"termsAndConditionsLabel":[1,"terms-and-conditions-label"],"step1_submitButton":[1,"step-1_submit-button"],"step2_formStep":[1,"step-2_form-step"],"step2_indirectTax":[1,"step-2_indirect-tax"],"step2_indirectTaxDescription":[1,"step-2_indirect-tax-description"],"step2_indirectTaxDetails":[1,"step-2_indirect-tax-details"],"step2_indirectTaxDetailsDescription":[1,"step-2_indirect-tax-details-description"],"step2_otherRegion":[1,"step-2_other-region"],"otherRegionSubtext":[1,"other-region-subtext"],"step2_notRegistered":[1,"step-2_not-registered"],"notRegisteredSubtext":[1,"not-registered-subtext"],"step2_selectedRegion":[1,"step-2_selected-region"],"step2_province":[1,"step-2_province"],"step2_indirectTaxNumber":[1,"step-2_indirect-tax-number"],"step2_qstNumber":[1,"step-2_qst-number"],"step2_isRegisteredQST":[1,"step-2_is-registered-q-s-t"],"step2_isRegisteredSubRegionIncomeTax":[1,"step-2_is-registered-sub-region-income-tax"],"step2_subRegion":[1,"step-2_sub-region"],"step2_subRegionTaxNumberLabel":[1,"step-2_sub-region-tax-number-label"],"step2_submitButton":[1,"step-2_submit-button"],"step2_backButton":[1,"step-2_back-button"],"step2_cannotChangeInfoAlert":[1,"step-2_cannot-change-info-alert"],"step2_indirectTaxNumberError":[1,"step-2_indirect-tax-number-error"],"step3_formStep":[1,"step-3_form-step"],"step3_taxForm":[1,"step-3_tax-form"],"step3_taxFormLabel":[1,"step-3_tax-form-label"],"step3_participantType":[1,"step-3_participant-type"],"step3_businessEntity":[1,"step-3_business-entity"],"step3_individualParticipant":[1,"step-3_individual-participant"],"step3_taxFormDescription":[1,"step-3_tax-form-description"],"step3_taxFormDescriptionIndividualParticipant":[1,"step-3_tax-form-description-individual-participant"],"step3_taxFormDescriptionBusinessEntity":[1,"step-3_tax-form-description-business-entity"],"stop3NotBasedInUS":[1,"stop-3-not-based-in-u-s"],"step3_banner":[1,"step-3_banner"],"step3_checkboxLabel":[1,"step-3_checkbox-label"],"step3_checkboxDescription":[1,"step-3_checkbox-description"],"step3_docusignExpired":[1,"step-3_docusign-expired"],"step3_docusignCompleted":[1,"step-3_docusign-completed"],"step3_docusignError":[1,"step-3_docusign-error"],"step3_refreshButton":[1,"step-3_refresh-button"],"step3_backButton":[1,"step-3_back-button"],"step3_formSubmissionError":[1,"step-3_form-submission-error"],"step4_formStep":[1,"step-4_form-step"],"step4_taxAndPayouts":[1,"step-4_tax-and-payouts"],"step4_taxAndPayoutsDescription":[1,"step-4_tax-and-payouts-description"],"step4_directlyToBankAccount":[1,"step-4_directly-to-bank-account"],"step4_toPayPalAccount":[1,"step-4_to-pay-pal-account"],"step4_paymentScheduleBalanceThreshold":[1,"step-4_payment-schedule-balance-threshold"],"step4_paymentScheduleFixedDay":[1,"step-4_payment-schedule-fixed-day"],"step4_paymentDaySelectLabel":[1,"step-4_payment-day-select-label"],"step4_paymentThresholdSelectLabel":[1,"step-4_payment-threshold-select-label"],"step4_paymentDayFirstOfMonthLabelText":[1,"step-4_payment-day-first-of-month-label-text"],"step4_paymentDayFifteenthOfMonthLabelText":[1,"step-4_payment-day-fifteenth-of-month-label-text"],"step4_paymentMethod":[1,"step-4_payment-method"],"step4_paymentSchedule":[1,"step-4_payment-schedule"],"step4_paymentMethodSubtext":[1,"step-4_payment-method-subtext"],"step4_payPalInputLabel":[1,"step-4_pay-pal-input-label"],"step4_bankLocationLabel":[1,"step-4_bank-location-label"],"step4_beneficiaryAccountNameLabel":[1,"step-4_beneficiary-account-name-label"],"step4_bankAccountTypeLabel":[1,"step-4_bank-account-type-label"],"step4_checkingSelectItemLabel":[1,"step-4_checking-select-item-label"],"step4_savingsSelectItemLabel":[1,"step-4_savings-select-item-label"],"step4_bankAccountNumberLabel":[1,"step-4_bank-account-number-label"],"step4_ibanLabel":[1,"step-4_iban-label"],"step4_swiftCodeLabel":[1,"step-4_swift-code-label"],"step4_routingCodeLabel":[1,"step-4_routing-code-label"],"step4_bankNameLabel":[1,"step-4_bank-name-label"],"step4_classificationEntityLabel":[1,"step-4_classification-entity-label"],"step4_businessSelectItemLabel":[1,"step-4_business-select-item-label"],"step4_individualSelectItemLabel":[1,"step-4_individual-select-item-label"],"step4_foreignSelectItemLabel":[1,"step-4_foreign-select-item-label"],"step4_classificationCPFLabel":[1,"step-4_classification-c-p-f-label"],"step4_patronymicNameLabel":[1,"step-4_patronymic-name-label"],"step4_voCodeLabel":[1,"step-4_vo-code-label"],"step4_agencyCodeLabel":[1,"step-4_agency-code-label"],"step4_branchCodeLabel":[1,"step-4_branch-code-label"],"step4_classificationLabel":[1,"step-4_classification-label"],"step4_taxPayerIdLabel":[1,"step-4_tax-payer-id-label"],"step4_bankAddressLabel":[1,"step-4_bank-address-label"],"step4_bankCityLabel":[1,"step-4_bank-city-label"],"step4_bankStateLabel":[1,"step-4_bank-state-label"],"step4_bankPostalCodeLabel":[1,"step-4_bank-postal-code-label"],"step4_cannotChangeInfoAlert":[1,"step-4_cannot-change-info-alert"],"dashboard_statusTextActive":[1,"dashboard_status-text-active"],"dashboard_statusTextNotActive":[1,"dashboard_status-text-not-active"],"dashboard_statusTextNotVerified":[1,"dashboard_status-text-not-verified"],"dashboard_badgeTextSubmittedOn":[1,"dashboard_badge-text-submitted-on"],"dashboard_badgeTextSubmittedOnW8":[1,"dashboard_badge-text-submitted-on-w-8"],"dashboard_badgeTextAwaitingReview":[1,"dashboard_badge-text-awaiting-review"],"dashboard_taxAlertHeaderNotActiveW9":[1,"dashboard_tax-alert-header-not-active-w-9"],"dashboard_taxAlertHeaderNotActiveW8":[1,"dashboard_tax-alert-header-not-active-w-8"],"dashboard_taxAlertNotActiveMessageW9":[1,"dashboard_tax-alert-not-active-message-w-9"],"dashboard_taxAlertNotActiveMessageW8":[1,"dashboard_tax-alert-not-active-message-w-8"],"dashboard_invalidForm":[1,"dashboard_invalid-form"],"dashboard_bankingInformationSectionHeader":[1,"dashboard_banking-information-section-header"],"dashboard_taxDocumentSectionHeader":[1,"dashboard_tax-document-section-header"],"dashboard_taxDocumentSectionSubHeader":[1,"dashboard_tax-document-section-sub-header"],"dashboard_noFormNeededSubtext":[1,"dashboard_no-form-needed-subtext"],"dashboard_indirectTaxInfoSectionHeader":[1,"dashboard_indirect-tax-info-section-header"],"dashboard_indirectTaxInfoCanada":[1,"dashboard_indirect-tax-info-canada"],"dashboard_indirectTaxInfoOtherCountry":[1,"dashboard_indirect-tax-info-other-country"],"dashboard_indirectTaxInfoSpain":[1,"dashboard_indirect-tax-info-spain"],"dashboard_indirectTaxTooltipSupport":[1,"dashboard_indirect-tax-tooltip-support"],"dashboard_indirectTaxDetails":[1,"dashboard_indirect-tax-details"],"dashboard_newFormButton":[1,"dashboard_new-form-button"],"dashboard_editPaymentInformationButton":[1,"dashboard_edit-payment-information-button"],"dashboard_notRegisteredForTax":[1,"dashboard_not-registered-for-tax"],"dashboard_qstNumber":[1,"dashboard_qst-number"],"dashboard_subRegionTaxNumber":[1,"dashboard_sub-region-tax-number"],"dashboard_statusBadgeText":[1,"dashboard_status-badge-text"],"dashboard_thresholdPayoutText":[1,"dashboard_threshold-payout-text"],"dashboard_accountText":[1,"dashboard_account-text"],"dashboard_errorTitleText":[1,"dashboard_error-title-text"],"dashboard_errorDescriptionText":[1,"dashboard_error-description-text"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"fieldRequiredError":[1,"field-required-error"],"continueButton":[1,"continue-button"],"isPartnerAlertHeader":[1,"is-partner-alert-header"],"isPartnerAlertDescription":[1,"is-partner-alert-description"],"demoData":[16]}]]],["p-73e3e768",[[1,"sqm-portal-registration-form",{"nextPage":[1,"next-page"],"redirectPath":[1,"redirect-path"],"emailLabel":[1,"email-label"],"passwordLabel":[1,"password-label"],"submitLabel":[1,"submit-label"],"loginLabel":[1,"login-label"],"confirmPasswordLabel":[1,"confirm-password-label"],"confirmPassword":[4,"confirm-password"],"disablePasswordValidation":[4,"disable-password-validation"],"hideInputs":[4,"hide-inputs"],"pageLabel":[1,"page-label"],"loginPath":[1,"login-path"],"requiredFieldErrorMessage":[1,"required-field-error-message"],"networkErrorMessage":[1,"network-error-message"],"passwordMismatchErrorMessage":[1,"password-mismatch-error-message"],"invalidEmailErrorMessage":[1,"invalid-email-error-message"],"formDisabledErrorMessage":[1,"form-disabled-error-message"],"meetsRequirementsText":[1,"meets-requirements-text"],"doesNotMeetRequirementsText":[1,"does-not-meet-requirements-text"],"minErrorText":[1,"min-error-text"],"uppercaseErrorText":[1,"uppercase-error-text"],"lowercaseErrorText":[1,"lowercase-error-text"],"hasErrorText":[1,"has-error-text"],"formKey":[1,"form-key"],"demoData":[16],"ignored":[32]}]]],["p-d812f2f1",[[1,"sqm-portal-reset-password",{"nextPage":[1,"next-page"],"failedPage":[1,"failed-page"],"confirmPassword":[4,"confirm-password"],"resetPasswordHeader":[1,"reset-password-header"],"passwordResetHeader":[1,"password-reset-header"],"resetPasswordButtonText":[1,"reset-password-button-text"],"continueButtonText":[1,"continue-button-text"],"confirmPasswordFieldLabel":[1,"confirm-password-field-label"],"passwordFieldLabel":[1,"password-field-label"],"meetsRequirementsText":[1,"meets-requirements-text"],"doesNotMeetRequirementsText":[1,"does-not-meet-requirements-text"],"minErrorText":[1,"min-error-text"],"uppercaseErrorText":[1,"uppercase-error-text"],"lowercaseErrorText":[1,"lowercase-error-text"],"hasErrorText":[1,"has-error-text"],"passwordMismatchText":[1,"password-mismatch-text"],"codeInvalidText":[1,"code-invalid-text"],"resetSuccessText":[1,"reset-success-text"],"networkErrorMessage":[1,"network-error-message"],"demoData":[16],"ignored":[32]}]]],["p-61f546e6",[[1,"sqm-instant-access-registration",{"emailLabel":[1,"email-label"],"firstNameLabel":[1,"first-name-label"],"lastNameLabel":[1,"last-name-label"],"registerLabel":[1,"register-label"],"includeName":[4,"include-name"],"hideBorder":[4,"hide-border"],"requiredFieldErrorMessage":[1,"required-field-error-message"],"invalidEmailErrorMessage":[1,"invalid-email-error-message"],"networkErrorMessage":[1,"network-error-message"],"paddingTop":[1,"padding-top"],"paddingRight":[1,"padding-right"],"paddingBottom":[1,"padding-bottom"],"paddingLeft":[1,"padding-left"],"backgroundColor":[1,"background-color"],"includeCookies":[4,"include-cookies"],"demoData":[16],"ignored":[32]}]]],["p-107c3f3e",[[1,"sqm-portal-email-verification",{"redirectPath":[1,"redirect-path"],"emailVerificationHeader":[1,"email-verification-header"],"resendEmailButtonText":[1,"resend-email-button-text"],"verifyMessage":[1,"verify-message"],"verificationStatusMessage":[1,"verification-status-message"],"verificationLoadingMessage":[1,"verification-loading-message"],"verificationResentMessage":[1,"verification-resent-message"],"networkErrorMessage":[1,"network-error-message"],"demoData":[16],"ignored":[32]}]]],["p-5e8b7e98",[[1,"sqm-portal-forgot-password",{"redirectPath":[1,"redirect-path"],"emailLabel":[1,"email-label"],"submitLabel":[1,"submit-label"],"loginPath":[1,"login-path"],"headerText":[1,"header-text"],"loginText":[1,"login-text"],"networkErrorMessage":[1,"network-error-message"],"successAlertText":[1,"success-alert-text"],"demoData":[16],"ignored":[32]}]]],["p-2cb996af",[[1,"sqm-portal-profile",{"firstnametext":[1],"lastnametext":[1],"emailtext":[1],"countrytext":[1],"editProfileHeader":[1,"edit-profile-header"],"editProfileSubHeader":[1,"edit-profile-sub-header"],"submitChangeButtonText":[1,"submit-change-button-text"],"hideCountry":[4,"hide-country"],"networkRequestMessage":[1,"network-request-message"],"fieldEmptyText":[1,"field-empty-text"],"formErrorText":[1,"form-error-text"],"submissionSuccessText":[1,"submission-success-text"],"demoData":[16],"ignored":[32]}]]],["p-66c21bac",[[1,"sqm-portal-verify-email",{"nextPage":[1,"next-page"],"failedPage":[1,"failed-page"],"verifyEmailText":[1,"verify-email-text"],"verifySuccessText":[1,"verify-success-text"],"verifyInvalidText":[1,"verify-invalid-text"],"continueText":[1,"continue-text"],"networkErrorMessage":[1,"network-error-message"],"demoData":[16],"ignored":[32]}]]],["p-d1cde664",[[1,"sqm-referred-registration",{"emailLabel":[1,"email-label"],"firstNameLabel":[1,"first-name-label"],"lastNameLabel":[1,"last-name-label"],"registerLabel":[1,"register-label"],"includeName":[4,"include-name"],"hideBorder":[4,"hide-border"],"requiredFieldErrorMessage":[1,"required-field-error-message"],"invalidEmailErrorMessage":[1,"invalid-email-error-message"],"networkErrorMessage":[1,"network-error-message"],"fraudErrorMessage":[1,"fraud-error-message"],"fraudErrorMessageTitle":[1,"fraud-error-message-title"],"paddingTop":[1,"padding-top"],"paddingRight":[1,"padding-right"],"paddingBottom":[1,"padding-bottom"],"paddingLeft":[1,"padding-left"],"backgroundColor":[1,"background-color"],"includeCookies":[4,"include-cookies"],"demoData":[16],"ignored":[32]}]]],["p-88380a45",[[1,"sqm-rewards-table-customer-note-column",{"columnTitle":[1,"column-title"],"renderCell":[64],"renderLabel":[64]}]]],["p-1c9fe397",[[4,"raisins-plop-target",{"renderCell":[64],"renderLabel":[64]}]]],["p-02b7a1a3",[[1,"sqm-asset-card",{"titleText":[1,"title-text"],"imgUrl":[1,"img-url"],"demoData":[16],"ignored":[32]}]]],["p-42949824",[[1,"sqm-close-button",{"color":[1]}]]],["p-f0c0bec9",[[4,"sqm-context-router",{"contextName":[1,"context-name"],"ignored":[32]}]]],["p-589f63ce",[[1,"sqm-document-type-form",{"formStep":[1,"form-step"],"formLabel":[1,"form-label"],"taxForm":[1,"tax-form"],"w9Label":[1,"w-9-label"],"w9Description":[1,"w-9-description"],"w8Label":[1,"w-8-label"],"w8Description":[1,"w-8-description"],"w8ELabel":[1,"w-8-e-label"],"w8EDescription":[1,"w-8-e-description"],"submitButton":[1,"submit-button"],"backButton":[1,"back-button"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"demoData":[16]}]]],["p-df8f553b",[[1,"sqm-docusign-embed",{"url":[1]}]]],["p-fa11bb8f",[[4,"sqm-graphql-client-provider",{"domain":[1],"ignored":[32]}]]],["p-ee74765c",[[1,"sqm-header-logo",{"imageUrl":[1,"image-url"],"nextPage":[1,"next-page"],"height":[2]}]]],["p-965b6a7d",[[1,"sqm-leaderboard-rank",{"rankType":[1,"rank-type"],"rankText":[1,"rank-text"],"leaderboardType":[1,"leaderboard-type"],"unrankedText":[1,"unranked-text"],"interval":[1],"programId":[1,"program-id"],"demoData":[16]}]]],["p-021207af",[[1,"sqm-logout-current-user",{"userIdentificationText":[1,"user-identification-text"],"switchUserText":[1,"switch-user-text"],"emailErrorText":[1,"email-error-text"],"demoData":[16]}]]],["p-eba772a8",[[1,"sqm-navigation-sidebar",{"ignored":[32]}]]],["p-c3160411",[[1,"sqm-navigation-sidebar-item",{"path":[1],"icon":[1],"label":[1],"demoData":[16]}]]],["p-0b1330d9",[[4,"sqm-popup-container",{"poweredBy":[4,"powered-by"],"closeButton":[4,"close-button"],"closeButtonText":[1,"close-button-text"],"poweredByText":[1,"powered-by-text"],"embedPadding":[1,"embed-padding"],"popupPadding":[1,"popup-padding"]}]]],["p-12929f2d",[[1,"sqm-portal-logout",{"nextPage":[1,"next-page"],"ignored":[32]}]]],["p-2e5c408f",[[1,"sqm-portal-protected-route",{"redirectTo":[1,"redirect-to"],"requireEmailVerification":[4,"require-email-verification"],"redirectToUnverified":[1,"redirect-to-unverified"],"ignored":[32]}]]],["p-1a69f973",[[1,"sqm-route",{"path":[1],"ignored":[32]}]]],["p-c7d2b2e3",[[4,"sqm-tab",{"header":[1]}]]],["p-c59d4f22",[[1,"sqm-tabs",{"placement":[1]}]]],["p-e37a287c",[[0,"sqm-text-span",{"text":[1],"type":[1],"ignored":[32]}]]],["p-11d95a57",[[1,"sqm-rewards-table-customer-note-cell",{"note":[1],"locale":[1],"ignored":[32]}]]],["p-8502e27c",[[0,"sqm-password-field",{"fieldLabel":[1,"field-label"],"disableValidation":[4,"disable-validation"],"meetsRequirementsText":[1,"meets-requirements-text"],"doesNotMeetRequirementsText":[1,"does-not-meet-requirements-text"],"minErrorText":[1,"min-error-text"],"uppercaseErrorText":[1,"uppercase-error-text"],"lowercaseErrorText":[1,"lowercase-error-text"],"hasErrorText":[1,"has-error-text"],"demoData":[16],"ignored":[32]}]]],["p-23669a93",[[1,"sqm-form-message",{"type":[1],"icon":[1],"ignored":[32]}]]],["p-ad342c61",[[1,"sqm-empty",{"emptyStateImage":[1,"empty-state-image"],"emptyStateHeader":[1,"empty-state-header"],"emptyStateText":[1,"empty-state-text"]}],[1,"sqm-image",{"imageUrl":[1,"image-url"],"alignment":[1],"backgroundColor":[1,"background-color"],"minHeight":[1,"min-height"]}],[1,"sqm-portal-container",{"direction":[1],"padding":[1],"gap":[1],"minWidth":[1,"min-width"],"display":[1],"justifyContent":[1,"justify-content"],"maxWidth":[1,"max-width"],"center":[4],"backgroundColor":[1,"background-color"],"ignored":[32]}],[4,"sqm-text",{"ignored":[32]}],[1,"sqm-titled-section",{"label":[1],"textAlign":[1,"text-align"],"labelMargin":[1,"label-margin"],"padding":[1]}]]],["p-0bc8896e",[[1,"sqm-leaderboard",{"programId":[1,"program-id"],"usersheading":[1],"statsheading":[1],"rankheading":[1],"showRank":[4,"show-rank"],"hideViewer":[4,"hide-viewer"],"rankType":[1,"rank-type"],"leaderboardType":[1,"leaderboard-type"],"anonymousUser":[1,"anonymous-user"],"interval":[1],"maxRows":[2,"max-rows"],"demoData":[16],"ignored":[32]}],[1,"sqm-reward-exchange-list",{"notAvailableError":[1,"not-available-error"],"chooseRewardTitle":[1,"choose-reward-title"],"chooseAmountTitle":[1,"choose-amount-title"],"confirmationTitle":[1,"confirmation-title"],"rewardTitle":[1,"reward-title"],"cancelText":[1,"cancel-text"],"backText":[1,"back-text"],"continueText":[1,"continue-text"],"continueToConfirmationText":[1,"continue-to-confirmation-text"],"redeemText":[1,"redeem-text"],"redeemTitle":[1,"redeem-title"],"redemptionSuccessText":[1,"redemption-success-text"],"sourceAmountMessage":[1,"source-amount-message"],"tooltipText":[1,"tooltip-text"],"doneText":[1,"done-text"],"selectText":[1,"select-text"],"queryError":[1,"query-error"],"redemptionError":[1,"redemption-error"],"notEnoughError":[1,"not-enough-error"],"rewardRedeemedText":[1,"reward-redeemed-text"],"promoCode":[1,"promo-code"],"skeletonCardNum":[2,"skeleton-card-num"],"rewardNameTitle":[1,"reward-name-title"],"rewardAmountTitle":[1,"reward-amount-title"],"costTitle":[1,"cost-title"],"demoData":[16],"ignored":[32]}],[1,"sqm-portal-change-password",{"modalChangePasswordHeader":[1,"modal-change-password-header"],"cancelText":[1,"cancel-text"],"changePasswordButtonText":[1,"change-password-button-text"],"passwordFieldLabel":[1,"password-field-label"],"confirmPasswordFieldLabel":[1,"confirm-password-field-label"],"successMessage":[1,"success-message"],"portalChangePasswordHeader":[1,"portal-change-password-header"],"portalChangePasswordButtonText":[1,"portal-change-password-button-text"],"meetsRequirementsText":[1,"meets-requirements-text"],"doesNotMeetRequirementsText":[1,"does-not-meet-requirements-text"],"minErrorText":[1,"min-error-text"],"uppercaseErrorText":[1,"uppercase-error-text"],"lowercaseErrorText":[1,"lowercase-error-text"],"nonMatchingPasswordErrorText":[1,"non-matching-password-error-text"],"invalidSessionErrorText":[1,"invalid-session-error-text"],"hasErrorText":[1,"has-error-text"],"demoData":[16],"ignored":[32]}],[1,"sqm-portal-register",{"nextPage":[1,"next-page"],"redirectPath":[1,"redirect-path"],"emailLabel":[1,"email-label"],"passwordLabel":[1,"password-label"],"submitLabel":[1,"submit-label"],"loginLabel":[1,"login-label"],"confirmPasswordLabel":[1,"confirm-password-label"],"confirmPassword":[4,"confirm-password"],"disablePasswordValidation":[4,"disable-password-validation"],"hideInputs":[4,"hide-inputs"],"pageLabel":[1,"page-label"],"loginPath":[1,"login-path"],"requiredFieldErrorMessage":[1,"required-field-error-message"],"networkErrorMessage":[1,"network-error-message"],"passwordMismatchErrorMessage":[1,"password-mismatch-error-message"],"invalidEmailErrorMessage":[1,"invalid-email-error-message"],"meetsRequirementsText":[1,"meets-requirements-text"],"doesNotMeetRequirementsText":[1,"does-not-meet-requirements-text"],"minErrorText":[1,"min-error-text"],"uppercaseErrorText":[1,"uppercase-error-text"],"lowercaseErrorText":[1,"lowercase-error-text"],"hasErrorText":[1,"has-error-text"],"demoData":[16],"ignored":[32]}],[1,"sqm-coupon-code",{"programId":[1,"program-id"],"tooltiptext":[1,"tooltip-text"],"tooltiplifespan":[2,"tooltip-lifespan"],"textAlign":[1,"text-align"],"copyButtonLabel":[1,"copy-button-label"],"buttonStyle":[1,"copy-button-style"],"couponCodeLabel":[1,"coupon-code-label"],"cancelledErrorText":[1,"cancelled-error-text"],"redeemedErrorText":[1,"redeemed-error-text"],"expiredErrorText":[1,"expired-error-text"],"fullfillmentErrorText":[1,"fullfilled-error-text"],"pendingErrorText":[1,"pending-error-text"],"genericErrorText":[1,"error-text"],"couponCodePlaceholder":[1,"coupon-code-placeholder"],"demoData":[16]}],[1,"sqm-edit-profile",{"editprofileheader":[1],"editprofiletext":[1],"canceltext":[1],"updatetext":[1],"firstnametext":[1],"lastnametext":[1],"currentregiontext":[1],"showregion":[4],"networkErrorMessage":[1,"network-error-message"],"fieldEmptyText":[1,"field-empty-text"],"formErrorText":[1,"form-error-text"],"demoData":[16],"ignored":[32]}],[1,"sqm-portal-login",{"nextPage":[1,"next-page"],"emailLabel":[1,"email-label"],"passwordLabel":[1,"password-label"],"submitLabel":[1,"submit-label"],"forgotPasswordPath":[1,"forgot-password-path"],"forgotPasswordLabel":[1,"forgot-password-label"],"registerLabel":[1,"register-label"],"registerPath":[1,"register-path"],"pageLabel":[1,"page-label"],"networkErrorMessage":[1,"network-error-message"],"demoData":[16],"ignored":[32]}],[1,"sqm-big-stat",{"statType":[1,"stat-type"],"flexReverse":[4,"flex-reverse"],"alignment":[1],"programId":[1,"program-id"],"demoData":[16],"ignored":[32]}],[1,"sqm-brand",{"brandColor":[1,"brand-color"],"brandFont":[1,"brand-font"]}],[1,"sqm-card-feed",{"width":[2],"gap":[2],"ignored":[32]}],[0,"sqm-checkbox-field",{"checkboxName":[1,"checkbox-name"],"checkboxLabel":[1,"checkbox-label"],"checkboxLabelLink":[1,"checkbox-label-link"],"checkboxLabelLinkText":[1,"checkbox-label-link-text"],"errorMessage":[1,"error-message"],"checkboxOptional":[4,"checkbox-optional"],"demoData":[16],"ignored":[32]}],[1,"sqm-divided-layout",{"direction":[1],"contentAreaWidth":[1,"content-area-width"],"dividerStyle":[1,"divider-style"]}],[4,"sqm-dropdown-field",{"dropdownName":[1,"dropdown-name"],"dropdownLabel":[1,"dropdown-label"],"errorMessage":[1,"error-message"],"dropdownOptional":[4,"dropdown-optional"],"demoData":[16],"ignored":[32]}],[1,"sqm-hero",{"columns":[2],"minHeight":[2,"min-height"],"background":[1],"paddingSize":[1,"padding-size"],"secondaryBackground":[1,"secondary-background"],"wrapDirection":[1,"wrap-direction"]}],[1,"sqm-hero-image",{"imageUrl":[1,"image-url"],"overlayColor":[1,"overlay-color"],"overlayOpacity":[1,"overlay-opacity"],"textColor":[1,"text-color"],"backgroundColor":[1,"background-color"],"layout":[1],"imagePercentage":[2,"image-percentage"],"imagePos":[1,"image-pos"],"imageMobilePos":[1,"image-mobile-pos"],"header":[1],"description":[1],"buttonText":[1,"button-text"],"buttonLink":[1,"button-link"],"buttonNewTab":[4,"button-new-tab"],"paddingText":[1,"padding-text"],"paddingImage":[1,"padding-image"]}],[0,"sqm-hook-story-container",{"hookStory":[16],"ignored":[32]}],[0,"sqm-input-field",{"fieldName":[1,"field-name"],"fieldLabel":[1,"field-label"],"fieldType":[1,"field-type"],"errorMessage":[1,"error-message"],"fieldOptional":[4,"field-optional"],"demoData":[16],"ignored":[32]}],[1,"sqm-link-button",{"link":[1],"openInNewTab":[4,"open-in-new-tab"],"buttonText":[1,"button-text"]}],[0,"sqm-name-fields",{"firstNameLabel":[1,"first-name-label"],"lastNameLabel":[1,"last-name-label"],"demoData":[16],"ignored":[32]}],[1,"sqm-navigation-menu",{"includeDropdown":[4,"include-dropdown"],"menuLabel":[1,"menu-label"],"demoData":[16],"ignored":[32]}],[1,"sqm-portal-footer",{"hideSupportText":[4,"hide-support-text"],"supportEmail":[1,"support-email"],"supportText":[1,"support-text"],"termsLink":[1,"terms-link"],"termsText":[1,"terms-text"],"faqLink":[1,"faq-link"],"faqText":[1,"faq-text"],"hidePoweredBy":[4,"hide-powered-by"],"poweredByLink":[1,"powered-by-link"],"paddingTop":[1,"padding-top"],"paddingRight":[1,"padding-right"],"paddingBottom":[1,"padding-bottom"],"paddingLeft":[1,"padding-left"],"ignored":[32]}],[1,"sqm-portal-frame",{"notFullScreen":[4,"not-full-screen"],"demoData":[16],"ignored":[32]}],[1,"sqm-program-explainer",{"header":[1],"textColor":[1,"text-color"],"backgroundColor":[1,"background-color"],"ignored":[32]}],[1,"sqm-program-explainer-step",{"header":[1],"description":[1],"textColor":[1,"text-color"],"backgroundColor":[1,"background-color"],"imageUrl":[1,"image-url"],"icon":[1]}],[4,"sqm-program-menu",{"ignored":[32]}],[1,"sqm-referral-card",{"verticalAlignment":[1,"vertical-alignment"],"hideBorder":[4,"hide-border"],"paddingTop":[1,"padding-top"],"paddingRight":[1,"padding-right"],"paddingBottom":[1,"padding-bottom"],"paddingLeft":[1,"padding-left"],"backgroundColor":[1,"background-color"],"limitWidth":[4,"limit-width"],"ignored":[32]}],[0,"sqm-referral-iframe",{"iframeSrc":[1,"iframe-src"],"iframeHeight":[1,"iframe-height"],"iframeWidth":[1,"iframe-width"],"demoData":[16],"ignored":[32]}],[4,"sqm-router",{"ignored":[32]}],[1,"sqm-scroll",{"buttonType":[1,"button-type"],"buttonText":[1,"button-text"],"scrollTagName":[1,"scroll-tag-name"],"scrollId":[1,"scroll-id"],"scrollAnimation":[1,"scroll-animation"],"size":[1],"outline":[4],"pill":[4],"circle":[4],"iconSlot":[1,"icon-slot"],"iconName":[1,"icon-name"],"mobile":[4],"ignored":[32]}],[1,"sqm-share-button",{"medium":[1],"programId":[1,"program-id"],"borderradius":[2],"backgroundcolor":[1],"textcolor":[1],"pill":[4],"disabled":[4],"type":[1],"size":[1],"iconslot":[1],"icon":[1],"hideicon":[4],"hidetext":[4],"sharetitle":[1],"sharetext":[1],"undefinedLinkText":[1,"undefined-link-text"],"unsupportedPlatformText":[1,"unsupported-platform-text"],"demoData":[16]}],[1,"sqm-share-code",{"programId":[1,"program-id"],"tooltiptext":[1,"tooltip-text"],"tooltiplifespan":[2,"tooltip-lifespan"],"textAlign":[1,"text-align"],"copyButtonLabel":[1,"copy-button-label"],"buttonStyle":[1,"copy-button-style"],"demoData":[16]}],[1,"sqm-share-link",{"programId":[1,"program-id"],"tooltiptext":[1,"tooltip-text"],"tooltiplifespan":[2,"tooltip-lifespan"],"textAlign":[1,"text-align"],"copyButtonLabel":[1,"copy-button-label"],"buttonStyle":[1,"copy-button-style"],"demoData":[16]}],[1,"sqm-stat-container",{"space":[1],"display":[1],"ignored":[32]}],[1,"sqm-task-card",{"rewardAmount":[1,"reward-amount"],"rewardUnit":[1,"reward-unit"],"cardTitle":[1,"card-title"],"description":[1],"repeatable":[4],"finite":[2],"showProgressBar":[4,"show-progress-bar"],"goal":[2],"steps":[4],"progressBarUnit":[1,"progress-bar-unit"],"expiryMessage":[1,"expiry-message"],"rewardDuration":[1,"reward-duration"],"startsOnMessage":[1,"starts-on-message"],"displayDuration":[1,"display-duration"],"endedMessage":[1,"ended-message"],"completedText":[1,"completed-text"],"buttonText":[1,"button-text"],"buttonLink":[1,"button-link"],"openNewTab":[4,"open-new-tab"],"statType":[1,"stat-type"],"eventKey":[1,"event-key"],"programId":[1,"program-id"],"hideButton":[4,"hide-button"],"demoData":[16],"ignored":[32]}],[1,"sqm-timeline",{"icon":[1],"ignored":[32]}],[1,"sqm-timeline-entry",{"reward":[1],"unit":[1],"desc":[1],"icon":[1],"ignored":[32],"iconState":[32],"setIcon":[64]}],[1,"sqm-user-name",{"fallback":[1],"loadingText":[1,"loading-text"],"demoData":[16],"ignored":[32]}],[1,"sqm-table-cell",{"colspan":[2],"padding":[1]}],[1,"sqm-table-row",{"border":[1]}]]],["p-44e9c6a0",[[1,"sqm-rewards-table",{"programId":[1,"program-id"],"perPage":[2,"per-page"],"hideLabels":[4,"hide-labels"],"prevLabel":[1,"prev-label"],"moreLabel":[1,"more-label"],"hiddenColumns":[1,"hidden-columns"],"smBreakpoint":[2,"sm-breakpoint"],"mdBreakpoint":[2,"md-breakpoint"],"demoData":[16]}],[1,"sqm-rewards-table-date-column",{"columnTitle":[1,"column-title"],"dateShown":[1,"date-shown"],"renderCell":[64],"renderLabel":[64]}],[1,"sqm-rewards-table-reward-column",{"columnTitle":[1,"column-title"],"redeemedText":[1,"redeemed-text"],"availableText":[1,"available-text"],"copyText":[1,"copy-text"],"renderCell":[64],"renderLabel":[64]}],[1,"sqm-rewards-table-source-column",{"columnTitle":[1,"column-title"],"anonymousUser":[1,"anonymous-user"],"deletedUser":[1,"deleted-user"],"rewardExchangeText":[1,"reward-exchange-text"],"referralText":[1,"referral-text"],"rewardSourceText":[1,"reward-source-text"],"renderCell":[64],"renderLabel":[64]}],[1,"sqm-rewards-table-status-column",{"columnTitle":[1,"column-title"],"statusText":[1,"status-text"],"expiryText":[1,"expiry-text"],"pendingUsTax":[1,"pending-us-tax"],"pendingScheduled":[1,"pending-scheduled"],"pendingUnhandled":[1,"pending-unhandled"],"pendingReviewText":[1,"pending-review-text"],"deniedText":[1,"denied-text"],"pendingTaxReview":[1,"pending-tax-review"],"pendingNewTaxForm":[1,"pending-new-tax-form"],"pendingTaxSubmission":[1,"pending-tax-submission"],"pendingPartnerCreation":[1,"pending-partner-creation"],"payoutFailed":[1,"payout-failed"],"payoutSent":[1,"payout-sent"],"renderCell":[64],"renderLabel":[64]}],[1,"sqm-rewards-table-date-cell",{"date":[2],"locale":[1],"ignored":[32]}],[1,"sqm-rewards-table-reward-cell",{"reward":[16],"redeemedText":[1,"redeemed-text"],"availableText":[1,"available-text"],"copyText":[1,"copy-text"],"locale":[1]}],[1,"sqm-rewards-table-source-cell",{"reward":[16],"deletedUserText":[1,"deleted-user-text"],"anonymousUserText":[1,"anonymous-user-text"],"rewardExchangeText":[1,"reward-exchange-text"],"referralText":[1,"referral-text"],"rewardSourceText":[1,"reward-source-text"],"locale":[1]}],[1,"sqm-rewards-table-status-cell",{"statusText":[1,"status-text"],"reward":[16],"taxConnection":[16],"expiryText":[1,"expiry-text"],"locale":[1],"pendingUsTax":[1,"pending-us-tax"],"pendingTaxReview":[1,"pending-tax-review"],"pendingNewTaxForm":[1,"pending-new-tax-form"],"pendingTaxSubmission":[1,"pending-tax-submission"],"pendingPartnerCreation":[1,"pending-partner-creation"],"pendingScheduled":[1,"pending-scheduled"],"pendingUnhandled":[1,"pending-unhandled"],"pendingReviewText":[1,"pending-review-text"],"deniedText":[1,"denied-text"],"payoutFailed":[1,"payout-failed"],"payoutSent":[1,"payout-sent"]}]]],["p-5286bddf",[[1,"sqm-referral-table-column",{"columnTitle":[1,"column-title"],"renderCell":[64],"renderLabel":[64]}],[1,"sqm-referral-table",{"programId":[1,"program-id"],"perPage":[2,"per-page"],"hideLabels":[4,"hide-labels"],"prevLabel":[1,"prev-label"],"moreLabel":[1,"more-label"],"showReferrer":[4,"show-referrer"],"hiddenColumns":[1,"hidden-columns"],"smBreakpoint":[2,"sm-breakpoint"],"mdBreakpoint":[2,"md-breakpoint"],"demoData":[16]}],[1,"sqm-referral-table-date-column",{"columnTitle":[1,"column-title"],"dateShown":[1,"date-shown"],"renderCell":[64],"renderLabel":[64],"renderReferrerCell":[64]}],[1,"sqm-referral-table-rewards-column",{"columnTitle":[1,"column-title"],"statusText":[1,"status-text"],"statusLongText":[1,"status-long-text"],"fuelTankText":[1,"fuel-tank-text"],"rewardReceivedText":[1,"reward-received-text"],"expiringText":[1,"expiring-text"],"pendingForText":[1,"pending-for-text"],"deniedHelpText":[1,"denied-help-text"],"hideDetails":[4,"hide-details"],"renderCell":[64],"renderLabel":[64],"renderReferrerCell":[64]}],[1,"sqm-referral-table-status-column",{"columnTitle":[1,"column-title"],"convertedStatusText":[1,"converted-status-text"],"inProgressStatusText":[1,"in-progress-status-text"],"pendingReviewStatusText":[1,"pending-review-status-text"],"deniedStatusText":[1,"denied-status-text"],"pendingReviewStatusSubText":[1,"pending-review-status-sub-text"],"deniedStatusSubText":[1,"denied-status-sub-text"],"renderCell":[64],"renderLabel":[64],"renderReferrerCell":[64]}],[1,"sqm-referral-table-user-column",{"columnTitle":[1,"column-title"],"anonymousUser":[1,"anonymous-user"],"deletedUser":[1,"deleted-user"],"renderCell":[64],"renderLabel":[64],"renderReferrerCell":[64]}],[1,"sqm-referral-table-cell",{"innerTemplate":[1,"inner-template"],"ignored":[32]}],[1,"sqm-referral-table-date-cell",{"date":[2],"locale":[1],"ignored":[32]}],[1,"sqm-referral-table-rewards-cell",{"rewards":[16],"taxConnection":[16],"hideDetails":[4,"hide-details"],"statusText":[1,"status-text"],"statusLongText":[1,"status-long-text"],"fuelTankText":[1,"fuel-tank-text"],"rewardReceivedText":[1,"reward-received-text"],"expiringText":[1,"expiring-text"],"pendingForText":[1,"pending-for-text"],"deniedHelpText":[1,"denied-help-text"],"locale":[1]}],[1,"sqm-referral-table-status-cell",{"statusText":[1,"status-text"],"fraudStatus":[1,"fraud-status"],"converted":[4],"statusSubText":[1,"status-sub-text"]}],[1,"sqm-referral-table-user-cell",{"name":[1]}]]],["p-90423c8a",[[1,"sqm-user-info-form",{"firstName":[1,"first-name"],"lastName":[1,"last-name"],"email":[1],"country":[1],"currency":[1],"currencyHelpText":[1,"currency-help-text"],"allowBankingCollection":[1,"allow-banking-collection"],"formStep":[1,"form-step"],"personalInformation":[1,"personal-information"],"continueButton":[1,"continue-button"],"isPartnerAlertHeader":[1,"is-partner-alert-header"],"isPartnerAlertDescription":[1,"is-partner-alert-description"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"termsAndConditionsLabel":[1,"terms-and-conditions-label"],"fieldRequiredError":[1,"field-required-error"],"demoData":[16],"ignored":[32]}],[1,"sqm-tax-and-cash-dashboard",{"statusTextActive":[1,"status-text-active"],"statusTextNotActive":[1,"status-text-not-active"],"statusTextNotVerified":[1,"status-text-not-verified"],"badgeTextSubmittedOn":[1,"badge-text-submitted-on"],"badgeTextSubmittedOnW8":[1,"badge-text-submitted-on-w-8"],"badgeTextAwaitingReview":[1,"badge-text-awaiting-review"],"taxAlertHeaderNotActiveW9":[1,"tax-alert-header-not-active-w-9"],"taxAlertHeaderNotActiveW8":[1,"tax-alert-header-not-active-w-8"],"taxAlertNotActiveMessageW9":[1,"tax-alert-not-active-message-w-9"],"taxAlertNotActiveMessageW8":[1,"tax-alert-not-active-message-w-8"],"invalidForm":[1,"invalid-form"],"bankingInformationSectionHeader":[1,"banking-information-section-header"],"indirectTaxInfoSectionHeader":[1,"indirect-tax-info-section-header"],"indirectTaxInfoCanada":[1,"indirect-tax-info-canada"],"indirectTaxInfoOtherCountry":[1,"indirect-tax-info-other-country"],"indirectTaxInfoSpain":[1,"indirect-tax-info-spain"],"indirectTaxTooltipSupport":[1,"indirect-tax-tooltip-support"],"indirectTaxDetails":[1,"indirect-tax-details"],"taxDocumentSectionHeader":[1,"tax-document-section-header"],"taxDocumentSectionSubHeader":[1,"tax-document-section-sub-header"],"noFormNeededSubtext":[1,"no-form-needed-subtext"],"newFormButton":[1,"new-form-button"],"editIndirectTaxButton":[1,"edit-indirect-tax-button"],"editPaymentInformationButton":[1,"edit-payment-information-button"],"notRegisteredForTax":[1,"not-registered-for-tax"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"qstNumber":[1,"qst-number"],"subRegionTaxNumber":[1,"sub-region-tax-number"],"payoutFromImpact":[1,"payout-from-impact"],"demoData":[16]}],[0,"sqm-banking-info-form",{"formStep":[1,"form-step"],"taxAndPayouts":[1,"tax-and-payouts"],"taxAndPayoutsDescription":[1,"tax-and-payouts-description"],"directlyToBankAccount":[1,"directly-to-bank-account"],"toPayPalAccount":[1,"to-pay-pal-account"],"paymentScheduleBalanceThreshold":[1,"payment-schedule-balance-threshold"],"paymentScheduleFixedDay":[1,"payment-schedule-fixed-day"],"paymentDaySelectLabel":[1,"payment-day-select-label"],"paymentThresholdSelectLabel":[1,"payment-threshold-select-label"],"paymentDayFirstOfMonthLabelText":[1,"payment-day-first-of-month-label-text"],"paymentDayFifteenthOfMonthLabelText":[1,"payment-day-fifteenth-of-month-label-text"],"paymentMethod":[1,"payment-method"],"paymentSchedule":[1,"payment-schedule"],"paymentMethodSubtext":[1,"payment-method-subtext"],"payPalInputLabel":[1,"pay-pal-input-label"],"submitButton":[1,"submit-button"],"bankLocationLabel":[1,"bank-location-label"],"beneficiaryAccountNameLabel":[1,"beneficiary-account-name-label"],"bankAccountTypeLabel":[1,"bank-account-type-label"],"checkingSelectItemLabel":[1,"checking-select-item-label"],"savingsSelectItemLabel":[1,"savings-select-item-label"],"bankAccountNumberLabel":[1,"bank-account-number-label"],"ibanLabel":[1,"iban-label"],"swiftCodeLabel":[1,"swift-code-label"],"routingCodeLabel":[1,"routing-code-label"],"bankNameLabel":[1,"bank-name-label"],"classificationEntityLabel":[1,"classification-entity-label"],"businessSelectItemLabel":[1,"business-select-item-label"],"individualSelectItemLabel":[1,"individual-select-item-label"],"foreignSelectItemLabel":[1,"foreign-select-item-label"],"isPartnerAlertHeader":[1,"is-partner-alert-header"],"isPartnerAlertDescription":[1,"is-partner-alert-description"],"classificationCPFLabel":[1,"classification-c-p-f-label"],"patronymicNameLabel":[1,"patronymic-name-label"],"voCodeLabel":[1,"vo-code-label"],"agencyCodeLabel":[1,"agency-code-label"],"branchCodeLabel":[1,"branch-code-label"],"classificationLabel":[1,"classification-label"],"taxPayerIdLabel":[1,"tax-payer-id-label"],"bankAddressLabel":[1,"bank-address-label"],"bankCityLabel":[1,"bank-city-label"],"bankStateLabel":[1,"bank-state-label"],"bankPostalCodeLabel":[1,"bank-postal-code-label"],"cannotChangeInfoAlert":[1,"cannot-change-info-alert"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"demoData":[16],"ignored":[32]}],[0,"sqm-docusign-form",{"formStep":[1,"form-step"],"taxForm":[1,"tax-form"],"taxFormLabel":[1,"tax-form-label"],"taxFormDescription":[1,"tax-form-description"],"taxFormDescriptionIndividualParticipant":[1,"tax-form-description-individual-participant"],"taxFormDescriptionBusinessEntity":[1,"tax-form-description-business-entity"],"notBasedInUS":[1,"not-based-in-u-s"],"banner":[1],"checkboxLabel":[1,"checkbox-label"],"checkboxDescription":[1,"checkbox-description"],"docusignExpired":[1,"docusign-expired"],"docusignCompleted":[1,"docusign-completed"],"participantType":[1,"participant-type"],"businessEntity":[1,"business-entity"],"individualParticipant":[1,"individual-participant"],"docusignError":[1,"docusign-error"],"refreshButton":[1,"refresh-button"],"backButton":[1,"back-button"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"formSubmissionError":[1,"form-submission-error"],"demoData":[16],"ignored":[32]}],[1,"sqm-indirect-tax-form",{"formStep":[1,"form-step"],"indirectTax":[1,"indirect-tax"],"indirectTaxDescription":[1,"indirect-tax-description"],"indirectTaxDetails":[1,"indirect-tax-details"],"indirectTaxDetailsDescription":[1,"indirect-tax-details-description"],"otherRegion":[1,"other-region"],"otherRegionSubtext":[1,"other-region-subtext"],"notRegistered":[1,"not-registered"],"notRegisteredSubtext":[1,"not-registered-subtext"],"selectedRegion":[1,"selected-region"],"province":[1],"indirectTaxNumber":[1,"indirect-tax-number"],"isPartnerAlertHeader":[1,"is-partner-alert-header"],"isPartnerAlertDescription":[1,"is-partner-alert-description"],"continueButton":[1,"continue-button"],"backButton":[1,"back-button"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"indirectTaxNumberError":[1,"indirect-tax-number-error"],"subRegion":[1,"sub-region"],"qstNumber":[1,"qst-number"],"subRegionTaxNumberLabel":[1,"sub-region-tax-number-label"],"isRegisteredQST":[1,"is-registered-q-s-t"],"isRegisteredSubRegionIncomeTax":[1,"is-registered-sub-region-income-tax"],"cannotChangeInfoAlert":[1,"cannot-change-info-alert"],"fieldRequiredError":[1,"field-required-error"],"demoData":[16]}],[1,"sqm-payout-details-card",{"statusBadgeText":[1,"status-badge-text"],"thresholdPayoutText":[1,"threshold-payout-text"],"accountText":[1,"account-text"],"errorTitleText":[1,"error-title-text"],"errorDescriptionText":[1,"error-description-text"],"demoData":[16]}]]]]'),e)));
@@ -0,0 +1 @@
1
+ import{r as t,h as e}from"./p-f6e5df75.js";import{u as i,f as a,m as r}from"./p-8d37b2a1.js";import{O as o,H as s,i as n}from"./p-94ad6231.js";import{c as u}from"./p-c1086930.js";import"./p-cef45012.js";import{g as h}from"./p-9ec99ced.js";import{g as d,e as m,f as c,c as l,T as p,h as f,C as y,i as b,U as T,G as v,j as g,k as S,F as x,l as I,m as N,n as P}from"./p-239824bb.js";import{L as C}from"./p-4ba1a994.js";function w(t,e){return Object.keys(t).filter((t=>t.startsWith(e))).reduce(((i,a)=>({...i,[a.replace(e,"")]:t[a]})),{})}const k=class{constructor(e){t(this,e),this.step1_firstName="First name",this.step1_lastName="Last name",this.step1_email="Email",this.step1_country="Country",this.step1_currency="Currency",this.step1_allowBankingCollection="I have read the {termsAndConditionsLink} and allow impact.com to collect my tax and banking information",this.step1_formStep="Step 1 of 4",this.step1_personalInformation="Personal Information",this.termsAndConditionsLabel="terms and conditions",this.step1_submitButton="Continue",this.step2_formStep="Step 2 of 4",this.step2_indirectTax="Indirect Tax",this.step2_indirectTaxDescription="Indirect Taxes (e.g. VAT, HST, GST) are transactional based taxes that are required to be levied by service providers by most tax authorities.",this.step2_indirectTaxDetails="Indirect Tax Details",this.step2_indirectTaxDetailsDescription="Not sure if you are registered for indirect tax? Contact our Support team to find out more.",this.step2_otherRegion="I am registered for Indirect Tax in a different Country / Region",this.otherRegionSubtext="IIf you represent a business based outside of the US may be registered. Not sure? Contact our Support team to find out more.",this.step2_notRegistered="I am not registered for Indirect Tax",this.notRegisteredSubtext="If you’re joining this referral program as an individual or you’re based in the US, then you’re not registered.",this.step2_selectedRegion="Country / Region of Indirect Tax",this.step2_province="Province",this.step2_indirectTaxNumber="{taxType, select, GST {GST Number} HST {HST Number} VAT {VAT Number} CT {CT Number} SST {SST Number} GENERAL {Indirect Tax Number}}",this.step2_qstNumber="QST Number",this.step2_isRegisteredQST="I am registered for QST Tax",this.step2_isRegisteredSubRegionIncomeTax="I am an individual registered for Income Tax purposes in Spain, and withholding tax will apply to any payments made to me.",this.step2_subRegion="Sub-region",this.step2_subRegionTaxNumberLabel="Income Tax Number",this.step2_submitButton="Continue",this.step2_backButton="Back",this.step2_cannotChangeInfoAlert="Changes to your personal information and indirect tax can only be made through our Support team after you complete this step. Ensure these are correct before continuing.",this.step2_indirectTaxNumberError="{taxType, select, GST {GST Number} HST {HST Number} VAT {VAT Number} CT {CT Number} SST {SST Number} GENERAL {Indirect Tax Number}} is required",this.step3_formStep="Step 3 of 4",this.step3_taxForm="Tax form",this.step3_taxFormLabel="{documentType} Tax Form",this.step3_participantType="Participant type",this.step3_businessEntity="I represent a company",this.step3_individualParticipant="I am an individual participant",this.step3_taxFormDescription="Participants based in the US and partnering with US-based brands need to submit a {documentType} form.",this.step3_taxFormDescriptionIndividualParticipant="Participants residing outside of the US, joining the referral program of a US-based company, need to submit a {documentType} form.",this.step3_taxFormDescriptionBusinessEntity="Participants residing outside of the US who represent a business entity need to submit a {documentType} form.",this.stop3NotBasedInUS="Not based in the US?",this.step3_banner="For your security, we automatically end your session when you have not interacted with the form after 20 minutes.",this.step3_checkboxLabel="Form submission",this.step3_checkboxDescription="I have completed and submitted my tax form",this.step3_docusignExpired="For your security and privacy, we automatically end your session after 20 minutes of inactivity. Please refresh and re-enter your tax information to continue.",this.step3_docusignCompleted="Your document has been completed and submitted.",this.step3_docusignError="There was a problem displaying this form. Please refresh the page. If this problem continues, contact Support.",this.step3_refreshButton="Refresh Page",this.step3_backButton="Back",this.step3_formSubmissionError="This field is required",this.step4_formStep="Step 4 of 4",this.step4_taxAndPayouts="Tax and Payouts",this.step4_taxAndPayoutsDescription="Submit your tax documents and add your banking information to receive your rewards.",this.step4_directlyToBankAccount="Directly to my bank account",this.step4_toPayPalAccount="PayPal (2% processing fee capped to {feeCap})",this.step4_paymentScheduleBalanceThreshold="Pay me when my balance reaches a threshold",this.step4_paymentScheduleFixedDay="Pay me on a fixed day of the month",this.step4_paymentDaySelectLabel="Payment Day",this.step4_paymentThresholdSelectLabel="Payment Threshold",this.step4_paymentDayFirstOfMonthLabelText="1st of the month",this.step4_paymentDayFifteenthOfMonthLabelText="15th of the month",this.step4_paymentMethod="Payment Method",this.step4_paymentSchedule="Payment Schedule",this.step4_paymentMethodSubtext="Payouts will be sent on the first day of each month from our referral program provider, impact.com.",this.step4_payPalInputLabel="PayPal Email",this.step4_bankLocationLabel="Bank Country Location",this.step4_beneficiaryAccountNameLabel="Beneficiary Account Name",this.step4_bankAccountTypeLabel="Bank Account Type",this.step4_checkingSelectItemLabel="Checking",this.step4_savingsSelectItemLabel="Savings",this.step4_bankAccountNumberLabel="Bank Account Number",this.step4_ibanLabel="IBAN",this.step4_swiftCodeLabel="SWIFT Code",this.step4_routingCodeLabel="Routing Code",this.step4_bankNameLabel="Bank Name",this.step4_classificationEntityLabel="Classification Entity",this.step4_businessSelectItemLabel="Business",this.step4_individualSelectItemLabel="Individual",this.step4_foreignSelectItemLabel="Foreign",this.step4_classificationCPFLabel="Classification CPF",this.step4_patronymicNameLabel="Patronymic Name",this.step4_voCodeLabel="VO Code",this.step4_agencyCodeLabel="Agency Code",this.step4_branchCodeLabel="Branch Code",this.step4_classificationLabel="Classification",this.step4_taxPayerIdLabel="Taxpayer ID",this.step4_bankAddressLabel="Bank Address",this.step4_bankCityLabel="Bank City",this.step4_bankStateLabel="Bank Province / State",this.step4_bankPostalCodeLabel="Bank Postal Code",this.step4_cannotChangeInfoAlert="Your payout information cannot be changed after saving. Ensure your payout method and schedule are correct before submitting.",this.dashboard_statusTextActive="Active",this.dashboard_statusTextNotActive="Invalid Tax Form",this.dashboard_statusTextNotVerified="Not Verified",this.dashboard_badgeTextSubmittedOn="Submitted on {dateSubmitted}",this.dashboard_badgeTextSubmittedOnW8="Submitted on {dateSubmitted}. Valid for three years after submission.",this.dashboard_badgeTextAwaitingReview="Awaiting review. Submitted on {dateSubmitted}.",this.dashboard_taxAlertHeaderNotActiveW9="Your W9 tax form has personal information that doesn’t match your profile",this.dashboard_taxAlertHeaderNotActiveW8="{documentType} tax form is invalid",this.dashboard_taxAlertNotActiveMessageW9="Please resubmit a new {documentType} form.",this.dashboard_taxAlertNotActiveMessageW8="Your tax form may have expired or has personal information that doesn’t match your profile. Please submit a new W8-BEN form.",this.dashboard_invalidForm="Ensure your information matches your profile and resubmit a new document.",this.dashboard_bankingInformationSectionHeader="Banking Information",this.dashboard_taxDocumentSectionHeader="Tax documents",this.dashboard_taxDocumentSectionSubHeader="{documentType} tax form",this.dashboard_noFormNeededSubtext="Tax documents are only required if you are based in the US. If your country of residence has changed, please contact Support.",this.dashboard_indirectTaxInfoSectionHeader="Indirect tax",this.dashboard_indirectTaxInfoCanada="Registered in {province}, {country}",this.dashboard_indirectTaxInfoOtherCountry="Registered in {country}",this.dashboard_indirectTaxInfoSpain="Registered in {country}, {subRegion}",this.dashboard_indirectTaxTooltipSupport="To make changes to your indirect tax information, please contact Support.",this.dashboard_indirectTaxDetails="{indirectTaxType} number: {indirectTaxNumber}",this.dashboard_newFormButton="Submit New Form",this.dashboard_editPaymentInformationButton="Edit Payout Information",this.dashboard_notRegisteredForTax="Not registered. Participants representing a company in countries that enforce indirect tax (e.g. GST, HST, VAT) must add their indirect tax information.",this.dashboard_qstNumber="QST number: {qstNumber}",this.dashboard_subRegionTaxNumber="Income tax number: {incomeTaxNumber}",this.dashboard_statusBadgeText="{badgeText, select, payoutToday {Payout Today} nextPayout {Next Payout} }",this.dashboard_thresholdPayoutText="Next payout occurs when balance is",this.dashboard_accountText="Account",this.dashboard_errorTitleText="There was an error with your payout infomation",this.dashboard_errorDescriptionText="Please ensure your payout information is correct. If this problem continues, contact Support.",this.generalErrorTitle="There was a problem submitting your information",this.generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.",this.fieldRequiredError="{fieldName} is required",this.continueButton="Continue",this.isPartnerAlertHeader="An account with this email already exists with our referral program provider, impact.com",this.isPartnerAlertDescription="If you don’t recognize this referral program provider or believe this is a mistake, please contact Support or sign up for this referral program with a different email.",r(this)}disconnectedCallback(){}getGeneralStepTextProps(t){const e=h(this);return{...w(e,t),generalErrorTitle:e.generalErrorTitle,generalErrorDescription:e.generalErrorDescription,fieldRequiredError:e.fieldRequiredError,submitButton:e.continueButton,isPartnerAlertHeader:e.isPartnerAlertHeader,isPartnerAlertDescription:e.isPartnerAlertDescription}}render(){const t=n()?function(t){const[e,i]=m({namespace:l,initialValue:"/1"});return u({step:e,setStep:i},t.demoData||{},{arrayMerge:(t,e)=>e})}(this):function(){var t,e,r,n;const u=o(),h=s(),[C,w]=m({namespace:l,initialValue:"/loading"}),[k,A]=m({namespace:p,initialValue:{}}),[q,j]=m({namespace:f,initialValue:{firstName:void 0,lastName:void 0,email:void 0,countryCode:void 0,currency:void 0}}),[B,E]=m({namespace:y,initialValue:[]}),[V,F]=m({namespace:b,initialValue:[]}),{data:R}=c({namespace:T,query:v,skip:!h}),_=(null===(r=null===(e=null===(t=null==R?void 0:R.user)||void 0===t?void 0:t.impactConnection)||void 0===e?void 0:e.publisher)||void 0===r?void 0:r.countryCode)||q.countryCode;c({namespace:g,query:S,skip:!h});const{data:G}=c({namespace:x,query:I,skip:!h,variables:{filter:function(){var t,e,i;return"/4"===C?{currency_eq:null===(i=null===(e=null===(t=null==R?void 0:R.user)||void 0===t?void 0:t.impactConnection)||void 0===e?void 0:e.publisher)||void 0===i?void 0:i.currency}:_?{countryCode_eq:_}:{}}()}}),{data:U}=c({namespace:N,query:P,skip:!h}),D=i((()=>{var t,e;return null===(e=null===(t=null==G?void 0:G.impactFinanceNetworkSettings)||void 0===t?void 0:t.data)||void 0===e?void 0:e.reduce(((t,e)=>{var i,a;const r=null===(a=null===(i=null==U?void 0:U.currencies)||void 0===i?void 0:i.data)||void 0===a?void 0:a.find((t=>t.currencyCode===e.currency));return r?t.find((t=>t.currencyCode===e.currency))||q.countryCode&&e.countryCode!==_?t:[...t,r]:t}),[])}),[G,_]);return a((()=>{D&&E(D)}),[D]),a((()=>{if(u&&h&&R){const t=null==R?void 0:R.user;if(!t||"/loading"!==C)return;const e=function(t){var e,i;if(!(null===(e=t.impactConnection)||void 0===e?void 0:e.publisher)||!(null===(i=t.impactConnection)||void 0===i?void 0:i.connected))return"/1";const{requiredTaxDocumentType:a,currentTaxDocument:r,withdrawalSettings:o}=t.impactConnection.publisher;return!a||r&&"INACTIVE"!==(null==r?void 0:r.status)&&"NEW"!==(null==r?void 0:r.status)?o?"/submitted":"/4":"/3"}(t);w(e)}}),[u,h,null===(n=null==R?void 0:R.user)||void 0===n?void 0:n.email]),{step:C,setStep:w,context:k,namespace:d(l),loading:"/loading"===C}}();switch(console.log({dashboardProps:this.getGeneralStepTextProps("dashboard_")}),t.step){case"/1":return e("sqm-user-info-form",Object.assign({},this.getGeneralStepTextProps("step1_")));case"/2":return e("sqm-indirect-tax-form",Object.assign({},this.getGeneralStepTextProps("step2_")));case"/3":return e("sqm-docusign-form",Object.assign({},this.getGeneralStepTextProps("step3_")));case"/4":return e("sqm-banking-info-form",Object.assign({},this.getGeneralStepTextProps("step4_")));case"/submitted":return e("sqm-tax-and-cash-dashboard",Object.assign({},this.getGeneralStepTextProps("dashboard_")))}return e(C,null)}};export{k as sqm_tax_and_cash}
@@ -1,4 +1,4 @@
1
- import{c as e,a as t,n as r,y as n,f as a}from"./p-8d37b2a1.js";import{O as u,g as o,d as i}from"./p-94ad6231.js";var c=e((function(e,t){!function(e){function t(e){return function(t,r,n,a,u,o,i){return e(t,r,i)}}function r(e){return function(t,r,n,a){if(!t||!r||"object"!=typeof t||"object"!=typeof r)return e(t,r,n,a);var u=a.get(t),o=a.get(r);if(u&&o)return u===r&&o===t;a.set(t,r),a.set(r,t);var i=e(t,r,n,a);return a.delete(t),a.delete(r),i}}function n(e,t){var r={};for(var n in e)r[n]=e[n];for(var n in t)r[n]=t[n];return r}function a(e){return e.constructor===Object||null==e.constructor}function u(e){return"function"==typeof e.then}function o(e,t){return e===t||e!=e&&t!=t}var i=Object.prototype.toString;function c(e){var t=e.areArraysEqual,r=e.areDatesEqual,n=e.areMapsEqual,c=e.areObjectsEqual,s=e.areRegExpsEqual,f=e.areSetsEqual,l=(0,e.createIsNestedEqual)(d);function d(e,d,p){if(e===d)return!0;if(!e||!d||"object"!=typeof e||"object"!=typeof d)return e!=e&&d!=d;if(a(e)&&a(d))return c(e,d,l,p);var y=Array.isArray(e),m=Array.isArray(d);if(y||m)return y===m&&t(e,d,l,p);var v=i.call(e);return v===i.call(d)&&("[object Date]"===v?r(e,d,l,p):"[object RegExp]"===v?s(e,d,l,p):"[object Map]"===v?n(e,d,l,p):"[object Set]"===v?f(e,d,l,p):"[object Object]"===v||"[object Arguments]"===v?!u(e)&&!u(d)&&c(e,d,l,p):("[object Boolean]"===v||"[object Number]"===v||"[object String]"===v)&&o(e.valueOf(),d.valueOf()))}return d}function s(e,t,r,n){var a=e.length;if(t.length!==a)return!1;for(;a-- >0;)if(!r(e[a],t[a],a,a,e,t,n))return!1;return!0}var f=r(s);function l(e,t){return o(e.valueOf(),t.valueOf())}function d(e,t,r,n){var a=e.size===t.size;if(!a)return!1;if(!e.size)return!0;var u={},o=0;return e.forEach((function(i,c){if(a){var s=!1,f=0;t.forEach((function(a,l){s||u[f]||!(s=r(c,l,o,f,e,t,n)&&r(i,a,c,l,e,t,n))||(u[f]=!0),f++})),o++,a=s}})),a}var p=r(d),y=Object.prototype.hasOwnProperty;function m(e,t,r,n){var a,u=Object.keys(e),o=u.length;if(Object.keys(t).length!==o)return!1;for(;o-- >0;){if("_owner"===(a=u[o])){var i=!!e.$$typeof,c=!!t.$$typeof;if((i||c)&&i!==c)return!1}if(!y.call(t,a)||!r(e[a],t[a],a,a,e,t,n))return!1}return!0}var v=r(m);function q(e,t){return e.source===t.source&&e.flags===t.flags}function b(e,t,r,n){var a=e.size===t.size;if(!a)return!1;if(!e.size)return!0;var u={};return e.forEach((function(o,i){if(a){var c=!1,s=0;t.forEach((function(a,f){c||u[s]||!(c=r(o,a,i,f,e,t,n))||(u[s]=!0),s++})),a=c}})),a}var j=r(b),E=Object.freeze({areArraysEqual:s,areDatesEqual:l,areMapsEqual:d,areObjectsEqual:m,areRegExpsEqual:q,areSetsEqual:b,createIsNestedEqual:t}),g=Object.freeze({areArraysEqual:f,areDatesEqual:l,areMapsEqual:p,areObjectsEqual:v,areRegExpsEqual:q,areSetsEqual:j,createIsNestedEqual:t}),N=c(E);var h=c(n(E,{createIsNestedEqual:function(){return o}}));var x=c(g);var w=c(n(g,{createIsNestedEqual:function(){return o}}));e.circularDeepEqual=function(e,t){return x(e,t,new WeakMap)},e.circularShallowEqual=function(e,t){return w(e,t,new WeakMap)},e.createCustomCircularEqual=function(e){var t=c(n(g,e(g)));return function(e,r,n){return void 0===n&&(n=new WeakMap),t(e,r,n)}},e.createCustomEqual=function(e){return c(n(E,e(E)))},e.deepEqual=function(e,t){return N(e,t,void 0)},e.sameValueZeroEqual=o,e.shallowEqual=function(e,t){return h(e,t,void 0)},Object.defineProperty(e,"__esModule",{value:!0})}(t)}));function s(e){const t=u(),[r,a]=n(t,p(e.namespace),e.initialValue);return n(t,y(e.namespace),[r,a]),[r,a]}function f(e){const t=r(y(e)),n=r(p(e));return t?[n,t[1]]:[void 0,void 0]}function l(e){const t=r(y(e));if(t)return t[1]}function d(e){return r(p(e))}function p(e){return e+"-value"}function y(e){return e+"-state"}function m(e){const t=u(),r=o(e.query,e.variables||{},e.skip),[i,s]=n(t,p(e.namespace),r);return a((()=>{c.deepEqual(r,i)||s(r)}),[r,i]),r}function v(e){return r(p(e))||{data:null,loading:!0,refetch:()=>console.warn("component still loading")}}const q="sq:tax-and-cash",b="sq:tax-form-context",j="sq:user-info-query",E="sq:user-form-context",g="sq:finance-network-settings",N="sq:countries:list",h="sq:countries:query",x="sq:currencies:list",w="sq:currencies:query",C=i.gql`
1
+ import{c as e,a as t,y as r,n,f as a}from"./p-8d37b2a1.js";import{O as u,g as o,d as i}from"./p-94ad6231.js";var c=e((function(e,t){!function(e){function t(e){return function(t,r,n,a,u,o,i){return e(t,r,i)}}function r(e){return function(t,r,n,a){if(!t||!r||"object"!=typeof t||"object"!=typeof r)return e(t,r,n,a);var u=a.get(t),o=a.get(r);if(u&&o)return u===r&&o===t;a.set(t,r),a.set(r,t);var i=e(t,r,n,a);return a.delete(t),a.delete(r),i}}function n(e,t){var r={};for(var n in e)r[n]=e[n];for(var n in t)r[n]=t[n];return r}function a(e){return e.constructor===Object||null==e.constructor}function u(e){return"function"==typeof e.then}function o(e,t){return e===t||e!=e&&t!=t}var i=Object.prototype.toString;function c(e){var t=e.areArraysEqual,r=e.areDatesEqual,n=e.areMapsEqual,c=e.areObjectsEqual,s=e.areRegExpsEqual,f=e.areSetsEqual,l=(0,e.createIsNestedEqual)(d);function d(e,d,p){if(e===d)return!0;if(!e||!d||"object"!=typeof e||"object"!=typeof d)return e!=e&&d!=d;if(a(e)&&a(d))return c(e,d,l,p);var y=Array.isArray(e),m=Array.isArray(d);if(y||m)return y===m&&t(e,d,l,p);var v=i.call(e);return v===i.call(d)&&("[object Date]"===v?r(e,d,l,p):"[object RegExp]"===v?s(e,d,l,p):"[object Map]"===v?n(e,d,l,p):"[object Set]"===v?f(e,d,l,p):"[object Object]"===v||"[object Arguments]"===v?!u(e)&&!u(d)&&c(e,d,l,p):("[object Boolean]"===v||"[object Number]"===v||"[object String]"===v)&&o(e.valueOf(),d.valueOf()))}return d}function s(e,t,r,n){var a=e.length;if(t.length!==a)return!1;for(;a-- >0;)if(!r(e[a],t[a],a,a,e,t,n))return!1;return!0}var f=r(s);function l(e,t){return o(e.valueOf(),t.valueOf())}function d(e,t,r,n){var a=e.size===t.size;if(!a)return!1;if(!e.size)return!0;var u={},o=0;return e.forEach((function(i,c){if(a){var s=!1,f=0;t.forEach((function(a,l){s||u[f]||!(s=r(c,l,o,f,e,t,n)&&r(i,a,c,l,e,t,n))||(u[f]=!0),f++})),o++,a=s}})),a}var p=r(d),y=Object.prototype.hasOwnProperty;function m(e,t,r,n){var a,u=Object.keys(e),o=u.length;if(Object.keys(t).length!==o)return!1;for(;o-- >0;){if("_owner"===(a=u[o])){var i=!!e.$$typeof,c=!!t.$$typeof;if((i||c)&&i!==c)return!1}if(!y.call(t,a)||!r(e[a],t[a],a,a,e,t,n))return!1}return!0}var v=r(m);function q(e,t){return e.source===t.source&&e.flags===t.flags}function b(e,t,r,n){var a=e.size===t.size;if(!a)return!1;if(!e.size)return!0;var u={};return e.forEach((function(o,i){if(a){var c=!1,s=0;t.forEach((function(a,f){c||u[s]||!(c=r(o,a,i,f,e,t,n))||(u[s]=!0),s++})),a=c}})),a}var j=r(b),E=Object.freeze({areArraysEqual:s,areDatesEqual:l,areMapsEqual:d,areObjectsEqual:m,areRegExpsEqual:q,areSetsEqual:b,createIsNestedEqual:t}),g=Object.freeze({areArraysEqual:f,areDatesEqual:l,areMapsEqual:p,areObjectsEqual:v,areRegExpsEqual:q,areSetsEqual:j,createIsNestedEqual:t}),N=c(E);var h=c(n(E,{createIsNestedEqual:function(){return o}}));var x=c(g);var w=c(n(g,{createIsNestedEqual:function(){return o}}));e.circularDeepEqual=function(e,t){return x(e,t,new WeakMap)},e.circularShallowEqual=function(e,t){return w(e,t,new WeakMap)},e.createCustomCircularEqual=function(e){var t=c(n(g,e(g)));return function(e,r,n){return void 0===n&&(n=new WeakMap),t(e,r,n)}},e.createCustomEqual=function(e){return c(n(E,e(E)))},e.deepEqual=function(e,t){return N(e,t,void 0)},e.sameValueZeroEqual=o,e.shallowEqual=function(e,t){return h(e,t,void 0)},Object.defineProperty(e,"__esModule",{value:!0})}(t)}));function s(e){const t=u(),[n,a]=r(t,p(e.namespace),e.initialValue);return r(t,y(e.namespace),[n,a]),[n,a]}function f(e){const t=n(y(e)),r=n(p(e));return t?[r,t[1]]:[void 0,void 0]}function l(e){const t=n(y(e));if(t)return t[1]}function d(e){return n(p(e))}function p(e){return e+"-value"}function y(e){return e+"-state"}function m(e){const t=u(),n=o(e.query,e.variables||{},e.skip),[i,s]=r(t,p(e.namespace),n);return a((()=>{c.deepEqual(n,i)||s(n)}),[n,i]),n}function v(e){return n(p(e))||{data:null,loading:!0,refetch:()=>console.warn("component still loading")}}const q="sq:tax-and-cash",b="sq:tax-form-context",j="sq:user-info-query",E="sq:user-form-context",g="sq:finance-network-settings",N="sq:countries:list",h="sq:countries:query",x="sq:currencies:list",w="sq:currencies:query",C=i.gql`
2
2
  query getUserTaxInfo {
3
3
  user: viewer {
4
4
  ... on User {
@@ -0,0 +1 @@
1
+ var __assign=this&&this.__assign||function(){__assign=Object.assign||function(e){for(var t,i=1,a=arguments.length;i<a;i++){t=arguments[i];for(var r in t)if(Object.prototype.hasOwnProperty.call(t,r))e[r]=t[r]}return e};return __assign.apply(this,arguments)};var __spreadArrays=this&&this.__spreadArrays||function(){for(var e=0,t=0,i=arguments.length;t<i;t++)e+=arguments[t].length;for(var a=Array(e),r=0,t=0;t<i;t++)for(var n=arguments[t],s=0,o=n.length;s<o;s++,r++)a[r]=n[s];return a};System.register(["./p-1e56ab57.system.js","./p-c23bbbc4.system.js","./p-e86ec70c.system.js","./p-4bd679a7.system.js","./p-1a673057.system.js","./p-6333265f.system.js","./p-8f025ca9.system.js","./p-e4762ebf.system.js"],(function(e){"use strict";var t,i,a,r,n,s,o,d,u,c,p,h,m,l,b,f,y,_,g,v,T,x,S,P,C,N,I;return{setters:[function(e){t=e.r;i=e.h},function(e){a=e.u;r=e.f;n=e.m},function(e){s=e.O;o=e.H;d=e.i},function(e){u=e.c},function(){},function(e){c=e.g},function(e){p=e.g;h=e.e;m=e.f;l=e.c;b=e.T;f=e.h;y=e.C;_=e.i;g=e.U;v=e.G;T=e.j;x=e.k;S=e.F;P=e.l;C=e.m;N=e.n},function(e){I=e.L}],execute:function(){function A(e,t){var i=Object.keys(e).filter((function(e){return e.startsWith(t)}));var a=i.reduce((function(i,a){var r;var n=a.replace(t,"");return __assign(__assign({},i),(r={},r[n]=e[a],r))}),{});return a}function k(e){var t,i;if(!((t=e.impactConnection)===null||t===void 0?void 0:t.publisher)||!((i=e.impactConnection)===null||i===void 0?void 0:i.connected)){return"/1"}var a=e.impactConnection.publisher,r=a.requiredTaxDocumentType,n=a.currentTaxDocument,s=a.withdrawalSettings;if(r&&(!n||(n===null||n===void 0?void 0:n.status)==="INACTIVE"||(n===null||n===void 0?void 0:n.status)==="NEW")){return"/3"}if(!s)return"/4";return"/submitted"}function L(){var e,t,i,n;var d=s();var u=o();var c=h({namespace:l,initialValue:"/loading"}),I=c[0],A=c[1];var L=h({namespace:b,initialValue:{}}),w=L[0],B=L[1];var D=h({namespace:f,initialValue:{firstName:undefined,lastName:undefined,email:undefined,countryCode:undefined,currency:undefined}}),E=D[0],R=D[1];var F=h({namespace:y,initialValue:[]}),q=F[0],j=F[1];var V=h({namespace:_,initialValue:[]}),G=V[0],H=V[1];var O=m({namespace:g,query:v,skip:!u}).data;var U=((i=(t=(e=O===null||O===void 0?void 0:O.user)===null||e===void 0?void 0:e.impactConnection)===null||t===void 0?void 0:t.publisher)===null||i===void 0?void 0:i.countryCode)||E.countryCode;m({namespace:T,query:x,skip:!u});var W=m({namespace:S,query:P,skip:!u,variables:{filter:J()}}),M=W.data,Q=W.refetch;var Y=m({namespace:C,query:N,skip:!u}).data;var z=a((function(){var e,t;var i=(t=(e=M===null||M===void 0?void 0:M.impactFinanceNetworkSettings)===null||e===void 0?void 0:e.data)===null||t===void 0?void 0:t.reduce((function(e,t){var i,a;var r=(a=(i=Y===null||Y===void 0?void 0:Y.currencies)===null||i===void 0?void 0:i.data)===null||a===void 0?void 0:a.find((function(e){return e.currencyCode===t.currency}));if(!r)return e;if(e.find((function(e){return e.currencyCode===t.currency})))return e;if(E.countryCode&&t.countryCode!==U)return e;return __spreadArrays(e,[r])}),[]);return i}),[M,U]);r((function(){if(z)j(z)}),[z]);r((function(){if(!d||!u)return;if(O){var e=O===null||O===void 0?void 0:O.user;if(!e||I!=="/loading")return;var t=k(e);A(t)}}),[d,u,(n=O===null||O===void 0?void 0:O.user)===null||n===void 0?void 0:n.email]);function J(){var e,t,i;if(I==="/4")return{currency_eq:(i=(t=(e=O===null||O===void 0?void 0:O.user)===null||e===void 0?void 0:e.impactConnection)===null||t===void 0?void 0:t.publisher)===null||i===void 0?void 0:i.currency};if(U)return{countryCode_eq:U};return{}}return{step:I,setStep:A,context:w,namespace:p(l),loading:I==="/loading"}}var w=e("sqm_tax_and_cash",function(){function e(e){t(this,e);this.step1_firstName="First name";this.step1_lastName="Last name";this.step1_email="Email";this.step1_country="Country";this.step1_currency="Currency";this.step1_allowBankingCollection="I have read the {termsAndConditionsLink} and allow impact.com to collect my tax and banking information";this.step1_formStep="Step 1 of 4";this.step1_personalInformation="Personal Information";this.termsAndConditionsLabel="terms and conditions";this.step1_submitButton="Continue";this.step2_formStep="Step 2 of 4";this.step2_indirectTax="Indirect Tax";this.step2_indirectTaxDescription="Indirect Taxes (e.g. VAT, HST, GST) are transactional based taxes that are required to be levied by service providers by most tax authorities.";this.step2_indirectTaxDetails="Indirect Tax Details";this.step2_indirectTaxDetailsDescription="Not sure if you are registered for indirect tax? Contact our Support team to find out more.";this.step2_otherRegion="I am registered for Indirect Tax in a different Country / Region";this.otherRegionSubtext="IIf you represent a business based outside of the US may be registered. Not sure? Contact our Support team to find out more.";this.step2_notRegistered="I am not registered for Indirect Tax";this.notRegisteredSubtext="If you’re joining this referral program as an individual or you’re based in the US, then you’re not registered.";this.step2_selectedRegion="Country / Region of Indirect Tax";this.step2_province="Province";this.step2_indirectTaxNumber="{taxType, select, GST {GST Number} HST {HST Number} VAT {VAT Number} CT {CT Number} SST {SST Number} GENERAL {Indirect Tax Number}}";this.step2_qstNumber="QST Number";this.step2_isRegisteredQST="I am registered for QST Tax";this.step2_isRegisteredSubRegionIncomeTax="I am an individual registered for Income Tax purposes in Spain, and withholding tax will apply to any payments made to me.";this.step2_subRegion="Sub-region";this.step2_subRegionTaxNumberLabel="Income Tax Number";this.step2_submitButton="Continue";this.step2_backButton="Back";this.step2_cannotChangeInfoAlert="Changes to your personal information and indirect tax can only be made through our Support team after you complete this step. Ensure these are correct before continuing.";this.step2_indirectTaxNumberError="{taxType, select, GST {GST Number} HST {HST Number} VAT {VAT Number} CT {CT Number} SST {SST Number} GENERAL {Indirect Tax Number}} is required";this.step3_formStep="Step 3 of 4";this.step3_taxForm="Tax form";this.step3_taxFormLabel="{documentType} Tax Form";this.step3_participantType="Participant type";this.step3_businessEntity="I represent a company";this.step3_individualParticipant="I am an individual participant";this.step3_taxFormDescription="Participants based in the US and partnering with US-based brands need to submit a {documentType} form.";this.step3_taxFormDescriptionIndividualParticipant="Participants residing outside of the US, joining the referral program of a US-based company, need to submit a {documentType} form.";this.step3_taxFormDescriptionBusinessEntity="Participants residing outside of the US who represent a business entity need to submit a {documentType} form.";this.stop3NotBasedInUS="Not based in the US?";this.step3_banner="For your security, we automatically end your session when you have not interacted with the form after 20 minutes.";this.step3_checkboxLabel="Form submission";this.step3_checkboxDescription="I have completed and submitted my tax form";this.step3_docusignExpired="For your security and privacy, we automatically end your session after 20 minutes of inactivity. Please refresh and re-enter your tax information to continue.";this.step3_docusignCompleted="Your document has been completed and submitted.";this.step3_docusignError="There was a problem displaying this form. Please refresh the page. If this problem continues, contact Support.";this.step3_refreshButton="Refresh Page";this.step3_backButton="Back";this.step3_formSubmissionError="This field is required";this.step4_formStep="Step 4 of 4";this.step4_taxAndPayouts="Tax and Payouts";this.step4_taxAndPayoutsDescription="Submit your tax documents and add your banking information to receive your rewards.";this.step4_directlyToBankAccount="Directly to my bank account";this.step4_toPayPalAccount="PayPal (2% processing fee capped to {feeCap})";this.step4_paymentScheduleBalanceThreshold="Pay me when my balance reaches a threshold";this.step4_paymentScheduleFixedDay="Pay me on a fixed day of the month";this.step4_paymentDaySelectLabel="Payment Day";this.step4_paymentThresholdSelectLabel="Payment Threshold";this.step4_paymentDayFirstOfMonthLabelText="1st of the month";this.step4_paymentDayFifteenthOfMonthLabelText="15th of the month";this.step4_paymentMethod="Payment Method";this.step4_paymentSchedule="Payment Schedule";this.step4_paymentMethodSubtext="Payouts will be sent on the first day of each month from our referral program provider, impact.com.";this.step4_payPalInputLabel="PayPal Email";this.step4_bankLocationLabel="Bank Country Location";this.step4_beneficiaryAccountNameLabel="Beneficiary Account Name";this.step4_bankAccountTypeLabel="Bank Account Type";this.step4_checkingSelectItemLabel="Checking";this.step4_savingsSelectItemLabel="Savings";this.step4_bankAccountNumberLabel="Bank Account Number";this.step4_ibanLabel="IBAN";this.step4_swiftCodeLabel="SWIFT Code";this.step4_routingCodeLabel="Routing Code";this.step4_bankNameLabel="Bank Name";this.step4_classificationEntityLabel="Classification Entity";this.step4_businessSelectItemLabel="Business";this.step4_individualSelectItemLabel="Individual";this.step4_foreignSelectItemLabel="Foreign";this.step4_classificationCPFLabel="Classification CPF";this.step4_patronymicNameLabel="Patronymic Name";this.step4_voCodeLabel="VO Code";this.step4_agencyCodeLabel="Agency Code";this.step4_branchCodeLabel="Branch Code";this.step4_classificationLabel="Classification";this.step4_taxPayerIdLabel="Taxpayer ID";this.step4_bankAddressLabel="Bank Address";this.step4_bankCityLabel="Bank City";this.step4_bankStateLabel="Bank Province / State";this.step4_bankPostalCodeLabel="Bank Postal Code";this.step4_cannotChangeInfoAlert="Your payout information cannot be changed after saving. Ensure your payout method and schedule are correct before submitting.";this.dashboard_statusTextActive="Active";this.dashboard_statusTextNotActive="Invalid Tax Form";this.dashboard_statusTextNotVerified="Not Verified";this.dashboard_badgeTextSubmittedOn="Submitted on {dateSubmitted}";this.dashboard_badgeTextSubmittedOnW8="Submitted on {dateSubmitted}. Valid for three years after submission.";this.dashboard_badgeTextAwaitingReview="Awaiting review. Submitted on {dateSubmitted}.";this.dashboard_taxAlertHeaderNotActiveW9="Your W9 tax form has personal information that doesn’t match your profile";this.dashboard_taxAlertHeaderNotActiveW8="{documentType} tax form is invalid";this.dashboard_taxAlertNotActiveMessageW9="Please resubmit a new {documentType} form.";this.dashboard_taxAlertNotActiveMessageW8="Your tax form may have expired or has personal information that doesn’t match your profile. Please submit a new W8-BEN form.";this.dashboard_invalidForm="Ensure your information matches your profile and resubmit a new document.";this.dashboard_bankingInformationSectionHeader="Banking Information";this.dashboard_taxDocumentSectionHeader="Tax documents";this.dashboard_taxDocumentSectionSubHeader="{documentType} tax form";this.dashboard_noFormNeededSubtext="Tax documents are only required if you are based in the US. If your country of residence has changed, please contact Support.";this.dashboard_indirectTaxInfoSectionHeader="Indirect tax";this.dashboard_indirectTaxInfoCanada="Registered in {province}, {country}";this.dashboard_indirectTaxInfoOtherCountry="Registered in {country}";this.dashboard_indirectTaxInfoSpain="Registered in {country}, {subRegion}";this.dashboard_indirectTaxTooltipSupport="To make changes to your indirect tax information, please contact Support.";this.dashboard_indirectTaxDetails="{indirectTaxType} number: {indirectTaxNumber}";this.dashboard_newFormButton="Submit New Form";this.dashboard_editPaymentInformationButton="Edit Payout Information";this.dashboard_notRegisteredForTax="Not registered. Participants representing a company in countries that enforce indirect tax (e.g. GST, HST, VAT) must add their indirect tax information.";this.dashboard_qstNumber="QST number: {qstNumber}";this.dashboard_subRegionTaxNumber="Income tax number: {incomeTaxNumber}";this.dashboard_statusBadgeText="{badgeText, select, payoutToday {Payout Today} nextPayout {Next Payout} }";this.dashboard_thresholdPayoutText="Next payout occurs when balance is";this.dashboard_accountText="Account";this.dashboard_errorTitleText="There was an error with your payout infomation";this.dashboard_errorDescriptionText="Please ensure your payout information is correct. If this problem continues, contact Support.";this.generalErrorTitle="There was a problem submitting your information";this.generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.";this.fieldRequiredError="{fieldName} is required";this.continueButton="Continue";this.isPartnerAlertHeader="An account with this email already exists with our referral program provider, impact.com";this.isPartnerAlertDescription="If you don’t recognize this referral program provider or believe this is a mistake, please contact Support or sign up for this referral program with a different email.";n(this)}e.prototype.disconnectedCallback=function(){};e.prototype.getGeneralStepTextProps=function(e){var t=c(this);return __assign(__assign({},A(t,e)),{generalErrorTitle:t.generalErrorTitle,generalErrorDescription:t.generalErrorDescription,fieldRequiredError:t.fieldRequiredError,submitButton:t.continueButton,isPartnerAlertHeader:t.isPartnerAlertHeader,isPartnerAlertDescription:t.isPartnerAlertDescription})};e.prototype.render=function(){var e=d()?B(this):L();console.log({dashboardProps:this.getGeneralStepTextProps("dashboard_")});switch(e.step){case"/1":return i("sqm-user-info-form",Object.assign({},this.getGeneralStepTextProps("step1_")));case"/2":return i("sqm-indirect-tax-form",Object.assign({},this.getGeneralStepTextProps("step2_")));case"/3":return i("sqm-docusign-form",Object.assign({},this.getGeneralStepTextProps("step3_")));case"/4":return i("sqm-banking-info-form",Object.assign({},this.getGeneralStepTextProps("step4_")));case"/submitted":return i("sqm-tax-and-cash-dashboard",Object.assign({},this.getGeneralStepTextProps("dashboard_")))}return i(I,null)};return e}());function B(e){var t=h({namespace:l,initialValue:"/1"}),i=t[0],a=t[1];return u({step:i,setStep:a},e.demoData||{},{arrayMerge:function(e,t){return t}})}}}}));
@@ -1 +1 @@
1
- var __makeTemplateObject=this&&this.__makeTemplateObject||function(e,n){if(Object.defineProperty){Object.defineProperty(e,"raw",{value:n})}else{e.raw=n}return e};System.register(["./p-c23bbbc4.system.js","./p-e86ec70c.system.js"],(function(e){"use strict";var n,r,t,a,u,i,c,o;return{setters:[function(e){n=e.c;r=e.a;t=e.n;a=e.y;u=e.f},function(e){i=e.O;c=e.g;o=e.d}],execute:function(){e({a:d,b:q,d:f,e:l,f:m,g:p,u:v});var s=n((function(e,n){(function(e,r){r(n)})(r,(function(e){function n(e){return function n(r,t,a,u,i,c,o){return e(r,t,o)}}function r(e){return function n(r,t,a,u){if(!r||!t||typeof r!=="object"||typeof t!=="object"){return e(r,t,a,u)}var i=u.get(r);var c=u.get(t);if(i&&c){return i===t&&c===r}u.set(r,t);u.set(t,r);var o=e(r,t,a,u);u.delete(r);u.delete(t);return o}}function t(e,n){var r={};for(var t in e){r[t]=e[t]}for(var t in n){r[t]=n[t]}return r}function a(e){return e.constructor===Object||e.constructor==null}function u(e){return typeof e.then==="function"}function i(e,n){return e===n||e!==e&&n!==n}var c="[object Arguments]";var o="[object Boolean]";var s="[object Date]";var l="[object RegExp]";var f="[object Map]";var d="[object Number]";var v="[object Object]";var p="[object Set]";var y="[object String]";var m=Object.prototype.toString;function q(e){var n=e.areArraysEqual,r=e.areDatesEqual,t=e.areMapsEqual,q=e.areObjectsEqual,b=e.areRegExpsEqual,g=e.areSetsEqual,E=e.createIsNestedEqual;var h=E(j);function j(e,E,j){if(e===E){return true}if(!e||!E||typeof e!=="object"||typeof E!=="object"){return e!==e&&E!==E}if(a(e)&&a(E)){return q(e,E,h,j)}var w=Array.isArray(e);var O=Array.isArray(E);if(w||O){return w===O&&n(e,E,h,j)}var C=m.call(e);if(C!==m.call(E)){return false}if(C===s){return r(e,E,h,j)}if(C===l){return b(e,E,h,j)}if(C===f){return t(e,E,h,j)}if(C===p){return g(e,E,h,j)}if(C===v||C===c){return u(e)||u(E)?false:q(e,E,h,j)}if(C===o||C===d||C===y){return i(e.valueOf(),E.valueOf())}return false}return j}function b(e,n,r,t){var a=e.length;if(n.length!==a){return false}while(a-- >0){if(!r(e[a],n[a],a,a,e,n,t)){return false}}return true}var g=r(b);function E(e,n){return i(e.valueOf(),n.valueOf())}function h(e,n,r,t){var a=e.size===n.size;if(!a){return false}if(!e.size){return true}var u={};var i=0;e.forEach((function(c,o){if(!a){return}var s=false;var l=0;n.forEach((function(a,f){if(!s&&!u[l]&&(s=r(o,f,i,l,e,n,t)&&r(c,a,o,f,e,n,t))){u[l]=true}l++}));i++;a=s}));return a}var j=r(h);var w="_owner";var O=Object.prototype.hasOwnProperty;function C(e,n,r,t){var a=Object.keys(e);var u=a.length;if(Object.keys(n).length!==u){return false}var i;while(u-- >0){i=a[u];if(i===w){var c=!!e.$$typeof;var o=!!n.$$typeof;if((c||o)&&c!==o){return false}}if(!O.call(n,i)||!r(e[i],n[i],i,i,e,n,t)){return false}}return true}var N=r(C);function k(e,n){return e.source===n.source&&e.flags===n.flags}function F(e,n,r,t){var a=e.size===n.size;if(!a){return false}if(!e.size){return true}var u={};e.forEach((function(i,c){if(!a){return}var o=false;var s=0;n.forEach((function(a,l){if(!o&&!u[s]&&(o=r(i,a,c,l,e,n,t))){u[s]=true}s++}));a=o}));return a}var x=r(F);var T=Object.freeze({areArraysEqual:b,areDatesEqual:E,areMapsEqual:h,areObjectsEqual:C,areRegExpsEqual:k,areSetsEqual:F,createIsNestedEqual:n});var S=Object.freeze({areArraysEqual:g,areDatesEqual:E,areMapsEqual:j,areObjectsEqual:N,areRegExpsEqual:k,areSetsEqual:x,createIsNestedEqual:n});var I=q(T);function _(e,n){return I(e,n,undefined)}var A=q(t(T,{createIsNestedEqual:function(){return i}}));function M(e,n){return A(e,n,undefined)}var D=q(S);function z(e,n){return D(e,n,new WeakMap)}var P=q(t(S,{createIsNestedEqual:function(){return i}}));function $(e,n){return P(e,n,new WeakMap)}function U(e){return q(t(T,e(T)))}function R(e){var n=q(t(S,e(S)));return function(e,r,t){if(t===void 0){t=new WeakMap}return n(e,r,t)}}e.circularDeepEqual=z;e.circularShallowEqual=$;e.createCustomCircularEqual=R;e.createCustomEqual=U;e.deepEqual=_;e.sameValueZeroEqual=i;e.shallowEqual=M;Object.defineProperty(e,"__esModule",{value:true})}))}));function l(e){var n=i();var r=a(n,p(e.namespace),e.initialValue),t=r[0],u=r[1];a(n,y(e.namespace),[t,u]);return[t,u]}function f(e){var n=t(y(e));var r=t(p(e));if(!n)return[undefined,undefined];return[r,n[1]]}function d(e){var n=t(y(e));if(!n)return undefined;return n[1]}function v(e){var n=t(p(e));return n}function p(e){return e+"-value"}function y(e){return e+"-state"}function m(e){var n=i();var r=c(e.query,e.variables||{},e.skip);var t=a(n,p(e.namespace),r),o=t[0],l=t[1];u((function(){if(s.deepEqual(r,o))return;l(r)}),[r,o]);return r}function q(e){var n=t(p(e));if(!n)return{data:null,loading:true,refetch:function(){return console.warn("component still loading")}};return n}var b=e("c","sq:tax-and-cash");var g=e("T","sq:tax-form-context");var E=e("U","sq:user-info-query");var h=e("h","sq:user-form-context");var j=e("F","sq:finance-network-settings");var w=e("i","sq:countries:list");var O=e("j","sq:countries:query");var C=e("C","sq:currencies:list");var N=e("m","sq:currencies:query");var k=e("G",o.gql(__makeTemplateObject(["\n query getUserTaxInfo {\n user: viewer {\n ... on User {\n firstName\n lastName\n email\n countryCode\n customFields\n impactConnection {\n connected\n user {\n firstName\n lastName\n }\n publisher {\n countryCode\n currency\n requiredTaxDocumentType\n indirectTaxId\n currentTaxDocument {\n status\n type\n dateCreated\n }\n withdrawalSettings {\n paymentMethod\n paypalEmailAddress\n bankCountry\n bankAccountNumber\n paymentSchedulingType\n paymentThreshold\n paymentDay\n }\n payoutsAccount {\n hold\n balance\n }\n }\n }\n }\n }\n }\n"],["\n query getUserTaxInfo {\n user: viewer {\n ... on User {\n firstName\n lastName\n email\n countryCode\n customFields\n impactConnection {\n connected\n user {\n firstName\n lastName\n }\n publisher {\n countryCode\n currency\n requiredTaxDocumentType\n indirectTaxId\n currentTaxDocument {\n status\n type\n dateCreated\n }\n withdrawalSettings {\n paymentMethod\n paypalEmailAddress\n bankCountry\n bankAccountNumber\n paymentSchedulingType\n paymentThreshold\n paymentDay\n }\n payoutsAccount {\n hold\n balance\n }\n }\n }\n }\n }\n }\n"])));var F=e("k",o.gql(__makeTemplateObject(["\n query getCountries {\n impactPayoutCountries(limit: 1000) {\n data {\n countryCode\n displayName\n }\n }\n }\n"],["\n query getCountries {\n impactPayoutCountries(limit: 1000) {\n data {\n countryCode\n displayName\n }\n }\n }\n"])));var x=e("n",o.gql(__makeTemplateObject(["\n query currencies {\n currencies(limit: 300) {\n data {\n displayName\n currencyCode\n }\n }\n }\n"],["\n query currencies {\n currencies(limit: 300) {\n data {\n displayName\n currencyCode\n }\n }\n }\n"])));var T=e("l",o.gql(__makeTemplateObject(["\n query impactFinanceNetworkSettings(\n $filter: ImpactFinanceNetworkSettingsFilterInput\n ) {\n impactFinanceNetworkSettings(filter: $filter, limit: 1000) {\n data {\n countryCode\n currency\n defaultFinancePaymentMethodId\n thresholdOptions\n withdrawalSettingId\n internationalEftFee\n foreignFxFee\n defaultFxFee\n }\n totalCount\n }\n }\n"],["\n query impactFinanceNetworkSettings(\n $filter: ImpactFinanceNetworkSettingsFilterInput\n ) {\n impactFinanceNetworkSettings(filter: $filter, limit: 1000) {\n data {\n countryCode\n currency\n defaultFinancePaymentMethodId\n thresholdOptions\n withdrawalSettingId\n internationalEftFee\n foreignFxFee\n defaultFxFee\n }\n totalCount\n }\n }\n"])))}}}));
1
+ var __makeTemplateObject=this&&this.__makeTemplateObject||function(e,n){if(Object.defineProperty){Object.defineProperty(e,"raw",{value:n})}else{e.raw=n}return e};System.register(["./p-c23bbbc4.system.js","./p-e86ec70c.system.js"],(function(e){"use strict";var n,r,t,a,u,i,c,o;return{setters:[function(e){n=e.c;r=e.a;t=e.y;a=e.n;u=e.f},function(e){i=e.O;c=e.g;o=e.d}],execute:function(){e({a:d,b:q,d:f,e:l,f:m,g:p,u:v});var s=n((function(e,n){(function(e,r){r(n)})(r,(function(e){function n(e){return function n(r,t,a,u,i,c,o){return e(r,t,o)}}function r(e){return function n(r,t,a,u){if(!r||!t||typeof r!=="object"||typeof t!=="object"){return e(r,t,a,u)}var i=u.get(r);var c=u.get(t);if(i&&c){return i===t&&c===r}u.set(r,t);u.set(t,r);var o=e(r,t,a,u);u.delete(r);u.delete(t);return o}}function t(e,n){var r={};for(var t in e){r[t]=e[t]}for(var t in n){r[t]=n[t]}return r}function a(e){return e.constructor===Object||e.constructor==null}function u(e){return typeof e.then==="function"}function i(e,n){return e===n||e!==e&&n!==n}var c="[object Arguments]";var o="[object Boolean]";var s="[object Date]";var l="[object RegExp]";var f="[object Map]";var d="[object Number]";var v="[object Object]";var p="[object Set]";var y="[object String]";var m=Object.prototype.toString;function q(e){var n=e.areArraysEqual,r=e.areDatesEqual,t=e.areMapsEqual,q=e.areObjectsEqual,b=e.areRegExpsEqual,g=e.areSetsEqual,E=e.createIsNestedEqual;var h=E(j);function j(e,E,j){if(e===E){return true}if(!e||!E||typeof e!=="object"||typeof E!=="object"){return e!==e&&E!==E}if(a(e)&&a(E)){return q(e,E,h,j)}var w=Array.isArray(e);var O=Array.isArray(E);if(w||O){return w===O&&n(e,E,h,j)}var C=m.call(e);if(C!==m.call(E)){return false}if(C===s){return r(e,E,h,j)}if(C===l){return b(e,E,h,j)}if(C===f){return t(e,E,h,j)}if(C===p){return g(e,E,h,j)}if(C===v||C===c){return u(e)||u(E)?false:q(e,E,h,j)}if(C===o||C===d||C===y){return i(e.valueOf(),E.valueOf())}return false}return j}function b(e,n,r,t){var a=e.length;if(n.length!==a){return false}while(a-- >0){if(!r(e[a],n[a],a,a,e,n,t)){return false}}return true}var g=r(b);function E(e,n){return i(e.valueOf(),n.valueOf())}function h(e,n,r,t){var a=e.size===n.size;if(!a){return false}if(!e.size){return true}var u={};var i=0;e.forEach((function(c,o){if(!a){return}var s=false;var l=0;n.forEach((function(a,f){if(!s&&!u[l]&&(s=r(o,f,i,l,e,n,t)&&r(c,a,o,f,e,n,t))){u[l]=true}l++}));i++;a=s}));return a}var j=r(h);var w="_owner";var O=Object.prototype.hasOwnProperty;function C(e,n,r,t){var a=Object.keys(e);var u=a.length;if(Object.keys(n).length!==u){return false}var i;while(u-- >0){i=a[u];if(i===w){var c=!!e.$$typeof;var o=!!n.$$typeof;if((c||o)&&c!==o){return false}}if(!O.call(n,i)||!r(e[i],n[i],i,i,e,n,t)){return false}}return true}var N=r(C);function k(e,n){return e.source===n.source&&e.flags===n.flags}function F(e,n,r,t){var a=e.size===n.size;if(!a){return false}if(!e.size){return true}var u={};e.forEach((function(i,c){if(!a){return}var o=false;var s=0;n.forEach((function(a,l){if(!o&&!u[s]&&(o=r(i,a,c,l,e,n,t))){u[s]=true}s++}));a=o}));return a}var x=r(F);var T=Object.freeze({areArraysEqual:b,areDatesEqual:E,areMapsEqual:h,areObjectsEqual:C,areRegExpsEqual:k,areSetsEqual:F,createIsNestedEqual:n});var S=Object.freeze({areArraysEqual:g,areDatesEqual:E,areMapsEqual:j,areObjectsEqual:N,areRegExpsEqual:k,areSetsEqual:x,createIsNestedEqual:n});var I=q(T);function _(e,n){return I(e,n,undefined)}var A=q(t(T,{createIsNestedEqual:function(){return i}}));function M(e,n){return A(e,n,undefined)}var D=q(S);function z(e,n){return D(e,n,new WeakMap)}var P=q(t(S,{createIsNestedEqual:function(){return i}}));function $(e,n){return P(e,n,new WeakMap)}function U(e){return q(t(T,e(T)))}function R(e){var n=q(t(S,e(S)));return function(e,r,t){if(t===void 0){t=new WeakMap}return n(e,r,t)}}e.circularDeepEqual=z;e.circularShallowEqual=$;e.createCustomCircularEqual=R;e.createCustomEqual=U;e.deepEqual=_;e.sameValueZeroEqual=i;e.shallowEqual=M;Object.defineProperty(e,"__esModule",{value:true})}))}));function l(e){var n=i();var r=t(n,p(e.namespace),e.initialValue),a=r[0],u=r[1];t(n,y(e.namespace),[a,u]);return[a,u]}function f(e){var n=a(y(e));var r=a(p(e));if(!n)return[undefined,undefined];return[r,n[1]]}function d(e){var n=a(y(e));if(!n)return undefined;return n[1]}function v(e){var n=a(p(e));return n}function p(e){return e+"-value"}function y(e){return e+"-state"}function m(e){var n=i();var r=c(e.query,e.variables||{},e.skip);var a=t(n,p(e.namespace),r),o=a[0],l=a[1];u((function(){if(s.deepEqual(r,o))return;l(r)}),[r,o]);return r}function q(e){var n=a(p(e));if(!n)return{data:null,loading:true,refetch:function(){return console.warn("component still loading")}};return n}var b=e("c","sq:tax-and-cash");var g=e("T","sq:tax-form-context");var E=e("U","sq:user-info-query");var h=e("h","sq:user-form-context");var j=e("F","sq:finance-network-settings");var w=e("i","sq:countries:list");var O=e("j","sq:countries:query");var C=e("C","sq:currencies:list");var N=e("m","sq:currencies:query");var k=e("G",o.gql(__makeTemplateObject(["\n query getUserTaxInfo {\n user: viewer {\n ... on User {\n firstName\n lastName\n email\n countryCode\n customFields\n impactConnection {\n connected\n user {\n firstName\n lastName\n }\n publisher {\n countryCode\n currency\n requiredTaxDocumentType\n indirectTaxId\n currentTaxDocument {\n status\n type\n dateCreated\n }\n withdrawalSettings {\n paymentMethod\n paypalEmailAddress\n bankCountry\n bankAccountNumber\n paymentSchedulingType\n paymentThreshold\n paymentDay\n }\n payoutsAccount {\n hold\n balance\n }\n }\n }\n }\n }\n }\n"],["\n query getUserTaxInfo {\n user: viewer {\n ... on User {\n firstName\n lastName\n email\n countryCode\n customFields\n impactConnection {\n connected\n user {\n firstName\n lastName\n }\n publisher {\n countryCode\n currency\n requiredTaxDocumentType\n indirectTaxId\n currentTaxDocument {\n status\n type\n dateCreated\n }\n withdrawalSettings {\n paymentMethod\n paypalEmailAddress\n bankCountry\n bankAccountNumber\n paymentSchedulingType\n paymentThreshold\n paymentDay\n }\n payoutsAccount {\n hold\n balance\n }\n }\n }\n }\n }\n }\n"])));var F=e("k",o.gql(__makeTemplateObject(["\n query getCountries {\n impactPayoutCountries(limit: 1000) {\n data {\n countryCode\n displayName\n }\n }\n }\n"],["\n query getCountries {\n impactPayoutCountries(limit: 1000) {\n data {\n countryCode\n displayName\n }\n }\n }\n"])));var x=e("n",o.gql(__makeTemplateObject(["\n query currencies {\n currencies(limit: 300) {\n data {\n displayName\n currencyCode\n }\n }\n }\n"],["\n query currencies {\n currencies(limit: 300) {\n data {\n displayName\n currencyCode\n }\n }\n }\n"])));var T=e("l",o.gql(__makeTemplateObject(["\n query impactFinanceNetworkSettings(\n $filter: ImpactFinanceNetworkSettingsFilterInput\n ) {\n impactFinanceNetworkSettings(filter: $filter, limit: 1000) {\n data {\n countryCode\n currency\n defaultFinancePaymentMethodId\n thresholdOptions\n withdrawalSettingId\n internationalEftFee\n foreignFxFee\n defaultFxFee\n }\n totalCount\n }\n }\n"],["\n query impactFinanceNetworkSettings(\n $filter: ImpactFinanceNetworkSettingsFilterInput\n ) {\n impactFinanceNetworkSettings(filter: $filter, limit: 1000) {\n data {\n countryCode\n currency\n defaultFinancePaymentMethodId\n thresholdOptions\n withdrawalSettingId\n internationalEftFee\n foreignFxFee\n defaultFxFee\n }\n totalCount\n }\n }\n"])))}}}));
@@ -1 +1 @@
1
- System.register(["./p-1e56ab57.system.js","./p-c23bbbc4.system.js","./p-923f5b38.system.js","./p-e86ec70c.system.js"],(function(e,t){"use strict";var r,a,o;return{setters:[function(e){r=e.p;a=e.H;o=e.b},function(){},function(){},function(){}],execute:function(){var e=function(){{i(a.prototype)}var e=t.meta.url;var o={};if(e!==""){o.resourcesUrl=new URL(".",e).href}return r(o)};var i=function(e){var t=e.cloneNode;e.cloneNode=function(e){if(this.nodeName==="TEMPLATE"){return t.call(this,e)}var r=t.call(this,false);var a=this.childNodes;if(e){for(var o=0;o<a.length;o++){if(a[o].nodeType!==2){r.appendChild(a[o].cloneNode(true))}}}return r}};e().then((function(e){return o(JSON.parse('[["p-a1cf1842.system",[[4,"sqm-stencilbook",{"ignored":[32]}]]],["p-5215253d.system",[[1,"sqm-tax-and-cash",{"step1_firstName":[1,"step-1_first-name"],"step1_lastName":[1,"step-1_last-name"],"step1_email":[1,"step-1_email"],"step1_country":[1,"step-1_country"],"step1_currency":[1,"step-1_currency"],"step1_allowBankingCollection":[1,"step-1_allow-banking-collection"],"step1_formStep":[1,"step-1_form-step"],"step1_personalInformation":[1,"step-1_personal-information"],"termsAndConditionsLabel":[1,"terms-and-conditions-label"],"step1_submitButton":[1,"step-1_submit-button"],"step2_formStep":[1,"step-2_form-step"],"step2_indirectTax":[1,"step-2_indirect-tax"],"step2_indirectTaxDescription":[1,"step-2_indirect-tax-description"],"step2_indirectTaxDetails":[1,"step-2_indirect-tax-details"],"step2_indirectTaxDetailsDescription":[1,"step-2_indirect-tax-details-description"],"step2_otherRegion":[1,"step-2_other-region"],"otherRegionSubtext":[1,"other-region-subtext"],"step2_notRegistered":[1,"step-2_not-registered"],"notRegisteredSubtext":[1,"not-registered-subtext"],"step2_selectedRegion":[1,"step-2_selected-region"],"step2_province":[1,"step-2_province"],"step2_indirectTaxNumber":[1,"step-2_indirect-tax-number"],"step2_qstNumber":[1,"step-2_qst-number"],"step2_isRegisteredQST":[1,"step-2_is-registered-q-s-t"],"step2_isRegisteredSubRegionIncomeTax":[1,"step-2_is-registered-sub-region-income-tax"],"step2_subRegion":[1,"step-2_sub-region"],"step2_subRegionTaxNumberLabel":[1,"step-2_sub-region-tax-number-label"],"step2_submitButton":[1,"step-2_submit-button"],"step2_backButton":[1,"step-2_back-button"],"step2_cannotChangeInfoAlert":[1,"step-2_cannot-change-info-alert"],"step2_indirectTaxNumberError":[1,"step-2_indirect-tax-number-error"],"step3_formStep":[1,"step-3_form-step"],"step3_taxForm":[1,"step-3_tax-form"],"step3_taxFormLabel":[1,"step-3_tax-form-label"],"step3_participantType":[1,"step-3_participant-type"],"step3_businessEntity":[1,"step-3_business-entity"],"step3_individualParticipant":[1,"step-3_individual-participant"],"step3_taxFormDescription":[1,"step-3_tax-form-description"],"step3_taxFormDescriptionIndividualParticipant":[1,"step-3_tax-form-description-individual-participant"],"step3_taxFormDescriptionBusinessEntity":[1,"step-3_tax-form-description-business-entity"],"stop3NotBasedInUS":[1,"stop-3-not-based-in-u-s"],"step3_banner":[1,"step-3_banner"],"step3_checkboxLabel":[1,"step-3_checkbox-label"],"step3_checkboxDescription":[1,"step-3_checkbox-description"],"step3_docusignExpired":[1,"step-3_docusign-expired"],"step3_docusignCompleted":[1,"step-3_docusign-completed"],"step3_docusignError":[1,"step-3_docusign-error"],"step3_refreshButton":[1,"step-3_refresh-button"],"step3_backButton":[1,"step-3_back-button"],"step3_formSubmissionError":[1,"step-3_form-submission-error"],"step4_formStep":[1,"step-4_form-step"],"step4_taxAndPayouts":[1,"step-4_tax-and-payouts"],"step4_taxAndPayoutsDescription":[1,"step-4_tax-and-payouts-description"],"step4_directlyToBankAccount":[1,"step-4_directly-to-bank-account"],"step4_toPayPalAccount":[1,"step-4_to-pay-pal-account"],"step4_paymentScheduleBalanceThreshold":[1,"step-4_payment-schedule-balance-threshold"],"step4_paymentScheduleFixedDay":[1,"step-4_payment-schedule-fixed-day"],"step4_paymentDaySelectLabel":[1,"step-4_payment-day-select-label"],"step4_paymentThresholdSelectLabel":[1,"step-4_payment-threshold-select-label"],"step4_paymentDayFirstOfMonthLabelText":[1,"step-4_payment-day-first-of-month-label-text"],"step4_paymentDayFifteenthOfMonthLabelText":[1,"step-4_payment-day-fifteenth-of-month-label-text"],"step4_paymentMethod":[1,"step-4_payment-method"],"step4_paymentSchedule":[1,"step-4_payment-schedule"],"step4_paymentMethodSubtext":[1,"step-4_payment-method-subtext"],"step4_payPalInputLabel":[1,"step-4_pay-pal-input-label"],"step4_bankLocationLabel":[1,"step-4_bank-location-label"],"step4_beneficiaryAccountNameLabel":[1,"step-4_beneficiary-account-name-label"],"step4_bankAccountTypeLabel":[1,"step-4_bank-account-type-label"],"step4_checkingSelectItemLabel":[1,"step-4_checking-select-item-label"],"step4_savingsSelectItemLabel":[1,"step-4_savings-select-item-label"],"step4_bankAccountNumberLabel":[1,"step-4_bank-account-number-label"],"step4_ibanLabel":[1,"step-4_iban-label"],"step4_swiftCodeLabel":[1,"step-4_swift-code-label"],"step4_routingCodeLabel":[1,"step-4_routing-code-label"],"step4_bankNameLabel":[1,"step-4_bank-name-label"],"step4_classificationEntityLabel":[1,"step-4_classification-entity-label"],"step4_businessSelectItemLabel":[1,"step-4_business-select-item-label"],"step4_individualSelectItemLabel":[1,"step-4_individual-select-item-label"],"step4_foreignSelectItemLabel":[1,"step-4_foreign-select-item-label"],"step4_classificationCPFLabel":[1,"step-4_classification-c-p-f-label"],"step4_patronymicNameLabel":[1,"step-4_patronymic-name-label"],"step4_voCodeLabel":[1,"step-4_vo-code-label"],"step4_agencyCodeLabel":[1,"step-4_agency-code-label"],"step4_branchCodeLabel":[1,"step-4_branch-code-label"],"step4_classificationLabel":[1,"step-4_classification-label"],"step4_taxPayerIdLabel":[1,"step-4_tax-payer-id-label"],"step4_bankAddressLabel":[1,"step-4_bank-address-label"],"step4_bankCityLabel":[1,"step-4_bank-city-label"],"step4_bankStateLabel":[1,"step-4_bank-state-label"],"step4_bankPostalCodeLabel":[1,"step-4_bank-postal-code-label"],"step4_cannotChangeInfoAlert":[1,"step-4_cannot-change-info-alert"],"dashboard_statusTextActive":[1,"dashboard_status-text-active"],"dashboard_statusTextNotActive":[1,"dashboard_status-text-not-active"],"dashboard_statusTextNotVerified":[1,"dashboard_status-text-not-verified"],"dashboard_badgeTextSubmittedOn":[1,"dashboard_badge-text-submitted-on"],"dashboard_badgeTextSubmittedOnW8":[1,"dashboard_badge-text-submitted-on-w-8"],"dashboard_badgeTextAwaitingReview":[1,"dashboard_badge-text-awaiting-review"],"dashboard_taxAlertHeaderNotActiveW9":[1,"dashboard_tax-alert-header-not-active-w-9"],"dashboard_taxAlertHeaderNotActiveW8":[1,"dashboard_tax-alert-header-not-active-w-8"],"dashboard_taxAlertNotActiveMessageW9":[1,"dashboard_tax-alert-not-active-message-w-9"],"dashboard_taxAlertNotActiveMessageW8":[1,"dashboard_tax-alert-not-active-message-w-8"],"dashboard_invalidForm":[1,"dashboard_invalid-form"],"dashboard_bankingInformationSectionHeader":[1,"dashboard_banking-information-section-header"],"dashboard_taxDocumentSectionHeader":[1,"dashboard_tax-document-section-header"],"dashboard_taxDocumentSectionSubHeader":[1,"dashboard_tax-document-section-sub-header"],"dashboard_noFormNeededSubtext":[1,"dashboard_no-form-needed-subtext"],"dashboard_indirectTaxInfoSectionHeader":[1,"dashboard_indirect-tax-info-section-header"],"dashboard_indirectTaxInfoCanada":[1,"dashboard_indirect-tax-info-canada"],"dashboard_indirectTaxInfoOtherCountry":[1,"dashboard_indirect-tax-info-other-country"],"dashboard_indirectTaxInfoSpain":[1,"dashboard_indirect-tax-info-spain"],"dashboard_indirectTaxTooltipSupport":[1,"dashboard_indirect-tax-tooltip-support"],"dashboard_indirectTaxDetails":[1,"dashboard_indirect-tax-details"],"dashboard_newFormButton":[1,"dashboard_new-form-button"],"dashboard_editPaymentInformationButton":[1,"dashboard_edit-payment-information-button"],"dashboard_notRegisteredForTax":[1,"dashboard_not-registered-for-tax"],"dashboard_qstNumber":[1,"dashboard_qst-number"],"dashboard_subRegionTaxNumber":[1,"dashboard_sub-region-tax-number"],"dashboard_statusBadgeText":[1,"dashboard_status-badge-text"],"dashboard_thresholdPayoutText":[1,"dashboard_threshold-payout-text"],"dashboard_accountText":[1,"dashboard_account-text"],"dashboard_errorTitleText":[1,"dashboard_error-title-text"],"dashboard_errorDescriptionText":[1,"dashboard_error-description-text"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"fieldRequiredError":[1,"field-required-error"],"continueButton":[1,"continue-button"],"isPartnerAlertHeader":[1,"is-partner-alert-header"],"isPartnerAlertDescription":[1,"is-partner-alert-description"],"demoData":[16]}]]],["p-129d5cfc.system",[[1,"sqm-portal-registration-form",{"nextPage":[1,"next-page"],"redirectPath":[1,"redirect-path"],"emailLabel":[1,"email-label"],"passwordLabel":[1,"password-label"],"submitLabel":[1,"submit-label"],"loginLabel":[1,"login-label"],"confirmPasswordLabel":[1,"confirm-password-label"],"confirmPassword":[4,"confirm-password"],"disablePasswordValidation":[4,"disable-password-validation"],"hideInputs":[4,"hide-inputs"],"pageLabel":[1,"page-label"],"loginPath":[1,"login-path"],"requiredFieldErrorMessage":[1,"required-field-error-message"],"networkErrorMessage":[1,"network-error-message"],"passwordMismatchErrorMessage":[1,"password-mismatch-error-message"],"invalidEmailErrorMessage":[1,"invalid-email-error-message"],"formDisabledErrorMessage":[1,"form-disabled-error-message"],"meetsRequirementsText":[1,"meets-requirements-text"],"doesNotMeetRequirementsText":[1,"does-not-meet-requirements-text"],"minErrorText":[1,"min-error-text"],"uppercaseErrorText":[1,"uppercase-error-text"],"lowercaseErrorText":[1,"lowercase-error-text"],"hasErrorText":[1,"has-error-text"],"formKey":[1,"form-key"],"demoData":[16],"ignored":[32]}]]],["p-0cf35f9d.system",[[1,"sqm-portal-reset-password",{"nextPage":[1,"next-page"],"failedPage":[1,"failed-page"],"confirmPassword":[4,"confirm-password"],"resetPasswordHeader":[1,"reset-password-header"],"passwordResetHeader":[1,"password-reset-header"],"resetPasswordButtonText":[1,"reset-password-button-text"],"continueButtonText":[1,"continue-button-text"],"confirmPasswordFieldLabel":[1,"confirm-password-field-label"],"passwordFieldLabel":[1,"password-field-label"],"meetsRequirementsText":[1,"meets-requirements-text"],"doesNotMeetRequirementsText":[1,"does-not-meet-requirements-text"],"minErrorText":[1,"min-error-text"],"uppercaseErrorText":[1,"uppercase-error-text"],"lowercaseErrorText":[1,"lowercase-error-text"],"hasErrorText":[1,"has-error-text"],"passwordMismatchText":[1,"password-mismatch-text"],"codeInvalidText":[1,"code-invalid-text"],"resetSuccessText":[1,"reset-success-text"],"networkErrorMessage":[1,"network-error-message"],"demoData":[16],"ignored":[32]}]]],["p-82d7a656.system",[[1,"sqm-instant-access-registration",{"emailLabel":[1,"email-label"],"firstNameLabel":[1,"first-name-label"],"lastNameLabel":[1,"last-name-label"],"registerLabel":[1,"register-label"],"includeName":[4,"include-name"],"hideBorder":[4,"hide-border"],"requiredFieldErrorMessage":[1,"required-field-error-message"],"invalidEmailErrorMessage":[1,"invalid-email-error-message"],"networkErrorMessage":[1,"network-error-message"],"paddingTop":[1,"padding-top"],"paddingRight":[1,"padding-right"],"paddingBottom":[1,"padding-bottom"],"paddingLeft":[1,"padding-left"],"backgroundColor":[1,"background-color"],"includeCookies":[4,"include-cookies"],"demoData":[16],"ignored":[32]}]]],["p-38a4816a.system",[[1,"sqm-portal-email-verification",{"redirectPath":[1,"redirect-path"],"emailVerificationHeader":[1,"email-verification-header"],"resendEmailButtonText":[1,"resend-email-button-text"],"verifyMessage":[1,"verify-message"],"verificationStatusMessage":[1,"verification-status-message"],"verificationLoadingMessage":[1,"verification-loading-message"],"verificationResentMessage":[1,"verification-resent-message"],"networkErrorMessage":[1,"network-error-message"],"demoData":[16],"ignored":[32]}]]],["p-1911ed09.system",[[1,"sqm-portal-forgot-password",{"redirectPath":[1,"redirect-path"],"emailLabel":[1,"email-label"],"submitLabel":[1,"submit-label"],"loginPath":[1,"login-path"],"headerText":[1,"header-text"],"loginText":[1,"login-text"],"networkErrorMessage":[1,"network-error-message"],"successAlertText":[1,"success-alert-text"],"demoData":[16],"ignored":[32]}]]],["p-f8de07af.system",[[1,"sqm-portal-profile",{"firstnametext":[1],"lastnametext":[1],"emailtext":[1],"countrytext":[1],"editProfileHeader":[1,"edit-profile-header"],"editProfileSubHeader":[1,"edit-profile-sub-header"],"submitChangeButtonText":[1,"submit-change-button-text"],"hideCountry":[4,"hide-country"],"networkRequestMessage":[1,"network-request-message"],"fieldEmptyText":[1,"field-empty-text"],"formErrorText":[1,"form-error-text"],"submissionSuccessText":[1,"submission-success-text"],"demoData":[16],"ignored":[32]}]]],["p-9b73786a.system",[[1,"sqm-portal-verify-email",{"nextPage":[1,"next-page"],"failedPage":[1,"failed-page"],"verifyEmailText":[1,"verify-email-text"],"verifySuccessText":[1,"verify-success-text"],"verifyInvalidText":[1,"verify-invalid-text"],"continueText":[1,"continue-text"],"networkErrorMessage":[1,"network-error-message"],"demoData":[16],"ignored":[32]}]]],["p-34c938bb.system",[[1,"sqm-referred-registration",{"emailLabel":[1,"email-label"],"firstNameLabel":[1,"first-name-label"],"lastNameLabel":[1,"last-name-label"],"registerLabel":[1,"register-label"],"includeName":[4,"include-name"],"hideBorder":[4,"hide-border"],"requiredFieldErrorMessage":[1,"required-field-error-message"],"invalidEmailErrorMessage":[1,"invalid-email-error-message"],"networkErrorMessage":[1,"network-error-message"],"fraudErrorMessage":[1,"fraud-error-message"],"fraudErrorMessageTitle":[1,"fraud-error-message-title"],"paddingTop":[1,"padding-top"],"paddingRight":[1,"padding-right"],"paddingBottom":[1,"padding-bottom"],"paddingLeft":[1,"padding-left"],"backgroundColor":[1,"background-color"],"includeCookies":[4,"include-cookies"],"demoData":[16],"ignored":[32]}]]],["p-9bd20f34.system",[[1,"sqm-rewards-table-customer-note-column",{"columnTitle":[1,"column-title"],"renderCell":[64],"renderLabel":[64]}]]],["p-5b4a77b3.system",[[4,"raisins-plop-target",{"renderCell":[64],"renderLabel":[64]}]]],["p-7d81da49.system",[[1,"sqm-asset-card",{"titleText":[1,"title-text"],"imgUrl":[1,"img-url"],"demoData":[16],"ignored":[32]}]]],["p-d7e09410.system",[[1,"sqm-close-button",{"color":[1]}]]],["p-a5ce663d.system",[[4,"sqm-context-router",{"contextName":[1,"context-name"],"ignored":[32]}]]],["p-34e6663e.system",[[1,"sqm-document-type-form",{"formStep":[1,"form-step"],"formLabel":[1,"form-label"],"taxForm":[1,"tax-form"],"w9Label":[1,"w-9-label"],"w9Description":[1,"w-9-description"],"w8Label":[1,"w-8-label"],"w8Description":[1,"w-8-description"],"w8ELabel":[1,"w-8-e-label"],"w8EDescription":[1,"w-8-e-description"],"submitButton":[1,"submit-button"],"backButton":[1,"back-button"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"demoData":[16]}]]],["p-1a8335fb.system",[[1,"sqm-docusign-embed",{"url":[1]}]]],["p-a399550d.system",[[4,"sqm-graphql-client-provider",{"domain":[1],"ignored":[32]}]]],["p-ddbcf186.system",[[1,"sqm-header-logo",{"imageUrl":[1,"image-url"],"nextPage":[1,"next-page"],"height":[2]}]]],["p-1821e198.system",[[1,"sqm-leaderboard-rank",{"rankType":[1,"rank-type"],"rankText":[1,"rank-text"],"leaderboardType":[1,"leaderboard-type"],"unrankedText":[1,"unranked-text"],"interval":[1],"programId":[1,"program-id"],"demoData":[16]}]]],["p-d8b73a80.system",[[1,"sqm-logout-current-user",{"userIdentificationText":[1,"user-identification-text"],"switchUserText":[1,"switch-user-text"],"emailErrorText":[1,"email-error-text"],"demoData":[16]}]]],["p-f438972d.system",[[1,"sqm-navigation-sidebar",{"ignored":[32]}]]],["p-45cc2a06.system",[[1,"sqm-navigation-sidebar-item",{"path":[1],"icon":[1],"label":[1],"demoData":[16]}]]],["p-474c202e.system",[[4,"sqm-popup-container",{"poweredBy":[4,"powered-by"],"closeButton":[4,"close-button"],"closeButtonText":[1,"close-button-text"],"poweredByText":[1,"powered-by-text"],"embedPadding":[1,"embed-padding"],"popupPadding":[1,"popup-padding"]}]]],["p-e1335d59.system",[[1,"sqm-portal-logout",{"nextPage":[1,"next-page"],"ignored":[32]}]]],["p-3ca2e26d.system",[[1,"sqm-portal-protected-route",{"redirectTo":[1,"redirect-to"],"requireEmailVerification":[4,"require-email-verification"],"redirectToUnverified":[1,"redirect-to-unverified"],"ignored":[32]}]]],["p-abc149fe.system",[[1,"sqm-route",{"path":[1],"ignored":[32]}]]],["p-7266c84f.system",[[4,"sqm-tab",{"header":[1]}]]],["p-0b4f95fe.system",[[1,"sqm-tabs",{"placement":[1]}]]],["p-d234546c.system",[[0,"sqm-text-span",{"text":[1],"type":[1],"ignored":[32]}]]],["p-cc570915.system",[[1,"sqm-rewards-table-customer-note-cell",{"note":[1],"locale":[1],"ignored":[32]}]]],["p-a7ac3831.system",[[0,"sqm-password-field",{"fieldLabel":[1,"field-label"],"disableValidation":[4,"disable-validation"],"meetsRequirementsText":[1,"meets-requirements-text"],"doesNotMeetRequirementsText":[1,"does-not-meet-requirements-text"],"minErrorText":[1,"min-error-text"],"uppercaseErrorText":[1,"uppercase-error-text"],"lowercaseErrorText":[1,"lowercase-error-text"],"hasErrorText":[1,"has-error-text"],"demoData":[16],"ignored":[32]}]]],["p-a985672d.system",[[1,"sqm-form-message",{"type":[1],"icon":[1],"ignored":[32]}]]],["p-103df91c.system",[[1,"sqm-empty",{"emptyStateImage":[1,"empty-state-image"],"emptyStateHeader":[1,"empty-state-header"],"emptyStateText":[1,"empty-state-text"]}],[1,"sqm-image",{"imageUrl":[1,"image-url"],"alignment":[1],"backgroundColor":[1,"background-color"],"minHeight":[1,"min-height"]}],[1,"sqm-portal-container",{"direction":[1],"padding":[1],"gap":[1],"minWidth":[1,"min-width"],"display":[1],"justifyContent":[1,"justify-content"],"maxWidth":[1,"max-width"],"center":[4],"backgroundColor":[1,"background-color"],"ignored":[32]}],[4,"sqm-text",{"ignored":[32]}],[1,"sqm-titled-section",{"label":[1],"textAlign":[1,"text-align"],"labelMargin":[1,"label-margin"],"padding":[1]}]]],["p-95993745.system",[[1,"sqm-leaderboard",{"programId":[1,"program-id"],"usersheading":[1],"statsheading":[1],"rankheading":[1],"showRank":[4,"show-rank"],"hideViewer":[4,"hide-viewer"],"rankType":[1,"rank-type"],"leaderboardType":[1,"leaderboard-type"],"anonymousUser":[1,"anonymous-user"],"interval":[1],"maxRows":[2,"max-rows"],"demoData":[16],"ignored":[32]}],[1,"sqm-reward-exchange-list",{"notAvailableError":[1,"not-available-error"],"chooseRewardTitle":[1,"choose-reward-title"],"chooseAmountTitle":[1,"choose-amount-title"],"confirmationTitle":[1,"confirmation-title"],"rewardTitle":[1,"reward-title"],"cancelText":[1,"cancel-text"],"backText":[1,"back-text"],"continueText":[1,"continue-text"],"continueToConfirmationText":[1,"continue-to-confirmation-text"],"redeemText":[1,"redeem-text"],"redeemTitle":[1,"redeem-title"],"redemptionSuccessText":[1,"redemption-success-text"],"sourceAmountMessage":[1,"source-amount-message"],"tooltipText":[1,"tooltip-text"],"doneText":[1,"done-text"],"selectText":[1,"select-text"],"queryError":[1,"query-error"],"redemptionError":[1,"redemption-error"],"notEnoughError":[1,"not-enough-error"],"rewardRedeemedText":[1,"reward-redeemed-text"],"promoCode":[1,"promo-code"],"skeletonCardNum":[2,"skeleton-card-num"],"rewardNameTitle":[1,"reward-name-title"],"rewardAmountTitle":[1,"reward-amount-title"],"costTitle":[1,"cost-title"],"demoData":[16],"ignored":[32]}],[1,"sqm-portal-change-password",{"modalChangePasswordHeader":[1,"modal-change-password-header"],"cancelText":[1,"cancel-text"],"changePasswordButtonText":[1,"change-password-button-text"],"passwordFieldLabel":[1,"password-field-label"],"confirmPasswordFieldLabel":[1,"confirm-password-field-label"],"successMessage":[1,"success-message"],"portalChangePasswordHeader":[1,"portal-change-password-header"],"portalChangePasswordButtonText":[1,"portal-change-password-button-text"],"meetsRequirementsText":[1,"meets-requirements-text"],"doesNotMeetRequirementsText":[1,"does-not-meet-requirements-text"],"minErrorText":[1,"min-error-text"],"uppercaseErrorText":[1,"uppercase-error-text"],"lowercaseErrorText":[1,"lowercase-error-text"],"nonMatchingPasswordErrorText":[1,"non-matching-password-error-text"],"invalidSessionErrorText":[1,"invalid-session-error-text"],"hasErrorText":[1,"has-error-text"],"demoData":[16],"ignored":[32]}],[1,"sqm-portal-register",{"nextPage":[1,"next-page"],"redirectPath":[1,"redirect-path"],"emailLabel":[1,"email-label"],"passwordLabel":[1,"password-label"],"submitLabel":[1,"submit-label"],"loginLabel":[1,"login-label"],"confirmPasswordLabel":[1,"confirm-password-label"],"confirmPassword":[4,"confirm-password"],"disablePasswordValidation":[4,"disable-password-validation"],"hideInputs":[4,"hide-inputs"],"pageLabel":[1,"page-label"],"loginPath":[1,"login-path"],"requiredFieldErrorMessage":[1,"required-field-error-message"],"networkErrorMessage":[1,"network-error-message"],"passwordMismatchErrorMessage":[1,"password-mismatch-error-message"],"invalidEmailErrorMessage":[1,"invalid-email-error-message"],"meetsRequirementsText":[1,"meets-requirements-text"],"doesNotMeetRequirementsText":[1,"does-not-meet-requirements-text"],"minErrorText":[1,"min-error-text"],"uppercaseErrorText":[1,"uppercase-error-text"],"lowercaseErrorText":[1,"lowercase-error-text"],"hasErrorText":[1,"has-error-text"],"demoData":[16],"ignored":[32]}],[1,"sqm-coupon-code",{"programId":[1,"program-id"],"tooltiptext":[1,"tooltip-text"],"tooltiplifespan":[2,"tooltip-lifespan"],"textAlign":[1,"text-align"],"copyButtonLabel":[1,"copy-button-label"],"buttonStyle":[1,"copy-button-style"],"couponCodeLabel":[1,"coupon-code-label"],"cancelledErrorText":[1,"cancelled-error-text"],"redeemedErrorText":[1,"redeemed-error-text"],"expiredErrorText":[1,"expired-error-text"],"fullfillmentErrorText":[1,"fullfilled-error-text"],"pendingErrorText":[1,"pending-error-text"],"genericErrorText":[1,"error-text"],"couponCodePlaceholder":[1,"coupon-code-placeholder"],"demoData":[16]}],[1,"sqm-edit-profile",{"editprofileheader":[1],"editprofiletext":[1],"canceltext":[1],"updatetext":[1],"firstnametext":[1],"lastnametext":[1],"currentregiontext":[1],"showregion":[4],"networkErrorMessage":[1,"network-error-message"],"fieldEmptyText":[1,"field-empty-text"],"formErrorText":[1,"form-error-text"],"demoData":[16],"ignored":[32]}],[1,"sqm-portal-login",{"nextPage":[1,"next-page"],"emailLabel":[1,"email-label"],"passwordLabel":[1,"password-label"],"submitLabel":[1,"submit-label"],"forgotPasswordPath":[1,"forgot-password-path"],"forgotPasswordLabel":[1,"forgot-password-label"],"registerLabel":[1,"register-label"],"registerPath":[1,"register-path"],"pageLabel":[1,"page-label"],"networkErrorMessage":[1,"network-error-message"],"demoData":[16],"ignored":[32]}],[1,"sqm-big-stat",{"statType":[1,"stat-type"],"flexReverse":[4,"flex-reverse"],"alignment":[1],"programId":[1,"program-id"],"demoData":[16],"ignored":[32]}],[1,"sqm-brand",{"brandColor":[1,"brand-color"],"brandFont":[1,"brand-font"]}],[1,"sqm-card-feed",{"width":[2],"gap":[2],"ignored":[32]}],[0,"sqm-checkbox-field",{"checkboxName":[1,"checkbox-name"],"checkboxLabel":[1,"checkbox-label"],"checkboxLabelLink":[1,"checkbox-label-link"],"checkboxLabelLinkText":[1,"checkbox-label-link-text"],"errorMessage":[1,"error-message"],"checkboxOptional":[4,"checkbox-optional"],"demoData":[16],"ignored":[32]}],[1,"sqm-divided-layout",{"direction":[1],"contentAreaWidth":[1,"content-area-width"],"dividerStyle":[1,"divider-style"]}],[4,"sqm-dropdown-field",{"dropdownName":[1,"dropdown-name"],"dropdownLabel":[1,"dropdown-label"],"errorMessage":[1,"error-message"],"dropdownOptional":[4,"dropdown-optional"],"demoData":[16],"ignored":[32]}],[1,"sqm-hero",{"columns":[2],"minHeight":[2,"min-height"],"background":[1],"paddingSize":[1,"padding-size"],"secondaryBackground":[1,"secondary-background"],"wrapDirection":[1,"wrap-direction"]}],[1,"sqm-hero-image",{"imageUrl":[1,"image-url"],"overlayColor":[1,"overlay-color"],"overlayOpacity":[1,"overlay-opacity"],"textColor":[1,"text-color"],"backgroundColor":[1,"background-color"],"layout":[1],"imagePercentage":[2,"image-percentage"],"imagePos":[1,"image-pos"],"imageMobilePos":[1,"image-mobile-pos"],"header":[1],"description":[1],"buttonText":[1,"button-text"],"buttonLink":[1,"button-link"],"buttonNewTab":[4,"button-new-tab"],"paddingText":[1,"padding-text"],"paddingImage":[1,"padding-image"]}],[0,"sqm-hook-story-container",{"hookStory":[16],"ignored":[32]}],[0,"sqm-input-field",{"fieldName":[1,"field-name"],"fieldLabel":[1,"field-label"],"fieldType":[1,"field-type"],"errorMessage":[1,"error-message"],"fieldOptional":[4,"field-optional"],"demoData":[16],"ignored":[32]}],[1,"sqm-link-button",{"link":[1],"openInNewTab":[4,"open-in-new-tab"],"buttonText":[1,"button-text"]}],[0,"sqm-name-fields",{"firstNameLabel":[1,"first-name-label"],"lastNameLabel":[1,"last-name-label"],"demoData":[16],"ignored":[32]}],[1,"sqm-navigation-menu",{"includeDropdown":[4,"include-dropdown"],"menuLabel":[1,"menu-label"],"demoData":[16],"ignored":[32]}],[1,"sqm-portal-footer",{"hideSupportText":[4,"hide-support-text"],"supportEmail":[1,"support-email"],"supportText":[1,"support-text"],"termsLink":[1,"terms-link"],"termsText":[1,"terms-text"],"faqLink":[1,"faq-link"],"faqText":[1,"faq-text"],"hidePoweredBy":[4,"hide-powered-by"],"poweredByLink":[1,"powered-by-link"],"paddingTop":[1,"padding-top"],"paddingRight":[1,"padding-right"],"paddingBottom":[1,"padding-bottom"],"paddingLeft":[1,"padding-left"],"ignored":[32]}],[1,"sqm-portal-frame",{"notFullScreen":[4,"not-full-screen"],"demoData":[16],"ignored":[32]}],[1,"sqm-program-explainer",{"header":[1],"textColor":[1,"text-color"],"backgroundColor":[1,"background-color"],"ignored":[32]}],[1,"sqm-program-explainer-step",{"header":[1],"description":[1],"textColor":[1,"text-color"],"backgroundColor":[1,"background-color"],"imageUrl":[1,"image-url"],"icon":[1]}],[4,"sqm-program-menu",{"ignored":[32]}],[1,"sqm-referral-card",{"verticalAlignment":[1,"vertical-alignment"],"hideBorder":[4,"hide-border"],"paddingTop":[1,"padding-top"],"paddingRight":[1,"padding-right"],"paddingBottom":[1,"padding-bottom"],"paddingLeft":[1,"padding-left"],"backgroundColor":[1,"background-color"],"limitWidth":[4,"limit-width"],"ignored":[32]}],[0,"sqm-referral-iframe",{"iframeSrc":[1,"iframe-src"],"iframeHeight":[1,"iframe-height"],"iframeWidth":[1,"iframe-width"],"demoData":[16],"ignored":[32]}],[4,"sqm-router",{"ignored":[32]}],[1,"sqm-scroll",{"buttonType":[1,"button-type"],"buttonText":[1,"button-text"],"scrollTagName":[1,"scroll-tag-name"],"scrollId":[1,"scroll-id"],"scrollAnimation":[1,"scroll-animation"],"size":[1],"outline":[4],"pill":[4],"circle":[4],"iconSlot":[1,"icon-slot"],"iconName":[1,"icon-name"],"mobile":[4],"ignored":[32]}],[1,"sqm-share-button",{"medium":[1],"programId":[1,"program-id"],"borderradius":[2],"backgroundcolor":[1],"textcolor":[1],"pill":[4],"disabled":[4],"type":[1],"size":[1],"iconslot":[1],"icon":[1],"hideicon":[4],"hidetext":[4],"sharetitle":[1],"sharetext":[1],"undefinedLinkText":[1,"undefined-link-text"],"unsupportedPlatformText":[1,"unsupported-platform-text"],"demoData":[16]}],[1,"sqm-share-code",{"programId":[1,"program-id"],"tooltiptext":[1,"tooltip-text"],"tooltiplifespan":[2,"tooltip-lifespan"],"textAlign":[1,"text-align"],"copyButtonLabel":[1,"copy-button-label"],"buttonStyle":[1,"copy-button-style"],"demoData":[16]}],[1,"sqm-share-link",{"programId":[1,"program-id"],"tooltiptext":[1,"tooltip-text"],"tooltiplifespan":[2,"tooltip-lifespan"],"textAlign":[1,"text-align"],"copyButtonLabel":[1,"copy-button-label"],"buttonStyle":[1,"copy-button-style"],"demoData":[16]}],[1,"sqm-stat-container",{"space":[1],"display":[1],"ignored":[32]}],[1,"sqm-task-card",{"rewardAmount":[1,"reward-amount"],"rewardUnit":[1,"reward-unit"],"cardTitle":[1,"card-title"],"description":[1],"repeatable":[4],"finite":[2],"showProgressBar":[4,"show-progress-bar"],"goal":[2],"steps":[4],"progressBarUnit":[1,"progress-bar-unit"],"expiryMessage":[1,"expiry-message"],"rewardDuration":[1,"reward-duration"],"startsOnMessage":[1,"starts-on-message"],"displayDuration":[1,"display-duration"],"endedMessage":[1,"ended-message"],"completedText":[1,"completed-text"],"buttonText":[1,"button-text"],"buttonLink":[1,"button-link"],"openNewTab":[4,"open-new-tab"],"statType":[1,"stat-type"],"eventKey":[1,"event-key"],"programId":[1,"program-id"],"hideButton":[4,"hide-button"],"demoData":[16],"ignored":[32]}],[1,"sqm-timeline",{"icon":[1],"ignored":[32]}],[1,"sqm-timeline-entry",{"reward":[1],"unit":[1],"desc":[1],"icon":[1],"ignored":[32],"iconState":[32],"setIcon":[64]}],[1,"sqm-user-name",{"fallback":[1],"loadingText":[1,"loading-text"],"demoData":[16],"ignored":[32]}],[1,"sqm-table-cell",{"colspan":[2],"padding":[1]}],[1,"sqm-table-row",{"border":[1]}]]],["p-4ec13651.system",[[1,"sqm-rewards-table",{"programId":[1,"program-id"],"perPage":[2,"per-page"],"hideLabels":[4,"hide-labels"],"prevLabel":[1,"prev-label"],"moreLabel":[1,"more-label"],"hiddenColumns":[1,"hidden-columns"],"smBreakpoint":[2,"sm-breakpoint"],"mdBreakpoint":[2,"md-breakpoint"],"demoData":[16]}],[1,"sqm-rewards-table-date-column",{"columnTitle":[1,"column-title"],"dateShown":[1,"date-shown"],"renderCell":[64],"renderLabel":[64]}],[1,"sqm-rewards-table-reward-column",{"columnTitle":[1,"column-title"],"redeemedText":[1,"redeemed-text"],"availableText":[1,"available-text"],"copyText":[1,"copy-text"],"renderCell":[64],"renderLabel":[64]}],[1,"sqm-rewards-table-source-column",{"columnTitle":[1,"column-title"],"anonymousUser":[1,"anonymous-user"],"deletedUser":[1,"deleted-user"],"rewardExchangeText":[1,"reward-exchange-text"],"referralText":[1,"referral-text"],"rewardSourceText":[1,"reward-source-text"],"renderCell":[64],"renderLabel":[64]}],[1,"sqm-rewards-table-status-column",{"columnTitle":[1,"column-title"],"statusText":[1,"status-text"],"expiryText":[1,"expiry-text"],"pendingUsTax":[1,"pending-us-tax"],"pendingScheduled":[1,"pending-scheduled"],"pendingUnhandled":[1,"pending-unhandled"],"pendingReviewText":[1,"pending-review-text"],"deniedText":[1,"denied-text"],"pendingTaxReview":[1,"pending-tax-review"],"pendingNewTaxForm":[1,"pending-new-tax-form"],"pendingTaxSubmission":[1,"pending-tax-submission"],"pendingPartnerCreation":[1,"pending-partner-creation"],"payoutFailed":[1,"payout-failed"],"payoutSent":[1,"payout-sent"],"renderCell":[64],"renderLabel":[64]}],[1,"sqm-rewards-table-date-cell",{"date":[2],"locale":[1],"ignored":[32]}],[1,"sqm-rewards-table-reward-cell",{"reward":[16],"redeemedText":[1,"redeemed-text"],"availableText":[1,"available-text"],"copyText":[1,"copy-text"],"locale":[1]}],[1,"sqm-rewards-table-source-cell",{"reward":[16],"deletedUserText":[1,"deleted-user-text"],"anonymousUserText":[1,"anonymous-user-text"],"rewardExchangeText":[1,"reward-exchange-text"],"referralText":[1,"referral-text"],"rewardSourceText":[1,"reward-source-text"],"locale":[1]}],[1,"sqm-rewards-table-status-cell",{"statusText":[1,"status-text"],"reward":[16],"taxConnection":[16],"expiryText":[1,"expiry-text"],"locale":[1],"pendingUsTax":[1,"pending-us-tax"],"pendingTaxReview":[1,"pending-tax-review"],"pendingNewTaxForm":[1,"pending-new-tax-form"],"pendingTaxSubmission":[1,"pending-tax-submission"],"pendingPartnerCreation":[1,"pending-partner-creation"],"pendingScheduled":[1,"pending-scheduled"],"pendingUnhandled":[1,"pending-unhandled"],"pendingReviewText":[1,"pending-review-text"],"deniedText":[1,"denied-text"],"payoutFailed":[1,"payout-failed"],"payoutSent":[1,"payout-sent"]}]]],["p-b2815c9f.system",[[1,"sqm-referral-table-column",{"columnTitle":[1,"column-title"],"renderCell":[64],"renderLabel":[64]}],[1,"sqm-referral-table",{"programId":[1,"program-id"],"perPage":[2,"per-page"],"hideLabels":[4,"hide-labels"],"prevLabel":[1,"prev-label"],"moreLabel":[1,"more-label"],"showReferrer":[4,"show-referrer"],"hiddenColumns":[1,"hidden-columns"],"smBreakpoint":[2,"sm-breakpoint"],"mdBreakpoint":[2,"md-breakpoint"],"demoData":[16]}],[1,"sqm-referral-table-date-column",{"columnTitle":[1,"column-title"],"dateShown":[1,"date-shown"],"renderCell":[64],"renderLabel":[64],"renderReferrerCell":[64]}],[1,"sqm-referral-table-rewards-column",{"columnTitle":[1,"column-title"],"statusText":[1,"status-text"],"statusLongText":[1,"status-long-text"],"fuelTankText":[1,"fuel-tank-text"],"rewardReceivedText":[1,"reward-received-text"],"expiringText":[1,"expiring-text"],"pendingForText":[1,"pending-for-text"],"deniedHelpText":[1,"denied-help-text"],"hideDetails":[4,"hide-details"],"renderCell":[64],"renderLabel":[64],"renderReferrerCell":[64]}],[1,"sqm-referral-table-status-column",{"columnTitle":[1,"column-title"],"convertedStatusText":[1,"converted-status-text"],"inProgressStatusText":[1,"in-progress-status-text"],"pendingReviewStatusText":[1,"pending-review-status-text"],"deniedStatusText":[1,"denied-status-text"],"pendingReviewStatusSubText":[1,"pending-review-status-sub-text"],"deniedStatusSubText":[1,"denied-status-sub-text"],"renderCell":[64],"renderLabel":[64],"renderReferrerCell":[64]}],[1,"sqm-referral-table-user-column",{"columnTitle":[1,"column-title"],"anonymousUser":[1,"anonymous-user"],"deletedUser":[1,"deleted-user"],"renderCell":[64],"renderLabel":[64],"renderReferrerCell":[64]}],[1,"sqm-referral-table-cell",{"innerTemplate":[1,"inner-template"],"ignored":[32]}],[1,"sqm-referral-table-date-cell",{"date":[2],"locale":[1],"ignored":[32]}],[1,"sqm-referral-table-rewards-cell",{"rewards":[16],"taxConnection":[16],"hideDetails":[4,"hide-details"],"statusText":[1,"status-text"],"statusLongText":[1,"status-long-text"],"fuelTankText":[1,"fuel-tank-text"],"rewardReceivedText":[1,"reward-received-text"],"expiringText":[1,"expiring-text"],"pendingForText":[1,"pending-for-text"],"deniedHelpText":[1,"denied-help-text"],"locale":[1]}],[1,"sqm-referral-table-status-cell",{"statusText":[1,"status-text"],"fraudStatus":[1,"fraud-status"],"converted":[4],"statusSubText":[1,"status-sub-text"]}],[1,"sqm-referral-table-user-cell",{"name":[1]}]]],["p-6db554eb.system",[[1,"sqm-user-info-form",{"firstName":[1,"first-name"],"lastName":[1,"last-name"],"email":[1],"country":[1],"currency":[1],"currencyHelpText":[1,"currency-help-text"],"allowBankingCollection":[1,"allow-banking-collection"],"formStep":[1,"form-step"],"personalInformation":[1,"personal-information"],"continueButton":[1,"continue-button"],"isPartnerAlertHeader":[1,"is-partner-alert-header"],"isPartnerAlertDescription":[1,"is-partner-alert-description"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"termsAndConditionsLabel":[1,"terms-and-conditions-label"],"fieldRequiredError":[1,"field-required-error"],"demoData":[16],"ignored":[32]}],[1,"sqm-tax-and-cash-dashboard",{"statusTextActive":[1,"status-text-active"],"statusTextNotActive":[1,"status-text-not-active"],"statusTextNotVerified":[1,"status-text-not-verified"],"badgeTextSubmittedOn":[1,"badge-text-submitted-on"],"badgeTextSubmittedOnW8":[1,"badge-text-submitted-on-w-8"],"badgeTextAwaitingReview":[1,"badge-text-awaiting-review"],"taxAlertHeaderNotActiveW9":[1,"tax-alert-header-not-active-w-9"],"taxAlertHeaderNotActiveW8":[1,"tax-alert-header-not-active-w-8"],"taxAlertNotActiveMessageW9":[1,"tax-alert-not-active-message-w-9"],"taxAlertNotActiveMessageW8":[1,"tax-alert-not-active-message-w-8"],"invalidForm":[1,"invalid-form"],"bankingInformationSectionHeader":[1,"banking-information-section-header"],"indirectTaxInfoSectionHeader":[1,"indirect-tax-info-section-header"],"indirectTaxInfoCanada":[1,"indirect-tax-info-canada"],"indirectTaxInfoOtherCountry":[1,"indirect-tax-info-other-country"],"indirectTaxInfoSpain":[1,"indirect-tax-info-spain"],"indirectTaxTooltipSupport":[1,"indirect-tax-tooltip-support"],"indirectTaxDetails":[1,"indirect-tax-details"],"taxDocumentSectionHeader":[1,"tax-document-section-header"],"taxDocumentSectionSubHeader":[1,"tax-document-section-sub-header"],"noFormNeededSubtext":[1,"no-form-needed-subtext"],"newFormButton":[1,"new-form-button"],"editIndirectTaxButton":[1,"edit-indirect-tax-button"],"editPaymentInformationButton":[1,"edit-payment-information-button"],"notRegisteredForTax":[1,"not-registered-for-tax"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"qstNumber":[1,"qst-number"],"subRegionTaxNumber":[1,"sub-region-tax-number"],"payoutFromImpact":[1,"payout-from-impact"],"demoData":[16]}],[0,"sqm-banking-info-form",{"formStep":[1,"form-step"],"taxAndPayouts":[1,"tax-and-payouts"],"taxAndPayoutsDescription":[1,"tax-and-payouts-description"],"directlyToBankAccount":[1,"directly-to-bank-account"],"toPayPalAccount":[1,"to-pay-pal-account"],"paymentScheduleBalanceThreshold":[1,"payment-schedule-balance-threshold"],"paymentScheduleFixedDay":[1,"payment-schedule-fixed-day"],"paymentDaySelectLabel":[1,"payment-day-select-label"],"paymentThresholdSelectLabel":[1,"payment-threshold-select-label"],"paymentDayFirstOfMonthLabelText":[1,"payment-day-first-of-month-label-text"],"paymentDayFifteenthOfMonthLabelText":[1,"payment-day-fifteenth-of-month-label-text"],"paymentMethod":[1,"payment-method"],"paymentSchedule":[1,"payment-schedule"],"paymentMethodSubtext":[1,"payment-method-subtext"],"payPalInputLabel":[1,"pay-pal-input-label"],"submitButton":[1,"submit-button"],"bankLocationLabel":[1,"bank-location-label"],"beneficiaryAccountNameLabel":[1,"beneficiary-account-name-label"],"bankAccountTypeLabel":[1,"bank-account-type-label"],"checkingSelectItemLabel":[1,"checking-select-item-label"],"savingsSelectItemLabel":[1,"savings-select-item-label"],"bankAccountNumberLabel":[1,"bank-account-number-label"],"ibanLabel":[1,"iban-label"],"swiftCodeLabel":[1,"swift-code-label"],"routingCodeLabel":[1,"routing-code-label"],"bankNameLabel":[1,"bank-name-label"],"classificationEntityLabel":[1,"classification-entity-label"],"businessSelectItemLabel":[1,"business-select-item-label"],"individualSelectItemLabel":[1,"individual-select-item-label"],"foreignSelectItemLabel":[1,"foreign-select-item-label"],"isPartnerAlertHeader":[1,"is-partner-alert-header"],"isPartnerAlertDescription":[1,"is-partner-alert-description"],"classificationCPFLabel":[1,"classification-c-p-f-label"],"patronymicNameLabel":[1,"patronymic-name-label"],"voCodeLabel":[1,"vo-code-label"],"agencyCodeLabel":[1,"agency-code-label"],"branchCodeLabel":[1,"branch-code-label"],"classificationLabel":[1,"classification-label"],"taxPayerIdLabel":[1,"tax-payer-id-label"],"bankAddressLabel":[1,"bank-address-label"],"bankCityLabel":[1,"bank-city-label"],"bankStateLabel":[1,"bank-state-label"],"bankPostalCodeLabel":[1,"bank-postal-code-label"],"cannotChangeInfoAlert":[1,"cannot-change-info-alert"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"demoData":[16],"ignored":[32]}],[0,"sqm-docusign-form",{"formStep":[1,"form-step"],"taxForm":[1,"tax-form"],"taxFormLabel":[1,"tax-form-label"],"taxFormDescription":[1,"tax-form-description"],"taxFormDescriptionIndividualParticipant":[1,"tax-form-description-individual-participant"],"taxFormDescriptionBusinessEntity":[1,"tax-form-description-business-entity"],"notBasedInUS":[1,"not-based-in-u-s"],"banner":[1],"checkboxLabel":[1,"checkbox-label"],"checkboxDescription":[1,"checkbox-description"],"docusignExpired":[1,"docusign-expired"],"docusignCompleted":[1,"docusign-completed"],"participantType":[1,"participant-type"],"businessEntity":[1,"business-entity"],"individualParticipant":[1,"individual-participant"],"docusignError":[1,"docusign-error"],"refreshButton":[1,"refresh-button"],"backButton":[1,"back-button"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"formSubmissionError":[1,"form-submission-error"],"demoData":[16],"ignored":[32]}],[1,"sqm-indirect-tax-form",{"formStep":[1,"form-step"],"indirectTax":[1,"indirect-tax"],"indirectTaxDescription":[1,"indirect-tax-description"],"indirectTaxDetails":[1,"indirect-tax-details"],"indirectTaxDetailsDescription":[1,"indirect-tax-details-description"],"otherRegion":[1,"other-region"],"otherRegionSubtext":[1,"other-region-subtext"],"notRegistered":[1,"not-registered"],"notRegisteredSubtext":[1,"not-registered-subtext"],"selectedRegion":[1,"selected-region"],"province":[1],"indirectTaxNumber":[1,"indirect-tax-number"],"isPartnerAlertHeader":[1,"is-partner-alert-header"],"isPartnerAlertDescription":[1,"is-partner-alert-description"],"continueButton":[1,"continue-button"],"backButton":[1,"back-button"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"indirectTaxNumberError":[1,"indirect-tax-number-error"],"subRegion":[1,"sub-region"],"qstNumber":[1,"qst-number"],"subRegionTaxNumberLabel":[1,"sub-region-tax-number-label"],"isRegisteredQST":[1,"is-registered-q-s-t"],"isRegisteredSubRegionIncomeTax":[1,"is-registered-sub-region-income-tax"],"cannotChangeInfoAlert":[1,"cannot-change-info-alert"],"fieldRequiredError":[1,"field-required-error"],"demoData":[16]}],[1,"sqm-payout-details-card",{"statusBadgeText":[1,"status-badge-text"],"thresholdPayoutText":[1,"threshold-payout-text"],"accountText":[1,"account-text"],"errorTitleText":[1,"error-title-text"],"errorDescriptionText":[1,"error-description-text"],"demoData":[16]}]]]]'),e)}))}}}));
1
+ System.register(["./p-1e56ab57.system.js","./p-c23bbbc4.system.js","./p-923f5b38.system.js","./p-e86ec70c.system.js"],(function(e,t){"use strict";var r,a,o;return{setters:[function(e){r=e.p;a=e.H;o=e.b},function(){},function(){},function(){}],execute:function(){var e=function(){{i(a.prototype)}var e=t.meta.url;var o={};if(e!==""){o.resourcesUrl=new URL(".",e).href}return r(o)};var i=function(e){var t=e.cloneNode;e.cloneNode=function(e){if(this.nodeName==="TEMPLATE"){return t.call(this,e)}var r=t.call(this,false);var a=this.childNodes;if(e){for(var o=0;o<a.length;o++){if(a[o].nodeType!==2){r.appendChild(a[o].cloneNode(true))}}}return r}};e().then((function(e){return o(JSON.parse('[["p-a1cf1842.system",[[4,"sqm-stencilbook",{"ignored":[32]}]]],["p-3c58d1d9.system",[[1,"sqm-tax-and-cash",{"step1_firstName":[1,"step-1_first-name"],"step1_lastName":[1,"step-1_last-name"],"step1_email":[1,"step-1_email"],"step1_country":[1,"step-1_country"],"step1_currency":[1,"step-1_currency"],"step1_allowBankingCollection":[1,"step-1_allow-banking-collection"],"step1_formStep":[1,"step-1_form-step"],"step1_personalInformation":[1,"step-1_personal-information"],"termsAndConditionsLabel":[1,"terms-and-conditions-label"],"step1_submitButton":[1,"step-1_submit-button"],"step2_formStep":[1,"step-2_form-step"],"step2_indirectTax":[1,"step-2_indirect-tax"],"step2_indirectTaxDescription":[1,"step-2_indirect-tax-description"],"step2_indirectTaxDetails":[1,"step-2_indirect-tax-details"],"step2_indirectTaxDetailsDescription":[1,"step-2_indirect-tax-details-description"],"step2_otherRegion":[1,"step-2_other-region"],"otherRegionSubtext":[1,"other-region-subtext"],"step2_notRegistered":[1,"step-2_not-registered"],"notRegisteredSubtext":[1,"not-registered-subtext"],"step2_selectedRegion":[1,"step-2_selected-region"],"step2_province":[1,"step-2_province"],"step2_indirectTaxNumber":[1,"step-2_indirect-tax-number"],"step2_qstNumber":[1,"step-2_qst-number"],"step2_isRegisteredQST":[1,"step-2_is-registered-q-s-t"],"step2_isRegisteredSubRegionIncomeTax":[1,"step-2_is-registered-sub-region-income-tax"],"step2_subRegion":[1,"step-2_sub-region"],"step2_subRegionTaxNumberLabel":[1,"step-2_sub-region-tax-number-label"],"step2_submitButton":[1,"step-2_submit-button"],"step2_backButton":[1,"step-2_back-button"],"step2_cannotChangeInfoAlert":[1,"step-2_cannot-change-info-alert"],"step2_indirectTaxNumberError":[1,"step-2_indirect-tax-number-error"],"step3_formStep":[1,"step-3_form-step"],"step3_taxForm":[1,"step-3_tax-form"],"step3_taxFormLabel":[1,"step-3_tax-form-label"],"step3_participantType":[1,"step-3_participant-type"],"step3_businessEntity":[1,"step-3_business-entity"],"step3_individualParticipant":[1,"step-3_individual-participant"],"step3_taxFormDescription":[1,"step-3_tax-form-description"],"step3_taxFormDescriptionIndividualParticipant":[1,"step-3_tax-form-description-individual-participant"],"step3_taxFormDescriptionBusinessEntity":[1,"step-3_tax-form-description-business-entity"],"stop3NotBasedInUS":[1,"stop-3-not-based-in-u-s"],"step3_banner":[1,"step-3_banner"],"step3_checkboxLabel":[1,"step-3_checkbox-label"],"step3_checkboxDescription":[1,"step-3_checkbox-description"],"step3_docusignExpired":[1,"step-3_docusign-expired"],"step3_docusignCompleted":[1,"step-3_docusign-completed"],"step3_docusignError":[1,"step-3_docusign-error"],"step3_refreshButton":[1,"step-3_refresh-button"],"step3_backButton":[1,"step-3_back-button"],"step3_formSubmissionError":[1,"step-3_form-submission-error"],"step4_formStep":[1,"step-4_form-step"],"step4_taxAndPayouts":[1,"step-4_tax-and-payouts"],"step4_taxAndPayoutsDescription":[1,"step-4_tax-and-payouts-description"],"step4_directlyToBankAccount":[1,"step-4_directly-to-bank-account"],"step4_toPayPalAccount":[1,"step-4_to-pay-pal-account"],"step4_paymentScheduleBalanceThreshold":[1,"step-4_payment-schedule-balance-threshold"],"step4_paymentScheduleFixedDay":[1,"step-4_payment-schedule-fixed-day"],"step4_paymentDaySelectLabel":[1,"step-4_payment-day-select-label"],"step4_paymentThresholdSelectLabel":[1,"step-4_payment-threshold-select-label"],"step4_paymentDayFirstOfMonthLabelText":[1,"step-4_payment-day-first-of-month-label-text"],"step4_paymentDayFifteenthOfMonthLabelText":[1,"step-4_payment-day-fifteenth-of-month-label-text"],"step4_paymentMethod":[1,"step-4_payment-method"],"step4_paymentSchedule":[1,"step-4_payment-schedule"],"step4_paymentMethodSubtext":[1,"step-4_payment-method-subtext"],"step4_payPalInputLabel":[1,"step-4_pay-pal-input-label"],"step4_bankLocationLabel":[1,"step-4_bank-location-label"],"step4_beneficiaryAccountNameLabel":[1,"step-4_beneficiary-account-name-label"],"step4_bankAccountTypeLabel":[1,"step-4_bank-account-type-label"],"step4_checkingSelectItemLabel":[1,"step-4_checking-select-item-label"],"step4_savingsSelectItemLabel":[1,"step-4_savings-select-item-label"],"step4_bankAccountNumberLabel":[1,"step-4_bank-account-number-label"],"step4_ibanLabel":[1,"step-4_iban-label"],"step4_swiftCodeLabel":[1,"step-4_swift-code-label"],"step4_routingCodeLabel":[1,"step-4_routing-code-label"],"step4_bankNameLabel":[1,"step-4_bank-name-label"],"step4_classificationEntityLabel":[1,"step-4_classification-entity-label"],"step4_businessSelectItemLabel":[1,"step-4_business-select-item-label"],"step4_individualSelectItemLabel":[1,"step-4_individual-select-item-label"],"step4_foreignSelectItemLabel":[1,"step-4_foreign-select-item-label"],"step4_classificationCPFLabel":[1,"step-4_classification-c-p-f-label"],"step4_patronymicNameLabel":[1,"step-4_patronymic-name-label"],"step4_voCodeLabel":[1,"step-4_vo-code-label"],"step4_agencyCodeLabel":[1,"step-4_agency-code-label"],"step4_branchCodeLabel":[1,"step-4_branch-code-label"],"step4_classificationLabel":[1,"step-4_classification-label"],"step4_taxPayerIdLabel":[1,"step-4_tax-payer-id-label"],"step4_bankAddressLabel":[1,"step-4_bank-address-label"],"step4_bankCityLabel":[1,"step-4_bank-city-label"],"step4_bankStateLabel":[1,"step-4_bank-state-label"],"step4_bankPostalCodeLabel":[1,"step-4_bank-postal-code-label"],"step4_cannotChangeInfoAlert":[1,"step-4_cannot-change-info-alert"],"dashboard_statusTextActive":[1,"dashboard_status-text-active"],"dashboard_statusTextNotActive":[1,"dashboard_status-text-not-active"],"dashboard_statusTextNotVerified":[1,"dashboard_status-text-not-verified"],"dashboard_badgeTextSubmittedOn":[1,"dashboard_badge-text-submitted-on"],"dashboard_badgeTextSubmittedOnW8":[1,"dashboard_badge-text-submitted-on-w-8"],"dashboard_badgeTextAwaitingReview":[1,"dashboard_badge-text-awaiting-review"],"dashboard_taxAlertHeaderNotActiveW9":[1,"dashboard_tax-alert-header-not-active-w-9"],"dashboard_taxAlertHeaderNotActiveW8":[1,"dashboard_tax-alert-header-not-active-w-8"],"dashboard_taxAlertNotActiveMessageW9":[1,"dashboard_tax-alert-not-active-message-w-9"],"dashboard_taxAlertNotActiveMessageW8":[1,"dashboard_tax-alert-not-active-message-w-8"],"dashboard_invalidForm":[1,"dashboard_invalid-form"],"dashboard_bankingInformationSectionHeader":[1,"dashboard_banking-information-section-header"],"dashboard_taxDocumentSectionHeader":[1,"dashboard_tax-document-section-header"],"dashboard_taxDocumentSectionSubHeader":[1,"dashboard_tax-document-section-sub-header"],"dashboard_noFormNeededSubtext":[1,"dashboard_no-form-needed-subtext"],"dashboard_indirectTaxInfoSectionHeader":[1,"dashboard_indirect-tax-info-section-header"],"dashboard_indirectTaxInfoCanada":[1,"dashboard_indirect-tax-info-canada"],"dashboard_indirectTaxInfoOtherCountry":[1,"dashboard_indirect-tax-info-other-country"],"dashboard_indirectTaxInfoSpain":[1,"dashboard_indirect-tax-info-spain"],"dashboard_indirectTaxTooltipSupport":[1,"dashboard_indirect-tax-tooltip-support"],"dashboard_indirectTaxDetails":[1,"dashboard_indirect-tax-details"],"dashboard_newFormButton":[1,"dashboard_new-form-button"],"dashboard_editPaymentInformationButton":[1,"dashboard_edit-payment-information-button"],"dashboard_notRegisteredForTax":[1,"dashboard_not-registered-for-tax"],"dashboard_qstNumber":[1,"dashboard_qst-number"],"dashboard_subRegionTaxNumber":[1,"dashboard_sub-region-tax-number"],"dashboard_statusBadgeText":[1,"dashboard_status-badge-text"],"dashboard_thresholdPayoutText":[1,"dashboard_threshold-payout-text"],"dashboard_accountText":[1,"dashboard_account-text"],"dashboard_errorTitleText":[1,"dashboard_error-title-text"],"dashboard_errorDescriptionText":[1,"dashboard_error-description-text"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"fieldRequiredError":[1,"field-required-error"],"continueButton":[1,"continue-button"],"isPartnerAlertHeader":[1,"is-partner-alert-header"],"isPartnerAlertDescription":[1,"is-partner-alert-description"],"demoData":[16]}]]],["p-129d5cfc.system",[[1,"sqm-portal-registration-form",{"nextPage":[1,"next-page"],"redirectPath":[1,"redirect-path"],"emailLabel":[1,"email-label"],"passwordLabel":[1,"password-label"],"submitLabel":[1,"submit-label"],"loginLabel":[1,"login-label"],"confirmPasswordLabel":[1,"confirm-password-label"],"confirmPassword":[4,"confirm-password"],"disablePasswordValidation":[4,"disable-password-validation"],"hideInputs":[4,"hide-inputs"],"pageLabel":[1,"page-label"],"loginPath":[1,"login-path"],"requiredFieldErrorMessage":[1,"required-field-error-message"],"networkErrorMessage":[1,"network-error-message"],"passwordMismatchErrorMessage":[1,"password-mismatch-error-message"],"invalidEmailErrorMessage":[1,"invalid-email-error-message"],"formDisabledErrorMessage":[1,"form-disabled-error-message"],"meetsRequirementsText":[1,"meets-requirements-text"],"doesNotMeetRequirementsText":[1,"does-not-meet-requirements-text"],"minErrorText":[1,"min-error-text"],"uppercaseErrorText":[1,"uppercase-error-text"],"lowercaseErrorText":[1,"lowercase-error-text"],"hasErrorText":[1,"has-error-text"],"formKey":[1,"form-key"],"demoData":[16],"ignored":[32]}]]],["p-0cf35f9d.system",[[1,"sqm-portal-reset-password",{"nextPage":[1,"next-page"],"failedPage":[1,"failed-page"],"confirmPassword":[4,"confirm-password"],"resetPasswordHeader":[1,"reset-password-header"],"passwordResetHeader":[1,"password-reset-header"],"resetPasswordButtonText":[1,"reset-password-button-text"],"continueButtonText":[1,"continue-button-text"],"confirmPasswordFieldLabel":[1,"confirm-password-field-label"],"passwordFieldLabel":[1,"password-field-label"],"meetsRequirementsText":[1,"meets-requirements-text"],"doesNotMeetRequirementsText":[1,"does-not-meet-requirements-text"],"minErrorText":[1,"min-error-text"],"uppercaseErrorText":[1,"uppercase-error-text"],"lowercaseErrorText":[1,"lowercase-error-text"],"hasErrorText":[1,"has-error-text"],"passwordMismatchText":[1,"password-mismatch-text"],"codeInvalidText":[1,"code-invalid-text"],"resetSuccessText":[1,"reset-success-text"],"networkErrorMessage":[1,"network-error-message"],"demoData":[16],"ignored":[32]}]]],["p-82d7a656.system",[[1,"sqm-instant-access-registration",{"emailLabel":[1,"email-label"],"firstNameLabel":[1,"first-name-label"],"lastNameLabel":[1,"last-name-label"],"registerLabel":[1,"register-label"],"includeName":[4,"include-name"],"hideBorder":[4,"hide-border"],"requiredFieldErrorMessage":[1,"required-field-error-message"],"invalidEmailErrorMessage":[1,"invalid-email-error-message"],"networkErrorMessage":[1,"network-error-message"],"paddingTop":[1,"padding-top"],"paddingRight":[1,"padding-right"],"paddingBottom":[1,"padding-bottom"],"paddingLeft":[1,"padding-left"],"backgroundColor":[1,"background-color"],"includeCookies":[4,"include-cookies"],"demoData":[16],"ignored":[32]}]]],["p-38a4816a.system",[[1,"sqm-portal-email-verification",{"redirectPath":[1,"redirect-path"],"emailVerificationHeader":[1,"email-verification-header"],"resendEmailButtonText":[1,"resend-email-button-text"],"verifyMessage":[1,"verify-message"],"verificationStatusMessage":[1,"verification-status-message"],"verificationLoadingMessage":[1,"verification-loading-message"],"verificationResentMessage":[1,"verification-resent-message"],"networkErrorMessage":[1,"network-error-message"],"demoData":[16],"ignored":[32]}]]],["p-1911ed09.system",[[1,"sqm-portal-forgot-password",{"redirectPath":[1,"redirect-path"],"emailLabel":[1,"email-label"],"submitLabel":[1,"submit-label"],"loginPath":[1,"login-path"],"headerText":[1,"header-text"],"loginText":[1,"login-text"],"networkErrorMessage":[1,"network-error-message"],"successAlertText":[1,"success-alert-text"],"demoData":[16],"ignored":[32]}]]],["p-f8de07af.system",[[1,"sqm-portal-profile",{"firstnametext":[1],"lastnametext":[1],"emailtext":[1],"countrytext":[1],"editProfileHeader":[1,"edit-profile-header"],"editProfileSubHeader":[1,"edit-profile-sub-header"],"submitChangeButtonText":[1,"submit-change-button-text"],"hideCountry":[4,"hide-country"],"networkRequestMessage":[1,"network-request-message"],"fieldEmptyText":[1,"field-empty-text"],"formErrorText":[1,"form-error-text"],"submissionSuccessText":[1,"submission-success-text"],"demoData":[16],"ignored":[32]}]]],["p-9b73786a.system",[[1,"sqm-portal-verify-email",{"nextPage":[1,"next-page"],"failedPage":[1,"failed-page"],"verifyEmailText":[1,"verify-email-text"],"verifySuccessText":[1,"verify-success-text"],"verifyInvalidText":[1,"verify-invalid-text"],"continueText":[1,"continue-text"],"networkErrorMessage":[1,"network-error-message"],"demoData":[16],"ignored":[32]}]]],["p-34c938bb.system",[[1,"sqm-referred-registration",{"emailLabel":[1,"email-label"],"firstNameLabel":[1,"first-name-label"],"lastNameLabel":[1,"last-name-label"],"registerLabel":[1,"register-label"],"includeName":[4,"include-name"],"hideBorder":[4,"hide-border"],"requiredFieldErrorMessage":[1,"required-field-error-message"],"invalidEmailErrorMessage":[1,"invalid-email-error-message"],"networkErrorMessage":[1,"network-error-message"],"fraudErrorMessage":[1,"fraud-error-message"],"fraudErrorMessageTitle":[1,"fraud-error-message-title"],"paddingTop":[1,"padding-top"],"paddingRight":[1,"padding-right"],"paddingBottom":[1,"padding-bottom"],"paddingLeft":[1,"padding-left"],"backgroundColor":[1,"background-color"],"includeCookies":[4,"include-cookies"],"demoData":[16],"ignored":[32]}]]],["p-9bd20f34.system",[[1,"sqm-rewards-table-customer-note-column",{"columnTitle":[1,"column-title"],"renderCell":[64],"renderLabel":[64]}]]],["p-5b4a77b3.system",[[4,"raisins-plop-target",{"renderCell":[64],"renderLabel":[64]}]]],["p-7d81da49.system",[[1,"sqm-asset-card",{"titleText":[1,"title-text"],"imgUrl":[1,"img-url"],"demoData":[16],"ignored":[32]}]]],["p-d7e09410.system",[[1,"sqm-close-button",{"color":[1]}]]],["p-a5ce663d.system",[[4,"sqm-context-router",{"contextName":[1,"context-name"],"ignored":[32]}]]],["p-34e6663e.system",[[1,"sqm-document-type-form",{"formStep":[1,"form-step"],"formLabel":[1,"form-label"],"taxForm":[1,"tax-form"],"w9Label":[1,"w-9-label"],"w9Description":[1,"w-9-description"],"w8Label":[1,"w-8-label"],"w8Description":[1,"w-8-description"],"w8ELabel":[1,"w-8-e-label"],"w8EDescription":[1,"w-8-e-description"],"submitButton":[1,"submit-button"],"backButton":[1,"back-button"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"demoData":[16]}]]],["p-1a8335fb.system",[[1,"sqm-docusign-embed",{"url":[1]}]]],["p-a399550d.system",[[4,"sqm-graphql-client-provider",{"domain":[1],"ignored":[32]}]]],["p-ddbcf186.system",[[1,"sqm-header-logo",{"imageUrl":[1,"image-url"],"nextPage":[1,"next-page"],"height":[2]}]]],["p-1821e198.system",[[1,"sqm-leaderboard-rank",{"rankType":[1,"rank-type"],"rankText":[1,"rank-text"],"leaderboardType":[1,"leaderboard-type"],"unrankedText":[1,"unranked-text"],"interval":[1],"programId":[1,"program-id"],"demoData":[16]}]]],["p-d8b73a80.system",[[1,"sqm-logout-current-user",{"userIdentificationText":[1,"user-identification-text"],"switchUserText":[1,"switch-user-text"],"emailErrorText":[1,"email-error-text"],"demoData":[16]}]]],["p-f438972d.system",[[1,"sqm-navigation-sidebar",{"ignored":[32]}]]],["p-45cc2a06.system",[[1,"sqm-navigation-sidebar-item",{"path":[1],"icon":[1],"label":[1],"demoData":[16]}]]],["p-474c202e.system",[[4,"sqm-popup-container",{"poweredBy":[4,"powered-by"],"closeButton":[4,"close-button"],"closeButtonText":[1,"close-button-text"],"poweredByText":[1,"powered-by-text"],"embedPadding":[1,"embed-padding"],"popupPadding":[1,"popup-padding"]}]]],["p-e1335d59.system",[[1,"sqm-portal-logout",{"nextPage":[1,"next-page"],"ignored":[32]}]]],["p-3ca2e26d.system",[[1,"sqm-portal-protected-route",{"redirectTo":[1,"redirect-to"],"requireEmailVerification":[4,"require-email-verification"],"redirectToUnverified":[1,"redirect-to-unverified"],"ignored":[32]}]]],["p-abc149fe.system",[[1,"sqm-route",{"path":[1],"ignored":[32]}]]],["p-7266c84f.system",[[4,"sqm-tab",{"header":[1]}]]],["p-0b4f95fe.system",[[1,"sqm-tabs",{"placement":[1]}]]],["p-d234546c.system",[[0,"sqm-text-span",{"text":[1],"type":[1],"ignored":[32]}]]],["p-cc570915.system",[[1,"sqm-rewards-table-customer-note-cell",{"note":[1],"locale":[1],"ignored":[32]}]]],["p-a7ac3831.system",[[0,"sqm-password-field",{"fieldLabel":[1,"field-label"],"disableValidation":[4,"disable-validation"],"meetsRequirementsText":[1,"meets-requirements-text"],"doesNotMeetRequirementsText":[1,"does-not-meet-requirements-text"],"minErrorText":[1,"min-error-text"],"uppercaseErrorText":[1,"uppercase-error-text"],"lowercaseErrorText":[1,"lowercase-error-text"],"hasErrorText":[1,"has-error-text"],"demoData":[16],"ignored":[32]}]]],["p-a985672d.system",[[1,"sqm-form-message",{"type":[1],"icon":[1],"ignored":[32]}]]],["p-103df91c.system",[[1,"sqm-empty",{"emptyStateImage":[1,"empty-state-image"],"emptyStateHeader":[1,"empty-state-header"],"emptyStateText":[1,"empty-state-text"]}],[1,"sqm-image",{"imageUrl":[1,"image-url"],"alignment":[1],"backgroundColor":[1,"background-color"],"minHeight":[1,"min-height"]}],[1,"sqm-portal-container",{"direction":[1],"padding":[1],"gap":[1],"minWidth":[1,"min-width"],"display":[1],"justifyContent":[1,"justify-content"],"maxWidth":[1,"max-width"],"center":[4],"backgroundColor":[1,"background-color"],"ignored":[32]}],[4,"sqm-text",{"ignored":[32]}],[1,"sqm-titled-section",{"label":[1],"textAlign":[1,"text-align"],"labelMargin":[1,"label-margin"],"padding":[1]}]]],["p-95993745.system",[[1,"sqm-leaderboard",{"programId":[1,"program-id"],"usersheading":[1],"statsheading":[1],"rankheading":[1],"showRank":[4,"show-rank"],"hideViewer":[4,"hide-viewer"],"rankType":[1,"rank-type"],"leaderboardType":[1,"leaderboard-type"],"anonymousUser":[1,"anonymous-user"],"interval":[1],"maxRows":[2,"max-rows"],"demoData":[16],"ignored":[32]}],[1,"sqm-reward-exchange-list",{"notAvailableError":[1,"not-available-error"],"chooseRewardTitle":[1,"choose-reward-title"],"chooseAmountTitle":[1,"choose-amount-title"],"confirmationTitle":[1,"confirmation-title"],"rewardTitle":[1,"reward-title"],"cancelText":[1,"cancel-text"],"backText":[1,"back-text"],"continueText":[1,"continue-text"],"continueToConfirmationText":[1,"continue-to-confirmation-text"],"redeemText":[1,"redeem-text"],"redeemTitle":[1,"redeem-title"],"redemptionSuccessText":[1,"redemption-success-text"],"sourceAmountMessage":[1,"source-amount-message"],"tooltipText":[1,"tooltip-text"],"doneText":[1,"done-text"],"selectText":[1,"select-text"],"queryError":[1,"query-error"],"redemptionError":[1,"redemption-error"],"notEnoughError":[1,"not-enough-error"],"rewardRedeemedText":[1,"reward-redeemed-text"],"promoCode":[1,"promo-code"],"skeletonCardNum":[2,"skeleton-card-num"],"rewardNameTitle":[1,"reward-name-title"],"rewardAmountTitle":[1,"reward-amount-title"],"costTitle":[1,"cost-title"],"demoData":[16],"ignored":[32]}],[1,"sqm-portal-change-password",{"modalChangePasswordHeader":[1,"modal-change-password-header"],"cancelText":[1,"cancel-text"],"changePasswordButtonText":[1,"change-password-button-text"],"passwordFieldLabel":[1,"password-field-label"],"confirmPasswordFieldLabel":[1,"confirm-password-field-label"],"successMessage":[1,"success-message"],"portalChangePasswordHeader":[1,"portal-change-password-header"],"portalChangePasswordButtonText":[1,"portal-change-password-button-text"],"meetsRequirementsText":[1,"meets-requirements-text"],"doesNotMeetRequirementsText":[1,"does-not-meet-requirements-text"],"minErrorText":[1,"min-error-text"],"uppercaseErrorText":[1,"uppercase-error-text"],"lowercaseErrorText":[1,"lowercase-error-text"],"nonMatchingPasswordErrorText":[1,"non-matching-password-error-text"],"invalidSessionErrorText":[1,"invalid-session-error-text"],"hasErrorText":[1,"has-error-text"],"demoData":[16],"ignored":[32]}],[1,"sqm-portal-register",{"nextPage":[1,"next-page"],"redirectPath":[1,"redirect-path"],"emailLabel":[1,"email-label"],"passwordLabel":[1,"password-label"],"submitLabel":[1,"submit-label"],"loginLabel":[1,"login-label"],"confirmPasswordLabel":[1,"confirm-password-label"],"confirmPassword":[4,"confirm-password"],"disablePasswordValidation":[4,"disable-password-validation"],"hideInputs":[4,"hide-inputs"],"pageLabel":[1,"page-label"],"loginPath":[1,"login-path"],"requiredFieldErrorMessage":[1,"required-field-error-message"],"networkErrorMessage":[1,"network-error-message"],"passwordMismatchErrorMessage":[1,"password-mismatch-error-message"],"invalidEmailErrorMessage":[1,"invalid-email-error-message"],"meetsRequirementsText":[1,"meets-requirements-text"],"doesNotMeetRequirementsText":[1,"does-not-meet-requirements-text"],"minErrorText":[1,"min-error-text"],"uppercaseErrorText":[1,"uppercase-error-text"],"lowercaseErrorText":[1,"lowercase-error-text"],"hasErrorText":[1,"has-error-text"],"demoData":[16],"ignored":[32]}],[1,"sqm-coupon-code",{"programId":[1,"program-id"],"tooltiptext":[1,"tooltip-text"],"tooltiplifespan":[2,"tooltip-lifespan"],"textAlign":[1,"text-align"],"copyButtonLabel":[1,"copy-button-label"],"buttonStyle":[1,"copy-button-style"],"couponCodeLabel":[1,"coupon-code-label"],"cancelledErrorText":[1,"cancelled-error-text"],"redeemedErrorText":[1,"redeemed-error-text"],"expiredErrorText":[1,"expired-error-text"],"fullfillmentErrorText":[1,"fullfilled-error-text"],"pendingErrorText":[1,"pending-error-text"],"genericErrorText":[1,"error-text"],"couponCodePlaceholder":[1,"coupon-code-placeholder"],"demoData":[16]}],[1,"sqm-edit-profile",{"editprofileheader":[1],"editprofiletext":[1],"canceltext":[1],"updatetext":[1],"firstnametext":[1],"lastnametext":[1],"currentregiontext":[1],"showregion":[4],"networkErrorMessage":[1,"network-error-message"],"fieldEmptyText":[1,"field-empty-text"],"formErrorText":[1,"form-error-text"],"demoData":[16],"ignored":[32]}],[1,"sqm-portal-login",{"nextPage":[1,"next-page"],"emailLabel":[1,"email-label"],"passwordLabel":[1,"password-label"],"submitLabel":[1,"submit-label"],"forgotPasswordPath":[1,"forgot-password-path"],"forgotPasswordLabel":[1,"forgot-password-label"],"registerLabel":[1,"register-label"],"registerPath":[1,"register-path"],"pageLabel":[1,"page-label"],"networkErrorMessage":[1,"network-error-message"],"demoData":[16],"ignored":[32]}],[1,"sqm-big-stat",{"statType":[1,"stat-type"],"flexReverse":[4,"flex-reverse"],"alignment":[1],"programId":[1,"program-id"],"demoData":[16],"ignored":[32]}],[1,"sqm-brand",{"brandColor":[1,"brand-color"],"brandFont":[1,"brand-font"]}],[1,"sqm-card-feed",{"width":[2],"gap":[2],"ignored":[32]}],[0,"sqm-checkbox-field",{"checkboxName":[1,"checkbox-name"],"checkboxLabel":[1,"checkbox-label"],"checkboxLabelLink":[1,"checkbox-label-link"],"checkboxLabelLinkText":[1,"checkbox-label-link-text"],"errorMessage":[1,"error-message"],"checkboxOptional":[4,"checkbox-optional"],"demoData":[16],"ignored":[32]}],[1,"sqm-divided-layout",{"direction":[1],"contentAreaWidth":[1,"content-area-width"],"dividerStyle":[1,"divider-style"]}],[4,"sqm-dropdown-field",{"dropdownName":[1,"dropdown-name"],"dropdownLabel":[1,"dropdown-label"],"errorMessage":[1,"error-message"],"dropdownOptional":[4,"dropdown-optional"],"demoData":[16],"ignored":[32]}],[1,"sqm-hero",{"columns":[2],"minHeight":[2,"min-height"],"background":[1],"paddingSize":[1,"padding-size"],"secondaryBackground":[1,"secondary-background"],"wrapDirection":[1,"wrap-direction"]}],[1,"sqm-hero-image",{"imageUrl":[1,"image-url"],"overlayColor":[1,"overlay-color"],"overlayOpacity":[1,"overlay-opacity"],"textColor":[1,"text-color"],"backgroundColor":[1,"background-color"],"layout":[1],"imagePercentage":[2,"image-percentage"],"imagePos":[1,"image-pos"],"imageMobilePos":[1,"image-mobile-pos"],"header":[1],"description":[1],"buttonText":[1,"button-text"],"buttonLink":[1,"button-link"],"buttonNewTab":[4,"button-new-tab"],"paddingText":[1,"padding-text"],"paddingImage":[1,"padding-image"]}],[0,"sqm-hook-story-container",{"hookStory":[16],"ignored":[32]}],[0,"sqm-input-field",{"fieldName":[1,"field-name"],"fieldLabel":[1,"field-label"],"fieldType":[1,"field-type"],"errorMessage":[1,"error-message"],"fieldOptional":[4,"field-optional"],"demoData":[16],"ignored":[32]}],[1,"sqm-link-button",{"link":[1],"openInNewTab":[4,"open-in-new-tab"],"buttonText":[1,"button-text"]}],[0,"sqm-name-fields",{"firstNameLabel":[1,"first-name-label"],"lastNameLabel":[1,"last-name-label"],"demoData":[16],"ignored":[32]}],[1,"sqm-navigation-menu",{"includeDropdown":[4,"include-dropdown"],"menuLabel":[1,"menu-label"],"demoData":[16],"ignored":[32]}],[1,"sqm-portal-footer",{"hideSupportText":[4,"hide-support-text"],"supportEmail":[1,"support-email"],"supportText":[1,"support-text"],"termsLink":[1,"terms-link"],"termsText":[1,"terms-text"],"faqLink":[1,"faq-link"],"faqText":[1,"faq-text"],"hidePoweredBy":[4,"hide-powered-by"],"poweredByLink":[1,"powered-by-link"],"paddingTop":[1,"padding-top"],"paddingRight":[1,"padding-right"],"paddingBottom":[1,"padding-bottom"],"paddingLeft":[1,"padding-left"],"ignored":[32]}],[1,"sqm-portal-frame",{"notFullScreen":[4,"not-full-screen"],"demoData":[16],"ignored":[32]}],[1,"sqm-program-explainer",{"header":[1],"textColor":[1,"text-color"],"backgroundColor":[1,"background-color"],"ignored":[32]}],[1,"sqm-program-explainer-step",{"header":[1],"description":[1],"textColor":[1,"text-color"],"backgroundColor":[1,"background-color"],"imageUrl":[1,"image-url"],"icon":[1]}],[4,"sqm-program-menu",{"ignored":[32]}],[1,"sqm-referral-card",{"verticalAlignment":[1,"vertical-alignment"],"hideBorder":[4,"hide-border"],"paddingTop":[1,"padding-top"],"paddingRight":[1,"padding-right"],"paddingBottom":[1,"padding-bottom"],"paddingLeft":[1,"padding-left"],"backgroundColor":[1,"background-color"],"limitWidth":[4,"limit-width"],"ignored":[32]}],[0,"sqm-referral-iframe",{"iframeSrc":[1,"iframe-src"],"iframeHeight":[1,"iframe-height"],"iframeWidth":[1,"iframe-width"],"demoData":[16],"ignored":[32]}],[4,"sqm-router",{"ignored":[32]}],[1,"sqm-scroll",{"buttonType":[1,"button-type"],"buttonText":[1,"button-text"],"scrollTagName":[1,"scroll-tag-name"],"scrollId":[1,"scroll-id"],"scrollAnimation":[1,"scroll-animation"],"size":[1],"outline":[4],"pill":[4],"circle":[4],"iconSlot":[1,"icon-slot"],"iconName":[1,"icon-name"],"mobile":[4],"ignored":[32]}],[1,"sqm-share-button",{"medium":[1],"programId":[1,"program-id"],"borderradius":[2],"backgroundcolor":[1],"textcolor":[1],"pill":[4],"disabled":[4],"type":[1],"size":[1],"iconslot":[1],"icon":[1],"hideicon":[4],"hidetext":[4],"sharetitle":[1],"sharetext":[1],"undefinedLinkText":[1,"undefined-link-text"],"unsupportedPlatformText":[1,"unsupported-platform-text"],"demoData":[16]}],[1,"sqm-share-code",{"programId":[1,"program-id"],"tooltiptext":[1,"tooltip-text"],"tooltiplifespan":[2,"tooltip-lifespan"],"textAlign":[1,"text-align"],"copyButtonLabel":[1,"copy-button-label"],"buttonStyle":[1,"copy-button-style"],"demoData":[16]}],[1,"sqm-share-link",{"programId":[1,"program-id"],"tooltiptext":[1,"tooltip-text"],"tooltiplifespan":[2,"tooltip-lifespan"],"textAlign":[1,"text-align"],"copyButtonLabel":[1,"copy-button-label"],"buttonStyle":[1,"copy-button-style"],"demoData":[16]}],[1,"sqm-stat-container",{"space":[1],"display":[1],"ignored":[32]}],[1,"sqm-task-card",{"rewardAmount":[1,"reward-amount"],"rewardUnit":[1,"reward-unit"],"cardTitle":[1,"card-title"],"description":[1],"repeatable":[4],"finite":[2],"showProgressBar":[4,"show-progress-bar"],"goal":[2],"steps":[4],"progressBarUnit":[1,"progress-bar-unit"],"expiryMessage":[1,"expiry-message"],"rewardDuration":[1,"reward-duration"],"startsOnMessage":[1,"starts-on-message"],"displayDuration":[1,"display-duration"],"endedMessage":[1,"ended-message"],"completedText":[1,"completed-text"],"buttonText":[1,"button-text"],"buttonLink":[1,"button-link"],"openNewTab":[4,"open-new-tab"],"statType":[1,"stat-type"],"eventKey":[1,"event-key"],"programId":[1,"program-id"],"hideButton":[4,"hide-button"],"demoData":[16],"ignored":[32]}],[1,"sqm-timeline",{"icon":[1],"ignored":[32]}],[1,"sqm-timeline-entry",{"reward":[1],"unit":[1],"desc":[1],"icon":[1],"ignored":[32],"iconState":[32],"setIcon":[64]}],[1,"sqm-user-name",{"fallback":[1],"loadingText":[1,"loading-text"],"demoData":[16],"ignored":[32]}],[1,"sqm-table-cell",{"colspan":[2],"padding":[1]}],[1,"sqm-table-row",{"border":[1]}]]],["p-4ec13651.system",[[1,"sqm-rewards-table",{"programId":[1,"program-id"],"perPage":[2,"per-page"],"hideLabels":[4,"hide-labels"],"prevLabel":[1,"prev-label"],"moreLabel":[1,"more-label"],"hiddenColumns":[1,"hidden-columns"],"smBreakpoint":[2,"sm-breakpoint"],"mdBreakpoint":[2,"md-breakpoint"],"demoData":[16]}],[1,"sqm-rewards-table-date-column",{"columnTitle":[1,"column-title"],"dateShown":[1,"date-shown"],"renderCell":[64],"renderLabel":[64]}],[1,"sqm-rewards-table-reward-column",{"columnTitle":[1,"column-title"],"redeemedText":[1,"redeemed-text"],"availableText":[1,"available-text"],"copyText":[1,"copy-text"],"renderCell":[64],"renderLabel":[64]}],[1,"sqm-rewards-table-source-column",{"columnTitle":[1,"column-title"],"anonymousUser":[1,"anonymous-user"],"deletedUser":[1,"deleted-user"],"rewardExchangeText":[1,"reward-exchange-text"],"referralText":[1,"referral-text"],"rewardSourceText":[1,"reward-source-text"],"renderCell":[64],"renderLabel":[64]}],[1,"sqm-rewards-table-status-column",{"columnTitle":[1,"column-title"],"statusText":[1,"status-text"],"expiryText":[1,"expiry-text"],"pendingUsTax":[1,"pending-us-tax"],"pendingScheduled":[1,"pending-scheduled"],"pendingUnhandled":[1,"pending-unhandled"],"pendingReviewText":[1,"pending-review-text"],"deniedText":[1,"denied-text"],"pendingTaxReview":[1,"pending-tax-review"],"pendingNewTaxForm":[1,"pending-new-tax-form"],"pendingTaxSubmission":[1,"pending-tax-submission"],"pendingPartnerCreation":[1,"pending-partner-creation"],"payoutFailed":[1,"payout-failed"],"payoutSent":[1,"payout-sent"],"renderCell":[64],"renderLabel":[64]}],[1,"sqm-rewards-table-date-cell",{"date":[2],"locale":[1],"ignored":[32]}],[1,"sqm-rewards-table-reward-cell",{"reward":[16],"redeemedText":[1,"redeemed-text"],"availableText":[1,"available-text"],"copyText":[1,"copy-text"],"locale":[1]}],[1,"sqm-rewards-table-source-cell",{"reward":[16],"deletedUserText":[1,"deleted-user-text"],"anonymousUserText":[1,"anonymous-user-text"],"rewardExchangeText":[1,"reward-exchange-text"],"referralText":[1,"referral-text"],"rewardSourceText":[1,"reward-source-text"],"locale":[1]}],[1,"sqm-rewards-table-status-cell",{"statusText":[1,"status-text"],"reward":[16],"taxConnection":[16],"expiryText":[1,"expiry-text"],"locale":[1],"pendingUsTax":[1,"pending-us-tax"],"pendingTaxReview":[1,"pending-tax-review"],"pendingNewTaxForm":[1,"pending-new-tax-form"],"pendingTaxSubmission":[1,"pending-tax-submission"],"pendingPartnerCreation":[1,"pending-partner-creation"],"pendingScheduled":[1,"pending-scheduled"],"pendingUnhandled":[1,"pending-unhandled"],"pendingReviewText":[1,"pending-review-text"],"deniedText":[1,"denied-text"],"payoutFailed":[1,"payout-failed"],"payoutSent":[1,"payout-sent"]}]]],["p-b2815c9f.system",[[1,"sqm-referral-table-column",{"columnTitle":[1,"column-title"],"renderCell":[64],"renderLabel":[64]}],[1,"sqm-referral-table",{"programId":[1,"program-id"],"perPage":[2,"per-page"],"hideLabels":[4,"hide-labels"],"prevLabel":[1,"prev-label"],"moreLabel":[1,"more-label"],"showReferrer":[4,"show-referrer"],"hiddenColumns":[1,"hidden-columns"],"smBreakpoint":[2,"sm-breakpoint"],"mdBreakpoint":[2,"md-breakpoint"],"demoData":[16]}],[1,"sqm-referral-table-date-column",{"columnTitle":[1,"column-title"],"dateShown":[1,"date-shown"],"renderCell":[64],"renderLabel":[64],"renderReferrerCell":[64]}],[1,"sqm-referral-table-rewards-column",{"columnTitle":[1,"column-title"],"statusText":[1,"status-text"],"statusLongText":[1,"status-long-text"],"fuelTankText":[1,"fuel-tank-text"],"rewardReceivedText":[1,"reward-received-text"],"expiringText":[1,"expiring-text"],"pendingForText":[1,"pending-for-text"],"deniedHelpText":[1,"denied-help-text"],"hideDetails":[4,"hide-details"],"renderCell":[64],"renderLabel":[64],"renderReferrerCell":[64]}],[1,"sqm-referral-table-status-column",{"columnTitle":[1,"column-title"],"convertedStatusText":[1,"converted-status-text"],"inProgressStatusText":[1,"in-progress-status-text"],"pendingReviewStatusText":[1,"pending-review-status-text"],"deniedStatusText":[1,"denied-status-text"],"pendingReviewStatusSubText":[1,"pending-review-status-sub-text"],"deniedStatusSubText":[1,"denied-status-sub-text"],"renderCell":[64],"renderLabel":[64],"renderReferrerCell":[64]}],[1,"sqm-referral-table-user-column",{"columnTitle":[1,"column-title"],"anonymousUser":[1,"anonymous-user"],"deletedUser":[1,"deleted-user"],"renderCell":[64],"renderLabel":[64],"renderReferrerCell":[64]}],[1,"sqm-referral-table-cell",{"innerTemplate":[1,"inner-template"],"ignored":[32]}],[1,"sqm-referral-table-date-cell",{"date":[2],"locale":[1],"ignored":[32]}],[1,"sqm-referral-table-rewards-cell",{"rewards":[16],"taxConnection":[16],"hideDetails":[4,"hide-details"],"statusText":[1,"status-text"],"statusLongText":[1,"status-long-text"],"fuelTankText":[1,"fuel-tank-text"],"rewardReceivedText":[1,"reward-received-text"],"expiringText":[1,"expiring-text"],"pendingForText":[1,"pending-for-text"],"deniedHelpText":[1,"denied-help-text"],"locale":[1]}],[1,"sqm-referral-table-status-cell",{"statusText":[1,"status-text"],"fraudStatus":[1,"fraud-status"],"converted":[4],"statusSubText":[1,"status-sub-text"]}],[1,"sqm-referral-table-user-cell",{"name":[1]}]]],["p-6db554eb.system",[[1,"sqm-user-info-form",{"firstName":[1,"first-name"],"lastName":[1,"last-name"],"email":[1],"country":[1],"currency":[1],"currencyHelpText":[1,"currency-help-text"],"allowBankingCollection":[1,"allow-banking-collection"],"formStep":[1,"form-step"],"personalInformation":[1,"personal-information"],"continueButton":[1,"continue-button"],"isPartnerAlertHeader":[1,"is-partner-alert-header"],"isPartnerAlertDescription":[1,"is-partner-alert-description"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"termsAndConditionsLabel":[1,"terms-and-conditions-label"],"fieldRequiredError":[1,"field-required-error"],"demoData":[16],"ignored":[32]}],[1,"sqm-tax-and-cash-dashboard",{"statusTextActive":[1,"status-text-active"],"statusTextNotActive":[1,"status-text-not-active"],"statusTextNotVerified":[1,"status-text-not-verified"],"badgeTextSubmittedOn":[1,"badge-text-submitted-on"],"badgeTextSubmittedOnW8":[1,"badge-text-submitted-on-w-8"],"badgeTextAwaitingReview":[1,"badge-text-awaiting-review"],"taxAlertHeaderNotActiveW9":[1,"tax-alert-header-not-active-w-9"],"taxAlertHeaderNotActiveW8":[1,"tax-alert-header-not-active-w-8"],"taxAlertNotActiveMessageW9":[1,"tax-alert-not-active-message-w-9"],"taxAlertNotActiveMessageW8":[1,"tax-alert-not-active-message-w-8"],"invalidForm":[1,"invalid-form"],"bankingInformationSectionHeader":[1,"banking-information-section-header"],"indirectTaxInfoSectionHeader":[1,"indirect-tax-info-section-header"],"indirectTaxInfoCanada":[1,"indirect-tax-info-canada"],"indirectTaxInfoOtherCountry":[1,"indirect-tax-info-other-country"],"indirectTaxInfoSpain":[1,"indirect-tax-info-spain"],"indirectTaxTooltipSupport":[1,"indirect-tax-tooltip-support"],"indirectTaxDetails":[1,"indirect-tax-details"],"taxDocumentSectionHeader":[1,"tax-document-section-header"],"taxDocumentSectionSubHeader":[1,"tax-document-section-sub-header"],"noFormNeededSubtext":[1,"no-form-needed-subtext"],"newFormButton":[1,"new-form-button"],"editIndirectTaxButton":[1,"edit-indirect-tax-button"],"editPaymentInformationButton":[1,"edit-payment-information-button"],"notRegisteredForTax":[1,"not-registered-for-tax"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"qstNumber":[1,"qst-number"],"subRegionTaxNumber":[1,"sub-region-tax-number"],"payoutFromImpact":[1,"payout-from-impact"],"demoData":[16]}],[0,"sqm-banking-info-form",{"formStep":[1,"form-step"],"taxAndPayouts":[1,"tax-and-payouts"],"taxAndPayoutsDescription":[1,"tax-and-payouts-description"],"directlyToBankAccount":[1,"directly-to-bank-account"],"toPayPalAccount":[1,"to-pay-pal-account"],"paymentScheduleBalanceThreshold":[1,"payment-schedule-balance-threshold"],"paymentScheduleFixedDay":[1,"payment-schedule-fixed-day"],"paymentDaySelectLabel":[1,"payment-day-select-label"],"paymentThresholdSelectLabel":[1,"payment-threshold-select-label"],"paymentDayFirstOfMonthLabelText":[1,"payment-day-first-of-month-label-text"],"paymentDayFifteenthOfMonthLabelText":[1,"payment-day-fifteenth-of-month-label-text"],"paymentMethod":[1,"payment-method"],"paymentSchedule":[1,"payment-schedule"],"paymentMethodSubtext":[1,"payment-method-subtext"],"payPalInputLabel":[1,"pay-pal-input-label"],"submitButton":[1,"submit-button"],"bankLocationLabel":[1,"bank-location-label"],"beneficiaryAccountNameLabel":[1,"beneficiary-account-name-label"],"bankAccountTypeLabel":[1,"bank-account-type-label"],"checkingSelectItemLabel":[1,"checking-select-item-label"],"savingsSelectItemLabel":[1,"savings-select-item-label"],"bankAccountNumberLabel":[1,"bank-account-number-label"],"ibanLabel":[1,"iban-label"],"swiftCodeLabel":[1,"swift-code-label"],"routingCodeLabel":[1,"routing-code-label"],"bankNameLabel":[1,"bank-name-label"],"classificationEntityLabel":[1,"classification-entity-label"],"businessSelectItemLabel":[1,"business-select-item-label"],"individualSelectItemLabel":[1,"individual-select-item-label"],"foreignSelectItemLabel":[1,"foreign-select-item-label"],"isPartnerAlertHeader":[1,"is-partner-alert-header"],"isPartnerAlertDescription":[1,"is-partner-alert-description"],"classificationCPFLabel":[1,"classification-c-p-f-label"],"patronymicNameLabel":[1,"patronymic-name-label"],"voCodeLabel":[1,"vo-code-label"],"agencyCodeLabel":[1,"agency-code-label"],"branchCodeLabel":[1,"branch-code-label"],"classificationLabel":[1,"classification-label"],"taxPayerIdLabel":[1,"tax-payer-id-label"],"bankAddressLabel":[1,"bank-address-label"],"bankCityLabel":[1,"bank-city-label"],"bankStateLabel":[1,"bank-state-label"],"bankPostalCodeLabel":[1,"bank-postal-code-label"],"cannotChangeInfoAlert":[1,"cannot-change-info-alert"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"demoData":[16],"ignored":[32]}],[0,"sqm-docusign-form",{"formStep":[1,"form-step"],"taxForm":[1,"tax-form"],"taxFormLabel":[1,"tax-form-label"],"taxFormDescription":[1,"tax-form-description"],"taxFormDescriptionIndividualParticipant":[1,"tax-form-description-individual-participant"],"taxFormDescriptionBusinessEntity":[1,"tax-form-description-business-entity"],"notBasedInUS":[1,"not-based-in-u-s"],"banner":[1],"checkboxLabel":[1,"checkbox-label"],"checkboxDescription":[1,"checkbox-description"],"docusignExpired":[1,"docusign-expired"],"docusignCompleted":[1,"docusign-completed"],"participantType":[1,"participant-type"],"businessEntity":[1,"business-entity"],"individualParticipant":[1,"individual-participant"],"docusignError":[1,"docusign-error"],"refreshButton":[1,"refresh-button"],"backButton":[1,"back-button"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"formSubmissionError":[1,"form-submission-error"],"demoData":[16],"ignored":[32]}],[1,"sqm-indirect-tax-form",{"formStep":[1,"form-step"],"indirectTax":[1,"indirect-tax"],"indirectTaxDescription":[1,"indirect-tax-description"],"indirectTaxDetails":[1,"indirect-tax-details"],"indirectTaxDetailsDescription":[1,"indirect-tax-details-description"],"otherRegion":[1,"other-region"],"otherRegionSubtext":[1,"other-region-subtext"],"notRegistered":[1,"not-registered"],"notRegisteredSubtext":[1,"not-registered-subtext"],"selectedRegion":[1,"selected-region"],"province":[1],"indirectTaxNumber":[1,"indirect-tax-number"],"isPartnerAlertHeader":[1,"is-partner-alert-header"],"isPartnerAlertDescription":[1,"is-partner-alert-description"],"continueButton":[1,"continue-button"],"backButton":[1,"back-button"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"indirectTaxNumberError":[1,"indirect-tax-number-error"],"subRegion":[1,"sub-region"],"qstNumber":[1,"qst-number"],"subRegionTaxNumberLabel":[1,"sub-region-tax-number-label"],"isRegisteredQST":[1,"is-registered-q-s-t"],"isRegisteredSubRegionIncomeTax":[1,"is-registered-sub-region-income-tax"],"cannotChangeInfoAlert":[1,"cannot-change-info-alert"],"fieldRequiredError":[1,"field-required-error"],"demoData":[16]}],[1,"sqm-payout-details-card",{"statusBadgeText":[1,"status-badge-text"],"thresholdPayoutText":[1,"threshold-payout-text"],"accountText":[1,"account-text"],"errorTitleText":[1,"error-title-text"],"errorDescriptionText":[1,"error-description-text"],"demoData":[16]}]]]]'),e)}))}}}));
package/docs/docs.docx CHANGED
Binary file
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@saasquatch/mint-components",
3
3
  "title": "Mint Components",
4
- "version": "1.8.0-53",
4
+ "version": "1.8.0-54",
5
5
  "description": "A minimal design library with components for referral and loyalty experiences. Built with Shoelace components by Saasquatch.",
6
6
  "icon": "https://res.cloudinary.com/saasquatch/image/upload/v1652219900/squatch-assets/For_Mint.svg",
7
7
  "raisins": "docs/raisins.json",
@@ -1 +0,0 @@
1
- var __assign=this&&this.__assign||function(){__assign=Object.assign||function(e){for(var t,i=1,a=arguments.length;i<a;i++){t=arguments[i];for(var r in t)if(Object.prototype.hasOwnProperty.call(t,r))e[r]=t[r]}return e};return __assign.apply(this,arguments)};var __spreadArrays=this&&this.__spreadArrays||function(){for(var e=0,t=0,i=arguments.length;t<i;t++)e+=arguments[t].length;for(var a=Array(e),r=0,t=0;t<i;t++)for(var n=arguments[t],s=0,o=n.length;s<o;s++,r++)a[r]=n[s];return a};System.register(["./p-1e56ab57.system.js","./p-c23bbbc4.system.js","./p-e86ec70c.system.js","./p-4bd679a7.system.js","./p-1a673057.system.js","./p-6333265f.system.js","./p-8f025ca9.system.js","./p-e4762ebf.system.js"],(function(e){"use strict";var t,i,a,r,n,s,o,d,u,c,h,p,m,l,b,f,y,_,g,T,v,x,S,P,C;return{setters:[function(e){t=e.r;i=e.h},function(e){a=e.u;r=e.f;n=e.m},function(e){s=e.O;o=e.H},function(){},function(){},function(e){d=e.g},function(e){u=e.g;c=e.e;h=e.f;p=e.c;m=e.T;l=e.h;b=e.C;f=e.i;y=e.U;_=e.G;g=e.j;T=e.k;v=e.F;x=e.l;S=e.m;P=e.n},function(e){C=e.L}],execute:function(){function N(e,t){var i=Object.keys(e).filter((function(e){return e.startsWith(t)}));var a=i.reduce((function(i,a){var r;var n=a.replace(t,"");return __assign(__assign({},i),(r={},r[n]=e[a],r))}),{});return a}function I(e){var t,i;if(!((t=e.impactConnection)===null||t===void 0?void 0:t.publisher)||!((i=e.impactConnection)===null||i===void 0?void 0:i.connected)){return"/1"}var a=e.impactConnection.publisher,r=a.requiredTaxDocumentType,n=a.currentTaxDocument,s=a.withdrawalSettings;if(r&&(!n||(n===null||n===void 0?void 0:n.status)==="INACTIVE"||(n===null||n===void 0?void 0:n.status)==="NEW")){return"/3"}if(!s)return"/4";return"/submitted"}function A(){var e,t,i,n;var d=s();var C=o();var N=c({namespace:p,initialValue:"/loading"}),A=N[0],k=N[1];var L=c({namespace:m,initialValue:{}}),w=L[0],B=L[1];var E=c({namespace:l,initialValue:{firstName:undefined,lastName:undefined,email:undefined,countryCode:undefined,currency:undefined}}),D=E[0],R=E[1];var F=c({namespace:b,initialValue:[]}),q=F[0],j=F[1];var G=c({namespace:f,initialValue:[]}),H=G[0],O=G[1];var V=h({namespace:y,query:_,skip:!C}).data;var U=((i=(t=(e=V===null||V===void 0?void 0:V.user)===null||e===void 0?void 0:e.impactConnection)===null||t===void 0?void 0:t.publisher)===null||i===void 0?void 0:i.countryCode)||D.countryCode;h({namespace:g,query:T,skip:!C});var W=h({namespace:v,query:x,skip:!C,variables:{filter:J()}}),M=W.data,Q=W.refetch;var Y=h({namespace:S,query:P,skip:!C}).data;var z=a((function(){var e,t;var i=(t=(e=M===null||M===void 0?void 0:M.impactFinanceNetworkSettings)===null||e===void 0?void 0:e.data)===null||t===void 0?void 0:t.reduce((function(e,t){var i,a;var r=(a=(i=Y===null||Y===void 0?void 0:Y.currencies)===null||i===void 0?void 0:i.data)===null||a===void 0?void 0:a.find((function(e){return e.currencyCode===t.currency}));if(!r)return e;if(e.find((function(e){return e.currencyCode===t.currency})))return e;if(D.countryCode&&t.countryCode!==U)return e;return __spreadArrays(e,[r])}),[]);return i}),[M,U]);r((function(){if(z)j(z)}),[z]);r((function(){if(!d||!C)return;if(V){var e=V===null||V===void 0?void 0:V.user;if(!e||A!=="/loading")return;var t=I(e);k(t)}}),[d,C,(n=V===null||V===void 0?void 0:V.user)===null||n===void 0?void 0:n.email]);function J(){var e,t,i;if(A==="/4")return{currency_eq:(i=(t=(e=V===null||V===void 0?void 0:V.user)===null||e===void 0?void 0:e.impactConnection)===null||t===void 0?void 0:t.publisher)===null||i===void 0?void 0:i.currency};if(U)return{countryCode_eq:U};return{}}return{step:A,setStep:k,context:w,namespace:u(p),loading:A==="/loading"}}var k=e("sqm_tax_and_cash",function(){function e(e){t(this,e);this.step1_firstName="First name";this.step1_lastName="Last name";this.step1_email="Email";this.step1_country="Country";this.step1_currency="Currency";this.step1_allowBankingCollection="I have read the {termsAndConditionsLink} and allow impact.com to collect my tax and banking information";this.step1_formStep="Step 1 of 4";this.step1_personalInformation="Personal Information";this.termsAndConditionsLabel="terms and conditions";this.step1_submitButton="Continue";this.step2_formStep="Step 2 of 4";this.step2_indirectTax="Indirect Tax";this.step2_indirectTaxDescription="Indirect Taxes (e.g. VAT, HST, GST) are transactional based taxes that are required to be levied by service providers by most tax authorities.";this.step2_indirectTaxDetails="Indirect Tax Details";this.step2_indirectTaxDetailsDescription="Not sure if you are registered for indirect tax? Contact our Support team to find out more.";this.step2_otherRegion="I am registered for Indirect Tax in a different Country / Region";this.otherRegionSubtext="IIf you represent a business based outside of the US may be registered. Not sure? Contact our Support team to find out more.";this.step2_notRegistered="I am not registered for Indirect Tax";this.notRegisteredSubtext="If you’re joining this referral program as an individual or you’re based in the US, then you’re not registered.";this.step2_selectedRegion="Country / Region of Indirect Tax";this.step2_province="Province";this.step2_indirectTaxNumber="{taxType, select, GST {GST Number} HST {HST Number} VAT {VAT Number} CT {CT Number} SST {SST Number} GENERAL {Indirect Tax Number}}";this.step2_qstNumber="QST Number";this.step2_isRegisteredQST="I am registered for QST Tax";this.step2_isRegisteredSubRegionIncomeTax="I am an individual registered for Income Tax purposes in Spain, and withholding tax will apply to any payments made to me.";this.step2_subRegion="Sub-region";this.step2_subRegionTaxNumberLabel="Income Tax Number";this.step2_submitButton="Continue";this.step2_backButton="Back";this.step2_cannotChangeInfoAlert="Changes to your personal information and indirect tax can only be made through our Support team after you complete this step. Ensure these are correct before continuing.";this.step2_indirectTaxNumberError="{taxType, select, GST {GST Number} HST {HST Number} VAT {VAT Number} CT {CT Number} SST {SST Number} GENERAL {Indirect Tax Number}} is required";this.step3_formStep="Step 3 of 4";this.step3_taxForm="Tax form";this.step3_taxFormLabel="{documentType} Tax Form";this.step3_participantType="Participant type";this.step3_businessEntity="I represent a company";this.step3_individualParticipant="I am an individual participant";this.step3_taxFormDescription="Participants based in the US and partnering with US-based brands need to submit a {documentType} form.";this.step3_taxFormDescriptionIndividualParticipant="Participants residing outside of the US, joining the referral program of a US-based company, need to submit a {documentType} form.";this.step3_taxFormDescriptionBusinessEntity="Participants residing outside of the US who represent a business entity need to submit a {documentType} form.";this.stop3NotBasedInUS="Not based in the US?";this.step3_banner="For your security, we automatically end your session when you have not interacted with the form after 20 minutes.";this.step3_checkboxLabel="Form submission";this.step3_checkboxDescription="I have completed and submitted my tax form";this.step3_docusignExpired="For your security and privacy, we automatically end your session after 20 minutes of inactivity. Please refresh and re-enter your tax information to continue.";this.step3_docusignCompleted="Your document has been completed and submitted.";this.step3_docusignError="There was a problem displaying this form. Please refresh the page. If this problem continues, contact Support.";this.step3_refreshButton="Refresh Page";this.step3_backButton="Back";this.step3_formSubmissionError="This field is required";this.step4_formStep="Step 4 of 4";this.step4_taxAndPayouts="Tax and Payouts";this.step4_taxAndPayoutsDescription="Submit your tax documents and add your banking information to receive your rewards.";this.step4_directlyToBankAccount="Directly to my bank account";this.step4_toPayPalAccount="PayPal (2% processing fee capped to {feeCap})";this.step4_paymentScheduleBalanceThreshold="Pay me when my balance reaches a threshold";this.step4_paymentScheduleFixedDay="Pay me on a fixed day of the month";this.step4_paymentDaySelectLabel="Payment Day";this.step4_paymentThresholdSelectLabel="Payment Threshold";this.step4_paymentDayFirstOfMonthLabelText="1st of the month";this.step4_paymentDayFifteenthOfMonthLabelText="15th of the month";this.step4_paymentMethod="Payment Method";this.step4_paymentSchedule="Payment Schedule";this.step4_paymentMethodSubtext="Payouts will be sent on the first day of each month from our referral program provider, impact.com.";this.step4_payPalInputLabel="PayPal Email";this.step4_bankLocationLabel="Bank Country Location";this.step4_beneficiaryAccountNameLabel="Beneficiary Account Name";this.step4_bankAccountTypeLabel="Bank Account Type";this.step4_checkingSelectItemLabel="Checking";this.step4_savingsSelectItemLabel="Savings";this.step4_bankAccountNumberLabel="Bank Account Number";this.step4_ibanLabel="IBAN";this.step4_swiftCodeLabel="SWIFT Code";this.step4_routingCodeLabel="Routing Code";this.step4_bankNameLabel="Bank Name";this.step4_classificationEntityLabel="Classification Entity";this.step4_businessSelectItemLabel="Business";this.step4_individualSelectItemLabel="Individual";this.step4_foreignSelectItemLabel="Foreign";this.step4_classificationCPFLabel="Classification CPF";this.step4_patronymicNameLabel="Patronymic Name";this.step4_voCodeLabel="VO Code";this.step4_agencyCodeLabel="Agency Code";this.step4_branchCodeLabel="Branch Code";this.step4_classificationLabel="Classification";this.step4_taxPayerIdLabel="Taxpayer ID";this.step4_bankAddressLabel="Bank Address";this.step4_bankCityLabel="Bank City";this.step4_bankStateLabel="Bank Province / State";this.step4_bankPostalCodeLabel="Bank Postal Code";this.step4_cannotChangeInfoAlert="Your payout information cannot be changed after saving. Ensure your payout method and schedule are correct before submitting.";this.dashboard_statusTextActive="Active";this.dashboard_statusTextNotActive="Invalid Tax Form";this.dashboard_statusTextNotVerified="Not Verified";this.dashboard_badgeTextSubmittedOn="Submitted on {dateSubmitted}";this.dashboard_badgeTextSubmittedOnW8="Submitted on {dateSubmitted}. Valid for three years after submission.";this.dashboard_badgeTextAwaitingReview="Awaiting review. Submitted on {dateSubmitted}.";this.dashboard_taxAlertHeaderNotActiveW9="Your W9 tax form has personal information that doesn’t match your profile";this.dashboard_taxAlertHeaderNotActiveW8="{documentType} tax form is invalid";this.dashboard_taxAlertNotActiveMessageW9="Please resubmit a new {documentType} form.";this.dashboard_taxAlertNotActiveMessageW8="Your tax form may have expired or has personal information that doesn’t match your profile. Please submit a new W8-BEN form.";this.dashboard_invalidForm="Ensure your information matches your profile and resubmit a new document.";this.dashboard_bankingInformationSectionHeader="Banking Information";this.dashboard_taxDocumentSectionHeader="Tax documents";this.dashboard_taxDocumentSectionSubHeader="{documentType} tax form";this.dashboard_noFormNeededSubtext="Tax documents are only required if you are based in the US. If your country of residence has changed, please contact Support.";this.dashboard_indirectTaxInfoSectionHeader="Indirect tax";this.dashboard_indirectTaxInfoCanada="Registered in {province}, {country}";this.dashboard_indirectTaxInfoOtherCountry="Registered in {country}";this.dashboard_indirectTaxInfoSpain="Registered in {country}, {subRegion}";this.dashboard_indirectTaxTooltipSupport="To make changes to your indirect tax information, please contact Support.";this.dashboard_indirectTaxDetails="{indirectTaxType} number: {indirectTaxNumber}";this.dashboard_newFormButton="Submit New Form";this.dashboard_editPaymentInformationButton="Edit Payout Information";this.dashboard_notRegisteredForTax="Not registered. Participants representing a company in countries that enforce indirect tax (e.g. GST, HST, VAT) must add their indirect tax information.";this.dashboard_qstNumber="QST number: {qstNumber}";this.dashboard_subRegionTaxNumber="Income tax number: {incomeTaxNumber}";this.dashboard_statusBadgeText="{badgeText, select, payoutToday {Payout Today} nextPayout {Next Payout} }";this.dashboard_thresholdPayoutText="Next payout occurs when balance is";this.dashboard_accountText="Account";this.dashboard_errorTitleText="There was an error with your payout infomation";this.dashboard_errorDescriptionText="Please ensure your payout information is correct. If this problem continues, contact Support.";this.generalErrorTitle="There was a problem submitting your information";this.generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.";this.fieldRequiredError="{fieldName} is required";this.continueButton="Continue";this.isPartnerAlertHeader="An account with this email already exists with our referral program provider, impact.com";this.isPartnerAlertDescription="If you don’t recognize this referral program provider or believe this is a mistake, please contact Support or sign up for this referral program with a different email.";n(this)}e.prototype.disconnectedCallback=function(){};e.prototype.getGeneralStepTextProps=function(e){var t=d(this);return __assign(__assign({},N(t,e)),{generalErrorTitle:t.generalErrorTitle,generalErrorDescription:t.generalErrorDescription,fieldRequiredError:t.fieldRequiredError,submitButton:t.continueButton,isPartnerAlertHeader:t.isPartnerAlertHeader,isPartnerAlertDescription:t.isPartnerAlertDescription})};e.prototype.render=function(){var e=A();console.log({dashboardProps:this.getGeneralStepTextProps("dashboard_")});switch(e.step){case"/1":return i("sqm-user-info-form",Object.assign({},this.getGeneralStepTextProps("step1_")));case"/2":return i("sqm-indirect-tax-form",Object.assign({},this.getGeneralStepTextProps("step2_")));case"/3":return i("sqm-docusign-form",Object.assign({},this.getGeneralStepTextProps("step3_")));case"/4":return i("sqm-banking-info-form",Object.assign({},this.getGeneralStepTextProps("step4_")));case"/submitted":return i("sqm-tax-and-cash-dashboard",Object.assign({},this.getGeneralStepTextProps("dashboard_")))}return i(C,null)};return e}())}}}));
@@ -1 +0,0 @@
1
- import{r as t,h as e}from"./p-f6e5df75.js";import{u as i,f as a,m as r}from"./p-8d37b2a1.js";import{O as o,H as s}from"./p-94ad6231.js";import"./p-c1086930.js";import"./p-cef45012.js";import{g as n}from"./p-9ec99ced.js";import{g as u,e as h,f as d,c as m,T as c,h as l,C as p,i as f,U as y,G as b,j as T,k as v,F as g,l as S,m as x,n as I}from"./p-239824bb.js";import{L as N}from"./p-4ba1a994.js";function P(t,e){return Object.keys(t).filter((t=>t.startsWith(e))).reduce(((i,a)=>({...i,[a.replace(e,"")]:t[a]})),{})}const C=class{constructor(e){t(this,e),this.step1_firstName="First name",this.step1_lastName="Last name",this.step1_email="Email",this.step1_country="Country",this.step1_currency="Currency",this.step1_allowBankingCollection="I have read the {termsAndConditionsLink} and allow impact.com to collect my tax and banking information",this.step1_formStep="Step 1 of 4",this.step1_personalInformation="Personal Information",this.termsAndConditionsLabel="terms and conditions",this.step1_submitButton="Continue",this.step2_formStep="Step 2 of 4",this.step2_indirectTax="Indirect Tax",this.step2_indirectTaxDescription="Indirect Taxes (e.g. VAT, HST, GST) are transactional based taxes that are required to be levied by service providers by most tax authorities.",this.step2_indirectTaxDetails="Indirect Tax Details",this.step2_indirectTaxDetailsDescription="Not sure if you are registered for indirect tax? Contact our Support team to find out more.",this.step2_otherRegion="I am registered for Indirect Tax in a different Country / Region",this.otherRegionSubtext="IIf you represent a business based outside of the US may be registered. Not sure? Contact our Support team to find out more.",this.step2_notRegistered="I am not registered for Indirect Tax",this.notRegisteredSubtext="If you’re joining this referral program as an individual or you’re based in the US, then you’re not registered.",this.step2_selectedRegion="Country / Region of Indirect Tax",this.step2_province="Province",this.step2_indirectTaxNumber="{taxType, select, GST {GST Number} HST {HST Number} VAT {VAT Number} CT {CT Number} SST {SST Number} GENERAL {Indirect Tax Number}}",this.step2_qstNumber="QST Number",this.step2_isRegisteredQST="I am registered for QST Tax",this.step2_isRegisteredSubRegionIncomeTax="I am an individual registered for Income Tax purposes in Spain, and withholding tax will apply to any payments made to me.",this.step2_subRegion="Sub-region",this.step2_subRegionTaxNumberLabel="Income Tax Number",this.step2_submitButton="Continue",this.step2_backButton="Back",this.step2_cannotChangeInfoAlert="Changes to your personal information and indirect tax can only be made through our Support team after you complete this step. Ensure these are correct before continuing.",this.step2_indirectTaxNumberError="{taxType, select, GST {GST Number} HST {HST Number} VAT {VAT Number} CT {CT Number} SST {SST Number} GENERAL {Indirect Tax Number}} is required",this.step3_formStep="Step 3 of 4",this.step3_taxForm="Tax form",this.step3_taxFormLabel="{documentType} Tax Form",this.step3_participantType="Participant type",this.step3_businessEntity="I represent a company",this.step3_individualParticipant="I am an individual participant",this.step3_taxFormDescription="Participants based in the US and partnering with US-based brands need to submit a {documentType} form.",this.step3_taxFormDescriptionIndividualParticipant="Participants residing outside of the US, joining the referral program of a US-based company, need to submit a {documentType} form.",this.step3_taxFormDescriptionBusinessEntity="Participants residing outside of the US who represent a business entity need to submit a {documentType} form.",this.stop3NotBasedInUS="Not based in the US?",this.step3_banner="For your security, we automatically end your session when you have not interacted with the form after 20 minutes.",this.step3_checkboxLabel="Form submission",this.step3_checkboxDescription="I have completed and submitted my tax form",this.step3_docusignExpired="For your security and privacy, we automatically end your session after 20 minutes of inactivity. Please refresh and re-enter your tax information to continue.",this.step3_docusignCompleted="Your document has been completed and submitted.",this.step3_docusignError="There was a problem displaying this form. Please refresh the page. If this problem continues, contact Support.",this.step3_refreshButton="Refresh Page",this.step3_backButton="Back",this.step3_formSubmissionError="This field is required",this.step4_formStep="Step 4 of 4",this.step4_taxAndPayouts="Tax and Payouts",this.step4_taxAndPayoutsDescription="Submit your tax documents and add your banking information to receive your rewards.",this.step4_directlyToBankAccount="Directly to my bank account",this.step4_toPayPalAccount="PayPal (2% processing fee capped to {feeCap})",this.step4_paymentScheduleBalanceThreshold="Pay me when my balance reaches a threshold",this.step4_paymentScheduleFixedDay="Pay me on a fixed day of the month",this.step4_paymentDaySelectLabel="Payment Day",this.step4_paymentThresholdSelectLabel="Payment Threshold",this.step4_paymentDayFirstOfMonthLabelText="1st of the month",this.step4_paymentDayFifteenthOfMonthLabelText="15th of the month",this.step4_paymentMethod="Payment Method",this.step4_paymentSchedule="Payment Schedule",this.step4_paymentMethodSubtext="Payouts will be sent on the first day of each month from our referral program provider, impact.com.",this.step4_payPalInputLabel="PayPal Email",this.step4_bankLocationLabel="Bank Country Location",this.step4_beneficiaryAccountNameLabel="Beneficiary Account Name",this.step4_bankAccountTypeLabel="Bank Account Type",this.step4_checkingSelectItemLabel="Checking",this.step4_savingsSelectItemLabel="Savings",this.step4_bankAccountNumberLabel="Bank Account Number",this.step4_ibanLabel="IBAN",this.step4_swiftCodeLabel="SWIFT Code",this.step4_routingCodeLabel="Routing Code",this.step4_bankNameLabel="Bank Name",this.step4_classificationEntityLabel="Classification Entity",this.step4_businessSelectItemLabel="Business",this.step4_individualSelectItemLabel="Individual",this.step4_foreignSelectItemLabel="Foreign",this.step4_classificationCPFLabel="Classification CPF",this.step4_patronymicNameLabel="Patronymic Name",this.step4_voCodeLabel="VO Code",this.step4_agencyCodeLabel="Agency Code",this.step4_branchCodeLabel="Branch Code",this.step4_classificationLabel="Classification",this.step4_taxPayerIdLabel="Taxpayer ID",this.step4_bankAddressLabel="Bank Address",this.step4_bankCityLabel="Bank City",this.step4_bankStateLabel="Bank Province / State",this.step4_bankPostalCodeLabel="Bank Postal Code",this.step4_cannotChangeInfoAlert="Your payout information cannot be changed after saving. Ensure your payout method and schedule are correct before submitting.",this.dashboard_statusTextActive="Active",this.dashboard_statusTextNotActive="Invalid Tax Form",this.dashboard_statusTextNotVerified="Not Verified",this.dashboard_badgeTextSubmittedOn="Submitted on {dateSubmitted}",this.dashboard_badgeTextSubmittedOnW8="Submitted on {dateSubmitted}. Valid for three years after submission.",this.dashboard_badgeTextAwaitingReview="Awaiting review. Submitted on {dateSubmitted}.",this.dashboard_taxAlertHeaderNotActiveW9="Your W9 tax form has personal information that doesn’t match your profile",this.dashboard_taxAlertHeaderNotActiveW8="{documentType} tax form is invalid",this.dashboard_taxAlertNotActiveMessageW9="Please resubmit a new {documentType} form.",this.dashboard_taxAlertNotActiveMessageW8="Your tax form may have expired or has personal information that doesn’t match your profile. Please submit a new W8-BEN form.",this.dashboard_invalidForm="Ensure your information matches your profile and resubmit a new document.",this.dashboard_bankingInformationSectionHeader="Banking Information",this.dashboard_taxDocumentSectionHeader="Tax documents",this.dashboard_taxDocumentSectionSubHeader="{documentType} tax form",this.dashboard_noFormNeededSubtext="Tax documents are only required if you are based in the US. If your country of residence has changed, please contact Support.",this.dashboard_indirectTaxInfoSectionHeader="Indirect tax",this.dashboard_indirectTaxInfoCanada="Registered in {province}, {country}",this.dashboard_indirectTaxInfoOtherCountry="Registered in {country}",this.dashboard_indirectTaxInfoSpain="Registered in {country}, {subRegion}",this.dashboard_indirectTaxTooltipSupport="To make changes to your indirect tax information, please contact Support.",this.dashboard_indirectTaxDetails="{indirectTaxType} number: {indirectTaxNumber}",this.dashboard_newFormButton="Submit New Form",this.dashboard_editPaymentInformationButton="Edit Payout Information",this.dashboard_notRegisteredForTax="Not registered. Participants representing a company in countries that enforce indirect tax (e.g. GST, HST, VAT) must add their indirect tax information.",this.dashboard_qstNumber="QST number: {qstNumber}",this.dashboard_subRegionTaxNumber="Income tax number: {incomeTaxNumber}",this.dashboard_statusBadgeText="{badgeText, select, payoutToday {Payout Today} nextPayout {Next Payout} }",this.dashboard_thresholdPayoutText="Next payout occurs when balance is",this.dashboard_accountText="Account",this.dashboard_errorTitleText="There was an error with your payout infomation",this.dashboard_errorDescriptionText="Please ensure your payout information is correct. If this problem continues, contact Support.",this.generalErrorTitle="There was a problem submitting your information",this.generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.",this.fieldRequiredError="{fieldName} is required",this.continueButton="Continue",this.isPartnerAlertHeader="An account with this email already exists with our referral program provider, impact.com",this.isPartnerAlertDescription="If you don’t recognize this referral program provider or believe this is a mistake, please contact Support or sign up for this referral program with a different email.",r(this)}disconnectedCallback(){}getGeneralStepTextProps(t){const e=n(this);return{...P(e,t),generalErrorTitle:e.generalErrorTitle,generalErrorDescription:e.generalErrorDescription,fieldRequiredError:e.fieldRequiredError,submitButton:e.continueButton,isPartnerAlertHeader:e.isPartnerAlertHeader,isPartnerAlertDescription:e.isPartnerAlertDescription}}render(){const t=function(){var t,e,r,n;const N=o(),P=s(),[C,w]=h({namespace:m,initialValue:"/loading"}),[k,A]=h({namespace:c,initialValue:{}}),[q,j]=h({namespace:l,initialValue:{firstName:void 0,lastName:void 0,email:void 0,countryCode:void 0,currency:void 0}}),[B,E]=h({namespace:p,initialValue:[]}),[V,F]=h({namespace:f,initialValue:[]}),{data:R}=d({namespace:y,query:b,skip:!P}),_=(null===(r=null===(e=null===(t=null==R?void 0:R.user)||void 0===t?void 0:t.impactConnection)||void 0===e?void 0:e.publisher)||void 0===r?void 0:r.countryCode)||q.countryCode;d({namespace:T,query:v,skip:!P});const{data:G}=d({namespace:g,query:S,skip:!P,variables:{filter:function(){var t,e,i;return"/4"===C?{currency_eq:null===(i=null===(e=null===(t=null==R?void 0:R.user)||void 0===t?void 0:t.impactConnection)||void 0===e?void 0:e.publisher)||void 0===i?void 0:i.currency}:_?{countryCode_eq:_}:{}}()}}),{data:U}=d({namespace:x,query:I,skip:!P}),D=i((()=>{var t,e;return null===(e=null===(t=null==G?void 0:G.impactFinanceNetworkSettings)||void 0===t?void 0:t.data)||void 0===e?void 0:e.reduce(((t,e)=>{var i,a;const r=null===(a=null===(i=null==U?void 0:U.currencies)||void 0===i?void 0:i.data)||void 0===a?void 0:a.find((t=>t.currencyCode===e.currency));return r?t.find((t=>t.currencyCode===e.currency))||q.countryCode&&e.countryCode!==_?t:[...t,r]:t}),[])}),[G,_]);return a((()=>{D&&E(D)}),[D]),a((()=>{if(N&&P&&R){const t=null==R?void 0:R.user;if(!t||"/loading"!==C)return;const e=function(t){var e,i;if(!(null===(e=t.impactConnection)||void 0===e?void 0:e.publisher)||!(null===(i=t.impactConnection)||void 0===i?void 0:i.connected))return"/1";const{requiredTaxDocumentType:a,currentTaxDocument:r,withdrawalSettings:o}=t.impactConnection.publisher;return!a||r&&"INACTIVE"!==(null==r?void 0:r.status)&&"NEW"!==(null==r?void 0:r.status)?o?"/submitted":"/4":"/3"}(t);w(e)}}),[N,P,null===(n=null==R?void 0:R.user)||void 0===n?void 0:n.email]),{step:C,setStep:w,context:k,namespace:u(m),loading:"/loading"===C}}();switch(console.log({dashboardProps:this.getGeneralStepTextProps("dashboard_")}),t.step){case"/1":return e("sqm-user-info-form",Object.assign({},this.getGeneralStepTextProps("step1_")));case"/2":return e("sqm-indirect-tax-form",Object.assign({},this.getGeneralStepTextProps("step2_")));case"/3":return e("sqm-docusign-form",Object.assign({},this.getGeneralStepTextProps("step3_")));case"/4":return e("sqm-banking-info-form",Object.assign({},this.getGeneralStepTextProps("step4_")));case"/submitted":return e("sqm-tax-and-cash-dashboard",Object.assign({},this.getGeneralStepTextProps("dashboard_")))}return e(N,null)}};export{C as sqm_tax_and_cash}