@wix/auto_sdk_loyalty_programs 1.0.54 → 1.0.56

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.
Files changed (46) hide show
  1. package/build/cjs/index.js +0 -2
  2. package/build/cjs/index.js.map +1 -1
  3. package/build/cjs/index.typings.d.ts +2 -6
  4. package/build/cjs/index.typings.js +0 -2
  5. package/build/cjs/index.typings.js.map +1 -1
  6. package/build/cjs/meta.d.ts +2 -6
  7. package/build/cjs/meta.js +0 -2
  8. package/build/cjs/meta.js.map +1 -1
  9. package/build/cjs/schemas.d.ts +259 -0
  10. package/build/cjs/schemas.js +337 -0
  11. package/build/cjs/schemas.js.map +1 -0
  12. package/build/es/index.mjs +0 -2
  13. package/build/es/index.mjs.map +1 -1
  14. package/build/es/index.typings.d.mts +2 -6
  15. package/build/es/index.typings.mjs +0 -2
  16. package/build/es/index.typings.mjs.map +1 -1
  17. package/build/es/meta.d.mts +2 -6
  18. package/build/es/meta.mjs +0 -2
  19. package/build/es/meta.mjs.map +1 -1
  20. package/build/es/schemas.d.mts +259 -0
  21. package/build/es/schemas.mjs +285 -0
  22. package/build/es/schemas.mjs.map +1 -0
  23. package/build/internal/cjs/index.js +0 -2
  24. package/build/internal/cjs/index.js.map +1 -1
  25. package/build/internal/cjs/index.typings.d.ts +2 -6
  26. package/build/internal/cjs/index.typings.js +0 -2
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +2 -6
  29. package/build/internal/cjs/meta.js +0 -2
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/cjs/schemas.d.ts +259 -0
  32. package/build/internal/cjs/schemas.js +337 -0
  33. package/build/internal/cjs/schemas.js.map +1 -0
  34. package/build/internal/es/index.mjs +0 -2
  35. package/build/internal/es/index.mjs.map +1 -1
  36. package/build/internal/es/index.typings.d.mts +2 -6
  37. package/build/internal/es/index.typings.mjs +0 -2
  38. package/build/internal/es/index.typings.mjs.map +1 -1
  39. package/build/internal/es/meta.d.mts +2 -6
  40. package/build/internal/es/meta.mjs +0 -2
  41. package/build/internal/es/meta.mjs.map +1 -1
  42. package/build/internal/es/schemas.d.mts +259 -0
  43. package/build/internal/es/schemas.mjs +285 -0
  44. package/build/internal/es/schemas.mjs.map +1 -0
  45. package/package.json +12 -5
  46. package/schemas/package.json +3 -0
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../schemas.ts","../../src/loyalty-v1-program-programs.schemas.ts"],"sourcesContent":["export * from './src/loyalty-v1-program-programs.schemas.js';\n","import * as z from 'zod';\n\nexport const GetLoyaltyProgramRequest = z.object({});\nexport const GetLoyaltyProgramResponse = z.object({\n loyaltyProgram: z\n .object({\n name: z\n .string()\n .describe('Program name.')\n .min(2)\n .max(50)\n .optional()\n .nullable(),\n pointDefinition: z\n .object({\n customName: z\n .string()\n .describe(\n 'Display name for the program\\'s collectible unit.\\n\\nIt\\'s recommended to use a plural, for example `\"Stars\"`.\\n\\nIn contrast to a custom name, the default `\"Points\"` name is translated and adjusted to singular based on circumstances.\\n\\nDefault: `\"Points\"`.'\n )\n .max(20)\n .optional()\n .nullable(),\n icon: z\n .string()\n .describe('Details about the points icon.')\n .optional(),\n })\n .describe(\"Details about the program's collectible unit.\")\n .optional(),\n status: z\n .enum(['UNKNOWN', 'DRAFT', 'ACTIVE', 'PAUSED'])\n .describe(\n 'Program status.\\nCustomers can only earn or redeem points while the program is `\"ACTIVE\"`.\\n\\nDefault: `\"DRAFT\"`'\n )\n .optional(),\n _createdDate: z\n .date()\n .describe('Date and time the program was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the program was updated.')\n .optional()\n .nullable(),\n pointsExpiration: z\n .object({\n status: z\n .enum(['DISABLED', 'ENABLED'])\n .describe('Status of the points expiration feature.')\n .optional(),\n monthsOfInactivity: z\n .number()\n .int()\n .describe(\n 'How many months a member should be inactive to lose the collected points.'\n )\n .min(1)\n .max(12)\n .optional(),\n expiringPointsPercentage: z\n .number()\n .int()\n .describe(\n 'Percentage of points that a member loses after being inactive.'\n )\n .min(1)\n .max(100)\n .optional(),\n })\n .describe('Configuration for the points expiration feature.')\n .optional(),\n premiumFeatures: z\n .object({\n loyaltyProgram: z\n .boolean()\n .describe('Whether there are any loyalty program premium features.')\n .optional(),\n tiers: z\n .boolean()\n .describe('Whether this loyalty program includes tiers.')\n .optional(),\n pointsExpiration: z\n .boolean()\n .describe('Whether this loyalty program includes point expiration.')\n .optional(),\n })\n .describe('Information about the available program premium features.')\n .optional(),\n })\n .describe('Retrieved loyalty program.')\n .optional(),\n});\nexport const BulkGetLoyaltyProgramRequest = z.object({});\nexport const BulkGetLoyaltyProgramResponse = z.object({\n programInSites: z\n .array(\n z.object({\n metaSiteId: z\n .string()\n .describe('Metasite ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n loyaltyProgram: z\n .object({\n name: z\n .string()\n .describe('Program name.')\n .min(2)\n .max(50)\n .optional()\n .nullable(),\n pointDefinition: z\n .object({\n customName: z\n .string()\n .describe(\n 'Display name for the program\\'s collectible unit.\\n\\nIt\\'s recommended to use a plural, for example `\"Stars\"`.\\n\\nIn contrast to a custom name, the default `\"Points\"` name is translated and adjusted to singular based on circumstances.\\n\\nDefault: `\"Points\"`.'\n )\n .max(20)\n .optional()\n .nullable(),\n icon: z\n .string()\n .describe('Details about the points icon.')\n .optional(),\n })\n .describe(\"Details about the program's collectible unit.\")\n .optional(),\n status: z\n .enum(['UNKNOWN', 'DRAFT', 'ACTIVE', 'PAUSED'])\n .describe(\n 'Program status.\\nCustomers can only earn or redeem points while the program is `\"ACTIVE\"`.\\n\\nDefault: `\"DRAFT\"`'\n )\n .optional(),\n _createdDate: z\n .date()\n .describe('Date and time the program was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the program was updated.')\n .optional()\n .nullable(),\n pointsExpiration: z\n .object({\n status: z\n .enum(['DISABLED', 'ENABLED'])\n .describe('Status of the points expiration feature.')\n .optional(),\n monthsOfInactivity: z\n .number()\n .int()\n .describe(\n 'How many months a member should be inactive to lose the collected points.'\n )\n .min(1)\n .max(12)\n .optional(),\n expiringPointsPercentage: z\n .number()\n .int()\n .describe(\n 'Percentage of points that a member loses after being inactive.'\n )\n .min(1)\n .max(100)\n .optional(),\n })\n .describe('Configuration for the points expiration feature.')\n .optional(),\n premiumFeatures: z\n .object({\n loyaltyProgram: z\n .boolean()\n .describe(\n 'Whether there are any loyalty program premium features.'\n )\n .optional(),\n tiers: z\n .boolean()\n .describe('Whether this loyalty program includes tiers.')\n .optional(),\n pointsExpiration: z\n .boolean()\n .describe(\n 'Whether this loyalty program includes point expiration.'\n )\n .optional(),\n })\n .describe(\n 'Information about the available program premium features.'\n )\n .optional(),\n })\n .describe('Loyalty program.')\n .optional(),\n })\n )\n .optional(),\n});\nexport const UpdateLoyaltyProgramRequest = z.object({\n loyaltyProgram: z\n .object({\n name: z\n .string()\n .describe('Program name.')\n .min(2)\n .max(50)\n .optional()\n .nullable(),\n pointDefinition: z\n .object({\n customName: z\n .string()\n .describe(\n 'Display name for the program\\'s collectible unit.\\n\\nIt\\'s recommended to use a plural, for example `\"Stars\"`.\\n\\nIn contrast to a custom name, the default `\"Points\"` name is translated and adjusted to singular based on circumstances.\\n\\nDefault: `\"Points\"`.'\n )\n .max(20)\n .optional()\n .nullable(),\n icon: z\n .string()\n .describe('Details about the points icon.')\n .optional(),\n })\n .describe(\"Details about the program's collectible unit.\")\n .optional(),\n status: z.enum(['UNKNOWN', 'DRAFT', 'ACTIVE', 'PAUSED']).optional(),\n _createdDate: z\n .date()\n .describe('Date and time the program was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the program was updated.')\n .optional()\n .nullable(),\n pointsExpiration: z\n .object({\n status: z.enum(['DISABLED', 'ENABLED']).optional(),\n monthsOfInactivity: z\n .number()\n .int()\n .describe(\n 'How many months a member should be inactive to lose the collected points.'\n )\n .min(1)\n .max(12)\n .optional(),\n expiringPointsPercentage: z\n .number()\n .int()\n .describe(\n 'Percentage of points that a member loses after being inactive.'\n )\n .min(1)\n .max(100)\n .optional(),\n })\n .describe('Configuration for the points expiration feature.')\n .optional(),\n premiumFeatures: z\n .object({\n loyaltyProgram: z\n .boolean()\n .describe('Whether there are any loyalty program premium features.')\n .optional(),\n tiers: z\n .boolean()\n .describe('Whether this loyalty program includes tiers.')\n .optional(),\n pointsExpiration: z\n .boolean()\n .describe('Whether this loyalty program includes point expiration.')\n .optional(),\n })\n .describe('Information about the available program premium features.')\n .optional(),\n })\n .describe('Loyalty program fields to update.'),\n});\nexport const UpdateLoyaltyProgramResponse = z.object({\n loyaltyProgram: z\n .object({\n name: z\n .string()\n .describe('Program name.')\n .min(2)\n .max(50)\n .optional()\n .nullable(),\n pointDefinition: z\n .object({\n customName: z\n .string()\n .describe(\n 'Display name for the program\\'s collectible unit.\\n\\nIt\\'s recommended to use a plural, for example `\"Stars\"`.\\n\\nIn contrast to a custom name, the default `\"Points\"` name is translated and adjusted to singular based on circumstances.\\n\\nDefault: `\"Points\"`.'\n )\n .max(20)\n .optional()\n .nullable(),\n icon: z\n .string()\n .describe('Details about the points icon.')\n .optional(),\n })\n .describe(\"Details about the program's collectible unit.\")\n .optional(),\n status: z\n .enum(['UNKNOWN', 'DRAFT', 'ACTIVE', 'PAUSED'])\n .describe(\n 'Program status.\\nCustomers can only earn or redeem points while the program is `\"ACTIVE\"`.\\n\\nDefault: `\"DRAFT\"`'\n )\n .optional(),\n _createdDate: z\n .date()\n .describe('Date and time the program was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the program was updated.')\n .optional()\n .nullable(),\n pointsExpiration: z\n .object({\n status: z\n .enum(['DISABLED', 'ENABLED'])\n .describe('Status of the points expiration feature.')\n .optional(),\n monthsOfInactivity: z\n .number()\n .int()\n .describe(\n 'How many months a member should be inactive to lose the collected points.'\n )\n .min(1)\n .max(12)\n .optional(),\n expiringPointsPercentage: z\n .number()\n .int()\n .describe(\n 'Percentage of points that a member loses after being inactive.'\n )\n .min(1)\n .max(100)\n .optional(),\n })\n .describe('Configuration for the points expiration feature.')\n .optional(),\n premiumFeatures: z\n .object({\n loyaltyProgram: z\n .boolean()\n .describe('Whether there are any loyalty program premium features.')\n .optional(),\n tiers: z\n .boolean()\n .describe('Whether this loyalty program includes tiers.')\n .optional(),\n pointsExpiration: z\n .boolean()\n .describe('Whether this loyalty program includes point expiration.')\n .optional(),\n })\n .describe('Information about the available program premium features.')\n .optional(),\n })\n .describe('Updated loyalty program.')\n .optional(),\n});\nexport const ActivateLoyaltyProgramRequest = z.object({});\nexport const ActivateLoyaltyProgramResponse = z.object({\n loyaltyProgram: z\n .object({\n name: z\n .string()\n .describe('Program name.')\n .min(2)\n .max(50)\n .optional()\n .nullable(),\n pointDefinition: z\n .object({\n customName: z\n .string()\n .describe(\n 'Display name for the program\\'s collectible unit.\\n\\nIt\\'s recommended to use a plural, for example `\"Stars\"`.\\n\\nIn contrast to a custom name, the default `\"Points\"` name is translated and adjusted to singular based on circumstances.\\n\\nDefault: `\"Points\"`.'\n )\n .max(20)\n .optional()\n .nullable(),\n icon: z\n .string()\n .describe('Details about the points icon.')\n .optional(),\n })\n .describe(\"Details about the program's collectible unit.\")\n .optional(),\n status: z\n .enum(['UNKNOWN', 'DRAFT', 'ACTIVE', 'PAUSED'])\n .describe(\n 'Program status.\\nCustomers can only earn or redeem points while the program is `\"ACTIVE\"`.\\n\\nDefault: `\"DRAFT\"`'\n )\n .optional(),\n _createdDate: z\n .date()\n .describe('Date and time the program was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the program was updated.')\n .optional()\n .nullable(),\n pointsExpiration: z\n .object({\n status: z\n .enum(['DISABLED', 'ENABLED'])\n .describe('Status of the points expiration feature.')\n .optional(),\n monthsOfInactivity: z\n .number()\n .int()\n .describe(\n 'How many months a member should be inactive to lose the collected points.'\n )\n .min(1)\n .max(12)\n .optional(),\n expiringPointsPercentage: z\n .number()\n .int()\n .describe(\n 'Percentage of points that a member loses after being inactive.'\n )\n .min(1)\n .max(100)\n .optional(),\n })\n .describe('Configuration for the points expiration feature.')\n .optional(),\n premiumFeatures: z\n .object({\n loyaltyProgram: z\n .boolean()\n .describe('Whether there are any loyalty program premium features.')\n .optional(),\n tiers: z\n .boolean()\n .describe('Whether this loyalty program includes tiers.')\n .optional(),\n pointsExpiration: z\n .boolean()\n .describe('Whether this loyalty program includes point expiration.')\n .optional(),\n })\n .describe('Information about the available program premium features.')\n .optional(),\n })\n .describe('Activated loyalty program.')\n .optional(),\n});\nexport const PauseLoyaltyProgramRequest = z.object({});\nexport const PauseLoyaltyProgramResponse = z.object({\n loyaltyProgram: z\n .object({\n name: z\n .string()\n .describe('Program name.')\n .min(2)\n .max(50)\n .optional()\n .nullable(),\n pointDefinition: z\n .object({\n customName: z\n .string()\n .describe(\n 'Display name for the program\\'s collectible unit.\\n\\nIt\\'s recommended to use a plural, for example `\"Stars\"`.\\n\\nIn contrast to a custom name, the default `\"Points\"` name is translated and adjusted to singular based on circumstances.\\n\\nDefault: `\"Points\"`.'\n )\n .max(20)\n .optional()\n .nullable(),\n icon: z\n .string()\n .describe('Details about the points icon.')\n .optional(),\n })\n .describe(\"Details about the program's collectible unit.\")\n .optional(),\n status: z\n .enum(['UNKNOWN', 'DRAFT', 'ACTIVE', 'PAUSED'])\n .describe(\n 'Program status.\\nCustomers can only earn or redeem points while the program is `\"ACTIVE\"`.\\n\\nDefault: `\"DRAFT\"`'\n )\n .optional(),\n _createdDate: z\n .date()\n .describe('Date and time the program was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the program was updated.')\n .optional()\n .nullable(),\n pointsExpiration: z\n .object({\n status: z\n .enum(['DISABLED', 'ENABLED'])\n .describe('Status of the points expiration feature.')\n .optional(),\n monthsOfInactivity: z\n .number()\n .int()\n .describe(\n 'How many months a member should be inactive to lose the collected points.'\n )\n .min(1)\n .max(12)\n .optional(),\n expiringPointsPercentage: z\n .number()\n .int()\n .describe(\n 'Percentage of points that a member loses after being inactive.'\n )\n .min(1)\n .max(100)\n .optional(),\n })\n .describe('Configuration for the points expiration feature.')\n .optional(),\n premiumFeatures: z\n .object({\n loyaltyProgram: z\n .boolean()\n .describe('Whether there are any loyalty program premium features.')\n .optional(),\n tiers: z\n .boolean()\n .describe('Whether this loyalty program includes tiers.')\n .optional(),\n pointsExpiration: z\n .boolean()\n .describe('Whether this loyalty program includes point expiration.')\n .optional(),\n })\n .describe('Information about the available program premium features.')\n .optional(),\n })\n .describe('Paused loyalty program.')\n .optional(),\n});\nexport const GetLoyaltyProgramPremiumFeaturesRequest = z.object({});\nexport const GetLoyaltyProgramPremiumFeaturesResponse = z.object({\n loyaltyProgram: z\n .boolean()\n .describe('Whether there are any loyalty program premium features.')\n .optional(),\n tiers: z\n .boolean()\n .describe('Whether this loyalty program includes tiers.')\n .optional(),\n pointsExpiration: z\n .boolean()\n .describe('Whether this loyalty program includes point expiration.')\n .optional(),\n});\nexport const EnablePointsExpirationRequest = z.object({});\nexport const EnablePointsExpirationResponse = z.object({\n loyaltyProgram: z\n .object({\n name: z\n .string()\n .describe('Program name.')\n .min(2)\n .max(50)\n .optional()\n .nullable(),\n pointDefinition: z\n .object({\n customName: z\n .string()\n .describe(\n 'Display name for the program\\'s collectible unit.\\n\\nIt\\'s recommended to use a plural, for example `\"Stars\"`.\\n\\nIn contrast to a custom name, the default `\"Points\"` name is translated and adjusted to singular based on circumstances.\\n\\nDefault: `\"Points\"`.'\n )\n .max(20)\n .optional()\n .nullable(),\n icon: z\n .string()\n .describe('Details about the points icon.')\n .optional(),\n })\n .describe(\"Details about the program's collectible unit.\")\n .optional(),\n status: z\n .enum(['UNKNOWN', 'DRAFT', 'ACTIVE', 'PAUSED'])\n .describe(\n 'Program status.\\nCustomers can only earn or redeem points while the program is `\"ACTIVE\"`.\\n\\nDefault: `\"DRAFT\"`'\n )\n .optional(),\n _createdDate: z\n .date()\n .describe('Date and time the program was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the program was updated.')\n .optional()\n .nullable(),\n pointsExpiration: z\n .object({\n status: z\n .enum(['DISABLED', 'ENABLED'])\n .describe('Status of the points expiration feature.')\n .optional(),\n monthsOfInactivity: z\n .number()\n .int()\n .describe(\n 'How many months a member should be inactive to lose the collected points.'\n )\n .min(1)\n .max(12)\n .optional(),\n expiringPointsPercentage: z\n .number()\n .int()\n .describe(\n 'Percentage of points that a member loses after being inactive.'\n )\n .min(1)\n .max(100)\n .optional(),\n })\n .describe('Configuration for the points expiration feature.')\n .optional(),\n premiumFeatures: z\n .object({\n loyaltyProgram: z\n .boolean()\n .describe('Whether there are any loyalty program premium features.')\n .optional(),\n tiers: z\n .boolean()\n .describe('Whether this loyalty program includes tiers.')\n .optional(),\n pointsExpiration: z\n .boolean()\n .describe('Whether this loyalty program includes point expiration.')\n .optional(),\n })\n .describe('Information about the available program premium features.')\n .optional(),\n })\n .describe('Loyalty program with enabled points expiration feature.')\n .optional(),\n});\nexport const DisablePointsExpirationRequest = z.object({});\nexport const DisablePointsExpirationResponse = z.object({\n loyaltyProgram: z\n .object({\n name: z\n .string()\n .describe('Program name.')\n .min(2)\n .max(50)\n .optional()\n .nullable(),\n pointDefinition: z\n .object({\n customName: z\n .string()\n .describe(\n 'Display name for the program\\'s collectible unit.\\n\\nIt\\'s recommended to use a plural, for example `\"Stars\"`.\\n\\nIn contrast to a custom name, the default `\"Points\"` name is translated and adjusted to singular based on circumstances.\\n\\nDefault: `\"Points\"`.'\n )\n .max(20)\n .optional()\n .nullable(),\n icon: z\n .string()\n .describe('Details about the points icon.')\n .optional(),\n })\n .describe(\"Details about the program's collectible unit.\")\n .optional(),\n status: z\n .enum(['UNKNOWN', 'DRAFT', 'ACTIVE', 'PAUSED'])\n .describe(\n 'Program status.\\nCustomers can only earn or redeem points while the program is `\"ACTIVE\"`.\\n\\nDefault: `\"DRAFT\"`'\n )\n .optional(),\n _createdDate: z\n .date()\n .describe('Date and time the program was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the program was updated.')\n .optional()\n .nullable(),\n pointsExpiration: z\n .object({\n status: z\n .enum(['DISABLED', 'ENABLED'])\n .describe('Status of the points expiration feature.')\n .optional(),\n monthsOfInactivity: z\n .number()\n .int()\n .describe(\n 'How many months a member should be inactive to lose the collected points.'\n )\n .min(1)\n .max(12)\n .optional(),\n expiringPointsPercentage: z\n .number()\n .int()\n .describe(\n 'Percentage of points that a member loses after being inactive.'\n )\n .min(1)\n .max(100)\n .optional(),\n })\n .describe('Configuration for the points expiration feature.')\n .optional(),\n premiumFeatures: z\n .object({\n loyaltyProgram: z\n .boolean()\n .describe('Whether there are any loyalty program premium features.')\n .optional(),\n tiers: z\n .boolean()\n .describe('Whether this loyalty program includes tiers.')\n .optional(),\n pointsExpiration: z\n .boolean()\n .describe('Whether this loyalty program includes point expiration.')\n .optional(),\n })\n .describe('Information about the available program premium features.')\n .optional(),\n })\n .describe('Loyalty program with disabled points expiration feature.')\n .optional(),\n});\n"],"mappings":"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","names":[]}
@@ -415,13 +415,11 @@ var ProgramStatus = /* @__PURE__ */ ((ProgramStatus2) => {
415
415
  return ProgramStatus2;
416
416
  })(ProgramStatus || {});
417
417
  var Status = /* @__PURE__ */ ((Status2) => {
418
- Status2["UNKNOWN_STATUS"] = "UNKNOWN_STATUS";
419
418
  Status2["DISABLED"] = "DISABLED";
420
419
  Status2["ENABLED"] = "ENABLED";
421
420
  return Status2;
422
421
  })(Status || {});
423
422
  var Type = /* @__PURE__ */ ((Type2) => {
424
- Type2["UNKNOWN_CHANNEL"] = "UNKNOWN_CHANNEL";
425
423
  Type2["FACEBOOK"] = "FACEBOOK";
426
424
  Type2["INSTAGRAM"] = "INSTAGRAM";
427
425
  Type2["LINKEDIN"] = "LINKEDIN";