@cronvello/shop-sdk 0.2.0 → 0.2.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.
@@ -1919,6 +1919,10 @@ type ExternalApp = {
1919
1919
  description: string | null;
1920
1920
  /** damit wir interagieren können mit der app */
1921
1921
  apiKey: string | null;
1922
+ /** vorheriger Key während Grace-Period für unterbrechungsfreie Rotation */
1923
+ previousApiKey: string | null;
1924
+ /** Ablaufzeitpunkt der Grace-Period */
1925
+ previousApiKeyExpiresAt: Date | null;
1922
1926
  /** sicher client-seitig einbettbarer Key für Frontends ohne eigenes Backend (Stripe-Publishable-Key-Modell) — NICHT zum Signieren, nur Identifikation + Katalog-Scope */
1923
1927
  publicApiKey: string | null;
1924
1928
  /** scoped diese Frontend-App auf genau eine Produkt-Marke (z.B. geilemukke.de -> "Geile Mukke") */
@@ -1966,6 +1970,10 @@ type ExternalAppInsert = {
1966
1970
  description?: string | null;
1967
1971
  /** damit wir interagieren können mit der app */
1968
1972
  apiKey?: string | null;
1973
+ /** vorheriger Key während Grace-Period für unterbrechungsfreie Rotation */
1974
+ previousApiKey?: string | null;
1975
+ /** Ablaufzeitpunkt der Grace-Period */
1976
+ previousApiKeyExpiresAt?: Date | null;
1969
1977
  /** sicher client-seitig einbettbarer Key für Frontends ohne eigenes Backend (Stripe-Publishable-Key-Modell) — NICHT zum Signieren, nur Identifikation + Katalog-Scope */
1970
1978
  publicApiKey?: string | null;
1971
1979
  /** scoped diese Frontend-App auf genau eine Produkt-Marke (z.B. geilemukke.de -> "Geile Mukke") */
@@ -4975,7 +4983,7 @@ declare const apiRoutes_b2b: {
4975
4983
  readonly meta: {
4976
4984
  readonly tags: readonly ["b2b"];
4977
4985
  readonly summary: "Create B2B dynamic checkout session";
4978
- readonly description: "Creates a Stripe checkout session with dynamic price_data for trusted external apps. Supports mixed carts (one-time + recurring). Auth: Bearer BACKEND_TO_BACKEND_API_KEY.";
4986
+ readonly description: "Creates a Stripe checkout session with dynamic price_data for trusted external apps. Supports mixed carts (one-time + recurring). Auth: Bearer BACKEND_TO_BACKEND_API_KEY or App-Scoped API Key.";
4979
4987
  readonly bodyContentType: "application/json";
4980
4988
  readonly validated: {
4981
4989
  readonly params: false;
@@ -8307,6 +8315,23 @@ type ExternalAppsServiceUpdateResponseData = Omit<ExternalApp, 'apiKey' | 'oauth
8307
8315
  hasOAuthClientSecret: boolean;
8308
8316
  };
8309
8317
  type ExternalAppsServiceUpdateResponse = ApiEnvelope<ExternalAppsServiceUpdateResponseData>;
8318
+ type ExternalAppsServiceRotateKeyParams = {
8319
+ appId: string;
8320
+ };
8321
+ type ExternalAppsServiceRotateKeyQuery = {};
8322
+ type ExternalAppsServiceRotateKeyBody = {
8323
+ newApiKey?: string;
8324
+ gracePeriodHours?: number;
8325
+ };
8326
+ type ExternalAppsServiceRotateKeyResponseData = {
8327
+ appId: string;
8328
+ name: string;
8329
+ newApiKey: string;
8330
+ previousApiKeyMasked: string | null;
8331
+ previousApiKeyExpiresAt: string | null;
8332
+ gracePeriodHours: number;
8333
+ };
8334
+ type ExternalAppsServiceRotateKeyResponse = ApiEnvelope<ExternalAppsServiceRotateKeyResponseData>;
8310
8335
  type ExternalAppsServiceDeleteParams = {
8311
8336
  appId: number;
8312
8337
  };
@@ -8323,6 +8348,11 @@ type ExternalAppsServiceStatusResponseData = {
8323
8348
  isLive: boolean;
8324
8349
  lastFetchedAt: string | null;
8325
8350
  lastFetchSuccess: boolean | null;
8351
+ authMethod: string | null;
8352
+ oauthClientId: string | null;
8353
+ oauthClientSecretFingerprint: string | null;
8354
+ entitlementPath: string | null;
8355
+ usageOveragePath: string | null;
8326
8356
  };
8327
8357
  type ExternalAppsServiceStatusResponse = ApiEnvelope<ExternalAppsServiceStatusResponseData>;
8328
8358
  type ExternalAppsGetAllMetricCatalogsParams = undefined;
@@ -8599,6 +8629,31 @@ declare const apiRoutes_external_apps: {
8599
8629
  responseData: ExternalAppsServiceUpdateResponseData;
8600
8630
  };
8601
8631
  };
8632
+ readonly external_apps_service_rotate_key: {
8633
+ readonly method: "POST";
8634
+ readonly path: "/external-apps/service/rotate-key/:appId";
8635
+ readonly auth: {
8636
+ readonly type: "x_api_key_https";
8637
+ };
8638
+ readonly meta: {
8639
+ readonly tags: readonly ["external-apps"];
8640
+ readonly summary: "Rotate external app api key (B2B zero-downtime)";
8641
+ readonly description: "Rotates the API key of an external app. The previous key remains valid during the specified gracePeriodHours (default: 2h) to prevent downtime during deployments. Authenticated via backend-to-backend API key.";
8642
+ readonly bodyContentType: "application/json";
8643
+ readonly validated: {
8644
+ readonly params: true;
8645
+ readonly query: true;
8646
+ readonly body: true;
8647
+ };
8648
+ };
8649
+ readonly types: {
8650
+ params: ExternalAppsServiceRotateKeyParams;
8651
+ query: ExternalAppsServiceRotateKeyQuery;
8652
+ body: ExternalAppsServiceRotateKeyBody;
8653
+ response: ExternalAppsServiceRotateKeyResponse;
8654
+ responseData: ExternalAppsServiceRotateKeyResponseData;
8655
+ };
8656
+ };
8602
8657
  readonly external_apps_service_delete: {
8603
8658
  readonly method: "DELETE";
8604
8659
  readonly path: "/external-apps/service/delete/:appId";
@@ -8632,7 +8687,7 @@ declare const apiRoutes_external_apps: {
8632
8687
  readonly meta: {
8633
8688
  readonly tags: readonly ["external-apps"];
8634
8689
  readonly summary: "Get external app registration status (B2B)";
8635
- readonly description: "Returns registration status for an app identified by its string appId. Used by AMP to discover existing connections.";
8690
+ readonly description: "Returns registration status for an app identified by its string appId. Used by AMP to discover existing connections. Includes authMethod and, for OAuth apps, the oauth client_id we will present to that app plus a truncated SHA-256 fingerprint of the stored client secret, so the other side can prove a rotation actually landed here. Never the secret itself. Also reports the entitlement paths we have stored, because registration is an upsert: a caller that only wants to hand us new credentials must send these back unchanged, or it silently repoints where we fetch entitlements from.";
8636
8691
  };
8637
8692
  readonly types: {
8638
8693
  params: ExternalAppsServiceStatusParams;
@@ -25375,6 +25430,31 @@ declare const apiRoutes: {
25375
25430
  responseData: ExternalAppsServiceUpdateResponseData;
25376
25431
  };
25377
25432
  };
25433
+ readonly external_apps_service_rotate_key: {
25434
+ readonly method: "POST";
25435
+ readonly path: "/external-apps/service/rotate-key/:appId";
25436
+ readonly auth: {
25437
+ readonly type: "x_api_key_https";
25438
+ };
25439
+ readonly meta: {
25440
+ readonly tags: readonly ["external-apps"];
25441
+ readonly summary: "Rotate external app api key (B2B zero-downtime)";
25442
+ readonly description: "Rotates the API key of an external app. The previous key remains valid during the specified gracePeriodHours (default: 2h) to prevent downtime during deployments. Authenticated via backend-to-backend API key.";
25443
+ readonly bodyContentType: "application/json";
25444
+ readonly validated: {
25445
+ readonly params: true;
25446
+ readonly query: true;
25447
+ readonly body: true;
25448
+ };
25449
+ };
25450
+ readonly types: {
25451
+ params: ExternalAppsServiceRotateKeyParams;
25452
+ query: ExternalAppsServiceRotateKeyQuery;
25453
+ body: ExternalAppsServiceRotateKeyBody;
25454
+ response: ExternalAppsServiceRotateKeyResponse;
25455
+ responseData: ExternalAppsServiceRotateKeyResponseData;
25456
+ };
25457
+ };
25378
25458
  readonly external_apps_service_delete: {
25379
25459
  readonly method: "DELETE";
25380
25460
  readonly path: "/external-apps/service/delete/:appId";
@@ -25408,7 +25488,7 @@ declare const apiRoutes: {
25408
25488
  readonly meta: {
25409
25489
  readonly tags: readonly ["external-apps"];
25410
25490
  readonly summary: "Get external app registration status (B2B)";
25411
- readonly description: "Returns registration status for an app identified by its string appId. Used by AMP to discover existing connections.";
25491
+ readonly description: "Returns registration status for an app identified by its string appId. Used by AMP to discover existing connections. Includes authMethod and, for OAuth apps, the oauth client_id we will present to that app plus a truncated SHA-256 fingerprint of the stored client secret, so the other side can prove a rotation actually landed here. Never the secret itself. Also reports the entitlement paths we have stored, because registration is an upsert: a caller that only wants to hand us new credentials must send these back unchanged, or it silently repoints where we fetch entitlements from.";
25412
25492
  };
25413
25493
  readonly types: {
25414
25494
  params: ExternalAppsServiceStatusParams;
@@ -27630,7 +27710,7 @@ declare const apiRoutes: {
27630
27710
  readonly meta: {
27631
27711
  readonly tags: readonly ["b2b"];
27632
27712
  readonly summary: "Create B2B dynamic checkout session";
27633
- readonly description: "Creates a Stripe checkout session with dynamic price_data for trusted external apps. Supports mixed carts (one-time + recurring). Auth: Bearer BACKEND_TO_BACKEND_API_KEY.";
27713
+ readonly description: "Creates a Stripe checkout session with dynamic price_data for trusted external apps. Supports mixed carts (one-time + recurring). Auth: Bearer BACKEND_TO_BACKEND_API_KEY or App-Scoped API Key.";
27634
27714
  readonly bodyContentType: "application/json";
27635
27715
  readonly validated: {
27636
27716
  readonly params: false;
@@ -28586,4 +28666,4 @@ type ApiRequest<K extends ApiRouteKey> = ApiRoute<K>["types"];
28586
28666
  type ApiResponse<K extends ApiRouteKey> = ApiRoute<K>["types"]["response"];
28587
28667
  type ApiResponseData<K extends ApiRouteKey> = ApiRoute<K>["types"]["responseData"];
28588
28668
 
28589
- export { type AssignedEntitlementsCreateParams as $, type Address as A, type SenderBrand as A$, type ProductsSearchBody as A0, type ProductsSearchParams as A1, type ProductsSearchQuery as A2, type ProductsSearchResponse as A3, type ProductsSearchResponseData as A4, type ProductsUpdateBody as A5, type ProductsUpdateParams as A6, type ProductsUpdateQuery as A7, type ProductsUpdateResponse as A8, type ProductsUpdateResponseData as A9, type RolePermission as AA, type RolePermissionId as AB, type RolesCreateBody as AC, type RolesCreateParams as AD, type RolesCreateQuery as AE, type RolesCreateResponse as AF, type RolesCreateResponseData as AG, type RolesDeleteBody as AH, type RolesDeleteParams as AI, type RolesDeleteQuery as AJ, type RolesDeleteResponse as AK, type RolesDeleteResponseData as AL, type RolesGetByIdBody as AM, type RolesGetByIdParams as AN, type RolesGetByIdQuery as AO, type RolesGetByIdResponse as AP, type RolesGetByIdResponseData as AQ, type RolesListBody as AR, type RolesListParams as AS, type RolesListQuery as AT, type RolesListResponse as AU, type RolesListResponseData as AV, type RolesUpdateBody as AW, type RolesUpdateParams as AX, type RolesUpdateQuery as AY, type RolesUpdateResponse as AZ, type RolesUpdateResponseData as A_, type QuickStats as Aa, type Role as Ab, type RoleAssignment as Ac, type RoleAssignmentId as Ad, type RoleAssignmentStatus as Ae, type RoleAssignmentsCreateBody as Af, type RoleAssignmentsCreateParams as Ag, type RoleAssignmentsCreateQuery as Ah, type RoleAssignmentsCreateResponse as Ai, type RoleAssignmentsCreateResponseData as Aj, type RoleAssignmentsGetUserAssignmentsBody as Ak, type RoleAssignmentsGetUserAssignmentsParams as Al, type RoleAssignmentsGetUserAssignmentsQuery as Am, type RoleAssignmentsGetUserAssignmentsResponse as An, type RoleAssignmentsGetUserAssignmentsResponseData as Ao, type RoleAssignmentsListBody as Ap, type RoleAssignmentsListParams as Aq, type RoleAssignmentsListQuery as Ar, type RoleAssignmentsListResponse as As, type RoleAssignmentsListResponseData as At, type RoleAssignmentsRevokeBody as Au, type RoleAssignmentsRevokeParams as Av, type RoleAssignmentsRevokeQuery as Aw, type RoleAssignmentsRevokeResponse as Ax, type RoleAssignmentsRevokeResponseData as Ay, type RoleId as Az, type AppInfoManifestQuery as B, type ShippingCancelBody as B$, type SenderBrandId as B0, type SenderBrandInsert as B1, type SenderBrandSendingStatus as B2, type SenderBrandsCreateBody as B3, type SenderBrandsCreateParams as B4, type SenderBrandsCreateQuery as B5, type SenderBrandsCreateResponse as B6, type SenderBrandsCreateResponseData as B7, type SenderBrandsDeleteBody as B8, type SenderBrandsDeleteParams as B9, type SettingsListResponse as BA, type SettingsListResponseData as BB, type SettingsUpdateBody as BC, type SettingsUpdateParams as BD, type SettingsUpdateQuery as BE, type SettingsUpdateResponse as BF, type SettingsUpdateResponseData as BG, type Shipment as BH, type ShipmentId as BI, type ShipmentInsert as BJ, type ShipmentItem as BK, type ShipmentItemId as BL, type ShipmentItemInsert as BM, type ShipmentStatus as BN, type ShipmentStatusUpdate as BO, type ShipmentStatusUpdateId as BP, type ShipmentStatusUpdateInsert as BQ, type ShippingAddTrackingBody as BR, type ShippingAddTrackingParams as BS, type ShippingAddTrackingQuery as BT, type ShippingAddTrackingResponse as BU, type ShippingAddTrackingResponseData as BV, type ShippingByIdBody as BW, type ShippingByIdParams as BX, type ShippingByIdQuery as BY, type ShippingByIdResponse as BZ, type ShippingByIdResponseData as B_, type SenderBrandsDeleteQuery as Ba, type SenderBrandsDeleteResponse as Bb, type SenderBrandsDeleteResponseData as Bc, type SenderBrandsGetByIdBody as Bd, type SenderBrandsGetByIdParams as Be, type SenderBrandsGetByIdQuery as Bf, type SenderBrandsGetByIdResponse as Bg, type SenderBrandsGetByIdResponseData as Bh, type SenderBrandsListBody as Bi, type SenderBrandsListParams as Bj, type SenderBrandsListQuery as Bk, type SenderBrandsListResponse as Bl, type SenderBrandsListResponseData as Bm, type SenderBrandsSyncSendingCapabilityBody as Bn, type SenderBrandsSyncSendingCapabilityParams as Bo, type SenderBrandsSyncSendingCapabilityQuery as Bp, type SenderBrandsSyncSendingCapabilityResponse as Bq, type SenderBrandsSyncSendingCapabilityResponseData as Br, type SenderBrandsUpdateBody as Bs, type SenderBrandsUpdateParams as Bt, type SenderBrandsUpdateQuery as Bu, type SenderBrandsUpdateResponse as Bv, type SenderBrandsUpdateResponseData as Bw, type SettingsListBody as Bx, type SettingsListParams as By, type SettingsListQuery as Bz, type AppInfoManifestResponse as C, type ShippingProvidersDeactivateQuery as C$, type ShippingCancelParams as C0, type ShippingCancelQuery as C1, type ShippingCancelResponse as C2, type ShippingCancelResponseData as C3, type ShippingCreateLabelBody as C4, type ShippingCreateLabelParams as C5, type ShippingCreateLabelQuery as C6, type ShippingCreateLabelResponse as C7, type ShippingCreateLabelResponseData as C8, type ShippingCreateReturnLabelBody as C9, type ShippingProviderProductsUpdateBody as CA, type ShippingProviderProductsUpdateParams as CB, type ShippingProviderProductsUpdateQuery as CC, type ShippingProviderProductsUpdateResponse as CD, type ShippingProviderProductsUpdateResponseData as CE, type ShippingProvidersActivateBody as CF, type ShippingProvidersActivateParams as CG, type ShippingProvidersActivateQuery as CH, type ShippingProvidersActivateResponse as CI, type ShippingProvidersActivateResponseData as CJ, type ShippingProvidersByIdBody as CK, type ShippingProvidersByIdDetailsBody as CL, type ShippingProvidersByIdDetailsParams as CM, type ShippingProvidersByIdDetailsQuery as CN, type ShippingProvidersByIdDetailsResponse as CO, type ShippingProvidersByIdDetailsResponseData as CP, type ShippingProvidersByIdParams as CQ, type ShippingProvidersByIdQuery as CR, type ShippingProvidersByIdResponse as CS, type ShippingProvidersByIdResponseData as CT, type ShippingProvidersCreateBody as CU, type ShippingProvidersCreateParams as CV, type ShippingProvidersCreateQuery as CW, type ShippingProvidersCreateResponse as CX, type ShippingProvidersCreateResponseData as CY, type ShippingProvidersDeactivateBody as CZ, type ShippingProvidersDeactivateParams as C_, type ShippingCreateReturnLabelParams as Ca, type ShippingCreateReturnLabelQuery as Cb, type ShippingCreateReturnLabelResponse as Cc, type ShippingCreateReturnLabelResponseData as Cd, type ShippingOrderShipmentsBody as Ce, type ShippingOrderShipmentsParams as Cf, type ShippingOrderShipmentsQuery as Cg, type ShippingOrderShipmentsResponse as Ch, type ShippingOrderShipmentsResponseData as Ci, type ShippingProvider as Cj, type ShippingProviderApiPaths as Ck, type ShippingProviderId as Cl, type ShippingProviderInsert as Cm, type ShippingProviderProduct as Cn, type ShippingProviderProductId as Co, type ShippingProviderProductInsert as Cp, type ShippingProviderProductsCreateBody as Cq, type ShippingProviderProductsCreateParams as Cr, type ShippingProviderProductsCreateQuery as Cs, type ShippingProviderProductsCreateResponse as Ct, type ShippingProviderProductsCreateResponseData as Cu, type ShippingProviderProductsDeleteBody as Cv, type ShippingProviderProductsDeleteParams as Cw, type ShippingProviderProductsDeleteQuery as Cx, type ShippingProviderProductsDeleteResponse as Cy, type ShippingProviderProductsDeleteResponseData as Cz, type AppInfoManifestResponseData as D, type ShippingStatisticsResponseData as D$, type ShippingProvidersDeactivateResponse as D0, type ShippingProvidersDeactivateResponseData as D1, type ShippingProvidersDeleteBody as D2, type ShippingProvidersDeleteParams as D3, type ShippingProvidersDeleteQuery as D4, type ShippingProvidersDeleteResponse as D5, type ShippingProvidersDeleteResponseData as D6, type ShippingProvidersListBody as D7, type ShippingProvidersListDetailsBody as D8, type ShippingProvidersListDetailsParams as D9, type ShippingRatesByProviderQuery as DA, type ShippingRatesByProviderResponse as DB, type ShippingRatesByProviderResponseData as DC, type ShippingRatesCreateBody as DD, type ShippingRatesCreateParams as DE, type ShippingRatesCreateQuery as DF, type ShippingRatesCreateResponse as DG, type ShippingRatesCreateResponseData as DH, type ShippingRatesDeleteBody as DI, type ShippingRatesDeleteParams as DJ, type ShippingRatesDeleteQuery as DK, type ShippingRatesDeleteResponse as DL, type ShippingRatesDeleteResponseData as DM, type ShippingRatesUpdateBody as DN, type ShippingRatesUpdateParams as DO, type ShippingRatesUpdateQuery as DP, type ShippingRatesUpdateResponse as DQ, type ShippingRatesUpdateResponseData as DR, type ShippingSearchBody as DS, type ShippingSearchParams as DT, type ShippingSearchQuery as DU, type ShippingSearchResponse as DV, type ShippingSearchResponseData as DW, type ShippingStatisticsBody as DX, type ShippingStatisticsParams as DY, type ShippingStatisticsQuery as DZ, type ShippingStatisticsResponse as D_, type ShippingProvidersListDetailsQuery as Da, type ShippingProvidersListDetailsResponse as Db, type ShippingProvidersListDetailsResponseData as Dc, type ShippingProvidersListParams as Dd, type ShippingProvidersListQuery as De, type ShippingProvidersListResponse as Df, type ShippingProvidersListResponseData as Dg, type ShippingProvidersUpdateBody as Dh, type ShippingProvidersUpdateParams as Di, type ShippingProvidersUpdateQuery as Dj, type ShippingProvidersUpdateResponse as Dk, type ShippingProvidersUpdateResponseData as Dl, type ShippingRate as Dm, type ShippingRateId as Dn, type ShippingRateInsert as Do, type ShippingRateRegion as Dp, type ShippingRateRegionId as Dq, type ShippingRateRegionInsert as Dr, type ShippingRateTranslated as Ds, type ShippingRatesAddRegionBody as Dt, type ShippingRatesAddRegionParams as Du, type ShippingRatesAddRegionQuery as Dv, type ShippingRatesAddRegionResponse as Dw, type ShippingRatesAddRegionResponseData as Dx, type ShippingRatesByProviderBody as Dy, type ShippingRatesByProviderParams as Dz, type AppInfoOwnPermissionsGetBody as E, type SubscriptionsAdminCreatePlanBody as E$, type ShippingUpdateStatusBody as E0, type ShippingUpdateStatusParams as E1, type ShippingUpdateStatusQuery as E2, type ShippingUpdateStatusResponse as E3, type ShippingUpdateStatusResponseData as E4, type ShopAppPermissionValue as E5, ShopAppPermissions as E6, type ShopUser as E7, type ShopUserActivity as E8, type ShopUserActivityId as E9, type StatusChangesScheduleResponseData as EA, type StripeConfig as EB, type StripeConfigInsert as EC, type StripeCreateCheckoutSessionBody as ED, type StripeCreateCheckoutSessionParams as EE, type StripeCreateCheckoutSessionQuery as EF, type StripeCreateCheckoutSessionResponse as EG, type StripeCreateCheckoutSessionResponseData as EH, type SubscriptionEntitlementLink as EI, type SubscriptionEntitlementLinkId as EJ, type SubscriptionEntitlementLinkInsert as EK, type SubscriptionEvent as EL, type SubscriptionEventId as EM, type SubscriptionEventInsert as EN, type SubscriptionInterval as EO, type SubscriptionPlan as EP, type SubscriptionPlanId as EQ, type SubscriptionPlanInsert as ER, type SubscriptionSku as ES, type SubscriptionSkuId as ET, type SubscriptionSkuInsert as EU, type SubscriptionStatus as EV, type SubscriptionsAdminCancelBody as EW, type SubscriptionsAdminCancelParams as EX, type SubscriptionsAdminCancelQuery as EY, type SubscriptionsAdminCancelResponse as EZ, type SubscriptionsAdminCancelResponseData as E_, type ShopUserId as Ea, type SkuPlatform as Eb, type StatusChange as Ec, type StatusChangeId as Ed, type StatusChangeInsert as Ee, type StatusChangeTable as Ef, type StatusChangeTables as Eg, type StatusChangesCancelBody as Eh, type StatusChangesCancelParams as Ei, type StatusChangesCancelQuery as Ej, type StatusChangesCancelResponse as Ek, type StatusChangesCancelResponseData as El, type StatusChangesGetHistoryBody as Em, type StatusChangesGetHistoryParams as En, type StatusChangesGetHistoryQuery as Eo, type StatusChangesGetHistoryResponse as Ep, type StatusChangesGetHistoryResponseData as Eq, type StatusChangesGetPendingBody as Er, type StatusChangesGetPendingParams as Es, type StatusChangesGetPendingQuery as Et, type StatusChangesGetPendingResponse as Eu, type StatusChangesGetPendingResponseData as Ev, type StatusChangesScheduleBody as Ew, type StatusChangesScheduleParams as Ex, type StatusChangesScheduleQuery as Ey, type StatusChangesScheduleResponse as Ez, type AppInfoOwnPermissionsGetParams as F, type SubscriptionsListPlansResponseData as F$, type SubscriptionsAdminCreatePlanParams as F0, type SubscriptionsAdminCreatePlanQuery as F1, type SubscriptionsAdminCreatePlanResponse as F2, type SubscriptionsAdminCreatePlanResponseData as F3, type SubscriptionsAdminDeletePlanBody as F4, type SubscriptionsAdminDeletePlanParams as F5, type SubscriptionsAdminDeletePlanQuery as F6, type SubscriptionsAdminDeletePlanResponse as F7, type SubscriptionsAdminDeletePlanResponseData as F8, type SubscriptionsAdminExportBody as F9, type SubscriptionsAdminSearchQuery as FA, type SubscriptionsAdminSearchResponse as FB, type SubscriptionsAdminSearchResponseData as FC, type SubscriptionsAdminUpdatePlanBody as FD, type SubscriptionsAdminUpdatePlanParams as FE, type SubscriptionsAdminUpdatePlanQuery as FF, type SubscriptionsAdminUpdatePlanResponse as FG, type SubscriptionsAdminUpdatePlanResponseData as FH, type SubscriptionsChangePlanBody as FI, type SubscriptionsChangePlanParams as FJ, type SubscriptionsChangePlanQuery as FK, type SubscriptionsChangePlanResponse as FL, type SubscriptionsChangePlanResponseData as FM, type SubscriptionsGetAvailableChangesBody as FN, type SubscriptionsGetAvailableChangesParams as FO, type SubscriptionsGetAvailableChangesQuery as FP, type SubscriptionsGetAvailableChangesResponse as FQ, type SubscriptionsGetAvailableChangesResponseData as FR, type SubscriptionsGetMySubscriptionsBody as FS, type SubscriptionsGetMySubscriptionsParams as FT, type SubscriptionsGetMySubscriptionsQuery as FU, type SubscriptionsGetMySubscriptionsResponse as FV, type SubscriptionsGetMySubscriptionsResponseData as FW, type SubscriptionsListPlansBody as FX, type SubscriptionsListPlansParams as FY, type SubscriptionsListPlansQuery as FZ, type SubscriptionsListPlansResponse as F_, type SubscriptionsAdminExportParams as Fa, type SubscriptionsAdminExportQuery as Fb, type SubscriptionsAdminExportResponse as Fc, type SubscriptionsAdminExportResponseData as Fd, type SubscriptionsAdminMetricsBody as Fe, type SubscriptionsAdminMetricsParams as Ff, type SubscriptionsAdminMetricsQuery as Fg, type SubscriptionsAdminMetricsResponse as Fh, type SubscriptionsAdminMetricsResponseData as Fi, type SubscriptionsAdminPauseBody as Fj, type SubscriptionsAdminPauseParams as Fk, type SubscriptionsAdminPauseQuery as Fl, type SubscriptionsAdminPauseResponse as Fm, type SubscriptionsAdminPauseResponseData as Fn, type SubscriptionsAdminReorderPlansBody as Fo, type SubscriptionsAdminReorderPlansParams as Fp, type SubscriptionsAdminReorderPlansQuery as Fq, type SubscriptionsAdminReorderPlansResponse as Fr, type SubscriptionsAdminReorderPlansResponseData as Fs, type SubscriptionsAdminResumeBody as Ft, type SubscriptionsAdminResumeParams as Fu, type SubscriptionsAdminResumeQuery as Fv, type SubscriptionsAdminResumeResponse as Fw, type SubscriptionsAdminResumeResponseData as Fx, type SubscriptionsAdminSearchBody as Fy, type SubscriptionsAdminSearchParams as Fz, type AppInfoOwnPermissionsGetQuery as G, type TicketsCreateResponse as G$, type SubscriptionsSetCancelAtPeriodEndBody as G0, type SubscriptionsSetCancelAtPeriodEndParams as G1, type SubscriptionsSetCancelAtPeriodEndQuery as G2, type SubscriptionsSetCancelAtPeriodEndResponse as G3, type SubscriptionsSetCancelAtPeriodEndResponseData as G4, type SubscriptionsStripeConfirmCheckoutSessionBody as G5, type SubscriptionsStripeConfirmCheckoutSessionParams as G6, type SubscriptionsStripeConfirmCheckoutSessionQuery as G7, type SubscriptionsStripeConfirmCheckoutSessionResponse as G8, type SubscriptionsStripeConfirmCheckoutSessionResponseData as G9, type SuppliersPrintfulProductsListParams as GA, type SuppliersPrintfulProductsListQuery as GB, type SuppliersPrintfulProductsListResponse as GC, type SuppliersPrintfulProductsListResponseData as GD, type SuppliersPrintfulWebhookBody as GE, type SuppliersPrintfulWebhookParams as GF, type SuppliersPrintfulWebhookQuery as GG, type SuppliersPrintfulWebhookResponse as GH, type SuppliersPrintfulWebhookResponseData as GI, type SuppliersPrintfulWebhookSecuredBody as GJ, type SuppliersPrintfulWebhookSecuredParams as GK, type SuppliersPrintfulWebhookSecuredQuery as GL, type SuppliersPrintfulWebhookSecuredResponse as GM, type SuppliersPrintfulWebhookSecuredResponseData as GN, type TaxProductType as GO, type Ticket as GP, type TicketId as GQ, type TicketInsert as GR, type TicketStatus as GS, type TicketsCheckInBody as GT, type TicketsCheckInParams as GU, type TicketsCheckInQuery as GV, type TicketsCheckInResponse as GW, type TicketsCheckInResponseData as GX, type TicketsCreateBody as GY, type TicketsCreateParams as GZ, type TicketsCreateQuery as G_, type SubscriptionsStripeCreateCheckoutSessionBody as Ga, type SubscriptionsStripeCreateCheckoutSessionParams as Gb, type SubscriptionsStripeCreateCheckoutSessionQuery as Gc, type SubscriptionsStripeCreateCheckoutSessionResponse as Gd, type SubscriptionsStripeCreateCheckoutSessionResponseData as Ge, type SuppliersPrintfulOauthCallbackBody as Gf, type SuppliersPrintfulOauthCallbackParams as Gg, type SuppliersPrintfulOauthCallbackQuery as Gh, type SuppliersPrintfulOauthCallbackResponse as Gi, type SuppliersPrintfulOauthCallbackResponseData as Gj, type SuppliersPrintfulOauthConnectBody as Gk, type SuppliersPrintfulOauthConnectParams as Gl, type SuppliersPrintfulOauthConnectQuery as Gm, type SuppliersPrintfulOauthConnectResponse as Gn, type SuppliersPrintfulOauthConnectResponseData as Go, type SuppliersPrintfulOauthDisconnectBody as Gp, type SuppliersPrintfulOauthDisconnectParams as Gq, type SuppliersPrintfulOauthDisconnectQuery as Gr, type SuppliersPrintfulOauthDisconnectResponse as Gs, type SuppliersPrintfulOauthDisconnectResponseData as Gt, type SuppliersPrintfulOauthStatusBody as Gu, type SuppliersPrintfulOauthStatusParams as Gv, type SuppliersPrintfulOauthStatusQuery as Gw, type SuppliersPrintfulOauthStatusResponse as Gx, type SuppliersPrintfulOauthStatusResponseData as Gy, type SuppliersPrintfulProductsListBody as Gz, type AppInfoOwnPermissionsGetResponse as H, type TranslationsUpdateQuery as H$, type TicketsCreateResponseData as H0, type TicketsDeleteBody as H1, type TicketsDeleteParams as H2, type TicketsDeleteQuery as H3, type TicketsDeleteResponse as H4, type TicketsDeleteResponseData as H5, type TicketsGetByIdBody as H6, type TicketsGetByIdParams as H7, type TicketsGetByIdQuery as H8, type TicketsGetByIdResponse as H9, type TranslationsGetByItemBody as HA, type TranslationsGetByItemParams as HB, type TranslationsGetByItemQuery as HC, type TranslationsGetByItemResponse as HD, type TranslationsGetByItemResponseData as HE, type TranslationsGetByKeyBody as HF, type TranslationsGetByKeyParams as HG, type TranslationsGetByKeyQuery as HH, type TranslationsGetByKeyResponse as HI, type TranslationsGetByKeyResponseData as HJ, type TranslationsGetByLanguageAndKeyBody as HK, type TranslationsGetByLanguageAndKeyParams as HL, type TranslationsGetByLanguageAndKeyQuery as HM, type TranslationsGetByLanguageAndKeyResponse as HN, type TranslationsGetByLanguageAndKeyResponseData as HO, type TranslationsGetIncompleteBody as HP, type TranslationsGetIncompleteParams as HQ, type TranslationsGetIncompleteQuery as HR, type TranslationsGetIncompleteResponse as HS, type TranslationsGetIncompleteResponseData as HT, type TranslationsUpdateBody as HU, type TranslationsUpdateKeyBody as HV, type TranslationsUpdateKeyParams as HW, type TranslationsUpdateKeyQuery as HX, type TranslationsUpdateKeyResponse as HY, type TranslationsUpdateKeyResponseData as HZ, type TranslationsUpdateParams as H_, type TicketsGetByIdResponseData as Ha, type TicketsListBody as Hb, type TicketsListParams as Hc, type TicketsListQuery as Hd, type TicketsListResponse as He, type TicketsListResponseData as Hf, type TicketsViewPdfBody as Hg, type TicketsViewPdfParams as Hh, type TicketsViewPdfQuery as Hi, type TicketsViewPdfResponse as Hj, type TicketsViewPdfResponseData as Hk, type TranslatedTable as Hl, type Translation as Hm, type TranslationId as Hn, type TranslationKey as Ho, type TranslationKeyId as Hp, type TranslationsCreateBody as Hq, type TranslationsCreateFromPromptBody as Hr, type TranslationsCreateFromPromptParams as Hs, type TranslationsCreateFromPromptQuery as Ht, type TranslationsCreateFromPromptResponse as Hu, type TranslationsCreateFromPromptResponseData as Hv, type TranslationsCreateParams as Hw, type TranslationsCreateQuery as Hx, type TranslationsCreateResponse as Hy, type TranslationsCreateResponseData as Hz, type AppInfoOwnPermissionsGetResponseData as I, type UsageReportsGetPendingParams as I$, type TranslationsUpdateResponse as I0, type TranslationsUpdateResponseData as I1, type UnsensitiveOAuth2Client as I2, type UsageAlertChannel as I3, type UsageAlertConfig as I4, type UsageAlertConfigId as I5, type UsageAlertConfigInsert as I6, type UsageAlertHistory as I7, type UsageAlertHistoryId as I8, type UsageAlertHistoryInsert as I9, type UsageReportsDeletePricingRuleResponseData as IA, type UsageReportsGetCustomerExposureBody as IB, type UsageReportsGetCustomerExposureParams as IC, type UsageReportsGetCustomerExposureQuery as ID, type UsageReportsGetCustomerExposureResponse as IE, type UsageReportsGetCustomerExposureResponseData as IF, type UsageReportsGetCustomerReportsBody as IG, type UsageReportsGetCustomerReportsParams as IH, type UsageReportsGetCustomerReportsQuery as II, type UsageReportsGetCustomerReportsResponse as IJ, type UsageReportsGetCustomerReportsResponseData as IK, type UsageReportsGetMappingIssuesBody as IL, type UsageReportsGetMappingIssuesParams as IM, type UsageReportsGetMappingIssuesQuery as IN, type UsageReportsGetMappingIssuesResponse as IO, type UsageReportsGetMappingIssuesResponseData as IP, type UsageReportsGetOpenExposureBody as IQ, type UsageReportsGetOpenExposureParams as IR, type UsageReportsGetOpenExposureQuery as IS, type UsageReportsGetOpenExposureResponse as IT, type UsageReportsGetOpenExposureResponseData as IU, type UsageReportsGetOverviewBody as IV, type UsageReportsGetOverviewParams as IW, type UsageReportsGetOverviewQuery as IX, type UsageReportsGetOverviewResponse as IY, type UsageReportsGetOverviewResponseData as IZ, type UsageReportsGetPendingBody as I_, type UsageAlertType as Ia, type UsageOverageBillingStatus as Ib, type UsageOverageEvent as Ic, type UsageOverageEventId as Id, type UsageOverageReport as Ie, type UsageOverageReportId as If, type UsageOverageReportInsert as Ig, type UsageReportsApproveReviewBody as Ih, type UsageReportsApproveReviewParams as Ii, type UsageReportsApproveReviewQuery as Ij, type UsageReportsApproveReviewResponse as Ik, type UsageReportsApproveReviewResponseData as Il, type UsageReportsCreateAlertConfigBody as Im, type UsageReportsCreateAlertConfigParams as In, type UsageReportsCreateAlertConfigQuery as Io, type UsageReportsCreateAlertConfigResponse as Ip, type UsageReportsCreateAlertConfigResponseData as Iq, type UsageReportsCreatePricingRuleBody as Ir, type UsageReportsCreatePricingRuleParams as Is, type UsageReportsCreatePricingRuleQuery as It, type UsageReportsCreatePricingRuleResponse as Iu, type UsageReportsCreatePricingRuleResponseData as Iv, type UsageReportsDeletePricingRuleBody as Iw, type UsageReportsDeletePricingRuleParams as Ix, type UsageReportsDeletePricingRuleQuery as Iy, type UsageReportsDeletePricingRuleResponse as Iz, type AppLog as J, type UsersDeleteResponse as J$, type UsageReportsGetPendingQuery as J0, type UsageReportsGetPendingResponse as J1, type UsageReportsGetPendingResponseData as J2, type UsageReportsGetPendingReviewBody as J3, type UsageReportsGetPendingReviewParams as J4, type UsageReportsGetPendingReviewQuery as J5, type UsageReportsGetPendingReviewResponse as J6, type UsageReportsGetPendingReviewResponseData as J7, type UsageReportsListAlertConfigsBody as J8, type UsageReportsListAlertConfigsParams as J9, type UsageReportsWaiveReportResponse as JA, type UsageReportsWaiveReportResponseData as JB, type UserActivityOverviewGetBody as JC, type UserActivityOverviewGetParams as JD, type UserActivityOverviewGetQuery as JE, type UserActivityOverviewGetResponse as JF, type UserActivityOverviewGetResponseData as JG, type UserActivityUsersStatsListBody as JH, type UserActivityUsersStatsListParams as JI, type UserActivityUsersStatsListQuery as JJ, type UserActivityUsersStatsListResponse as JK, type UserActivityUsersStatsListResponseData as JL, type UserInsert as JM, type UserWithStats as JN, type UsersCreateBody as JO, type UsersCreateParams as JP, type UsersCreateQuery as JQ, type UsersCreateResponse as JR, type UsersCreateResponseData as JS, type UsersDeleteBody as JT, type UsersDeleteExternalBody as JU, type UsersDeleteExternalParams as JV, type UsersDeleteExternalQuery as JW, type UsersDeleteExternalResponse as JX, type UsersDeleteExternalResponseData as JY, type UsersDeleteParams as JZ, type UsersDeleteQuery as J_, type UsageReportsListAlertConfigsQuery as Ja, type UsageReportsListAlertConfigsResponse as Jb, type UsageReportsListAlertConfigsResponseData as Jc, type UsageReportsListAlertHistoryBody as Jd, type UsageReportsListAlertHistoryParams as Je, type UsageReportsListAlertHistoryQuery as Jf, type UsageReportsListAlertHistoryResponse as Jg, type UsageReportsListAlertHistoryResponseData as Jh, type UsageReportsListPricingRulesBody as Ji, type UsageReportsListPricingRulesParams as Jj, type UsageReportsListPricingRulesQuery as Jk, type UsageReportsListPricingRulesResponse as Jl, type UsageReportsListPricingRulesResponseData as Jm, type UsageReportsUpdateAlertConfigBody as Jn, type UsageReportsUpdateAlertConfigParams as Jo, type UsageReportsUpdateAlertConfigQuery as Jp, type UsageReportsUpdateAlertConfigResponse as Jq, type UsageReportsUpdateAlertConfigResponseData as Jr, type UsageReportsUpdatePricingRuleBody as Js, type UsageReportsUpdatePricingRuleParams as Jt, type UsageReportsUpdatePricingRuleQuery as Ju, type UsageReportsUpdatePricingRuleResponse as Jv, type UsageReportsUpdatePricingRuleResponseData as Jw, type UsageReportsWaiveReportBody as Jx, type UsageReportsWaiveReportParams as Jy, type UsageReportsWaiveReportQuery as Jz, type AppLogId as K, type VariantShipmentConfig as K$, type UsersDeleteResponseData as K0, type UsersGetByEmailBody as K1, type UsersGetByEmailParams as K2, type UsersGetByEmailQuery as K3, type UsersGetByEmailResponse as K4, type UsersGetByEmailResponseData as K5, type UsersGetByExternalUserIdBody as K6, type UsersGetByExternalUserIdParams as K7, type UsersGetByExternalUserIdQuery as K8, type UsersGetByExternalUserIdResponse as K9, type VariantEntitlementInsert as KA, type VariantEntitlementsAssignBody as KB, type VariantEntitlementsAssignParams as KC, type VariantEntitlementsAssignQuery as KD, type VariantEntitlementsAssignResponse as KE, type VariantEntitlementsAssignResponseData as KF, type VariantEntitlementsGetForVariantBody as KG, type VariantEntitlementsGetForVariantParams as KH, type VariantEntitlementsGetForVariantQuery as KI, type VariantEntitlementsGetForVariantResponse as KJ, type VariantEntitlementsGetForVariantResponseData as KK, type VariantEntitlementsGetVariantsUsingBody as KL, type VariantEntitlementsGetVariantsUsingParams as KM, type VariantEntitlementsGetVariantsUsingQuery as KN, type VariantEntitlementsGetVariantsUsingResponse as KO, type VariantEntitlementsGetVariantsUsingResponseData as KP, type VariantEntitlementsRemoveBody as KQ, type VariantEntitlementsRemoveParams as KR, type VariantEntitlementsRemoveQuery as KS, type VariantEntitlementsRemoveResponse as KT, type VariantEntitlementsRemoveResponseData as KU, type VariantFulfillmentConfig as KV, type VariantFulfillmentConfigId as KW, type VariantFulfillmentConfigInsert as KX, type VariantPhysicalProperties as KY, type VariantPhysicalPropertiesId as KZ, type VariantPhysicalPropertiesInsert as K_, type UsersGetByExternalUserIdResponseData as Ka, type UsersGetByIdBody as Kb, type UsersGetByIdParams as Kc, type UsersGetByIdQuery as Kd, type UsersGetByIdResponse as Ke, type UsersGetByIdResponseData as Kf, type UsersListBody as Kg, type UsersListParams as Kh, type UsersListQuery as Ki, type UsersListResponse as Kj, type UsersListResponseData as Kk, type UsersSearchBody as Kl, type UsersSearchParams as Km, type UsersSearchQuery as Kn, type UsersSearchResponse as Ko, type UsersSearchResponseData as Kp, type UsersUpdateExternalBody as Kq, type UsersUpdateExternalParams as Kr, type UsersUpdateExternalQuery as Ks, type UsersUpdateExternalResponse as Kt, type UsersUpdateExternalResponseData as Ku, type VariantAttribute as Kv, type VariantAttributeId as Kw, type VariantAttributeInsert as Kx, type VariantEntitlement as Ky, type VariantEntitlementId as Kz, type AppLogLevel as L, type WebhooksListQuery as L$, type VariantShipmentConfigId as L0, type VariantShipmentConfigInsert as L1, type VariantShippingConfigsCreateBody as L2, type VariantShippingConfigsCreateParams as L3, type VariantShippingConfigsCreateQuery as L4, type VariantShippingConfigsCreateResponse as L5, type VariantShippingConfigsCreateResponseData as L6, type VariantShippingConfigsDeleteBody as L7, type VariantShippingConfigsDeleteParams as L8, type VariantShippingConfigsDeleteQuery as L9, type VariantShippingPhysicalPropertiesGetResponseData as LA, type VariantShippingPhysicalPropertiesUpdateBody as LB, type VariantShippingPhysicalPropertiesUpdateParams as LC, type VariantShippingPhysicalPropertiesUpdateQuery as LD, type VariantShippingPhysicalPropertiesUpdateResponse as LE, type VariantShippingPhysicalPropertiesUpdateResponseData as LF, type VariantShippingProviderConfig as LG, type VariantShippingProviderConfigId as LH, type VariantShippingProviderConfigInsert as LI, type VariantType as LJ, type Video as LK, type VideoId as LL, type Webhook as LM, type WebhookId as LN, type WebhookStatus as LO, type WebhooksDeleteBody as LP, type WebhooksDeleteBulkBody as LQ, type WebhooksDeleteBulkParams as LR, type WebhooksDeleteBulkQuery as LS, type WebhooksDeleteBulkResponse as LT, type WebhooksDeleteBulkResponseData as LU, type WebhooksDeleteParams as LV, type WebhooksDeleteQuery as LW, type WebhooksDeleteResponse as LX, type WebhooksDeleteResponseData as LY, type WebhooksListBody as LZ, type WebhooksListParams as L_, type VariantShippingConfigsDeleteResponse as La, type VariantShippingConfigsDeleteResponseData as Lb, type VariantShippingConfigsListByVariantBody as Lc, type VariantShippingConfigsListByVariantParams as Ld, type VariantShippingConfigsListByVariantQuery as Le, type VariantShippingConfigsListByVariantResponse as Lf, type VariantShippingConfigsListByVariantResponseData as Lg, type VariantShippingConfigsUpdateBody as Lh, type VariantShippingConfigsUpdateParams as Li, type VariantShippingConfigsUpdateQuery as Lj, type VariantShippingConfigsUpdateResponse as Lk, type VariantShippingConfigsUpdateResponseData as Ll, type VariantShippingPhysicalPropertiesCreateBody as Lm, type VariantShippingPhysicalPropertiesCreateParams as Ln, type VariantShippingPhysicalPropertiesCreateQuery as Lo, type VariantShippingPhysicalPropertiesCreateResponse as Lp, type VariantShippingPhysicalPropertiesCreateResponseData as Lq, type VariantShippingPhysicalPropertiesDeleteBody as Lr, type VariantShippingPhysicalPropertiesDeleteParams as Ls, type VariantShippingPhysicalPropertiesDeleteQuery as Lt, type VariantShippingPhysicalPropertiesDeleteResponse as Lu, type VariantShippingPhysicalPropertiesDeleteResponseData as Lv, type VariantShippingPhysicalPropertiesGetBody as Lw, type VariantShippingPhysicalPropertiesGetParams as Lx, type VariantShippingPhysicalPropertiesGetQuery as Ly, type VariantShippingPhysicalPropertiesGetResponse as Lz, type AppMetricCatalog as M, type WebhooksListResponse as M0, type WebhooksListResponseData as M1, type WorkflowCreatedBy as M2, type WorkflowQueue as M3, type WorkflowQueueId as M4, type WorkflowQueueStatus as M5, apiRoutes as M6, apiRoutes_api as M7, apiRoutes_app_info as M8, apiRoutes_assigned_entitlements as M9, apiRoutes_permissions as MA, apiRoutes_product_categories as MB, apiRoutes_product_items as MC, apiRoutes_products as MD, apiRoutes_roles as ME, apiRoutes_sender_brands as MF, apiRoutes_settings as MG, apiRoutes_status_changes as MH, apiRoutes_stripe as MI, apiRoutes_subscriptions as MJ, apiRoutes_suppliers as MK, apiRoutes_tickets as ML, apiRoutes_translations as MM, apiRoutes_usage_reports as MN, apiRoutes_user_activity as MO, apiRoutes_users as MP, apiRoutes_variant_entitlements as MQ, apiRoutes_webhooks as MR, apiRoutes_attribute_assignments as Ma, apiRoutes_attribute_categories as Mb, apiRoutes_attribute_options as Mc, apiRoutes_attributes as Md, apiRoutes_b2b as Me, apiRoutes_brands as Mf, apiRoutes_credits as Mg, apiRoutes_customers as Mh, apiRoutes_data_exchange as Mi, apiRoutes_designs as Mj, apiRoutes_discount_codes as Mk, apiRoutes_entitlement_limits as Ml, apiRoutes_entitlements as Mm, apiRoutes_events as Mn, apiRoutes_external_apps as Mo, apiRoutes_fulfillment as Mp, apiRoutes_iap as Mq, apiRoutes_invoices as Mr, apiRoutes_item_variants as Ms, apiRoutes_lager_inventory as Mt, apiRoutes_logs as Mu, apiRoutes_media_sets as Mv, apiRoutes_oauth2 as Mw, apiRoutes_orders as Mx, apiRoutes_payments as My, apiRoutes_paypal as Mz, type AppMetricCatalogId as N, type AppMetricCatalogInsert as O, type AppOveragePricingRule as P, type AppOveragePricingRuleId as Q, type AppOveragePricingRuleInsert as R, type AppSettings as S, type AppSettingsId as T, type AppSettingsInsert as U, type AppSettingsType as V, type ArtifactType as W, type AssignedEntitlement as X, type AssignedEntitlementId as Y, type AssignedEntitlementInsert as Z, type AssignedEntitlementsCreateBody as _, type AddressId as a, type AttributeAssignmentsRemoveProductResponseData as a$, type AssignedEntitlementsCreateQuery as a0, type AssignedEntitlementsCreateResponse as a1, type AssignedEntitlementsCreateResponseData as a2, type AssignedEntitlementsListByCustomerBody as a3, type AssignedEntitlementsListByCustomerParams as a4, type AssignedEntitlementsListByCustomerQuery as a5, type AssignedEntitlementsListByCustomerResponse as a6, type AssignedEntitlementsListByCustomerResponseData as a7, type AssignedEntitlementsListByEntitlementBody as a8, type AssignedEntitlementsListByEntitlementParams as a9, type AttributeAssignmentsAssignVariantQuery as aA, type AttributeAssignmentsAssignVariantResponse as aB, type AttributeAssignmentsAssignVariantResponseData as aC, type AttributeAssignmentsEditItemBody as aD, type AttributeAssignmentsEditItemParams as aE, type AttributeAssignmentsEditItemQuery as aF, type AttributeAssignmentsEditItemResponse as aG, type AttributeAssignmentsEditItemResponseData as aH, type AttributeAssignmentsEditProductBody as aI, type AttributeAssignmentsEditProductParams as aJ, type AttributeAssignmentsEditProductQuery as aK, type AttributeAssignmentsEditProductResponse as aL, type AttributeAssignmentsEditProductResponseData as aM, type AttributeAssignmentsEditVariantBody as aN, type AttributeAssignmentsEditVariantParams as aO, type AttributeAssignmentsEditVariantQuery as aP, type AttributeAssignmentsEditVariantResponse as aQ, type AttributeAssignmentsEditVariantResponseData as aR, type AttributeAssignmentsRemoveItemBody as aS, type AttributeAssignmentsRemoveItemParams as aT, type AttributeAssignmentsRemoveItemQuery as aU, type AttributeAssignmentsRemoveItemResponse as aV, type AttributeAssignmentsRemoveItemResponseData as aW, type AttributeAssignmentsRemoveProductBody as aX, type AttributeAssignmentsRemoveProductParams as aY, type AttributeAssignmentsRemoveProductQuery as aZ, type AttributeAssignmentsRemoveProductResponse as a_, type AssignedEntitlementsListByEntitlementQuery as aa, type AssignedEntitlementsListByEntitlementResponse as ab, type AssignedEntitlementsListByEntitlementResponseData as ac, type AssignedEntitlementsRevokeBody as ad, type AssignedEntitlementsRevokeParams as ae, type AssignedEntitlementsRevokeQuery as af, type AssignedEntitlementsRevokeResponse as ag, type AssignedEntitlementsRevokeResponseData as ah, type AssignedEntitlementsUpdateValidityBody as ai, type AssignedEntitlementsUpdateValidityParams as aj, type AssignedEntitlementsUpdateValidityQuery as ak, type AssignedEntitlementsUpdateValidityResponse as al, type AssignedEntitlementsUpdateValidityResponseData as am, type Attribute as an, type AttributeAssignmentsAssignItemBody as ao, type AttributeAssignmentsAssignItemParams as ap, type AttributeAssignmentsAssignItemQuery as aq, type AttributeAssignmentsAssignItemResponse as ar, type AttributeAssignmentsAssignItemResponseData as as, type AttributeAssignmentsAssignProductBody as at, type AttributeAssignmentsAssignProductParams as au, type AttributeAssignmentsAssignProductQuery as av, type AttributeAssignmentsAssignProductResponse as aw, type AttributeAssignmentsAssignProductResponseData as ax, type AttributeAssignmentsAssignVariantBody as ay, type AttributeAssignmentsAssignVariantParams as az, type AddressInsert as b, type AttributesCreateParams as b$, type AttributeAssignmentsRemoveVariantBody as b0, type AttributeAssignmentsRemoveVariantParams as b1, type AttributeAssignmentsRemoveVariantQuery as b2, type AttributeAssignmentsRemoveVariantResponse as b3, type AttributeAssignmentsRemoveVariantResponseData as b4, type AttributeCategoriesCreateBody as b5, type AttributeCategoriesCreateParams as b6, type AttributeCategoriesCreateQuery as b7, type AttributeCategoriesCreateResponse as b8, type AttributeCategoriesCreateResponseData as b9, type AttributeOptionTranslated as bA, type AttributeOptionsCreateBody as bB, type AttributeOptionsCreateParams as bC, type AttributeOptionsCreateQuery as bD, type AttributeOptionsCreateResponse as bE, type AttributeOptionsCreateResponseData as bF, type AttributeOptionsDeleteBody as bG, type AttributeOptionsDeleteParams as bH, type AttributeOptionsDeleteQuery as bI, type AttributeOptionsDeleteResponse as bJ, type AttributeOptionsDeleteResponseData as bK, type AttributeOptionsListByAttributeBody as bL, type AttributeOptionsListByAttributeParams as bM, type AttributeOptionsListByAttributeQuery as bN, type AttributeOptionsListByAttributeResponse as bO, type AttributeOptionsListByAttributeResponseData as bP, type AttributeOptionsUpdateBody as bQ, type AttributeOptionsUpdateParams as bR, type AttributeOptionsUpdateQuery as bS, type AttributeOptionsUpdateResponse as bT, type AttributeOptionsUpdateResponseData as bU, type AttributeTranslated as bV, type AttributeWithOptions as bW, type AttributeWithOptionsTranslated as bX, type AttributeWithValue as bY, type AttributeWithValueTranslated as bZ, type AttributesCreateBody as b_, type AttributeCategoriesDeleteBody as ba, type AttributeCategoriesDeleteParams as bb, type AttributeCategoriesDeleteQuery as bc, type AttributeCategoriesDeleteResponse as bd, type AttributeCategoriesDeleteResponseData as be, type AttributeCategoriesListBody as bf, type AttributeCategoriesListParams as bg, type AttributeCategoriesListQuery as bh, type AttributeCategoriesListResponse as bi, type AttributeCategoriesListResponseData as bj, type AttributeCategoriesUpdateBody as bk, type AttributeCategoriesUpdateParams as bl, type AttributeCategoriesUpdateQuery as bm, type AttributeCategoriesUpdateResponse as bn, type AttributeCategoriesUpdateResponseData as bo, type AttributeCategory as bp, type AttributeCategoryId as bq, type AttributeCategoryInsert as br, type AttributeFeature as bs, type AttributeId as bt, type AttributeInputType as bu, type AttributeInsert as bv, type AttributeInsertTranslated as bw, type AttributeOption as bx, type AttributeOptionId as by, type AttributeOptionInsert as bz, type ApiEnvelope as c, type BrandsDeleteResponse as c$, type AttributesCreateQuery as c0, type AttributesCreateResponse as c1, type AttributesCreateResponseData as c2, type AttributesDeleteBody as c3, type AttributesDeleteParams as c4, type AttributesDeleteQuery as c5, type AttributesDeleteResponse as c6, type AttributesDeleteResponseData as c7, type AttributesGetByIdBody as c8, type AttributesGetByIdParams as c9, type AttributesListResponse as cA, type AttributesListResponseData as cB, type AttributesUpdateBody as cC, type AttributesUpdateParams as cD, type AttributesUpdateQuery as cE, type AttributesUpdateResponse as cF, type AttributesUpdateResponseData as cG, type B2BCheckoutSession as cH, type B2BCheckoutSessionInsert as cI, type B2bCreateCheckoutSessionBody as cJ, type B2bCreateCheckoutSessionParams as cK, type B2bCreateCheckoutSessionQuery as cL, type B2bCreateCheckoutSessionResponse as cM, type B2bCreateCheckoutSessionResponseData as cN, type Brand as cO, type BrandId as cP, type BrandInsert as cQ, type BrandKind as cR, type BrandTranslated as cS, type BrandsCreateBody as cT, type BrandsCreateParams as cU, type BrandsCreateQuery as cV, type BrandsCreateResponse as cW, type BrandsCreateResponseData as cX, type BrandsDeleteBody as cY, type BrandsDeleteParams as cZ, type BrandsDeleteQuery as c_, type AttributesGetByIdQuery as ca, type AttributesGetByIdResponse as cb, type AttributesGetByIdResponseData as cc, type AttributesGetFullBody as cd, type AttributesGetFullParams as ce, type AttributesGetFullQuery as cf, type AttributesGetFullResponse as cg, type AttributesGetFullResponseData as ch, type AttributesGetFullTranslatedBody as ci, type AttributesGetFullTranslatedParams as cj, type AttributesGetFullTranslatedQuery as ck, type AttributesGetFullTranslatedResponse as cl, type AttributesGetFullTranslatedResponseData as cm, type AttributesListBody as cn, type AttributesListFullBody as co, type AttributesListFullParams as cp, type AttributesListFullQuery as cq, type AttributesListFullResponse as cr, type AttributesListFullResponseData as cs, type AttributesListFullTranslatedBody as ct, type AttributesListFullTranslatedParams as cu, type AttributesListFullTranslatedQuery as cv, type AttributesListFullTranslatedResponse as cw, type AttributesListFullTranslatedResponseData as cx, type AttributesListParams as cy, type AttributesListQuery as cz, type ApiRequest as d, type CreditsListPoolsQuery as d$, type BrandsDeleteResponseData as d0, type BrandsGetByIdBody as d1, type BrandsGetByIdParams as d2, type BrandsGetByIdQuery as d3, type BrandsGetByIdResponse as d4, type BrandsGetByIdResponseData as d5, type BrandsGetByIdTranslatedBody as d6, type BrandsGetByIdTranslatedParams as d7, type BrandsGetByIdTranslatedQuery as d8, type BrandsGetByIdTranslatedResponse as d9, type CreditsAdjustPoolBody as dA, type CreditsAdjustPoolParams as dB, type CreditsAdjustPoolQuery as dC, type CreditsAdjustPoolResponse as dD, type CreditsAdjustPoolResponseData as dE, type CreditsBalanceBody as dF, type CreditsBalanceParams as dG, type CreditsBalanceQuery as dH, type CreditsBalanceResponse as dI, type CreditsBalanceResponseData as dJ, type CreditsConsumeBody as dK, type CreditsConsumeParams as dL, type CreditsConsumeQuery as dM, type CreditsConsumeResponse as dN, type CreditsConsumeResponseData as dO, type CreditsCreatePoolBody as dP, type CreditsCreatePoolParams as dQ, type CreditsCreatePoolQuery as dR, type CreditsCreatePoolResponse as dS, type CreditsCreatePoolResponseData as dT, type CreditsGetPoolBody as dU, type CreditsGetPoolParams as dV, type CreditsGetPoolQuery as dW, type CreditsGetPoolResponse as dX, type CreditsGetPoolResponseData as dY, type CreditsListPoolsBody as dZ, type CreditsListPoolsParams as d_, type BrandsGetByIdTranslatedResponseData as da, type BrandsListBody as db, type BrandsListParams as dc, type BrandsListQuery as dd, type BrandsListResponse as de, type BrandsListResponseData as df, type BrandsListTranslatedBody as dg, type BrandsListTranslatedParams as dh, type BrandsListTranslatedQuery as di, type BrandsListTranslatedResponse as dj, type BrandsListTranslatedResponseData as dk, type BrandsUpdateBody as dl, type BrandsUpdateParams as dm, type BrandsUpdateQuery as dn, type BrandsUpdateResponse as dp, type BrandsUpdateResponseData as dq, type ContractNotReady as dr, type CreditPool as ds, type CreditPoolId as dt, type CreditPoolInsert as du, type CreditTransaction as dv, type CreditTransactionId as dw, type CreditTransactionInsert as dx, type CreditTransactionType as dy, type CreditType as dz, type ApiResponse as e, type CustomersMergePreviewResponseData as e$, type CreditsListPoolsResponse as e0, type CreditsListPoolsResponseData as e1, type CreditsListTransactionsBody as e2, type CreditsListTransactionsParams as e3, type CreditsListTransactionsQuery as e4, type CreditsListTransactionsResponse as e5, type CreditsListTransactionsResponseData as e6, type Customer as e7, type CustomerId as e8, type CustomerIdentityLink as e9, type CustomersExecuteMergeQuery as eA, type CustomersExecuteMergeResponse as eB, type CustomersExecuteMergeResponseData as eC, type CustomersGetByIdBody as eD, type CustomersGetByIdFullBody as eE, type CustomersGetByIdFullParams as eF, type CustomersGetByIdFullQuery as eG, type CustomersGetByIdFullResponse as eH, type CustomersGetByIdFullResponseData as eI, type CustomersGetByIdParams as eJ, type CustomersGetByIdQuery as eK, type CustomersGetByIdResponse as eL, type CustomersGetByIdResponseData as eM, type CustomersGetDependenciesBody as eN, type CustomersGetDependenciesParams as eO, type CustomersGetDependenciesQuery as eP, type CustomersGetDependenciesResponse as eQ, type CustomersGetDependenciesResponseData as eR, type CustomersGetIdentityLinksBody as eS, type CustomersGetIdentityLinksParams as eT, type CustomersGetIdentityLinksQuery as eU, type CustomersGetIdentityLinksResponse as eV, type CustomersGetIdentityLinksResponseData as eW, type CustomersMergePreviewBody as eX, type CustomersMergePreviewParams as eY, type CustomersMergePreviewQuery as eZ, type CustomersMergePreviewResponse as e_, type CustomerIdentityLinkId as ea, type CustomerIdentityLinkInsert as eb, type CustomerInsert as ec, type CustomerRelation as ed, type CustomerRelationId as ee, type CustomerRelationInsert as ef, type CustomerSubscription as eg, type CustomerSubscriptionId as eh, type CustomerSubscriptionInsert as ei, type CustomersCreateRelationBody as ej, type CustomersCreateRelationParams as ek, type CustomersCreateRelationQuery as el, type CustomersCreateRelationResponse as em, type CustomersCreateRelationResponseData as en, type CustomersDeleteExternalAccountBody as eo, type CustomersDeleteExternalAccountParams as ep, type CustomersDeleteExternalAccountQuery as eq, type CustomersDeleteExternalAccountResponse as er, type CustomersDeleteExternalAccountResponseData as es, type CustomersDeleteRelationBody as et, type CustomersDeleteRelationParams as eu, type CustomersDeleteRelationQuery as ev, type CustomersDeleteRelationResponse as ew, type CustomersDeleteRelationResponseData as ex, type CustomersExecuteMergeBody as ey, type CustomersExecuteMergeParams as ez, type ApiResponseData as f, type DesignBlanksGetByDesignResponseData as f$, type CustomersMergeSuggestionsBody as f0, type CustomersMergeSuggestionsParams as f1, type CustomersMergeSuggestionsQuery as f2, type CustomersMergeSuggestionsResponse as f3, type CustomersMergeSuggestionsResponseData as f4, type CustomersSafeDeleteBody as f5, type CustomersSafeDeleteParams as f6, type CustomersSafeDeleteQuery as f7, type CustomersSafeDeleteResponse as f8, type CustomersSafeDeleteResponseData as f9, type DataExchangeColumnDefinition as fA, type DataExchangeColumnType as fB, type DataExchangeId as fC, type DataExchangeInsert as fD, type DataExchangeMapping as fE, type DataExchangeStatus as fF, type DataExchangeTable as fG, type DataExchangeTableConfig as fH, type DataExchangeTableId as fI, type Design as fJ, type DesignBlankCompatibility as fK, type DesignBlankCompatibilityId as fL, type DesignBlankCompatibilityInsert as fM, type DesignBlanksAttachBody as fN, type DesignBlanksAttachParams as fO, type DesignBlanksAttachQuery as fP, type DesignBlanksAttachResponse as fQ, type DesignBlanksAttachResponseData as fR, type DesignBlanksDetachBody as fS, type DesignBlanksDetachParams as fT, type DesignBlanksDetachQuery as fU, type DesignBlanksDetachResponse as fV, type DesignBlanksDetachResponseData as fW, type DesignBlanksGetByDesignBody as fX, type DesignBlanksGetByDesignParams as fY, type DesignBlanksGetByDesignQuery as fZ, type DesignBlanksGetByDesignResponse as f_, type CustomersSearchBody as fa, type CustomersSearchParams as fb, type CustomersSearchQuery as fc, type CustomersSearchResponse as fd, type CustomersSearchResponseData as fe, type CustomersUpdateBody as ff, type CustomersUpdateParams as fg, type CustomersUpdatePayAsYouGoBody as fh, type CustomersUpdatePayAsYouGoParams as fi, type CustomersUpdatePayAsYouGoQuery as fj, type CustomersUpdatePayAsYouGoResponse as fk, type CustomersUpdatePayAsYouGoResponseData as fl, type CustomersUpdateQuery as fm, type CustomersUpdateResponse as fn, type CustomersUpdateResponseData as fo, type CustomersUpsertExternalAccountBody as fp, type CustomersUpsertExternalAccountParams as fq, type CustomersUpsertExternalAccountQuery as fr, type CustomersUpsertExternalAccountResponse as fs, type CustomersUpsertExternalAccountResponseData as ft, type DELETEApiAmpProxyKeyBody as fu, type DELETEApiAmpProxyKeyParams as fv, type DELETEApiAmpProxyKeyQuery as fw, type DELETEApiAmpProxyKeyResponse as fx, type DELETEApiAmpProxyKeyResponseData as fy, type DataExchange as fz, type ApiRoute as g, type DesignsUpdateQuery as g$, type DesignBlanksGetByProductItemBody as g0, type DesignBlanksGetByProductItemParams as g1, type DesignBlanksGetByProductItemQuery as g2, type DesignBlanksGetByProductItemResponse as g3, type DesignBlanksGetByProductItemResponseData as g4, type DesignColorVariant as g5, type DesignColorVariantId as g6, type DesignColorVariantInsert as g7, type DesignColorVariantsCreateBody as g8, type DesignColorVariantsCreateParams as g9, type DesignsDeleteBody as gA, type DesignsDeleteParams as gB, type DesignsDeleteQuery as gC, type DesignsDeleteResponse as gD, type DesignsDeleteResponseData as gE, type DesignsGetByIdBody as gF, type DesignsGetByIdParams as gG, type DesignsGetByIdQuery as gH, type DesignsGetByIdResponse as gI, type DesignsGetByIdResponseData as gJ, type DesignsGetByIdTranslatedBody as gK, type DesignsGetByIdTranslatedParams as gL, type DesignsGetByIdTranslatedQuery as gM, type DesignsGetByIdTranslatedResponse as gN, type DesignsGetByIdTranslatedResponseData as gO, type DesignsListBody as gP, type DesignsListParams as gQ, type DesignsListQuery as gR, type DesignsListResponse as gS, type DesignsListResponseData as gT, type DesignsListTranslatedBody as gU, type DesignsListTranslatedParams as gV, type DesignsListTranslatedQuery as gW, type DesignsListTranslatedResponse as gX, type DesignsListTranslatedResponseData as gY, type DesignsUpdateBody as gZ, type DesignsUpdateParams as g_, type DesignColorVariantsCreateQuery as ga, type DesignColorVariantsCreateResponse as gb, type DesignColorVariantsCreateResponseData as gc, type DesignColorVariantsDeleteBody as gd, type DesignColorVariantsDeleteParams as ge, type DesignColorVariantsDeleteQuery as gf, type DesignColorVariantsDeleteResponse as gg, type DesignColorVariantsDeleteResponseData as gh, type DesignColorVariantsGetByDesignBody as gi, type DesignColorVariantsGetByDesignParams as gj, type DesignColorVariantsGetByDesignQuery as gk, type DesignColorVariantsGetByDesignResponse as gl, type DesignColorVariantsGetByDesignResponseData as gm, type DesignColorVariantsUpdateBody as gn, type DesignColorVariantsUpdateParams as go, type DesignColorVariantsUpdateQuery as gp, type DesignColorVariantsUpdateResponse as gq, type DesignColorVariantsUpdateResponseData as gr, type DesignId as gs, type DesignInsert as gt, type DesignTranslated as gu, type DesignsCreateBody as gv, type DesignsCreateParams as gw, type DesignsCreateQuery as gx, type DesignsCreateResponse as gy, type DesignsCreateResponseData as gz, type ApiRouteKey as h, type EntitlementLimitsCreateBody as h$, type DesignsUpdateResponse as h0, type DesignsUpdateResponseData as h1, type DigitalType as h2, type DiscountCode as h3, type DiscountCodeDuration as h4, type DiscountCodeId as h5, type DiscountCodeInsert as h6, type DiscountCodeRedemption as h7, type DiscountCodeRedemptionId as h8, type DiscountCodeRedemptionInsert as h9, type DiscountCodesAdminReactivateQuery as hA, type DiscountCodesAdminReactivateResponse as hB, type DiscountCodesAdminReactivateResponseData as hC, type DiscountCodesAdminRedemptionsBody as hD, type DiscountCodesAdminRedemptionsParams as hE, type DiscountCodesAdminRedemptionsQuery as hF, type DiscountCodesAdminRedemptionsResponse as hG, type DiscountCodesAdminRedemptionsResponseData as hH, type DiscountCodesAdminSearchBody as hI, type DiscountCodesAdminSearchParams as hJ, type DiscountCodesAdminSearchQuery as hK, type DiscountCodesAdminSearchResponse as hL, type DiscountCodesAdminSearchResponseData as hM, type DiscountCodesAdminUpdateBody as hN, type DiscountCodesAdminUpdateParams as hO, type DiscountCodesAdminUpdateQuery as hP, type DiscountCodesAdminUpdateResponse as hQ, type DiscountCodesAdminUpdateResponseData as hR, type DiscountCodesValidateBody as hS, type DiscountCodesValidateParams as hT, type DiscountCodesValidateQuery as hU, type DiscountCodesValidateResponse as hV, type DiscountCodesValidateResponseData as hW, type EmailStatus as hX, type EntitlementLimitConfig as hY, type EntitlementLimitConfigId as hZ, type EntitlementLimitConfigInsert as h_, type DiscountCodeScope as ha, type DiscountCodeType as hb, type DiscountCodeVariant as hc, type DiscountCodeVariantInsert as hd, type DiscountCodesAdminCreateBody as he, type DiscountCodesAdminCreateParams as hf, type DiscountCodesAdminCreateQuery as hg, type DiscountCodesAdminCreateResponse as hh, type DiscountCodesAdminCreateResponseData as hi, type DiscountCodesAdminDeactivateBody as hj, type DiscountCodesAdminDeactivateParams as hk, type DiscountCodesAdminDeactivateQuery as hl, type DiscountCodesAdminDeactivateResponse as hm, type DiscountCodesAdminDeactivateResponseData as hn, type DiscountCodesAdminDeleteBody as ho, type DiscountCodesAdminDeleteParams as hp, type DiscountCodesAdminDeleteQuery as hq, type DiscountCodesAdminDeleteResponse as hr, type DiscountCodesAdminDeleteResponseData as hs, type DiscountCodesAdminGetByIdBody as ht, type DiscountCodesAdminGetByIdParams as hu, type DiscountCodesAdminGetByIdQuery as hv, type DiscountCodesAdminGetByIdResponse as hw, type DiscountCodesAdminGetByIdResponseData as hx, type DiscountCodesAdminReactivateBody as hy, type DiscountCodesAdminReactivateParams as hz, type AppEntitlementType as i, type EventsAssignVariantsBody as i$, type EntitlementLimitsCreateParams as i0, type EntitlementLimitsCreateQuery as i1, type EntitlementLimitsCreateResponse as i2, type EntitlementLimitsCreateResponseData as i3, type EntitlementLimitsDeleteBody as i4, type EntitlementLimitsDeleteParams as i5, type EntitlementLimitsDeleteQuery as i6, type EntitlementLimitsDeleteResponse as i7, type EntitlementLimitsDeleteResponseData as i8, type EntitlementLimitsListBody as i9, type EntitlementsGetAssignedParams as iA, type EntitlementsGetAssignedQuery as iB, type EntitlementsGetAssignedResponse as iC, type EntitlementsGetAssignedResponseData as iD, type EntitlementsGetByIdBody as iE, type EntitlementsGetByIdParams as iF, type EntitlementsGetByIdQuery as iG, type EntitlementsGetByIdResponse as iH, type EntitlementsGetByIdResponseData as iI, type EntitlementsGetUserEntitlementsBody as iJ, type EntitlementsGetUserEntitlementsParams as iK, type EntitlementsGetUserEntitlementsQuery as iL, type EntitlementsGetUserEntitlementsResponse as iM, type EntitlementsGetUserEntitlementsResponseData as iN, type EntitlementsListBody as iO, type EntitlementsListParams as iP, type EntitlementsListQuery as iQ, type EntitlementsListResponse as iR, type EntitlementsListResponseData as iS, type Event as iT, type EventId as iU, type EventInsert as iV, type EventStatus as iW, type EventTranslated as iX, type EventVariant as iY, type EventVariantId as iZ, type EventVariantInsert as i_, type EntitlementLimitsListParams as ia, type EntitlementLimitsListQuery as ib, type EntitlementLimitsListResponse as ic, type EntitlementLimitsListResponseData as id, type EntitlementLimitsResolveBody as ie, type EntitlementLimitsResolveParams as ig, type EntitlementLimitsResolveQuery as ih, type EntitlementLimitsResolveResponse as ii, type EntitlementLimitsResolveResponseData as ij, type EntitlementLimitsUpdateBody as ik, type EntitlementLimitsUpdateParams as il, type EntitlementLimitsUpdateQuery as im, type EntitlementLimitsUpdateResponse as io, type EntitlementLimitsUpdateResponseData as ip, type EntitlementSyncLink as iq, type EntitlementSyncLinkId as ir, type EntitlementSyncOperation as is, type EntitlementSyncType as it, type EntitlementsGetAllBody as iu, type EntitlementsGetAllParams as iv, type EntitlementsGetAllQuery as iw, type EntitlementsGetAllResponse as ix, type EntitlementsGetAllResponseData as iy, type EntitlementsGetAssignedBody as iz, type AppInfoFiltersGetBody as j, type EventsLocationsDeleteResponseData as j$, type EventsAssignVariantsParams as j0, type EventsAssignVariantsQuery as j1, type EventsAssignVariantsResponse as j2, type EventsAssignVariantsResponseData as j3, type EventsCreateBody as j4, type EventsCreateParams as j5, type EventsCreateQuery as j6, type EventsCreateResponse as j7, type EventsCreateResponseData as j8, type EventsDeleteBody as j9, type EventsGetByIdQuery as jA, type EventsGetByIdResponse as jB, type EventsGetByIdResponseData as jC, type EventsListBody as jD, type EventsListByVariantBody as jE, type EventsListByVariantParams as jF, type EventsListByVariantQuery as jG, type EventsListByVariantResponse as jH, type EventsListByVariantResponseData as jI, type EventsListParams as jJ, type EventsListQuery as jK, type EventsListResponse as jL, type EventsListResponseData as jM, type EventsListVariantsBody as jN, type EventsListVariantsParams as jO, type EventsListVariantsQuery as jP, type EventsListVariantsResponse as jQ, type EventsListVariantsResponseData as jR, type EventsLocationsCreateBody as jS, type EventsLocationsCreateParams as jT, type EventsLocationsCreateQuery as jU, type EventsLocationsCreateResponse as jV, type EventsLocationsCreateResponseData as jW, type EventsLocationsDeleteBody as jX, type EventsLocationsDeleteParams as jY, type EventsLocationsDeleteQuery as jZ, type EventsLocationsDeleteResponse as j_, type EventsDeleteParams as ja, type EventsDeleteQuery as jb, type EventsDeleteResponse as jc, type EventsDeleteResponseData as jd, type EventsExternalCreateBody as je, type EventsExternalCreateParams as jf, type EventsExternalCreateQuery as jg, type EventsExternalCreateResponse as jh, type EventsExternalCreateResponseData as ji, type EventsExternalDeleteBody as jj, type EventsExternalDeleteParams as jk, type EventsExternalDeleteQuery as jl, type EventsExternalDeleteResponse as jm, type EventsExternalDeleteResponseData as jn, type EventsExternalGetByIdBody as jo, type EventsExternalGetByIdParams as jp, type EventsExternalGetByIdQuery as jq, type EventsExternalGetByIdResponse as jr, type EventsExternalGetByIdResponseData as js, type EventsExternalUpdateBody as jt, type EventsExternalUpdateParams as ju, type EventsExternalUpdateQuery as jv, type EventsExternalUpdateResponse as jw, type EventsExternalUpdateResponseData as jx, type EventsGetByIdBody as jy, type EventsGetByIdParams as jz, type AppInfoFiltersGetParams as k, type ExternalAppsFetchUsageOveragesResponseData as k$, type EventsLocationsExternalCreateBody as k0, type EventsLocationsExternalCreateParams as k1, type EventsLocationsExternalCreateQuery as k2, type EventsLocationsExternalCreateResponse as k3, type EventsLocationsExternalCreateResponseData as k4, type EventsLocationsExternalDeleteBody as k5, type EventsLocationsExternalDeleteParams as k6, type EventsLocationsExternalDeleteQuery as k7, type EventsLocationsExternalDeleteResponse as k8, type EventsLocationsExternalDeleteResponseData as k9, type EventsUpdateParams as kA, type EventsUpdateQuery as kB, type EventsUpdateResponse as kC, type EventsUpdateResponseData as kD, type ExternalApp as kE, type ExternalAppAuthMethod as kF, type ExternalAppId as kG, type ExternalAppInsert as kH, type ExternalAppsCreateBody as kI, type ExternalAppsCreateParams as kJ, type ExternalAppsCreateQuery as kK, type ExternalAppsCreateResponse as kL, type ExternalAppsCreateResponseData as kM, type ExternalAppsDeleteBody as kN, type ExternalAppsDeleteParams as kO, type ExternalAppsDeleteQuery as kP, type ExternalAppsDeleteResponse as kQ, type ExternalAppsDeleteResponseData as kR, type ExternalAppsFetchEntitlementsBody as kS, type ExternalAppsFetchEntitlementsParams as kT, type ExternalAppsFetchEntitlementsQuery as kU, type ExternalAppsFetchEntitlementsResponse as kV, type ExternalAppsFetchEntitlementsResponseData as kW, type ExternalAppsFetchUsageOveragesBody as kX, type ExternalAppsFetchUsageOveragesParams as kY, type ExternalAppsFetchUsageOveragesQuery as kZ, type ExternalAppsFetchUsageOveragesResponse as k_, type EventsLocationsExternalUpdateBody as ka, type EventsLocationsExternalUpdateParams as kb, type EventsLocationsExternalUpdateQuery as kc, type EventsLocationsExternalUpdateResponse as kd, type EventsLocationsExternalUpdateResponseData as ke, type EventsLocationsGetByIdBody as kf, type EventsLocationsGetByIdParams as kg, type EventsLocationsGetByIdQuery as kh, type EventsLocationsGetByIdResponse as ki, type EventsLocationsGetByIdResponseData as kj, type EventsLocationsListBody as kk, type EventsLocationsListParams as kl, type EventsLocationsListQuery as km, type EventsLocationsListResponse as kn, type EventsLocationsListResponseData as ko, type EventsLocationsUpdateBody as kp, type EventsLocationsUpdateParams as kq, type EventsLocationsUpdateQuery as kr, type EventsLocationsUpdateResponse as ks, type EventsLocationsUpdateResponseData as kt, type EventsRevokeVariantBody as ku, type EventsRevokeVariantParams as kv, type EventsRevokeVariantQuery as kw, type EventsRevokeVariantResponse as kx, type EventsRevokeVariantResponseData as ky, type EventsUpdateBody as kz, type AppInfoFiltersGetQuery as l, type ExternalOrderId as l$, type ExternalAppsGeneratePublicKeyBody as l0, type ExternalAppsGeneratePublicKeyParams as l1, type ExternalAppsGeneratePublicKeyQuery as l2, type ExternalAppsGeneratePublicKeyResponse as l3, type ExternalAppsGeneratePublicKeyResponseData as l4, type ExternalAppsGetAllMetricCatalogsBody as l5, type ExternalAppsGetAllMetricCatalogsParams as l6, type ExternalAppsGetAllMetricCatalogsQuery as l7, type ExternalAppsGetAllMetricCatalogsResponse as l8, type ExternalAppsGetAllMetricCatalogsResponseData as l9, type ExternalAppsServiceUpdateParams as lA, type ExternalAppsServiceUpdateQuery as lB, type ExternalAppsServiceUpdateResponse as lC, type ExternalAppsServiceUpdateResponseData as lD, type ExternalAppsSyncManifestBody as lE, type ExternalAppsSyncManifestParams as lF, type ExternalAppsSyncManifestQuery as lG, type ExternalAppsSyncManifestResponse as lH, type ExternalAppsSyncManifestResponseData as lI, type ExternalAppsUpdateBody as lJ, type ExternalAppsUpdateParams as lK, type ExternalAppsUpdateQuery as lL, type ExternalAppsUpdateResponse as lM, type ExternalAppsUpdateResponseData as lN, type ExternalAppsValidateEntitlementBody as lO, type ExternalAppsValidateEntitlementParams as lP, type ExternalAppsValidateEntitlementQuery as lQ, type ExternalAppsValidateEntitlementResponse as lR, type ExternalAppsValidateEntitlementResponseData as lS, type ExternalCustomer as lT, type ExternalCustomerAppLink as lU, type ExternalCustomerId as lV, type ExternalCustomerInsert as lW, type ExternalEntitlement as lX, type ExternalEntitlementId as lY, type ExternalEntitlementInsert as lZ, type ExternalOrder as l_, type ExternalAppsGetMetricCatalogBody as la, type ExternalAppsGetMetricCatalogParams as lb, type ExternalAppsGetMetricCatalogQuery as lc, type ExternalAppsGetMetricCatalogResponse as ld, type ExternalAppsGetMetricCatalogResponseData as le, type ExternalAppsListBody as lf, type ExternalAppsListParams as lg, type ExternalAppsListQuery as lh, type ExternalAppsListResponse as li, type ExternalAppsListResponseData as lj, type ExternalAppsServiceDeleteBody as lk, type ExternalAppsServiceDeleteParams as ll, type ExternalAppsServiceDeleteQuery as lm, type ExternalAppsServiceDeleteResponse as ln, type ExternalAppsServiceDeleteResponseData as lo, type ExternalAppsServiceRegisterBody as lp, type ExternalAppsServiceRegisterParams as lq, type ExternalAppsServiceRegisterQuery as lr, type ExternalAppsServiceRegisterResponse as ls, type ExternalAppsServiceRegisterResponseData as lt, type ExternalAppsServiceStatusBody as lu, type ExternalAppsServiceStatusParams as lv, type ExternalAppsServiceStatusQuery as lw, type ExternalAppsServiceStatusResponse as lx, type ExternalAppsServiceStatusResponseData as ly, type ExternalAppsServiceUpdateBody as lz, type AppInfoFiltersGetResponse as m, type FulfillmentVariantConfigDeleteParams as m$, type ExternalOrderStatus as m0, type ExternalShipment as m1, type ExternalShipmentId as m2, type FulfillmentArtifact as m3, type FulfillmentArtifactId as m4, type FulfillmentArtifactInsert as m5, type FulfillmentArtifactsBody as m6, type FulfillmentArtifactsParams as m7, type FulfillmentArtifactsQuery as m8, type FulfillmentArtifactsResponse as m9, type FulfillmentProvider as mA, type FulfillmentRecord as mB, type FulfillmentRecordId as mC, type FulfillmentRecordInsert as mD, type FulfillmentRetryBody as mE, type FulfillmentRetryParams as mF, type FulfillmentRetryQuery as mG, type FulfillmentRetryResponse as mH, type FulfillmentRetryResponseData as mI, type FulfillmentStatsBody as mJ, type FulfillmentStatsParams as mK, type FulfillmentStatsQuery as mL, type FulfillmentStatsResponse as mM, type FulfillmentStatsResponseData as mN, type FulfillmentStatus as mO, type FulfillmentType as mP, type FulfillmentVariantConfigByIdBody as mQ, type FulfillmentVariantConfigByIdParams as mR, type FulfillmentVariantConfigByIdQuery as mS, type FulfillmentVariantConfigByIdResponse as mT, type FulfillmentVariantConfigByIdResponseData as mU, type FulfillmentVariantConfigCreateBody as mV, type FulfillmentVariantConfigCreateParams as mW, type FulfillmentVariantConfigCreateQuery as mX, type FulfillmentVariantConfigCreateResponse as mY, type FulfillmentVariantConfigCreateResponseData as mZ, type FulfillmentVariantConfigDeleteBody as m_, type FulfillmentArtifactsResponseData as ma, type FulfillmentByIdBody as mb, type FulfillmentByIdParams as mc, type FulfillmentByIdQuery as md, type FulfillmentByIdResponse as me, type FulfillmentByIdResponseData as mf, type FulfillmentCancelBody as mg, type FulfillmentCancelParams as mh, type FulfillmentCancelQuery as mi, type FulfillmentCancelResponse as mj, type FulfillmentCancelResponseData as mk, type FulfillmentFailedBody as ml, type FulfillmentFailedParams as mm, type FulfillmentFailedQuery as mn, type FulfillmentFailedResponse as mo, type FulfillmentFailedResponseData as mp, type FulfillmentItemBody as mq, type FulfillmentItemParams as mr, type FulfillmentItemQuery as ms, type FulfillmentItemResponse as mt, type FulfillmentItemResponseData as mu, type FulfillmentOrderBody as mv, type FulfillmentOrderParams as mw, type FulfillmentOrderQuery as mx, type FulfillmentOrderResponse as my, type FulfillmentOrderResponseData as mz, type AppInfoFiltersGetResponseData as n, type IapAdminHealthParams as n$, type FulfillmentVariantConfigDeleteQuery as n0, type FulfillmentVariantConfigDeleteResponse as n1, type FulfillmentVariantConfigDeleteResponseData as n2, type FulfillmentVariantConfigStatsBody as n3, type FulfillmentVariantConfigStatsParams as n4, type FulfillmentVariantConfigStatsQuery as n5, type FulfillmentVariantConfigStatsResponse as n6, type FulfillmentVariantConfigStatsResponseData as n7, type FulfillmentVariantConfigUpdateBody as n8, type FulfillmentVariantConfigUpdateParams as n9, type GETApiAmpProxyKeyResponseData as nA, type GETDataExchangeExchangeHistoryTableIdBody as nB, type GETDataExchangeExchangeHistoryTableIdParams as nC, type GETDataExchangeExchangeHistoryTableIdQuery as nD, type GETDataExchangeExchangeHistoryTableIdResponse as nE, type GETDataExchangeExchangeHistoryTableIdResponseData as nF, type GETDataExchangeExchangeTemplateTableIdBody as nG, type GETDataExchangeExchangeTemplateTableIdParams as nH, type GETDataExchangeExchangeTemplateTableIdQuery as nI, type GETDataExchangeExchangeTemplateTableIdResponse as nJ, type GETDataExchangeExchangeTemplateTableIdResponseData as nK, type GETDataExchangeTablesGetAllBody as nL, type GETDataExchangeTablesGetAllFullBody as nM, type GETDataExchangeTablesGetAllFullParams as nN, type GETDataExchangeTablesGetAllFullQuery as nO, type GETDataExchangeTablesGetAllFullResponse as nP, type GETDataExchangeTablesGetAllFullResponseData as nQ, type GETDataExchangeTablesGetAllParams as nR, type GETDataExchangeTablesGetAllQuery as nS, type GETDataExchangeTablesGetAllResponse as nT, type GETDataExchangeTablesGetAllResponseData as nU, type GETDataExchangeTablesGetDataTableIdBody as nV, type GETDataExchangeTablesGetDataTableIdParams as nW, type GETDataExchangeTablesGetDataTableIdQuery as nX, type GETDataExchangeTablesGetDataTableIdResponse as nY, type GETDataExchangeTablesGetDataTableIdResponseData as nZ, type IapAdminHealthBody as n_, type FulfillmentVariantConfigUpdateQuery as na, type FulfillmentVariantConfigUpdateResponse as nb, type FulfillmentVariantConfigUpdateResponseData as nc, type FullAttribute as nd, type FullAttributeTranslated as ne, type FullCustomer as nf, type FullFulfillmentRecord as ng, type FullPayment as nh, type FullProduct as ni, type FullProductItem as nj, type FullProductItemTranslated as nk, type FullProductTranslated as nl, type FullShipmentConfig as nm, type FullShipmentConfigTranslated as nn, type FullShippmentProvider as no, type FullVariant as np, type FullVariantTranslated as nq, type GETApiAmpProxyDiscoverBody as nr, type GETApiAmpProxyDiscoverParams as ns, type GETApiAmpProxyDiscoverQuery as nt, type GETApiAmpProxyDiscoverResponse as nu, type GETApiAmpProxyDiscoverResponseData as nv, type GETApiAmpProxyKeyBody as nw, type GETApiAmpProxyKeyParams as nx, type GETApiAmpProxyKeyQuery as ny, type GETApiAmpProxyKeyResponse as nz, type AppInfoGetBody as o, type InvoicesPendingQuery as o$, type IapAdminHealthQuery as o0, type IapAdminHealthResponse as o1, type IapAdminHealthResponseData as o2, type IapAdminReconcileAllBody as o3, type IapAdminReconcileAllParams as o4, type IapAdminReconcileAllQuery as o5, type IapAdminReconcileAllResponse as o6, type IapAdminReconcileAllResponseData as o7, type IapAdminResyncBody as o8, type IapAdminResyncParams as o9, type InvoicesDeleteBody as oA, type InvoicesDeleteParams as oB, type InvoicesDeleteQuery as oC, type InvoicesDeleteResponse as oD, type InvoicesDeleteResponseData as oE, type InvoicesDownloadPdfBody as oF, type InvoicesDownloadPdfParams as oG, type InvoicesDownloadPdfQuery as oH, type InvoicesDownloadPdfResponse as oI, type InvoicesDownloadPdfResponseData as oJ, type InvoicesGeneratePdfBody as oK, type InvoicesGeneratePdfParams as oL, type InvoicesGeneratePdfQuery as oM, type InvoicesGeneratePdfResponse as oN, type InvoicesGeneratePdfResponseData as oO, type InvoicesGetByIdBody as oP, type InvoicesGetByIdParams as oQ, type InvoicesGetByIdQuery as oR, type InvoicesGetByIdResponse as oS, type InvoicesGetByIdResponseData as oT, type InvoicesOverdueBody as oU, type InvoicesOverdueParams as oV, type InvoicesOverdueQuery as oW, type InvoicesOverdueResponse as oX, type InvoicesOverdueResponseData as oY, type InvoicesPendingBody as oZ, type InvoicesPendingParams as o_, type IapAdminResyncQuery as oa, type IapAdminResyncResponse as ob, type IapAdminResyncResponseData as oc, type IapListProductsBody as od, type IapListProductsParams as oe, type IapListProductsQuery as of, type IapListProductsResponse as og, type IapListProductsResponseData as oh, type IapSubscriptionState as oi, type IapSubscriptionStateId as oj, type IapSubscriptionStateInsert as ok, type Image as ol, type ImageId as om, type InventoryReservation as on, type InventoryReservationId as oo, type InventoryReservationStatus as op, type InventoryTransaction as oq, type InventoryTransactionId as or, type InventoryTransactionType as os, type Invoice as ot, type InvoiceId as ou, type InvoiceInsert as ov, type InvoiceLineItem as ow, type InvoiceLineItemId as ox, type InvoiceLineItemInsert as oy, type InvoiceStatus as oz, type AppInfoGetParams as p, type ItemVariantsGetByItemResponseData as p$, type InvoicesPendingResponse as p0, type InvoicesPendingResponseData as p1, type InvoicesRevenueReportBody as p2, type InvoicesRevenueReportParams as p3, type InvoicesRevenueReportQuery as p4, type InvoicesRevenueReportResponse as p5, type InvoicesRevenueReportResponseData as p6, type InvoicesSearchBody as p7, type InvoicesSearchParams as p8, type InvoicesSearchQuery as p9, type ItemVariantsCreatePhysicalPropertiesBody as pA, type ItemVariantsCreatePhysicalPropertiesParams as pB, type ItemVariantsCreatePhysicalPropertiesQuery as pC, type ItemVariantsCreatePhysicalPropertiesResponse as pD, type ItemVariantsCreatePhysicalPropertiesResponseData as pE, type ItemVariantsCreateQuery as pF, type ItemVariantsCreateResponse as pG, type ItemVariantsCreateResponseData as pH, type ItemVariantsDeleteBody as pI, type ItemVariantsDeleteParams as pJ, type ItemVariantsDeletePhysicalPropertiesBody as pK, type ItemVariantsDeletePhysicalPropertiesParams as pL, type ItemVariantsDeletePhysicalPropertiesQuery as pM, type ItemVariantsDeletePhysicalPropertiesResponse as pN, type ItemVariantsDeletePhysicalPropertiesResponseData as pO, type ItemVariantsDeleteQuery as pP, type ItemVariantsDeleteResponse as pQ, type ItemVariantsDeleteResponseData as pR, type ItemVariantsGetByItemBody as pS, type ItemVariantsGetByItemFullBody as pT, type ItemVariantsGetByItemFullParams as pU, type ItemVariantsGetByItemFullQuery as pV, type ItemVariantsGetByItemFullResponse as pW, type ItemVariantsGetByItemFullResponseData as pX, type ItemVariantsGetByItemParams as pY, type ItemVariantsGetByItemQuery as pZ, type ItemVariantsGetByItemResponse as p_, type InvoicesSearchResponse as pa, type InvoicesSearchResponseData as pb, type InvoicesUpdateStatusBody as pc, type InvoicesUpdateStatusParams as pd, type InvoicesUpdateStatusQuery as pe, type InvoicesUpdateStatusResponse as pf, type InvoicesUpdateStatusResponseData as pg, type InvoicesViewPdfBody as ph, type InvoicesViewPdfParams as pi, type InvoicesViewPdfQuery as pj, type InvoicesViewPdfResponse as pk, type InvoicesViewPdfResponseData as pl, type ItemVariantGroup as pm, type ItemVariantType as pn, type ItemVariantsAdminSearchBody as po, type ItemVariantsAdminSearchParams as pp, type ItemVariantsAdminSearchQuery as pq, type ItemVariantsAdminSearchResponse as pr, type ItemVariantsAdminSearchResponseData as ps, type ItemVariantsAdminSearchTranslatedBody as pt, type ItemVariantsAdminSearchTranslatedParams as pu, type ItemVariantsAdminSearchTranslatedQuery as pv, type ItemVariantsAdminSearchTranslatedResponse as pw, type ItemVariantsAdminSearchTranslatedResponseData as px, type ItemVariantsCreateBody as py, type ItemVariantsCreateParams as pz, type AppInfoGetQuery as q, type LagerInventoryToggleUnlimitedByInventoryResponse as q$, type ItemVariantsMassDeleteBody as q0, type ItemVariantsMassDeleteParams as q1, type ItemVariantsMassDeleteQuery as q2, type ItemVariantsMassDeleteResponse as q3, type ItemVariantsMassDeleteResponseData as q4, type ItemVariantsUpdateBody as q5, type ItemVariantsUpdateParams as q6, type ItemVariantsUpdatePhysicalPropertiesBody as q7, type ItemVariantsUpdatePhysicalPropertiesParams as q8, type ItemVariantsUpdatePhysicalPropertiesQuery as q9, type LagerInventoryId as qA, type LagerInventoryListBody as qB, type LagerInventoryListParams as qC, type LagerInventoryListQuery as qD, type LagerInventoryListResponse as qE, type LagerInventoryListResponseData as qF, type LagerInventoryLocation as qG, type LagerInventoryLocationId as qH, type LagerInventoryLocationInsert as qI, type LagerInventoryLocationUser as qJ, type LagerInventoryLocationUserId as qK, type LagerInventoryLocationUserInsert as qL, type LagerInventoryLocationUserRole as qM, type LagerInventoryOverview as qN, type LagerInventoryOverviewBody as qO, type LagerInventoryOverviewParams as qP, type LagerInventoryOverviewQuery as qQ, type LagerInventoryOverviewResponse as qR, type LagerInventoryOverviewResponseData as qS, type LagerInventorySearchBody as qT, type LagerInventorySearchParams as qU, type LagerInventorySearchQuery as qV, type LagerInventorySearchResponse as qW, type LagerInventorySearchResponseData as qX, type LagerInventoryToggleUnlimitedByInventoryBody as qY, type LagerInventoryToggleUnlimitedByInventoryParams as qZ, type LagerInventoryToggleUnlimitedByInventoryQuery as q_, type ItemVariantsUpdatePhysicalPropertiesResponse as qa, type ItemVariantsUpdatePhysicalPropertiesResponseData as qb, type ItemVariantsUpdateQuery as qc, type ItemVariantsUpdateResponse as qd, type ItemVariantsUpdateResponseData as qe, type LagerInventory as qf, type LagerInventoryCreateBody as qg, type LagerInventoryCreateByIdsBody as qh, type LagerInventoryCreateByIdsParams as qi, type LagerInventoryCreateByIdsQuery as qj, type LagerInventoryCreateByIdsResponse as qk, type LagerInventoryCreateByIdsResponseData as ql, type LagerInventoryCreateParams as qm, type LagerInventoryCreateQuery as qn, type LagerInventoryCreateResponse as qo, type LagerInventoryCreateResponseData as qp, type LagerInventoryDeleteBody as qq, type LagerInventoryDeleteParams as qr, type LagerInventoryDeleteQuery as qs, type LagerInventoryDeleteResponse as qt, type LagerInventoryDeleteResponseData as qu, type LagerInventoryGetByVariantBody as qv, type LagerInventoryGetByVariantParams as qw, type LagerInventoryGetByVariantQuery as qx, type LagerInventoryGetByVariantResponse as qy, type LagerInventoryGetByVariantResponseData as qz, type AppInfoGetResponse as r, type LagerTransactionsAddBillQuery as r$, type LagerInventoryToggleUnlimitedByInventoryResponseData as r0, type LagerInventoryToggleUnlimitedByVariantBody as r1, type LagerInventoryToggleUnlimitedByVariantParams as r2, type LagerInventoryToggleUnlimitedByVariantQuery as r3, type LagerInventoryToggleUnlimitedByVariantResponse as r4, type LagerInventoryToggleUnlimitedByVariantResponseData as r5, type LagerLocationsByIdBody as r6, type LagerLocationsByIdFullBody as r7, type LagerLocationsByIdFullHistoryBody as r8, type LagerLocationsByIdFullHistoryParams as r9, type LagerLocationsListFullResponseData as rA, type LagerLocationsListParams as rB, type LagerLocationsListQuery as rC, type LagerLocationsListResponse as rD, type LagerLocationsListResponseData as rE, type LagerLocationsUpdateBody as rF, type LagerLocationsUpdateParams as rG, type LagerLocationsUpdateQuery as rH, type LagerLocationsUpdateResponse as rI, type LagerLocationsUpdateResponseData as rJ, type LagerLocationsUsersAddBody as rK, type LagerLocationsUsersAddParams as rL, type LagerLocationsUsersAddQuery as rM, type LagerLocationsUsersAddResponse as rN, type LagerLocationsUsersAddResponseData as rO, type LagerLocationsUsersRemoveBody as rP, type LagerLocationsUsersRemoveParams as rQ, type LagerLocationsUsersRemoveQuery as rR, type LagerLocationsUsersRemoveResponse as rS, type LagerLocationsUsersRemoveResponseData as rT, type LagerReservationsListBody as rU, type LagerReservationsListParams as rV, type LagerReservationsListQuery as rW, type LagerReservationsListResponse as rX, type LagerReservationsListResponseData as rY, type LagerTransactionsAddBillBody as rZ, type LagerTransactionsAddBillParams as r_, type LagerLocationsByIdFullHistoryQuery as ra, type LagerLocationsByIdFullHistoryResponse as rb, type LagerLocationsByIdFullHistoryResponseData as rc, type LagerLocationsByIdFullParams as rd, type LagerLocationsByIdFullQuery as re, type LagerLocationsByIdFullResponse as rf, type LagerLocationsByIdFullResponseData as rg, type LagerLocationsByIdParams as rh, type LagerLocationsByIdQuery as ri, type LagerLocationsByIdResponse as rj, type LagerLocationsByIdResponseData as rk, type LagerLocationsCreateBody as rl, type LagerLocationsCreateParams as rm, type LagerLocationsCreateQuery as rn, type LagerLocationsCreateResponse as ro, type LagerLocationsCreateResponseData as rp, type LagerLocationsDeleteBody as rq, type LagerLocationsDeleteParams as rr, type LagerLocationsDeleteQuery as rs, type LagerLocationsDeleteResponse as rt, type LagerLocationsDeleteResponseData as ru, type LagerLocationsListBody as rv, type LagerLocationsListFullBody as rw, type LagerLocationsListFullParams as rx, type LagerLocationsListFullQuery as ry, type LagerLocationsListFullResponse as rz, type AppInfoGetResponseData as s, type MediaSetsCreateProductItemImageQuery as s$, type LagerTransactionsAddBillResponse as s0, type LagerTransactionsAddBillResponseData as s1, type LagerTransactionsAddInventoryBody as s2, type LagerTransactionsAddInventoryParams as s3, type LagerTransactionsAddInventoryQuery as s4, type LagerTransactionsAddInventoryResponse as s5, type LagerTransactionsAddInventoryResponseData as s6, type LagerTransactionsAdjustInventoryBody as s7, type LagerTransactionsAdjustInventoryParams as s8, type LagerTransactionsAdjustInventoryQuery as s9, type LocationInsert as sA, type LocationTranslated as sB, type LogsDeleteBody as sC, type LogsDeleteBulkBody as sD, type LogsDeleteBulkParams as sE, type LogsDeleteBulkQuery as sF, type LogsDeleteBulkResponse as sG, type LogsDeleteBulkResponseData as sH, type LogsDeleteParams as sI, type LogsDeleteQuery as sJ, type LogsDeleteResponse as sK, type LogsDeleteResponseData as sL, type LogsSearchBody as sM, type LogsSearchParams as sN, type LogsSearchQuery as sO, type LogsSearchResponse as sP, type LogsSearchResponseData as sQ, type MediaSet as sR, type MediaSetId as sS, type MediaSetMedia as sT, type MediaSetsCreateProductImageBody as sU, type MediaSetsCreateProductImageParams as sV, type MediaSetsCreateProductImageQuery as sW, type MediaSetsCreateProductImageResponse as sX, type MediaSetsCreateProductImageResponseData as sY, type MediaSetsCreateProductItemImageBody as sZ, type MediaSetsCreateProductItemImageParams as s_, type LagerTransactionsAdjustInventoryResponse as sa, type LagerTransactionsAdjustInventoryResponseData as sb, type LagerTransactionsByInventoryBody as sc, type LagerTransactionsByInventoryParams as sd, type LagerTransactionsByInventoryQuery as se, type LagerTransactionsByInventoryResponse as sf, type LagerTransactionsByInventoryResponseData as sg, type LagerTransactionsRemoveBillBody as sh, type LagerTransactionsRemoveBillParams as si, type LagerTransactionsRemoveBillQuery as sj, type LagerTransactionsRemoveBillResponse as sk, type LagerTransactionsRemoveBillResponseData as sl, type LagerTransactionsSearchBody as sm, type LagerTransactionsSearchParams as sn, type LagerTransactionsSearchQuery as so, type LagerTransactionsSearchResponse as sp, type LagerTransactionsSearchResponseData as sq, type LagerTransactionsSummaryBody as sr, type LagerTransactionsSummaryParams as ss, type LagerTransactionsSummaryQuery as st, type LagerTransactionsSummaryResponse as su, type LagerTransactionsSummaryResponseData as sv, type Languages as sw, type LimitBehavior as sx, type Location as sy, type LocationId as sz, type AppInfoHealthBody as t, type Oauth2ClientsAuditResponse as t$, type MediaSetsCreateProductItemImageResponse as t0, type MediaSetsCreateProductItemImageResponseData as t1, type MediaSetsCreateProductItemVideoBody as t2, type MediaSetsCreateProductItemVideoParams as t3, type MediaSetsCreateProductItemVideoQuery as t4, type MediaSetsCreateProductItemVideoResponse as t5, type MediaSetsCreateProductItemVideoResponseData as t6, type MediaSetsCreateProductVideoBody as t7, type MediaSetsCreateProductVideoParams as t8, type MediaSetsCreateProductVideoQuery as t9, type MediaSetsGetProductImageResponseData as tA, type MediaSetsGetProductItemImageBody as tB, type MediaSetsGetProductItemImageParams as tC, type MediaSetsGetProductItemImageQuery as tD, type MediaSetsGetProductItemImageResponse as tE, type MediaSetsGetProductItemImageResponseData as tF, type MediaSetsGetProductItemVideoBody as tG, type MediaSetsGetProductItemVideoParams as tH, type MediaSetsGetProductItemVideoQuery as tI, type MediaSetsGetProductItemVideoResponse as tJ, type MediaSetsGetProductItemVideoResponseData as tK, type MediaSetsGetProductVideoBody as tL, type MediaSetsGetProductVideoParams as tM, type MediaSetsGetProductVideoQuery as tN, type MediaSetsGetProductVideoResponse as tO, type MediaSetsGetProductVideoResponseData as tP, type OAuth2AuditLog as tQ, type OAuth2AuditLogInsert as tR, type OAuth2Client as tS, type OAuth2ClientId as tT, type OAuth2ClientInsert as tU, type OAuth2RefreshToken as tV, type OAuth2RefreshTokenInsert as tW, OAuth2Scope as tX, type Oauth2ClientsAuditBody as tY, type Oauth2ClientsAuditParams as tZ, type Oauth2ClientsAuditQuery as t_, type MediaSetsCreateProductVideoResponse as ta, type MediaSetsCreateProductVideoResponseData as tb, type MediaSetsDeleteProductImageBody as tc, type MediaSetsDeleteProductImageParams as td, type MediaSetsDeleteProductImageQuery as te, type MediaSetsDeleteProductImageResponse as tf, type MediaSetsDeleteProductImageResponseData as tg, type MediaSetsDeleteProductItemImageBody as th, type MediaSetsDeleteProductItemImageParams as ti, type MediaSetsDeleteProductItemImageQuery as tj, type MediaSetsDeleteProductItemImageResponse as tk, type MediaSetsDeleteProductItemImageResponseData as tl, type MediaSetsDeleteProductItemVideoBody as tm, type MediaSetsDeleteProductItemVideoParams as tn, type MediaSetsDeleteProductItemVideoQuery as to, type MediaSetsDeleteProductItemVideoResponse as tp, type MediaSetsDeleteProductItemVideoResponseData as tq, type MediaSetsDeleteProductVideoBody as tr, type MediaSetsDeleteProductVideoParams as ts, type MediaSetsDeleteProductVideoQuery as tt, type MediaSetsDeleteProductVideoResponse as tu, type MediaSetsDeleteProductVideoResponseData as tv, type MediaSetsGetProductImageBody as tw, type MediaSetsGetProductImageParams as tx, type MediaSetsGetProductImageQuery as ty, type MediaSetsGetProductImageResponse as tz, type AppInfoHealthParams as u, type OrdersProcessPaidQuery as u$, type Oauth2ClientsAuditResponseData as u0, type Oauth2ClientsCreateBody as u1, type Oauth2ClientsCreateParams as u2, type Oauth2ClientsCreateQuery as u3, type Oauth2ClientsCreateResponse as u4, type Oauth2ClientsCreateResponseData as u5, type Oauth2ClientsListBody as u6, type Oauth2ClientsListParams as u7, type Oauth2ClientsListQuery as u8, type Oauth2ClientsListResponse as u9, type Order as uA, type OrderId as uB, type OrderItem as uC, type OrderItemId as uD, type OrderItemShippingGroup as uE, type OrderItemShippingGroupId as uF, type OrderItemShippingGroupInsert as uG, type OrderItemStatus as uH, type OrderStatus as uI, type OrderWithDetails as uJ, type OrdersDeleteBody as uK, type OrdersDeleteParams as uL, type OrdersDeleteQuery as uM, type OrdersDeleteResponse as uN, type OrdersDeleteResponseData as uO, type OrdersGetByIdBody as uP, type OrdersGetByIdParams as uQ, type OrdersGetByIdQuery as uR, type OrdersGetByIdResponse as uS, type OrdersGetByIdResponseData as uT, type OrdersHandleCancelBody as uU, type OrdersHandleCancelParams as uV, type OrdersHandleCancelQuery as uW, type OrdersHandleCancelResponse as uX, type OrdersHandleCancelResponseData as uY, type OrdersProcessPaidBody as uZ, type OrdersProcessPaidParams as u_, type Oauth2ClientsListResponseData as ua, type Oauth2ClientsRevokeBody as ub, type Oauth2ClientsRevokeParams as uc, type Oauth2ClientsRevokeQuery as ud, type Oauth2ClientsRevokeResponse as ue, type Oauth2ClientsRevokeResponseData as uf, type Oauth2ClientsUpdateBody as ug, type Oauth2ClientsUpdateParams as uh, type Oauth2ClientsUpdateQuery as ui, type Oauth2ClientsUpdateResponse as uj, type Oauth2ClientsUpdateResponseData as uk, type Oauth2RevokeBody as ul, type Oauth2RevokeParams as um, type Oauth2RevokeQuery as un, type Oauth2RevokeResponse as uo, type Oauth2RevokeResponseData as up, type Oauth2ScopesListBody as uq, type Oauth2ScopesListParams as ur, type Oauth2ScopesListQuery as us, type Oauth2ScopesListResponse as ut, type Oauth2ScopesListResponseData as uu, type Oauth2TokenBody as uv, type Oauth2TokenParams as uw, type Oauth2TokenQuery as ux, type Oauth2TokenResponse as uy, type Oauth2TokenResponseData as uz, type AppInfoHealthQuery as v, type PaymentsProviderConfigsPaypalGetBody as v$, type OrdersProcessPaidResponse as v0, type OrdersProcessPaidResponseData as v1, type OrdersSearchBody as v2, type OrdersSearchParams as v3, type OrdersSearchQuery as v4, type OrdersSearchResponse as v5, type OrdersSearchResponseData as v6, type OrdersVerifyOrderBody as v7, type OrdersVerifyOrderParams as v8, type OrdersVerifyOrderQuery as v9, type PaymentMethod as vA, type PaymentProvider as vB, type PaymentProviderFee as vC, type PaymentProviderFeeId as vD, type PaymentProviderFeeInsert as vE, type PaymentProviderFeeLineItem as vF, type PaymentProviderFeeLineItemId as vG, type PaymentProviderFeeLineItemInsert as vH, type PaymentProviderFeeSource as vI, type PaymentStatus as vJ, type PaymentStatusLog as vK, type PaymentStatusLogId as vL, type PaymentsInvoiceBody as vM, type PaymentsInvoiceParams as vN, type PaymentsInvoiceQuery as vO, type PaymentsInvoiceResponse as vP, type PaymentsInvoiceResponseData as vQ, type PaymentsProviderConfigsPaypalCreateBody as vR, type PaymentsProviderConfigsPaypalCreateParams as vS, type PaymentsProviderConfigsPaypalCreateQuery as vT, type PaymentsProviderConfigsPaypalCreateResponse as vU, type PaymentsProviderConfigsPaypalCreateResponseData as vV, type PaymentsProviderConfigsPaypalDeleteBody as vW, type PaymentsProviderConfigsPaypalDeleteParams as vX, type PaymentsProviderConfigsPaypalDeleteQuery as vY, type PaymentsProviderConfigsPaypalDeleteResponse as vZ, type PaymentsProviderConfigsPaypalDeleteResponseData as v_, type OrdersVerifyOrderResponse as va, type OrdersVerifyOrderResponseData as vb, type OutboundWebhookQueue as vc, type OutboundWebhookQueueId as vd, type OutboundWebhookQueueInsert as ve, type OutboundWebhookStatus as vf, type POSTApiAmpProxyKeyBody as vg, type POSTApiAmpProxyKeyParams as vh, type POSTApiAmpProxyKeyQuery as vi, type POSTApiAmpProxyKeyResponse as vj, type POSTApiAmpProxyKeyResponseData as vk, type POSTDataExchangeExchangeTableIdBody as vl, type POSTDataExchangeExchangeTableIdParams as vm, type POSTDataExchangeExchangeTableIdQuery as vn, type POSTDataExchangeExchangeTableIdResponse as vo, type POSTDataExchangeExchangeTableIdResponseData as vp, type PUTApiAmpProxyKeyBody as vq, type PUTApiAmpProxyKeyParams as vr, type PUTApiAmpProxyKeyQuery as vs, type PUTApiAmpProxyKeyResponse as vt, type PUTApiAmpProxyKeyResponseData as vu, type PaginatedResult as vv, type PayPalConfig as vw, type PayPalConfigInsert as vx, type Payment as vy, type PaymentId as vz, type AppInfoHealthResponse as w, type PermissionsAssignToRoleQuery as w$, type PaymentsProviderConfigsPaypalGetParams as w0, type PaymentsProviderConfigsPaypalGetQuery as w1, type PaymentsProviderConfigsPaypalGetResponse as w2, type PaymentsProviderConfigsPaypalGetResponseData as w3, type PaymentsProviderConfigsPaypalListBody as w4, type PaymentsProviderConfigsPaypalListParams as w5, type PaymentsProviderConfigsPaypalListQuery as w6, type PaymentsProviderConfigsPaypalListResponse as w7, type PaymentsProviderConfigsPaypalListResponseData as w8, type PaymentsProviderConfigsPaypalUpdateBody as w9, type PaymentsProviderConfigsStripeUpdateQuery as wA, type PaymentsProviderConfigsStripeUpdateResponse as wB, type PaymentsProviderConfigsStripeUpdateResponseData as wC, type PaymentsProviderInfosBody as wD, type PaymentsProviderInfosParams as wE, type PaymentsProviderInfosQuery as wF, type PaymentsProviderInfosResponse as wG, type PaymentsProviderInfosResponseData as wH, type PaypalCreateCheckoutSessionBody as wI, type PaypalCreateCheckoutSessionParams as wJ, type PaypalCreateCheckoutSessionQuery as wK, type PaypalCreateCheckoutSessionResponse as wL, type PaypalCreateCheckoutSessionResponseData as wM, type PaypalMarkOrderAsDeliveredBody as wN, type PaypalMarkOrderAsDeliveredParams as wO, type PaypalMarkOrderAsDeliveredQuery as wP, type PaypalMarkOrderAsDeliveredResponse as wQ, type PaypalMarkOrderAsDeliveredResponseData as wR, type PaypalWebhookBody as wS, type PaypalWebhookParams as wT, type PaypalWebhookQuery as wU, type PaypalWebhookResponse as wV, type PaypalWebhookResponseData as wW, type Permission as wX, type PermissionId as wY, type PermissionsAssignToRoleBody as wZ, type PermissionsAssignToRoleParams as w_, type PaymentsProviderConfigsPaypalUpdateParams as wa, type PaymentsProviderConfigsPaypalUpdateQuery as wb, type PaymentsProviderConfigsPaypalUpdateResponse as wc, type PaymentsProviderConfigsPaypalUpdateResponseData as wd, type PaymentsProviderConfigsStripeCreateBody as we, type PaymentsProviderConfigsStripeCreateParams as wf, type PaymentsProviderConfigsStripeCreateQuery as wg, type PaymentsProviderConfigsStripeCreateResponse as wh, type PaymentsProviderConfigsStripeCreateResponseData as wi, type PaymentsProviderConfigsStripeDeleteBody as wj, type PaymentsProviderConfigsStripeDeleteParams as wk, type PaymentsProviderConfigsStripeDeleteQuery as wl, type PaymentsProviderConfigsStripeDeleteResponse as wm, type PaymentsProviderConfigsStripeDeleteResponseData as wn, type PaymentsProviderConfigsStripeGetBody as wo, type PaymentsProviderConfigsStripeGetParams as wp, type PaymentsProviderConfigsStripeGetQuery as wq, type PaymentsProviderConfigsStripeGetResponse as wr, type PaymentsProviderConfigsStripeGetResponseData as ws, type PaymentsProviderConfigsStripeListBody as wt, type PaymentsProviderConfigsStripeListParams as wu, type PaymentsProviderConfigsStripeListQuery as wv, type PaymentsProviderConfigsStripeListResponse as ww, type PaymentsProviderConfigsStripeListResponseData as wx, type PaymentsProviderConfigsStripeUpdateBody as wy, type PaymentsProviderConfigsStripeUpdateParams as wz, type AppInfoHealthResponseData as x, type ProductCategoriesListDataQuery as x$, type PermissionsAssignToRoleResponse as x0, type PermissionsAssignToRoleResponseData as x1, type PermissionsAssignmentsListBody as x2, type PermissionsAssignmentsListParams as x3, type PermissionsAssignmentsListQuery as x4, type PermissionsAssignmentsListResponse as x5, type PermissionsAssignmentsListResponseData as x6, type PermissionsCreateBody as x7, type PermissionsCreateParams as x8, type PermissionsCreateQuery as x9, type ProductCategoriesAssignProductParams as xA, type ProductCategoriesAssignProductQuery as xB, type ProductCategoriesAssignProductResponse as xC, type ProductCategoriesAssignProductResponseData as xD, type ProductCategoriesCreateBody as xE, type ProductCategoriesCreateParams as xF, type ProductCategoriesCreateQuery as xG, type ProductCategoriesCreateResponse as xH, type ProductCategoriesCreateResponseData as xI, type ProductCategoriesDeleteBody as xJ, type ProductCategoriesDeleteParams as xK, type ProductCategoriesDeleteQuery as xL, type ProductCategoriesDeleteResponse as xM, type ProductCategoriesDeleteResponseData as xN, type ProductCategoriesGetByIdBody as xO, type ProductCategoriesGetByIdParams as xP, type ProductCategoriesGetByIdQuery as xQ, type ProductCategoriesGetByIdResponse as xR, type ProductCategoriesGetByIdResponseData as xS, type ProductCategoriesGetByIdTranslatedBody as xT, type ProductCategoriesGetByIdTranslatedParams as xU, type ProductCategoriesGetByIdTranslatedQuery as xV, type ProductCategoriesGetByIdTranslatedResponse as xW, type ProductCategoriesGetByIdTranslatedResponseData as xX, type ProductCategoriesListBody as xY, type ProductCategoriesListDataBody as xZ, type ProductCategoriesListDataParams as x_, type PermissionsCreateResponse as xa, type PermissionsCreateResponseData as xb, type PermissionsListBody as xc, type PermissionsListParams as xd, type PermissionsListQuery as xe, type PermissionsListResponse as xf, type PermissionsListResponseData as xg, type PermissionsSyncBody as xh, type PermissionsSyncParams as xi, type PermissionsSyncQuery as xj, type PermissionsSyncResponse as xk, type PermissionsSyncResponseData as xl, type PermissionsUnassignFromRoleBody as xm, type PermissionsUnassignFromRoleParams as xn, type PermissionsUnassignFromRoleQuery as xo, type PermissionsUnassignFromRoleResponse as xp, type PermissionsUnassignFromRoleResponseData as xq, type Prettify as xr, type PrintfulConnection as xs, type PrintfulConnectionId as xt, type PrintfulConnectionInsert as xu, type Product as xv, type ProductAttribute as xw, type ProductAttributeId as xx, type ProductAttributeInsert as xy, type ProductCategoriesAssignProductBody as xz, type AppInfoManifestBody as y, type ProductItemsGetTicketItemsQuery as y$, type ProductCategoriesListDataResponse as y0, type ProductCategoriesListDataResponseData as y1, type ProductCategoriesListParams as y2, type ProductCategoriesListQuery as y3, type ProductCategoriesListResponse as y4, type ProductCategoriesListResponseData as y5, type ProductCategoriesListTranslatedBody as y6, type ProductCategoriesListTranslatedParams as y7, type ProductCategoriesListTranslatedQuery as y8, type ProductCategoriesListTranslatedResponse as y9, type ProductItemsAdminSearchBody as yA, type ProductItemsAdminSearchParams as yB, type ProductItemsAdminSearchQuery as yC, type ProductItemsAdminSearchResponse as yD, type ProductItemsAdminSearchResponseData as yE, type ProductItemsAdminSearchTranslatedBody as yF, type ProductItemsAdminSearchTranslatedParams as yG, type ProductItemsAdminSearchTranslatedQuery as yH, type ProductItemsAdminSearchTranslatedResponse as yI, type ProductItemsAdminSearchTranslatedResponseData as yJ, type ProductItemsCreateBody as yK, type ProductItemsCreateParams as yL, type ProductItemsCreateQuery as yM, type ProductItemsCreateResponse as yN, type ProductItemsCreateResponseData as yO, type ProductItemsDeleteBody as yP, type ProductItemsDeleteParams as yQ, type ProductItemsDeleteQuery as yR, type ProductItemsDeleteResponse as yS, type ProductItemsDeleteResponseData as yT, type ProductItemsGetFullItemBody as yU, type ProductItemsGetFullItemParams as yV, type ProductItemsGetFullItemQuery as yW, type ProductItemsGetFullItemResponse as yX, type ProductItemsGetFullItemResponseData as yY, type ProductItemsGetTicketItemsBody as yZ, type ProductItemsGetTicketItemsParams as y_, type ProductCategoriesListTranslatedResponseData as ya, type ProductCategoriesRemoveProductBody as yb, type ProductCategoriesRemoveProductParams as yc, type ProductCategoriesRemoveProductQuery as yd, type ProductCategoriesRemoveProductResponse as ye, type ProductCategoriesRemoveProductResponseData as yf, type ProductCategoriesUpdateBody as yg, type ProductCategoriesUpdateParams as yh, type ProductCategoriesUpdateQuery as yi, type ProductCategoriesUpdateResponse as yj, type ProductCategoriesUpdateResponseData as yk, type ProductCategory as yl, type ProductCategoryId as ym, type ProductCategoryTranslated as yn, type ProductId as yo, type ProductInsert as yp, type ProductItem as yq, type ProductItemAttribute as yr, type ProductItemAttributeId as ys, type ProductItemAttributeInsert as yt, type ProductItemId as yu, type ProductItemInsert as yv, type ProductItemTranslated as yw, type ProductItemVariant as yx, type ProductItemVariantId as yy, type ProductItemVariantInsert as yz, type AppInfoManifestParams as z, type ProductsPublicSearchResponseData as z$, type ProductItemsGetTicketItemsResponse as z0, type ProductItemsGetTicketItemsResponseData as z1, type ProductItemsUpdateBody as z2, type ProductItemsUpdateParams as z3, type ProductItemsUpdateQuery as z4, type ProductItemsUpdateResponse as z5, type ProductItemsUpdateResponseData as z6, type ProductStatus as z7, type ProductTranslated as z8, type ProductsAdminSearchBody as z9, type ProductsGetFullByIdQuery as zA, type ProductsGetFullByIdResponse as zB, type ProductsGetFullByIdResponseData as zC, type ProductsGetFullByIdTranslatedBody as zD, type ProductsGetFullByIdTranslatedParams as zE, type ProductsGetFullByIdTranslatedQuery as zF, type ProductsGetFullByIdTranslatedResponse as zG, type ProductsGetFullByIdTranslatedResponseData as zH, type ProductsListBody as zI, type ProductsListFullBody as zJ, type ProductsListFullParams as zK, type ProductsListFullQuery as zL, type ProductsListFullResponse as zM, type ProductsListFullResponseData as zN, type ProductsListFullTranslatedBody as zO, type ProductsListFullTranslatedParams as zP, type ProductsListFullTranslatedQuery as zQ, type ProductsListFullTranslatedResponse as zR, type ProductsListFullTranslatedResponseData as zS, type ProductsListParams as zT, type ProductsListQuery as zU, type ProductsListResponse as zV, type ProductsListResponseData as zW, type ProductsPublicSearchBody as zX, type ProductsPublicSearchParams as zY, type ProductsPublicSearchQuery as zZ, type ProductsPublicSearchResponse as z_, type ProductsAdminSearchParams as za, type ProductsAdminSearchQuery as zb, type ProductsAdminSearchResponse as zc, type ProductsAdminSearchResponseData as zd, type ProductsAdminSearchTranslatedBody as ze, type ProductsAdminSearchTranslatedParams as zf, type ProductsAdminSearchTranslatedQuery as zg, type ProductsAdminSearchTranslatedResponse as zh, type ProductsAdminSearchTranslatedResponseData as zi, type ProductsCreateBody as zj, type ProductsCreateParams as zk, type ProductsCreateQuery as zl, type ProductsCreateResponse as zm, type ProductsCreateResponseData as zn, type ProductsDeleteBody as zo, type ProductsDeleteParams as zp, type ProductsDeleteQuery as zq, type ProductsDeleteResponse as zr, type ProductsDeleteResponseData as zs, type ProductsGetByIdBody as zt, type ProductsGetByIdParams as zu, type ProductsGetByIdQuery as zv, type ProductsGetByIdResponse as zw, type ProductsGetByIdResponseData as zx, type ProductsGetFullByIdBody as zy, type ProductsGetFullByIdParams as zz };
28669
+ export { type AssignedEntitlementsCreateParams as $, type Address as A, type RolesUpdateBody as A$, type ProductsPublicSearchBody as A0, type ProductsPublicSearchParams as A1, type ProductsPublicSearchQuery as A2, type ProductsPublicSearchResponse as A3, type ProductsPublicSearchResponseData as A4, type ProductsSearchBody as A5, type ProductsSearchParams as A6, type ProductsSearchQuery as A7, type ProductsSearchResponse as A8, type ProductsSearchResponseData as A9, type RoleAssignmentsRevokeParams as AA, type RoleAssignmentsRevokeQuery as AB, type RoleAssignmentsRevokeResponse as AC, type RoleAssignmentsRevokeResponseData as AD, type RoleId as AE, type RolePermission as AF, type RolePermissionId as AG, type RolesCreateBody as AH, type RolesCreateParams as AI, type RolesCreateQuery as AJ, type RolesCreateResponse as AK, type RolesCreateResponseData as AL, type RolesDeleteBody as AM, type RolesDeleteParams as AN, type RolesDeleteQuery as AO, type RolesDeleteResponse as AP, type RolesDeleteResponseData as AQ, type RolesGetByIdBody as AR, type RolesGetByIdParams as AS, type RolesGetByIdQuery as AT, type RolesGetByIdResponse as AU, type RolesGetByIdResponseData as AV, type RolesListBody as AW, type RolesListParams as AX, type RolesListQuery as AY, type RolesListResponse as AZ, type RolesListResponseData as A_, type ProductsUpdateBody as Aa, type ProductsUpdateParams as Ab, type ProductsUpdateQuery as Ac, type ProductsUpdateResponse as Ad, type ProductsUpdateResponseData as Ae, type QuickStats as Af, type Role as Ag, type RoleAssignment as Ah, type RoleAssignmentId as Ai, type RoleAssignmentStatus as Aj, type RoleAssignmentsCreateBody as Ak, type RoleAssignmentsCreateParams as Al, type RoleAssignmentsCreateQuery as Am, type RoleAssignmentsCreateResponse as An, type RoleAssignmentsCreateResponseData as Ao, type RoleAssignmentsGetUserAssignmentsBody as Ap, type RoleAssignmentsGetUserAssignmentsParams as Aq, type RoleAssignmentsGetUserAssignmentsQuery as Ar, type RoleAssignmentsGetUserAssignmentsResponse as As, type RoleAssignmentsGetUserAssignmentsResponseData as At, type RoleAssignmentsListBody as Au, type RoleAssignmentsListParams as Av, type RoleAssignmentsListQuery as Aw, type RoleAssignmentsListResponse as Ax, type RoleAssignmentsListResponseData as Ay, type RoleAssignmentsRevokeBody as Az, type AppInfoManifestQuery as B, type ShippingByIdBody as B$, type RolesUpdateParams as B0, type RolesUpdateQuery as B1, type RolesUpdateResponse as B2, type RolesUpdateResponseData as B3, type SenderBrand as B4, type SenderBrandId as B5, type SenderBrandInsert as B6, type SenderBrandSendingStatus as B7, type SenderBrandsCreateBody as B8, type SenderBrandsCreateParams as B9, type SenderBrandsUpdateResponse as BA, type SenderBrandsUpdateResponseData as BB, type SettingsListBody as BC, type SettingsListParams as BD, type SettingsListQuery as BE, type SettingsListResponse as BF, type SettingsListResponseData as BG, type SettingsUpdateBody as BH, type SettingsUpdateParams as BI, type SettingsUpdateQuery as BJ, type SettingsUpdateResponse as BK, type SettingsUpdateResponseData as BL, type Shipment as BM, type ShipmentId as BN, type ShipmentInsert as BO, type ShipmentItem as BP, type ShipmentItemId as BQ, type ShipmentItemInsert as BR, type ShipmentStatus as BS, type ShipmentStatusUpdate as BT, type ShipmentStatusUpdateId as BU, type ShipmentStatusUpdateInsert as BV, type ShippingAddTrackingBody as BW, type ShippingAddTrackingParams as BX, type ShippingAddTrackingQuery as BY, type ShippingAddTrackingResponse as BZ, type ShippingAddTrackingResponseData as B_, type SenderBrandsCreateQuery as Ba, type SenderBrandsCreateResponse as Bb, type SenderBrandsCreateResponseData as Bc, type SenderBrandsDeleteBody as Bd, type SenderBrandsDeleteParams as Be, type SenderBrandsDeleteQuery as Bf, type SenderBrandsDeleteResponse as Bg, type SenderBrandsDeleteResponseData as Bh, type SenderBrandsGetByIdBody as Bi, type SenderBrandsGetByIdParams as Bj, type SenderBrandsGetByIdQuery as Bk, type SenderBrandsGetByIdResponse as Bl, type SenderBrandsGetByIdResponseData as Bm, type SenderBrandsListBody as Bn, type SenderBrandsListParams as Bo, type SenderBrandsListQuery as Bp, type SenderBrandsListResponse as Bq, type SenderBrandsListResponseData as Br, type SenderBrandsSyncSendingCapabilityBody as Bs, type SenderBrandsSyncSendingCapabilityParams as Bt, type SenderBrandsSyncSendingCapabilityQuery as Bu, type SenderBrandsSyncSendingCapabilityResponse as Bv, type SenderBrandsSyncSendingCapabilityResponseData as Bw, type SenderBrandsUpdateBody as Bx, type SenderBrandsUpdateParams as By, type SenderBrandsUpdateQuery as Bz, type AppInfoManifestResponse as C, type ShippingProvidersCreateQuery as C$, type ShippingByIdParams as C0, type ShippingByIdQuery as C1, type ShippingByIdResponse as C2, type ShippingByIdResponseData as C3, type ShippingCancelBody as C4, type ShippingCancelParams as C5, type ShippingCancelQuery as C6, type ShippingCancelResponse as C7, type ShippingCancelResponseData as C8, type ShippingCreateLabelBody as C9, type ShippingProviderProductsDeleteBody as CA, type ShippingProviderProductsDeleteParams as CB, type ShippingProviderProductsDeleteQuery as CC, type ShippingProviderProductsDeleteResponse as CD, type ShippingProviderProductsDeleteResponseData as CE, type ShippingProviderProductsUpdateBody as CF, type ShippingProviderProductsUpdateParams as CG, type ShippingProviderProductsUpdateQuery as CH, type ShippingProviderProductsUpdateResponse as CI, type ShippingProviderProductsUpdateResponseData as CJ, type ShippingProvidersActivateBody as CK, type ShippingProvidersActivateParams as CL, type ShippingProvidersActivateQuery as CM, type ShippingProvidersActivateResponse as CN, type ShippingProvidersActivateResponseData as CO, type ShippingProvidersByIdBody as CP, type ShippingProvidersByIdDetailsBody as CQ, type ShippingProvidersByIdDetailsParams as CR, type ShippingProvidersByIdDetailsQuery as CS, type ShippingProvidersByIdDetailsResponse as CT, type ShippingProvidersByIdDetailsResponseData as CU, type ShippingProvidersByIdParams as CV, type ShippingProvidersByIdQuery as CW, type ShippingProvidersByIdResponse as CX, type ShippingProvidersByIdResponseData as CY, type ShippingProvidersCreateBody as CZ, type ShippingProvidersCreateParams as C_, type ShippingCreateLabelParams as Ca, type ShippingCreateLabelQuery as Cb, type ShippingCreateLabelResponse as Cc, type ShippingCreateLabelResponseData as Cd, type ShippingCreateReturnLabelBody as Ce, type ShippingCreateReturnLabelParams as Cf, type ShippingCreateReturnLabelQuery as Cg, type ShippingCreateReturnLabelResponse as Ch, type ShippingCreateReturnLabelResponseData as Ci, type ShippingOrderShipmentsBody as Cj, type ShippingOrderShipmentsParams as Ck, type ShippingOrderShipmentsQuery as Cl, type ShippingOrderShipmentsResponse as Cm, type ShippingOrderShipmentsResponseData as Cn, type ShippingProvider as Co, type ShippingProviderApiPaths as Cp, type ShippingProviderId as Cq, type ShippingProviderInsert as Cr, type ShippingProviderProduct as Cs, type ShippingProviderProductId as Ct, type ShippingProviderProductInsert as Cu, type ShippingProviderProductsCreateBody as Cv, type ShippingProviderProductsCreateParams as Cw, type ShippingProviderProductsCreateQuery as Cx, type ShippingProviderProductsCreateResponse as Cy, type ShippingProviderProductsCreateResponseData as Cz, type AppInfoManifestResponseData as D, type ShippingSearchResponseData as D$, type ShippingProvidersCreateResponse as D0, type ShippingProvidersCreateResponseData as D1, type ShippingProvidersDeactivateBody as D2, type ShippingProvidersDeactivateParams as D3, type ShippingProvidersDeactivateQuery as D4, type ShippingProvidersDeactivateResponse as D5, type ShippingProvidersDeactivateResponseData as D6, type ShippingProvidersDeleteBody as D7, type ShippingProvidersDeleteParams as D8, type ShippingProvidersDeleteQuery as D9, type ShippingRatesAddRegionQuery as DA, type ShippingRatesAddRegionResponse as DB, type ShippingRatesAddRegionResponseData as DC, type ShippingRatesByProviderBody as DD, type ShippingRatesByProviderParams as DE, type ShippingRatesByProviderQuery as DF, type ShippingRatesByProviderResponse as DG, type ShippingRatesByProviderResponseData as DH, type ShippingRatesCreateBody as DI, type ShippingRatesCreateParams as DJ, type ShippingRatesCreateQuery as DK, type ShippingRatesCreateResponse as DL, type ShippingRatesCreateResponseData as DM, type ShippingRatesDeleteBody as DN, type ShippingRatesDeleteParams as DO, type ShippingRatesDeleteQuery as DP, type ShippingRatesDeleteResponse as DQ, type ShippingRatesDeleteResponseData as DR, type ShippingRatesUpdateBody as DS, type ShippingRatesUpdateParams as DT, type ShippingRatesUpdateQuery as DU, type ShippingRatesUpdateResponse as DV, type ShippingRatesUpdateResponseData as DW, type ShippingSearchBody as DX, type ShippingSearchParams as DY, type ShippingSearchQuery as DZ, type ShippingSearchResponse as D_, type ShippingProvidersDeleteResponse as Da, type ShippingProvidersDeleteResponseData as Db, type ShippingProvidersListBody as Dc, type ShippingProvidersListDetailsBody as Dd, type ShippingProvidersListDetailsParams as De, type ShippingProvidersListDetailsQuery as Df, type ShippingProvidersListDetailsResponse as Dg, type ShippingProvidersListDetailsResponseData as Dh, type ShippingProvidersListParams as Di, type ShippingProvidersListQuery as Dj, type ShippingProvidersListResponse as Dk, type ShippingProvidersListResponseData as Dl, type ShippingProvidersUpdateBody as Dm, type ShippingProvidersUpdateParams as Dn, type ShippingProvidersUpdateQuery as Do, type ShippingProvidersUpdateResponse as Dp, type ShippingProvidersUpdateResponseData as Dq, type ShippingRate as Dr, type ShippingRateId as Ds, type ShippingRateInsert as Dt, type ShippingRateRegion as Du, type ShippingRateRegionId as Dv, type ShippingRateRegionInsert as Dw, type ShippingRateTranslated as Dx, type ShippingRatesAddRegionBody as Dy, type ShippingRatesAddRegionParams as Dz, type AppInfoOwnPermissionsGetBody as E, type SubscriptionsAdminCancelBody as E$, type ShippingStatisticsBody as E0, type ShippingStatisticsParams as E1, type ShippingStatisticsQuery as E2, type ShippingStatisticsResponse as E3, type ShippingStatisticsResponseData as E4, type ShippingUpdateStatusBody as E5, type ShippingUpdateStatusParams as E6, type ShippingUpdateStatusQuery as E7, type ShippingUpdateStatusResponse as E8, type ShippingUpdateStatusResponseData as E9, type StatusChangesGetPendingResponseData as EA, type StatusChangesScheduleBody as EB, type StatusChangesScheduleParams as EC, type StatusChangesScheduleQuery as ED, type StatusChangesScheduleResponse as EE, type StatusChangesScheduleResponseData as EF, type StripeConfig as EG, type StripeConfigInsert as EH, type StripeCreateCheckoutSessionBody as EI, type StripeCreateCheckoutSessionParams as EJ, type StripeCreateCheckoutSessionQuery as EK, type StripeCreateCheckoutSessionResponse as EL, type StripeCreateCheckoutSessionResponseData as EM, type SubscriptionEntitlementLink as EN, type SubscriptionEntitlementLinkId as EO, type SubscriptionEntitlementLinkInsert as EP, type SubscriptionEvent as EQ, type SubscriptionEventId as ER, type SubscriptionEventInsert as ES, type SubscriptionInterval as ET, type SubscriptionPlan as EU, type SubscriptionPlanId as EV, type SubscriptionPlanInsert as EW, type SubscriptionSku as EX, type SubscriptionSkuId as EY, type SubscriptionSkuInsert as EZ, type SubscriptionStatus as E_, type ShopAppPermissionValue as Ea, ShopAppPermissions as Eb, type ShopUser as Ec, type ShopUserActivity as Ed, type ShopUserActivityId as Ee, type ShopUserId as Ef, type SkuPlatform as Eg, type StatusChange as Eh, type StatusChangeId as Ei, type StatusChangeInsert as Ej, type StatusChangeTable as Ek, type StatusChangeTables as El, type StatusChangesCancelBody as Em, type StatusChangesCancelParams as En, type StatusChangesCancelQuery as Eo, type StatusChangesCancelResponse as Ep, type StatusChangesCancelResponseData as Eq, type StatusChangesGetHistoryBody as Er, type StatusChangesGetHistoryParams as Es, type StatusChangesGetHistoryQuery as Et, type StatusChangesGetHistoryResponse as Eu, type StatusChangesGetHistoryResponseData as Ev, type StatusChangesGetPendingBody as Ew, type StatusChangesGetPendingParams as Ex, type StatusChangesGetPendingQuery as Ey, type StatusChangesGetPendingResponse as Ez, type AppInfoOwnPermissionsGetParams as F, type SubscriptionsGetMySubscriptionsResponseData as F$, type SubscriptionsAdminCancelParams as F0, type SubscriptionsAdminCancelQuery as F1, type SubscriptionsAdminCancelResponse as F2, type SubscriptionsAdminCancelResponseData as F3, type SubscriptionsAdminCreatePlanBody as F4, type SubscriptionsAdminCreatePlanParams as F5, type SubscriptionsAdminCreatePlanQuery as F6, type SubscriptionsAdminCreatePlanResponse as F7, type SubscriptionsAdminCreatePlanResponseData as F8, type SubscriptionsAdminDeletePlanBody as F9, type SubscriptionsAdminResumeQuery as FA, type SubscriptionsAdminResumeResponse as FB, type SubscriptionsAdminResumeResponseData as FC, type SubscriptionsAdminSearchBody as FD, type SubscriptionsAdminSearchParams as FE, type SubscriptionsAdminSearchQuery as FF, type SubscriptionsAdminSearchResponse as FG, type SubscriptionsAdminSearchResponseData as FH, type SubscriptionsAdminUpdatePlanBody as FI, type SubscriptionsAdminUpdatePlanParams as FJ, type SubscriptionsAdminUpdatePlanQuery as FK, type SubscriptionsAdminUpdatePlanResponse as FL, type SubscriptionsAdminUpdatePlanResponseData as FM, type SubscriptionsChangePlanBody as FN, type SubscriptionsChangePlanParams as FO, type SubscriptionsChangePlanQuery as FP, type SubscriptionsChangePlanResponse as FQ, type SubscriptionsChangePlanResponseData as FR, type SubscriptionsGetAvailableChangesBody as FS, type SubscriptionsGetAvailableChangesParams as FT, type SubscriptionsGetAvailableChangesQuery as FU, type SubscriptionsGetAvailableChangesResponse as FV, type SubscriptionsGetAvailableChangesResponseData as FW, type SubscriptionsGetMySubscriptionsBody as FX, type SubscriptionsGetMySubscriptionsParams as FY, type SubscriptionsGetMySubscriptionsQuery as FZ, type SubscriptionsGetMySubscriptionsResponse as F_, type SubscriptionsAdminDeletePlanParams as Fa, type SubscriptionsAdminDeletePlanQuery as Fb, type SubscriptionsAdminDeletePlanResponse as Fc, type SubscriptionsAdminDeletePlanResponseData as Fd, type SubscriptionsAdminExportBody as Fe, type SubscriptionsAdminExportParams as Ff, type SubscriptionsAdminExportQuery as Fg, type SubscriptionsAdminExportResponse as Fh, type SubscriptionsAdminExportResponseData as Fi, type SubscriptionsAdminMetricsBody as Fj, type SubscriptionsAdminMetricsParams as Fk, type SubscriptionsAdminMetricsQuery as Fl, type SubscriptionsAdminMetricsResponse as Fm, type SubscriptionsAdminMetricsResponseData as Fn, type SubscriptionsAdminPauseBody as Fo, type SubscriptionsAdminPauseParams as Fp, type SubscriptionsAdminPauseQuery as Fq, type SubscriptionsAdminPauseResponse as Fr, type SubscriptionsAdminPauseResponseData as Fs, type SubscriptionsAdminReorderPlansBody as Ft, type SubscriptionsAdminReorderPlansParams as Fu, type SubscriptionsAdminReorderPlansQuery as Fv, type SubscriptionsAdminReorderPlansResponse as Fw, type SubscriptionsAdminReorderPlansResponseData as Fx, type SubscriptionsAdminResumeBody as Fy, type SubscriptionsAdminResumeParams as Fz, type AppInfoOwnPermissionsGetQuery as G, type TicketsCheckInResponse as G$, type SubscriptionsListPlansBody as G0, type SubscriptionsListPlansParams as G1, type SubscriptionsListPlansQuery as G2, type SubscriptionsListPlansResponse as G3, type SubscriptionsListPlansResponseData as G4, type SubscriptionsSetCancelAtPeriodEndBody as G5, type SubscriptionsSetCancelAtPeriodEndParams as G6, type SubscriptionsSetCancelAtPeriodEndQuery as G7, type SubscriptionsSetCancelAtPeriodEndResponse as G8, type SubscriptionsSetCancelAtPeriodEndResponseData as G9, type SuppliersPrintfulOauthStatusParams as GA, type SuppliersPrintfulOauthStatusQuery as GB, type SuppliersPrintfulOauthStatusResponse as GC, type SuppliersPrintfulOauthStatusResponseData as GD, type SuppliersPrintfulProductsListBody as GE, type SuppliersPrintfulProductsListParams as GF, type SuppliersPrintfulProductsListQuery as GG, type SuppliersPrintfulProductsListResponse as GH, type SuppliersPrintfulProductsListResponseData as GI, type SuppliersPrintfulWebhookBody as GJ, type SuppliersPrintfulWebhookParams as GK, type SuppliersPrintfulWebhookQuery as GL, type SuppliersPrintfulWebhookResponse as GM, type SuppliersPrintfulWebhookResponseData as GN, type SuppliersPrintfulWebhookSecuredBody as GO, type SuppliersPrintfulWebhookSecuredParams as GP, type SuppliersPrintfulWebhookSecuredQuery as GQ, type SuppliersPrintfulWebhookSecuredResponse as GR, type SuppliersPrintfulWebhookSecuredResponseData as GS, type TaxProductType as GT, type Ticket as GU, type TicketId as GV, type TicketInsert as GW, type TicketStatus as GX, type TicketsCheckInBody as GY, type TicketsCheckInParams as GZ, type TicketsCheckInQuery as G_, type SubscriptionsStripeConfirmCheckoutSessionBody as Ga, type SubscriptionsStripeConfirmCheckoutSessionParams as Gb, type SubscriptionsStripeConfirmCheckoutSessionQuery as Gc, type SubscriptionsStripeConfirmCheckoutSessionResponse as Gd, type SubscriptionsStripeConfirmCheckoutSessionResponseData as Ge, type SubscriptionsStripeCreateCheckoutSessionBody as Gf, type SubscriptionsStripeCreateCheckoutSessionParams as Gg, type SubscriptionsStripeCreateCheckoutSessionQuery as Gh, type SubscriptionsStripeCreateCheckoutSessionResponse as Gi, type SubscriptionsStripeCreateCheckoutSessionResponseData as Gj, type SuppliersPrintfulOauthCallbackBody as Gk, type SuppliersPrintfulOauthCallbackParams as Gl, type SuppliersPrintfulOauthCallbackQuery as Gm, type SuppliersPrintfulOauthCallbackResponse as Gn, type SuppliersPrintfulOauthCallbackResponseData as Go, type SuppliersPrintfulOauthConnectBody as Gp, type SuppliersPrintfulOauthConnectParams as Gq, type SuppliersPrintfulOauthConnectQuery as Gr, type SuppliersPrintfulOauthConnectResponse as Gs, type SuppliersPrintfulOauthConnectResponseData as Gt, type SuppliersPrintfulOauthDisconnectBody as Gu, type SuppliersPrintfulOauthDisconnectParams as Gv, type SuppliersPrintfulOauthDisconnectQuery as Gw, type SuppliersPrintfulOauthDisconnectResponse as Gx, type SuppliersPrintfulOauthDisconnectResponseData as Gy, type SuppliersPrintfulOauthStatusBody as Gz, type AppInfoOwnPermissionsGetResponse as H, type TranslationsUpdateKeyParams as H$, type TicketsCheckInResponseData as H0, type TicketsCreateBody as H1, type TicketsCreateParams as H2, type TicketsCreateQuery as H3, type TicketsCreateResponse as H4, type TicketsCreateResponseData as H5, type TicketsDeleteBody as H6, type TicketsDeleteParams as H7, type TicketsDeleteQuery as H8, type TicketsDeleteResponse as H9, type TranslationsCreateFromPromptResponseData as HA, type TranslationsCreateParams as HB, type TranslationsCreateQuery as HC, type TranslationsCreateResponse as HD, type TranslationsCreateResponseData as HE, type TranslationsGetByItemBody as HF, type TranslationsGetByItemParams as HG, type TranslationsGetByItemQuery as HH, type TranslationsGetByItemResponse as HI, type TranslationsGetByItemResponseData as HJ, type TranslationsGetByKeyBody as HK, type TranslationsGetByKeyParams as HL, type TranslationsGetByKeyQuery as HM, type TranslationsGetByKeyResponse as HN, type TranslationsGetByKeyResponseData as HO, type TranslationsGetByLanguageAndKeyBody as HP, type TranslationsGetByLanguageAndKeyParams as HQ, type TranslationsGetByLanguageAndKeyQuery as HR, type TranslationsGetByLanguageAndKeyResponse as HS, type TranslationsGetByLanguageAndKeyResponseData as HT, type TranslationsGetIncompleteBody as HU, type TranslationsGetIncompleteParams as HV, type TranslationsGetIncompleteQuery as HW, type TranslationsGetIncompleteResponse as HX, type TranslationsGetIncompleteResponseData as HY, type TranslationsUpdateBody as HZ, type TranslationsUpdateKeyBody as H_, type TicketsDeleteResponseData as Ha, type TicketsGetByIdBody as Hb, type TicketsGetByIdParams as Hc, type TicketsGetByIdQuery as Hd, type TicketsGetByIdResponse as He, type TicketsGetByIdResponseData as Hf, type TicketsListBody as Hg, type TicketsListParams as Hh, type TicketsListQuery as Hi, type TicketsListResponse as Hj, type TicketsListResponseData as Hk, type TicketsViewPdfBody as Hl, type TicketsViewPdfParams as Hm, type TicketsViewPdfQuery as Hn, type TicketsViewPdfResponse as Ho, type TicketsViewPdfResponseData as Hp, type TranslatedTable as Hq, type Translation as Hr, type TranslationId as Hs, type TranslationKey as Ht, type TranslationKeyId as Hu, type TranslationsCreateBody as Hv, type TranslationsCreateFromPromptBody as Hw, type TranslationsCreateFromPromptParams as Hx, type TranslationsCreateFromPromptQuery as Hy, type TranslationsCreateFromPromptResponse as Hz, type AppInfoOwnPermissionsGetResponseData as I, type UsageReportsGetOverviewParams as I$, type TranslationsUpdateKeyQuery as I0, type TranslationsUpdateKeyResponse as I1, type TranslationsUpdateKeyResponseData as I2, type TranslationsUpdateParams as I3, type TranslationsUpdateQuery as I4, type TranslationsUpdateResponse as I5, type TranslationsUpdateResponseData as I6, type UnsensitiveOAuth2Client as I7, type UsageAlertChannel as I8, type UsageAlertConfig as I9, type UsageReportsCreatePricingRuleResponseData as IA, type UsageReportsDeletePricingRuleBody as IB, type UsageReportsDeletePricingRuleParams as IC, type UsageReportsDeletePricingRuleQuery as ID, type UsageReportsDeletePricingRuleResponse as IE, type UsageReportsDeletePricingRuleResponseData as IF, type UsageReportsGetCustomerExposureBody as IG, type UsageReportsGetCustomerExposureParams as IH, type UsageReportsGetCustomerExposureQuery as II, type UsageReportsGetCustomerExposureResponse as IJ, type UsageReportsGetCustomerExposureResponseData as IK, type UsageReportsGetCustomerReportsBody as IL, type UsageReportsGetCustomerReportsParams as IM, type UsageReportsGetCustomerReportsQuery as IN, type UsageReportsGetCustomerReportsResponse as IO, type UsageReportsGetCustomerReportsResponseData as IP, type UsageReportsGetMappingIssuesBody as IQ, type UsageReportsGetMappingIssuesParams as IR, type UsageReportsGetMappingIssuesQuery as IS, type UsageReportsGetMappingIssuesResponse as IT, type UsageReportsGetMappingIssuesResponseData as IU, type UsageReportsGetOpenExposureBody as IV, type UsageReportsGetOpenExposureParams as IW, type UsageReportsGetOpenExposureQuery as IX, type UsageReportsGetOpenExposureResponse as IY, type UsageReportsGetOpenExposureResponseData as IZ, type UsageReportsGetOverviewBody as I_, type UsageAlertConfigId as Ia, type UsageAlertConfigInsert as Ib, type UsageAlertHistory as Ic, type UsageAlertHistoryId as Id, type UsageAlertHistoryInsert as Ie, type UsageAlertType as If, type UsageOverageBillingStatus as Ig, type UsageOverageEvent as Ih, type UsageOverageEventId as Ii, type UsageOverageReport as Ij, type UsageOverageReportId as Ik, type UsageOverageReportInsert as Il, type UsageReportsApproveReviewBody as Im, type UsageReportsApproveReviewParams as In, type UsageReportsApproveReviewQuery as Io, type UsageReportsApproveReviewResponse as Ip, type UsageReportsApproveReviewResponseData as Iq, type UsageReportsCreateAlertConfigBody as Ir, type UsageReportsCreateAlertConfigParams as Is, type UsageReportsCreateAlertConfigQuery as It, type UsageReportsCreateAlertConfigResponse as Iu, type UsageReportsCreateAlertConfigResponseData as Iv, type UsageReportsCreatePricingRuleBody as Iw, type UsageReportsCreatePricingRuleParams as Ix, type UsageReportsCreatePricingRuleQuery as Iy, type UsageReportsCreatePricingRuleResponse as Iz, type AppLog as J, type UsersDeleteExternalQuery as J$, type UsageReportsGetOverviewQuery as J0, type UsageReportsGetOverviewResponse as J1, type UsageReportsGetOverviewResponseData as J2, type UsageReportsGetPendingBody as J3, type UsageReportsGetPendingParams as J4, type UsageReportsGetPendingQuery as J5, type UsageReportsGetPendingResponse as J6, type UsageReportsGetPendingResponseData as J7, type UsageReportsGetPendingReviewBody as J8, type UsageReportsGetPendingReviewParams as J9, type UsageReportsUpdatePricingRuleResponse as JA, type UsageReportsUpdatePricingRuleResponseData as JB, type UsageReportsWaiveReportBody as JC, type UsageReportsWaiveReportParams as JD, type UsageReportsWaiveReportQuery as JE, type UsageReportsWaiveReportResponse as JF, type UsageReportsWaiveReportResponseData as JG, type UserActivityOverviewGetBody as JH, type UserActivityOverviewGetParams as JI, type UserActivityOverviewGetQuery as JJ, type UserActivityOverviewGetResponse as JK, type UserActivityOverviewGetResponseData as JL, type UserActivityUsersStatsListBody as JM, type UserActivityUsersStatsListParams as JN, type UserActivityUsersStatsListQuery as JO, type UserActivityUsersStatsListResponse as JP, type UserActivityUsersStatsListResponseData as JQ, type UserInsert as JR, type UserWithStats as JS, type UsersCreateBody as JT, type UsersCreateParams as JU, type UsersCreateQuery as JV, type UsersCreateResponse as JW, type UsersCreateResponseData as JX, type UsersDeleteBody as JY, type UsersDeleteExternalBody as JZ, type UsersDeleteExternalParams as J_, type UsageReportsGetPendingReviewQuery as Ja, type UsageReportsGetPendingReviewResponse as Jb, type UsageReportsGetPendingReviewResponseData as Jc, type UsageReportsListAlertConfigsBody as Jd, type UsageReportsListAlertConfigsParams as Je, type UsageReportsListAlertConfigsQuery as Jf, type UsageReportsListAlertConfigsResponse as Jg, type UsageReportsListAlertConfigsResponseData as Jh, type UsageReportsListAlertHistoryBody as Ji, type UsageReportsListAlertHistoryParams as Jj, type UsageReportsListAlertHistoryQuery as Jk, type UsageReportsListAlertHistoryResponse as Jl, type UsageReportsListAlertHistoryResponseData as Jm, type UsageReportsListPricingRulesBody as Jn, type UsageReportsListPricingRulesParams as Jo, type UsageReportsListPricingRulesQuery as Jp, type UsageReportsListPricingRulesResponse as Jq, type UsageReportsListPricingRulesResponseData as Jr, type UsageReportsUpdateAlertConfigBody as Js, type UsageReportsUpdateAlertConfigParams as Jt, type UsageReportsUpdateAlertConfigQuery as Ju, type UsageReportsUpdateAlertConfigResponse as Jv, type UsageReportsUpdateAlertConfigResponseData as Jw, type UsageReportsUpdatePricingRuleBody as Jx, type UsageReportsUpdatePricingRuleParams as Jy, type UsageReportsUpdatePricingRuleQuery as Jz, type AppLogId as K, type VariantFulfillmentConfigId as K$, type UsersDeleteExternalResponse as K0, type UsersDeleteExternalResponseData as K1, type UsersDeleteParams as K2, type UsersDeleteQuery as K3, type UsersDeleteResponse as K4, type UsersDeleteResponseData as K5, type UsersGetByEmailBody as K6, type UsersGetByEmailParams as K7, type UsersGetByEmailQuery as K8, type UsersGetByEmailResponse as K9, type VariantAttribute as KA, type VariantAttributeId as KB, type VariantAttributeInsert as KC, type VariantEntitlement as KD, type VariantEntitlementId as KE, type VariantEntitlementInsert as KF, type VariantEntitlementsAssignBody as KG, type VariantEntitlementsAssignParams as KH, type VariantEntitlementsAssignQuery as KI, type VariantEntitlementsAssignResponse as KJ, type VariantEntitlementsAssignResponseData as KK, type VariantEntitlementsGetForVariantBody as KL, type VariantEntitlementsGetForVariantParams as KM, type VariantEntitlementsGetForVariantQuery as KN, type VariantEntitlementsGetForVariantResponse as KO, type VariantEntitlementsGetForVariantResponseData as KP, type VariantEntitlementsGetVariantsUsingBody as KQ, type VariantEntitlementsGetVariantsUsingParams as KR, type VariantEntitlementsGetVariantsUsingQuery as KS, type VariantEntitlementsGetVariantsUsingResponse as KT, type VariantEntitlementsGetVariantsUsingResponseData as KU, type VariantEntitlementsRemoveBody as KV, type VariantEntitlementsRemoveParams as KW, type VariantEntitlementsRemoveQuery as KX, type VariantEntitlementsRemoveResponse as KY, type VariantEntitlementsRemoveResponseData as KZ, type VariantFulfillmentConfig as K_, type UsersGetByEmailResponseData as Ka, type UsersGetByExternalUserIdBody as Kb, type UsersGetByExternalUserIdParams as Kc, type UsersGetByExternalUserIdQuery as Kd, type UsersGetByExternalUserIdResponse as Ke, type UsersGetByExternalUserIdResponseData as Kf, type UsersGetByIdBody as Kg, type UsersGetByIdParams as Kh, type UsersGetByIdQuery as Ki, type UsersGetByIdResponse as Kj, type UsersGetByIdResponseData as Kk, type UsersListBody as Kl, type UsersListParams as Km, type UsersListQuery as Kn, type UsersListResponse as Ko, type UsersListResponseData as Kp, type UsersSearchBody as Kq, type UsersSearchParams as Kr, type UsersSearchQuery as Ks, type UsersSearchResponse as Kt, type UsersSearchResponseData as Ku, type UsersUpdateExternalBody as Kv, type UsersUpdateExternalParams as Kw, type UsersUpdateExternalQuery as Kx, type UsersUpdateExternalResponse as Ky, type UsersUpdateExternalResponseData as Kz, type AppLogLevel as L, type WebhooksDeleteQuery as L$, type VariantFulfillmentConfigInsert as L0, type VariantPhysicalProperties as L1, type VariantPhysicalPropertiesId as L2, type VariantPhysicalPropertiesInsert as L3, type VariantShipmentConfig as L4, type VariantShipmentConfigId as L5, type VariantShipmentConfigInsert as L6, type VariantShippingConfigsCreateBody as L7, type VariantShippingConfigsCreateParams as L8, type VariantShippingConfigsCreateQuery as L9, type VariantShippingPhysicalPropertiesDeleteResponseData as LA, type VariantShippingPhysicalPropertiesGetBody as LB, type VariantShippingPhysicalPropertiesGetParams as LC, type VariantShippingPhysicalPropertiesGetQuery as LD, type VariantShippingPhysicalPropertiesGetResponse as LE, type VariantShippingPhysicalPropertiesGetResponseData as LF, type VariantShippingPhysicalPropertiesUpdateBody as LG, type VariantShippingPhysicalPropertiesUpdateParams as LH, type VariantShippingPhysicalPropertiesUpdateQuery as LI, type VariantShippingPhysicalPropertiesUpdateResponse as LJ, type VariantShippingPhysicalPropertiesUpdateResponseData as LK, type VariantShippingProviderConfig as LL, type VariantShippingProviderConfigId as LM, type VariantShippingProviderConfigInsert as LN, type VariantType as LO, type Video as LP, type VideoId as LQ, type Webhook as LR, type WebhookId as LS, type WebhookStatus as LT, type WebhooksDeleteBody as LU, type WebhooksDeleteBulkBody as LV, type WebhooksDeleteBulkParams as LW, type WebhooksDeleteBulkQuery as LX, type WebhooksDeleteBulkResponse as LY, type WebhooksDeleteBulkResponseData as LZ, type WebhooksDeleteParams as L_, type VariantShippingConfigsCreateResponse as La, type VariantShippingConfigsCreateResponseData as Lb, type VariantShippingConfigsDeleteBody as Lc, type VariantShippingConfigsDeleteParams as Ld, type VariantShippingConfigsDeleteQuery as Le, type VariantShippingConfigsDeleteResponse as Lf, type VariantShippingConfigsDeleteResponseData as Lg, type VariantShippingConfigsListByVariantBody as Lh, type VariantShippingConfigsListByVariantParams as Li, type VariantShippingConfigsListByVariantQuery as Lj, type VariantShippingConfigsListByVariantResponse as Lk, type VariantShippingConfigsListByVariantResponseData as Ll, type VariantShippingConfigsUpdateBody as Lm, type VariantShippingConfigsUpdateParams as Ln, type VariantShippingConfigsUpdateQuery as Lo, type VariantShippingConfigsUpdateResponse as Lp, type VariantShippingConfigsUpdateResponseData as Lq, type VariantShippingPhysicalPropertiesCreateBody as Lr, type VariantShippingPhysicalPropertiesCreateParams as Ls, type VariantShippingPhysicalPropertiesCreateQuery as Lt, type VariantShippingPhysicalPropertiesCreateResponse as Lu, type VariantShippingPhysicalPropertiesCreateResponseData as Lv, type VariantShippingPhysicalPropertiesDeleteBody as Lw, type VariantShippingPhysicalPropertiesDeleteParams as Lx, type VariantShippingPhysicalPropertiesDeleteQuery as Ly, type VariantShippingPhysicalPropertiesDeleteResponse as Lz, type AppMetricCatalog as M, type WebhooksDeleteResponse as M0, type WebhooksDeleteResponseData as M1, type WebhooksListBody as M2, type WebhooksListParams as M3, type WebhooksListQuery as M4, type WebhooksListResponse as M5, type WebhooksListResponseData as M6, type WorkflowCreatedBy as M7, type WorkflowQueue as M8, type WorkflowQueueId as M9, apiRoutes_media_sets as MA, apiRoutes_oauth2 as MB, apiRoutes_orders as MC, apiRoutes_payments as MD, apiRoutes_paypal as ME, apiRoutes_permissions as MF, apiRoutes_product_categories as MG, apiRoutes_product_items as MH, apiRoutes_products as MI, apiRoutes_roles as MJ, apiRoutes_sender_brands as MK, apiRoutes_settings as ML, apiRoutes_status_changes as MM, apiRoutes_stripe as MN, apiRoutes_subscriptions as MO, apiRoutes_suppliers as MP, apiRoutes_tickets as MQ, apiRoutes_translations as MR, apiRoutes_usage_reports as MS, apiRoutes_user_activity as MT, apiRoutes_users as MU, apiRoutes_variant_entitlements as MV, apiRoutes_webhooks as MW, type WorkflowQueueStatus as Ma, apiRoutes as Mb, apiRoutes_api as Mc, apiRoutes_app_info as Md, apiRoutes_assigned_entitlements as Me, apiRoutes_attribute_assignments as Mf, apiRoutes_attribute_categories as Mg, apiRoutes_attribute_options as Mh, apiRoutes_attributes as Mi, apiRoutes_b2b as Mj, apiRoutes_brands as Mk, apiRoutes_credits as Ml, apiRoutes_customers as Mm, apiRoutes_data_exchange as Mn, apiRoutes_designs as Mo, apiRoutes_discount_codes as Mp, apiRoutes_entitlement_limits as Mq, apiRoutes_entitlements as Mr, apiRoutes_events as Ms, apiRoutes_external_apps as Mt, apiRoutes_fulfillment as Mu, apiRoutes_iap as Mv, apiRoutes_invoices as Mw, apiRoutes_item_variants as Mx, apiRoutes_lager_inventory as My, apiRoutes_logs as Mz, type AppMetricCatalogId as N, type AppMetricCatalogInsert as O, type AppOveragePricingRule as P, type AppOveragePricingRuleId as Q, type AppOveragePricingRuleInsert as R, type AppSettings as S, type AppSettingsId as T, type AppSettingsInsert as U, type AppSettingsType as V, type ArtifactType as W, type AssignedEntitlement as X, type AssignedEntitlementId as Y, type AssignedEntitlementInsert as Z, type AssignedEntitlementsCreateBody as _, type AddressId as a, type AttributeAssignmentsRemoveProductResponseData as a$, type AssignedEntitlementsCreateQuery as a0, type AssignedEntitlementsCreateResponse as a1, type AssignedEntitlementsCreateResponseData as a2, type AssignedEntitlementsListByCustomerBody as a3, type AssignedEntitlementsListByCustomerParams as a4, type AssignedEntitlementsListByCustomerQuery as a5, type AssignedEntitlementsListByCustomerResponse as a6, type AssignedEntitlementsListByCustomerResponseData as a7, type AssignedEntitlementsListByEntitlementBody as a8, type AssignedEntitlementsListByEntitlementParams as a9, type AttributeAssignmentsAssignVariantQuery as aA, type AttributeAssignmentsAssignVariantResponse as aB, type AttributeAssignmentsAssignVariantResponseData as aC, type AttributeAssignmentsEditItemBody as aD, type AttributeAssignmentsEditItemParams as aE, type AttributeAssignmentsEditItemQuery as aF, type AttributeAssignmentsEditItemResponse as aG, type AttributeAssignmentsEditItemResponseData as aH, type AttributeAssignmentsEditProductBody as aI, type AttributeAssignmentsEditProductParams as aJ, type AttributeAssignmentsEditProductQuery as aK, type AttributeAssignmentsEditProductResponse as aL, type AttributeAssignmentsEditProductResponseData as aM, type AttributeAssignmentsEditVariantBody as aN, type AttributeAssignmentsEditVariantParams as aO, type AttributeAssignmentsEditVariantQuery as aP, type AttributeAssignmentsEditVariantResponse as aQ, type AttributeAssignmentsEditVariantResponseData as aR, type AttributeAssignmentsRemoveItemBody as aS, type AttributeAssignmentsRemoveItemParams as aT, type AttributeAssignmentsRemoveItemQuery as aU, type AttributeAssignmentsRemoveItemResponse as aV, type AttributeAssignmentsRemoveItemResponseData as aW, type AttributeAssignmentsRemoveProductBody as aX, type AttributeAssignmentsRemoveProductParams as aY, type AttributeAssignmentsRemoveProductQuery as aZ, type AttributeAssignmentsRemoveProductResponse as a_, type AssignedEntitlementsListByEntitlementQuery as aa, type AssignedEntitlementsListByEntitlementResponse as ab, type AssignedEntitlementsListByEntitlementResponseData as ac, type AssignedEntitlementsRevokeBody as ad, type AssignedEntitlementsRevokeParams as ae, type AssignedEntitlementsRevokeQuery as af, type AssignedEntitlementsRevokeResponse as ag, type AssignedEntitlementsRevokeResponseData as ah, type AssignedEntitlementsUpdateValidityBody as ai, type AssignedEntitlementsUpdateValidityParams as aj, type AssignedEntitlementsUpdateValidityQuery as ak, type AssignedEntitlementsUpdateValidityResponse as al, type AssignedEntitlementsUpdateValidityResponseData as am, type Attribute as an, type AttributeAssignmentsAssignItemBody as ao, type AttributeAssignmentsAssignItemParams as ap, type AttributeAssignmentsAssignItemQuery as aq, type AttributeAssignmentsAssignItemResponse as ar, type AttributeAssignmentsAssignItemResponseData as as, type AttributeAssignmentsAssignProductBody as at, type AttributeAssignmentsAssignProductParams as au, type AttributeAssignmentsAssignProductQuery as av, type AttributeAssignmentsAssignProductResponse as aw, type AttributeAssignmentsAssignProductResponseData as ax, type AttributeAssignmentsAssignVariantBody as ay, type AttributeAssignmentsAssignVariantParams as az, type AddressInsert as b, type AttributesCreateParams as b$, type AttributeAssignmentsRemoveVariantBody as b0, type AttributeAssignmentsRemoveVariantParams as b1, type AttributeAssignmentsRemoveVariantQuery as b2, type AttributeAssignmentsRemoveVariantResponse as b3, type AttributeAssignmentsRemoveVariantResponseData as b4, type AttributeCategoriesCreateBody as b5, type AttributeCategoriesCreateParams as b6, type AttributeCategoriesCreateQuery as b7, type AttributeCategoriesCreateResponse as b8, type AttributeCategoriesCreateResponseData as b9, type AttributeOptionTranslated as bA, type AttributeOptionsCreateBody as bB, type AttributeOptionsCreateParams as bC, type AttributeOptionsCreateQuery as bD, type AttributeOptionsCreateResponse as bE, type AttributeOptionsCreateResponseData as bF, type AttributeOptionsDeleteBody as bG, type AttributeOptionsDeleteParams as bH, type AttributeOptionsDeleteQuery as bI, type AttributeOptionsDeleteResponse as bJ, type AttributeOptionsDeleteResponseData as bK, type AttributeOptionsListByAttributeBody as bL, type AttributeOptionsListByAttributeParams as bM, type AttributeOptionsListByAttributeQuery as bN, type AttributeOptionsListByAttributeResponse as bO, type AttributeOptionsListByAttributeResponseData as bP, type AttributeOptionsUpdateBody as bQ, type AttributeOptionsUpdateParams as bR, type AttributeOptionsUpdateQuery as bS, type AttributeOptionsUpdateResponse as bT, type AttributeOptionsUpdateResponseData as bU, type AttributeTranslated as bV, type AttributeWithOptions as bW, type AttributeWithOptionsTranslated as bX, type AttributeWithValue as bY, type AttributeWithValueTranslated as bZ, type AttributesCreateBody as b_, type AttributeCategoriesDeleteBody as ba, type AttributeCategoriesDeleteParams as bb, type AttributeCategoriesDeleteQuery as bc, type AttributeCategoriesDeleteResponse as bd, type AttributeCategoriesDeleteResponseData as be, type AttributeCategoriesListBody as bf, type AttributeCategoriesListParams as bg, type AttributeCategoriesListQuery as bh, type AttributeCategoriesListResponse as bi, type AttributeCategoriesListResponseData as bj, type AttributeCategoriesUpdateBody as bk, type AttributeCategoriesUpdateParams as bl, type AttributeCategoriesUpdateQuery as bm, type AttributeCategoriesUpdateResponse as bn, type AttributeCategoriesUpdateResponseData as bo, type AttributeCategory as bp, type AttributeCategoryId as bq, type AttributeCategoryInsert as br, type AttributeFeature as bs, type AttributeId as bt, type AttributeInputType as bu, type AttributeInsert as bv, type AttributeInsertTranslated as bw, type AttributeOption as bx, type AttributeOptionId as by, type AttributeOptionInsert as bz, type ApiEnvelope as c, type BrandsDeleteResponse as c$, type AttributesCreateQuery as c0, type AttributesCreateResponse as c1, type AttributesCreateResponseData as c2, type AttributesDeleteBody as c3, type AttributesDeleteParams as c4, type AttributesDeleteQuery as c5, type AttributesDeleteResponse as c6, type AttributesDeleteResponseData as c7, type AttributesGetByIdBody as c8, type AttributesGetByIdParams as c9, type AttributesListResponse as cA, type AttributesListResponseData as cB, type AttributesUpdateBody as cC, type AttributesUpdateParams as cD, type AttributesUpdateQuery as cE, type AttributesUpdateResponse as cF, type AttributesUpdateResponseData as cG, type B2BCheckoutSession as cH, type B2BCheckoutSessionInsert as cI, type B2bCreateCheckoutSessionBody as cJ, type B2bCreateCheckoutSessionParams as cK, type B2bCreateCheckoutSessionQuery as cL, type B2bCreateCheckoutSessionResponse as cM, type B2bCreateCheckoutSessionResponseData as cN, type Brand as cO, type BrandId as cP, type BrandInsert as cQ, type BrandKind as cR, type BrandTranslated as cS, type BrandsCreateBody as cT, type BrandsCreateParams as cU, type BrandsCreateQuery as cV, type BrandsCreateResponse as cW, type BrandsCreateResponseData as cX, type BrandsDeleteBody as cY, type BrandsDeleteParams as cZ, type BrandsDeleteQuery as c_, type AttributesGetByIdQuery as ca, type AttributesGetByIdResponse as cb, type AttributesGetByIdResponseData as cc, type AttributesGetFullBody as cd, type AttributesGetFullParams as ce, type AttributesGetFullQuery as cf, type AttributesGetFullResponse as cg, type AttributesGetFullResponseData as ch, type AttributesGetFullTranslatedBody as ci, type AttributesGetFullTranslatedParams as cj, type AttributesGetFullTranslatedQuery as ck, type AttributesGetFullTranslatedResponse as cl, type AttributesGetFullTranslatedResponseData as cm, type AttributesListBody as cn, type AttributesListFullBody as co, type AttributesListFullParams as cp, type AttributesListFullQuery as cq, type AttributesListFullResponse as cr, type AttributesListFullResponseData as cs, type AttributesListFullTranslatedBody as ct, type AttributesListFullTranslatedParams as cu, type AttributesListFullTranslatedQuery as cv, type AttributesListFullTranslatedResponse as cw, type AttributesListFullTranslatedResponseData as cx, type AttributesListParams as cy, type AttributesListQuery as cz, type ApiRequest as d, type CreditsListPoolsQuery as d$, type BrandsDeleteResponseData as d0, type BrandsGetByIdBody as d1, type BrandsGetByIdParams as d2, type BrandsGetByIdQuery as d3, type BrandsGetByIdResponse as d4, type BrandsGetByIdResponseData as d5, type BrandsGetByIdTranslatedBody as d6, type BrandsGetByIdTranslatedParams as d7, type BrandsGetByIdTranslatedQuery as d8, type BrandsGetByIdTranslatedResponse as d9, type CreditsAdjustPoolBody as dA, type CreditsAdjustPoolParams as dB, type CreditsAdjustPoolQuery as dC, type CreditsAdjustPoolResponse as dD, type CreditsAdjustPoolResponseData as dE, type CreditsBalanceBody as dF, type CreditsBalanceParams as dG, type CreditsBalanceQuery as dH, type CreditsBalanceResponse as dI, type CreditsBalanceResponseData as dJ, type CreditsConsumeBody as dK, type CreditsConsumeParams as dL, type CreditsConsumeQuery as dM, type CreditsConsumeResponse as dN, type CreditsConsumeResponseData as dO, type CreditsCreatePoolBody as dP, type CreditsCreatePoolParams as dQ, type CreditsCreatePoolQuery as dR, type CreditsCreatePoolResponse as dS, type CreditsCreatePoolResponseData as dT, type CreditsGetPoolBody as dU, type CreditsGetPoolParams as dV, type CreditsGetPoolQuery as dW, type CreditsGetPoolResponse as dX, type CreditsGetPoolResponseData as dY, type CreditsListPoolsBody as dZ, type CreditsListPoolsParams as d_, type BrandsGetByIdTranslatedResponseData as da, type BrandsListBody as db, type BrandsListParams as dc, type BrandsListQuery as dd, type BrandsListResponse as de, type BrandsListResponseData as df, type BrandsListTranslatedBody as dg, type BrandsListTranslatedParams as dh, type BrandsListTranslatedQuery as di, type BrandsListTranslatedResponse as dj, type BrandsListTranslatedResponseData as dk, type BrandsUpdateBody as dl, type BrandsUpdateParams as dm, type BrandsUpdateQuery as dn, type BrandsUpdateResponse as dp, type BrandsUpdateResponseData as dq, type ContractNotReady as dr, type CreditPool as ds, type CreditPoolId as dt, type CreditPoolInsert as du, type CreditTransaction as dv, type CreditTransactionId as dw, type CreditTransactionInsert as dx, type CreditTransactionType as dy, type CreditType as dz, type ApiResponse as e, type CustomersMergePreviewResponseData as e$, type CreditsListPoolsResponse as e0, type CreditsListPoolsResponseData as e1, type CreditsListTransactionsBody as e2, type CreditsListTransactionsParams as e3, type CreditsListTransactionsQuery as e4, type CreditsListTransactionsResponse as e5, type CreditsListTransactionsResponseData as e6, type Customer as e7, type CustomerId as e8, type CustomerIdentityLink as e9, type CustomersExecuteMergeQuery as eA, type CustomersExecuteMergeResponse as eB, type CustomersExecuteMergeResponseData as eC, type CustomersGetByIdBody as eD, type CustomersGetByIdFullBody as eE, type CustomersGetByIdFullParams as eF, type CustomersGetByIdFullQuery as eG, type CustomersGetByIdFullResponse as eH, type CustomersGetByIdFullResponseData as eI, type CustomersGetByIdParams as eJ, type CustomersGetByIdQuery as eK, type CustomersGetByIdResponse as eL, type CustomersGetByIdResponseData as eM, type CustomersGetDependenciesBody as eN, type CustomersGetDependenciesParams as eO, type CustomersGetDependenciesQuery as eP, type CustomersGetDependenciesResponse as eQ, type CustomersGetDependenciesResponseData as eR, type CustomersGetIdentityLinksBody as eS, type CustomersGetIdentityLinksParams as eT, type CustomersGetIdentityLinksQuery as eU, type CustomersGetIdentityLinksResponse as eV, type CustomersGetIdentityLinksResponseData as eW, type CustomersMergePreviewBody as eX, type CustomersMergePreviewParams as eY, type CustomersMergePreviewQuery as eZ, type CustomersMergePreviewResponse as e_, type CustomerIdentityLinkId as ea, type CustomerIdentityLinkInsert as eb, type CustomerInsert as ec, type CustomerRelation as ed, type CustomerRelationId as ee, type CustomerRelationInsert as ef, type CustomerSubscription as eg, type CustomerSubscriptionId as eh, type CustomerSubscriptionInsert as ei, type CustomersCreateRelationBody as ej, type CustomersCreateRelationParams as ek, type CustomersCreateRelationQuery as el, type CustomersCreateRelationResponse as em, type CustomersCreateRelationResponseData as en, type CustomersDeleteExternalAccountBody as eo, type CustomersDeleteExternalAccountParams as ep, type CustomersDeleteExternalAccountQuery as eq, type CustomersDeleteExternalAccountResponse as er, type CustomersDeleteExternalAccountResponseData as es, type CustomersDeleteRelationBody as et, type CustomersDeleteRelationParams as eu, type CustomersDeleteRelationQuery as ev, type CustomersDeleteRelationResponse as ew, type CustomersDeleteRelationResponseData as ex, type CustomersExecuteMergeBody as ey, type CustomersExecuteMergeParams as ez, type ApiResponseData as f, type DesignBlanksGetByDesignResponseData as f$, type CustomersMergeSuggestionsBody as f0, type CustomersMergeSuggestionsParams as f1, type CustomersMergeSuggestionsQuery as f2, type CustomersMergeSuggestionsResponse as f3, type CustomersMergeSuggestionsResponseData as f4, type CustomersSafeDeleteBody as f5, type CustomersSafeDeleteParams as f6, type CustomersSafeDeleteQuery as f7, type CustomersSafeDeleteResponse as f8, type CustomersSafeDeleteResponseData as f9, type DataExchangeColumnDefinition as fA, type DataExchangeColumnType as fB, type DataExchangeId as fC, type DataExchangeInsert as fD, type DataExchangeMapping as fE, type DataExchangeStatus as fF, type DataExchangeTable as fG, type DataExchangeTableConfig as fH, type DataExchangeTableId as fI, type Design as fJ, type DesignBlankCompatibility as fK, type DesignBlankCompatibilityId as fL, type DesignBlankCompatibilityInsert as fM, type DesignBlanksAttachBody as fN, type DesignBlanksAttachParams as fO, type DesignBlanksAttachQuery as fP, type DesignBlanksAttachResponse as fQ, type DesignBlanksAttachResponseData as fR, type DesignBlanksDetachBody as fS, type DesignBlanksDetachParams as fT, type DesignBlanksDetachQuery as fU, type DesignBlanksDetachResponse as fV, type DesignBlanksDetachResponseData as fW, type DesignBlanksGetByDesignBody as fX, type DesignBlanksGetByDesignParams as fY, type DesignBlanksGetByDesignQuery as fZ, type DesignBlanksGetByDesignResponse as f_, type CustomersSearchBody as fa, type CustomersSearchParams as fb, type CustomersSearchQuery as fc, type CustomersSearchResponse as fd, type CustomersSearchResponseData as fe, type CustomersUpdateBody as ff, type CustomersUpdateParams as fg, type CustomersUpdatePayAsYouGoBody as fh, type CustomersUpdatePayAsYouGoParams as fi, type CustomersUpdatePayAsYouGoQuery as fj, type CustomersUpdatePayAsYouGoResponse as fk, type CustomersUpdatePayAsYouGoResponseData as fl, type CustomersUpdateQuery as fm, type CustomersUpdateResponse as fn, type CustomersUpdateResponseData as fo, type CustomersUpsertExternalAccountBody as fp, type CustomersUpsertExternalAccountParams as fq, type CustomersUpsertExternalAccountQuery as fr, type CustomersUpsertExternalAccountResponse as fs, type CustomersUpsertExternalAccountResponseData as ft, type DELETEApiAmpProxyKeyBody as fu, type DELETEApiAmpProxyKeyParams as fv, type DELETEApiAmpProxyKeyQuery as fw, type DELETEApiAmpProxyKeyResponse as fx, type DELETEApiAmpProxyKeyResponseData as fy, type DataExchange as fz, type ApiRoute as g, type DesignsUpdateQuery as g$, type DesignBlanksGetByProductItemBody as g0, type DesignBlanksGetByProductItemParams as g1, type DesignBlanksGetByProductItemQuery as g2, type DesignBlanksGetByProductItemResponse as g3, type DesignBlanksGetByProductItemResponseData as g4, type DesignColorVariant as g5, type DesignColorVariantId as g6, type DesignColorVariantInsert as g7, type DesignColorVariantsCreateBody as g8, type DesignColorVariantsCreateParams as g9, type DesignsDeleteBody as gA, type DesignsDeleteParams as gB, type DesignsDeleteQuery as gC, type DesignsDeleteResponse as gD, type DesignsDeleteResponseData as gE, type DesignsGetByIdBody as gF, type DesignsGetByIdParams as gG, type DesignsGetByIdQuery as gH, type DesignsGetByIdResponse as gI, type DesignsGetByIdResponseData as gJ, type DesignsGetByIdTranslatedBody as gK, type DesignsGetByIdTranslatedParams as gL, type DesignsGetByIdTranslatedQuery as gM, type DesignsGetByIdTranslatedResponse as gN, type DesignsGetByIdTranslatedResponseData as gO, type DesignsListBody as gP, type DesignsListParams as gQ, type DesignsListQuery as gR, type DesignsListResponse as gS, type DesignsListResponseData as gT, type DesignsListTranslatedBody as gU, type DesignsListTranslatedParams as gV, type DesignsListTranslatedQuery as gW, type DesignsListTranslatedResponse as gX, type DesignsListTranslatedResponseData as gY, type DesignsUpdateBody as gZ, type DesignsUpdateParams as g_, type DesignColorVariantsCreateQuery as ga, type DesignColorVariantsCreateResponse as gb, type DesignColorVariantsCreateResponseData as gc, type DesignColorVariantsDeleteBody as gd, type DesignColorVariantsDeleteParams as ge, type DesignColorVariantsDeleteQuery as gf, type DesignColorVariantsDeleteResponse as gg, type DesignColorVariantsDeleteResponseData as gh, type DesignColorVariantsGetByDesignBody as gi, type DesignColorVariantsGetByDesignParams as gj, type DesignColorVariantsGetByDesignQuery as gk, type DesignColorVariantsGetByDesignResponse as gl, type DesignColorVariantsGetByDesignResponseData as gm, type DesignColorVariantsUpdateBody as gn, type DesignColorVariantsUpdateParams as go, type DesignColorVariantsUpdateQuery as gp, type DesignColorVariantsUpdateResponse as gq, type DesignColorVariantsUpdateResponseData as gr, type DesignId as gs, type DesignInsert as gt, type DesignTranslated as gu, type DesignsCreateBody as gv, type DesignsCreateParams as gw, type DesignsCreateQuery as gx, type DesignsCreateResponse as gy, type DesignsCreateResponseData as gz, type ApiRouteKey as h, type EntitlementLimitsCreateBody as h$, type DesignsUpdateResponse as h0, type DesignsUpdateResponseData as h1, type DigitalType as h2, type DiscountCode as h3, type DiscountCodeDuration as h4, type DiscountCodeId as h5, type DiscountCodeInsert as h6, type DiscountCodeRedemption as h7, type DiscountCodeRedemptionId as h8, type DiscountCodeRedemptionInsert as h9, type DiscountCodesAdminReactivateQuery as hA, type DiscountCodesAdminReactivateResponse as hB, type DiscountCodesAdminReactivateResponseData as hC, type DiscountCodesAdminRedemptionsBody as hD, type DiscountCodesAdminRedemptionsParams as hE, type DiscountCodesAdminRedemptionsQuery as hF, type DiscountCodesAdminRedemptionsResponse as hG, type DiscountCodesAdminRedemptionsResponseData as hH, type DiscountCodesAdminSearchBody as hI, type DiscountCodesAdminSearchParams as hJ, type DiscountCodesAdminSearchQuery as hK, type DiscountCodesAdminSearchResponse as hL, type DiscountCodesAdminSearchResponseData as hM, type DiscountCodesAdminUpdateBody as hN, type DiscountCodesAdminUpdateParams as hO, type DiscountCodesAdminUpdateQuery as hP, type DiscountCodesAdminUpdateResponse as hQ, type DiscountCodesAdminUpdateResponseData as hR, type DiscountCodesValidateBody as hS, type DiscountCodesValidateParams as hT, type DiscountCodesValidateQuery as hU, type DiscountCodesValidateResponse as hV, type DiscountCodesValidateResponseData as hW, type EmailStatus as hX, type EntitlementLimitConfig as hY, type EntitlementLimitConfigId as hZ, type EntitlementLimitConfigInsert as h_, type DiscountCodeScope as ha, type DiscountCodeType as hb, type DiscountCodeVariant as hc, type DiscountCodeVariantInsert as hd, type DiscountCodesAdminCreateBody as he, type DiscountCodesAdminCreateParams as hf, type DiscountCodesAdminCreateQuery as hg, type DiscountCodesAdminCreateResponse as hh, type DiscountCodesAdminCreateResponseData as hi, type DiscountCodesAdminDeactivateBody as hj, type DiscountCodesAdminDeactivateParams as hk, type DiscountCodesAdminDeactivateQuery as hl, type DiscountCodesAdminDeactivateResponse as hm, type DiscountCodesAdminDeactivateResponseData as hn, type DiscountCodesAdminDeleteBody as ho, type DiscountCodesAdminDeleteParams as hp, type DiscountCodesAdminDeleteQuery as hq, type DiscountCodesAdminDeleteResponse as hr, type DiscountCodesAdminDeleteResponseData as hs, type DiscountCodesAdminGetByIdBody as ht, type DiscountCodesAdminGetByIdParams as hu, type DiscountCodesAdminGetByIdQuery as hv, type DiscountCodesAdminGetByIdResponse as hw, type DiscountCodesAdminGetByIdResponseData as hx, type DiscountCodesAdminReactivateBody as hy, type DiscountCodesAdminReactivateParams as hz, type AppEntitlementType as i, type EventsAssignVariantsBody as i$, type EntitlementLimitsCreateParams as i0, type EntitlementLimitsCreateQuery as i1, type EntitlementLimitsCreateResponse as i2, type EntitlementLimitsCreateResponseData as i3, type EntitlementLimitsDeleteBody as i4, type EntitlementLimitsDeleteParams as i5, type EntitlementLimitsDeleteQuery as i6, type EntitlementLimitsDeleteResponse as i7, type EntitlementLimitsDeleteResponseData as i8, type EntitlementLimitsListBody as i9, type EntitlementsGetAssignedParams as iA, type EntitlementsGetAssignedQuery as iB, type EntitlementsGetAssignedResponse as iC, type EntitlementsGetAssignedResponseData as iD, type EntitlementsGetByIdBody as iE, type EntitlementsGetByIdParams as iF, type EntitlementsGetByIdQuery as iG, type EntitlementsGetByIdResponse as iH, type EntitlementsGetByIdResponseData as iI, type EntitlementsGetUserEntitlementsBody as iJ, type EntitlementsGetUserEntitlementsParams as iK, type EntitlementsGetUserEntitlementsQuery as iL, type EntitlementsGetUserEntitlementsResponse as iM, type EntitlementsGetUserEntitlementsResponseData as iN, type EntitlementsListBody as iO, type EntitlementsListParams as iP, type EntitlementsListQuery as iQ, type EntitlementsListResponse as iR, type EntitlementsListResponseData as iS, type Event as iT, type EventId as iU, type EventInsert as iV, type EventStatus as iW, type EventTranslated as iX, type EventVariant as iY, type EventVariantId as iZ, type EventVariantInsert as i_, type EntitlementLimitsListParams as ia, type EntitlementLimitsListQuery as ib, type EntitlementLimitsListResponse as ic, type EntitlementLimitsListResponseData as id, type EntitlementLimitsResolveBody as ie, type EntitlementLimitsResolveParams as ig, type EntitlementLimitsResolveQuery as ih, type EntitlementLimitsResolveResponse as ii, type EntitlementLimitsResolveResponseData as ij, type EntitlementLimitsUpdateBody as ik, type EntitlementLimitsUpdateParams as il, type EntitlementLimitsUpdateQuery as im, type EntitlementLimitsUpdateResponse as io, type EntitlementLimitsUpdateResponseData as ip, type EntitlementSyncLink as iq, type EntitlementSyncLinkId as ir, type EntitlementSyncOperation as is, type EntitlementSyncType as it, type EntitlementsGetAllBody as iu, type EntitlementsGetAllParams as iv, type EntitlementsGetAllQuery as iw, type EntitlementsGetAllResponse as ix, type EntitlementsGetAllResponseData as iy, type EntitlementsGetAssignedBody as iz, type AppInfoFiltersGetBody as j, type EventsLocationsDeleteResponseData as j$, type EventsAssignVariantsParams as j0, type EventsAssignVariantsQuery as j1, type EventsAssignVariantsResponse as j2, type EventsAssignVariantsResponseData as j3, type EventsCreateBody as j4, type EventsCreateParams as j5, type EventsCreateQuery as j6, type EventsCreateResponse as j7, type EventsCreateResponseData as j8, type EventsDeleteBody as j9, type EventsGetByIdQuery as jA, type EventsGetByIdResponse as jB, type EventsGetByIdResponseData as jC, type EventsListBody as jD, type EventsListByVariantBody as jE, type EventsListByVariantParams as jF, type EventsListByVariantQuery as jG, type EventsListByVariantResponse as jH, type EventsListByVariantResponseData as jI, type EventsListParams as jJ, type EventsListQuery as jK, type EventsListResponse as jL, type EventsListResponseData as jM, type EventsListVariantsBody as jN, type EventsListVariantsParams as jO, type EventsListVariantsQuery as jP, type EventsListVariantsResponse as jQ, type EventsListVariantsResponseData as jR, type EventsLocationsCreateBody as jS, type EventsLocationsCreateParams as jT, type EventsLocationsCreateQuery as jU, type EventsLocationsCreateResponse as jV, type EventsLocationsCreateResponseData as jW, type EventsLocationsDeleteBody as jX, type EventsLocationsDeleteParams as jY, type EventsLocationsDeleteQuery as jZ, type EventsLocationsDeleteResponse as j_, type EventsDeleteParams as ja, type EventsDeleteQuery as jb, type EventsDeleteResponse as jc, type EventsDeleteResponseData as jd, type EventsExternalCreateBody as je, type EventsExternalCreateParams as jf, type EventsExternalCreateQuery as jg, type EventsExternalCreateResponse as jh, type EventsExternalCreateResponseData as ji, type EventsExternalDeleteBody as jj, type EventsExternalDeleteParams as jk, type EventsExternalDeleteQuery as jl, type EventsExternalDeleteResponse as jm, type EventsExternalDeleteResponseData as jn, type EventsExternalGetByIdBody as jo, type EventsExternalGetByIdParams as jp, type EventsExternalGetByIdQuery as jq, type EventsExternalGetByIdResponse as jr, type EventsExternalGetByIdResponseData as js, type EventsExternalUpdateBody as jt, type EventsExternalUpdateParams as ju, type EventsExternalUpdateQuery as jv, type EventsExternalUpdateResponse as jw, type EventsExternalUpdateResponseData as jx, type EventsGetByIdBody as jy, type EventsGetByIdParams as jz, type AppInfoFiltersGetParams as k, type ExternalAppsFetchUsageOveragesResponseData as k$, type EventsLocationsExternalCreateBody as k0, type EventsLocationsExternalCreateParams as k1, type EventsLocationsExternalCreateQuery as k2, type EventsLocationsExternalCreateResponse as k3, type EventsLocationsExternalCreateResponseData as k4, type EventsLocationsExternalDeleteBody as k5, type EventsLocationsExternalDeleteParams as k6, type EventsLocationsExternalDeleteQuery as k7, type EventsLocationsExternalDeleteResponse as k8, type EventsLocationsExternalDeleteResponseData as k9, type EventsUpdateParams as kA, type EventsUpdateQuery as kB, type EventsUpdateResponse as kC, type EventsUpdateResponseData as kD, type ExternalApp as kE, type ExternalAppAuthMethod as kF, type ExternalAppId as kG, type ExternalAppInsert as kH, type ExternalAppsCreateBody as kI, type ExternalAppsCreateParams as kJ, type ExternalAppsCreateQuery as kK, type ExternalAppsCreateResponse as kL, type ExternalAppsCreateResponseData as kM, type ExternalAppsDeleteBody as kN, type ExternalAppsDeleteParams as kO, type ExternalAppsDeleteQuery as kP, type ExternalAppsDeleteResponse as kQ, type ExternalAppsDeleteResponseData as kR, type ExternalAppsFetchEntitlementsBody as kS, type ExternalAppsFetchEntitlementsParams as kT, type ExternalAppsFetchEntitlementsQuery as kU, type ExternalAppsFetchEntitlementsResponse as kV, type ExternalAppsFetchEntitlementsResponseData as kW, type ExternalAppsFetchUsageOveragesBody as kX, type ExternalAppsFetchUsageOveragesParams as kY, type ExternalAppsFetchUsageOveragesQuery as kZ, type ExternalAppsFetchUsageOveragesResponse as k_, type EventsLocationsExternalUpdateBody as ka, type EventsLocationsExternalUpdateParams as kb, type EventsLocationsExternalUpdateQuery as kc, type EventsLocationsExternalUpdateResponse as kd, type EventsLocationsExternalUpdateResponseData as ke, type EventsLocationsGetByIdBody as kf, type EventsLocationsGetByIdParams as kg, type EventsLocationsGetByIdQuery as kh, type EventsLocationsGetByIdResponse as ki, type EventsLocationsGetByIdResponseData as kj, type EventsLocationsListBody as kk, type EventsLocationsListParams as kl, type EventsLocationsListQuery as km, type EventsLocationsListResponse as kn, type EventsLocationsListResponseData as ko, type EventsLocationsUpdateBody as kp, type EventsLocationsUpdateParams as kq, type EventsLocationsUpdateQuery as kr, type EventsLocationsUpdateResponse as ks, type EventsLocationsUpdateResponseData as kt, type EventsRevokeVariantBody as ku, type EventsRevokeVariantParams as kv, type EventsRevokeVariantQuery as kw, type EventsRevokeVariantResponse as kx, type EventsRevokeVariantResponseData as ky, type EventsUpdateBody as kz, type AppInfoFiltersGetQuery as l, type ExternalCustomerInsert as l$, type ExternalAppsGeneratePublicKeyBody as l0, type ExternalAppsGeneratePublicKeyParams as l1, type ExternalAppsGeneratePublicKeyQuery as l2, type ExternalAppsGeneratePublicKeyResponse as l3, type ExternalAppsGeneratePublicKeyResponseData as l4, type ExternalAppsGetAllMetricCatalogsBody as l5, type ExternalAppsGetAllMetricCatalogsParams as l6, type ExternalAppsGetAllMetricCatalogsQuery as l7, type ExternalAppsGetAllMetricCatalogsResponse as l8, type ExternalAppsGetAllMetricCatalogsResponseData as l9, type ExternalAppsServiceStatusParams as lA, type ExternalAppsServiceStatusQuery as lB, type ExternalAppsServiceStatusResponse as lC, type ExternalAppsServiceStatusResponseData as lD, type ExternalAppsServiceUpdateBody as lE, type ExternalAppsServiceUpdateParams as lF, type ExternalAppsServiceUpdateQuery as lG, type ExternalAppsServiceUpdateResponse as lH, type ExternalAppsServiceUpdateResponseData as lI, type ExternalAppsSyncManifestBody as lJ, type ExternalAppsSyncManifestParams as lK, type ExternalAppsSyncManifestQuery as lL, type ExternalAppsSyncManifestResponse as lM, type ExternalAppsSyncManifestResponseData as lN, type ExternalAppsUpdateBody as lO, type ExternalAppsUpdateParams as lP, type ExternalAppsUpdateQuery as lQ, type ExternalAppsUpdateResponse as lR, type ExternalAppsUpdateResponseData as lS, type ExternalAppsValidateEntitlementBody as lT, type ExternalAppsValidateEntitlementParams as lU, type ExternalAppsValidateEntitlementQuery as lV, type ExternalAppsValidateEntitlementResponse as lW, type ExternalAppsValidateEntitlementResponseData as lX, type ExternalCustomer as lY, type ExternalCustomerAppLink as lZ, type ExternalCustomerId as l_, type ExternalAppsGetMetricCatalogBody as la, type ExternalAppsGetMetricCatalogParams as lb, type ExternalAppsGetMetricCatalogQuery as lc, type ExternalAppsGetMetricCatalogResponse as ld, type ExternalAppsGetMetricCatalogResponseData as le, type ExternalAppsListBody as lf, type ExternalAppsListParams as lg, type ExternalAppsListQuery as lh, type ExternalAppsListResponse as li, type ExternalAppsListResponseData as lj, type ExternalAppsServiceDeleteBody as lk, type ExternalAppsServiceDeleteParams as ll, type ExternalAppsServiceDeleteQuery as lm, type ExternalAppsServiceDeleteResponse as ln, type ExternalAppsServiceDeleteResponseData as lo, type ExternalAppsServiceRegisterBody as lp, type ExternalAppsServiceRegisterParams as lq, type ExternalAppsServiceRegisterQuery as lr, type ExternalAppsServiceRegisterResponse as ls, type ExternalAppsServiceRegisterResponseData as lt, type ExternalAppsServiceRotateKeyBody as lu, type ExternalAppsServiceRotateKeyParams as lv, type ExternalAppsServiceRotateKeyQuery as lw, type ExternalAppsServiceRotateKeyResponse as lx, type ExternalAppsServiceRotateKeyResponseData as ly, type ExternalAppsServiceStatusBody as lz, type AppInfoFiltersGetResponse as m, type FulfillmentVariantConfigCreateParams as m$, type ExternalEntitlement as m0, type ExternalEntitlementId as m1, type ExternalEntitlementInsert as m2, type ExternalOrder as m3, type ExternalOrderId as m4, type ExternalOrderStatus as m5, type ExternalShipment as m6, type ExternalShipmentId as m7, type FulfillmentArtifact as m8, type FulfillmentArtifactId as m9, type FulfillmentOrderBody as mA, type FulfillmentOrderParams as mB, type FulfillmentOrderQuery as mC, type FulfillmentOrderResponse as mD, type FulfillmentOrderResponseData as mE, type FulfillmentProvider as mF, type FulfillmentRecord as mG, type FulfillmentRecordId as mH, type FulfillmentRecordInsert as mI, type FulfillmentRetryBody as mJ, type FulfillmentRetryParams as mK, type FulfillmentRetryQuery as mL, type FulfillmentRetryResponse as mM, type FulfillmentRetryResponseData as mN, type FulfillmentStatsBody as mO, type FulfillmentStatsParams as mP, type FulfillmentStatsQuery as mQ, type FulfillmentStatsResponse as mR, type FulfillmentStatsResponseData as mS, type FulfillmentStatus as mT, type FulfillmentType as mU, type FulfillmentVariantConfigByIdBody as mV, type FulfillmentVariantConfigByIdParams as mW, type FulfillmentVariantConfigByIdQuery as mX, type FulfillmentVariantConfigByIdResponse as mY, type FulfillmentVariantConfigByIdResponseData as mZ, type FulfillmentVariantConfigCreateBody as m_, type FulfillmentArtifactInsert as ma, type FulfillmentArtifactsBody as mb, type FulfillmentArtifactsParams as mc, type FulfillmentArtifactsQuery as md, type FulfillmentArtifactsResponse as me, type FulfillmentArtifactsResponseData as mf, type FulfillmentByIdBody as mg, type FulfillmentByIdParams as mh, type FulfillmentByIdQuery as mi, type FulfillmentByIdResponse as mj, type FulfillmentByIdResponseData as mk, type FulfillmentCancelBody as ml, type FulfillmentCancelParams as mm, type FulfillmentCancelQuery as mn, type FulfillmentCancelResponse as mo, type FulfillmentCancelResponseData as mp, type FulfillmentFailedBody as mq, type FulfillmentFailedParams as mr, type FulfillmentFailedQuery as ms, type FulfillmentFailedResponse as mt, type FulfillmentFailedResponseData as mu, type FulfillmentItemBody as mv, type FulfillmentItemParams as mw, type FulfillmentItemQuery as mx, type FulfillmentItemResponse as my, type FulfillmentItemResponseData as mz, type AppInfoFiltersGetResponseData as n, type GETDataExchangeTablesGetDataTableIdParams as n$, type FulfillmentVariantConfigCreateQuery as n0, type FulfillmentVariantConfigCreateResponse as n1, type FulfillmentVariantConfigCreateResponseData as n2, type FulfillmentVariantConfigDeleteBody as n3, type FulfillmentVariantConfigDeleteParams as n4, type FulfillmentVariantConfigDeleteQuery as n5, type FulfillmentVariantConfigDeleteResponse as n6, type FulfillmentVariantConfigDeleteResponseData as n7, type FulfillmentVariantConfigStatsBody as n8, type FulfillmentVariantConfigStatsParams as n9, type GETApiAmpProxyDiscoverResponseData as nA, type GETApiAmpProxyKeyBody as nB, type GETApiAmpProxyKeyParams as nC, type GETApiAmpProxyKeyQuery as nD, type GETApiAmpProxyKeyResponse as nE, type GETApiAmpProxyKeyResponseData as nF, type GETDataExchangeExchangeHistoryTableIdBody as nG, type GETDataExchangeExchangeHistoryTableIdParams as nH, type GETDataExchangeExchangeHistoryTableIdQuery as nI, type GETDataExchangeExchangeHistoryTableIdResponse as nJ, type GETDataExchangeExchangeHistoryTableIdResponseData as nK, type GETDataExchangeExchangeTemplateTableIdBody as nL, type GETDataExchangeExchangeTemplateTableIdParams as nM, type GETDataExchangeExchangeTemplateTableIdQuery as nN, type GETDataExchangeExchangeTemplateTableIdResponse as nO, type GETDataExchangeExchangeTemplateTableIdResponseData as nP, type GETDataExchangeTablesGetAllBody as nQ, type GETDataExchangeTablesGetAllFullBody as nR, type GETDataExchangeTablesGetAllFullParams as nS, type GETDataExchangeTablesGetAllFullQuery as nT, type GETDataExchangeTablesGetAllFullResponse as nU, type GETDataExchangeTablesGetAllFullResponseData as nV, type GETDataExchangeTablesGetAllParams as nW, type GETDataExchangeTablesGetAllQuery as nX, type GETDataExchangeTablesGetAllResponse as nY, type GETDataExchangeTablesGetAllResponseData as nZ, type GETDataExchangeTablesGetDataTableIdBody as n_, type FulfillmentVariantConfigStatsQuery as na, type FulfillmentVariantConfigStatsResponse as nb, type FulfillmentVariantConfigStatsResponseData as nc, type FulfillmentVariantConfigUpdateBody as nd, type FulfillmentVariantConfigUpdateParams as ne, type FulfillmentVariantConfigUpdateQuery as nf, type FulfillmentVariantConfigUpdateResponse as ng, type FulfillmentVariantConfigUpdateResponseData as nh, type FullAttribute as ni, type FullAttributeTranslated as nj, type FullCustomer as nk, type FullFulfillmentRecord as nl, type FullPayment as nm, type FullProduct as nn, type FullProductItem as no, type FullProductItemTranslated as np, type FullProductTranslated as nq, type FullShipmentConfig as nr, type FullShipmentConfigTranslated as ns, type FullShippmentProvider as nt, type FullVariant as nu, type FullVariantTranslated as nv, type GETApiAmpProxyDiscoverBody as nw, type GETApiAmpProxyDiscoverParams as nx, type GETApiAmpProxyDiscoverQuery as ny, type GETApiAmpProxyDiscoverResponse as nz, type AppInfoGetBody as o, type InvoicesOverdueQuery as o$, type GETDataExchangeTablesGetDataTableIdQuery as o0, type GETDataExchangeTablesGetDataTableIdResponse as o1, type GETDataExchangeTablesGetDataTableIdResponseData as o2, type IapAdminHealthBody as o3, type IapAdminHealthParams as o4, type IapAdminHealthQuery as o5, type IapAdminHealthResponse as o6, type IapAdminHealthResponseData as o7, type IapAdminReconcileAllBody as o8, type IapAdminReconcileAllParams as o9, type InvoiceInsert as oA, type InvoiceLineItem as oB, type InvoiceLineItemId as oC, type InvoiceLineItemInsert as oD, type InvoiceStatus as oE, type InvoicesDeleteBody as oF, type InvoicesDeleteParams as oG, type InvoicesDeleteQuery as oH, type InvoicesDeleteResponse as oI, type InvoicesDeleteResponseData as oJ, type InvoicesDownloadPdfBody as oK, type InvoicesDownloadPdfParams as oL, type InvoicesDownloadPdfQuery as oM, type InvoicesDownloadPdfResponse as oN, type InvoicesDownloadPdfResponseData as oO, type InvoicesGeneratePdfBody as oP, type InvoicesGeneratePdfParams as oQ, type InvoicesGeneratePdfQuery as oR, type InvoicesGeneratePdfResponse as oS, type InvoicesGeneratePdfResponseData as oT, type InvoicesGetByIdBody as oU, type InvoicesGetByIdParams as oV, type InvoicesGetByIdQuery as oW, type InvoicesGetByIdResponse as oX, type InvoicesGetByIdResponseData as oY, type InvoicesOverdueBody as oZ, type InvoicesOverdueParams as o_, type IapAdminReconcileAllQuery as oa, type IapAdminReconcileAllResponse as ob, type IapAdminReconcileAllResponseData as oc, type IapAdminResyncBody as od, type IapAdminResyncParams as oe, type IapAdminResyncQuery as of, type IapAdminResyncResponse as og, type IapAdminResyncResponseData as oh, type IapListProductsBody as oi, type IapListProductsParams as oj, type IapListProductsQuery as ok, type IapListProductsResponse as ol, type IapListProductsResponseData as om, type IapSubscriptionState as on, type IapSubscriptionStateId as oo, type IapSubscriptionStateInsert as op, type Image as oq, type ImageId as or, type InventoryReservation as os, type InventoryReservationId as ot, type InventoryReservationStatus as ou, type InventoryTransaction as ov, type InventoryTransactionId as ow, type InventoryTransactionType as ox, type Invoice as oy, type InvoiceId as oz, type AppInfoGetParams as p, type ItemVariantsGetByItemFullResponse as p$, type InvoicesOverdueResponse as p0, type InvoicesOverdueResponseData as p1, type InvoicesPendingBody as p2, type InvoicesPendingParams as p3, type InvoicesPendingQuery as p4, type InvoicesPendingResponse as p5, type InvoicesPendingResponseData as p6, type InvoicesRevenueReportBody as p7, type InvoicesRevenueReportParams as p8, type InvoicesRevenueReportQuery as p9, type ItemVariantsAdminSearchTranslatedQuery as pA, type ItemVariantsAdminSearchTranslatedResponse as pB, type ItemVariantsAdminSearchTranslatedResponseData as pC, type ItemVariantsCreateBody as pD, type ItemVariantsCreateParams as pE, type ItemVariantsCreatePhysicalPropertiesBody as pF, type ItemVariantsCreatePhysicalPropertiesParams as pG, type ItemVariantsCreatePhysicalPropertiesQuery as pH, type ItemVariantsCreatePhysicalPropertiesResponse as pI, type ItemVariantsCreatePhysicalPropertiesResponseData as pJ, type ItemVariantsCreateQuery as pK, type ItemVariantsCreateResponse as pL, type ItemVariantsCreateResponseData as pM, type ItemVariantsDeleteBody as pN, type ItemVariantsDeleteParams as pO, type ItemVariantsDeletePhysicalPropertiesBody as pP, type ItemVariantsDeletePhysicalPropertiesParams as pQ, type ItemVariantsDeletePhysicalPropertiesQuery as pR, type ItemVariantsDeletePhysicalPropertiesResponse as pS, type ItemVariantsDeletePhysicalPropertiesResponseData as pT, type ItemVariantsDeleteQuery as pU, type ItemVariantsDeleteResponse as pV, type ItemVariantsDeleteResponseData as pW, type ItemVariantsGetByItemBody as pX, type ItemVariantsGetByItemFullBody as pY, type ItemVariantsGetByItemFullParams as pZ, type ItemVariantsGetByItemFullQuery as p_, type InvoicesRevenueReportResponse as pa, type InvoicesRevenueReportResponseData as pb, type InvoicesSearchBody as pc, type InvoicesSearchParams as pd, type InvoicesSearchQuery as pe, type InvoicesSearchResponse as pf, type InvoicesSearchResponseData as pg, type InvoicesUpdateStatusBody as ph, type InvoicesUpdateStatusParams as pi, type InvoicesUpdateStatusQuery as pj, type InvoicesUpdateStatusResponse as pk, type InvoicesUpdateStatusResponseData as pl, type InvoicesViewPdfBody as pm, type InvoicesViewPdfParams as pn, type InvoicesViewPdfQuery as po, type InvoicesViewPdfResponse as pp, type InvoicesViewPdfResponseData as pq, type ItemVariantGroup as pr, type ItemVariantType as ps, type ItemVariantsAdminSearchBody as pt, type ItemVariantsAdminSearchParams as pu, type ItemVariantsAdminSearchQuery as pv, type ItemVariantsAdminSearchResponse as pw, type ItemVariantsAdminSearchResponseData as px, type ItemVariantsAdminSearchTranslatedBody as py, type ItemVariantsAdminSearchTranslatedParams as pz, type AppInfoGetQuery as q, type LagerInventorySearchResponse as q$, type ItemVariantsGetByItemFullResponseData as q0, type ItemVariantsGetByItemParams as q1, type ItemVariantsGetByItemQuery as q2, type ItemVariantsGetByItemResponse as q3, type ItemVariantsGetByItemResponseData as q4, type ItemVariantsMassDeleteBody as q5, type ItemVariantsMassDeleteParams as q6, type ItemVariantsMassDeleteQuery as q7, type ItemVariantsMassDeleteResponse as q8, type ItemVariantsMassDeleteResponseData as q9, type LagerInventoryGetByVariantBody as qA, type LagerInventoryGetByVariantParams as qB, type LagerInventoryGetByVariantQuery as qC, type LagerInventoryGetByVariantResponse as qD, type LagerInventoryGetByVariantResponseData as qE, type LagerInventoryId as qF, type LagerInventoryListBody as qG, type LagerInventoryListParams as qH, type LagerInventoryListQuery as qI, type LagerInventoryListResponse as qJ, type LagerInventoryListResponseData as qK, type LagerInventoryLocation as qL, type LagerInventoryLocationId as qM, type LagerInventoryLocationInsert as qN, type LagerInventoryLocationUser as qO, type LagerInventoryLocationUserId as qP, type LagerInventoryLocationUserInsert as qQ, type LagerInventoryLocationUserRole as qR, type LagerInventoryOverview as qS, type LagerInventoryOverviewBody as qT, type LagerInventoryOverviewParams as qU, type LagerInventoryOverviewQuery as qV, type LagerInventoryOverviewResponse as qW, type LagerInventoryOverviewResponseData as qX, type LagerInventorySearchBody as qY, type LagerInventorySearchParams as qZ, type LagerInventorySearchQuery as q_, type ItemVariantsUpdateBody as qa, type ItemVariantsUpdateParams as qb, type ItemVariantsUpdatePhysicalPropertiesBody as qc, type ItemVariantsUpdatePhysicalPropertiesParams as qd, type ItemVariantsUpdatePhysicalPropertiesQuery as qe, type ItemVariantsUpdatePhysicalPropertiesResponse as qf, type ItemVariantsUpdatePhysicalPropertiesResponseData as qg, type ItemVariantsUpdateQuery as qh, type ItemVariantsUpdateResponse as qi, type ItemVariantsUpdateResponseData as qj, type LagerInventory as qk, type LagerInventoryCreateBody as ql, type LagerInventoryCreateByIdsBody as qm, type LagerInventoryCreateByIdsParams as qn, type LagerInventoryCreateByIdsQuery as qo, type LagerInventoryCreateByIdsResponse as qp, type LagerInventoryCreateByIdsResponseData as qq, type LagerInventoryCreateParams as qr, type LagerInventoryCreateQuery as qs, type LagerInventoryCreateResponse as qt, type LagerInventoryCreateResponseData as qu, type LagerInventoryDeleteBody as qv, type LagerInventoryDeleteParams as qw, type LagerInventoryDeleteQuery as qx, type LagerInventoryDeleteResponse as qy, type LagerInventoryDeleteResponseData as qz, type AppInfoGetResponse as r, type LagerReservationsListQuery as r$, type LagerInventorySearchResponseData as r0, type LagerInventoryToggleUnlimitedByInventoryBody as r1, type LagerInventoryToggleUnlimitedByInventoryParams as r2, type LagerInventoryToggleUnlimitedByInventoryQuery as r3, type LagerInventoryToggleUnlimitedByInventoryResponse as r4, type LagerInventoryToggleUnlimitedByInventoryResponseData as r5, type LagerInventoryToggleUnlimitedByVariantBody as r6, type LagerInventoryToggleUnlimitedByVariantParams as r7, type LagerInventoryToggleUnlimitedByVariantQuery as r8, type LagerInventoryToggleUnlimitedByVariantResponse as r9, type LagerLocationsListBody as rA, type LagerLocationsListFullBody as rB, type LagerLocationsListFullParams as rC, type LagerLocationsListFullQuery as rD, type LagerLocationsListFullResponse as rE, type LagerLocationsListFullResponseData as rF, type LagerLocationsListParams as rG, type LagerLocationsListQuery as rH, type LagerLocationsListResponse as rI, type LagerLocationsListResponseData as rJ, type LagerLocationsUpdateBody as rK, type LagerLocationsUpdateParams as rL, type LagerLocationsUpdateQuery as rM, type LagerLocationsUpdateResponse as rN, type LagerLocationsUpdateResponseData as rO, type LagerLocationsUsersAddBody as rP, type LagerLocationsUsersAddParams as rQ, type LagerLocationsUsersAddQuery as rR, type LagerLocationsUsersAddResponse as rS, type LagerLocationsUsersAddResponseData as rT, type LagerLocationsUsersRemoveBody as rU, type LagerLocationsUsersRemoveParams as rV, type LagerLocationsUsersRemoveQuery as rW, type LagerLocationsUsersRemoveResponse as rX, type LagerLocationsUsersRemoveResponseData as rY, type LagerReservationsListBody as rZ, type LagerReservationsListParams as r_, type LagerInventoryToggleUnlimitedByVariantResponseData as ra, type LagerLocationsByIdBody as rb, type LagerLocationsByIdFullBody as rc, type LagerLocationsByIdFullHistoryBody as rd, type LagerLocationsByIdFullHistoryParams as re, type LagerLocationsByIdFullHistoryQuery as rf, type LagerLocationsByIdFullHistoryResponse as rg, type LagerLocationsByIdFullHistoryResponseData as rh, type LagerLocationsByIdFullParams as ri, type LagerLocationsByIdFullQuery as rj, type LagerLocationsByIdFullResponse as rk, type LagerLocationsByIdFullResponseData as rl, type LagerLocationsByIdParams as rm, type LagerLocationsByIdQuery as rn, type LagerLocationsByIdResponse as ro, type LagerLocationsByIdResponseData as rp, type LagerLocationsCreateBody as rq, type LagerLocationsCreateParams as rr, type LagerLocationsCreateQuery as rs, type LagerLocationsCreateResponse as rt, type LagerLocationsCreateResponseData as ru, type LagerLocationsDeleteBody as rv, type LagerLocationsDeleteParams as rw, type LagerLocationsDeleteQuery as rx, type LagerLocationsDeleteResponse as ry, type LagerLocationsDeleteResponseData as rz, type AppInfoGetResponseData as s, type MediaSetsCreateProductImageQuery as s$, type LagerReservationsListResponse as s0, type LagerReservationsListResponseData as s1, type LagerTransactionsAddBillBody as s2, type LagerTransactionsAddBillParams as s3, type LagerTransactionsAddBillQuery as s4, type LagerTransactionsAddBillResponse as s5, type LagerTransactionsAddBillResponseData as s6, type LagerTransactionsAddInventoryBody as s7, type LagerTransactionsAddInventoryParams as s8, type LagerTransactionsAddInventoryQuery as s9, type LagerTransactionsSummaryResponseData as sA, type Languages as sB, type LimitBehavior as sC, type Location as sD, type LocationId as sE, type LocationInsert as sF, type LocationTranslated as sG, type LogsDeleteBody as sH, type LogsDeleteBulkBody as sI, type LogsDeleteBulkParams as sJ, type LogsDeleteBulkQuery as sK, type LogsDeleteBulkResponse as sL, type LogsDeleteBulkResponseData as sM, type LogsDeleteParams as sN, type LogsDeleteQuery as sO, type LogsDeleteResponse as sP, type LogsDeleteResponseData as sQ, type LogsSearchBody as sR, type LogsSearchParams as sS, type LogsSearchQuery as sT, type LogsSearchResponse as sU, type LogsSearchResponseData as sV, type MediaSet as sW, type MediaSetId as sX, type MediaSetMedia as sY, type MediaSetsCreateProductImageBody as sZ, type MediaSetsCreateProductImageParams as s_, type LagerTransactionsAddInventoryResponse as sa, type LagerTransactionsAddInventoryResponseData as sb, type LagerTransactionsAdjustInventoryBody as sc, type LagerTransactionsAdjustInventoryParams as sd, type LagerTransactionsAdjustInventoryQuery as se, type LagerTransactionsAdjustInventoryResponse as sf, type LagerTransactionsAdjustInventoryResponseData as sg, type LagerTransactionsByInventoryBody as sh, type LagerTransactionsByInventoryParams as si, type LagerTransactionsByInventoryQuery as sj, type LagerTransactionsByInventoryResponse as sk, type LagerTransactionsByInventoryResponseData as sl, type LagerTransactionsRemoveBillBody as sm, type LagerTransactionsRemoveBillParams as sn, type LagerTransactionsRemoveBillQuery as so, type LagerTransactionsRemoveBillResponse as sp, type LagerTransactionsRemoveBillResponseData as sq, type LagerTransactionsSearchBody as sr, type LagerTransactionsSearchParams as ss, type LagerTransactionsSearchQuery as st, type LagerTransactionsSearchResponse as su, type LagerTransactionsSearchResponseData as sv, type LagerTransactionsSummaryBody as sw, type LagerTransactionsSummaryParams as sx, type LagerTransactionsSummaryQuery as sy, type LagerTransactionsSummaryResponse as sz, type AppInfoHealthBody as t, type OAuth2RefreshTokenInsert as t$, type MediaSetsCreateProductImageResponse as t0, type MediaSetsCreateProductImageResponseData as t1, type MediaSetsCreateProductItemImageBody as t2, type MediaSetsCreateProductItemImageParams as t3, type MediaSetsCreateProductItemImageQuery as t4, type MediaSetsCreateProductItemImageResponse as t5, type MediaSetsCreateProductItemImageResponseData as t6, type MediaSetsCreateProductItemVideoBody as t7, type MediaSetsCreateProductItemVideoParams as t8, type MediaSetsCreateProductItemVideoQuery as t9, type MediaSetsDeleteProductVideoResponseData as tA, type MediaSetsGetProductImageBody as tB, type MediaSetsGetProductImageParams as tC, type MediaSetsGetProductImageQuery as tD, type MediaSetsGetProductImageResponse as tE, type MediaSetsGetProductImageResponseData as tF, type MediaSetsGetProductItemImageBody as tG, type MediaSetsGetProductItemImageParams as tH, type MediaSetsGetProductItemImageQuery as tI, type MediaSetsGetProductItemImageResponse as tJ, type MediaSetsGetProductItemImageResponseData as tK, type MediaSetsGetProductItemVideoBody as tL, type MediaSetsGetProductItemVideoParams as tM, type MediaSetsGetProductItemVideoQuery as tN, type MediaSetsGetProductItemVideoResponse as tO, type MediaSetsGetProductItemVideoResponseData as tP, type MediaSetsGetProductVideoBody as tQ, type MediaSetsGetProductVideoParams as tR, type MediaSetsGetProductVideoQuery as tS, type MediaSetsGetProductVideoResponse as tT, type MediaSetsGetProductVideoResponseData as tU, type OAuth2AuditLog as tV, type OAuth2AuditLogInsert as tW, type OAuth2Client as tX, type OAuth2ClientId as tY, type OAuth2ClientInsert as tZ, type OAuth2RefreshToken as t_, type MediaSetsCreateProductItemVideoResponse as ta, type MediaSetsCreateProductItemVideoResponseData as tb, type MediaSetsCreateProductVideoBody as tc, type MediaSetsCreateProductVideoParams as td, type MediaSetsCreateProductVideoQuery as te, type MediaSetsCreateProductVideoResponse as tf, type MediaSetsCreateProductVideoResponseData as tg, type MediaSetsDeleteProductImageBody as th, type MediaSetsDeleteProductImageParams as ti, type MediaSetsDeleteProductImageQuery as tj, type MediaSetsDeleteProductImageResponse as tk, type MediaSetsDeleteProductImageResponseData as tl, type MediaSetsDeleteProductItemImageBody as tm, type MediaSetsDeleteProductItemImageParams as tn, type MediaSetsDeleteProductItemImageQuery as to, type MediaSetsDeleteProductItemImageResponse as tp, type MediaSetsDeleteProductItemImageResponseData as tq, type MediaSetsDeleteProductItemVideoBody as tr, type MediaSetsDeleteProductItemVideoParams as ts, type MediaSetsDeleteProductItemVideoQuery as tt, type MediaSetsDeleteProductItemVideoResponse as tu, type MediaSetsDeleteProductItemVideoResponseData as tv, type MediaSetsDeleteProductVideoBody as tw, type MediaSetsDeleteProductVideoParams as tx, type MediaSetsDeleteProductVideoQuery as ty, type MediaSetsDeleteProductVideoResponse as tz, type AppInfoHealthParams as u, type OrdersHandleCancelQuery as u$, OAuth2Scope as u0, type Oauth2ClientsAuditBody as u1, type Oauth2ClientsAuditParams as u2, type Oauth2ClientsAuditQuery as u3, type Oauth2ClientsAuditResponse as u4, type Oauth2ClientsAuditResponseData as u5, type Oauth2ClientsCreateBody as u6, type Oauth2ClientsCreateParams as u7, type Oauth2ClientsCreateQuery as u8, type Oauth2ClientsCreateResponse as u9, type Oauth2TokenBody as uA, type Oauth2TokenParams as uB, type Oauth2TokenQuery as uC, type Oauth2TokenResponse as uD, type Oauth2TokenResponseData as uE, type Order as uF, type OrderId as uG, type OrderItem as uH, type OrderItemId as uI, type OrderItemShippingGroup as uJ, type OrderItemShippingGroupId as uK, type OrderItemShippingGroupInsert as uL, type OrderItemStatus as uM, type OrderStatus as uN, type OrderWithDetails as uO, type OrdersDeleteBody as uP, type OrdersDeleteParams as uQ, type OrdersDeleteQuery as uR, type OrdersDeleteResponse as uS, type OrdersDeleteResponseData as uT, type OrdersGetByIdBody as uU, type OrdersGetByIdParams as uV, type OrdersGetByIdQuery as uW, type OrdersGetByIdResponse as uX, type OrdersGetByIdResponseData as uY, type OrdersHandleCancelBody as uZ, type OrdersHandleCancelParams as u_, type Oauth2ClientsCreateResponseData as ua, type Oauth2ClientsListBody as ub, type Oauth2ClientsListParams as uc, type Oauth2ClientsListQuery as ud, type Oauth2ClientsListResponse as ue, type Oauth2ClientsListResponseData as uf, type Oauth2ClientsRevokeBody as ug, type Oauth2ClientsRevokeParams as uh, type Oauth2ClientsRevokeQuery as ui, type Oauth2ClientsRevokeResponse as uj, type Oauth2ClientsRevokeResponseData as uk, type Oauth2ClientsUpdateBody as ul, type Oauth2ClientsUpdateParams as um, type Oauth2ClientsUpdateQuery as un, type Oauth2ClientsUpdateResponse as uo, type Oauth2ClientsUpdateResponseData as up, type Oauth2RevokeBody as uq, type Oauth2RevokeParams as ur, type Oauth2RevokeQuery as us, type Oauth2RevokeResponse as ut, type Oauth2RevokeResponseData as uu, type Oauth2ScopesListBody as uv, type Oauth2ScopesListParams as uw, type Oauth2ScopesListQuery as ux, type Oauth2ScopesListResponse as uy, type Oauth2ScopesListResponseData as uz, type AppInfoHealthQuery as v, type PaymentsProviderConfigsPaypalDeleteBody as v$, type OrdersHandleCancelResponse as v0, type OrdersHandleCancelResponseData as v1, type OrdersProcessPaidBody as v2, type OrdersProcessPaidParams as v3, type OrdersProcessPaidQuery as v4, type OrdersProcessPaidResponse as v5, type OrdersProcessPaidResponseData as v6, type OrdersSearchBody as v7, type OrdersSearchParams as v8, type OrdersSearchQuery as v9, type PaginatedResult as vA, type PayPalConfig as vB, type PayPalConfigInsert as vC, type Payment as vD, type PaymentId as vE, type PaymentMethod as vF, type PaymentProvider as vG, type PaymentProviderFee as vH, type PaymentProviderFeeId as vI, type PaymentProviderFeeInsert as vJ, type PaymentProviderFeeLineItem as vK, type PaymentProviderFeeLineItemId as vL, type PaymentProviderFeeLineItemInsert as vM, type PaymentProviderFeeSource as vN, type PaymentStatus as vO, type PaymentStatusLog as vP, type PaymentStatusLogId as vQ, type PaymentsInvoiceBody as vR, type PaymentsInvoiceParams as vS, type PaymentsInvoiceQuery as vT, type PaymentsInvoiceResponse as vU, type PaymentsInvoiceResponseData as vV, type PaymentsProviderConfigsPaypalCreateBody as vW, type PaymentsProviderConfigsPaypalCreateParams as vX, type PaymentsProviderConfigsPaypalCreateQuery as vY, type PaymentsProviderConfigsPaypalCreateResponse as vZ, type PaymentsProviderConfigsPaypalCreateResponseData as v_, type OrdersSearchResponse as va, type OrdersSearchResponseData as vb, type OrdersVerifyOrderBody as vc, type OrdersVerifyOrderParams as vd, type OrdersVerifyOrderQuery as ve, type OrdersVerifyOrderResponse as vf, type OrdersVerifyOrderResponseData as vg, type OutboundWebhookQueue as vh, type OutboundWebhookQueueId as vi, type OutboundWebhookQueueInsert as vj, type OutboundWebhookStatus as vk, type POSTApiAmpProxyKeyBody as vl, type POSTApiAmpProxyKeyParams as vm, type POSTApiAmpProxyKeyQuery as vn, type POSTApiAmpProxyKeyResponse as vo, type POSTApiAmpProxyKeyResponseData as vp, type POSTDataExchangeExchangeTableIdBody as vq, type POSTDataExchangeExchangeTableIdParams as vr, type POSTDataExchangeExchangeTableIdQuery as vs, type POSTDataExchangeExchangeTableIdResponse as vt, type POSTDataExchangeExchangeTableIdResponseData as vu, type PUTApiAmpProxyKeyBody as vv, type PUTApiAmpProxyKeyParams as vw, type PUTApiAmpProxyKeyQuery as vx, type PUTApiAmpProxyKeyResponse as vy, type PUTApiAmpProxyKeyResponseData as vz, type AppInfoHealthResponse as w, type PaypalWebhookResponseData as w$, type PaymentsProviderConfigsPaypalDeleteParams as w0, type PaymentsProviderConfigsPaypalDeleteQuery as w1, type PaymentsProviderConfigsPaypalDeleteResponse as w2, type PaymentsProviderConfigsPaypalDeleteResponseData as w3, type PaymentsProviderConfigsPaypalGetBody as w4, type PaymentsProviderConfigsPaypalGetParams as w5, type PaymentsProviderConfigsPaypalGetQuery as w6, type PaymentsProviderConfigsPaypalGetResponse as w7, type PaymentsProviderConfigsPaypalGetResponseData as w8, type PaymentsProviderConfigsPaypalListBody as w9, type PaymentsProviderConfigsStripeListQuery as wA, type PaymentsProviderConfigsStripeListResponse as wB, type PaymentsProviderConfigsStripeListResponseData as wC, type PaymentsProviderConfigsStripeUpdateBody as wD, type PaymentsProviderConfigsStripeUpdateParams as wE, type PaymentsProviderConfigsStripeUpdateQuery as wF, type PaymentsProviderConfigsStripeUpdateResponse as wG, type PaymentsProviderConfigsStripeUpdateResponseData as wH, type PaymentsProviderInfosBody as wI, type PaymentsProviderInfosParams as wJ, type PaymentsProviderInfosQuery as wK, type PaymentsProviderInfosResponse as wL, type PaymentsProviderInfosResponseData as wM, type PaypalCreateCheckoutSessionBody as wN, type PaypalCreateCheckoutSessionParams as wO, type PaypalCreateCheckoutSessionQuery as wP, type PaypalCreateCheckoutSessionResponse as wQ, type PaypalCreateCheckoutSessionResponseData as wR, type PaypalMarkOrderAsDeliveredBody as wS, type PaypalMarkOrderAsDeliveredParams as wT, type PaypalMarkOrderAsDeliveredQuery as wU, type PaypalMarkOrderAsDeliveredResponse as wV, type PaypalMarkOrderAsDeliveredResponseData as wW, type PaypalWebhookBody as wX, type PaypalWebhookParams as wY, type PaypalWebhookQuery as wZ, type PaypalWebhookResponse as w_, type PaymentsProviderConfigsPaypalListParams as wa, type PaymentsProviderConfigsPaypalListQuery as wb, type PaymentsProviderConfigsPaypalListResponse as wc, type PaymentsProviderConfigsPaypalListResponseData as wd, type PaymentsProviderConfigsPaypalUpdateBody as we, type PaymentsProviderConfigsPaypalUpdateParams as wf, type PaymentsProviderConfigsPaypalUpdateQuery as wg, type PaymentsProviderConfigsPaypalUpdateResponse as wh, type PaymentsProviderConfigsPaypalUpdateResponseData as wi, type PaymentsProviderConfigsStripeCreateBody as wj, type PaymentsProviderConfigsStripeCreateParams as wk, type PaymentsProviderConfigsStripeCreateQuery as wl, type PaymentsProviderConfigsStripeCreateResponse as wm, type PaymentsProviderConfigsStripeCreateResponseData as wn, type PaymentsProviderConfigsStripeDeleteBody as wo, type PaymentsProviderConfigsStripeDeleteParams as wp, type PaymentsProviderConfigsStripeDeleteQuery as wq, type PaymentsProviderConfigsStripeDeleteResponse as wr, type PaymentsProviderConfigsStripeDeleteResponseData as ws, type PaymentsProviderConfigsStripeGetBody as wt, type PaymentsProviderConfigsStripeGetParams as wu, type PaymentsProviderConfigsStripeGetQuery as wv, type PaymentsProviderConfigsStripeGetResponse as ww, type PaymentsProviderConfigsStripeGetResponseData as wx, type PaymentsProviderConfigsStripeListBody as wy, type PaymentsProviderConfigsStripeListParams as wz, type AppInfoHealthResponseData as x, type ProductCategoriesGetByIdTranslatedResponse as x$, type Permission as x0, type PermissionId as x1, type PermissionsAssignToRoleBody as x2, type PermissionsAssignToRoleParams as x3, type PermissionsAssignToRoleQuery as x4, type PermissionsAssignToRoleResponse as x5, type PermissionsAssignToRoleResponseData as x6, type PermissionsAssignmentsListBody as x7, type PermissionsAssignmentsListParams as x8, type PermissionsAssignmentsListQuery as x9, type Product as xA, type ProductAttribute as xB, type ProductAttributeId as xC, type ProductAttributeInsert as xD, type ProductCategoriesAssignProductBody as xE, type ProductCategoriesAssignProductParams as xF, type ProductCategoriesAssignProductQuery as xG, type ProductCategoriesAssignProductResponse as xH, type ProductCategoriesAssignProductResponseData as xI, type ProductCategoriesCreateBody as xJ, type ProductCategoriesCreateParams as xK, type ProductCategoriesCreateQuery as xL, type ProductCategoriesCreateResponse as xM, type ProductCategoriesCreateResponseData as xN, type ProductCategoriesDeleteBody as xO, type ProductCategoriesDeleteParams as xP, type ProductCategoriesDeleteQuery as xQ, type ProductCategoriesDeleteResponse as xR, type ProductCategoriesDeleteResponseData as xS, type ProductCategoriesGetByIdBody as xT, type ProductCategoriesGetByIdParams as xU, type ProductCategoriesGetByIdQuery as xV, type ProductCategoriesGetByIdResponse as xW, type ProductCategoriesGetByIdResponseData as xX, type ProductCategoriesGetByIdTranslatedBody as xY, type ProductCategoriesGetByIdTranslatedParams as xZ, type ProductCategoriesGetByIdTranslatedQuery as x_, type PermissionsAssignmentsListResponse as xa, type PermissionsAssignmentsListResponseData as xb, type PermissionsCreateBody as xc, type PermissionsCreateParams as xd, type PermissionsCreateQuery as xe, type PermissionsCreateResponse as xf, type PermissionsCreateResponseData as xg, type PermissionsListBody as xh, type PermissionsListParams as xi, type PermissionsListQuery as xj, type PermissionsListResponse as xk, type PermissionsListResponseData as xl, type PermissionsSyncBody as xm, type PermissionsSyncParams as xn, type PermissionsSyncQuery as xo, type PermissionsSyncResponse as xp, type PermissionsSyncResponseData as xq, type PermissionsUnassignFromRoleBody as xr, type PermissionsUnassignFromRoleParams as xs, type PermissionsUnassignFromRoleQuery as xt, type PermissionsUnassignFromRoleResponse as xu, type PermissionsUnassignFromRoleResponseData as xv, type Prettify as xw, type PrintfulConnection as xx, type PrintfulConnectionId as xy, type PrintfulConnectionInsert as xz, type AppInfoManifestBody as y, type ProductItemsGetFullItemQuery as y$, type ProductCategoriesGetByIdTranslatedResponseData as y0, type ProductCategoriesListBody as y1, type ProductCategoriesListDataBody as y2, type ProductCategoriesListDataParams as y3, type ProductCategoriesListDataQuery as y4, type ProductCategoriesListDataResponse as y5, type ProductCategoriesListDataResponseData as y6, type ProductCategoriesListParams as y7, type ProductCategoriesListQuery as y8, type ProductCategoriesListResponse as y9, type ProductItemInsert as yA, type ProductItemTranslated as yB, type ProductItemVariant as yC, type ProductItemVariantId as yD, type ProductItemVariantInsert as yE, type ProductItemsAdminSearchBody as yF, type ProductItemsAdminSearchParams as yG, type ProductItemsAdminSearchQuery as yH, type ProductItemsAdminSearchResponse as yI, type ProductItemsAdminSearchResponseData as yJ, type ProductItemsAdminSearchTranslatedBody as yK, type ProductItemsAdminSearchTranslatedParams as yL, type ProductItemsAdminSearchTranslatedQuery as yM, type ProductItemsAdminSearchTranslatedResponse as yN, type ProductItemsAdminSearchTranslatedResponseData as yO, type ProductItemsCreateBody as yP, type ProductItemsCreateParams as yQ, type ProductItemsCreateQuery as yR, type ProductItemsCreateResponse as yS, type ProductItemsCreateResponseData as yT, type ProductItemsDeleteBody as yU, type ProductItemsDeleteParams as yV, type ProductItemsDeleteQuery as yW, type ProductItemsDeleteResponse as yX, type ProductItemsDeleteResponseData as yY, type ProductItemsGetFullItemBody as yZ, type ProductItemsGetFullItemParams as y_, type ProductCategoriesListResponseData as ya, type ProductCategoriesListTranslatedBody as yb, type ProductCategoriesListTranslatedParams as yc, type ProductCategoriesListTranslatedQuery as yd, type ProductCategoriesListTranslatedResponse as ye, type ProductCategoriesListTranslatedResponseData as yf, type ProductCategoriesRemoveProductBody as yg, type ProductCategoriesRemoveProductParams as yh, type ProductCategoriesRemoveProductQuery as yi, type ProductCategoriesRemoveProductResponse as yj, type ProductCategoriesRemoveProductResponseData as yk, type ProductCategoriesUpdateBody as yl, type ProductCategoriesUpdateParams as ym, type ProductCategoriesUpdateQuery as yn, type ProductCategoriesUpdateResponse as yo, type ProductCategoriesUpdateResponseData as yp, type ProductCategory as yq, type ProductCategoryId as yr, type ProductCategoryTranslated as ys, type ProductId as yt, type ProductInsert as yu, type ProductItem as yv, type ProductItemAttribute as yw, type ProductItemAttributeId as yx, type ProductItemAttributeInsert as yy, type ProductItemId as yz, type AppInfoManifestParams as z, type ProductsListResponseData as z$, type ProductItemsGetFullItemResponse as z0, type ProductItemsGetFullItemResponseData as z1, type ProductItemsGetTicketItemsBody as z2, type ProductItemsGetTicketItemsParams as z3, type ProductItemsGetTicketItemsQuery as z4, type ProductItemsGetTicketItemsResponse as z5, type ProductItemsGetTicketItemsResponseData as z6, type ProductItemsUpdateBody as z7, type ProductItemsUpdateParams as z8, type ProductItemsUpdateQuery as z9, type ProductsGetByIdQuery as zA, type ProductsGetByIdResponse as zB, type ProductsGetByIdResponseData as zC, type ProductsGetFullByIdBody as zD, type ProductsGetFullByIdParams as zE, type ProductsGetFullByIdQuery as zF, type ProductsGetFullByIdResponse as zG, type ProductsGetFullByIdResponseData as zH, type ProductsGetFullByIdTranslatedBody as zI, type ProductsGetFullByIdTranslatedParams as zJ, type ProductsGetFullByIdTranslatedQuery as zK, type ProductsGetFullByIdTranslatedResponse as zL, type ProductsGetFullByIdTranslatedResponseData as zM, type ProductsListBody as zN, type ProductsListFullBody as zO, type ProductsListFullParams as zP, type ProductsListFullQuery as zQ, type ProductsListFullResponse as zR, type ProductsListFullResponseData as zS, type ProductsListFullTranslatedBody as zT, type ProductsListFullTranslatedParams as zU, type ProductsListFullTranslatedQuery as zV, type ProductsListFullTranslatedResponse as zW, type ProductsListFullTranslatedResponseData as zX, type ProductsListParams as zY, type ProductsListQuery as zZ, type ProductsListResponse as z_, type ProductItemsUpdateResponse as za, type ProductItemsUpdateResponseData as zb, type ProductStatus as zc, type ProductTranslated as zd, type ProductsAdminSearchBody as ze, type ProductsAdminSearchParams as zf, type ProductsAdminSearchQuery as zg, type ProductsAdminSearchResponse as zh, type ProductsAdminSearchResponseData as zi, type ProductsAdminSearchTranslatedBody as zj, type ProductsAdminSearchTranslatedParams as zk, type ProductsAdminSearchTranslatedQuery as zl, type ProductsAdminSearchTranslatedResponse as zm, type ProductsAdminSearchTranslatedResponseData as zn, type ProductsCreateBody as zo, type ProductsCreateParams as zp, type ProductsCreateQuery as zq, type ProductsCreateResponse as zr, type ProductsCreateResponseData as zs, type ProductsDeleteBody as zt, type ProductsDeleteParams as zu, type ProductsDeleteQuery as zv, type ProductsDeleteResponse as zw, type ProductsDeleteResponseData as zx, type ProductsGetByIdBody as zy, type ProductsGetByIdParams as zz };