@saasquatch/mint-components 1.8.0-37 → 1.8.0-38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/sqm-tax-and-cash.cjs.entry.js +26 -26
- package/dist/collection/components/tax-and-cash/sqm-tax-and-cash/useTaxAndCash.js +16 -16
- package/dist/esm/sqm-tax-and-cash.entry.js +27 -27
- package/dist/esm-es5/sqm-tax-and-cash.entry.js +1 -1
- package/dist/mint-components/mint-components.esm.js +1 -1
- package/dist/mint-components/p-1f467fdc.entry.js +1 -0
- package/dist/mint-components/p-40da0cbf.system.entry.js +1 -0
- package/dist/mint-components/p-d5364cae.system.js +1 -1
- package/docs/docs.docx +0 -0
- package/package.json +1 -1
- package/dist/mint-components/p-303ca91d.entry.js +0 -1
- package/dist/mint-components/p-97394372.system.entry.js +0 -1
|
@@ -9,15 +9,31 @@ require('./cjs-1066ec21.js');
|
|
|
9
9
|
const utils = require('./utils-6847bc06.js');
|
|
10
10
|
const useParentQuery = require('./useParentQuery-0cff2725.js');
|
|
11
11
|
|
|
12
|
+
function getCurrentStep(user) {
|
|
13
|
+
var _a, _b;
|
|
14
|
+
if (!user.impactConnection ||
|
|
15
|
+
((_a = user.impactConnection) === null || _a === void 0 ? void 0 : _a.connectionStatus) === "NOT_CONNECTED" ||
|
|
16
|
+
!((_b = user.impactConnection) === null || _b === void 0 ? void 0 : _b.publisher)) {
|
|
17
|
+
return "/1";
|
|
18
|
+
}
|
|
19
|
+
// Prioritise sending them to dashboard if no required document
|
|
20
|
+
if (!user.impactConnection.publisher.requiredTaxDocumentType) {
|
|
21
|
+
return "/submitted";
|
|
22
|
+
}
|
|
23
|
+
// If they do have a required document, look at current document
|
|
24
|
+
if (user.impactConnection.publisher.currentTaxDocument) {
|
|
25
|
+
const { status } = user.impactConnection.publisher.currentTaxDocument;
|
|
26
|
+
if (status === "ACTIVE" || status === "NOT_VERIFIED")
|
|
27
|
+
return "/submitted";
|
|
28
|
+
return "/3";
|
|
29
|
+
}
|
|
30
|
+
// Catchall
|
|
31
|
+
return "/error";
|
|
32
|
+
}
|
|
12
33
|
function useTaxAndCash() {
|
|
13
34
|
var _a;
|
|
14
35
|
const host = index_module.O();
|
|
15
|
-
|
|
16
|
-
// const id = "35cc9b5e816bb014554f71bd231f6edb238a6b447cb6169c75aef36a5332f64f";
|
|
17
|
-
// const accountId =
|
|
18
|
-
// "35cc9b5e816bb014554f71bd231f6edb238a6b447cb6169c75aef36a5332f64f";
|
|
19
|
-
// const programId = "22514";
|
|
20
|
-
// //@ts-ignore
|
|
36
|
+
//@ts-ignore
|
|
21
37
|
// window.widgetIdent = {
|
|
22
38
|
// tenantAlias: "aprh0cfq6y8tk",
|
|
23
39
|
// appDomain: "https://staging.referralsaasquatch.com",
|
|
@@ -27,25 +43,9 @@ function useTaxAndCash() {
|
|
|
27
43
|
// setUserIdentity({
|
|
28
44
|
// accountId,
|
|
29
45
|
// id,
|
|
30
|
-
// jwt: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IklSTVhzWXk2WVlxcTQ2OTQzN21HOEVSUXQ4UW9LRkJhRzEifQ.
|
|
46
|
+
// jwt: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IklSTVhzWXk2WVlxcTQ2OTQzN21HOEVSUXQ4UW9LRkJhRzEifQ.eyJ1c2VyIjp7ImlkIjoiNjRmZGViNzM0N2M5NGFiNjliYjVmZjRjNzg4Y2E3OGMwYmExMjdjZGMzNzRhODMwMDE1NzI1MGIxNjQzNzY3YiIsImFjY291bnRJZCI6IjY0ZmRlYjczNDdjOTRhYjY5YmI1ZmY0Yzc4OGNhNzhjMGJhMTI3Y2RjMzc0YTgzMDAxNTcyNTBiMTY0Mzc2N2IifX0.rSeFVjrPvRlO_m4skwgnvJNbWfnIM7f_q2tfqo4R0pU",
|
|
31
47
|
// });
|
|
32
48
|
// }, []);
|
|
33
|
-
const id = "64fdeb7347c94ab69bb5ff4c788ca78c0ba127cdc374a8300157250b1643767b";
|
|
34
|
-
const accountId = "64fdeb7347c94ab69bb5ff4c788ca78c0ba127cdc374a8300157250b1643767b";
|
|
35
|
-
const programId = "22514";
|
|
36
|
-
//@ts-ignore
|
|
37
|
-
window.widgetIdent = {
|
|
38
|
-
tenantAlias: "aprh0cfq6y8tk",
|
|
39
|
-
appDomain: "https://staging.referralsaasquatch.com",
|
|
40
|
-
programId,
|
|
41
|
-
};
|
|
42
|
-
stencilHooks_module.useEffect(() => {
|
|
43
|
-
index_module.setUserIdentity({
|
|
44
|
-
accountId,
|
|
45
|
-
id,
|
|
46
|
-
jwt: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IklSTVhzWXk2WVlxcTQ2OTQzN21HOEVSUXQ4UW9LRkJhRzEifQ.eyJ1c2VyIjp7ImlkIjoiNjRmZGViNzM0N2M5NGFiNjliYjVmZjRjNzg4Y2E3OGMwYmExMjdjZGMzNzRhODMwMDE1NzI1MGIxNjQzNzY3YiIsImFjY291bnRJZCI6IjY0ZmRlYjczNDdjOTRhYjY5YmI1ZmY0Yzc4OGNhNzhjMGJhMTI3Y2RjMzc0YTgzMDAxNTcyNTBiMTY0Mzc2N2IifX0.rSeFVjrPvRlO_m4skwgnvJNbWfnIM7f_q2tfqo4R0pU",
|
|
47
|
-
});
|
|
48
|
-
}, []);
|
|
49
49
|
const user = index_module.H();
|
|
50
50
|
// State for current step of form
|
|
51
51
|
const [step, setStep] = useParentQuery.useParentState({
|
|
@@ -90,9 +90,9 @@ function useTaxAndCash() {
|
|
|
90
90
|
const user = data === null || data === void 0 ? void 0 : data.user;
|
|
91
91
|
if (!user || step !== "/loading")
|
|
92
92
|
return;
|
|
93
|
-
setStep("/2");
|
|
94
|
-
|
|
95
|
-
|
|
93
|
+
// setStep("/2");
|
|
94
|
+
const currentStep = getCurrentStep(user);
|
|
95
|
+
setStep(currentStep);
|
|
96
96
|
}
|
|
97
97
|
}, [host, user, (_a = data === null || data === void 0 ? void 0 : data.user) === null || _a === void 0 ? void 0 : _a.email]);
|
|
98
98
|
return {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { useHost, useUserIdentity, } from "@saasquatch/component-boilerplate";
|
|
2
2
|
import { useEffect } from "@saasquatch/universal-hooks";
|
|
3
3
|
import { useParentQuery } from "../../../utils/useParentQuery";
|
|
4
4
|
import { getContextValueName, useParentState, } from "../../../utils/useParentState";
|
|
@@ -49,18 +49,18 @@ export function useTaxAndCash() {
|
|
|
49
49
|
const accountId = "64fdeb7347c94ab69bb5ff4c788ca78c0ba127cdc374a8300157250b1643767b";
|
|
50
50
|
const programId = "22514";
|
|
51
51
|
//@ts-ignore
|
|
52
|
-
window.widgetIdent = {
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
};
|
|
57
|
-
useEffect(() => {
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
}, []);
|
|
52
|
+
// window.widgetIdent = {
|
|
53
|
+
// tenantAlias: "aprh0cfq6y8tk",
|
|
54
|
+
// appDomain: "https://staging.referralsaasquatch.com",
|
|
55
|
+
// programId,
|
|
56
|
+
// };
|
|
57
|
+
// useEffect(() => {
|
|
58
|
+
// setUserIdentity({
|
|
59
|
+
// accountId,
|
|
60
|
+
// id,
|
|
61
|
+
// jwt: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IklSTVhzWXk2WVlxcTQ2OTQzN21HOEVSUXQ4UW9LRkJhRzEifQ.eyJ1c2VyIjp7ImlkIjoiNjRmZGViNzM0N2M5NGFiNjliYjVmZjRjNzg4Y2E3OGMwYmExMjdjZGMzNzRhODMwMDE1NzI1MGIxNjQzNzY3YiIsImFjY291bnRJZCI6IjY0ZmRlYjczNDdjOTRhYjY5YmI1ZmY0Yzc4OGNhNzhjMGJhMTI3Y2RjMzc0YTgzMDAxNTcyNTBiMTY0Mzc2N2IifX0.rSeFVjrPvRlO_m4skwgnvJNbWfnIM7f_q2tfqo4R0pU",
|
|
62
|
+
// });
|
|
63
|
+
// }, []);
|
|
64
64
|
const user = useUserIdentity();
|
|
65
65
|
// State for current step of form
|
|
66
66
|
const [step, setStep] = useParentState({
|
|
@@ -105,9 +105,9 @@ export function useTaxAndCash() {
|
|
|
105
105
|
const user = data === null || data === void 0 ? void 0 : data.user;
|
|
106
106
|
if (!user || step !== "/loading")
|
|
107
107
|
return;
|
|
108
|
-
setStep("/2");
|
|
109
|
-
|
|
110
|
-
|
|
108
|
+
// setStep("/2");
|
|
109
|
+
const currentStep = getCurrentStep(user);
|
|
110
|
+
setStep(currentStep);
|
|
111
111
|
}
|
|
112
112
|
}, [host, user, (_a = data === null || data === void 0 ? void 0 : data.user) === null || _a === void 0 ? void 0 : _a.email]);
|
|
113
113
|
return {
|
|
@@ -1,19 +1,35 @@
|
|
|
1
1
|
import { r as registerInstance, h as h$1 } from './index-f16aa635.js';
|
|
2
2
|
import { f as useEffect, m as h } from './stencil-hooks.module-aa42e74f.js';
|
|
3
|
-
import { O,
|
|
3
|
+
import { O, H } from './index.module-a46df001.js';
|
|
4
4
|
import './cjs-bdfb4486.js';
|
|
5
5
|
import { g as getProps } from './utils-334c1e34.js';
|
|
6
6
|
import { g as getContextValueName, d as useParentState, e as useParentQuery, T as TAX_CONTEXT_NAMESPACE, c as TAX_FORM_CONTEXT_NAMESPACE, f as USER_FORM_CONTEXT_NAMESPACE, U as USER_QUERY_NAMESPACE, G as GET_USER, C as COUNTRIES_NAMESPACE, h as GET_COUNTRIES, i as CURRENCIES_NAMESPACE, j as GET_CURRENCIES } from './useParentQuery-81c637fa.js';
|
|
7
7
|
|
|
8
|
+
function getCurrentStep(user) {
|
|
9
|
+
var _a, _b;
|
|
10
|
+
if (!user.impactConnection ||
|
|
11
|
+
((_a = user.impactConnection) === null || _a === void 0 ? void 0 : _a.connectionStatus) === "NOT_CONNECTED" ||
|
|
12
|
+
!((_b = user.impactConnection) === null || _b === void 0 ? void 0 : _b.publisher)) {
|
|
13
|
+
return "/1";
|
|
14
|
+
}
|
|
15
|
+
// Prioritise sending them to dashboard if no required document
|
|
16
|
+
if (!user.impactConnection.publisher.requiredTaxDocumentType) {
|
|
17
|
+
return "/submitted";
|
|
18
|
+
}
|
|
19
|
+
// If they do have a required document, look at current document
|
|
20
|
+
if (user.impactConnection.publisher.currentTaxDocument) {
|
|
21
|
+
const { status } = user.impactConnection.publisher.currentTaxDocument;
|
|
22
|
+
if (status === "ACTIVE" || status === "NOT_VERIFIED")
|
|
23
|
+
return "/submitted";
|
|
24
|
+
return "/3";
|
|
25
|
+
}
|
|
26
|
+
// Catchall
|
|
27
|
+
return "/error";
|
|
28
|
+
}
|
|
8
29
|
function useTaxAndCash() {
|
|
9
30
|
var _a;
|
|
10
31
|
const host = O();
|
|
11
|
-
|
|
12
|
-
// const id = "35cc9b5e816bb014554f71bd231f6edb238a6b447cb6169c75aef36a5332f64f";
|
|
13
|
-
// const accountId =
|
|
14
|
-
// "35cc9b5e816bb014554f71bd231f6edb238a6b447cb6169c75aef36a5332f64f";
|
|
15
|
-
// const programId = "22514";
|
|
16
|
-
// //@ts-ignore
|
|
32
|
+
//@ts-ignore
|
|
17
33
|
// window.widgetIdent = {
|
|
18
34
|
// tenantAlias: "aprh0cfq6y8tk",
|
|
19
35
|
// appDomain: "https://staging.referralsaasquatch.com",
|
|
@@ -23,25 +39,9 @@ function useTaxAndCash() {
|
|
|
23
39
|
// setUserIdentity({
|
|
24
40
|
// accountId,
|
|
25
41
|
// id,
|
|
26
|
-
// jwt: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IklSTVhzWXk2WVlxcTQ2OTQzN21HOEVSUXQ4UW9LRkJhRzEifQ.
|
|
42
|
+
// jwt: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IklSTVhzWXk2WVlxcTQ2OTQzN21HOEVSUXQ4UW9LRkJhRzEifQ.eyJ1c2VyIjp7ImlkIjoiNjRmZGViNzM0N2M5NGFiNjliYjVmZjRjNzg4Y2E3OGMwYmExMjdjZGMzNzRhODMwMDE1NzI1MGIxNjQzNzY3YiIsImFjY291bnRJZCI6IjY0ZmRlYjczNDdjOTRhYjY5YmI1ZmY0Yzc4OGNhNzhjMGJhMTI3Y2RjMzc0YTgzMDAxNTcyNTBiMTY0Mzc2N2IifX0.rSeFVjrPvRlO_m4skwgnvJNbWfnIM7f_q2tfqo4R0pU",
|
|
27
43
|
// });
|
|
28
44
|
// }, []);
|
|
29
|
-
const id = "64fdeb7347c94ab69bb5ff4c788ca78c0ba127cdc374a8300157250b1643767b";
|
|
30
|
-
const accountId = "64fdeb7347c94ab69bb5ff4c788ca78c0ba127cdc374a8300157250b1643767b";
|
|
31
|
-
const programId = "22514";
|
|
32
|
-
//@ts-ignore
|
|
33
|
-
window.widgetIdent = {
|
|
34
|
-
tenantAlias: "aprh0cfq6y8tk",
|
|
35
|
-
appDomain: "https://staging.referralsaasquatch.com",
|
|
36
|
-
programId,
|
|
37
|
-
};
|
|
38
|
-
useEffect(() => {
|
|
39
|
-
setUserIdentity({
|
|
40
|
-
accountId,
|
|
41
|
-
id,
|
|
42
|
-
jwt: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IklSTVhzWXk2WVlxcTQ2OTQzN21HOEVSUXQ4UW9LRkJhRzEifQ.eyJ1c2VyIjp7ImlkIjoiNjRmZGViNzM0N2M5NGFiNjliYjVmZjRjNzg4Y2E3OGMwYmExMjdjZGMzNzRhODMwMDE1NzI1MGIxNjQzNzY3YiIsImFjY291bnRJZCI6IjY0ZmRlYjczNDdjOTRhYjY5YmI1ZmY0Yzc4OGNhNzhjMGJhMTI3Y2RjMzc0YTgzMDAxNTcyNTBiMTY0Mzc2N2IifX0.rSeFVjrPvRlO_m4skwgnvJNbWfnIM7f_q2tfqo4R0pU",
|
|
43
|
-
});
|
|
44
|
-
}, []);
|
|
45
45
|
const user = H();
|
|
46
46
|
// State for current step of form
|
|
47
47
|
const [step, setStep] = useParentState({
|
|
@@ -86,9 +86,9 @@ function useTaxAndCash() {
|
|
|
86
86
|
const user = data === null || data === void 0 ? void 0 : data.user;
|
|
87
87
|
if (!user || step !== "/loading")
|
|
88
88
|
return;
|
|
89
|
-
setStep("/2");
|
|
90
|
-
|
|
91
|
-
|
|
89
|
+
// setStep("/2");
|
|
90
|
+
const currentStep = getCurrentStep(user);
|
|
91
|
+
setStep(currentStep);
|
|
92
92
|
}
|
|
93
93
|
}, [host, user, (_a = data === null || data === void 0 ? void 0 : data.user) === null || _a === void 0 ? void 0 : _a.email]);
|
|
94
94
|
return {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var __assign=this&&this.__assign||function(){__assign=Object.assign||function(e){for(var t,r=1,i=arguments.length;r<i;r++){t=arguments[r];for(var s in t)if(Object.prototype.hasOwnProperty.call(t,s))e[s]=t[s]}return e};return __assign.apply(this,arguments)};import{r as registerInstance,h as h$1}from"./index-f16aa635.js";import{f as useEffect,m as h}from"./stencil-hooks.module-aa42e74f.js";import{O,e as setUserIdentity,H}from"./index.module-a46df001.js";import"./cjs-bdfb4486.js";import{g as getProps}from"./utils-334c1e34.js";import{g as getContextValueName,d as useParentState,e as useParentQuery,T as TAX_CONTEXT_NAMESPACE,c as TAX_FORM_CONTEXT_NAMESPACE,f as USER_FORM_CONTEXT_NAMESPACE,U as USER_QUERY_NAMESPACE,G as GET_USER,C as COUNTRIES_NAMESPACE,h as GET_COUNTRIES,i as CURRENCIES_NAMESPACE,j as GET_CURRENCIES}from"./useParentQuery-81c637fa.js";function useTaxAndCash(){var e;var t=O();var r="64fdeb7347c94ab69bb5ff4c788ca78c0ba127cdc374a8300157250b1643767b";var i="64fdeb7347c94ab69bb5ff4c788ca78c0ba127cdc374a8300157250b1643767b";var s="22514";window.widgetIdent={tenantAlias:"aprh0cfq6y8tk",appDomain:"https://staging.referralsaasquatch.com",programId:s};useEffect((function(){setUserIdentity({accountId:i,id:r,jwt:"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IklSTVhzWXk2WVlxcTQ2OTQzN21HOEVSUXQ4UW9LRkJhRzEifQ.eyJ1c2VyIjp7ImlkIjoiNjRmZGViNzM0N2M5NGFiNjliYjVmZjRjNzg4Y2E3OGMwYmExMjdjZGMzNzRhODMwMDE1NzI1MGIxNjQzNzY3YiIsImFjY291bnRJZCI6IjY0ZmRlYjczNDdjOTRhYjY5YmI1ZmY0Yzc4OGNhNzhjMGJhMTI3Y2RjMzc0YTgzMDAxNTcyNTBiMTY0Mzc2N2IifX0.rSeFVjrPvRlO_m4skwgnvJNbWfnIM7f_q2tfqo4R0pU"})}),[]);var a=H();var n=useParentState({namespace:TAX_CONTEXT_NAMESPACE,initialValue:"/loading"}),o=n[0],p=n[1];var u=useParentState({namespace:TAX_FORM_CONTEXT_NAMESPACE,initialValue:{}}),c=u[0],m=u[1];var d=useParentState({namespace:USER_FORM_CONTEXT_NAMESPACE,initialValue:{firstName:undefined,lastName:undefined,email:undefined,countryCode:undefined,currency:undefined}}),h=d[0],l=d[1];var f=useParentQuery({namespace:USER_QUERY_NAMESPACE,query:GET_USER,skip:!a}).data;useParentQuery({namespace:COUNTRIES_NAMESPACE,query:GET_COUNTRIES,skip:!a});useParentQuery({namespace:CURRENCIES_NAMESPACE,query:GET_CURRENCIES,skip:!a});useEffect((function(){if(!t||!a)return;if(f){var e=f===null||f===void 0?void 0:f.user;if(!e||o!=="/loading")return;p("/2")}}),[t,a,(e=f===null||f===void 0?void 0:f.user)===null||e===void 0?void 0:e.email]);return{step:o,setStep:p,context:c,namespace:getContextValueName(TAX_CONTEXT_NAMESPACE),loading:o==="/loading"}}function extractProps(e,t){var r=Object.keys(e).filter((function(e){return e.startsWith(t)}));var i=r.reduce((function(r,i){var s;var a=i.replace(t,"");return __assign(__assign({},r),(s={},s[a]=e[i],s))}),{});return i}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 agree to the terms";this.step1_taxAndBankingCollection="Continue";this.step1_formStep="Step 1 of 4";this.step1_personalInformation="Personal Information";this.step1_businessEntity="I represent a business entity";this.step1_individualParticipant="I am an individual participant";this.step1_participantType="Participant type";this.step1_submitButton="Continue";this.step1_firstNameError="Enter a first name";this.step1_lastNameError="Enter a last name";this.step1_emailError="Enter a valid email";this.step1_countryError="Select a country";this.step1_currencyError="Select a currency";this.step1_allowBankingCollectionError="This field is required";this.step1_participantTypeError="Select a participant type";this.step1_isPartnerAlertHeader="An account with this email already exists with our referral program provider, impact.com";this.step1_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.";this.step1_generalErrorTitle="There was a problem submitting your information";this.step1_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.";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.step2_notRegistered="I am not registered for Indirect Tax";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_isPartnerAlertHeader="An account with this email already exists with our referral program provider, impact.com";this.step2_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.";this.step2_submitButton="Continue";this.step2_backButton="Back";this.step2_taxDetailsError="This field is required";this.step2_generalErrorTitle="There was a problem submitting your information";this.step2_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.";this.step2_selectedRegionError="Country is required";this.step2_provinceError="Province is required";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.step2_subRegionTaxNumberError="Income Tax Number is required";this.step2_qstTaxNumberError="QST 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_submitButton="Continue";this.step3_backButton="Back";this.step3_generalErrorTitle="There was a problem submitting your information";this.step3_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.";this.step3_formSubmissionError="This field is required";this.step3b_formStep="Step 3 of 4";this.step3b_formLabel="Select a tax form";this.step3b_taxForm="Tax form";this.step3b_w9Label="W9";this.step3b_w9Description="W9 For participants based in the US, joining the referral program of a US-based company.";this.step3b_w8Label="W8-Ben";this.step3b_w8Description="W8-BEN For individuals residing outside of the US, joining the referral program of a US-based company.";this.step3b_w8ELabel="W8-BEN-E";this.step3b_w8EDescription="W8-BEN-E For participants residing outside of the US who represent a business entity, joining the referral program of a US-based company.";this.step3b_submitButton="Continue";this.step3b_backButton="Back";this.step3b_generalErrorTitle="There was a problem submitting your information";this.step3b_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.";this.step4_statusTextActive="Active";this.step4_statusTextNotActive="Invalid Tax Form";this.step4_statusTextNotVerified="Not Verified";this.step4_badgeTextSubmittedOn="Submitted on {dateSubmitted}";this.step4_badgeTextSubmittedOnW8="Submitted on {dateSubmitted}. Valid for three years after submission.";this.step4_badgeTextAwaitingReview="Awaiting review. Submitted on {dateSubmitted}.";this.step4_taxAlertHeaderNotActiveW9="Your W9 tax form has personal information that doesn’t match your profile";this.step4_taxAlertHeaderNotActiveW8="{documentType} tax form is invalid";this.step4_taxAlertNotActiveMessageW9="Please resubmit a new {documentType} form.";this.step4_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.step4_invalidForm="Ensure your information matches your profile and resubmit a new document.";this.step4_bankingInformationSectionHeader="Banking Information";this.step4_taxDocumentSectionHeader="Tax documents";this.step4_taxDocumentSectionSubHeader="{documentType} Tax Form";this.step4_noFormNeededSubtext="Tax documents are only required if you are based in the US. If your country of residence has changed, please contact Support.";this.step4_indirectTaxInfoSectionHeader="Indirect Tax";this.step4_indirectTaxInfoCanada="Registered in {province}, {country}";this.step4_indirectTaxInfoOtherCountry="Registered in {country}";this.step4_indirectTaxInfoSpain="Registered in {country}, {subRegion}";this.step4_indirectTaxTooltipSupport="To make changes to your indirect tax information, please contact Support.";this.step4_indirectTaxDetails="{indirectTaxType} number: {indirectTaxNumber}";this.step4_newFormButton="Submit New Form";this.step4_editPaymentInformationButton="Edit Payout Information";this.step4_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.step4_generalErrorTitle="There was a problem submitting your information";this.step4_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.";this.step4_qstNumber="QST Number: {qstNumber}";this.step4_subRegionTaxNumber="Income Tax Number: {incomeTaxNumber}";h(this)}e.prototype.disconnectedCallback=function(){};e.prototype.getUserInfoFormTextProps=function(){var e=getProps(this);return extractProps(e,"step1_")};e.prototype.getIndirectTaxFormTextProps=function(){var e=getProps(this);return extractProps(e,"step2_")};e.prototype.getDocuSignFormTextProps=function(){var e=getProps(this);return extractProps(e,"step3_")};e.prototype.getDocumentTypeFormTextProps=function(){var e=getProps(this);return extractProps(e,"step3b_")};e.prototype.getSubmittedPageTextProps=function(){var e=getProps(this);return extractProps(e,"step4_")};e.prototype.render=function(){var e=useTaxAndCash();switch(e.step){case"/1":return h$1("sqm-user-info-form",Object.assign({},this.getUserInfoFormTextProps()));case"/2":return h$1("sqm-indirect-tax-form",Object.assign({},this.getIndirectTaxFormTextProps()));case"/3":case"/3/W8BEN":case"/3/W8BENE":case"/3/W9":return h$1("sqm-docusign-form",Object.assign({},this.getDocuSignFormTextProps()));case"/4":return h$1("sqm-banking-info-form",null);case"/submitted":return h$1("sqm-tax-document-submitted",Object.assign({},this.getSubmittedPageTextProps()))}return h$1("div",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,r=1,i=arguments.length;r<i;r++){t=arguments[r];for(var s in t)if(Object.prototype.hasOwnProperty.call(t,s))e[s]=t[s]}return e};return __assign.apply(this,arguments)};import{r as registerInstance,h as h$1}from"./index-f16aa635.js";import{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{g as getProps}from"./utils-334c1e34.js";import{g as getContextValueName,d as useParentState,e as useParentQuery,T as TAX_CONTEXT_NAMESPACE,c as TAX_FORM_CONTEXT_NAMESPACE,f as USER_FORM_CONTEXT_NAMESPACE,U as USER_QUERY_NAMESPACE,G as GET_USER,C as COUNTRIES_NAMESPACE,h as GET_COUNTRIES,i as CURRENCIES_NAMESPACE,j as GET_CURRENCIES}from"./useParentQuery-81c637fa.js";function getCurrentStep(e){var t,r;if(!e.impactConnection||((t=e.impactConnection)===null||t===void 0?void 0:t.connectionStatus)==="NOT_CONNECTED"||!((r=e.impactConnection)===null||r===void 0?void 0:r.publisher)){return"/1"}if(!e.impactConnection.publisher.requiredTaxDocumentType){return"/submitted"}if(e.impactConnection.publisher.currentTaxDocument){var i=e.impactConnection.publisher.currentTaxDocument.status;if(i==="ACTIVE"||i==="NOT_VERIFIED")return"/submitted";return"/3"}return"/error"}function useTaxAndCash(){var e;var t=O();var r=H();var i=useParentState({namespace:TAX_CONTEXT_NAMESPACE,initialValue:"/loading"}),s=i[0],a=i[1];var n=useParentState({namespace:TAX_FORM_CONTEXT_NAMESPACE,initialValue:{}}),o=n[0],p=n[1];var u=useParentState({namespace:USER_FORM_CONTEXT_NAMESPACE,initialValue:{firstName:undefined,lastName:undefined,email:undefined,countryCode:undefined,currency:undefined}}),c=u[0],m=u[1];var d=useParentQuery({namespace:USER_QUERY_NAMESPACE,query:GET_USER,skip:!r}).data;useParentQuery({namespace:COUNTRIES_NAMESPACE,query:GET_COUNTRIES,skip:!r});useParentQuery({namespace:CURRENCIES_NAMESPACE,query:GET_CURRENCIES,skip:!r});useEffect((function(){if(!t||!r)return;if(d){var e=d===null||d===void 0?void 0:d.user;if(!e||s!=="/loading")return;var i=getCurrentStep(e);a(i)}}),[t,r,(e=d===null||d===void 0?void 0:d.user)===null||e===void 0?void 0:e.email]);return{step:s,setStep:a,context:o,namespace:getContextValueName(TAX_CONTEXT_NAMESPACE),loading:s==="/loading"}}function extractProps(e,t){var r=Object.keys(e).filter((function(e){return e.startsWith(t)}));var i=r.reduce((function(r,i){var s;var a=i.replace(t,"");return __assign(__assign({},r),(s={},s[a]=e[i],s))}),{});return i}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 agree to the terms";this.step1_taxAndBankingCollection="Continue";this.step1_formStep="Step 1 of 4";this.step1_personalInformation="Personal Information";this.step1_businessEntity="I represent a business entity";this.step1_individualParticipant="I am an individual participant";this.step1_participantType="Participant type";this.step1_submitButton="Continue";this.step1_firstNameError="Enter a first name";this.step1_lastNameError="Enter a last name";this.step1_emailError="Enter a valid email";this.step1_countryError="Select a country";this.step1_currencyError="Select a currency";this.step1_allowBankingCollectionError="This field is required";this.step1_participantTypeError="Select a participant type";this.step1_isPartnerAlertHeader="An account with this email already exists with our referral program provider, impact.com";this.step1_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.";this.step1_generalErrorTitle="There was a problem submitting your information";this.step1_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.";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.step2_notRegistered="I am not registered for Indirect Tax";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_isPartnerAlertHeader="An account with this email already exists with our referral program provider, impact.com";this.step2_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.";this.step2_submitButton="Continue";this.step2_backButton="Back";this.step2_taxDetailsError="This field is required";this.step2_generalErrorTitle="There was a problem submitting your information";this.step2_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.";this.step2_selectedRegionError="Country is required";this.step2_provinceError="Province is required";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.step2_subRegionTaxNumberError="Income Tax Number is required";this.step2_qstTaxNumberError="QST 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_submitButton="Continue";this.step3_backButton="Back";this.step3_generalErrorTitle="There was a problem submitting your information";this.step3_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.";this.step3_formSubmissionError="This field is required";this.step3b_formStep="Step 3 of 4";this.step3b_formLabel="Select a tax form";this.step3b_taxForm="Tax form";this.step3b_w9Label="W9";this.step3b_w9Description="W9 For participants based in the US, joining the referral program of a US-based company.";this.step3b_w8Label="W8-Ben";this.step3b_w8Description="W8-BEN For individuals residing outside of the US, joining the referral program of a US-based company.";this.step3b_w8ELabel="W8-BEN-E";this.step3b_w8EDescription="W8-BEN-E For participants residing outside of the US who represent a business entity, joining the referral program of a US-based company.";this.step3b_submitButton="Continue";this.step3b_backButton="Back";this.step3b_generalErrorTitle="There was a problem submitting your information";this.step3b_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.";this.step4_statusTextActive="Active";this.step4_statusTextNotActive="Invalid Tax Form";this.step4_statusTextNotVerified="Not Verified";this.step4_badgeTextSubmittedOn="Submitted on {dateSubmitted}";this.step4_badgeTextSubmittedOnW8="Submitted on {dateSubmitted}. Valid for three years after submission.";this.step4_badgeTextAwaitingReview="Awaiting review. Submitted on {dateSubmitted}.";this.step4_taxAlertHeaderNotActiveW9="Your W9 tax form has personal information that doesn’t match your profile";this.step4_taxAlertHeaderNotActiveW8="{documentType} tax form is invalid";this.step4_taxAlertNotActiveMessageW9="Please resubmit a new {documentType} form.";this.step4_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.step4_invalidForm="Ensure your information matches your profile and resubmit a new document.";this.step4_bankingInformationSectionHeader="Banking Information";this.step4_taxDocumentSectionHeader="Tax documents";this.step4_taxDocumentSectionSubHeader="{documentType} Tax Form";this.step4_noFormNeededSubtext="Tax documents are only required if you are based in the US. If your country of residence has changed, please contact Support.";this.step4_indirectTaxInfoSectionHeader="Indirect Tax";this.step4_indirectTaxInfoCanada="Registered in {province}, {country}";this.step4_indirectTaxInfoOtherCountry="Registered in {country}";this.step4_indirectTaxInfoSpain="Registered in {country}, {subRegion}";this.step4_indirectTaxTooltipSupport="To make changes to your indirect tax information, please contact Support.";this.step4_indirectTaxDetails="{indirectTaxType} number: {indirectTaxNumber}";this.step4_newFormButton="Submit New Form";this.step4_editPaymentInformationButton="Edit Payout Information";this.step4_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.step4_generalErrorTitle="There was a problem submitting your information";this.step4_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.";this.step4_qstNumber="QST Number: {qstNumber}";this.step4_subRegionTaxNumber="Income Tax Number: {incomeTaxNumber}";h(this)}e.prototype.disconnectedCallback=function(){};e.prototype.getUserInfoFormTextProps=function(){var e=getProps(this);return extractProps(e,"step1_")};e.prototype.getIndirectTaxFormTextProps=function(){var e=getProps(this);return extractProps(e,"step2_")};e.prototype.getDocuSignFormTextProps=function(){var e=getProps(this);return extractProps(e,"step3_")};e.prototype.getDocumentTypeFormTextProps=function(){var e=getProps(this);return extractProps(e,"step3b_")};e.prototype.getSubmittedPageTextProps=function(){var e=getProps(this);return extractProps(e,"step4_")};e.prototype.render=function(){var e=useTaxAndCash();switch(e.step){case"/1":return h$1("sqm-user-info-form",Object.assign({},this.getUserInfoFormTextProps()));case"/2":return h$1("sqm-indirect-tax-form",Object.assign({},this.getIndirectTaxFormTextProps()));case"/3":case"/3/W8BEN":case"/3/W8BENE":case"/3/W9":return h$1("sqm-docusign-form",Object.assign({},this.getDocuSignFormTextProps()));case"/4":return h$1("sqm-banking-info-form",null);case"/submitted":return h$1("sqm-tax-document-submitted",Object.assign({},this.getSubmittedPageTextProps()))}return h$1("div",null)};return e}();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-aa16b88a",[[4,"sqm-stencilbook",{"ignored":[32]}]]],["p-303ca91d",[[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_taxAndBankingCollection":[1,"step-1_tax-and-banking-collection"],"step1_formStep":[1,"step-1_form-step"],"step1_personalInformation":[1,"step-1_personal-information"],"step1_businessEntity":[1,"step-1_business-entity"],"step1_individualParticipant":[1,"step-1_individual-participant"],"step1_participantType":[1,"step-1_participant-type"],"step1_submitButton":[1,"step-1_submit-button"],"step1_firstNameError":[1,"step-1_first-name-error"],"step1_lastNameError":[1,"step-1_last-name-error"],"step1_emailError":[1,"step-1_email-error"],"step1_countryError":[1,"step-1_country-error"],"step1_currencyError":[1,"step-1_currency-error"],"step1_allowBankingCollectionError":[1,"step-1_allow-banking-collection-error"],"step1_participantTypeError":[1,"step-1_participant-type-error"],"step1_isPartnerAlertHeader":[1,"step-1_is-partner-alert-header"],"step1_isPartnerAlertDescription":[1,"step-1_is-partner-alert-description"],"step1_generalErrorTitle":[1,"step-1_general-error-title"],"step1_generalErrorDescription":[1,"step-1_general-error-description"],"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"],"step2_notRegistered":[1,"step-2_not-registered"],"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_isPartnerAlertHeader":[1,"step-2_is-partner-alert-header"],"step2_isPartnerAlertDescription":[1,"step-2_is-partner-alert-description"],"step2_submitButton":[1,"step-2_submit-button"],"step2_backButton":[1,"step-2_back-button"],"step2_taxDetailsError":[1,"step-2_tax-details-error"],"step2_generalErrorTitle":[1,"step-2_general-error-title"],"step2_generalErrorDescription":[1,"step-2_general-error-description"],"step2_selectedRegionError":[1,"step-2_selected-region-error"],"step2_provinceError":[1,"step-2_province-error"],"step2_indirectTaxNumberError":[1,"step-2_indirect-tax-number-error"],"step2_subRegionTaxNumberError":[1,"step-2_sub-region-tax-number-error"],"step2_qstTaxNumberError":[1,"step-2_qst-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_submitButton":[1,"step-3_submit-button"],"step3_backButton":[1,"step-3_back-button"],"step3_generalErrorTitle":[1,"step-3_general-error-title"],"step3_generalErrorDescription":[1,"step-3_general-error-description"],"step3_formSubmissionError":[1,"step-3_form-submission-error"],"step3b_formStep":[1,"step-3b_form-step"],"step3b_formLabel":[1,"step-3b_form-label"],"step3b_taxForm":[1,"step-3b_tax-form"],"step3b_w9Label":[1,"step-3b_w-9-label"],"step3b_w9Description":[1,"step-3b_w-9-description"],"step3b_w8Label":[1,"step-3b_w-8-label"],"step3b_w8Description":[1,"step-3b_w-8-description"],"step3b_w8ELabel":[1,"step-3b_w-8-e-label"],"step3b_w8EDescription":[1,"step-3b_w-8-e-description"],"step3b_submitButton":[1,"step-3b_submit-button"],"step3b_backButton":[1,"step-3b_back-button"],"step3b_generalErrorTitle":[1,"step-3b_general-error-title"],"step3b_generalErrorDescription":[1,"step-3b_general-error-description"],"step4_statusTextActive":[1,"step-4_status-text-active"],"step4_statusTextNotActive":[1,"step-4_status-text-not-active"],"step4_statusTextNotVerified":[1,"step-4_status-text-not-verified"],"step4_badgeTextSubmittedOn":[1,"step-4_badge-text-submitted-on"],"step4_badgeTextSubmittedOnW8":[1,"step-4_badge-text-submitted-on-w-8"],"step4_badgeTextAwaitingReview":[1,"step-4_badge-text-awaiting-review"],"step4_taxAlertHeaderNotActiveW9":[1,"step-4_tax-alert-header-not-active-w-9"],"step4_taxAlertHeaderNotActiveW8":[1,"step-4_tax-alert-header-not-active-w-8"],"step4_taxAlertNotActiveMessageW9":[1,"step-4_tax-alert-not-active-message-w-9"],"step4_taxAlertNotActiveMessageW8":[1,"step-4_tax-alert-not-active-message-w-8"],"step4_invalidForm":[1,"step-4_invalid-form"],"step4_bankingInformationSectionHeader":[1,"step-4_banking-information-section-header"],"step4_taxDocumentSectionHeader":[1,"step-4_tax-document-section-header"],"step4_taxDocumentSectionSubHeader":[1,"step-4_tax-document-section-sub-header"],"step4_noFormNeededSubtext":[1,"step-4_no-form-needed-subtext"],"step4_indirectTaxInfoSectionHeader":[1,"step-4_indirect-tax-info-section-header"],"step4_indirectTaxInfoCanada":[1,"step-4_indirect-tax-info-canada"],"step4_indirectTaxInfoOtherCountry":[1,"step-4_indirect-tax-info-other-country"],"step4_indirectTaxInfoSpain":[1,"step-4_indirect-tax-info-spain"],"step4_indirectTaxTooltipSupport":[1,"step-4_indirect-tax-tooltip-support"],"step4_indirectTaxDetails":[1,"step-4_indirect-tax-details"],"step4_newFormButton":[1,"step-4_new-form-button"],"step4_editPaymentInformationButton":[1,"step-4_edit-payment-information-button"],"step4_notRegisteredForTax":[1,"step-4_not-registered-for-tax"],"step4_generalErrorTitle":[1,"step-4_general-error-title"],"step4_generalErrorDescription":[1,"step-4_general-error-description"],"step4_qstNumber":[1,"step-4_qst-number"],"step4_subRegionTaxNumber":[1,"step-4_sub-region-tax-number"],"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-c4c5dce4",[[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-6ef911e3",[[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-4107b439",[[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],"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-153b150b",[[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"],"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],"expiryText":[1,"expiry-text"],"locale":[1],"pendingUsTax":[1,"pending-us-tax"],"pendingScheduled":[1,"pending-scheduled"],"pendingUnhandled":[1,"pending-unhandled"],"pendingReviewText":[1,"pending-review-text"],"deniedText":[1,"denied-text"]}]]],["p-fd3ad2c8",[[1,"sqm-tax-document-submitted",{"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"],"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"],"bankProvinceStateLabel":[1,"bank-province-state-label"],"bankPostalCodeLabel":[1,"bank-postal-code-label"],"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"],"submitButton":[1,"submit-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"],"notRegistered":[1,"not-registered"],"selectedRegion":[1,"selected-region"],"province":[1],"indirectTaxNumber":[1,"indirect-tax-number"],"isPartnerAlertHeader":[1,"is-partner-alert-header"],"isPartnerAlertDescription":[1,"is-partner-alert-description"],"submitButton":[1,"submit-button"],"backButton":[1,"back-button"],"taxDetailsError":[1,"tax-details-error"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"selectedRegionError":[1,"selected-region-error"],"provinceError":[1,"province-error"],"indirectTaxNumberError":[1,"indirect-tax-number-error"],"subRegionTaxNumberError":[1,"sub-region-tax-number-error"],"qstTaxNumberError":[1,"qst-tax-number-error"],"subRegion":[1,"sub-region"],"subRegionError":[1,"sub-region-error"],"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"],"demoData":[16]}],[1,"sqm-user-info-form",{"firstName":[1,"first-name"],"lastName":[1,"last-name"],"email":[1],"country":[1],"currency":[1],"allowBankingCollection":[1,"allow-banking-collection"],"taxAndBankingCollection":[1,"tax-and-banking-collection"],"formStep":[1,"form-step"],"personalInformation":[1,"personal-information"],"businessEntity":[1,"business-entity"],"individualParticipant":[1,"individual-participant"],"participantType":[1,"participant-type"],"submitButton":[1,"submit-button"],"firstNameError":[1,"first-name-error"],"lastNameError":[1,"last-name-error"],"emailError":[1,"email-error"],"countryError":[1,"country-error"],"currencyError":[1,"currency-error"],"allowBankingCollectionError":[1,"allow-banking-collection-error"],"participantTypeError":[1,"participant-type-error"],"isPartnerAlertHeader":[1,"is-partner-alert-header"],"isPartnerAlertDescription":[1,"is-partner-alert-description"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"demoData":[16],"ignored":[32]}],[1,"sqm-payout-details-card",{"demoData":[16]}]]],["p-53cc17a2",[[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],"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]}]]]]'),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-aa16b88a",[[4,"sqm-stencilbook",{"ignored":[32]}]]],["p-1f467fdc",[[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_taxAndBankingCollection":[1,"step-1_tax-and-banking-collection"],"step1_formStep":[1,"step-1_form-step"],"step1_personalInformation":[1,"step-1_personal-information"],"step1_businessEntity":[1,"step-1_business-entity"],"step1_individualParticipant":[1,"step-1_individual-participant"],"step1_participantType":[1,"step-1_participant-type"],"step1_submitButton":[1,"step-1_submit-button"],"step1_firstNameError":[1,"step-1_first-name-error"],"step1_lastNameError":[1,"step-1_last-name-error"],"step1_emailError":[1,"step-1_email-error"],"step1_countryError":[1,"step-1_country-error"],"step1_currencyError":[1,"step-1_currency-error"],"step1_allowBankingCollectionError":[1,"step-1_allow-banking-collection-error"],"step1_participantTypeError":[1,"step-1_participant-type-error"],"step1_isPartnerAlertHeader":[1,"step-1_is-partner-alert-header"],"step1_isPartnerAlertDescription":[1,"step-1_is-partner-alert-description"],"step1_generalErrorTitle":[1,"step-1_general-error-title"],"step1_generalErrorDescription":[1,"step-1_general-error-description"],"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"],"step2_notRegistered":[1,"step-2_not-registered"],"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_isPartnerAlertHeader":[1,"step-2_is-partner-alert-header"],"step2_isPartnerAlertDescription":[1,"step-2_is-partner-alert-description"],"step2_submitButton":[1,"step-2_submit-button"],"step2_backButton":[1,"step-2_back-button"],"step2_taxDetailsError":[1,"step-2_tax-details-error"],"step2_generalErrorTitle":[1,"step-2_general-error-title"],"step2_generalErrorDescription":[1,"step-2_general-error-description"],"step2_selectedRegionError":[1,"step-2_selected-region-error"],"step2_provinceError":[1,"step-2_province-error"],"step2_indirectTaxNumberError":[1,"step-2_indirect-tax-number-error"],"step2_subRegionTaxNumberError":[1,"step-2_sub-region-tax-number-error"],"step2_qstTaxNumberError":[1,"step-2_qst-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_submitButton":[1,"step-3_submit-button"],"step3_backButton":[1,"step-3_back-button"],"step3_generalErrorTitle":[1,"step-3_general-error-title"],"step3_generalErrorDescription":[1,"step-3_general-error-description"],"step3_formSubmissionError":[1,"step-3_form-submission-error"],"step3b_formStep":[1,"step-3b_form-step"],"step3b_formLabel":[1,"step-3b_form-label"],"step3b_taxForm":[1,"step-3b_tax-form"],"step3b_w9Label":[1,"step-3b_w-9-label"],"step3b_w9Description":[1,"step-3b_w-9-description"],"step3b_w8Label":[1,"step-3b_w-8-label"],"step3b_w8Description":[1,"step-3b_w-8-description"],"step3b_w8ELabel":[1,"step-3b_w-8-e-label"],"step3b_w8EDescription":[1,"step-3b_w-8-e-description"],"step3b_submitButton":[1,"step-3b_submit-button"],"step3b_backButton":[1,"step-3b_back-button"],"step3b_generalErrorTitle":[1,"step-3b_general-error-title"],"step3b_generalErrorDescription":[1,"step-3b_general-error-description"],"step4_statusTextActive":[1,"step-4_status-text-active"],"step4_statusTextNotActive":[1,"step-4_status-text-not-active"],"step4_statusTextNotVerified":[1,"step-4_status-text-not-verified"],"step4_badgeTextSubmittedOn":[1,"step-4_badge-text-submitted-on"],"step4_badgeTextSubmittedOnW8":[1,"step-4_badge-text-submitted-on-w-8"],"step4_badgeTextAwaitingReview":[1,"step-4_badge-text-awaiting-review"],"step4_taxAlertHeaderNotActiveW9":[1,"step-4_tax-alert-header-not-active-w-9"],"step4_taxAlertHeaderNotActiveW8":[1,"step-4_tax-alert-header-not-active-w-8"],"step4_taxAlertNotActiveMessageW9":[1,"step-4_tax-alert-not-active-message-w-9"],"step4_taxAlertNotActiveMessageW8":[1,"step-4_tax-alert-not-active-message-w-8"],"step4_invalidForm":[1,"step-4_invalid-form"],"step4_bankingInformationSectionHeader":[1,"step-4_banking-information-section-header"],"step4_taxDocumentSectionHeader":[1,"step-4_tax-document-section-header"],"step4_taxDocumentSectionSubHeader":[1,"step-4_tax-document-section-sub-header"],"step4_noFormNeededSubtext":[1,"step-4_no-form-needed-subtext"],"step4_indirectTaxInfoSectionHeader":[1,"step-4_indirect-tax-info-section-header"],"step4_indirectTaxInfoCanada":[1,"step-4_indirect-tax-info-canada"],"step4_indirectTaxInfoOtherCountry":[1,"step-4_indirect-tax-info-other-country"],"step4_indirectTaxInfoSpain":[1,"step-4_indirect-tax-info-spain"],"step4_indirectTaxTooltipSupport":[1,"step-4_indirect-tax-tooltip-support"],"step4_indirectTaxDetails":[1,"step-4_indirect-tax-details"],"step4_newFormButton":[1,"step-4_new-form-button"],"step4_editPaymentInformationButton":[1,"step-4_edit-payment-information-button"],"step4_notRegisteredForTax":[1,"step-4_not-registered-for-tax"],"step4_generalErrorTitle":[1,"step-4_general-error-title"],"step4_generalErrorDescription":[1,"step-4_general-error-description"],"step4_qstNumber":[1,"step-4_qst-number"],"step4_subRegionTaxNumber":[1,"step-4_sub-region-tax-number"],"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-c4c5dce4",[[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-6ef911e3",[[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-4107b439",[[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],"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-153b150b",[[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"],"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],"expiryText":[1,"expiry-text"],"locale":[1],"pendingUsTax":[1,"pending-us-tax"],"pendingScheduled":[1,"pending-scheduled"],"pendingUnhandled":[1,"pending-unhandled"],"pendingReviewText":[1,"pending-review-text"],"deniedText":[1,"denied-text"]}]]],["p-fd3ad2c8",[[1,"sqm-tax-document-submitted",{"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"],"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"],"bankProvinceStateLabel":[1,"bank-province-state-label"],"bankPostalCodeLabel":[1,"bank-postal-code-label"],"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"],"submitButton":[1,"submit-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"],"notRegistered":[1,"not-registered"],"selectedRegion":[1,"selected-region"],"province":[1],"indirectTaxNumber":[1,"indirect-tax-number"],"isPartnerAlertHeader":[1,"is-partner-alert-header"],"isPartnerAlertDescription":[1,"is-partner-alert-description"],"submitButton":[1,"submit-button"],"backButton":[1,"back-button"],"taxDetailsError":[1,"tax-details-error"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"selectedRegionError":[1,"selected-region-error"],"provinceError":[1,"province-error"],"indirectTaxNumberError":[1,"indirect-tax-number-error"],"subRegionTaxNumberError":[1,"sub-region-tax-number-error"],"qstTaxNumberError":[1,"qst-tax-number-error"],"subRegion":[1,"sub-region"],"subRegionError":[1,"sub-region-error"],"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"],"demoData":[16]}],[1,"sqm-user-info-form",{"firstName":[1,"first-name"],"lastName":[1,"last-name"],"email":[1],"country":[1],"currency":[1],"allowBankingCollection":[1,"allow-banking-collection"],"taxAndBankingCollection":[1,"tax-and-banking-collection"],"formStep":[1,"form-step"],"personalInformation":[1,"personal-information"],"businessEntity":[1,"business-entity"],"individualParticipant":[1,"individual-participant"],"participantType":[1,"participant-type"],"submitButton":[1,"submit-button"],"firstNameError":[1,"first-name-error"],"lastNameError":[1,"last-name-error"],"emailError":[1,"email-error"],"countryError":[1,"country-error"],"currencyError":[1,"currency-error"],"allowBankingCollectionError":[1,"allow-banking-collection-error"],"participantTypeError":[1,"participant-type-error"],"isPartnerAlertHeader":[1,"is-partner-alert-header"],"isPartnerAlertDescription":[1,"is-partner-alert-description"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"demoData":[16],"ignored":[32]}],[1,"sqm-payout-details-card",{"demoData":[16]}]]],["p-53cc17a2",[[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],"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]}]]]]'),e)));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{r as t,h as e}from"./p-f6e5df75.js";import{f as i,m as r}from"./p-8d37b2a1.js";import{O as s,H as a}from"./p-94ad6231.js";import"./p-c1086930.js";import{g as o}from"./p-9ec99ced.js";import{g as n,d as m,e as u,T as h,c,f as d,U as p,G as f,C as l,h as b,i as y,j as T}from"./p-fde30790.js";function g(t,e){return Object.keys(t).filter((t=>t.startsWith(e))).reduce(((i,r)=>({...i,[r.replace(e,"")]:t[r]})),{})}const S=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 agree to the terms",this.step1_taxAndBankingCollection="Continue",this.step1_formStep="Step 1 of 4",this.step1_personalInformation="Personal Information",this.step1_businessEntity="I represent a business entity",this.step1_individualParticipant="I am an individual participant",this.step1_participantType="Participant type",this.step1_submitButton="Continue",this.step1_firstNameError="Enter a first name",this.step1_lastNameError="Enter a last name",this.step1_emailError="Enter a valid email",this.step1_countryError="Select a country",this.step1_currencyError="Select a currency",this.step1_allowBankingCollectionError="This field is required",this.step1_participantTypeError="Select a participant type",this.step1_isPartnerAlertHeader="An account with this email already exists with our referral program provider, impact.com",this.step1_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.",this.step1_generalErrorTitle="There was a problem submitting your information",this.step1_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.",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.step2_notRegistered="I am not registered for Indirect Tax",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_isPartnerAlertHeader="An account with this email already exists with our referral program provider, impact.com",this.step2_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.",this.step2_submitButton="Continue",this.step2_backButton="Back",this.step2_taxDetailsError="This field is required",this.step2_generalErrorTitle="There was a problem submitting your information",this.step2_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.",this.step2_selectedRegionError="Country is required",this.step2_provinceError="Province is required",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.step2_subRegionTaxNumberError="Income Tax Number is required",this.step2_qstTaxNumberError="QST 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_submitButton="Continue",this.step3_backButton="Back",this.step3_generalErrorTitle="There was a problem submitting your information",this.step3_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.",this.step3_formSubmissionError="This field is required",this.step3b_formStep="Step 3 of 4",this.step3b_formLabel="Select a tax form",this.step3b_taxForm="Tax form",this.step3b_w9Label="W9",this.step3b_w9Description="W9 For participants based in the US, joining the referral program of a US-based company.",this.step3b_w8Label="W8-Ben",this.step3b_w8Description="W8-BEN For individuals residing outside of the US, joining the referral program of a US-based company.",this.step3b_w8ELabel="W8-BEN-E",this.step3b_w8EDescription="W8-BEN-E For participants residing outside of the US who represent a business entity, joining the referral program of a US-based company.",this.step3b_submitButton="Continue",this.step3b_backButton="Back",this.step3b_generalErrorTitle="There was a problem submitting your information",this.step3b_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.",this.step4_statusTextActive="Active",this.step4_statusTextNotActive="Invalid Tax Form",this.step4_statusTextNotVerified="Not Verified",this.step4_badgeTextSubmittedOn="Submitted on {dateSubmitted}",this.step4_badgeTextSubmittedOnW8="Submitted on {dateSubmitted}. Valid for three years after submission.",this.step4_badgeTextAwaitingReview="Awaiting review. Submitted on {dateSubmitted}.",this.step4_taxAlertHeaderNotActiveW9="Your W9 tax form has personal information that doesn’t match your profile",this.step4_taxAlertHeaderNotActiveW8="{documentType} tax form is invalid",this.step4_taxAlertNotActiveMessageW9="Please resubmit a new {documentType} form.",this.step4_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.step4_invalidForm="Ensure your information matches your profile and resubmit a new document.",this.step4_bankingInformationSectionHeader="Banking Information",this.step4_taxDocumentSectionHeader="Tax documents",this.step4_taxDocumentSectionSubHeader="{documentType} Tax Form",this.step4_noFormNeededSubtext="Tax documents are only required if you are based in the US. If your country of residence has changed, please contact Support.",this.step4_indirectTaxInfoSectionHeader="Indirect Tax",this.step4_indirectTaxInfoCanada="Registered in {province}, {country}",this.step4_indirectTaxInfoOtherCountry="Registered in {country}",this.step4_indirectTaxInfoSpain="Registered in {country}, {subRegion}",this.step4_indirectTaxTooltipSupport="To make changes to your indirect tax information, please contact Support.",this.step4_indirectTaxDetails="{indirectTaxType} number: {indirectTaxNumber}",this.step4_newFormButton="Submit New Form",this.step4_editPaymentInformationButton="Edit Payout Information",this.step4_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.step4_generalErrorTitle="There was a problem submitting your information",this.step4_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.",this.step4_qstNumber="QST Number: {qstNumber}",this.step4_subRegionTaxNumber="Income Tax Number: {incomeTaxNumber}",r(this)}disconnectedCallback(){}getUserInfoFormTextProps(){return g(o(this),"step1_")}getIndirectTaxFormTextProps(){return g(o(this),"step2_")}getDocuSignFormTextProps(){return g(o(this),"step3_")}getDocumentTypeFormTextProps(){return g(o(this),"step3b_")}getSubmittedPageTextProps(){return g(o(this),"step4_")}render(){switch(function(){var t;const e=s(),r=a(),[o,g]=m({namespace:h,initialValue:"/loading"}),[S,x]=m({namespace:c,initialValue:{}}),[v,I]=m({namespace:d,initialValue:{firstName:void 0,lastName:void 0,email:void 0,countryCode:void 0,currency:void 0}}),{data:N}=u({namespace:p,query:f,skip:!r});return u({namespace:l,query:b,skip:!r}),u({namespace:y,query:T,skip:!r}),i((()=>{if(e&&r&&N){const t=null==N?void 0:N.user;if(!t||"/loading"!==o)return;const e=function(t){var e,i;if(!t.impactConnection||"NOT_CONNECTED"===(null===(e=t.impactConnection)||void 0===e?void 0:e.connectionStatus)||!(null===(i=t.impactConnection)||void 0===i?void 0:i.publisher))return"/1";if(!t.impactConnection.publisher.requiredTaxDocumentType)return"/submitted";if(t.impactConnection.publisher.currentTaxDocument){const{status:e}=t.impactConnection.publisher.currentTaxDocument;return"ACTIVE"===e||"NOT_VERIFIED"===e?"/submitted":"/3"}return"/error"}(t);g(e)}}),[e,r,null===(t=null==N?void 0:N.user)||void 0===t?void 0:t.email]),{step:o,setStep:g,context:S,namespace:n(h),loading:"/loading"===o}}().step){case"/1":return e("sqm-user-info-form",Object.assign({},this.getUserInfoFormTextProps()));case"/2":return e("sqm-indirect-tax-form",Object.assign({},this.getIndirectTaxFormTextProps()));case"/3":case"/3/W8BEN":case"/3/W8BENE":case"/3/W9":return e("sqm-docusign-form",Object.assign({},this.getDocuSignFormTextProps()));case"/4":return e("sqm-banking-info-form",null);case"/submitted":return e("sqm-tax-document-submitted",Object.assign({},this.getSubmittedPageTextProps()))}return e("div",null)}};export{S as sqm_tax_and_cash}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var __assign=this&&this.__assign||function(){__assign=Object.assign||function(e){for(var t,i=1,r=arguments.length;i<r;i++){t=arguments[i];for(var s in t)if(Object.prototype.hasOwnProperty.call(t,s))e[s]=t[s]}return e};return __assign.apply(this,arguments)};System.register(["./p-1e56ab57.system.js","./p-c23bbbc4.system.js","./p-e86ec70c.system.js","./p-4bd679a7.system.js","./p-6333265f.system.js","./p-58f59e86.system.js"],(function(e){"use strict";var t,i,r,s,n,a,o,p,u,c,m,d,h,l,f,b,_,T,g;return{setters:[function(e){t=e.r;i=e.h},function(e){r=e.f;s=e.m},function(e){n=e.O;a=e.H},function(){},function(e){o=e.g},function(e){p=e.g;u=e.d;c=e.e;m=e.T;d=e.c;h=e.f;l=e.U;f=e.G;b=e.C;_=e.h;T=e.i;g=e.j}],execute:function(){function y(e){var t,i;if(!e.impactConnection||((t=e.impactConnection)===null||t===void 0?void 0:t.connectionStatus)==="NOT_CONNECTED"||!((i=e.impactConnection)===null||i===void 0?void 0:i.publisher)){return"/1"}if(!e.impactConnection.publisher.requiredTaxDocumentType){return"/submitted"}if(e.impactConnection.publisher.currentTaxDocument){var r=e.impactConnection.publisher.currentTaxDocument.status;if(r==="ACTIVE"||r==="NOT_VERIFIED")return"/submitted";return"/3"}return"/error"}function x(){var e;var t=n();var i=a();var s=u({namespace:m,initialValue:"/loading"}),o=s[0],x=s[1];var S=u({namespace:d,initialValue:{}}),v=S[0],N=S[1];var E=u({namespace:h,initialValue:{firstName:undefined,lastName:undefined,email:undefined,countryCode:undefined,currency:undefined}}),I=E[0],w=E[1];var P=c({namespace:l,query:f,skip:!i}).data;c({namespace:b,query:_,skip:!i});c({namespace:T,query:g,skip:!i});r((function(){if(!t||!i)return;if(P){var e=P===null||P===void 0?void 0:P.user;if(!e||o!=="/loading")return;var r=y(e);x(r)}}),[t,i,(e=P===null||P===void 0?void 0:P.user)===null||e===void 0?void 0:e.email]);return{step:o,setStep:x,context:v,namespace:p(m),loading:o==="/loading"}}function S(e,t){var i=Object.keys(e).filter((function(e){return e.startsWith(t)}));var r=i.reduce((function(i,r){var s;var n=r.replace(t,"");return __assign(__assign({},i),(s={},s[n]=e[r],s))}),{});return r}var v=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 agree to the terms";this.step1_taxAndBankingCollection="Continue";this.step1_formStep="Step 1 of 4";this.step1_personalInformation="Personal Information";this.step1_businessEntity="I represent a business entity";this.step1_individualParticipant="I am an individual participant";this.step1_participantType="Participant type";this.step1_submitButton="Continue";this.step1_firstNameError="Enter a first name";this.step1_lastNameError="Enter a last name";this.step1_emailError="Enter a valid email";this.step1_countryError="Select a country";this.step1_currencyError="Select a currency";this.step1_allowBankingCollectionError="This field is required";this.step1_participantTypeError="Select a participant type";this.step1_isPartnerAlertHeader="An account with this email already exists with our referral program provider, impact.com";this.step1_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.";this.step1_generalErrorTitle="There was a problem submitting your information";this.step1_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.";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.step2_notRegistered="I am not registered for Indirect Tax";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_isPartnerAlertHeader="An account with this email already exists with our referral program provider, impact.com";this.step2_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.";this.step2_submitButton="Continue";this.step2_backButton="Back";this.step2_taxDetailsError="This field is required";this.step2_generalErrorTitle="There was a problem submitting your information";this.step2_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.";this.step2_selectedRegionError="Country is required";this.step2_provinceError="Province is required";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.step2_subRegionTaxNumberError="Income Tax Number is required";this.step2_qstTaxNumberError="QST 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_submitButton="Continue";this.step3_backButton="Back";this.step3_generalErrorTitle="There was a problem submitting your information";this.step3_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.";this.step3_formSubmissionError="This field is required";this.step3b_formStep="Step 3 of 4";this.step3b_formLabel="Select a tax form";this.step3b_taxForm="Tax form";this.step3b_w9Label="W9";this.step3b_w9Description="W9 For participants based in the US, joining the referral program of a US-based company.";this.step3b_w8Label="W8-Ben";this.step3b_w8Description="W8-BEN For individuals residing outside of the US, joining the referral program of a US-based company.";this.step3b_w8ELabel="W8-BEN-E";this.step3b_w8EDescription="W8-BEN-E For participants residing outside of the US who represent a business entity, joining the referral program of a US-based company.";this.step3b_submitButton="Continue";this.step3b_backButton="Back";this.step3b_generalErrorTitle="There was a problem submitting your information";this.step3b_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.";this.step4_statusTextActive="Active";this.step4_statusTextNotActive="Invalid Tax Form";this.step4_statusTextNotVerified="Not Verified";this.step4_badgeTextSubmittedOn="Submitted on {dateSubmitted}";this.step4_badgeTextSubmittedOnW8="Submitted on {dateSubmitted}. Valid for three years after submission.";this.step4_badgeTextAwaitingReview="Awaiting review. Submitted on {dateSubmitted}.";this.step4_taxAlertHeaderNotActiveW9="Your W9 tax form has personal information that doesn’t match your profile";this.step4_taxAlertHeaderNotActiveW8="{documentType} tax form is invalid";this.step4_taxAlertNotActiveMessageW9="Please resubmit a new {documentType} form.";this.step4_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.step4_invalidForm="Ensure your information matches your profile and resubmit a new document.";this.step4_bankingInformationSectionHeader="Banking Information";this.step4_taxDocumentSectionHeader="Tax documents";this.step4_taxDocumentSectionSubHeader="{documentType} Tax Form";this.step4_noFormNeededSubtext="Tax documents are only required if you are based in the US. If your country of residence has changed, please contact Support.";this.step4_indirectTaxInfoSectionHeader="Indirect Tax";this.step4_indirectTaxInfoCanada="Registered in {province}, {country}";this.step4_indirectTaxInfoOtherCountry="Registered in {country}";this.step4_indirectTaxInfoSpain="Registered in {country}, {subRegion}";this.step4_indirectTaxTooltipSupport="To make changes to your indirect tax information, please contact Support.";this.step4_indirectTaxDetails="{indirectTaxType} number: {indirectTaxNumber}";this.step4_newFormButton="Submit New Form";this.step4_editPaymentInformationButton="Edit Payout Information";this.step4_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.step4_generalErrorTitle="There was a problem submitting your information";this.step4_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.";this.step4_qstNumber="QST Number: {qstNumber}";this.step4_subRegionTaxNumber="Income Tax Number: {incomeTaxNumber}";s(this)}e.prototype.disconnectedCallback=function(){};e.prototype.getUserInfoFormTextProps=function(){var e=o(this);return S(e,"step1_")};e.prototype.getIndirectTaxFormTextProps=function(){var e=o(this);return S(e,"step2_")};e.prototype.getDocuSignFormTextProps=function(){var e=o(this);return S(e,"step3_")};e.prototype.getDocumentTypeFormTextProps=function(){var e=o(this);return S(e,"step3b_")};e.prototype.getSubmittedPageTextProps=function(){var e=o(this);return S(e,"step4_")};e.prototype.render=function(){var e=x();switch(e.step){case"/1":return i("sqm-user-info-form",Object.assign({},this.getUserInfoFormTextProps()));case"/2":return i("sqm-indirect-tax-form",Object.assign({},this.getIndirectTaxFormTextProps()));case"/3":case"/3/W8BEN":case"/3/W8BENE":case"/3/W9":return i("sqm-docusign-form",Object.assign({},this.getDocuSignFormTextProps()));case"/4":return i("sqm-banking-info-form",null);case"/submitted":return i("sqm-tax-document-submitted",Object.assign({},this.getSubmittedPageTextProps()))}return i("div",null)};return e}())}}}));
|
|
@@ -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-335b77dc.system",[[4,"sqm-stencilbook",{"ignored":[32]}]]],["p-97394372.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_taxAndBankingCollection":[1,"step-1_tax-and-banking-collection"],"step1_formStep":[1,"step-1_form-step"],"step1_personalInformation":[1,"step-1_personal-information"],"step1_businessEntity":[1,"step-1_business-entity"],"step1_individualParticipant":[1,"step-1_individual-participant"],"step1_participantType":[1,"step-1_participant-type"],"step1_submitButton":[1,"step-1_submit-button"],"step1_firstNameError":[1,"step-1_first-name-error"],"step1_lastNameError":[1,"step-1_last-name-error"],"step1_emailError":[1,"step-1_email-error"],"step1_countryError":[1,"step-1_country-error"],"step1_currencyError":[1,"step-1_currency-error"],"step1_allowBankingCollectionError":[1,"step-1_allow-banking-collection-error"],"step1_participantTypeError":[1,"step-1_participant-type-error"],"step1_isPartnerAlertHeader":[1,"step-1_is-partner-alert-header"],"step1_isPartnerAlertDescription":[1,"step-1_is-partner-alert-description"],"step1_generalErrorTitle":[1,"step-1_general-error-title"],"step1_generalErrorDescription":[1,"step-1_general-error-description"],"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"],"step2_notRegistered":[1,"step-2_not-registered"],"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_isPartnerAlertHeader":[1,"step-2_is-partner-alert-header"],"step2_isPartnerAlertDescription":[1,"step-2_is-partner-alert-description"],"step2_submitButton":[1,"step-2_submit-button"],"step2_backButton":[1,"step-2_back-button"],"step2_taxDetailsError":[1,"step-2_tax-details-error"],"step2_generalErrorTitle":[1,"step-2_general-error-title"],"step2_generalErrorDescription":[1,"step-2_general-error-description"],"step2_selectedRegionError":[1,"step-2_selected-region-error"],"step2_provinceError":[1,"step-2_province-error"],"step2_indirectTaxNumberError":[1,"step-2_indirect-tax-number-error"],"step2_subRegionTaxNumberError":[1,"step-2_sub-region-tax-number-error"],"step2_qstTaxNumberError":[1,"step-2_qst-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_submitButton":[1,"step-3_submit-button"],"step3_backButton":[1,"step-3_back-button"],"step3_generalErrorTitle":[1,"step-3_general-error-title"],"step3_generalErrorDescription":[1,"step-3_general-error-description"],"step3_formSubmissionError":[1,"step-3_form-submission-error"],"step3b_formStep":[1,"step-3b_form-step"],"step3b_formLabel":[1,"step-3b_form-label"],"step3b_taxForm":[1,"step-3b_tax-form"],"step3b_w9Label":[1,"step-3b_w-9-label"],"step3b_w9Description":[1,"step-3b_w-9-description"],"step3b_w8Label":[1,"step-3b_w-8-label"],"step3b_w8Description":[1,"step-3b_w-8-description"],"step3b_w8ELabel":[1,"step-3b_w-8-e-label"],"step3b_w8EDescription":[1,"step-3b_w-8-e-description"],"step3b_submitButton":[1,"step-3b_submit-button"],"step3b_backButton":[1,"step-3b_back-button"],"step3b_generalErrorTitle":[1,"step-3b_general-error-title"],"step3b_generalErrorDescription":[1,"step-3b_general-error-description"],"step4_statusTextActive":[1,"step-4_status-text-active"],"step4_statusTextNotActive":[1,"step-4_status-text-not-active"],"step4_statusTextNotVerified":[1,"step-4_status-text-not-verified"],"step4_badgeTextSubmittedOn":[1,"step-4_badge-text-submitted-on"],"step4_badgeTextSubmittedOnW8":[1,"step-4_badge-text-submitted-on-w-8"],"step4_badgeTextAwaitingReview":[1,"step-4_badge-text-awaiting-review"],"step4_taxAlertHeaderNotActiveW9":[1,"step-4_tax-alert-header-not-active-w-9"],"step4_taxAlertHeaderNotActiveW8":[1,"step-4_tax-alert-header-not-active-w-8"],"step4_taxAlertNotActiveMessageW9":[1,"step-4_tax-alert-not-active-message-w-9"],"step4_taxAlertNotActiveMessageW8":[1,"step-4_tax-alert-not-active-message-w-8"],"step4_invalidForm":[1,"step-4_invalid-form"],"step4_bankingInformationSectionHeader":[1,"step-4_banking-information-section-header"],"step4_taxDocumentSectionHeader":[1,"step-4_tax-document-section-header"],"step4_taxDocumentSectionSubHeader":[1,"step-4_tax-document-section-sub-header"],"step4_noFormNeededSubtext":[1,"step-4_no-form-needed-subtext"],"step4_indirectTaxInfoSectionHeader":[1,"step-4_indirect-tax-info-section-header"],"step4_indirectTaxInfoCanada":[1,"step-4_indirect-tax-info-canada"],"step4_indirectTaxInfoOtherCountry":[1,"step-4_indirect-tax-info-other-country"],"step4_indirectTaxInfoSpain":[1,"step-4_indirect-tax-info-spain"],"step4_indirectTaxTooltipSupport":[1,"step-4_indirect-tax-tooltip-support"],"step4_indirectTaxDetails":[1,"step-4_indirect-tax-details"],"step4_newFormButton":[1,"step-4_new-form-button"],"step4_editPaymentInformationButton":[1,"step-4_edit-payment-information-button"],"step4_notRegisteredForTax":[1,"step-4_not-registered-for-tax"],"step4_generalErrorTitle":[1,"step-4_general-error-title"],"step4_generalErrorDescription":[1,"step-4_general-error-description"],"step4_qstNumber":[1,"step-4_qst-number"],"step4_subRegionTaxNumber":[1,"step-4_sub-region-tax-number"],"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-13017085.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-3f56070a.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-8ff7ac38.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],"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-47f69ace.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"],"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],"expiryText":[1,"expiry-text"],"locale":[1],"pendingUsTax":[1,"pending-us-tax"],"pendingScheduled":[1,"pending-scheduled"],"pendingUnhandled":[1,"pending-unhandled"],"pendingReviewText":[1,"pending-review-text"],"deniedText":[1,"denied-text"]}]]],["p-9ffb0235.system",[[1,"sqm-tax-document-submitted",{"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"],"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"],"bankProvinceStateLabel":[1,"bank-province-state-label"],"bankPostalCodeLabel":[1,"bank-postal-code-label"],"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"],"submitButton":[1,"submit-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"],"notRegistered":[1,"not-registered"],"selectedRegion":[1,"selected-region"],"province":[1],"indirectTaxNumber":[1,"indirect-tax-number"],"isPartnerAlertHeader":[1,"is-partner-alert-header"],"isPartnerAlertDescription":[1,"is-partner-alert-description"],"submitButton":[1,"submit-button"],"backButton":[1,"back-button"],"taxDetailsError":[1,"tax-details-error"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"selectedRegionError":[1,"selected-region-error"],"provinceError":[1,"province-error"],"indirectTaxNumberError":[1,"indirect-tax-number-error"],"subRegionTaxNumberError":[1,"sub-region-tax-number-error"],"qstTaxNumberError":[1,"qst-tax-number-error"],"subRegion":[1,"sub-region"],"subRegionError":[1,"sub-region-error"],"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"],"demoData":[16]}],[1,"sqm-user-info-form",{"firstName":[1,"first-name"],"lastName":[1,"last-name"],"email":[1],"country":[1],"currency":[1],"allowBankingCollection":[1,"allow-banking-collection"],"taxAndBankingCollection":[1,"tax-and-banking-collection"],"formStep":[1,"form-step"],"personalInformation":[1,"personal-information"],"businessEntity":[1,"business-entity"],"individualParticipant":[1,"individual-participant"],"participantType":[1,"participant-type"],"submitButton":[1,"submit-button"],"firstNameError":[1,"first-name-error"],"lastNameError":[1,"last-name-error"],"emailError":[1,"email-error"],"countryError":[1,"country-error"],"currencyError":[1,"currency-error"],"allowBankingCollectionError":[1,"allow-banking-collection-error"],"participantTypeError":[1,"participant-type-error"],"isPartnerAlertHeader":[1,"is-partner-alert-header"],"isPartnerAlertDescription":[1,"is-partner-alert-description"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"demoData":[16],"ignored":[32]}],[1,"sqm-payout-details-card",{"demoData":[16]}]]],["p-d73863dd.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],"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]}]]]]'),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-335b77dc.system",[[4,"sqm-stencilbook",{"ignored":[32]}]]],["p-40da0cbf.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_taxAndBankingCollection":[1,"step-1_tax-and-banking-collection"],"step1_formStep":[1,"step-1_form-step"],"step1_personalInformation":[1,"step-1_personal-information"],"step1_businessEntity":[1,"step-1_business-entity"],"step1_individualParticipant":[1,"step-1_individual-participant"],"step1_participantType":[1,"step-1_participant-type"],"step1_submitButton":[1,"step-1_submit-button"],"step1_firstNameError":[1,"step-1_first-name-error"],"step1_lastNameError":[1,"step-1_last-name-error"],"step1_emailError":[1,"step-1_email-error"],"step1_countryError":[1,"step-1_country-error"],"step1_currencyError":[1,"step-1_currency-error"],"step1_allowBankingCollectionError":[1,"step-1_allow-banking-collection-error"],"step1_participantTypeError":[1,"step-1_participant-type-error"],"step1_isPartnerAlertHeader":[1,"step-1_is-partner-alert-header"],"step1_isPartnerAlertDescription":[1,"step-1_is-partner-alert-description"],"step1_generalErrorTitle":[1,"step-1_general-error-title"],"step1_generalErrorDescription":[1,"step-1_general-error-description"],"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"],"step2_notRegistered":[1,"step-2_not-registered"],"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_isPartnerAlertHeader":[1,"step-2_is-partner-alert-header"],"step2_isPartnerAlertDescription":[1,"step-2_is-partner-alert-description"],"step2_submitButton":[1,"step-2_submit-button"],"step2_backButton":[1,"step-2_back-button"],"step2_taxDetailsError":[1,"step-2_tax-details-error"],"step2_generalErrorTitle":[1,"step-2_general-error-title"],"step2_generalErrorDescription":[1,"step-2_general-error-description"],"step2_selectedRegionError":[1,"step-2_selected-region-error"],"step2_provinceError":[1,"step-2_province-error"],"step2_indirectTaxNumberError":[1,"step-2_indirect-tax-number-error"],"step2_subRegionTaxNumberError":[1,"step-2_sub-region-tax-number-error"],"step2_qstTaxNumberError":[1,"step-2_qst-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_submitButton":[1,"step-3_submit-button"],"step3_backButton":[1,"step-3_back-button"],"step3_generalErrorTitle":[1,"step-3_general-error-title"],"step3_generalErrorDescription":[1,"step-3_general-error-description"],"step3_formSubmissionError":[1,"step-3_form-submission-error"],"step3b_formStep":[1,"step-3b_form-step"],"step3b_formLabel":[1,"step-3b_form-label"],"step3b_taxForm":[1,"step-3b_tax-form"],"step3b_w9Label":[1,"step-3b_w-9-label"],"step3b_w9Description":[1,"step-3b_w-9-description"],"step3b_w8Label":[1,"step-3b_w-8-label"],"step3b_w8Description":[1,"step-3b_w-8-description"],"step3b_w8ELabel":[1,"step-3b_w-8-e-label"],"step3b_w8EDescription":[1,"step-3b_w-8-e-description"],"step3b_submitButton":[1,"step-3b_submit-button"],"step3b_backButton":[1,"step-3b_back-button"],"step3b_generalErrorTitle":[1,"step-3b_general-error-title"],"step3b_generalErrorDescription":[1,"step-3b_general-error-description"],"step4_statusTextActive":[1,"step-4_status-text-active"],"step4_statusTextNotActive":[1,"step-4_status-text-not-active"],"step4_statusTextNotVerified":[1,"step-4_status-text-not-verified"],"step4_badgeTextSubmittedOn":[1,"step-4_badge-text-submitted-on"],"step4_badgeTextSubmittedOnW8":[1,"step-4_badge-text-submitted-on-w-8"],"step4_badgeTextAwaitingReview":[1,"step-4_badge-text-awaiting-review"],"step4_taxAlertHeaderNotActiveW9":[1,"step-4_tax-alert-header-not-active-w-9"],"step4_taxAlertHeaderNotActiveW8":[1,"step-4_tax-alert-header-not-active-w-8"],"step4_taxAlertNotActiveMessageW9":[1,"step-4_tax-alert-not-active-message-w-9"],"step4_taxAlertNotActiveMessageW8":[1,"step-4_tax-alert-not-active-message-w-8"],"step4_invalidForm":[1,"step-4_invalid-form"],"step4_bankingInformationSectionHeader":[1,"step-4_banking-information-section-header"],"step4_taxDocumentSectionHeader":[1,"step-4_tax-document-section-header"],"step4_taxDocumentSectionSubHeader":[1,"step-4_tax-document-section-sub-header"],"step4_noFormNeededSubtext":[1,"step-4_no-form-needed-subtext"],"step4_indirectTaxInfoSectionHeader":[1,"step-4_indirect-tax-info-section-header"],"step4_indirectTaxInfoCanada":[1,"step-4_indirect-tax-info-canada"],"step4_indirectTaxInfoOtherCountry":[1,"step-4_indirect-tax-info-other-country"],"step4_indirectTaxInfoSpain":[1,"step-4_indirect-tax-info-spain"],"step4_indirectTaxTooltipSupport":[1,"step-4_indirect-tax-tooltip-support"],"step4_indirectTaxDetails":[1,"step-4_indirect-tax-details"],"step4_newFormButton":[1,"step-4_new-form-button"],"step4_editPaymentInformationButton":[1,"step-4_edit-payment-information-button"],"step4_notRegisteredForTax":[1,"step-4_not-registered-for-tax"],"step4_generalErrorTitle":[1,"step-4_general-error-title"],"step4_generalErrorDescription":[1,"step-4_general-error-description"],"step4_qstNumber":[1,"step-4_qst-number"],"step4_subRegionTaxNumber":[1,"step-4_sub-region-tax-number"],"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-13017085.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-3f56070a.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-8ff7ac38.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],"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-47f69ace.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"],"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],"expiryText":[1,"expiry-text"],"locale":[1],"pendingUsTax":[1,"pending-us-tax"],"pendingScheduled":[1,"pending-scheduled"],"pendingUnhandled":[1,"pending-unhandled"],"pendingReviewText":[1,"pending-review-text"],"deniedText":[1,"denied-text"]}]]],["p-9ffb0235.system",[[1,"sqm-tax-document-submitted",{"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"],"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"],"bankProvinceStateLabel":[1,"bank-province-state-label"],"bankPostalCodeLabel":[1,"bank-postal-code-label"],"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"],"submitButton":[1,"submit-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"],"notRegistered":[1,"not-registered"],"selectedRegion":[1,"selected-region"],"province":[1],"indirectTaxNumber":[1,"indirect-tax-number"],"isPartnerAlertHeader":[1,"is-partner-alert-header"],"isPartnerAlertDescription":[1,"is-partner-alert-description"],"submitButton":[1,"submit-button"],"backButton":[1,"back-button"],"taxDetailsError":[1,"tax-details-error"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"selectedRegionError":[1,"selected-region-error"],"provinceError":[1,"province-error"],"indirectTaxNumberError":[1,"indirect-tax-number-error"],"subRegionTaxNumberError":[1,"sub-region-tax-number-error"],"qstTaxNumberError":[1,"qst-tax-number-error"],"subRegion":[1,"sub-region"],"subRegionError":[1,"sub-region-error"],"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"],"demoData":[16]}],[1,"sqm-user-info-form",{"firstName":[1,"first-name"],"lastName":[1,"last-name"],"email":[1],"country":[1],"currency":[1],"allowBankingCollection":[1,"allow-banking-collection"],"taxAndBankingCollection":[1,"tax-and-banking-collection"],"formStep":[1,"form-step"],"personalInformation":[1,"personal-information"],"businessEntity":[1,"business-entity"],"individualParticipant":[1,"individual-participant"],"participantType":[1,"participant-type"],"submitButton":[1,"submit-button"],"firstNameError":[1,"first-name-error"],"lastNameError":[1,"last-name-error"],"emailError":[1,"email-error"],"countryError":[1,"country-error"],"currencyError":[1,"currency-error"],"allowBankingCollectionError":[1,"allow-banking-collection-error"],"participantTypeError":[1,"participant-type-error"],"isPartnerAlertHeader":[1,"is-partner-alert-header"],"isPartnerAlertDescription":[1,"is-partner-alert-description"],"generalErrorTitle":[1,"general-error-title"],"generalErrorDescription":[1,"general-error-description"],"demoData":[16],"ignored":[32]}],[1,"sqm-payout-details-card",{"demoData":[16]}]]],["p-d73863dd.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],"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]}]]]]'),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-
|
|
4
|
+
"version": "1.8.0-38",
|
|
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
|
-
import{r as t,h as e}from"./p-f6e5df75.js";import{f as i,m as r}from"./p-8d37b2a1.js";import{O as a,e as s,H as o}from"./p-94ad6231.js";import"./p-c1086930.js";import{g as n}from"./p-9ec99ced.js";import{g as m,d as h,e as u,T as c,c as d,f as p,U as f,G as l,C as b,h as y,i as T,j as g}from"./p-fde30790.js";function S(t,e){return Object.keys(t).filter((t=>t.startsWith(e))).reduce(((i,r)=>({...i,[r.replace(e,"")]:t[r]})),{})}const I=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 agree to the terms",this.step1_taxAndBankingCollection="Continue",this.step1_formStep="Step 1 of 4",this.step1_personalInformation="Personal Information",this.step1_businessEntity="I represent a business entity",this.step1_individualParticipant="I am an individual participant",this.step1_participantType="Participant type",this.step1_submitButton="Continue",this.step1_firstNameError="Enter a first name",this.step1_lastNameError="Enter a last name",this.step1_emailError="Enter a valid email",this.step1_countryError="Select a country",this.step1_currencyError="Select a currency",this.step1_allowBankingCollectionError="This field is required",this.step1_participantTypeError="Select a participant type",this.step1_isPartnerAlertHeader="An account with this email already exists with our referral program provider, impact.com",this.step1_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.",this.step1_generalErrorTitle="There was a problem submitting your information",this.step1_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.",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.step2_notRegistered="I am not registered for Indirect Tax",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_isPartnerAlertHeader="An account with this email already exists with our referral program provider, impact.com",this.step2_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.",this.step2_submitButton="Continue",this.step2_backButton="Back",this.step2_taxDetailsError="This field is required",this.step2_generalErrorTitle="There was a problem submitting your information",this.step2_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.",this.step2_selectedRegionError="Country is required",this.step2_provinceError="Province is required",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.step2_subRegionTaxNumberError="Income Tax Number is required",this.step2_qstTaxNumberError="QST 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_submitButton="Continue",this.step3_backButton="Back",this.step3_generalErrorTitle="There was a problem submitting your information",this.step3_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.",this.step3_formSubmissionError="This field is required",this.step3b_formStep="Step 3 of 4",this.step3b_formLabel="Select a tax form",this.step3b_taxForm="Tax form",this.step3b_w9Label="W9",this.step3b_w9Description="W9 For participants based in the US, joining the referral program of a US-based company.",this.step3b_w8Label="W8-Ben",this.step3b_w8Description="W8-BEN For individuals residing outside of the US, joining the referral program of a US-based company.",this.step3b_w8ELabel="W8-BEN-E",this.step3b_w8EDescription="W8-BEN-E For participants residing outside of the US who represent a business entity, joining the referral program of a US-based company.",this.step3b_submitButton="Continue",this.step3b_backButton="Back",this.step3b_generalErrorTitle="There was a problem submitting your information",this.step3b_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.",this.step4_statusTextActive="Active",this.step4_statusTextNotActive="Invalid Tax Form",this.step4_statusTextNotVerified="Not Verified",this.step4_badgeTextSubmittedOn="Submitted on {dateSubmitted}",this.step4_badgeTextSubmittedOnW8="Submitted on {dateSubmitted}. Valid for three years after submission.",this.step4_badgeTextAwaitingReview="Awaiting review. Submitted on {dateSubmitted}.",this.step4_taxAlertHeaderNotActiveW9="Your W9 tax form has personal information that doesn’t match your profile",this.step4_taxAlertHeaderNotActiveW8="{documentType} tax form is invalid",this.step4_taxAlertNotActiveMessageW9="Please resubmit a new {documentType} form.",this.step4_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.step4_invalidForm="Ensure your information matches your profile and resubmit a new document.",this.step4_bankingInformationSectionHeader="Banking Information",this.step4_taxDocumentSectionHeader="Tax documents",this.step4_taxDocumentSectionSubHeader="{documentType} Tax Form",this.step4_noFormNeededSubtext="Tax documents are only required if you are based in the US. If your country of residence has changed, please contact Support.",this.step4_indirectTaxInfoSectionHeader="Indirect Tax",this.step4_indirectTaxInfoCanada="Registered in {province}, {country}",this.step4_indirectTaxInfoOtherCountry="Registered in {country}",this.step4_indirectTaxInfoSpain="Registered in {country}, {subRegion}",this.step4_indirectTaxTooltipSupport="To make changes to your indirect tax information, please contact Support.",this.step4_indirectTaxDetails="{indirectTaxType} number: {indirectTaxNumber}",this.step4_newFormButton="Submit New Form",this.step4_editPaymentInformationButton="Edit Payout Information",this.step4_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.step4_generalErrorTitle="There was a problem submitting your information",this.step4_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.",this.step4_qstNumber="QST Number: {qstNumber}",this.step4_subRegionTaxNumber="Income Tax Number: {incomeTaxNumber}",r(this)}disconnectedCallback(){}getUserInfoFormTextProps(){return S(n(this),"step1_")}getIndirectTaxFormTextProps(){return S(n(this),"step2_")}getDocuSignFormTextProps(){return S(n(this),"step3_")}getDocumentTypeFormTextProps(){return S(n(this),"step3b_")}getSubmittedPageTextProps(){return S(n(this),"step4_")}render(){switch(function(){var t;const e=a();window.widgetIdent={tenantAlias:"aprh0cfq6y8tk",appDomain:"https://staging.referralsaasquatch.com",programId:"22514"},i((()=>{s({accountId:"64fdeb7347c94ab69bb5ff4c788ca78c0ba127cdc374a8300157250b1643767b",id:"64fdeb7347c94ab69bb5ff4c788ca78c0ba127cdc374a8300157250b1643767b",jwt:"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IklSTVhzWXk2WVlxcTQ2OTQzN21HOEVSUXQ4UW9LRkJhRzEifQ.eyJ1c2VyIjp7ImlkIjoiNjRmZGViNzM0N2M5NGFiNjliYjVmZjRjNzg4Y2E3OGMwYmExMjdjZGMzNzRhODMwMDE1NzI1MGIxNjQzNzY3YiIsImFjY291bnRJZCI6IjY0ZmRlYjczNDdjOTRhYjY5YmI1ZmY0Yzc4OGNhNzhjMGJhMTI3Y2RjMzc0YTgzMDAxNTcyNTBiMTY0Mzc2N2IifX0.rSeFVjrPvRlO_m4skwgnvJNbWfnIM7f_q2tfqo4R0pU"})}),[]);const r=o(),[n,S]=h({namespace:c,initialValue:"/loading"}),[I,x]=h({namespace:d,initialValue:{}}),[N,v]=h({namespace:p,initialValue:{firstName:void 0,lastName:void 0,email:void 0,countryCode:void 0,currency:void 0}}),{data:w}=u({namespace:f,query:l,skip:!r});return u({namespace:b,query:y,skip:!r}),u({namespace:T,query:g,skip:!r}),i((()=>{if(e&&r&&w){if(!(null==w?void 0:w.user)||"/loading"!==n)return;S("/2")}}),[e,r,null===(t=null==w?void 0:w.user)||void 0===t?void 0:t.email]),{step:n,setStep:S,context:I,namespace:m(c),loading:"/loading"===n}}().step){case"/1":return e("sqm-user-info-form",Object.assign({},this.getUserInfoFormTextProps()));case"/2":return e("sqm-indirect-tax-form",Object.assign({},this.getIndirectTaxFormTextProps()));case"/3":case"/3/W8BEN":case"/3/W8BENE":case"/3/W9":return e("sqm-docusign-form",Object.assign({},this.getDocuSignFormTextProps()));case"/4":return e("sqm-banking-info-form",null);case"/submitted":return e("sqm-tax-document-submitted",Object.assign({},this.getSubmittedPageTextProps()))}return e("div",null)}};export{I as sqm_tax_and_cash}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
var __assign=this&&this.__assign||function(){__assign=Object.assign||function(e){for(var t,i=1,r=arguments.length;i<r;i++){t=arguments[i];for(var s in t)if(Object.prototype.hasOwnProperty.call(t,s))e[s]=t[s]}return e};return __assign.apply(this,arguments)};System.register(["./p-1e56ab57.system.js","./p-c23bbbc4.system.js","./p-e86ec70c.system.js","./p-4bd679a7.system.js","./p-6333265f.system.js","./p-58f59e86.system.js"],(function(e){"use strict";var t,i,r,s,n,a,o,p,c,u,m,d,h,l,f,b,_,g,T,y;return{setters:[function(e){t=e.r;i=e.h},function(e){r=e.f;s=e.m},function(e){n=e.O;a=e.e;o=e.H},function(){},function(e){p=e.g},function(e){c=e.g;u=e.d;m=e.e;d=e.T;h=e.c;l=e.f;f=e.U;b=e.G;_=e.C;g=e.h;T=e.i;y=e.j}],execute:function(){function x(){var e;var t=n();var i="64fdeb7347c94ab69bb5ff4c788ca78c0ba127cdc374a8300157250b1643767b";var s="64fdeb7347c94ab69bb5ff4c788ca78c0ba127cdc374a8300157250b1643767b";var p="22514";window.widgetIdent={tenantAlias:"aprh0cfq6y8tk",appDomain:"https://staging.referralsaasquatch.com",programId:p};r((function(){a({accountId:s,id:i,jwt:"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IklSTVhzWXk2WVlxcTQ2OTQzN21HOEVSUXQ4UW9LRkJhRzEifQ.eyJ1c2VyIjp7ImlkIjoiNjRmZGViNzM0N2M5NGFiNjliYjVmZjRjNzg4Y2E3OGMwYmExMjdjZGMzNzRhODMwMDE1NzI1MGIxNjQzNzY3YiIsImFjY291bnRJZCI6IjY0ZmRlYjczNDdjOTRhYjY5YmI1ZmY0Yzc4OGNhNzhjMGJhMTI3Y2RjMzc0YTgzMDAxNTcyNTBiMTY0Mzc2N2IifX0.rSeFVjrPvRlO_m4skwgnvJNbWfnIM7f_q2tfqo4R0pU"})}),[]);var x=o();var S=u({namespace:d,initialValue:"/loading"}),v=S[0],I=S[1];var N=u({namespace:h,initialValue:{}}),E=N[0],w=N[1];var P=u({namespace:l,initialValue:{firstName:undefined,lastName:undefined,email:undefined,countryCode:undefined,currency:undefined}}),j=P[0],R=P[1];var D=m({namespace:f,query:b,skip:!x}).data;m({namespace:_,query:g,skip:!x});m({namespace:T,query:y,skip:!x});r((function(){if(!t||!x)return;if(D){var e=D===null||D===void 0?void 0:D.user;if(!e||v!=="/loading")return;I("/2")}}),[t,x,(e=D===null||D===void 0?void 0:D.user)===null||e===void 0?void 0:e.email]);return{step:v,setStep:I,context:E,namespace:c(d),loading:v==="/loading"}}function S(e,t){var i=Object.keys(e).filter((function(e){return e.startsWith(t)}));var r=i.reduce((function(i,r){var s;var n=r.replace(t,"");return __assign(__assign({},i),(s={},s[n]=e[r],s))}),{});return r}var v=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 agree to the terms";this.step1_taxAndBankingCollection="Continue";this.step1_formStep="Step 1 of 4";this.step1_personalInformation="Personal Information";this.step1_businessEntity="I represent a business entity";this.step1_individualParticipant="I am an individual participant";this.step1_participantType="Participant type";this.step1_submitButton="Continue";this.step1_firstNameError="Enter a first name";this.step1_lastNameError="Enter a last name";this.step1_emailError="Enter a valid email";this.step1_countryError="Select a country";this.step1_currencyError="Select a currency";this.step1_allowBankingCollectionError="This field is required";this.step1_participantTypeError="Select a participant type";this.step1_isPartnerAlertHeader="An account with this email already exists with our referral program provider, impact.com";this.step1_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.";this.step1_generalErrorTitle="There was a problem submitting your information";this.step1_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.";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.step2_notRegistered="I am not registered for Indirect Tax";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_isPartnerAlertHeader="An account with this email already exists with our referral program provider, impact.com";this.step2_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.";this.step2_submitButton="Continue";this.step2_backButton="Back";this.step2_taxDetailsError="This field is required";this.step2_generalErrorTitle="There was a problem submitting your information";this.step2_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.";this.step2_selectedRegionError="Country is required";this.step2_provinceError="Province is required";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.step2_subRegionTaxNumberError="Income Tax Number is required";this.step2_qstTaxNumberError="QST 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_submitButton="Continue";this.step3_backButton="Back";this.step3_generalErrorTitle="There was a problem submitting your information";this.step3_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.";this.step3_formSubmissionError="This field is required";this.step3b_formStep="Step 3 of 4";this.step3b_formLabel="Select a tax form";this.step3b_taxForm="Tax form";this.step3b_w9Label="W9";this.step3b_w9Description="W9 For participants based in the US, joining the referral program of a US-based company.";this.step3b_w8Label="W8-Ben";this.step3b_w8Description="W8-BEN For individuals residing outside of the US, joining the referral program of a US-based company.";this.step3b_w8ELabel="W8-BEN-E";this.step3b_w8EDescription="W8-BEN-E For participants residing outside of the US who represent a business entity, joining the referral program of a US-based company.";this.step3b_submitButton="Continue";this.step3b_backButton="Back";this.step3b_generalErrorTitle="There was a problem submitting your information";this.step3b_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.";this.step4_statusTextActive="Active";this.step4_statusTextNotActive="Invalid Tax Form";this.step4_statusTextNotVerified="Not Verified";this.step4_badgeTextSubmittedOn="Submitted on {dateSubmitted}";this.step4_badgeTextSubmittedOnW8="Submitted on {dateSubmitted}. Valid for three years after submission.";this.step4_badgeTextAwaitingReview="Awaiting review. Submitted on {dateSubmitted}.";this.step4_taxAlertHeaderNotActiveW9="Your W9 tax form has personal information that doesn’t match your profile";this.step4_taxAlertHeaderNotActiveW8="{documentType} tax form is invalid";this.step4_taxAlertNotActiveMessageW9="Please resubmit a new {documentType} form.";this.step4_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.step4_invalidForm="Ensure your information matches your profile and resubmit a new document.";this.step4_bankingInformationSectionHeader="Banking Information";this.step4_taxDocumentSectionHeader="Tax documents";this.step4_taxDocumentSectionSubHeader="{documentType} Tax Form";this.step4_noFormNeededSubtext="Tax documents are only required if you are based in the US. If your country of residence has changed, please contact Support.";this.step4_indirectTaxInfoSectionHeader="Indirect Tax";this.step4_indirectTaxInfoCanada="Registered in {province}, {country}";this.step4_indirectTaxInfoOtherCountry="Registered in {country}";this.step4_indirectTaxInfoSpain="Registered in {country}, {subRegion}";this.step4_indirectTaxTooltipSupport="To make changes to your indirect tax information, please contact Support.";this.step4_indirectTaxDetails="{indirectTaxType} number: {indirectTaxNumber}";this.step4_newFormButton="Submit New Form";this.step4_editPaymentInformationButton="Edit Payout Information";this.step4_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.step4_generalErrorTitle="There was a problem submitting your information";this.step4_generalErrorDescription="Please review your information and try again. If this problem continues, contact Support.";this.step4_qstNumber="QST Number: {qstNumber}";this.step4_subRegionTaxNumber="Income Tax Number: {incomeTaxNumber}";s(this)}e.prototype.disconnectedCallback=function(){};e.prototype.getUserInfoFormTextProps=function(){var e=p(this);return S(e,"step1_")};e.prototype.getIndirectTaxFormTextProps=function(){var e=p(this);return S(e,"step2_")};e.prototype.getDocuSignFormTextProps=function(){var e=p(this);return S(e,"step3_")};e.prototype.getDocumentTypeFormTextProps=function(){var e=p(this);return S(e,"step3b_")};e.prototype.getSubmittedPageTextProps=function(){var e=p(this);return S(e,"step4_")};e.prototype.render=function(){var e=x();switch(e.step){case"/1":return i("sqm-user-info-form",Object.assign({},this.getUserInfoFormTextProps()));case"/2":return i("sqm-indirect-tax-form",Object.assign({},this.getIndirectTaxFormTextProps()));case"/3":case"/3/W8BEN":case"/3/W8BENE":case"/3/W9":return i("sqm-docusign-form",Object.assign({},this.getDocuSignFormTextProps()));case"/4":return i("sqm-banking-info-form",null);case"/submitted":return i("sqm-tax-document-submitted",Object.assign({},this.getSubmittedPageTextProps()))}return i("div",null)};return e}())}}}));
|