dub 0.10.0 → 0.20.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/sdk_generation.yaml +26 -0
- package/.github/workflows/sdk_publish.yaml +15 -0
- package/.speakeasy/gen.lock +205 -0
- package/.speakeasy/gen.yaml +37 -0
- package/.speakeasy/workflow.yaml +12 -0
- package/README.md +292 -182
- package/docs/sdks/analytics/README.md +535 -0
- package/docs/sdks/dub/README.md +9 -0
- package/docs/sdks/links/README.md +415 -0
- package/docs/sdks/qrcodes/README.md +58 -0
- package/docs/sdks/tags/README.md +113 -0
- package/docs/sdks/workspaces/README.md +168 -0
- package/hooks/hooks.d.ts +20 -0
- package/hooks/hooks.d.ts.map +1 -0
- package/hooks/hooks.js +55 -0
- package/hooks/hooks.js.map +1 -0
- package/hooks/index.d.ts +3 -0
- package/hooks/index.d.ts.map +1 -0
- package/{_shims/auto/runtime-bun.js → hooks/index.js} +6 -5
- package/hooks/index.js.map +1 -0
- package/hooks/types.d.ts +59 -0
- package/hooks/types.d.ts.map +1 -0
- package/hooks/types.js +6 -0
- package/hooks/types.js.map +1 -0
- package/index.d.ts +4 -125
- package/index.d.ts.map +1 -1
- package/index.js +10 -103
- package/index.js.map +1 -1
- package/lib/base64.d.ts +10 -0
- package/lib/base64.d.ts.map +1 -0
- package/lib/base64.js +61 -0
- package/lib/base64.js.map +1 -0
- package/lib/config.d.ts +39 -0
- package/lib/config.d.ts.map +1 -0
- package/lib/config.js +39 -0
- package/lib/config.js.map +1 -0
- package/lib/encodings.d.ts +39 -0
- package/lib/encodings.d.ts.map +1 -0
- package/lib/encodings.js +311 -0
- package/lib/encodings.js.map +1 -0
- package/lib/http.d.ts +46 -0
- package/lib/http.d.ts.map +1 -0
- package/lib/http.js +143 -0
- package/lib/http.js.map +1 -0
- package/lib/retries.d.ts +18 -0
- package/lib/retries.d.ts.map +1 -0
- package/lib/retries.js +157 -0
- package/lib/retries.js.map +1 -0
- package/lib/schemas.d.ts +7 -0
- package/lib/schemas.d.ts.map +1 -0
- package/{shims/web.js → lib/schemas.js} +24 -6
- package/lib/schemas.js.map +1 -0
- package/lib/sdks.d.ts +39 -0
- package/lib/sdks.d.ts.map +1 -0
- package/lib/sdks.js +98 -0
- package/lib/sdks.js.map +1 -0
- package/lib/security.d.ts +57 -0
- package/lib/security.d.ts.map +1 -0
- package/lib/security.js +115 -0
- package/lib/security.js.map +1 -0
- package/lib/url.d.ts +4 -0
- package/lib/url.d.ts.map +1 -0
- package/lib/url.js +26 -0
- package/lib/url.js.map +1 -0
- package/models/components/index.d.ts +5 -0
- package/models/components/index.d.ts.map +1 -0
- package/{_shims/auto/runtime-node.js → models/components/index.js} +8 -5
- package/models/components/index.js.map +1 -0
- package/models/components/linkschema.d.ts +222 -0
- package/models/components/linkschema.d.ts.map +1 -0
- package/models/components/linkschema.js +189 -0
- package/models/components/linkschema.js.map +1 -0
- package/models/components/security.d.ts +16 -0
- package/models/components/security.d.ts.map +1 -0
- package/models/components/security.js +53 -0
- package/models/components/security.js.map +1 -0
- package/models/components/tagschema.d.ts +45 -0
- package/models/components/tagschema.d.ts.map +1 -0
- package/models/components/tagschema.js +76 -0
- package/models/components/tagschema.js.map +1 -0
- package/models/components/workspaceschema.d.ts +178 -0
- package/models/components/workspaceschema.d.ts.map +1 -0
- package/models/components/workspaceschema.js +190 -0
- package/models/components/workspaceschema.js.map +1 -0
- package/models/errors/badrequest.d.ts +65 -0
- package/models/errors/badrequest.d.ts.map +1 -0
- package/models/errors/badrequest.js +111 -0
- package/models/errors/badrequest.js.map +1 -0
- package/models/errors/conflict.d.ts +65 -0
- package/models/errors/conflict.d.ts.map +1 -0
- package/models/errors/conflict.js +111 -0
- package/models/errors/conflict.js.map +1 -0
- package/models/errors/forbidden.d.ts +65 -0
- package/models/errors/forbidden.d.ts.map +1 -0
- package/models/errors/forbidden.js +111 -0
- package/models/errors/forbidden.js.map +1 -0
- package/models/errors/index.d.ts +12 -0
- package/models/errors/index.d.ts.map +1 -0
- package/{_shims/auto/types-node.js → models/errors/index.js} +15 -5
- package/models/errors/index.js.map +1 -0
- package/models/errors/internalservererror.d.ts +65 -0
- package/models/errors/internalservererror.d.ts.map +1 -0
- package/models/errors/internalservererror.js +111 -0
- package/models/errors/internalservererror.js.map +1 -0
- package/models/errors/inviteexpired.d.ts +65 -0
- package/models/errors/inviteexpired.d.ts.map +1 -0
- package/models/errors/inviteexpired.js +111 -0
- package/models/errors/inviteexpired.js.map +1 -0
- package/models/errors/notfound.d.ts +65 -0
- package/models/errors/notfound.d.ts.map +1 -0
- package/models/errors/notfound.js +111 -0
- package/models/errors/notfound.js.map +1 -0
- package/models/errors/ratelimitexceeded.d.ts +65 -0
- package/models/errors/ratelimitexceeded.d.ts.map +1 -0
- package/models/errors/ratelimitexceeded.js +111 -0
- package/models/errors/ratelimitexceeded.js.map +1 -0
- package/models/errors/sdkerror.d.ts +7 -0
- package/models/errors/sdkerror.d.ts.map +1 -0
- package/models/errors/sdkerror.js +19 -0
- package/models/errors/sdkerror.js.map +1 -0
- package/models/errors/sdkvalidationerror.d.ts +17 -0
- package/models/errors/sdkvalidationerror.d.ts.map +1 -0
- package/models/errors/sdkvalidationerror.js +107 -0
- package/models/errors/sdkvalidationerror.js.map +1 -0
- package/models/errors/unauthorized.d.ts +65 -0
- package/models/errors/unauthorized.d.ts.map +1 -0
- package/models/errors/unauthorized.js +111 -0
- package/models/errors/unauthorized.js.map +1 -0
- package/models/errors/unprocessableentity.d.ts +65 -0
- package/models/errors/unprocessableentity.d.ts.map +1 -0
- package/models/errors/unprocessableentity.js +111 -0
- package/models/errors/unprocessableentity.js.map +1 -0
- package/models/operations/bulkcreatelinks.d.ts +146 -0
- package/models/operations/bulkcreatelinks.d.ts.map +1 -0
- package/models/operations/bulkcreatelinks.js +138 -0
- package/models/operations/bulkcreatelinks.js.map +1 -0
- package/models/operations/createlink.d.ts +146 -0
- package/models/operations/createlink.d.ts.map +1 -0
- package/models/operations/createlink.js +141 -0
- package/models/operations/createlink.js.map +1 -0
- package/models/operations/createtag.d.ts +39 -0
- package/models/operations/createtag.d.ts.map +1 -0
- package/models/operations/createtag.js +72 -0
- package/models/operations/createtag.js.map +1 -0
- package/models/operations/createworkspace.d.ts +22 -0
- package/models/operations/createworkspace.d.ts.map +1 -0
- package/models/operations/createworkspace.js +61 -0
- package/models/operations/createworkspace.js.map +1 -0
- package/models/operations/deletelink.d.ts +39 -0
- package/models/operations/deletelink.d.ts.map +1 -0
- package/models/operations/deletelink.js +75 -0
- package/models/operations/deletelink.js.map +1 -0
- package/models/operations/editlink.d.ts +166 -0
- package/models/operations/editlink.d.ts.map +1 -0
- package/models/operations/editlink.js +167 -0
- package/models/operations/editlink.js.map +1 -0
- package/models/operations/getbrowseranalytics.d.ts +378 -0
- package/models/operations/getbrowseranalytics.d.ts.map +1 -0
- package/models/operations/getbrowseranalytics.js +395 -0
- package/models/operations/getbrowseranalytics.js.map +1 -0
- package/models/operations/getcityanalytics.d.ts +641 -0
- package/models/operations/getcityanalytics.d.ts.map +1 -0
- package/models/operations/getcityanalytics.js +657 -0
- package/models/operations/getcityanalytics.js.map +1 -0
- package/models/operations/getclicksanalytics.d.ts +355 -0
- package/models/operations/getclicksanalytics.d.ts.map +1 -0
- package/models/operations/getclicksanalytics.js +369 -0
- package/models/operations/getclicksanalytics.js.map +1 -0
- package/models/operations/getcountryanalytics.d.ts +635 -0
- package/models/operations/getcountryanalytics.d.ts.map +1 -0
- package/models/operations/getcountryanalytics.js +653 -0
- package/models/operations/getcountryanalytics.js.map +1 -0
- package/models/operations/getdeviceanalytics.d.ts +378 -0
- package/models/operations/getdeviceanalytics.d.ts.map +1 -0
- package/models/operations/getdeviceanalytics.js +395 -0
- package/models/operations/getdeviceanalytics.js.map +1 -0
- package/models/operations/getlinkinfo.d.ts +25 -0
- package/models/operations/getlinkinfo.d.ts.map +1 -0
- package/models/operations/getlinkinfo.js +57 -0
- package/models/operations/getlinkinfo.js.map +1 -0
- package/models/operations/getlinks.d.ts +88 -0
- package/models/operations/getlinks.d.ts.map +1 -0
- package/models/operations/getlinks.js +108 -0
- package/models/operations/getlinks.js.map +1 -0
- package/models/operations/getlinkscount.d.ts +93 -0
- package/models/operations/getlinkscount.d.ts.map +1 -0
- package/models/operations/getlinkscount.js +105 -0
- package/models/operations/getlinkscount.js.map +1 -0
- package/models/operations/getosanalytics.d.ts +378 -0
- package/models/operations/getosanalytics.d.ts.map +1 -0
- package/models/operations/getosanalytics.js +395 -0
- package/models/operations/getosanalytics.js.map +1 -0
- package/models/operations/getqrcode.d.ts +60 -0
- package/models/operations/getqrcode.d.ts.map +1 -0
- package/models/operations/getqrcode.js +85 -0
- package/models/operations/getqrcode.js.map +1 -0
- package/models/operations/getrefereranalytics.d.ts +378 -0
- package/models/operations/getrefereranalytics.d.ts.map +1 -0
- package/models/operations/getrefereranalytics.js +395 -0
- package/models/operations/getrefereranalytics.js.map +1 -0
- package/models/operations/gettags.d.ts +10 -0
- package/models/operations/gettags.d.ts.map +1 -0
- package/{shims/node.js → models/operations/gettags.js} +12 -6
- package/models/operations/gettags.js.map +1 -0
- package/models/operations/gettimeseriesanalytics.d.ts +378 -0
- package/models/operations/gettimeseriesanalytics.d.ts.map +1 -0
- package/models/operations/gettimeseriesanalytics.js +395 -0
- package/models/operations/gettimeseriesanalytics.js.map +1 -0
- package/models/operations/gettoplinks.d.ts +378 -0
- package/models/operations/gettoplinks.d.ts.map +1 -0
- package/models/operations/gettoplinks.js +395 -0
- package/models/operations/gettoplinks.js.map +1 -0
- package/models/operations/gettopurls.d.ts +378 -0
- package/models/operations/gettopurls.d.ts.map +1 -0
- package/models/operations/gettopurls.js +395 -0
- package/models/operations/gettopurls.js.map +1 -0
- package/models/operations/getworkspace.d.ts +19 -0
- package/models/operations/getworkspace.d.ts.map +1 -0
- package/models/operations/getworkspace.js +53 -0
- package/models/operations/getworkspace.js.map +1 -0
- package/models/operations/index.d.ts +23 -0
- package/models/operations/index.d.ts.map +1 -0
- package/models/operations/index.js +42 -0
- package/models/operations/index.js.map +1 -0
- package/package.json +25 -98
- package/sdk/analytics.d.ts +78 -0
- package/sdk/analytics.d.ts.map +1 -0
- package/sdk/analytics.js +2044 -0
- package/sdk/analytics.js.map +1 -0
- package/sdk/index.d.ts +2 -0
- package/sdk/index.d.ts.map +1 -0
- package/{_shims/auto/runtime.js → sdk/index.js} +5 -5
- package/sdk/index.js.map +1 -0
- package/sdk/links.d.ts +58 -0
- package/sdk/links.d.ts.map +1 -0
- package/sdk/links.js +1309 -0
- package/sdk/links.js.map +1 -0
- package/sdk/qrcodes.d.ts +21 -0
- package/sdk/qrcodes.d.ts.map +1 -0
- package/sdk/qrcodes.js +249 -0
- package/sdk/qrcodes.js.map +1 -0
- package/sdk/sdk.d.ts +22 -0
- package/sdk/sdk.d.ts.map +1 -0
- package/sdk/sdk.js +59 -0
- package/sdk/sdk.js.map +1 -0
- package/sdk/tags.d.ts +23 -0
- package/sdk/tags.d.ts.map +1 -0
- package/sdk/tags.js +401 -0
- package/sdk/tags.js.map +1 -0
- package/sdk/workspaces.d.ts +30 -0
- package/sdk/workspaces.d.ts.map +1 -0
- package/sdk/workspaces.js +556 -0
- package/sdk/workspaces.js.map +1 -0
- package/src/hooks/hooks.ts +81 -0
- package/src/hooks/index.ts +6 -0
- package/src/hooks/types.ts +74 -0
- package/src/index.ts +8 -209
- package/src/lib/base64.ts +37 -0
- package/src/lib/config.ts +70 -0
- package/src/lib/encodings.ts +384 -0
- package/src/lib/http.ts +215 -0
- package/src/lib/retries.ts +226 -0
- package/src/lib/schemas.ts +22 -0
- package/src/lib/sdks.ts +139 -0
- package/src/lib/security.ts +180 -0
- package/src/lib/url.ts +31 -0
- package/src/models/components/index.ts +8 -0
- package/src/models/components/linkschema.ts +383 -0
- package/src/models/components/security.ts +40 -0
- package/src/models/components/tagschema.ts +79 -0
- package/src/models/components/workspaceschema.ts +316 -0
- package/src/models/errors/badrequest.ts +140 -0
- package/src/models/errors/conflict.ts +140 -0
- package/src/models/errors/forbidden.ts +140 -0
- package/src/models/errors/index.ts +15 -0
- package/src/models/errors/internalservererror.ts +140 -0
- package/src/models/errors/inviteexpired.ts +140 -0
- package/src/models/errors/notfound.ts +140 -0
- package/src/models/errors/ratelimitexceeded.ts +140 -0
- package/src/models/errors/sdkerror.ts +22 -0
- package/src/models/errors/sdkvalidationerror.ts +95 -0
- package/src/models/errors/unauthorized.ts +140 -0
- package/src/models/errors/unprocessableentity.ts +140 -0
- package/src/models/operations/bulkcreatelinks.ts +254 -0
- package/src/models/operations/createlink.ts +255 -0
- package/src/models/operations/createtag.ts +69 -0
- package/src/models/operations/createworkspace.ts +54 -0
- package/src/models/operations/deletelink.ts +84 -0
- package/src/models/operations/editlink.ts +300 -0
- package/src/models/operations/getbrowseranalytics.ts +484 -0
- package/src/models/operations/getcityanalytics.ts +744 -0
- package/src/models/operations/getclicksanalytics.ts +427 -0
- package/src/models/operations/getcountryanalytics.ts +743 -0
- package/src/models/operations/getdeviceanalytics.ts +480 -0
- package/src/models/operations/getlinkinfo.ts +53 -0
- package/src/models/operations/getlinks.ts +155 -0
- package/src/models/operations/getlinkscount.ts +157 -0
- package/src/models/operations/getosanalytics.ts +475 -0
- package/src/models/operations/getqrcode.ts +106 -0
- package/src/models/operations/getrefereranalytics.ts +484 -0
- package/src/models/operations/gettags.ts +18 -0
- package/src/models/operations/gettimeseriesanalytics.ts +476 -0
- package/src/models/operations/gettoplinks.ts +475 -0
- package/src/models/operations/gettopurls.ts +475 -0
- package/src/models/operations/getworkspace.ts +43 -0
- package/src/models/operations/index.ts +26 -0
- package/src/sdk/analytics.ts +2493 -0
- package/src/sdk/index.ts +5 -0
- package/src/sdk/links.ts +1617 -0
- package/src/sdk/qrcodes.ts +276 -0
- package/src/sdk/sdk.ts +66 -0
- package/src/sdk/tags.ts +470 -0
- package/src/sdk/workspaces.ts +670 -0
- package/src/types/blobs.ts +30 -0
- package/src/types/index.ts +8 -0
- package/src/types/operations.ts +25 -0
- package/src/types/rfcdate.ts +54 -0
- package/types/blobs.d.ts +4 -0
- package/types/blobs.d.ts.map +1 -0
- package/{resources/projects/projects.js → types/blobs.js} +23 -24
- package/types/blobs.js.map +1 -0
- package/types/index.d.ts +5 -0
- package/types/index.d.ts.map +1 -0
- package/types/index.js +14 -0
- package/types/index.js.map +1 -0
- package/types/operations.d.ts +13 -0
- package/types/operations.d.ts.map +1 -0
- package/types/operations.js +19 -0
- package/types/operations.js.map +1 -0
- package/types/rfcdate.d.ts +21 -0
- package/types/rfcdate.d.ts.map +1 -0
- package/types/rfcdate.js +46 -0
- package/types/rfcdate.js.map +1 -0
- package/CHANGELOG.md +0 -116
- package/LICENSE +0 -201
- package/_shims/MultipartBody.d.ts +0 -9
- package/_shims/MultipartBody.d.ts.map +0 -1
- package/_shims/MultipartBody.js +0 -16
- package/_shims/MultipartBody.js.map +0 -1
- package/_shims/MultipartBody.mjs +0 -12
- package/_shims/MultipartBody.mjs.map +0 -1
- package/_shims/README.md +0 -46
- package/_shims/auto/runtime-bun.d.ts +0 -5
- package/_shims/auto/runtime-bun.d.ts.map +0 -1
- package/_shims/auto/runtime-bun.js.map +0 -1
- package/_shims/auto/runtime-bun.mjs +0 -2
- package/_shims/auto/runtime-bun.mjs.map +0 -1
- package/_shims/auto/runtime-node.d.ts +0 -5
- package/_shims/auto/runtime-node.d.ts.map +0 -1
- package/_shims/auto/runtime-node.js.map +0 -1
- package/_shims/auto/runtime-node.mjs +0 -2
- package/_shims/auto/runtime-node.mjs.map +0 -1
- package/_shims/auto/runtime.d.ts +0 -5
- package/_shims/auto/runtime.d.ts.map +0 -1
- package/_shims/auto/runtime.js.map +0 -1
- package/_shims/auto/runtime.mjs +0 -2
- package/_shims/auto/runtime.mjs.map +0 -1
- package/_shims/auto/types-node.d.ts +0 -5
- package/_shims/auto/types-node.d.ts.map +0 -1
- package/_shims/auto/types-node.js.map +0 -1
- package/_shims/auto/types-node.mjs +0 -2
- package/_shims/auto/types-node.mjs.map +0 -1
- package/_shims/auto/types.d.ts +0 -101
- package/_shims/auto/types.js +0 -3
- package/_shims/auto/types.mjs +0 -3
- package/_shims/bun-runtime.d.ts +0 -6
- package/_shims/bun-runtime.d.ts.map +0 -1
- package/_shims/bun-runtime.js +0 -14
- package/_shims/bun-runtime.js.map +0 -1
- package/_shims/bun-runtime.mjs +0 -10
- package/_shims/bun-runtime.mjs.map +0 -1
- package/_shims/index.d.ts +0 -81
- package/_shims/index.js +0 -13
- package/_shims/index.mjs +0 -7
- package/_shims/manual-types.d.ts +0 -12
- package/_shims/manual-types.js +0 -3
- package/_shims/manual-types.mjs +0 -3
- package/_shims/node-runtime.d.ts +0 -3
- package/_shims/node-runtime.d.ts.map +0 -1
- package/_shims/node-runtime.js +0 -90
- package/_shims/node-runtime.js.map +0 -1
- package/_shims/node-runtime.mjs +0 -56
- package/_shims/node-runtime.mjs.map +0 -1
- package/_shims/node-types.d.ts +0 -42
- package/_shims/node-types.js +0 -3
- package/_shims/node-types.mjs +0 -3
- package/_shims/registry.d.ts +0 -37
- package/_shims/registry.d.ts.map +0 -1
- package/_shims/registry.js +0 -41
- package/_shims/registry.js.map +0 -1
- package/_shims/registry.mjs +0 -37
- package/_shims/registry.mjs.map +0 -1
- package/_shims/web-runtime.d.ts +0 -5
- package/_shims/web-runtime.d.ts.map +0 -1
- package/_shims/web-runtime.js +0 -78
- package/_shims/web-runtime.js.map +0 -1
- package/_shims/web-runtime.mjs +0 -71
- package/_shims/web-runtime.mjs.map +0 -1
- package/_shims/web-types.d.ts +0 -83
- package/_shims/web-types.js +0 -3
- package/_shims/web-types.mjs +0 -3
- package/core.d.ts +0 -237
- package/core.d.ts.map +0 -1
- package/core.js +0 -868
- package/core.js.map +0 -1
- package/core.mjs +0 -837
- package/core.mjs.map +0 -1
- package/error.d.ts +0 -53
- package/error.d.ts.map +0 -1
- package/error.js +0 -143
- package/error.js.map +0 -1
- package/error.mjs +0 -127
- package/error.mjs.map +0 -1
- package/index.d.mts +0 -127
- package/index.mjs +0 -90
- package/index.mjs.map +0 -1
- package/resource.d.ts +0 -6
- package/resource.d.ts.map +0 -1
- package/resource.js +0 -11
- package/resource.js.map +0 -1
- package/resource.mjs +0 -7
- package/resource.mjs.map +0 -1
- package/resources/index.d.ts +0 -4
- package/resources/index.d.ts.map +0 -1
- package/resources/index.js +0 -11
- package/resources/index.js.map +0 -1
- package/resources/index.mjs +0 -5
- package/resources/index.mjs.map +0 -1
- package/resources/links/bulk.d.ts +0 -274
- package/resources/links/bulk.d.ts.map +0 -1
- package/resources/links/bulk.js +0 -18
- package/resources/links/bulk.js.map +0 -1
- package/resources/links/bulk.mjs +0 -14
- package/resources/links/bulk.mjs.map +0 -1
- package/resources/links/index.d.ts +0 -4
- package/resources/links/index.d.ts.map +0 -1
- package/resources/links/index.js +0 -11
- package/resources/links/index.js.map +0 -1
- package/resources/links/index.mjs +0 -5
- package/resources/links/index.mjs.map +0 -1
- package/resources/links/info.d.ts +0 -186
- package/resources/links/info.d.ts.map +0 -1
- package/resources/links/info.js +0 -18
- package/resources/links/info.js.map +0 -1
- package/resources/links/info.mjs +0 -14
- package/resources/links/info.mjs.map +0 -1
- package/resources/links/links.d.ts +0 -916
- package/resources/links/links.d.ts.map +0 -1
- package/resources/links/links.js +0 -72
- package/resources/links/links.js.map +0 -1
- package/resources/links/links.mjs +0 -45
- package/resources/links/links.mjs.map +0 -1
- package/resources/projects/index.d.ts +0 -3
- package/resources/projects/index.d.ts.map +0 -1
- package/resources/projects/index.js +0 -9
- package/resources/projects/index.js.map +0 -1
- package/resources/projects/index.mjs +0 -4
- package/resources/projects/index.mjs.map +0 -1
- package/resources/projects/projects.d.ts +0 -200
- package/resources/projects/projects.d.ts.map +0 -1
- package/resources/projects/projects.js.map +0 -1
- package/resources/projects/projects.mjs +0 -26
- package/resources/projects/projects.mjs.map +0 -1
- package/resources/projects/tags.d.ts +0 -4
- package/resources/projects/tags.d.ts.map +0 -1
- package/resources/projects/tags.js +0 -9
- package/resources/projects/tags.js.map +0 -1
- package/resources/projects/tags.mjs +0 -5
- package/resources/projects/tags.mjs.map +0 -1
- package/resources/qr.d.ts +0 -45
- package/resources/qr.d.ts.map +0 -1
- package/resources/qr.js +0 -18
- package/resources/qr.js.map +0 -1
- package/resources/qr.mjs +0 -14
- package/resources/qr.mjs.map +0 -1
- package/shims/node.d.ts +0 -29
- package/shims/node.d.ts.map +0 -1
- package/shims/node.js.map +0 -1
- package/shims/node.mjs +0 -5
- package/shims/node.mjs.map +0 -1
- package/shims/web.d.ts +0 -26
- package/shims/web.d.ts.map +0 -1
- package/shims/web.js.map +0 -1
- package/shims/web.mjs +0 -5
- package/shims/web.mjs.map +0 -1
- package/src/_shims/MultipartBody.ts +0 -9
- package/src/_shims/README.md +0 -46
- package/src/_shims/auto/runtime-bun.ts +0 -4
- package/src/_shims/auto/runtime-node.ts +0 -4
- package/src/_shims/auto/runtime.ts +0 -4
- package/src/_shims/auto/types-node.ts +0 -4
- package/src/_shims/auto/types.d.ts +0 -101
- package/src/_shims/auto/types.js +0 -3
- package/src/_shims/auto/types.mjs +0 -3
- package/src/_shims/bun-runtime.ts +0 -14
- package/src/_shims/index.d.ts +0 -81
- package/src/_shims/index.js +0 -13
- package/src/_shims/index.mjs +0 -7
- package/src/_shims/manual-types.d.ts +0 -12
- package/src/_shims/manual-types.js +0 -3
- package/src/_shims/manual-types.mjs +0 -3
- package/src/_shims/node-runtime.ts +0 -83
- package/src/_shims/node-types.d.ts +0 -42
- package/src/_shims/node-types.js +0 -3
- package/src/_shims/node-types.mjs +0 -3
- package/src/_shims/registry.ts +0 -63
- package/src/_shims/web-runtime.ts +0 -103
- package/src/_shims/web-types.d.ts +0 -83
- package/src/_shims/web-types.js +0 -3
- package/src/_shims/web-types.mjs +0 -3
- package/src/core.ts +0 -1145
- package/src/error.ts +0 -146
- package/src/lib/.keep +0 -4
- package/src/resource.ts +0 -11
- package/src/resources/index.ts +0 -20
- package/src/resources/links/bulk.ts +0 -337
- package/src/resources/links/index.ts +0 -15
- package/src/resources/links/info.ts +0 -230
- package/src/resources/links/links.ts +0 -1135
- package/src/resources/projects/index.ts +0 -4
- package/src/resources/projects/projects.ts +0 -253
- package/src/resources/projects/tags.ts +0 -5
- package/src/resources/qr.ts +0 -64
- package/src/shims/node.ts +0 -50
- package/src/shims/web.ts +0 -50
- package/src/tsconfig.json +0 -11
- package/src/uploads.ts +0 -245
- package/src/version.ts +0 -1
- package/uploads.d.ts +0 -75
- package/uploads.d.ts.map +0 -1
- package/uploads.js +0 -163
- package/uploads.js.map +0 -1
- package/uploads.mjs +0 -150
- package/uploads.mjs.map +0 -1
- package/version.d.ts +0 -2
- package/version.d.ts.map +0 -1
- package/version.js +0 -5
- package/version.js.map +0 -1
- package/version.mjs +0 -2
- package/version.mjs.map +0 -1
|
@@ -0,0 +1,653 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*
|
|
3
|
+
* Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.GetCountryAnalyticsResponseBody$ = exports.GetCountryAnalyticsCountry$ = exports.GetCountryAnalyticsRequest$ = exports.GetCountryAnalyticsQueryParamCountry$ = exports.GetCountryAnalyticsQueryParamInterval$ = exports.GetCountryAnalyticsCountry = exports.GetCountryAnalyticsQueryParamCountry = exports.GetCountryAnalyticsQueryParamInterval = void 0;
|
|
30
|
+
const z = __importStar(require("zod"));
|
|
31
|
+
/**
|
|
32
|
+
* The interval to retrieve analytics for.
|
|
33
|
+
*/
|
|
34
|
+
var GetCountryAnalyticsQueryParamInterval;
|
|
35
|
+
(function (GetCountryAnalyticsQueryParamInterval) {
|
|
36
|
+
GetCountryAnalyticsQueryParamInterval["Oneh"] = "1h";
|
|
37
|
+
GetCountryAnalyticsQueryParamInterval["TwentyFourh"] = "24h";
|
|
38
|
+
GetCountryAnalyticsQueryParamInterval["Sevend"] = "7d";
|
|
39
|
+
GetCountryAnalyticsQueryParamInterval["Thirtyd"] = "30d";
|
|
40
|
+
GetCountryAnalyticsQueryParamInterval["Ninetyd"] = "90d";
|
|
41
|
+
GetCountryAnalyticsQueryParamInterval["All"] = "all";
|
|
42
|
+
})(GetCountryAnalyticsQueryParamInterval || (exports.GetCountryAnalyticsQueryParamInterval = GetCountryAnalyticsQueryParamInterval = {}));
|
|
43
|
+
/**
|
|
44
|
+
* The country to retrieve analytics for.
|
|
45
|
+
*/
|
|
46
|
+
var GetCountryAnalyticsQueryParamCountry;
|
|
47
|
+
(function (GetCountryAnalyticsQueryParamCountry) {
|
|
48
|
+
GetCountryAnalyticsQueryParamCountry["Af"] = "AF";
|
|
49
|
+
GetCountryAnalyticsQueryParamCountry["Al"] = "AL";
|
|
50
|
+
GetCountryAnalyticsQueryParamCountry["Dz"] = "DZ";
|
|
51
|
+
GetCountryAnalyticsQueryParamCountry["As"] = "AS";
|
|
52
|
+
GetCountryAnalyticsQueryParamCountry["Ad"] = "AD";
|
|
53
|
+
GetCountryAnalyticsQueryParamCountry["Ao"] = "AO";
|
|
54
|
+
GetCountryAnalyticsQueryParamCountry["Ai"] = "AI";
|
|
55
|
+
GetCountryAnalyticsQueryParamCountry["Aq"] = "AQ";
|
|
56
|
+
GetCountryAnalyticsQueryParamCountry["Ag"] = "AG";
|
|
57
|
+
GetCountryAnalyticsQueryParamCountry["Ar"] = "AR";
|
|
58
|
+
GetCountryAnalyticsQueryParamCountry["Am"] = "AM";
|
|
59
|
+
GetCountryAnalyticsQueryParamCountry["Aw"] = "AW";
|
|
60
|
+
GetCountryAnalyticsQueryParamCountry["Au"] = "AU";
|
|
61
|
+
GetCountryAnalyticsQueryParamCountry["At"] = "AT";
|
|
62
|
+
GetCountryAnalyticsQueryParamCountry["Az"] = "AZ";
|
|
63
|
+
GetCountryAnalyticsQueryParamCountry["Bs"] = "BS";
|
|
64
|
+
GetCountryAnalyticsQueryParamCountry["Bh"] = "BH";
|
|
65
|
+
GetCountryAnalyticsQueryParamCountry["Bd"] = "BD";
|
|
66
|
+
GetCountryAnalyticsQueryParamCountry["Bb"] = "BB";
|
|
67
|
+
GetCountryAnalyticsQueryParamCountry["By"] = "BY";
|
|
68
|
+
GetCountryAnalyticsQueryParamCountry["Be"] = "BE";
|
|
69
|
+
GetCountryAnalyticsQueryParamCountry["Bz"] = "BZ";
|
|
70
|
+
GetCountryAnalyticsQueryParamCountry["Bj"] = "BJ";
|
|
71
|
+
GetCountryAnalyticsQueryParamCountry["Bm"] = "BM";
|
|
72
|
+
GetCountryAnalyticsQueryParamCountry["Bt"] = "BT";
|
|
73
|
+
GetCountryAnalyticsQueryParamCountry["Bo"] = "BO";
|
|
74
|
+
GetCountryAnalyticsQueryParamCountry["Ba"] = "BA";
|
|
75
|
+
GetCountryAnalyticsQueryParamCountry["Bw"] = "BW";
|
|
76
|
+
GetCountryAnalyticsQueryParamCountry["Bv"] = "BV";
|
|
77
|
+
GetCountryAnalyticsQueryParamCountry["Br"] = "BR";
|
|
78
|
+
GetCountryAnalyticsQueryParamCountry["Io"] = "IO";
|
|
79
|
+
GetCountryAnalyticsQueryParamCountry["Bn"] = "BN";
|
|
80
|
+
GetCountryAnalyticsQueryParamCountry["Bg"] = "BG";
|
|
81
|
+
GetCountryAnalyticsQueryParamCountry["Bf"] = "BF";
|
|
82
|
+
GetCountryAnalyticsQueryParamCountry["Bi"] = "BI";
|
|
83
|
+
GetCountryAnalyticsQueryParamCountry["Kh"] = "KH";
|
|
84
|
+
GetCountryAnalyticsQueryParamCountry["Cm"] = "CM";
|
|
85
|
+
GetCountryAnalyticsQueryParamCountry["Ca"] = "CA";
|
|
86
|
+
GetCountryAnalyticsQueryParamCountry["Cv"] = "CV";
|
|
87
|
+
GetCountryAnalyticsQueryParamCountry["Ky"] = "KY";
|
|
88
|
+
GetCountryAnalyticsQueryParamCountry["Cf"] = "CF";
|
|
89
|
+
GetCountryAnalyticsQueryParamCountry["Td"] = "TD";
|
|
90
|
+
GetCountryAnalyticsQueryParamCountry["Cl"] = "CL";
|
|
91
|
+
GetCountryAnalyticsQueryParamCountry["Cn"] = "CN";
|
|
92
|
+
GetCountryAnalyticsQueryParamCountry["Cx"] = "CX";
|
|
93
|
+
GetCountryAnalyticsQueryParamCountry["Cc"] = "CC";
|
|
94
|
+
GetCountryAnalyticsQueryParamCountry["Co"] = "CO";
|
|
95
|
+
GetCountryAnalyticsQueryParamCountry["Km"] = "KM";
|
|
96
|
+
GetCountryAnalyticsQueryParamCountry["Cg"] = "CG";
|
|
97
|
+
GetCountryAnalyticsQueryParamCountry["Cd"] = "CD";
|
|
98
|
+
GetCountryAnalyticsQueryParamCountry["Ck"] = "CK";
|
|
99
|
+
GetCountryAnalyticsQueryParamCountry["Cr"] = "CR";
|
|
100
|
+
GetCountryAnalyticsQueryParamCountry["Ci"] = "CI";
|
|
101
|
+
GetCountryAnalyticsQueryParamCountry["Hr"] = "HR";
|
|
102
|
+
GetCountryAnalyticsQueryParamCountry["Cu"] = "CU";
|
|
103
|
+
GetCountryAnalyticsQueryParamCountry["Cy"] = "CY";
|
|
104
|
+
GetCountryAnalyticsQueryParamCountry["Cz"] = "CZ";
|
|
105
|
+
GetCountryAnalyticsQueryParamCountry["Dk"] = "DK";
|
|
106
|
+
GetCountryAnalyticsQueryParamCountry["Dj"] = "DJ";
|
|
107
|
+
GetCountryAnalyticsQueryParamCountry["Dm"] = "DM";
|
|
108
|
+
GetCountryAnalyticsQueryParamCountry["Do"] = "DO";
|
|
109
|
+
GetCountryAnalyticsQueryParamCountry["Ec"] = "EC";
|
|
110
|
+
GetCountryAnalyticsQueryParamCountry["Eg"] = "EG";
|
|
111
|
+
GetCountryAnalyticsQueryParamCountry["Sv"] = "SV";
|
|
112
|
+
GetCountryAnalyticsQueryParamCountry["Gq"] = "GQ";
|
|
113
|
+
GetCountryAnalyticsQueryParamCountry["Er"] = "ER";
|
|
114
|
+
GetCountryAnalyticsQueryParamCountry["Ee"] = "EE";
|
|
115
|
+
GetCountryAnalyticsQueryParamCountry["Et"] = "ET";
|
|
116
|
+
GetCountryAnalyticsQueryParamCountry["Fk"] = "FK";
|
|
117
|
+
GetCountryAnalyticsQueryParamCountry["Fo"] = "FO";
|
|
118
|
+
GetCountryAnalyticsQueryParamCountry["Fj"] = "FJ";
|
|
119
|
+
GetCountryAnalyticsQueryParamCountry["Fi"] = "FI";
|
|
120
|
+
GetCountryAnalyticsQueryParamCountry["Fr"] = "FR";
|
|
121
|
+
GetCountryAnalyticsQueryParamCountry["Gf"] = "GF";
|
|
122
|
+
GetCountryAnalyticsQueryParamCountry["Pf"] = "PF";
|
|
123
|
+
GetCountryAnalyticsQueryParamCountry["Tf"] = "TF";
|
|
124
|
+
GetCountryAnalyticsQueryParamCountry["Ga"] = "GA";
|
|
125
|
+
GetCountryAnalyticsQueryParamCountry["Gm"] = "GM";
|
|
126
|
+
GetCountryAnalyticsQueryParamCountry["Ge"] = "GE";
|
|
127
|
+
GetCountryAnalyticsQueryParamCountry["De"] = "DE";
|
|
128
|
+
GetCountryAnalyticsQueryParamCountry["Gh"] = "GH";
|
|
129
|
+
GetCountryAnalyticsQueryParamCountry["Gi"] = "GI";
|
|
130
|
+
GetCountryAnalyticsQueryParamCountry["Gr"] = "GR";
|
|
131
|
+
GetCountryAnalyticsQueryParamCountry["Gl"] = "GL";
|
|
132
|
+
GetCountryAnalyticsQueryParamCountry["Gd"] = "GD";
|
|
133
|
+
GetCountryAnalyticsQueryParamCountry["Gp"] = "GP";
|
|
134
|
+
GetCountryAnalyticsQueryParamCountry["Gu"] = "GU";
|
|
135
|
+
GetCountryAnalyticsQueryParamCountry["Gt"] = "GT";
|
|
136
|
+
GetCountryAnalyticsQueryParamCountry["Gn"] = "GN";
|
|
137
|
+
GetCountryAnalyticsQueryParamCountry["Gw"] = "GW";
|
|
138
|
+
GetCountryAnalyticsQueryParamCountry["Gy"] = "GY";
|
|
139
|
+
GetCountryAnalyticsQueryParamCountry["Ht"] = "HT";
|
|
140
|
+
GetCountryAnalyticsQueryParamCountry["Hm"] = "HM";
|
|
141
|
+
GetCountryAnalyticsQueryParamCountry["Va"] = "VA";
|
|
142
|
+
GetCountryAnalyticsQueryParamCountry["Hn"] = "HN";
|
|
143
|
+
GetCountryAnalyticsQueryParamCountry["Hk"] = "HK";
|
|
144
|
+
GetCountryAnalyticsQueryParamCountry["Hu"] = "HU";
|
|
145
|
+
GetCountryAnalyticsQueryParamCountry["Is"] = "IS";
|
|
146
|
+
GetCountryAnalyticsQueryParamCountry["In"] = "IN";
|
|
147
|
+
GetCountryAnalyticsQueryParamCountry["Id"] = "ID";
|
|
148
|
+
GetCountryAnalyticsQueryParamCountry["Ir"] = "IR";
|
|
149
|
+
GetCountryAnalyticsQueryParamCountry["Iq"] = "IQ";
|
|
150
|
+
GetCountryAnalyticsQueryParamCountry["Ie"] = "IE";
|
|
151
|
+
GetCountryAnalyticsQueryParamCountry["Il"] = "IL";
|
|
152
|
+
GetCountryAnalyticsQueryParamCountry["It"] = "IT";
|
|
153
|
+
GetCountryAnalyticsQueryParamCountry["Jm"] = "JM";
|
|
154
|
+
GetCountryAnalyticsQueryParamCountry["Jp"] = "JP";
|
|
155
|
+
GetCountryAnalyticsQueryParamCountry["Jo"] = "JO";
|
|
156
|
+
GetCountryAnalyticsQueryParamCountry["Kz"] = "KZ";
|
|
157
|
+
GetCountryAnalyticsQueryParamCountry["Ke"] = "KE";
|
|
158
|
+
GetCountryAnalyticsQueryParamCountry["Ki"] = "KI";
|
|
159
|
+
GetCountryAnalyticsQueryParamCountry["Kp"] = "KP";
|
|
160
|
+
GetCountryAnalyticsQueryParamCountry["Kr"] = "KR";
|
|
161
|
+
GetCountryAnalyticsQueryParamCountry["Kw"] = "KW";
|
|
162
|
+
GetCountryAnalyticsQueryParamCountry["Kg"] = "KG";
|
|
163
|
+
GetCountryAnalyticsQueryParamCountry["La"] = "LA";
|
|
164
|
+
GetCountryAnalyticsQueryParamCountry["Lv"] = "LV";
|
|
165
|
+
GetCountryAnalyticsQueryParamCountry["Lb"] = "LB";
|
|
166
|
+
GetCountryAnalyticsQueryParamCountry["Ls"] = "LS";
|
|
167
|
+
GetCountryAnalyticsQueryParamCountry["Lr"] = "LR";
|
|
168
|
+
GetCountryAnalyticsQueryParamCountry["Ly"] = "LY";
|
|
169
|
+
GetCountryAnalyticsQueryParamCountry["Li"] = "LI";
|
|
170
|
+
GetCountryAnalyticsQueryParamCountry["Lt"] = "LT";
|
|
171
|
+
GetCountryAnalyticsQueryParamCountry["Lu"] = "LU";
|
|
172
|
+
GetCountryAnalyticsQueryParamCountry["Mo"] = "MO";
|
|
173
|
+
GetCountryAnalyticsQueryParamCountry["Mg"] = "MG";
|
|
174
|
+
GetCountryAnalyticsQueryParamCountry["Mw"] = "MW";
|
|
175
|
+
GetCountryAnalyticsQueryParamCountry["My"] = "MY";
|
|
176
|
+
GetCountryAnalyticsQueryParamCountry["Mv"] = "MV";
|
|
177
|
+
GetCountryAnalyticsQueryParamCountry["Ml"] = "ML";
|
|
178
|
+
GetCountryAnalyticsQueryParamCountry["Mt"] = "MT";
|
|
179
|
+
GetCountryAnalyticsQueryParamCountry["Mh"] = "MH";
|
|
180
|
+
GetCountryAnalyticsQueryParamCountry["Mq"] = "MQ";
|
|
181
|
+
GetCountryAnalyticsQueryParamCountry["Mr"] = "MR";
|
|
182
|
+
GetCountryAnalyticsQueryParamCountry["Mu"] = "MU";
|
|
183
|
+
GetCountryAnalyticsQueryParamCountry["Yt"] = "YT";
|
|
184
|
+
GetCountryAnalyticsQueryParamCountry["Mx"] = "MX";
|
|
185
|
+
GetCountryAnalyticsQueryParamCountry["Fm"] = "FM";
|
|
186
|
+
GetCountryAnalyticsQueryParamCountry["Md"] = "MD";
|
|
187
|
+
GetCountryAnalyticsQueryParamCountry["Mc"] = "MC";
|
|
188
|
+
GetCountryAnalyticsQueryParamCountry["Mn"] = "MN";
|
|
189
|
+
GetCountryAnalyticsQueryParamCountry["Ms"] = "MS";
|
|
190
|
+
GetCountryAnalyticsQueryParamCountry["Ma"] = "MA";
|
|
191
|
+
GetCountryAnalyticsQueryParamCountry["Mz"] = "MZ";
|
|
192
|
+
GetCountryAnalyticsQueryParamCountry["Mm"] = "MM";
|
|
193
|
+
GetCountryAnalyticsQueryParamCountry["Na"] = "NA";
|
|
194
|
+
GetCountryAnalyticsQueryParamCountry["Nr"] = "NR";
|
|
195
|
+
GetCountryAnalyticsQueryParamCountry["Np"] = "NP";
|
|
196
|
+
GetCountryAnalyticsQueryParamCountry["Nl"] = "NL";
|
|
197
|
+
GetCountryAnalyticsQueryParamCountry["Nc"] = "NC";
|
|
198
|
+
GetCountryAnalyticsQueryParamCountry["Nz"] = "NZ";
|
|
199
|
+
GetCountryAnalyticsQueryParamCountry["Ni"] = "NI";
|
|
200
|
+
GetCountryAnalyticsQueryParamCountry["Ne"] = "NE";
|
|
201
|
+
GetCountryAnalyticsQueryParamCountry["Ng"] = "NG";
|
|
202
|
+
GetCountryAnalyticsQueryParamCountry["Nu"] = "NU";
|
|
203
|
+
GetCountryAnalyticsQueryParamCountry["Nf"] = "NF";
|
|
204
|
+
GetCountryAnalyticsQueryParamCountry["Mk"] = "MK";
|
|
205
|
+
GetCountryAnalyticsQueryParamCountry["Mp"] = "MP";
|
|
206
|
+
GetCountryAnalyticsQueryParamCountry["No"] = "NO";
|
|
207
|
+
GetCountryAnalyticsQueryParamCountry["Om"] = "OM";
|
|
208
|
+
GetCountryAnalyticsQueryParamCountry["Pk"] = "PK";
|
|
209
|
+
GetCountryAnalyticsQueryParamCountry["Pw"] = "PW";
|
|
210
|
+
GetCountryAnalyticsQueryParamCountry["Ps"] = "PS";
|
|
211
|
+
GetCountryAnalyticsQueryParamCountry["Pa"] = "PA";
|
|
212
|
+
GetCountryAnalyticsQueryParamCountry["Pg"] = "PG";
|
|
213
|
+
GetCountryAnalyticsQueryParamCountry["Py"] = "PY";
|
|
214
|
+
GetCountryAnalyticsQueryParamCountry["Pe"] = "PE";
|
|
215
|
+
GetCountryAnalyticsQueryParamCountry["Ph"] = "PH";
|
|
216
|
+
GetCountryAnalyticsQueryParamCountry["Pn"] = "PN";
|
|
217
|
+
GetCountryAnalyticsQueryParamCountry["Pl"] = "PL";
|
|
218
|
+
GetCountryAnalyticsQueryParamCountry["Pt"] = "PT";
|
|
219
|
+
GetCountryAnalyticsQueryParamCountry["Pr"] = "PR";
|
|
220
|
+
GetCountryAnalyticsQueryParamCountry["Qa"] = "QA";
|
|
221
|
+
GetCountryAnalyticsQueryParamCountry["Re"] = "RE";
|
|
222
|
+
GetCountryAnalyticsQueryParamCountry["Ro"] = "RO";
|
|
223
|
+
GetCountryAnalyticsQueryParamCountry["Ru"] = "RU";
|
|
224
|
+
GetCountryAnalyticsQueryParamCountry["Rw"] = "RW";
|
|
225
|
+
GetCountryAnalyticsQueryParamCountry["Sh"] = "SH";
|
|
226
|
+
GetCountryAnalyticsQueryParamCountry["Kn"] = "KN";
|
|
227
|
+
GetCountryAnalyticsQueryParamCountry["Lc"] = "LC";
|
|
228
|
+
GetCountryAnalyticsQueryParamCountry["Pm"] = "PM";
|
|
229
|
+
GetCountryAnalyticsQueryParamCountry["Vc"] = "VC";
|
|
230
|
+
GetCountryAnalyticsQueryParamCountry["Ws"] = "WS";
|
|
231
|
+
GetCountryAnalyticsQueryParamCountry["Sm"] = "SM";
|
|
232
|
+
GetCountryAnalyticsQueryParamCountry["St"] = "ST";
|
|
233
|
+
GetCountryAnalyticsQueryParamCountry["Sa"] = "SA";
|
|
234
|
+
GetCountryAnalyticsQueryParamCountry["Sn"] = "SN";
|
|
235
|
+
GetCountryAnalyticsQueryParamCountry["Sc"] = "SC";
|
|
236
|
+
GetCountryAnalyticsQueryParamCountry["Sl"] = "SL";
|
|
237
|
+
GetCountryAnalyticsQueryParamCountry["Sg"] = "SG";
|
|
238
|
+
GetCountryAnalyticsQueryParamCountry["Sk"] = "SK";
|
|
239
|
+
GetCountryAnalyticsQueryParamCountry["Si"] = "SI";
|
|
240
|
+
GetCountryAnalyticsQueryParamCountry["Sb"] = "SB";
|
|
241
|
+
GetCountryAnalyticsQueryParamCountry["So"] = "SO";
|
|
242
|
+
GetCountryAnalyticsQueryParamCountry["Za"] = "ZA";
|
|
243
|
+
GetCountryAnalyticsQueryParamCountry["Gs"] = "GS";
|
|
244
|
+
GetCountryAnalyticsQueryParamCountry["Es"] = "ES";
|
|
245
|
+
GetCountryAnalyticsQueryParamCountry["Lk"] = "LK";
|
|
246
|
+
GetCountryAnalyticsQueryParamCountry["Sd"] = "SD";
|
|
247
|
+
GetCountryAnalyticsQueryParamCountry["Sr"] = "SR";
|
|
248
|
+
GetCountryAnalyticsQueryParamCountry["Sj"] = "SJ";
|
|
249
|
+
GetCountryAnalyticsQueryParamCountry["Sz"] = "SZ";
|
|
250
|
+
GetCountryAnalyticsQueryParamCountry["Se"] = "SE";
|
|
251
|
+
GetCountryAnalyticsQueryParamCountry["Ch"] = "CH";
|
|
252
|
+
GetCountryAnalyticsQueryParamCountry["Sy"] = "SY";
|
|
253
|
+
GetCountryAnalyticsQueryParamCountry["Tw"] = "TW";
|
|
254
|
+
GetCountryAnalyticsQueryParamCountry["Tj"] = "TJ";
|
|
255
|
+
GetCountryAnalyticsQueryParamCountry["Tz"] = "TZ";
|
|
256
|
+
GetCountryAnalyticsQueryParamCountry["Th"] = "TH";
|
|
257
|
+
GetCountryAnalyticsQueryParamCountry["Tl"] = "TL";
|
|
258
|
+
GetCountryAnalyticsQueryParamCountry["Tg"] = "TG";
|
|
259
|
+
GetCountryAnalyticsQueryParamCountry["Tk"] = "TK";
|
|
260
|
+
GetCountryAnalyticsQueryParamCountry["To"] = "TO";
|
|
261
|
+
GetCountryAnalyticsQueryParamCountry["Tt"] = "TT";
|
|
262
|
+
GetCountryAnalyticsQueryParamCountry["Tn"] = "TN";
|
|
263
|
+
GetCountryAnalyticsQueryParamCountry["Tr"] = "TR";
|
|
264
|
+
GetCountryAnalyticsQueryParamCountry["Tm"] = "TM";
|
|
265
|
+
GetCountryAnalyticsQueryParamCountry["Tc"] = "TC";
|
|
266
|
+
GetCountryAnalyticsQueryParamCountry["Tv"] = "TV";
|
|
267
|
+
GetCountryAnalyticsQueryParamCountry["Ug"] = "UG";
|
|
268
|
+
GetCountryAnalyticsQueryParamCountry["Ua"] = "UA";
|
|
269
|
+
GetCountryAnalyticsQueryParamCountry["Ae"] = "AE";
|
|
270
|
+
GetCountryAnalyticsQueryParamCountry["Gb"] = "GB";
|
|
271
|
+
GetCountryAnalyticsQueryParamCountry["Us"] = "US";
|
|
272
|
+
GetCountryAnalyticsQueryParamCountry["Um"] = "UM";
|
|
273
|
+
GetCountryAnalyticsQueryParamCountry["Uy"] = "UY";
|
|
274
|
+
GetCountryAnalyticsQueryParamCountry["Uz"] = "UZ";
|
|
275
|
+
GetCountryAnalyticsQueryParamCountry["Vu"] = "VU";
|
|
276
|
+
GetCountryAnalyticsQueryParamCountry["Ve"] = "VE";
|
|
277
|
+
GetCountryAnalyticsQueryParamCountry["Vn"] = "VN";
|
|
278
|
+
GetCountryAnalyticsQueryParamCountry["Vg"] = "VG";
|
|
279
|
+
GetCountryAnalyticsQueryParamCountry["Vi"] = "VI";
|
|
280
|
+
GetCountryAnalyticsQueryParamCountry["Wf"] = "WF";
|
|
281
|
+
GetCountryAnalyticsQueryParamCountry["Eh"] = "EH";
|
|
282
|
+
GetCountryAnalyticsQueryParamCountry["Ye"] = "YE";
|
|
283
|
+
GetCountryAnalyticsQueryParamCountry["Zm"] = "ZM";
|
|
284
|
+
GetCountryAnalyticsQueryParamCountry["Zw"] = "ZW";
|
|
285
|
+
GetCountryAnalyticsQueryParamCountry["Ax"] = "AX";
|
|
286
|
+
GetCountryAnalyticsQueryParamCountry["Bq"] = "BQ";
|
|
287
|
+
GetCountryAnalyticsQueryParamCountry["Cw"] = "CW";
|
|
288
|
+
GetCountryAnalyticsQueryParamCountry["Gg"] = "GG";
|
|
289
|
+
GetCountryAnalyticsQueryParamCountry["Im"] = "IM";
|
|
290
|
+
GetCountryAnalyticsQueryParamCountry["Je"] = "JE";
|
|
291
|
+
GetCountryAnalyticsQueryParamCountry["Me"] = "ME";
|
|
292
|
+
GetCountryAnalyticsQueryParamCountry["Bl"] = "BL";
|
|
293
|
+
GetCountryAnalyticsQueryParamCountry["Mf"] = "MF";
|
|
294
|
+
GetCountryAnalyticsQueryParamCountry["Rs"] = "RS";
|
|
295
|
+
GetCountryAnalyticsQueryParamCountry["Sx"] = "SX";
|
|
296
|
+
GetCountryAnalyticsQueryParamCountry["Ss"] = "SS";
|
|
297
|
+
GetCountryAnalyticsQueryParamCountry["Xk"] = "XK";
|
|
298
|
+
})(GetCountryAnalyticsQueryParamCountry || (exports.GetCountryAnalyticsQueryParamCountry = GetCountryAnalyticsQueryParamCountry = {}));
|
|
299
|
+
/**
|
|
300
|
+
* The 2-letter country code: https://d.to/geo
|
|
301
|
+
*/
|
|
302
|
+
var GetCountryAnalyticsCountry;
|
|
303
|
+
(function (GetCountryAnalyticsCountry) {
|
|
304
|
+
GetCountryAnalyticsCountry["Af"] = "AF";
|
|
305
|
+
GetCountryAnalyticsCountry["Al"] = "AL";
|
|
306
|
+
GetCountryAnalyticsCountry["Dz"] = "DZ";
|
|
307
|
+
GetCountryAnalyticsCountry["As"] = "AS";
|
|
308
|
+
GetCountryAnalyticsCountry["Ad"] = "AD";
|
|
309
|
+
GetCountryAnalyticsCountry["Ao"] = "AO";
|
|
310
|
+
GetCountryAnalyticsCountry["Ai"] = "AI";
|
|
311
|
+
GetCountryAnalyticsCountry["Aq"] = "AQ";
|
|
312
|
+
GetCountryAnalyticsCountry["Ag"] = "AG";
|
|
313
|
+
GetCountryAnalyticsCountry["Ar"] = "AR";
|
|
314
|
+
GetCountryAnalyticsCountry["Am"] = "AM";
|
|
315
|
+
GetCountryAnalyticsCountry["Aw"] = "AW";
|
|
316
|
+
GetCountryAnalyticsCountry["Au"] = "AU";
|
|
317
|
+
GetCountryAnalyticsCountry["At"] = "AT";
|
|
318
|
+
GetCountryAnalyticsCountry["Az"] = "AZ";
|
|
319
|
+
GetCountryAnalyticsCountry["Bs"] = "BS";
|
|
320
|
+
GetCountryAnalyticsCountry["Bh"] = "BH";
|
|
321
|
+
GetCountryAnalyticsCountry["Bd"] = "BD";
|
|
322
|
+
GetCountryAnalyticsCountry["Bb"] = "BB";
|
|
323
|
+
GetCountryAnalyticsCountry["By"] = "BY";
|
|
324
|
+
GetCountryAnalyticsCountry["Be"] = "BE";
|
|
325
|
+
GetCountryAnalyticsCountry["Bz"] = "BZ";
|
|
326
|
+
GetCountryAnalyticsCountry["Bj"] = "BJ";
|
|
327
|
+
GetCountryAnalyticsCountry["Bm"] = "BM";
|
|
328
|
+
GetCountryAnalyticsCountry["Bt"] = "BT";
|
|
329
|
+
GetCountryAnalyticsCountry["Bo"] = "BO";
|
|
330
|
+
GetCountryAnalyticsCountry["Ba"] = "BA";
|
|
331
|
+
GetCountryAnalyticsCountry["Bw"] = "BW";
|
|
332
|
+
GetCountryAnalyticsCountry["Bv"] = "BV";
|
|
333
|
+
GetCountryAnalyticsCountry["Br"] = "BR";
|
|
334
|
+
GetCountryAnalyticsCountry["Io"] = "IO";
|
|
335
|
+
GetCountryAnalyticsCountry["Bn"] = "BN";
|
|
336
|
+
GetCountryAnalyticsCountry["Bg"] = "BG";
|
|
337
|
+
GetCountryAnalyticsCountry["Bf"] = "BF";
|
|
338
|
+
GetCountryAnalyticsCountry["Bi"] = "BI";
|
|
339
|
+
GetCountryAnalyticsCountry["Kh"] = "KH";
|
|
340
|
+
GetCountryAnalyticsCountry["Cm"] = "CM";
|
|
341
|
+
GetCountryAnalyticsCountry["Ca"] = "CA";
|
|
342
|
+
GetCountryAnalyticsCountry["Cv"] = "CV";
|
|
343
|
+
GetCountryAnalyticsCountry["Ky"] = "KY";
|
|
344
|
+
GetCountryAnalyticsCountry["Cf"] = "CF";
|
|
345
|
+
GetCountryAnalyticsCountry["Td"] = "TD";
|
|
346
|
+
GetCountryAnalyticsCountry["Cl"] = "CL";
|
|
347
|
+
GetCountryAnalyticsCountry["Cn"] = "CN";
|
|
348
|
+
GetCountryAnalyticsCountry["Cx"] = "CX";
|
|
349
|
+
GetCountryAnalyticsCountry["Cc"] = "CC";
|
|
350
|
+
GetCountryAnalyticsCountry["Co"] = "CO";
|
|
351
|
+
GetCountryAnalyticsCountry["Km"] = "KM";
|
|
352
|
+
GetCountryAnalyticsCountry["Cg"] = "CG";
|
|
353
|
+
GetCountryAnalyticsCountry["Cd"] = "CD";
|
|
354
|
+
GetCountryAnalyticsCountry["Ck"] = "CK";
|
|
355
|
+
GetCountryAnalyticsCountry["Cr"] = "CR";
|
|
356
|
+
GetCountryAnalyticsCountry["Ci"] = "CI";
|
|
357
|
+
GetCountryAnalyticsCountry["Hr"] = "HR";
|
|
358
|
+
GetCountryAnalyticsCountry["Cu"] = "CU";
|
|
359
|
+
GetCountryAnalyticsCountry["Cy"] = "CY";
|
|
360
|
+
GetCountryAnalyticsCountry["Cz"] = "CZ";
|
|
361
|
+
GetCountryAnalyticsCountry["Dk"] = "DK";
|
|
362
|
+
GetCountryAnalyticsCountry["Dj"] = "DJ";
|
|
363
|
+
GetCountryAnalyticsCountry["Dm"] = "DM";
|
|
364
|
+
GetCountryAnalyticsCountry["Do"] = "DO";
|
|
365
|
+
GetCountryAnalyticsCountry["Ec"] = "EC";
|
|
366
|
+
GetCountryAnalyticsCountry["Eg"] = "EG";
|
|
367
|
+
GetCountryAnalyticsCountry["Sv"] = "SV";
|
|
368
|
+
GetCountryAnalyticsCountry["Gq"] = "GQ";
|
|
369
|
+
GetCountryAnalyticsCountry["Er"] = "ER";
|
|
370
|
+
GetCountryAnalyticsCountry["Ee"] = "EE";
|
|
371
|
+
GetCountryAnalyticsCountry["Et"] = "ET";
|
|
372
|
+
GetCountryAnalyticsCountry["Fk"] = "FK";
|
|
373
|
+
GetCountryAnalyticsCountry["Fo"] = "FO";
|
|
374
|
+
GetCountryAnalyticsCountry["Fj"] = "FJ";
|
|
375
|
+
GetCountryAnalyticsCountry["Fi"] = "FI";
|
|
376
|
+
GetCountryAnalyticsCountry["Fr"] = "FR";
|
|
377
|
+
GetCountryAnalyticsCountry["Gf"] = "GF";
|
|
378
|
+
GetCountryAnalyticsCountry["Pf"] = "PF";
|
|
379
|
+
GetCountryAnalyticsCountry["Tf"] = "TF";
|
|
380
|
+
GetCountryAnalyticsCountry["Ga"] = "GA";
|
|
381
|
+
GetCountryAnalyticsCountry["Gm"] = "GM";
|
|
382
|
+
GetCountryAnalyticsCountry["Ge"] = "GE";
|
|
383
|
+
GetCountryAnalyticsCountry["De"] = "DE";
|
|
384
|
+
GetCountryAnalyticsCountry["Gh"] = "GH";
|
|
385
|
+
GetCountryAnalyticsCountry["Gi"] = "GI";
|
|
386
|
+
GetCountryAnalyticsCountry["Gr"] = "GR";
|
|
387
|
+
GetCountryAnalyticsCountry["Gl"] = "GL";
|
|
388
|
+
GetCountryAnalyticsCountry["Gd"] = "GD";
|
|
389
|
+
GetCountryAnalyticsCountry["Gp"] = "GP";
|
|
390
|
+
GetCountryAnalyticsCountry["Gu"] = "GU";
|
|
391
|
+
GetCountryAnalyticsCountry["Gt"] = "GT";
|
|
392
|
+
GetCountryAnalyticsCountry["Gn"] = "GN";
|
|
393
|
+
GetCountryAnalyticsCountry["Gw"] = "GW";
|
|
394
|
+
GetCountryAnalyticsCountry["Gy"] = "GY";
|
|
395
|
+
GetCountryAnalyticsCountry["Ht"] = "HT";
|
|
396
|
+
GetCountryAnalyticsCountry["Hm"] = "HM";
|
|
397
|
+
GetCountryAnalyticsCountry["Va"] = "VA";
|
|
398
|
+
GetCountryAnalyticsCountry["Hn"] = "HN";
|
|
399
|
+
GetCountryAnalyticsCountry["Hk"] = "HK";
|
|
400
|
+
GetCountryAnalyticsCountry["Hu"] = "HU";
|
|
401
|
+
GetCountryAnalyticsCountry["Is"] = "IS";
|
|
402
|
+
GetCountryAnalyticsCountry["In"] = "IN";
|
|
403
|
+
GetCountryAnalyticsCountry["Id"] = "ID";
|
|
404
|
+
GetCountryAnalyticsCountry["Ir"] = "IR";
|
|
405
|
+
GetCountryAnalyticsCountry["Iq"] = "IQ";
|
|
406
|
+
GetCountryAnalyticsCountry["Ie"] = "IE";
|
|
407
|
+
GetCountryAnalyticsCountry["Il"] = "IL";
|
|
408
|
+
GetCountryAnalyticsCountry["It"] = "IT";
|
|
409
|
+
GetCountryAnalyticsCountry["Jm"] = "JM";
|
|
410
|
+
GetCountryAnalyticsCountry["Jp"] = "JP";
|
|
411
|
+
GetCountryAnalyticsCountry["Jo"] = "JO";
|
|
412
|
+
GetCountryAnalyticsCountry["Kz"] = "KZ";
|
|
413
|
+
GetCountryAnalyticsCountry["Ke"] = "KE";
|
|
414
|
+
GetCountryAnalyticsCountry["Ki"] = "KI";
|
|
415
|
+
GetCountryAnalyticsCountry["Kp"] = "KP";
|
|
416
|
+
GetCountryAnalyticsCountry["Kr"] = "KR";
|
|
417
|
+
GetCountryAnalyticsCountry["Kw"] = "KW";
|
|
418
|
+
GetCountryAnalyticsCountry["Kg"] = "KG";
|
|
419
|
+
GetCountryAnalyticsCountry["La"] = "LA";
|
|
420
|
+
GetCountryAnalyticsCountry["Lv"] = "LV";
|
|
421
|
+
GetCountryAnalyticsCountry["Lb"] = "LB";
|
|
422
|
+
GetCountryAnalyticsCountry["Ls"] = "LS";
|
|
423
|
+
GetCountryAnalyticsCountry["Lr"] = "LR";
|
|
424
|
+
GetCountryAnalyticsCountry["Ly"] = "LY";
|
|
425
|
+
GetCountryAnalyticsCountry["Li"] = "LI";
|
|
426
|
+
GetCountryAnalyticsCountry["Lt"] = "LT";
|
|
427
|
+
GetCountryAnalyticsCountry["Lu"] = "LU";
|
|
428
|
+
GetCountryAnalyticsCountry["Mo"] = "MO";
|
|
429
|
+
GetCountryAnalyticsCountry["Mg"] = "MG";
|
|
430
|
+
GetCountryAnalyticsCountry["Mw"] = "MW";
|
|
431
|
+
GetCountryAnalyticsCountry["My"] = "MY";
|
|
432
|
+
GetCountryAnalyticsCountry["Mv"] = "MV";
|
|
433
|
+
GetCountryAnalyticsCountry["Ml"] = "ML";
|
|
434
|
+
GetCountryAnalyticsCountry["Mt"] = "MT";
|
|
435
|
+
GetCountryAnalyticsCountry["Mh"] = "MH";
|
|
436
|
+
GetCountryAnalyticsCountry["Mq"] = "MQ";
|
|
437
|
+
GetCountryAnalyticsCountry["Mr"] = "MR";
|
|
438
|
+
GetCountryAnalyticsCountry["Mu"] = "MU";
|
|
439
|
+
GetCountryAnalyticsCountry["Yt"] = "YT";
|
|
440
|
+
GetCountryAnalyticsCountry["Mx"] = "MX";
|
|
441
|
+
GetCountryAnalyticsCountry["Fm"] = "FM";
|
|
442
|
+
GetCountryAnalyticsCountry["Md"] = "MD";
|
|
443
|
+
GetCountryAnalyticsCountry["Mc"] = "MC";
|
|
444
|
+
GetCountryAnalyticsCountry["Mn"] = "MN";
|
|
445
|
+
GetCountryAnalyticsCountry["Ms"] = "MS";
|
|
446
|
+
GetCountryAnalyticsCountry["Ma"] = "MA";
|
|
447
|
+
GetCountryAnalyticsCountry["Mz"] = "MZ";
|
|
448
|
+
GetCountryAnalyticsCountry["Mm"] = "MM";
|
|
449
|
+
GetCountryAnalyticsCountry["Na"] = "NA";
|
|
450
|
+
GetCountryAnalyticsCountry["Nr"] = "NR";
|
|
451
|
+
GetCountryAnalyticsCountry["Np"] = "NP";
|
|
452
|
+
GetCountryAnalyticsCountry["Nl"] = "NL";
|
|
453
|
+
GetCountryAnalyticsCountry["Nc"] = "NC";
|
|
454
|
+
GetCountryAnalyticsCountry["Nz"] = "NZ";
|
|
455
|
+
GetCountryAnalyticsCountry["Ni"] = "NI";
|
|
456
|
+
GetCountryAnalyticsCountry["Ne"] = "NE";
|
|
457
|
+
GetCountryAnalyticsCountry["Ng"] = "NG";
|
|
458
|
+
GetCountryAnalyticsCountry["Nu"] = "NU";
|
|
459
|
+
GetCountryAnalyticsCountry["Nf"] = "NF";
|
|
460
|
+
GetCountryAnalyticsCountry["Mk"] = "MK";
|
|
461
|
+
GetCountryAnalyticsCountry["Mp"] = "MP";
|
|
462
|
+
GetCountryAnalyticsCountry["No"] = "NO";
|
|
463
|
+
GetCountryAnalyticsCountry["Om"] = "OM";
|
|
464
|
+
GetCountryAnalyticsCountry["Pk"] = "PK";
|
|
465
|
+
GetCountryAnalyticsCountry["Pw"] = "PW";
|
|
466
|
+
GetCountryAnalyticsCountry["Ps"] = "PS";
|
|
467
|
+
GetCountryAnalyticsCountry["Pa"] = "PA";
|
|
468
|
+
GetCountryAnalyticsCountry["Pg"] = "PG";
|
|
469
|
+
GetCountryAnalyticsCountry["Py"] = "PY";
|
|
470
|
+
GetCountryAnalyticsCountry["Pe"] = "PE";
|
|
471
|
+
GetCountryAnalyticsCountry["Ph"] = "PH";
|
|
472
|
+
GetCountryAnalyticsCountry["Pn"] = "PN";
|
|
473
|
+
GetCountryAnalyticsCountry["Pl"] = "PL";
|
|
474
|
+
GetCountryAnalyticsCountry["Pt"] = "PT";
|
|
475
|
+
GetCountryAnalyticsCountry["Pr"] = "PR";
|
|
476
|
+
GetCountryAnalyticsCountry["Qa"] = "QA";
|
|
477
|
+
GetCountryAnalyticsCountry["Re"] = "RE";
|
|
478
|
+
GetCountryAnalyticsCountry["Ro"] = "RO";
|
|
479
|
+
GetCountryAnalyticsCountry["Ru"] = "RU";
|
|
480
|
+
GetCountryAnalyticsCountry["Rw"] = "RW";
|
|
481
|
+
GetCountryAnalyticsCountry["Sh"] = "SH";
|
|
482
|
+
GetCountryAnalyticsCountry["Kn"] = "KN";
|
|
483
|
+
GetCountryAnalyticsCountry["Lc"] = "LC";
|
|
484
|
+
GetCountryAnalyticsCountry["Pm"] = "PM";
|
|
485
|
+
GetCountryAnalyticsCountry["Vc"] = "VC";
|
|
486
|
+
GetCountryAnalyticsCountry["Ws"] = "WS";
|
|
487
|
+
GetCountryAnalyticsCountry["Sm"] = "SM";
|
|
488
|
+
GetCountryAnalyticsCountry["St"] = "ST";
|
|
489
|
+
GetCountryAnalyticsCountry["Sa"] = "SA";
|
|
490
|
+
GetCountryAnalyticsCountry["Sn"] = "SN";
|
|
491
|
+
GetCountryAnalyticsCountry["Sc"] = "SC";
|
|
492
|
+
GetCountryAnalyticsCountry["Sl"] = "SL";
|
|
493
|
+
GetCountryAnalyticsCountry["Sg"] = "SG";
|
|
494
|
+
GetCountryAnalyticsCountry["Sk"] = "SK";
|
|
495
|
+
GetCountryAnalyticsCountry["Si"] = "SI";
|
|
496
|
+
GetCountryAnalyticsCountry["Sb"] = "SB";
|
|
497
|
+
GetCountryAnalyticsCountry["So"] = "SO";
|
|
498
|
+
GetCountryAnalyticsCountry["Za"] = "ZA";
|
|
499
|
+
GetCountryAnalyticsCountry["Gs"] = "GS";
|
|
500
|
+
GetCountryAnalyticsCountry["Es"] = "ES";
|
|
501
|
+
GetCountryAnalyticsCountry["Lk"] = "LK";
|
|
502
|
+
GetCountryAnalyticsCountry["Sd"] = "SD";
|
|
503
|
+
GetCountryAnalyticsCountry["Sr"] = "SR";
|
|
504
|
+
GetCountryAnalyticsCountry["Sj"] = "SJ";
|
|
505
|
+
GetCountryAnalyticsCountry["Sz"] = "SZ";
|
|
506
|
+
GetCountryAnalyticsCountry["Se"] = "SE";
|
|
507
|
+
GetCountryAnalyticsCountry["Ch"] = "CH";
|
|
508
|
+
GetCountryAnalyticsCountry["Sy"] = "SY";
|
|
509
|
+
GetCountryAnalyticsCountry["Tw"] = "TW";
|
|
510
|
+
GetCountryAnalyticsCountry["Tj"] = "TJ";
|
|
511
|
+
GetCountryAnalyticsCountry["Tz"] = "TZ";
|
|
512
|
+
GetCountryAnalyticsCountry["Th"] = "TH";
|
|
513
|
+
GetCountryAnalyticsCountry["Tl"] = "TL";
|
|
514
|
+
GetCountryAnalyticsCountry["Tg"] = "TG";
|
|
515
|
+
GetCountryAnalyticsCountry["Tk"] = "TK";
|
|
516
|
+
GetCountryAnalyticsCountry["To"] = "TO";
|
|
517
|
+
GetCountryAnalyticsCountry["Tt"] = "TT";
|
|
518
|
+
GetCountryAnalyticsCountry["Tn"] = "TN";
|
|
519
|
+
GetCountryAnalyticsCountry["Tr"] = "TR";
|
|
520
|
+
GetCountryAnalyticsCountry["Tm"] = "TM";
|
|
521
|
+
GetCountryAnalyticsCountry["Tc"] = "TC";
|
|
522
|
+
GetCountryAnalyticsCountry["Tv"] = "TV";
|
|
523
|
+
GetCountryAnalyticsCountry["Ug"] = "UG";
|
|
524
|
+
GetCountryAnalyticsCountry["Ua"] = "UA";
|
|
525
|
+
GetCountryAnalyticsCountry["Ae"] = "AE";
|
|
526
|
+
GetCountryAnalyticsCountry["Gb"] = "GB";
|
|
527
|
+
GetCountryAnalyticsCountry["Us"] = "US";
|
|
528
|
+
GetCountryAnalyticsCountry["Um"] = "UM";
|
|
529
|
+
GetCountryAnalyticsCountry["Uy"] = "UY";
|
|
530
|
+
GetCountryAnalyticsCountry["Uz"] = "UZ";
|
|
531
|
+
GetCountryAnalyticsCountry["Vu"] = "VU";
|
|
532
|
+
GetCountryAnalyticsCountry["Ve"] = "VE";
|
|
533
|
+
GetCountryAnalyticsCountry["Vn"] = "VN";
|
|
534
|
+
GetCountryAnalyticsCountry["Vg"] = "VG";
|
|
535
|
+
GetCountryAnalyticsCountry["Vi"] = "VI";
|
|
536
|
+
GetCountryAnalyticsCountry["Wf"] = "WF";
|
|
537
|
+
GetCountryAnalyticsCountry["Eh"] = "EH";
|
|
538
|
+
GetCountryAnalyticsCountry["Ye"] = "YE";
|
|
539
|
+
GetCountryAnalyticsCountry["Zm"] = "ZM";
|
|
540
|
+
GetCountryAnalyticsCountry["Zw"] = "ZW";
|
|
541
|
+
GetCountryAnalyticsCountry["Ax"] = "AX";
|
|
542
|
+
GetCountryAnalyticsCountry["Bq"] = "BQ";
|
|
543
|
+
GetCountryAnalyticsCountry["Cw"] = "CW";
|
|
544
|
+
GetCountryAnalyticsCountry["Gg"] = "GG";
|
|
545
|
+
GetCountryAnalyticsCountry["Im"] = "IM";
|
|
546
|
+
GetCountryAnalyticsCountry["Je"] = "JE";
|
|
547
|
+
GetCountryAnalyticsCountry["Me"] = "ME";
|
|
548
|
+
GetCountryAnalyticsCountry["Bl"] = "BL";
|
|
549
|
+
GetCountryAnalyticsCountry["Mf"] = "MF";
|
|
550
|
+
GetCountryAnalyticsCountry["Rs"] = "RS";
|
|
551
|
+
GetCountryAnalyticsCountry["Sx"] = "SX";
|
|
552
|
+
GetCountryAnalyticsCountry["Ss"] = "SS";
|
|
553
|
+
GetCountryAnalyticsCountry["Xk"] = "XK";
|
|
554
|
+
})(GetCountryAnalyticsCountry || (exports.GetCountryAnalyticsCountry = GetCountryAnalyticsCountry = {}));
|
|
555
|
+
/** @internal */
|
|
556
|
+
exports.GetCountryAnalyticsQueryParamInterval$ = z.nativeEnum(GetCountryAnalyticsQueryParamInterval);
|
|
557
|
+
/** @internal */
|
|
558
|
+
exports.GetCountryAnalyticsQueryParamCountry$ = z.nativeEnum(GetCountryAnalyticsQueryParamCountry);
|
|
559
|
+
/** @internal */
|
|
560
|
+
var GetCountryAnalyticsRequest$;
|
|
561
|
+
(function (GetCountryAnalyticsRequest$) {
|
|
562
|
+
GetCountryAnalyticsRequest$.inboundSchema = z
|
|
563
|
+
.object({
|
|
564
|
+
domain: z.string().optional(),
|
|
565
|
+
key: z.string().optional(),
|
|
566
|
+
interval: exports.GetCountryAnalyticsQueryParamInterval$.optional(),
|
|
567
|
+
country: exports.GetCountryAnalyticsQueryParamCountry$.optional(),
|
|
568
|
+
city: z.string().optional(),
|
|
569
|
+
device: z.string().optional(),
|
|
570
|
+
browser: z.string().optional(),
|
|
571
|
+
os: z.string().optional(),
|
|
572
|
+
referer: z.string().optional(),
|
|
573
|
+
url: z.string().optional(),
|
|
574
|
+
excludeRoot: z.boolean().optional(),
|
|
575
|
+
tagId: z.string().optional(),
|
|
576
|
+
})
|
|
577
|
+
.transform((v) => {
|
|
578
|
+
return {
|
|
579
|
+
...(v.domain === undefined ? null : { domain: v.domain }),
|
|
580
|
+
...(v.key === undefined ? null : { key: v.key }),
|
|
581
|
+
...(v.interval === undefined ? null : { interval: v.interval }),
|
|
582
|
+
...(v.country === undefined ? null : { country: v.country }),
|
|
583
|
+
...(v.city === undefined ? null : { city: v.city }),
|
|
584
|
+
...(v.device === undefined ? null : { device: v.device }),
|
|
585
|
+
...(v.browser === undefined ? null : { browser: v.browser }),
|
|
586
|
+
...(v.os === undefined ? null : { os: v.os }),
|
|
587
|
+
...(v.referer === undefined ? null : { referer: v.referer }),
|
|
588
|
+
...(v.url === undefined ? null : { url: v.url }),
|
|
589
|
+
...(v.excludeRoot === undefined ? null : { excludeRoot: v.excludeRoot }),
|
|
590
|
+
...(v.tagId === undefined ? null : { tagId: v.tagId }),
|
|
591
|
+
};
|
|
592
|
+
});
|
|
593
|
+
GetCountryAnalyticsRequest$.outboundSchema = z
|
|
594
|
+
.object({
|
|
595
|
+
domain: z.string().optional(),
|
|
596
|
+
key: z.string().optional(),
|
|
597
|
+
interval: exports.GetCountryAnalyticsQueryParamInterval$.optional(),
|
|
598
|
+
country: exports.GetCountryAnalyticsQueryParamCountry$.optional(),
|
|
599
|
+
city: z.string().optional(),
|
|
600
|
+
device: z.string().optional(),
|
|
601
|
+
browser: z.string().optional(),
|
|
602
|
+
os: z.string().optional(),
|
|
603
|
+
referer: z.string().optional(),
|
|
604
|
+
url: z.string().optional(),
|
|
605
|
+
excludeRoot: z.boolean().optional(),
|
|
606
|
+
tagId: z.string().optional(),
|
|
607
|
+
})
|
|
608
|
+
.transform((v) => {
|
|
609
|
+
return {
|
|
610
|
+
...(v.domain === undefined ? null : { domain: v.domain }),
|
|
611
|
+
...(v.key === undefined ? null : { key: v.key }),
|
|
612
|
+
...(v.interval === undefined ? null : { interval: v.interval }),
|
|
613
|
+
...(v.country === undefined ? null : { country: v.country }),
|
|
614
|
+
...(v.city === undefined ? null : { city: v.city }),
|
|
615
|
+
...(v.device === undefined ? null : { device: v.device }),
|
|
616
|
+
...(v.browser === undefined ? null : { browser: v.browser }),
|
|
617
|
+
...(v.os === undefined ? null : { os: v.os }),
|
|
618
|
+
...(v.referer === undefined ? null : { referer: v.referer }),
|
|
619
|
+
...(v.url === undefined ? null : { url: v.url }),
|
|
620
|
+
...(v.excludeRoot === undefined ? null : { excludeRoot: v.excludeRoot }),
|
|
621
|
+
...(v.tagId === undefined ? null : { tagId: v.tagId }),
|
|
622
|
+
};
|
|
623
|
+
});
|
|
624
|
+
})(GetCountryAnalyticsRequest$ || (exports.GetCountryAnalyticsRequest$ = GetCountryAnalyticsRequest$ = {}));
|
|
625
|
+
/** @internal */
|
|
626
|
+
exports.GetCountryAnalyticsCountry$ = z.nativeEnum(GetCountryAnalyticsCountry);
|
|
627
|
+
/** @internal */
|
|
628
|
+
var GetCountryAnalyticsResponseBody$;
|
|
629
|
+
(function (GetCountryAnalyticsResponseBody$) {
|
|
630
|
+
GetCountryAnalyticsResponseBody$.inboundSchema = z
|
|
631
|
+
.object({
|
|
632
|
+
country: exports.GetCountryAnalyticsCountry$,
|
|
633
|
+
clicks: z.number(),
|
|
634
|
+
})
|
|
635
|
+
.transform((v) => {
|
|
636
|
+
return {
|
|
637
|
+
country: v.country,
|
|
638
|
+
clicks: v.clicks,
|
|
639
|
+
};
|
|
640
|
+
});
|
|
641
|
+
GetCountryAnalyticsResponseBody$.outboundSchema = z
|
|
642
|
+
.object({
|
|
643
|
+
country: exports.GetCountryAnalyticsCountry$,
|
|
644
|
+
clicks: z.number(),
|
|
645
|
+
})
|
|
646
|
+
.transform((v) => {
|
|
647
|
+
return {
|
|
648
|
+
country: v.country,
|
|
649
|
+
clicks: v.clicks,
|
|
650
|
+
};
|
|
651
|
+
});
|
|
652
|
+
})(GetCountryAnalyticsResponseBody$ || (exports.GetCountryAnalyticsResponseBody$ = GetCountryAnalyticsResponseBody$ = {}));
|
|
653
|
+
//# sourceMappingURL=getcountryanalytics.js.map
|