@justworkflowit/cdk-constructs 0.0.312 → 0.0.313

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.
@@ -1910,7 +1910,7 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf
1910
1910
  });
1911
1911
  }
1912
1912
  resolveDefaultConfig(options) {
1913
- const { requestTimeout, connectionTimeout, socketTimeout, socketAcquisitionWarningTimeout, httpAgent, httpsAgent, throwOnRequestTimeout } = options || {};
1913
+ const { requestTimeout, connectionTimeout, socketTimeout, socketAcquisitionWarningTimeout, httpAgent, httpsAgent, throwOnRequestTimeout, logger: logger2 } = options || {};
1914
1914
  const keepAlive = true;
1915
1915
  const maxSockets = 50;
1916
1916
  return {
@@ -1933,7 +1933,7 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf
1933
1933
  }
1934
1934
  return new https.Agent({ keepAlive, maxSockets, ...httpsAgent });
1935
1935
  })(),
1936
- logger: console
1936
+ logger: logger2
1937
1937
  };
1938
1938
  }
1939
1939
  destroy() {
@@ -3363,7 +3363,7 @@ var init_NormalizedSchema = __esm({
3363
3363
  }
3364
3364
  getSchema() {
3365
3365
  const sc = this.schema;
3366
- if (sc[0] === 0) {
3366
+ if (Array.isArray(sc) && sc[0] === 0) {
3367
3367
  return sc[4];
3368
3368
  }
3369
3369
  return sc;
@@ -3389,11 +3389,17 @@ var init_NormalizedSchema = __esm({
3389
3389
  }
3390
3390
  isStructSchema() {
3391
3391
  const sc = this.getSchema();
3392
+ if (typeof sc !== "object") {
3393
+ return false;
3394
+ }
3392
3395
  const id = sc[0];
3393
3396
  return id === 3 || id === -3 || id === 4;
3394
3397
  }
3395
3398
  isUnionSchema() {
3396
3399
  const sc = this.getSchema();
3400
+ if (typeof sc !== "object") {
3401
+ return false;
3402
+ }
3397
3403
  return sc[0] === 4;
3398
3404
  }
3399
3405
  isBlobSchema() {
@@ -5138,6 +5144,11 @@ var init_EventStreamSerde = __esm({
5138
5144
  [unionMember]: out
5139
5145
  };
5140
5146
  }
5147
+ if (body.byteLength === 0) {
5148
+ return {
5149
+ [unionMember]: {}
5150
+ };
5151
+ }
5141
5152
  }
5142
5153
  return {
5143
5154
  [unionMember]: await this.deserializer.read(eventStreamSchema, body)
@@ -36896,12 +36907,30 @@ var require_httpAuthSchemeProvider3 = __commonJS({
36896
36907
  break;
36897
36908
  }
36898
36909
  ;
36910
+ case "GetMarketplaceListing":
36911
+ {
36912
+ options.push(createSmithyApiNoAuthHttpAuthOption4(authParameters));
36913
+ break;
36914
+ }
36915
+ ;
36899
36916
  case "GetPublicInvitationDetails":
36900
36917
  {
36901
36918
  options.push(createSmithyApiNoAuthHttpAuthOption4(authParameters));
36902
36919
  break;
36903
36920
  }
36904
36921
  ;
36922
+ case "ListMarketplaceListings":
36923
+ {
36924
+ options.push(createSmithyApiNoAuthHttpAuthOption4(authParameters));
36925
+ break;
36926
+ }
36927
+ ;
36928
+ case "SearchMarketplaceOrganizations":
36929
+ {
36930
+ options.push(createSmithyApiNoAuthHttpAuthOption4(authParameters));
36931
+ break;
36932
+ }
36933
+ ;
36905
36934
  default:
36906
36935
  {
36907
36936
  options.push(createAwsAuthCognitoUserPoolsHttpAuthOption(authParameters));
@@ -36929,11 +36958,7 @@ var require_package3 = __commonJS({
36929
36958
  module2.exports = {
36930
36959
  name: "@justworkflowit/api-client",
36931
36960
  description: "@justworkflowit/api-client client",
36932
- version: "0.0.303",
36933
- repository: {
36934
- type: "git",
36935
- url: "https://github.com/nkorai/JustWorkflowItAWS"
36936
- },
36961
+ version: "0.0.315",
36937
36962
  scripts: {
36938
36963
  build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
36939
36964
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -40784,7 +40809,7 @@ var require_models_0 = __commonJS({
40784
40809
  "../JustWorkflowItApiClient/dist-cjs/models/models_0.js"(exports2) {
40785
40810
  "use strict";
40786
40811
  Object.defineProperty(exports2, "__esModule", { value: true });
40787
- exports2.WorkflowVersionSelector = exports2.WorkflowMetricType = exports2.TimeBucket = exports2.MetricAggregation = exports2.ExecutionStatus = exports2.HistorySource = exports2.OrgRole = exports2.JobStatus = exports2.PermissionEnum = exports2.ValidationError = exports2.UnhandledError = exports2.NotFoundError = exports2.AuthorizationError = exports2.AuthenticationError = void 0;
40812
+ exports2.WorkflowVersionSelector = exports2.WorkflowMetricType = exports2.TimeBucket = exports2.MetricAggregation = exports2.MarketplaceVisibility = exports2.MarketplaceListingStatus = exports2.RateLimitWindowUnit = exports2.MarketplaceBillingModel = exports2.UsageTimeBucket = exports2.ExecutionStatus = exports2.HistorySource = exports2.OrgRole = exports2.JobStatus = exports2.PermissionEnum = exports2.ValidationError = exports2.UnhandledError = exports2.NotFoundError = exports2.AuthorizationError = exports2.AuthenticationError = void 0;
40788
40813
  var JustWorkflowItServiceException_1 = require_JustWorkflowItServiceException();
40789
40814
  var AuthenticationError = class _AuthenticationError extends JustWorkflowItServiceException_1.JustWorkflowItServiceException {
40790
40815
  name = "AuthenticationError";
@@ -40905,6 +40930,10 @@ var require_models_0 = __commonJS({
40905
40930
  JOB_READ: "job:read",
40906
40931
  JOB_SUBMIT: "job:submit",
40907
40932
  JOB_UPDATE: "job:update",
40933
+ MARKETPLACE_ALLOWLIST: "marketplace:allowlist",
40934
+ MARKETPLACE_GRANT: "marketplace:grant",
40935
+ MARKETPLACE_PUBLISH: "marketplace:publish",
40936
+ MARKETPLACE_UNPUBLISH: "marketplace:unpublish",
40908
40937
  METRICS_READ: "metrics:read",
40909
40938
  ORGANIZATION_DELETE: "organization:delete",
40910
40939
  ORGANIZATION_READ: "organization:read",
@@ -40914,6 +40943,8 @@ var require_models_0 = __commonJS({
40914
40943
  RESOURCEPOOL_LIST: "resourcepool:list",
40915
40944
  RESOURCEPOOL_READ: "resourcepool:read",
40916
40945
  RESOURCEPOOL_UPDATE: "resourcepool:update",
40946
+ STAFF_READ: "staff:read",
40947
+ STAFF_WRITE: "staff:write",
40917
40948
  SUBSCRIPTIONPLAN_READ: "subscription:read",
40918
40949
  WORKFLOW_CREATE: "workflow:create",
40919
40950
  WORKFLOW_DELETE: "workflow:delete",
@@ -40942,6 +40973,29 @@ var require_models_0 = __commonJS({
40942
40973
  SUCCESS: "success",
40943
40974
  SUCCESSFUL_BUT_INCOMPLETE: "successful_but_incomplete"
40944
40975
  };
40976
+ exports2.UsageTimeBucket = {
40977
+ DAILY: "DAILY",
40978
+ HOURLY: "HOURLY"
40979
+ };
40980
+ exports2.MarketplaceBillingModel = {
40981
+ FREE: "FREE",
40982
+ PER_INVOCATION: "PER_INVOCATION",
40983
+ PER_MONTH: "PER_MONTH",
40984
+ PER_TRANSACTION_UNIT: "PER_TRANSACTION_UNIT"
40985
+ };
40986
+ exports2.RateLimitWindowUnit = {
40987
+ HOURS: "HOURS",
40988
+ MINUTES: "MINUTES"
40989
+ };
40990
+ exports2.MarketplaceListingStatus = {
40991
+ ARCHIVED: "ARCHIVED",
40992
+ DRAFT: "DRAFT",
40993
+ PUBLISHED: "PUBLISHED"
40994
+ };
40995
+ exports2.MarketplaceVisibility = {
40996
+ PRIVATE: "PRIVATE",
40997
+ PUBLIC: "PUBLIC"
40998
+ };
40945
40999
  exports2.MetricAggregation = {
40946
41000
  AVG: "avg",
40947
41001
  COUNT: "count",
@@ -40985,9 +41039,10 @@ var require_Aws_restJson1 = __commonJS({
40985
41039
  "../JustWorkflowItApiClient/dist-cjs/protocols/Aws_restJson1.js"(exports2) {
40986
41040
  "use strict";
40987
41041
  Object.defineProperty(exports2, "__esModule", { value: true });
40988
- exports2.se_UpdateResourcePoolCommand = exports2.se_UpdateOrganizationMembershipCommand = exports2.se_UpdateOrganizationCommand = exports2.se_UpdateApiAuthTokenCommand = exports2.se_SubmitJobCommand = exports2.se_SetWorkflowVersionTagCommand = exports2.se_SendJobEventCommand = exports2.se_RevokeApiAuthTokenCommand = exports2.se_ResumeJobCommand = exports2.se_RemoveOrganizationMembershipCommand = exports2.se_RejectOrganizationInvitationCommand = exports2.se_RegisterWorkflowVersionCommand = exports2.se_RegisterWorkflowCommand = exports2.se_ListWorkflowVersionsCommand = exports2.se_ListWorkflowsCommand = exports2.se_ListSubscriptionPlansCommand = exports2.se_ListRolesCommand = exports2.se_ListResourcePoolsCommand = exports2.se_ListOrganizationUsersAndInvitationsCommand = exports2.se_ListOrganizationsCommand = exports2.se_ListOrganizationInvitationsForUserCommand = exports2.se_ListJobsCommand = exports2.se_ListApiAuthTokensCommand = exports2.se_GetWorkflowVersionCommand = exports2.se_GetWorkflowStateCommand = exports2.se_GetWorkflowMetricTimeSeriesCommand = exports2.se_GetWorkflowCommand = exports2.se_GetTaggedWorkflowVersionCommand = exports2.se_GetSubscriptionPlanCommand = exports2.se_GetRoleCommand = exports2.se_GetResourcePoolCommand = exports2.se_GetPublicInvitationDetailsCommand = exports2.se_GetOrganizationSubscriptionPlanCommand = exports2.se_GetOrganizationInvitationCommand = exports2.se_GetOrganizationCommand = exports2.se_GetMyPermissionsCommand = exports2.se_GetJobCommand = exports2.se_GetApiAuthTokenCommand = exports2.se_DeleteRoleCommand = exports2.se_DeleteResourcePoolCommand = exports2.se_DeleteOrganizationCommand = exports2.se_CreateRoleCommand = exports2.se_CreateResourcePoolCommand = exports2.se_CreateOrganizationInvitationCommand = exports2.se_CreateOrganizationCommand = exports2.se_CreateInterestCommand = exports2.se_CreateApiAuthTokenCommand = exports2.se_CancelOrganizationInvitationCommand = exports2.se_CancelJobCommand = exports2.se_AcceptOrganizationInvitationCommand = void 0;
40989
- exports2.de_UpdateOrganizationMembershipCommand = exports2.de_UpdateOrganizationCommand = exports2.de_UpdateApiAuthTokenCommand = exports2.de_SubmitJobCommand = exports2.de_SetWorkflowVersionTagCommand = exports2.de_SendJobEventCommand = exports2.de_RevokeApiAuthTokenCommand = exports2.de_ResumeJobCommand = exports2.de_RemoveOrganizationMembershipCommand = exports2.de_RejectOrganizationInvitationCommand = exports2.de_RegisterWorkflowVersionCommand = exports2.de_RegisterWorkflowCommand = exports2.de_ListWorkflowVersionsCommand = exports2.de_ListWorkflowsCommand = exports2.de_ListSubscriptionPlansCommand = exports2.de_ListRolesCommand = exports2.de_ListResourcePoolsCommand = exports2.de_ListOrganizationUsersAndInvitationsCommand = exports2.de_ListOrganizationsCommand = exports2.de_ListOrganizationInvitationsForUserCommand = exports2.de_ListJobsCommand = exports2.de_ListApiAuthTokensCommand = exports2.de_GetWorkflowVersionCommand = exports2.de_GetWorkflowStateCommand = exports2.de_GetWorkflowMetricTimeSeriesCommand = exports2.de_GetWorkflowCommand = exports2.de_GetTaggedWorkflowVersionCommand = exports2.de_GetSubscriptionPlanCommand = exports2.de_GetRoleCommand = exports2.de_GetResourcePoolCommand = exports2.de_GetPublicInvitationDetailsCommand = exports2.de_GetOrganizationSubscriptionPlanCommand = exports2.de_GetOrganizationInvitationCommand = exports2.de_GetOrganizationCommand = exports2.de_GetMyPermissionsCommand = exports2.de_GetJobCommand = exports2.de_GetApiAuthTokenCommand = exports2.de_DeleteRoleCommand = exports2.de_DeleteResourcePoolCommand = exports2.de_DeleteOrganizationCommand = exports2.de_CreateRoleCommand = exports2.de_CreateResourcePoolCommand = exports2.de_CreateOrganizationInvitationCommand = exports2.de_CreateOrganizationCommand = exports2.de_CreateInterestCommand = exports2.de_CreateApiAuthTokenCommand = exports2.de_CancelOrganizationInvitationCommand = exports2.de_CancelJobCommand = exports2.de_AcceptOrganizationInvitationCommand = exports2.se_UpdateRoleCommand = void 0;
40990
- exports2.de_UpdateRoleCommand = exports2.de_UpdateResourcePoolCommand = void 0;
41042
+ exports2.se_ListMarketplaceListingsCommand = exports2.se_ListMarketplaceListingBillingOverridesCommand = exports2.se_ListJobsCommand = exports2.se_ListApiAuthTokensCommand = exports2.se_ListAllowlistedMarketplaceListingsCommand = exports2.se_IsMarketplaceListingAllowlistedCommand = exports2.se_GrantMarketplaceAccessCommand = exports2.se_GetWorkflowVersionCommand = exports2.se_GetWorkflowStateCommand = exports2.se_GetWorkflowMetricTimeSeriesCommand = exports2.se_GetWorkflowCommand = exports2.se_GetTaggedWorkflowVersionCommand = exports2.se_GetTaggedMarketplaceListingVersionCommand = exports2.se_GetSubscriptionPlanCommand = exports2.se_GetRoleCommand = exports2.se_GetResourcePoolCommand = exports2.se_GetPublisherListingUsageTimeSeriesCommand = exports2.se_GetPublisherListingConsumerBreakdownCommand = exports2.se_GetPublicInvitationDetailsCommand = exports2.se_GetOrganizationSubscriptionPlanCommand = exports2.se_GetOrganizationInvitationCommand = exports2.se_GetOrganizationCommand = exports2.se_GetMyPermissionsCommand = exports2.se_GetMarketplaceListingVersionCommand = exports2.se_GetMarketplaceListingCommand = exports2.se_GetJobCommand = exports2.se_GetConsumerListingUsageTimeSeriesCommand = exports2.se_GetApiAuthTokenCommand = exports2.se_DeleteRoleCommand = exports2.se_DeleteResourcePoolCommand = exports2.se_DeleteOrganizationCommand = exports2.se_DeleteMarketplaceListingBillingOverrideCommand = exports2.se_CreateRoleCommand = exports2.se_CreateResourcePoolCommand = exports2.se_CreateOrganizationInvitationCommand = exports2.se_CreateOrganizationCommand = exports2.se_CreateMarketplaceListingVersionCommand = exports2.se_CreateInterestCommand = exports2.se_CreateApiAuthTokenCommand = exports2.se_CancelOrganizationInvitationCommand = exports2.se_CancelJobCommand = exports2.se_AllowlistMarketplaceListingCommand = exports2.se_AdminUpdateRoleCommand = exports2.se_AdminListRolesCommand = exports2.se_AdminListOrganizationsCommand = exports2.se_AdminGetRoleCommand = exports2.se_AdminGetOrganizationCommand = exports2.se_AdminDeleteRoleCommand = exports2.se_AdminCreateRoleCommand = exports2.se_AcceptOrganizationInvitationCommand = void 0;
41043
+ exports2.de_CreateResourcePoolCommand = exports2.de_CreateOrganizationInvitationCommand = exports2.de_CreateOrganizationCommand = exports2.de_CreateMarketplaceListingVersionCommand = exports2.de_CreateInterestCommand = exports2.de_CreateApiAuthTokenCommand = exports2.de_CancelOrganizationInvitationCommand = exports2.de_CancelJobCommand = exports2.de_AllowlistMarketplaceListingCommand = exports2.de_AdminUpdateRoleCommand = exports2.de_AdminListRolesCommand = exports2.de_AdminListOrganizationsCommand = exports2.de_AdminGetRoleCommand = exports2.de_AdminGetOrganizationCommand = exports2.de_AdminDeleteRoleCommand = exports2.de_AdminCreateRoleCommand = exports2.de_AcceptOrganizationInvitationCommand = exports2.se_UpsertMarketplaceListingBillingOverrideCommand = exports2.se_UpdateRoleCommand = exports2.se_UpdateResourcePoolCommand = exports2.se_UpdateOrganizationMembershipCommand = exports2.se_UpdateOrganizationCommand = exports2.se_UpdateMarketplaceListingMetadataCommand = exports2.se_UpdateMarketplaceListingBillingCommand = exports2.se_UpdateApiAuthTokenCommand = exports2.se_UnpublishWorkflowFromMarketplaceCommand = exports2.se_UnallowlistMarketplaceListingCommand = exports2.se_SubmitJobCommand = exports2.se_SetWorkflowVersionTagCommand = exports2.se_SetMarketplaceListingVersionTagCommand = exports2.se_SendJobEventCommand = exports2.se_SearchMarketplaceOrganizationsCommand = exports2.se_RevokeMarketplaceAccessCommand = exports2.se_RevokeApiAuthTokenCommand = exports2.se_ResumeJobCommand = exports2.se_RemoveOrganizationMembershipCommand = exports2.se_RejectOrganizationInvitationCommand = exports2.se_RegisterWorkflowVersionCommand = exports2.se_RegisterWorkflowCommand = exports2.se_PublishWorkflowToMarketplaceCommand = exports2.se_ListWorkflowVersionsCommand = exports2.se_ListWorkflowsCommand = exports2.se_ListSubscriptionPlansCommand = exports2.se_ListRolesCommand = exports2.se_ListResourcePoolsCommand = exports2.se_ListOrganizationUsersAndInvitationsCommand = exports2.se_ListOrganizationsCommand = exports2.se_ListOrganizationInvitationsForUserCommand = exports2.se_ListMyMarketplaceListingsCommand = exports2.se_ListMarketplaceListingVersionsCommand = void 0;
41044
+ exports2.de_RevokeApiAuthTokenCommand = exports2.de_ResumeJobCommand = exports2.de_RemoveOrganizationMembershipCommand = exports2.de_RejectOrganizationInvitationCommand = exports2.de_RegisterWorkflowVersionCommand = exports2.de_RegisterWorkflowCommand = exports2.de_PublishWorkflowToMarketplaceCommand = exports2.de_ListWorkflowVersionsCommand = exports2.de_ListWorkflowsCommand = exports2.de_ListSubscriptionPlansCommand = exports2.de_ListRolesCommand = exports2.de_ListResourcePoolsCommand = exports2.de_ListOrganizationUsersAndInvitationsCommand = exports2.de_ListOrganizationsCommand = exports2.de_ListOrganizationInvitationsForUserCommand = exports2.de_ListMyMarketplaceListingsCommand = exports2.de_ListMarketplaceListingVersionsCommand = exports2.de_ListMarketplaceListingsCommand = exports2.de_ListMarketplaceListingBillingOverridesCommand = exports2.de_ListJobsCommand = exports2.de_ListApiAuthTokensCommand = exports2.de_ListAllowlistedMarketplaceListingsCommand = exports2.de_IsMarketplaceListingAllowlistedCommand = exports2.de_GrantMarketplaceAccessCommand = exports2.de_GetWorkflowVersionCommand = exports2.de_GetWorkflowStateCommand = exports2.de_GetWorkflowMetricTimeSeriesCommand = exports2.de_GetWorkflowCommand = exports2.de_GetTaggedWorkflowVersionCommand = exports2.de_GetTaggedMarketplaceListingVersionCommand = exports2.de_GetSubscriptionPlanCommand = exports2.de_GetRoleCommand = exports2.de_GetResourcePoolCommand = exports2.de_GetPublisherListingUsageTimeSeriesCommand = exports2.de_GetPublisherListingConsumerBreakdownCommand = exports2.de_GetPublicInvitationDetailsCommand = exports2.de_GetOrganizationSubscriptionPlanCommand = exports2.de_GetOrganizationInvitationCommand = exports2.de_GetOrganizationCommand = exports2.de_GetMyPermissionsCommand = exports2.de_GetMarketplaceListingVersionCommand = exports2.de_GetMarketplaceListingCommand = exports2.de_GetJobCommand = exports2.de_GetConsumerListingUsageTimeSeriesCommand = exports2.de_GetApiAuthTokenCommand = exports2.de_DeleteRoleCommand = exports2.de_DeleteResourcePoolCommand = exports2.de_DeleteOrganizationCommand = exports2.de_DeleteMarketplaceListingBillingOverrideCommand = exports2.de_CreateRoleCommand = void 0;
41045
+ exports2.de_UpsertMarketplaceListingBillingOverrideCommand = exports2.de_UpdateRoleCommand = exports2.de_UpdateResourcePoolCommand = exports2.de_UpdateOrganizationMembershipCommand = exports2.de_UpdateOrganizationCommand = exports2.de_UpdateMarketplaceListingMetadataCommand = exports2.de_UpdateMarketplaceListingBillingCommand = exports2.de_UpdateApiAuthTokenCommand = exports2.de_UnpublishWorkflowFromMarketplaceCommand = exports2.de_UnallowlistMarketplaceListingCommand = exports2.de_SubmitJobCommand = exports2.de_SetWorkflowVersionTagCommand = exports2.de_SetMarketplaceListingVersionTagCommand = exports2.de_SendJobEventCommand = exports2.de_SearchMarketplaceOrganizationsCommand = exports2.de_RevokeMarketplaceAccessCommand = void 0;
40991
41046
  var JustWorkflowItServiceException_1 = require_JustWorkflowItServiceException();
40992
41047
  var models_0_1 = require_models_0();
40993
41048
  var core_1 = (init_dist_es3(), __toCommonJS(dist_es_exports3));
@@ -41004,6 +41059,111 @@ var require_Aws_restJson1 = __commonJS({
41004
41059
  return b4.build();
41005
41060
  };
41006
41061
  exports2.se_AcceptOrganizationInvitationCommand = se_AcceptOrganizationInvitationCommand;
41062
+ var se_AdminCreateRoleCommand = async (input, context) => {
41063
+ const b4 = (0, core_2.requestBuilder)(input, context);
41064
+ const headers = {
41065
+ "content-type": "application/json"
41066
+ };
41067
+ b4.bp("/admin/organizations/{organizationId}/roles");
41068
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
41069
+ let body;
41070
+ body = JSON.stringify((0, smithy_client_1.take)(input, {
41071
+ "description": [],
41072
+ "name": []
41073
+ }));
41074
+ b4.m("POST").h(headers).b(body);
41075
+ return b4.build();
41076
+ };
41077
+ exports2.se_AdminCreateRoleCommand = se_AdminCreateRoleCommand;
41078
+ var se_AdminDeleteRoleCommand = async (input, context) => {
41079
+ const b4 = (0, core_2.requestBuilder)(input, context);
41080
+ const headers = {};
41081
+ b4.bp("/admin/organizations/{organizationId}/roles/{roleId}");
41082
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
41083
+ b4.p("roleId", () => input.roleId, "{roleId}", false);
41084
+ let body;
41085
+ b4.m("DELETE").h(headers).b(body);
41086
+ return b4.build();
41087
+ };
41088
+ exports2.se_AdminDeleteRoleCommand = se_AdminDeleteRoleCommand;
41089
+ var se_AdminGetOrganizationCommand = async (input, context) => {
41090
+ const b4 = (0, core_2.requestBuilder)(input, context);
41091
+ const headers = {};
41092
+ b4.bp("/admin/organizations/{organizationId}");
41093
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
41094
+ let body;
41095
+ b4.m("GET").h(headers).b(body);
41096
+ return b4.build();
41097
+ };
41098
+ exports2.se_AdminGetOrganizationCommand = se_AdminGetOrganizationCommand;
41099
+ var se_AdminGetRoleCommand = async (input, context) => {
41100
+ const b4 = (0, core_2.requestBuilder)(input, context);
41101
+ const headers = {};
41102
+ b4.bp("/admin/organizations/{organizationId}/roles/{roleId}");
41103
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
41104
+ b4.p("roleId", () => input.roleId, "{roleId}", false);
41105
+ let body;
41106
+ b4.m("GET").h(headers).b(body);
41107
+ return b4.build();
41108
+ };
41109
+ exports2.se_AdminGetRoleCommand = se_AdminGetRoleCommand;
41110
+ var se_AdminListOrganizationsCommand = async (input, context) => {
41111
+ const b4 = (0, core_2.requestBuilder)(input, context);
41112
+ const headers = {};
41113
+ b4.bp("/admin/organizations");
41114
+ const query = (0, smithy_client_1.map)({
41115
+ [_s4]: [, input[_s4]],
41116
+ [_l]: [() => input.limit !== void 0, () => input[_l].toString()],
41117
+ [_nT]: [, input[_nT]]
41118
+ });
41119
+ let body;
41120
+ b4.m("GET").h(headers).q(query).b(body);
41121
+ return b4.build();
41122
+ };
41123
+ exports2.se_AdminListOrganizationsCommand = se_AdminListOrganizationsCommand;
41124
+ var se_AdminListRolesCommand = async (input, context) => {
41125
+ const b4 = (0, core_2.requestBuilder)(input, context);
41126
+ const headers = {};
41127
+ b4.bp("/admin/organizations/{organizationId}/roles");
41128
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
41129
+ let body;
41130
+ b4.m("GET").h(headers).b(body);
41131
+ return b4.build();
41132
+ };
41133
+ exports2.se_AdminListRolesCommand = se_AdminListRolesCommand;
41134
+ var se_AdminUpdateRoleCommand = async (input, context) => {
41135
+ const b4 = (0, core_2.requestBuilder)(input, context);
41136
+ const headers = {
41137
+ "content-type": "application/json"
41138
+ };
41139
+ b4.bp("/admin/organizations/{organizationId}/roles/{roleId}");
41140
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
41141
+ b4.p("roleId", () => input.roleId, "{roleId}", false);
41142
+ let body;
41143
+ body = JSON.stringify((0, smithy_client_1.take)(input, {
41144
+ "description": [],
41145
+ "name": [],
41146
+ "permissions": (_) => (0, smithy_client_1._json)(_)
41147
+ }));
41148
+ b4.m("PATCH").h(headers).b(body);
41149
+ return b4.build();
41150
+ };
41151
+ exports2.se_AdminUpdateRoleCommand = se_AdminUpdateRoleCommand;
41152
+ var se_AllowlistMarketplaceListingCommand = async (input, context) => {
41153
+ const b4 = (0, core_2.requestBuilder)(input, context);
41154
+ const headers = {
41155
+ "content-type": "application/json"
41156
+ };
41157
+ b4.bp("/organizations/{organizationId}/marketplace/allowlist");
41158
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
41159
+ let body;
41160
+ body = JSON.stringify((0, smithy_client_1.take)(input, {
41161
+ "listingId": []
41162
+ }));
41163
+ b4.m("POST").h(headers).b(body);
41164
+ return b4.build();
41165
+ };
41166
+ exports2.se_AllowlistMarketplaceListingCommand = se_AllowlistMarketplaceListingCommand;
41007
41167
  var se_CancelJobCommand = async (input, context) => {
41008
41168
  const b4 = (0, core_2.requestBuilder)(input, context);
41009
41169
  const headers = {};
@@ -41065,6 +41225,23 @@ var require_Aws_restJson1 = __commonJS({
41065
41225
  return b4.build();
41066
41226
  };
41067
41227
  exports2.se_CreateInterestCommand = se_CreateInterestCommand;
41228
+ var se_CreateMarketplaceListingVersionCommand = async (input, context) => {
41229
+ const b4 = (0, core_2.requestBuilder)(input, context);
41230
+ const headers = {
41231
+ "content-type": "application/json"
41232
+ };
41233
+ b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/versions");
41234
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
41235
+ b4.p("listingId", () => input.listingId, "{listingId}", false);
41236
+ let body;
41237
+ body = JSON.stringify((0, smithy_client_1.take)(input, {
41238
+ "setAsLive": [],
41239
+ "workflowVersionId": []
41240
+ }));
41241
+ b4.m("POST").h(headers).b(body);
41242
+ return b4.build();
41243
+ };
41244
+ exports2.se_CreateMarketplaceListingVersionCommand = se_CreateMarketplaceListingVersionCommand;
41068
41245
  var se_CreateOrganizationCommand = async (input, context) => {
41069
41246
  const b4 = (0, core_2.requestBuilder)(input, context);
41070
41247
  const headers = {
@@ -41074,6 +41251,7 @@ var require_Aws_restJson1 = __commonJS({
41074
41251
  let body;
41075
41252
  body = JSON.stringify((0, smithy_client_1.take)(input, {
41076
41253
  "displayName": [],
41254
+ "key": [],
41077
41255
  "name": []
41078
41256
  }));
41079
41257
  b4.m("POST").h(headers).b(body);
@@ -41130,6 +41308,18 @@ var require_Aws_restJson1 = __commonJS({
41130
41308
  return b4.build();
41131
41309
  };
41132
41310
  exports2.se_CreateRoleCommand = se_CreateRoleCommand;
41311
+ var se_DeleteMarketplaceListingBillingOverrideCommand = async (input, context) => {
41312
+ const b4 = (0, core_2.requestBuilder)(input, context);
41313
+ const headers = {};
41314
+ b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/billing/overrides/{organizationKey}");
41315
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
41316
+ b4.p("listingId", () => input.listingId, "{listingId}", false);
41317
+ b4.p("organizationKey", () => input.organizationKey, "{organizationKey}", false);
41318
+ let body;
41319
+ b4.m("DELETE").h(headers).b(body);
41320
+ return b4.build();
41321
+ };
41322
+ exports2.se_DeleteMarketplaceListingBillingOverrideCommand = se_DeleteMarketplaceListingBillingOverrideCommand;
41133
41323
  var se_DeleteOrganizationCommand = async (input, context) => {
41134
41324
  const b4 = (0, core_2.requestBuilder)(input, context);
41135
41325
  const headers = {};
@@ -41173,6 +41363,22 @@ var require_Aws_restJson1 = __commonJS({
41173
41363
  return b4.build();
41174
41364
  };
41175
41365
  exports2.se_GetApiAuthTokenCommand = se_GetApiAuthTokenCommand;
41366
+ var se_GetConsumerListingUsageTimeSeriesCommand = async (input, context) => {
41367
+ const b4 = (0, core_2.requestBuilder)(input, context);
41368
+ const headers = {};
41369
+ b4.bp("/organizations/{organizationId}/marketplace/subscribed/{listingId}/usage/timeseries");
41370
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
41371
+ b4.p("listingId", () => input.listingId, "{listingId}", false);
41372
+ const query = (0, smithy_client_1.map)({
41373
+ [_si]: [(0, smithy_client_1.expectNonNull)(input.since, `since`) != null, () => (0, smithy_client_1.serializeDateTime)(input[_si]).toString()],
41374
+ [_u]: [(0, smithy_client_1.expectNonNull)(input.until, `until`) != null, () => (0, smithy_client_1.serializeDateTime)(input[_u]).toString()],
41375
+ [_b]: [, input[_b]]
41376
+ });
41377
+ let body;
41378
+ b4.m("GET").h(headers).q(query).b(body);
41379
+ return b4.build();
41380
+ };
41381
+ exports2.se_GetConsumerListingUsageTimeSeriesCommand = se_GetConsumerListingUsageTimeSeriesCommand;
41176
41382
  var se_GetJobCommand = async (input, context) => {
41177
41383
  const b4 = (0, core_2.requestBuilder)(input, context);
41178
41384
  const headers = {};
@@ -41184,6 +41390,28 @@ var require_Aws_restJson1 = __commonJS({
41184
41390
  return b4.build();
41185
41391
  };
41186
41392
  exports2.se_GetJobCommand = se_GetJobCommand;
41393
+ var se_GetMarketplaceListingCommand = async (input, context) => {
41394
+ const b4 = (0, core_2.requestBuilder)(input, context);
41395
+ const headers = {};
41396
+ b4.bp("/marketplace/listings/{listingId}");
41397
+ b4.p("listingId", () => input.listingId, "{listingId}", false);
41398
+ let body;
41399
+ b4.m("GET").h(headers).b(body);
41400
+ return b4.build();
41401
+ };
41402
+ exports2.se_GetMarketplaceListingCommand = se_GetMarketplaceListingCommand;
41403
+ var se_GetMarketplaceListingVersionCommand = async (input, context) => {
41404
+ const b4 = (0, core_2.requestBuilder)(input, context);
41405
+ const headers = {};
41406
+ b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/versions/{versionId}");
41407
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
41408
+ b4.p("listingId", () => input.listingId, "{listingId}", false);
41409
+ b4.p("versionId", () => input.versionId, "{versionId}", false);
41410
+ let body;
41411
+ b4.m("GET").h(headers).b(body);
41412
+ return b4.build();
41413
+ };
41414
+ exports2.se_GetMarketplaceListingVersionCommand = se_GetMarketplaceListingVersionCommand;
41187
41415
  var se_GetMyPermissionsCommand = async (input, context) => {
41188
41416
  const b4 = (0, core_2.requestBuilder)(input, context);
41189
41417
  const headers = {};
@@ -41235,6 +41463,37 @@ var require_Aws_restJson1 = __commonJS({
41235
41463
  return b4.build();
41236
41464
  };
41237
41465
  exports2.se_GetPublicInvitationDetailsCommand = se_GetPublicInvitationDetailsCommand;
41466
+ var se_GetPublisherListingConsumerBreakdownCommand = async (input, context) => {
41467
+ const b4 = (0, core_2.requestBuilder)(input, context);
41468
+ const headers = {};
41469
+ b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/usage/consumers");
41470
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
41471
+ b4.p("listingId", () => input.listingId, "{listingId}", false);
41472
+ const query = (0, smithy_client_1.map)({
41473
+ [_si]: [(0, smithy_client_1.expectNonNull)(input.since, `since`) != null, () => (0, smithy_client_1.serializeDateTime)(input[_si]).toString()],
41474
+ [_u]: [(0, smithy_client_1.expectNonNull)(input.until, `until`) != null, () => (0, smithy_client_1.serializeDateTime)(input[_u]).toString()]
41475
+ });
41476
+ let body;
41477
+ b4.m("GET").h(headers).q(query).b(body);
41478
+ return b4.build();
41479
+ };
41480
+ exports2.se_GetPublisherListingConsumerBreakdownCommand = se_GetPublisherListingConsumerBreakdownCommand;
41481
+ var se_GetPublisherListingUsageTimeSeriesCommand = async (input, context) => {
41482
+ const b4 = (0, core_2.requestBuilder)(input, context);
41483
+ const headers = {};
41484
+ b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/usage/timeseries");
41485
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
41486
+ b4.p("listingId", () => input.listingId, "{listingId}", false);
41487
+ const query = (0, smithy_client_1.map)({
41488
+ [_si]: [(0, smithy_client_1.expectNonNull)(input.since, `since`) != null, () => (0, smithy_client_1.serializeDateTime)(input[_si]).toString()],
41489
+ [_u]: [(0, smithy_client_1.expectNonNull)(input.until, `until`) != null, () => (0, smithy_client_1.serializeDateTime)(input[_u]).toString()],
41490
+ [_b]: [, input[_b]]
41491
+ });
41492
+ let body;
41493
+ b4.m("GET").h(headers).q(query).b(body);
41494
+ return b4.build();
41495
+ };
41496
+ exports2.se_GetPublisherListingUsageTimeSeriesCommand = se_GetPublisherListingUsageTimeSeriesCommand;
41238
41497
  var se_GetResourcePoolCommand = async (input, context) => {
41239
41498
  const b4 = (0, core_2.requestBuilder)(input, context);
41240
41499
  const headers = {};
@@ -41267,6 +41526,18 @@ var require_Aws_restJson1 = __commonJS({
41267
41526
  return b4.build();
41268
41527
  };
41269
41528
  exports2.se_GetSubscriptionPlanCommand = se_GetSubscriptionPlanCommand;
41529
+ var se_GetTaggedMarketplaceListingVersionCommand = async (input, context) => {
41530
+ const b4 = (0, core_2.requestBuilder)(input, context);
41531
+ const headers = {};
41532
+ b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/tags/{tag}");
41533
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
41534
+ b4.p("listingId", () => input.listingId, "{listingId}", false);
41535
+ b4.p("tag", () => input.tag, "{tag}", false);
41536
+ let body;
41537
+ b4.m("GET").h(headers).b(body);
41538
+ return b4.build();
41539
+ };
41540
+ exports2.se_GetTaggedMarketplaceListingVersionCommand = se_GetTaggedMarketplaceListingVersionCommand;
41270
41541
  var se_GetTaggedWorkflowVersionCommand = async (input, context) => {
41271
41542
  const b4 = (0, core_2.requestBuilder)(input, context);
41272
41543
  const headers = {};
@@ -41299,7 +41570,7 @@ var require_Aws_restJson1 = __commonJS({
41299
41570
  [_m3]: [, (0, smithy_client_1.expectNonNull)(input[_m3], `metric`)],
41300
41571
  [_a2]: [, (0, smithy_client_1.expectNonNull)(input[_a2], `aggregation`)],
41301
41572
  [_b]: [, (0, smithy_client_1.expectNonNull)(input[_b], `bucket`)],
41302
- [_s4]: [(0, smithy_client_1.expectNonNull)(input.since, `since`) != null, () => (0, smithy_client_1.serializeDateTime)(input[_s4]).toString()],
41573
+ [_si]: [(0, smithy_client_1.expectNonNull)(input.since, `since`) != null, () => (0, smithy_client_1.serializeDateTime)(input[_si]).toString()],
41303
41574
  [_u]: [(0, smithy_client_1.expectNonNull)(input.until, `until`) != null, () => (0, smithy_client_1.serializeDateTime)(input[_u]).toString()]
41304
41575
  });
41305
41576
  let body;
@@ -41330,6 +41601,43 @@ var require_Aws_restJson1 = __commonJS({
41330
41601
  return b4.build();
41331
41602
  };
41332
41603
  exports2.se_GetWorkflowVersionCommand = se_GetWorkflowVersionCommand;
41604
+ var se_GrantMarketplaceAccessCommand = async (input, context) => {
41605
+ const b4 = (0, core_2.requestBuilder)(input, context);
41606
+ const headers = {
41607
+ "content-type": "application/json"
41608
+ };
41609
+ b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/grants");
41610
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
41611
+ b4.p("listingId", () => input.listingId, "{listingId}", false);
41612
+ let body;
41613
+ body = JSON.stringify((0, smithy_client_1.take)(input, {
41614
+ "grantedOrganizationId": []
41615
+ }));
41616
+ b4.m("POST").h(headers).b(body);
41617
+ return b4.build();
41618
+ };
41619
+ exports2.se_GrantMarketplaceAccessCommand = se_GrantMarketplaceAccessCommand;
41620
+ var se_IsMarketplaceListingAllowlistedCommand = async (input, context) => {
41621
+ const b4 = (0, core_2.requestBuilder)(input, context);
41622
+ const headers = {};
41623
+ b4.bp("/organizations/{organizationId}/marketplace/allowlist/{listingId}");
41624
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
41625
+ b4.p("listingId", () => input.listingId, "{listingId}", false);
41626
+ let body;
41627
+ b4.m("GET").h(headers).b(body);
41628
+ return b4.build();
41629
+ };
41630
+ exports2.se_IsMarketplaceListingAllowlistedCommand = se_IsMarketplaceListingAllowlistedCommand;
41631
+ var se_ListAllowlistedMarketplaceListingsCommand = async (input, context) => {
41632
+ const b4 = (0, core_2.requestBuilder)(input, context);
41633
+ const headers = {};
41634
+ b4.bp("/organizations/{organizationId}/marketplace/allowlist");
41635
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
41636
+ let body;
41637
+ b4.m("GET").h(headers).b(body);
41638
+ return b4.build();
41639
+ };
41640
+ exports2.se_ListAllowlistedMarketplaceListingsCommand = se_ListAllowlistedMarketplaceListingsCommand;
41333
41641
  var se_ListApiAuthTokensCommand = async (input, context) => {
41334
41642
  const b4 = (0, core_2.requestBuilder)(input, context);
41335
41643
  const headers = {};
@@ -41355,6 +41663,56 @@ var require_Aws_restJson1 = __commonJS({
41355
41663
  return b4.build();
41356
41664
  };
41357
41665
  exports2.se_ListJobsCommand = se_ListJobsCommand;
41666
+ var se_ListMarketplaceListingBillingOverridesCommand = async (input, context) => {
41667
+ const b4 = (0, core_2.requestBuilder)(input, context);
41668
+ const headers = {};
41669
+ b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/billing/overrides");
41670
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
41671
+ b4.p("listingId", () => input.listingId, "{listingId}", false);
41672
+ let body;
41673
+ b4.m("GET").h(headers).b(body);
41674
+ return b4.build();
41675
+ };
41676
+ exports2.se_ListMarketplaceListingBillingOverridesCommand = se_ListMarketplaceListingBillingOverridesCommand;
41677
+ var se_ListMarketplaceListingsCommand = async (input, context) => {
41678
+ const b4 = (0, core_2.requestBuilder)(input, context);
41679
+ const headers = {};
41680
+ b4.bp("/marketplace/listings");
41681
+ const query = (0, smithy_client_1.map)({
41682
+ [_s4]: [, input[_s4]],
41683
+ [_oI]: [, input[_oI]],
41684
+ [_l]: [() => input.limit !== void 0, () => input[_l].toString()],
41685
+ [_nT]: [, input[_nT]]
41686
+ });
41687
+ let body;
41688
+ b4.m("GET").h(headers).q(query).b(body);
41689
+ return b4.build();
41690
+ };
41691
+ exports2.se_ListMarketplaceListingsCommand = se_ListMarketplaceListingsCommand;
41692
+ var se_ListMarketplaceListingVersionsCommand = async (input, context) => {
41693
+ const b4 = (0, core_2.requestBuilder)(input, context);
41694
+ const headers = {};
41695
+ b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/versions");
41696
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
41697
+ b4.p("listingId", () => input.listingId, "{listingId}", false);
41698
+ let body;
41699
+ b4.m("GET").h(headers).b(body);
41700
+ return b4.build();
41701
+ };
41702
+ exports2.se_ListMarketplaceListingVersionsCommand = se_ListMarketplaceListingVersionsCommand;
41703
+ var se_ListMyMarketplaceListingsCommand = async (input, context) => {
41704
+ const b4 = (0, core_2.requestBuilder)(input, context);
41705
+ const headers = {};
41706
+ b4.bp("/organizations/{organizationId}/marketplace/listings");
41707
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
41708
+ const query = (0, smithy_client_1.map)({
41709
+ [_st]: [, input[_st]]
41710
+ });
41711
+ let body;
41712
+ b4.m("GET").h(headers).q(query).b(body);
41713
+ return b4.build();
41714
+ };
41715
+ exports2.se_ListMyMarketplaceListingsCommand = se_ListMyMarketplaceListingsCommand;
41358
41716
  var se_ListOrganizationInvitationsForUserCommand = async (input, context) => {
41359
41717
  const b4 = (0, core_2.requestBuilder)(input, context);
41360
41718
  const headers = {};
@@ -41433,6 +41791,28 @@ var require_Aws_restJson1 = __commonJS({
41433
41791
  return b4.build();
41434
41792
  };
41435
41793
  exports2.se_ListWorkflowVersionsCommand = se_ListWorkflowVersionsCommand;
41794
+ var se_PublishWorkflowToMarketplaceCommand = async (input, context) => {
41795
+ const b4 = (0, core_2.requestBuilder)(input, context);
41796
+ const headers = {
41797
+ "content-type": "application/json"
41798
+ };
41799
+ b4.bp("/organizations/{organizationId}/marketplace/listings");
41800
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
41801
+ let body;
41802
+ body = JSON.stringify((0, smithy_client_1.take)(input, {
41803
+ "description": [],
41804
+ "key": [],
41805
+ "rateLimitMaxRequests": [],
41806
+ "rateLimitWindowUnit": [],
41807
+ "rateLimitWindowValue": [],
41808
+ "title": [],
41809
+ "visibility": [],
41810
+ "workflowVersionId": []
41811
+ }));
41812
+ b4.m("POST").h(headers).b(body);
41813
+ return b4.build();
41814
+ };
41815
+ exports2.se_PublishWorkflowToMarketplaceCommand = se_PublishWorkflowToMarketplaceCommand;
41436
41816
  var se_RegisterWorkflowCommand = async (input, context) => {
41437
41817
  const b4 = (0, core_2.requestBuilder)(input, context);
41438
41818
  const headers = {
@@ -41508,6 +41888,31 @@ var require_Aws_restJson1 = __commonJS({
41508
41888
  return b4.build();
41509
41889
  };
41510
41890
  exports2.se_RevokeApiAuthTokenCommand = se_RevokeApiAuthTokenCommand;
41891
+ var se_RevokeMarketplaceAccessCommand = async (input, context) => {
41892
+ const b4 = (0, core_2.requestBuilder)(input, context);
41893
+ const headers = {};
41894
+ b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/grants/{grantedOrganizationId}");
41895
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
41896
+ b4.p("listingId", () => input.listingId, "{listingId}", false);
41897
+ b4.p("grantedOrganizationId", () => input.grantedOrganizationId, "{grantedOrganizationId}", false);
41898
+ let body;
41899
+ b4.m("DELETE").h(headers).b(body);
41900
+ return b4.build();
41901
+ };
41902
+ exports2.se_RevokeMarketplaceAccessCommand = se_RevokeMarketplaceAccessCommand;
41903
+ var se_SearchMarketplaceOrganizationsCommand = async (input, context) => {
41904
+ const b4 = (0, core_2.requestBuilder)(input, context);
41905
+ const headers = {};
41906
+ b4.bp("/marketplace/organizations");
41907
+ const query = (0, smithy_client_1.map)({
41908
+ [_s4]: [, input[_s4]],
41909
+ [_l]: [() => input.limit !== void 0, () => input[_l].toString()]
41910
+ });
41911
+ let body;
41912
+ b4.m("GET").h(headers).q(query).b(body);
41913
+ return b4.build();
41914
+ };
41915
+ exports2.se_SearchMarketplaceOrganizationsCommand = se_SearchMarketplaceOrganizationsCommand;
41511
41916
  var se_SendJobEventCommand = async (input, context) => {
41512
41917
  const b4 = (0, core_2.requestBuilder)(input, context);
41513
41918
  const headers = {
@@ -41525,6 +41930,23 @@ var require_Aws_restJson1 = __commonJS({
41525
41930
  return b4.build();
41526
41931
  };
41527
41932
  exports2.se_SendJobEventCommand = se_SendJobEventCommand;
41933
+ var se_SetMarketplaceListingVersionTagCommand = async (input, context) => {
41934
+ const b4 = (0, core_2.requestBuilder)(input, context);
41935
+ const headers = {
41936
+ "content-type": "application/json"
41937
+ };
41938
+ b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/tags/{tag}");
41939
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
41940
+ b4.p("listingId", () => input.listingId, "{listingId}", false);
41941
+ b4.p("tag", () => input.tag, "{tag}", false);
41942
+ let body;
41943
+ body = JSON.stringify((0, smithy_client_1.take)(input, {
41944
+ "versionId": []
41945
+ }));
41946
+ b4.m("PUT").h(headers).b(body);
41947
+ return b4.build();
41948
+ };
41949
+ exports2.se_SetMarketplaceListingVersionTagCommand = se_SetMarketplaceListingVersionTagCommand;
41528
41950
  var se_SetWorkflowVersionTagCommand = async (input, context) => {
41529
41951
  const b4 = (0, core_2.requestBuilder)(input, context);
41530
41952
  const headers = {
@@ -41559,6 +41981,28 @@ var require_Aws_restJson1 = __commonJS({
41559
41981
  return b4.build();
41560
41982
  };
41561
41983
  exports2.se_SubmitJobCommand = se_SubmitJobCommand;
41984
+ var se_UnallowlistMarketplaceListingCommand = async (input, context) => {
41985
+ const b4 = (0, core_2.requestBuilder)(input, context);
41986
+ const headers = {};
41987
+ b4.bp("/organizations/{organizationId}/marketplace/allowlist/{listingId}");
41988
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
41989
+ b4.p("listingId", () => input.listingId, "{listingId}", false);
41990
+ let body;
41991
+ b4.m("DELETE").h(headers).b(body);
41992
+ return b4.build();
41993
+ };
41994
+ exports2.se_UnallowlistMarketplaceListingCommand = se_UnallowlistMarketplaceListingCommand;
41995
+ var se_UnpublishWorkflowFromMarketplaceCommand = async (input, context) => {
41996
+ const b4 = (0, core_2.requestBuilder)(input, context);
41997
+ const headers = {};
41998
+ b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}");
41999
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
42000
+ b4.p("listingId", () => input.listingId, "{listingId}", false);
42001
+ let body;
42002
+ b4.m("DELETE").h(headers).b(body);
42003
+ return b4.build();
42004
+ };
42005
+ exports2.se_UnpublishWorkflowFromMarketplaceCommand = se_UnpublishWorkflowFromMarketplaceCommand;
41562
42006
  var se_UpdateApiAuthTokenCommand = async (input, context) => {
41563
42007
  const b4 = (0, core_2.requestBuilder)(input, context);
41564
42008
  const headers = {
@@ -41576,6 +42020,45 @@ var require_Aws_restJson1 = __commonJS({
41576
42020
  return b4.build();
41577
42021
  };
41578
42022
  exports2.se_UpdateApiAuthTokenCommand = se_UpdateApiAuthTokenCommand;
42023
+ var se_UpdateMarketplaceListingBillingCommand = async (input, context) => {
42024
+ const b4 = (0, core_2.requestBuilder)(input, context);
42025
+ const headers = {
42026
+ "content-type": "application/json"
42027
+ };
42028
+ b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/billing");
42029
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
42030
+ b4.p("listingId", () => input.listingId, "{listingId}", false);
42031
+ let body;
42032
+ body = JSON.stringify((0, smithy_client_1.take)(input, {
42033
+ "billingModel": [],
42034
+ "costPerInvocation": (_) => (0, smithy_client_1.serializeFloat)(_),
42035
+ "costPerMonth": (_) => (0, smithy_client_1.serializeFloat)(_),
42036
+ "costPerUnit": (_) => (0, smithy_client_1.serializeFloat)(_),
42037
+ "rateLimitMaxRequests": [],
42038
+ "rateLimitWindowUnit": [],
42039
+ "rateLimitWindowValue": []
42040
+ }));
42041
+ b4.m("PATCH").h(headers).b(body);
42042
+ return b4.build();
42043
+ };
42044
+ exports2.se_UpdateMarketplaceListingBillingCommand = se_UpdateMarketplaceListingBillingCommand;
42045
+ var se_UpdateMarketplaceListingMetadataCommand = async (input, context) => {
42046
+ const b4 = (0, core_2.requestBuilder)(input, context);
42047
+ const headers = {
42048
+ "content-type": "application/json"
42049
+ };
42050
+ b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}");
42051
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
42052
+ b4.p("listingId", () => input.listingId, "{listingId}", false);
42053
+ let body;
42054
+ body = JSON.stringify((0, smithy_client_1.take)(input, {
42055
+ "description": [],
42056
+ "visibility": []
42057
+ }));
42058
+ b4.m("PATCH").h(headers).b(body);
42059
+ return b4.build();
42060
+ };
42061
+ exports2.se_UpdateMarketplaceListingMetadataCommand = se_UpdateMarketplaceListingMetadataCommand;
41579
42062
  var se_UpdateOrganizationCommand = async (input, context) => {
41580
42063
  const b4 = (0, core_2.requestBuilder)(input, context);
41581
42064
  const headers = {
@@ -41644,6 +42127,26 @@ var require_Aws_restJson1 = __commonJS({
41644
42127
  return b4.build();
41645
42128
  };
41646
42129
  exports2.se_UpdateRoleCommand = se_UpdateRoleCommand;
42130
+ var se_UpsertMarketplaceListingBillingOverrideCommand = async (input, context) => {
42131
+ const b4 = (0, core_2.requestBuilder)(input, context);
42132
+ const headers = {
42133
+ "content-type": "application/json"
42134
+ };
42135
+ b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/billing/overrides/{organizationKey}");
42136
+ b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
42137
+ b4.p("listingId", () => input.listingId, "{listingId}", false);
42138
+ b4.p("organizationKey", () => input.organizationKey, "{organizationKey}", false);
42139
+ let body;
42140
+ body = JSON.stringify((0, smithy_client_1.take)(input, {
42141
+ "billingModel": [],
42142
+ "costPerInvocation": (_) => (0, smithy_client_1.serializeFloat)(_),
42143
+ "costPerMonth": (_) => (0, smithy_client_1.serializeFloat)(_),
42144
+ "costPerUnit": (_) => (0, smithy_client_1.serializeFloat)(_)
42145
+ }));
42146
+ b4.m("PUT").h(headers).b(body);
42147
+ return b4.build();
42148
+ };
42149
+ exports2.se_UpsertMarketplaceListingBillingOverrideCommand = se_UpsertMarketplaceListingBillingOverrideCommand;
41647
42150
  var de_AcceptOrganizationInvitationCommand = async (output, context) => {
41648
42151
  if (output.statusCode !== 200 && output.statusCode >= 300) {
41649
42152
  return de_CommandError(output, context);
@@ -41660,6 +42163,147 @@ var require_Aws_restJson1 = __commonJS({
41660
42163
  return contents;
41661
42164
  };
41662
42165
  exports2.de_AcceptOrganizationInvitationCommand = de_AcceptOrganizationInvitationCommand;
42166
+ var de_AdminCreateRoleCommand = async (output, context) => {
42167
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
42168
+ return de_CommandError(output, context);
42169
+ }
42170
+ const contents = (0, smithy_client_1.map)({
42171
+ $metadata: deserializeMetadata(output)
42172
+ });
42173
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
42174
+ const doc = (0, smithy_client_1.take)(data2, {
42175
+ "createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
42176
+ "description": smithy_client_1.expectString,
42177
+ "name": smithy_client_1.expectString,
42178
+ "roleId": smithy_client_1.expectString
42179
+ });
42180
+ Object.assign(contents, doc);
42181
+ return contents;
42182
+ };
42183
+ exports2.de_AdminCreateRoleCommand = de_AdminCreateRoleCommand;
42184
+ var de_AdminDeleteRoleCommand = async (output, context) => {
42185
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
42186
+ return de_CommandError(output, context);
42187
+ }
42188
+ const contents = (0, smithy_client_1.map)({
42189
+ $metadata: deserializeMetadata(output)
42190
+ });
42191
+ await (0, smithy_client_1.collectBody)(output.body, context);
42192
+ return contents;
42193
+ };
42194
+ exports2.de_AdminDeleteRoleCommand = de_AdminDeleteRoleCommand;
42195
+ var de_AdminGetOrganizationCommand = async (output, context) => {
42196
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
42197
+ return de_CommandError(output, context);
42198
+ }
42199
+ const contents = (0, smithy_client_1.map)({
42200
+ $metadata: deserializeMetadata(output)
42201
+ });
42202
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
42203
+ const doc = (0, smithy_client_1.take)(data2, {
42204
+ "createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
42205
+ "displayName": smithy_client_1.expectString,
42206
+ "jobCount": smithy_client_1.expectInt32,
42207
+ "key": smithy_client_1.expectString,
42208
+ "memberCount": smithy_client_1.expectInt32,
42209
+ "name": smithy_client_1.expectString,
42210
+ "organizationId": smithy_client_1.expectString,
42211
+ "roleCount": smithy_client_1.expectInt32,
42212
+ "subscriptionPlanId": smithy_client_1.expectString,
42213
+ "subscriptionPlanName": smithy_client_1.expectString,
42214
+ "updatedAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
42215
+ "workflowCount": smithy_client_1.expectInt32
42216
+ });
42217
+ Object.assign(contents, doc);
42218
+ return contents;
42219
+ };
42220
+ exports2.de_AdminGetOrganizationCommand = de_AdminGetOrganizationCommand;
42221
+ var de_AdminGetRoleCommand = async (output, context) => {
42222
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
42223
+ return de_CommandError(output, context);
42224
+ }
42225
+ const contents = (0, smithy_client_1.map)({
42226
+ $metadata: deserializeMetadata(output)
42227
+ });
42228
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
42229
+ const doc = (0, smithy_client_1.take)(data2, {
42230
+ "createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
42231
+ "description": smithy_client_1.expectString,
42232
+ "name": smithy_client_1.expectString,
42233
+ "permissions": smithy_client_1._json,
42234
+ "roleId": smithy_client_1.expectString,
42235
+ "updatedAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
42236
+ "users": smithy_client_1._json
42237
+ });
42238
+ Object.assign(contents, doc);
42239
+ return contents;
42240
+ };
42241
+ exports2.de_AdminGetRoleCommand = de_AdminGetRoleCommand;
42242
+ var de_AdminListOrganizationsCommand = async (output, context) => {
42243
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
42244
+ return de_CommandError(output, context);
42245
+ }
42246
+ const contents = (0, smithy_client_1.map)({
42247
+ $metadata: deserializeMetadata(output)
42248
+ });
42249
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
42250
+ const doc = (0, smithy_client_1.take)(data2, {
42251
+ "nextToken": smithy_client_1.expectString,
42252
+ "organizations": (_) => de_AdminOrganizationSummaryList(_, context)
42253
+ });
42254
+ Object.assign(contents, doc);
42255
+ return contents;
42256
+ };
42257
+ exports2.de_AdminListOrganizationsCommand = de_AdminListOrganizationsCommand;
42258
+ var de_AdminListRolesCommand = async (output, context) => {
42259
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
42260
+ return de_CommandError(output, context);
42261
+ }
42262
+ const contents = (0, smithy_client_1.map)({
42263
+ $metadata: deserializeMetadata(output)
42264
+ });
42265
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
42266
+ const doc = (0, smithy_client_1.take)(data2, {
42267
+ "roles": (_) => de_AdminRoleSummaryList(_, context)
42268
+ });
42269
+ Object.assign(contents, doc);
42270
+ return contents;
42271
+ };
42272
+ exports2.de_AdminListRolesCommand = de_AdminListRolesCommand;
42273
+ var de_AdminUpdateRoleCommand = async (output, context) => {
42274
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
42275
+ return de_CommandError(output, context);
42276
+ }
42277
+ const contents = (0, smithy_client_1.map)({
42278
+ $metadata: deserializeMetadata(output)
42279
+ });
42280
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
42281
+ const doc = (0, smithy_client_1.take)(data2, {
42282
+ "description": smithy_client_1.expectString,
42283
+ "name": smithy_client_1.expectString,
42284
+ "permissions": smithy_client_1._json,
42285
+ "roleId": smithy_client_1.expectString,
42286
+ "updatedAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_))
42287
+ });
42288
+ Object.assign(contents, doc);
42289
+ return contents;
42290
+ };
42291
+ exports2.de_AdminUpdateRoleCommand = de_AdminUpdateRoleCommand;
42292
+ var de_AllowlistMarketplaceListingCommand = async (output, context) => {
42293
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
42294
+ return de_CommandError(output, context);
42295
+ }
42296
+ const contents = (0, smithy_client_1.map)({
42297
+ $metadata: deserializeMetadata(output)
42298
+ });
42299
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
42300
+ const doc = (0, smithy_client_1.take)(data2, {
42301
+ "allowlistEntryId": smithy_client_1.expectString
42302
+ });
42303
+ Object.assign(contents, doc);
42304
+ return contents;
42305
+ };
42306
+ exports2.de_AllowlistMarketplaceListingCommand = de_AllowlistMarketplaceListingCommand;
41663
42307
  var de_CancelJobCommand = async (output, context) => {
41664
42308
  if (output.statusCode !== 200 && output.statusCode >= 300) {
41665
42309
  return de_CommandError(output, context);
@@ -41720,6 +42364,22 @@ var require_Aws_restJson1 = __commonJS({
41720
42364
  return contents;
41721
42365
  };
41722
42366
  exports2.de_CreateInterestCommand = de_CreateInterestCommand;
42367
+ var de_CreateMarketplaceListingVersionCommand = async (output, context) => {
42368
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
42369
+ return de_CommandError(output, context);
42370
+ }
42371
+ const contents = (0, smithy_client_1.map)({
42372
+ $metadata: deserializeMetadata(output)
42373
+ });
42374
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
42375
+ const doc = (0, smithy_client_1.take)(data2, {
42376
+ "versionId": smithy_client_1.expectString,
42377
+ "versionNumber": smithy_client_1.expectInt32
42378
+ });
42379
+ Object.assign(contents, doc);
42380
+ return contents;
42381
+ };
42382
+ exports2.de_CreateMarketplaceListingVersionCommand = de_CreateMarketplaceListingVersionCommand;
41723
42383
  var de_CreateOrganizationCommand = async (output, context) => {
41724
42384
  if (output.statusCode !== 200 && output.statusCode >= 300) {
41725
42385
  return de_CommandError(output, context);
@@ -41731,6 +42391,7 @@ var require_Aws_restJson1 = __commonJS({
41731
42391
  const doc = (0, smithy_client_1.take)(data2, {
41732
42392
  "createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
41733
42393
  "displayName": smithy_client_1.expectString,
42394
+ "key": smithy_client_1.expectString,
41734
42395
  "name": smithy_client_1.expectString,
41735
42396
  "organizationId": smithy_client_1.expectString
41736
42397
  });
@@ -41783,6 +42444,17 @@ var require_Aws_restJson1 = __commonJS({
41783
42444
  return contents;
41784
42445
  };
41785
42446
  exports2.de_CreateRoleCommand = de_CreateRoleCommand;
42447
+ var de_DeleteMarketplaceListingBillingOverrideCommand = async (output, context) => {
42448
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
42449
+ return de_CommandError(output, context);
42450
+ }
42451
+ const contents = (0, smithy_client_1.map)({
42452
+ $metadata: deserializeMetadata(output)
42453
+ });
42454
+ await (0, smithy_client_1.collectBody)(output.body, context);
42455
+ return contents;
42456
+ };
42457
+ exports2.de_DeleteMarketplaceListingBillingOverrideCommand = de_DeleteMarketplaceListingBillingOverrideCommand;
41786
42458
  var de_DeleteOrganizationCommand = async (output, context) => {
41787
42459
  if (output.statusCode !== 200 && output.statusCode >= 300) {
41788
42460
  return de_CommandError(output, context);
@@ -41839,6 +42511,28 @@ var require_Aws_restJson1 = __commonJS({
41839
42511
  return contents;
41840
42512
  };
41841
42513
  exports2.de_GetApiAuthTokenCommand = de_GetApiAuthTokenCommand;
42514
+ var de_GetConsumerListingUsageTimeSeriesCommand = async (output, context) => {
42515
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
42516
+ return de_CommandError(output, context);
42517
+ }
42518
+ const contents = (0, smithy_client_1.map)({
42519
+ $metadata: deserializeMetadata(output)
42520
+ });
42521
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
42522
+ const doc = (0, smithy_client_1.take)(data2, {
42523
+ "dataPoints": (_) => de_UsageTimeSeriesDataPointList(_, context),
42524
+ "effectiveBillingModel": smithy_client_1.expectString,
42525
+ "effectiveCostPerInvocation": smithy_client_1.limitedParseFloat32,
42526
+ "effectiveCostPerMonth": smithy_client_1.limitedParseFloat32,
42527
+ "effectiveCostPerUnit": smithy_client_1.limitedParseFloat32,
42528
+ "totalEstimatedCost": smithy_client_1.limitedParseFloat32,
42529
+ "totalInvocations": smithy_client_1.expectLong,
42530
+ "totalUnits": smithy_client_1.limitedParseFloat32
42531
+ });
42532
+ Object.assign(contents, doc);
42533
+ return contents;
42534
+ };
42535
+ exports2.de_GetConsumerListingUsageTimeSeriesCommand = de_GetConsumerListingUsageTimeSeriesCommand;
41842
42536
  var de_GetJobCommand = async (output, context) => {
41843
42537
  if (output.statusCode !== 200 && output.statusCode >= 300) {
41844
42538
  return de_CommandError(output, context);
@@ -41856,6 +42550,63 @@ var require_Aws_restJson1 = __commonJS({
41856
42550
  return contents;
41857
42551
  };
41858
42552
  exports2.de_GetJobCommand = de_GetJobCommand;
42553
+ var de_GetMarketplaceListingCommand = async (output, context) => {
42554
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
42555
+ return de_CommandError(output, context);
42556
+ }
42557
+ const contents = (0, smithy_client_1.map)({
42558
+ $metadata: deserializeMetadata(output)
42559
+ });
42560
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
42561
+ const doc = (0, smithy_client_1.take)(data2, {
42562
+ "billingModel": smithy_client_1.expectString,
42563
+ "costPerInvocation": smithy_client_1.limitedParseFloat32,
42564
+ "costPerMonth": smithy_client_1.limitedParseFloat32,
42565
+ "costPerUnit": smithy_client_1.limitedParseFloat32,
42566
+ "createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
42567
+ "description": smithy_client_1.expectString,
42568
+ "key": smithy_client_1.expectString,
42569
+ "listingId": smithy_client_1.expectString,
42570
+ "liveVersion": (_) => de_MarketplaceListingVersionSummary(_, context),
42571
+ "organizationId": smithy_client_1.expectString,
42572
+ "organizationKey": smithy_client_1.expectString,
42573
+ "organizationName": smithy_client_1.expectString,
42574
+ "rateLimitMaxRequests": smithy_client_1.expectInt32,
42575
+ "rateLimitWindowUnit": smithy_client_1.expectString,
42576
+ "rateLimitWindowValue": smithy_client_1.expectInt32,
42577
+ "status": smithy_client_1.expectString,
42578
+ "title": smithy_client_1.expectString,
42579
+ "totalVersions": smithy_client_1.expectInt32,
42580
+ "updatedAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
42581
+ "visibility": smithy_client_1.expectString
42582
+ });
42583
+ Object.assign(contents, doc);
42584
+ return contents;
42585
+ };
42586
+ exports2.de_GetMarketplaceListingCommand = de_GetMarketplaceListingCommand;
42587
+ var de_GetMarketplaceListingVersionCommand = async (output, context) => {
42588
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
42589
+ return de_CommandError(output, context);
42590
+ }
42591
+ const contents = (0, smithy_client_1.map)({
42592
+ $metadata: deserializeMetadata(output)
42593
+ });
42594
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
42595
+ const doc = (0, smithy_client_1.take)(data2, {
42596
+ "createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
42597
+ "inputSchema": smithy_client_1.expectString,
42598
+ "tags": smithy_client_1._json,
42599
+ "versionId": smithy_client_1.expectString,
42600
+ "versionNumber": smithy_client_1.expectInt32,
42601
+ "workflowId": smithy_client_1.expectString,
42602
+ "workflowName": smithy_client_1.expectString,
42603
+ "workflowVersionId": smithy_client_1.expectString,
42604
+ "workflowVersionNumber": smithy_client_1.expectInt32
42605
+ });
42606
+ Object.assign(contents, doc);
42607
+ return contents;
42608
+ };
42609
+ exports2.de_GetMarketplaceListingVersionCommand = de_GetMarketplaceListingVersionCommand;
41859
42610
  var de_GetMyPermissionsCommand = async (output, context) => {
41860
42611
  if (output.statusCode !== 200 && output.statusCode >= 300) {
41861
42612
  return de_CommandError(output, context);
@@ -41882,6 +42633,7 @@ var require_Aws_restJson1 = __commonJS({
41882
42633
  const doc = (0, smithy_client_1.take)(data2, {
41883
42634
  "createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
41884
42635
  "displayName": smithy_client_1.expectString,
42636
+ "key": smithy_client_1.expectString,
41885
42637
  "name": smithy_client_1.expectString,
41886
42638
  "organizationId": smithy_client_1.expectString
41887
42639
  });
@@ -41945,6 +42697,42 @@ var require_Aws_restJson1 = __commonJS({
41945
42697
  return contents;
41946
42698
  };
41947
42699
  exports2.de_GetPublicInvitationDetailsCommand = de_GetPublicInvitationDetailsCommand;
42700
+ var de_GetPublisherListingConsumerBreakdownCommand = async (output, context) => {
42701
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
42702
+ return de_CommandError(output, context);
42703
+ }
42704
+ const contents = (0, smithy_client_1.map)({
42705
+ $metadata: deserializeMetadata(output)
42706
+ });
42707
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
42708
+ const doc = (0, smithy_client_1.take)(data2, {
42709
+ "consumers": (_) => de_ConsumerUsageBreakdownList(_, context),
42710
+ "totalEstimatedCost": smithy_client_1.limitedParseFloat32,
42711
+ "totalInvocations": smithy_client_1.expectLong,
42712
+ "totalUnits": smithy_client_1.limitedParseFloat32
42713
+ });
42714
+ Object.assign(contents, doc);
42715
+ return contents;
42716
+ };
42717
+ exports2.de_GetPublisherListingConsumerBreakdownCommand = de_GetPublisherListingConsumerBreakdownCommand;
42718
+ var de_GetPublisherListingUsageTimeSeriesCommand = async (output, context) => {
42719
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
42720
+ return de_CommandError(output, context);
42721
+ }
42722
+ const contents = (0, smithy_client_1.map)({
42723
+ $metadata: deserializeMetadata(output)
42724
+ });
42725
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
42726
+ const doc = (0, smithy_client_1.take)(data2, {
42727
+ "dataPoints": (_) => de_UsageTimeSeriesDataPointList(_, context),
42728
+ "totalEstimatedCost": smithy_client_1.limitedParseFloat32,
42729
+ "totalInvocations": smithy_client_1.expectLong,
42730
+ "totalUnits": smithy_client_1.limitedParseFloat32
42731
+ });
42732
+ Object.assign(contents, doc);
42733
+ return contents;
42734
+ };
42735
+ exports2.de_GetPublisherListingUsageTimeSeriesCommand = de_GetPublisherListingUsageTimeSeriesCommand;
41948
42736
  var de_GetResourcePoolCommand = async (output, context) => {
41949
42737
  if (output.statusCode !== 200 && output.statusCode >= 300) {
41950
42738
  return de_CommandError(output, context);
@@ -41992,6 +42780,22 @@ var require_Aws_restJson1 = __commonJS({
41992
42780
  return contents;
41993
42781
  };
41994
42782
  exports2.de_GetSubscriptionPlanCommand = de_GetSubscriptionPlanCommand;
42783
+ var de_GetTaggedMarketplaceListingVersionCommand = async (output, context) => {
42784
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
42785
+ return de_CommandError(output, context);
42786
+ }
42787
+ const contents = (0, smithy_client_1.map)({
42788
+ $metadata: deserializeMetadata(output)
42789
+ });
42790
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
42791
+ const doc = (0, smithy_client_1.take)(data2, {
42792
+ "versionId": smithy_client_1.expectString,
42793
+ "versionNumber": smithy_client_1.expectInt32
42794
+ });
42795
+ Object.assign(contents, doc);
42796
+ return contents;
42797
+ };
42798
+ exports2.de_GetTaggedMarketplaceListingVersionCommand = de_GetTaggedMarketplaceListingVersionCommand;
41995
42799
  var de_GetTaggedWorkflowVersionCommand = async (output, context) => {
41996
42800
  if (output.statusCode !== 200 && output.statusCode >= 300) {
41997
42801
  return de_CommandError(output, context);
@@ -42075,6 +42879,52 @@ var require_Aws_restJson1 = __commonJS({
42075
42879
  return contents;
42076
42880
  };
42077
42881
  exports2.de_GetWorkflowVersionCommand = de_GetWorkflowVersionCommand;
42882
+ var de_GrantMarketplaceAccessCommand = async (output, context) => {
42883
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
42884
+ return de_CommandError(output, context);
42885
+ }
42886
+ const contents = (0, smithy_client_1.map)({
42887
+ $metadata: deserializeMetadata(output)
42888
+ });
42889
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
42890
+ const doc = (0, smithy_client_1.take)(data2, {
42891
+ "grantId": smithy_client_1.expectString
42892
+ });
42893
+ Object.assign(contents, doc);
42894
+ return contents;
42895
+ };
42896
+ exports2.de_GrantMarketplaceAccessCommand = de_GrantMarketplaceAccessCommand;
42897
+ var de_IsMarketplaceListingAllowlistedCommand = async (output, context) => {
42898
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
42899
+ return de_CommandError(output, context);
42900
+ }
42901
+ const contents = (0, smithy_client_1.map)({
42902
+ $metadata: deserializeMetadata(output)
42903
+ });
42904
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
42905
+ const doc = (0, smithy_client_1.take)(data2, {
42906
+ "allowlistedAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
42907
+ "isAllowlisted": smithy_client_1.expectBoolean
42908
+ });
42909
+ Object.assign(contents, doc);
42910
+ return contents;
42911
+ };
42912
+ exports2.de_IsMarketplaceListingAllowlistedCommand = de_IsMarketplaceListingAllowlistedCommand;
42913
+ var de_ListAllowlistedMarketplaceListingsCommand = async (output, context) => {
42914
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
42915
+ return de_CommandError(output, context);
42916
+ }
42917
+ const contents = (0, smithy_client_1.map)({
42918
+ $metadata: deserializeMetadata(output)
42919
+ });
42920
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
42921
+ const doc = (0, smithy_client_1.take)(data2, {
42922
+ "listings": (_) => de_MarketplaceListingSummaryList(_, context)
42923
+ });
42924
+ Object.assign(contents, doc);
42925
+ return contents;
42926
+ };
42927
+ exports2.de_ListAllowlistedMarketplaceListingsCommand = de_ListAllowlistedMarketplaceListingsCommand;
42078
42928
  var de_ListApiAuthTokensCommand = async (output, context) => {
42079
42929
  if (output.statusCode !== 200 && output.statusCode >= 300) {
42080
42930
  return de_CommandError(output, context);
@@ -42107,6 +42957,67 @@ var require_Aws_restJson1 = __commonJS({
42107
42957
  return contents;
42108
42958
  };
42109
42959
  exports2.de_ListJobsCommand = de_ListJobsCommand;
42960
+ var de_ListMarketplaceListingBillingOverridesCommand = async (output, context) => {
42961
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
42962
+ return de_CommandError(output, context);
42963
+ }
42964
+ const contents = (0, smithy_client_1.map)({
42965
+ $metadata: deserializeMetadata(output)
42966
+ });
42967
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
42968
+ const doc = (0, smithy_client_1.take)(data2, {
42969
+ "overrides": (_) => de_MarketplaceBillingOverrideList(_, context)
42970
+ });
42971
+ Object.assign(contents, doc);
42972
+ return contents;
42973
+ };
42974
+ exports2.de_ListMarketplaceListingBillingOverridesCommand = de_ListMarketplaceListingBillingOverridesCommand;
42975
+ var de_ListMarketplaceListingsCommand = async (output, context) => {
42976
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
42977
+ return de_CommandError(output, context);
42978
+ }
42979
+ const contents = (0, smithy_client_1.map)({
42980
+ $metadata: deserializeMetadata(output)
42981
+ });
42982
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
42983
+ const doc = (0, smithy_client_1.take)(data2, {
42984
+ "listings": (_) => de_MarketplaceListingSummaryList(_, context),
42985
+ "nextToken": smithy_client_1.expectString
42986
+ });
42987
+ Object.assign(contents, doc);
42988
+ return contents;
42989
+ };
42990
+ exports2.de_ListMarketplaceListingsCommand = de_ListMarketplaceListingsCommand;
42991
+ var de_ListMarketplaceListingVersionsCommand = async (output, context) => {
42992
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
42993
+ return de_CommandError(output, context);
42994
+ }
42995
+ const contents = (0, smithy_client_1.map)({
42996
+ $metadata: deserializeMetadata(output)
42997
+ });
42998
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
42999
+ const doc = (0, smithy_client_1.take)(data2, {
43000
+ "versions": (_) => de_MarketplaceListingVersionSummaryList(_, context)
43001
+ });
43002
+ Object.assign(contents, doc);
43003
+ return contents;
43004
+ };
43005
+ exports2.de_ListMarketplaceListingVersionsCommand = de_ListMarketplaceListingVersionsCommand;
43006
+ var de_ListMyMarketplaceListingsCommand = async (output, context) => {
43007
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
43008
+ return de_CommandError(output, context);
43009
+ }
43010
+ const contents = (0, smithy_client_1.map)({
43011
+ $metadata: deserializeMetadata(output)
43012
+ });
43013
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
43014
+ const doc = (0, smithy_client_1.take)(data2, {
43015
+ "listings": (_) => de_MarketplaceListingSummaryList(_, context)
43016
+ });
43017
+ Object.assign(contents, doc);
43018
+ return contents;
43019
+ };
43020
+ exports2.de_ListMyMarketplaceListingsCommand = de_ListMyMarketplaceListingsCommand;
42110
43021
  var de_ListOrganizationInvitationsForUserCommand = async (output, context) => {
42111
43022
  if (output.statusCode !== 200 && output.statusCode >= 300) {
42112
43023
  return de_CommandError(output, context);
@@ -42228,6 +43139,22 @@ var require_Aws_restJson1 = __commonJS({
42228
43139
  return contents;
42229
43140
  };
42230
43141
  exports2.de_ListWorkflowVersionsCommand = de_ListWorkflowVersionsCommand;
43142
+ var de_PublishWorkflowToMarketplaceCommand = async (output, context) => {
43143
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
43144
+ return de_CommandError(output, context);
43145
+ }
43146
+ const contents = (0, smithy_client_1.map)({
43147
+ $metadata: deserializeMetadata(output)
43148
+ });
43149
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
43150
+ const doc = (0, smithy_client_1.take)(data2, {
43151
+ "key": smithy_client_1.expectString,
43152
+ "listingId": smithy_client_1.expectString
43153
+ });
43154
+ Object.assign(contents, doc);
43155
+ return contents;
43156
+ };
43157
+ exports2.de_PublishWorkflowToMarketplaceCommand = de_PublishWorkflowToMarketplaceCommand;
42231
43158
  var de_RegisterWorkflowCommand = async (output, context) => {
42232
43159
  if (output.statusCode !== 200 && output.statusCode >= 300) {
42233
43160
  return de_CommandError(output, context);
@@ -42313,6 +43240,32 @@ var require_Aws_restJson1 = __commonJS({
42313
43240
  return contents;
42314
43241
  };
42315
43242
  exports2.de_RevokeApiAuthTokenCommand = de_RevokeApiAuthTokenCommand;
43243
+ var de_RevokeMarketplaceAccessCommand = async (output, context) => {
43244
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
43245
+ return de_CommandError(output, context);
43246
+ }
43247
+ const contents = (0, smithy_client_1.map)({
43248
+ $metadata: deserializeMetadata(output)
43249
+ });
43250
+ await (0, smithy_client_1.collectBody)(output.body, context);
43251
+ return contents;
43252
+ };
43253
+ exports2.de_RevokeMarketplaceAccessCommand = de_RevokeMarketplaceAccessCommand;
43254
+ var de_SearchMarketplaceOrganizationsCommand = async (output, context) => {
43255
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
43256
+ return de_CommandError(output, context);
43257
+ }
43258
+ const contents = (0, smithy_client_1.map)({
43259
+ $metadata: deserializeMetadata(output)
43260
+ });
43261
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
43262
+ const doc = (0, smithy_client_1.take)(data2, {
43263
+ "organizations": smithy_client_1._json
43264
+ });
43265
+ Object.assign(contents, doc);
43266
+ return contents;
43267
+ };
43268
+ exports2.de_SearchMarketplaceOrganizationsCommand = de_SearchMarketplaceOrganizationsCommand;
42316
43269
  var de_SendJobEventCommand = async (output, context) => {
42317
43270
  if (output.statusCode !== 200 && output.statusCode >= 300) {
42318
43271
  return de_CommandError(output, context);
@@ -42329,6 +43282,21 @@ var require_Aws_restJson1 = __commonJS({
42329
43282
  return contents;
42330
43283
  };
42331
43284
  exports2.de_SendJobEventCommand = de_SendJobEventCommand;
43285
+ var de_SetMarketplaceListingVersionTagCommand = async (output, context) => {
43286
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
43287
+ return de_CommandError(output, context);
43288
+ }
43289
+ const contents = (0, smithy_client_1.map)({
43290
+ $metadata: deserializeMetadata(output)
43291
+ });
43292
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
43293
+ const doc = (0, smithy_client_1.take)(data2, {
43294
+ "success": smithy_client_1.expectBoolean
43295
+ });
43296
+ Object.assign(contents, doc);
43297
+ return contents;
43298
+ };
43299
+ exports2.de_SetMarketplaceListingVersionTagCommand = de_SetMarketplaceListingVersionTagCommand;
42332
43300
  var de_SetWorkflowVersionTagCommand = async (output, context) => {
42333
43301
  if (output.statusCode !== 200 && output.statusCode >= 300) {
42334
43302
  return de_CommandError(output, context);
@@ -42359,6 +43327,28 @@ var require_Aws_restJson1 = __commonJS({
42359
43327
  return contents;
42360
43328
  };
42361
43329
  exports2.de_SubmitJobCommand = de_SubmitJobCommand;
43330
+ var de_UnallowlistMarketplaceListingCommand = async (output, context) => {
43331
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
43332
+ return de_CommandError(output, context);
43333
+ }
43334
+ const contents = (0, smithy_client_1.map)({
43335
+ $metadata: deserializeMetadata(output)
43336
+ });
43337
+ await (0, smithy_client_1.collectBody)(output.body, context);
43338
+ return contents;
43339
+ };
43340
+ exports2.de_UnallowlistMarketplaceListingCommand = de_UnallowlistMarketplaceListingCommand;
43341
+ var de_UnpublishWorkflowFromMarketplaceCommand = async (output, context) => {
43342
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
43343
+ return de_CommandError(output, context);
43344
+ }
43345
+ const contents = (0, smithy_client_1.map)({
43346
+ $metadata: deserializeMetadata(output)
43347
+ });
43348
+ await (0, smithy_client_1.collectBody)(output.body, context);
43349
+ return contents;
43350
+ };
43351
+ exports2.de_UnpublishWorkflowFromMarketplaceCommand = de_UnpublishWorkflowFromMarketplaceCommand;
42362
43352
  var de_UpdateApiAuthTokenCommand = async (output, context) => {
42363
43353
  if (output.statusCode !== 200 && output.statusCode >= 300) {
42364
43354
  return de_CommandError(output, context);
@@ -42378,6 +43368,36 @@ var require_Aws_restJson1 = __commonJS({
42378
43368
  return contents;
42379
43369
  };
42380
43370
  exports2.de_UpdateApiAuthTokenCommand = de_UpdateApiAuthTokenCommand;
43371
+ var de_UpdateMarketplaceListingBillingCommand = async (output, context) => {
43372
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
43373
+ return de_CommandError(output, context);
43374
+ }
43375
+ const contents = (0, smithy_client_1.map)({
43376
+ $metadata: deserializeMetadata(output)
43377
+ });
43378
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
43379
+ const doc = (0, smithy_client_1.take)(data2, {
43380
+ "success": smithy_client_1.expectBoolean
43381
+ });
43382
+ Object.assign(contents, doc);
43383
+ return contents;
43384
+ };
43385
+ exports2.de_UpdateMarketplaceListingBillingCommand = de_UpdateMarketplaceListingBillingCommand;
43386
+ var de_UpdateMarketplaceListingMetadataCommand = async (output, context) => {
43387
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
43388
+ return de_CommandError(output, context);
43389
+ }
43390
+ const contents = (0, smithy_client_1.map)({
43391
+ $metadata: deserializeMetadata(output)
43392
+ });
43393
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
43394
+ const doc = (0, smithy_client_1.take)(data2, {
43395
+ "success": smithy_client_1.expectBoolean
43396
+ });
43397
+ Object.assign(contents, doc);
43398
+ return contents;
43399
+ };
43400
+ exports2.de_UpdateMarketplaceListingMetadataCommand = de_UpdateMarketplaceListingMetadataCommand;
42381
43401
  var de_UpdateOrganizationCommand = async (output, context) => {
42382
43402
  if (output.statusCode !== 200 && output.statusCode >= 300) {
42383
43403
  return de_CommandError(output, context);
@@ -42389,6 +43409,7 @@ var require_Aws_restJson1 = __commonJS({
42389
43409
  const doc = (0, smithy_client_1.take)(data2, {
42390
43410
  "createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
42391
43411
  "displayName": smithy_client_1.expectString,
43412
+ "key": smithy_client_1.expectString,
42392
43413
  "name": smithy_client_1.expectString,
42393
43414
  "organizationId": smithy_client_1.expectString
42394
43415
  });
@@ -42445,6 +43466,21 @@ var require_Aws_restJson1 = __commonJS({
42445
43466
  return contents;
42446
43467
  };
42447
43468
  exports2.de_UpdateRoleCommand = de_UpdateRoleCommand;
43469
+ var de_UpsertMarketplaceListingBillingOverrideCommand = async (output, context) => {
43470
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
43471
+ return de_CommandError(output, context);
43472
+ }
43473
+ const contents = (0, smithy_client_1.map)({
43474
+ $metadata: deserializeMetadata(output)
43475
+ });
43476
+ const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
43477
+ const doc = (0, smithy_client_1.take)(data2, {
43478
+ "id": smithy_client_1.expectString
43479
+ });
43480
+ Object.assign(contents, doc);
43481
+ return contents;
43482
+ };
43483
+ exports2.de_UpsertMarketplaceListingBillingOverrideCommand = de_UpsertMarketplaceListingBillingOverrideCommand;
42448
43484
  var de_CommandError = async (output, context) => {
42449
43485
  const parsedOutput = {
42450
43486
  ...output,
@@ -42556,6 +43592,41 @@ var require_Aws_restJson1 = __commonJS({
42556
43592
  var se_Document = (input, context) => {
42557
43593
  return input;
42558
43594
  };
43595
+ var de_AdminOrganizationSummary = (output, context) => {
43596
+ return (0, smithy_client_1.take)(output, {
43597
+ "createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
43598
+ "displayName": smithy_client_1.expectString,
43599
+ "key": smithy_client_1.expectString,
43600
+ "memberCount": smithy_client_1.expectInt32,
43601
+ "name": smithy_client_1.expectString,
43602
+ "organizationId": smithy_client_1.expectString,
43603
+ "subscriptionPlanName": smithy_client_1.expectString,
43604
+ "updatedAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
43605
+ "workflowCount": smithy_client_1.expectInt32
43606
+ });
43607
+ };
43608
+ var de_AdminOrganizationSummaryList = (output, context) => {
43609
+ const retVal = (output || []).filter((e4) => e4 != null).map((entry) => {
43610
+ return de_AdminOrganizationSummary(entry, context);
43611
+ });
43612
+ return retVal;
43613
+ };
43614
+ var de_AdminRoleSummary = (output, context) => {
43615
+ return (0, smithy_client_1.take)(output, {
43616
+ "createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
43617
+ "description": smithy_client_1.expectString,
43618
+ "name": smithy_client_1.expectString,
43619
+ "permissionCount": smithy_client_1.expectInt32,
43620
+ "roleId": smithy_client_1.expectString,
43621
+ "userCount": smithy_client_1.expectInt32
43622
+ });
43623
+ };
43624
+ var de_AdminRoleSummaryList = (output, context) => {
43625
+ const retVal = (output || []).filter((e4) => e4 != null).map((entry) => {
43626
+ return de_AdminRoleSummary(entry, context);
43627
+ });
43628
+ return retVal;
43629
+ };
42559
43630
  var de_AggregatedMetricResult = (output, context) => {
42560
43631
  return (0, smithy_client_1.take)(output, {
42561
43632
  "timestamp": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
@@ -42599,6 +43670,22 @@ var require_Aws_restJson1 = __commonJS({
42599
43670
  });
42600
43671
  return retVal;
42601
43672
  };
43673
+ var de_ConsumerUsageBreakdown = (output, context) => {
43674
+ return (0, smithy_client_1.take)(output, {
43675
+ "estimatedCost": smithy_client_1.limitedParseFloat32,
43676
+ "invocations": smithy_client_1.expectLong,
43677
+ "organizationId": smithy_client_1.expectString,
43678
+ "organizationKey": smithy_client_1.expectString,
43679
+ "organizationName": smithy_client_1.expectString,
43680
+ "units": smithy_client_1.limitedParseFloat32
43681
+ });
43682
+ };
43683
+ var de_ConsumerUsageBreakdownList = (output, context) => {
43684
+ const retVal = (output || []).filter((e4) => e4 != null).map((entry) => {
43685
+ return de_ConsumerUsageBreakdown(entry, context);
43686
+ });
43687
+ return retVal;
43688
+ };
42602
43689
  var de_ExecutionHistoryItem = (output, context) => {
42603
43690
  return (0, smithy_client_1.take)(output, {
42604
43691
  "endTimestamp": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
@@ -42644,6 +43731,75 @@ var require_Aws_restJson1 = __commonJS({
42644
43731
  });
42645
43732
  return retVal;
42646
43733
  };
43734
+ var de_MarketplaceBillingOverride = (output, context) => {
43735
+ return (0, smithy_client_1.take)(output, {
43736
+ "billingModel": smithy_client_1.expectString,
43737
+ "costPerInvocation": smithy_client_1.limitedParseFloat32,
43738
+ "costPerMonth": smithy_client_1.limitedParseFloat32,
43739
+ "costPerUnit": smithy_client_1.limitedParseFloat32,
43740
+ "createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
43741
+ "id": smithy_client_1.expectString,
43742
+ "organizationKey": smithy_client_1.expectString,
43743
+ "updatedAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_))
43744
+ });
43745
+ };
43746
+ var de_MarketplaceBillingOverrideList = (output, context) => {
43747
+ const retVal = (output || []).filter((e4) => e4 != null).map((entry) => {
43748
+ return de_MarketplaceBillingOverride(entry, context);
43749
+ });
43750
+ return retVal;
43751
+ };
43752
+ var de_MarketplaceListingSummary = (output, context) => {
43753
+ return (0, smithy_client_1.take)(output, {
43754
+ "billingModel": smithy_client_1.expectString,
43755
+ "costPerInvocation": smithy_client_1.limitedParseFloat32,
43756
+ "costPerMonth": smithy_client_1.limitedParseFloat32,
43757
+ "costPerUnit": smithy_client_1.limitedParseFloat32,
43758
+ "createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
43759
+ "description": smithy_client_1.expectString,
43760
+ "key": smithy_client_1.expectString,
43761
+ "listingId": smithy_client_1.expectString,
43762
+ "liveVersionNumber": smithy_client_1.expectInt32,
43763
+ "organizationId": smithy_client_1.expectString,
43764
+ "organizationKey": smithy_client_1.expectString,
43765
+ "organizationName": smithy_client_1.expectString,
43766
+ "rateLimitMaxRequests": smithy_client_1.expectInt32,
43767
+ "rateLimitWindowUnit": smithy_client_1.expectString,
43768
+ "rateLimitWindowValue": smithy_client_1.expectInt32,
43769
+ "status": smithy_client_1.expectString,
43770
+ "title": smithy_client_1.expectString,
43771
+ "totalVersions": smithy_client_1.expectInt32,
43772
+ "updatedAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
43773
+ "visibility": smithy_client_1.expectString,
43774
+ "workflowName": smithy_client_1.expectString,
43775
+ "workflowVersionNumber": smithy_client_1.expectInt32
43776
+ });
43777
+ };
43778
+ var de_MarketplaceListingSummaryList = (output, context) => {
43779
+ const retVal = (output || []).filter((e4) => e4 != null).map((entry) => {
43780
+ return de_MarketplaceListingSummary(entry, context);
43781
+ });
43782
+ return retVal;
43783
+ };
43784
+ var de_MarketplaceListingVersionSummary = (output, context) => {
43785
+ return (0, smithy_client_1.take)(output, {
43786
+ "createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
43787
+ "inputSchema": smithy_client_1.expectString,
43788
+ "tags": smithy_client_1._json,
43789
+ "versionId": smithy_client_1.expectString,
43790
+ "versionNumber": smithy_client_1.expectInt32,
43791
+ "workflowId": smithy_client_1.expectString,
43792
+ "workflowName": smithy_client_1.expectString,
43793
+ "workflowVersionId": smithy_client_1.expectString,
43794
+ "workflowVersionNumber": smithy_client_1.expectInt32
43795
+ });
43796
+ };
43797
+ var de_MarketplaceListingVersionSummaryList = (output, context) => {
43798
+ const retVal = (output || []).filter((e4) => e4 != null).map((entry) => {
43799
+ return de_MarketplaceListingVersionSummary(entry, context);
43800
+ });
43801
+ return retVal;
43802
+ };
42647
43803
  var de_OrganizationInvitationSummary = (output, context) => {
42648
43804
  return (0, smithy_client_1.take)(output, {
42649
43805
  "email": smithy_client_1.expectString,
@@ -42669,6 +43825,7 @@ var require_Aws_restJson1 = __commonJS({
42669
43825
  return (0, smithy_client_1.take)(output, {
42670
43826
  "createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
42671
43827
  "displayName": smithy_client_1.expectString,
43828
+ "key": smithy_client_1.expectString,
42672
43829
  "name": smithy_client_1.expectString,
42673
43830
  "organizationId": smithy_client_1.expectString
42674
43831
  });
@@ -42721,6 +43878,20 @@ var require_Aws_restJson1 = __commonJS({
42721
43878
  "status": smithy_client_1.expectString
42722
43879
  });
42723
43880
  };
43881
+ var de_UsageTimeSeriesDataPoint = (output, context) => {
43882
+ return (0, smithy_client_1.take)(output, {
43883
+ "estimatedCost": smithy_client_1.limitedParseFloat32,
43884
+ "invocations": smithy_client_1.expectLong,
43885
+ "timestamp": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
43886
+ "units": smithy_client_1.limitedParseFloat32
43887
+ });
43888
+ };
43889
+ var de_UsageTimeSeriesDataPointList = (output, context) => {
43890
+ const retVal = (output || []).filter((e4) => e4 != null).map((entry) => {
43891
+ return de_UsageTimeSeriesDataPoint(entry, context);
43892
+ });
43893
+ return retVal;
43894
+ };
42724
43895
  var de_WorkflowState = (output, context) => {
42725
43896
  return (0, smithy_client_1.take)(output, {
42726
43897
  "executionData": (_) => de_Document(_, context),
@@ -42767,10 +43938,14 @@ var require_Aws_restJson1 = __commonJS({
42767
43938
  });
42768
43939
  var _a2 = "aggregation";
42769
43940
  var _b = "bucket";
43941
+ var _l = "limit";
42770
43942
  var _m3 = "metric";
43943
+ var _nT = "nextToken";
43944
+ var _oI = "organizationId";
42771
43945
  var _pS = "pageSize";
42772
43946
  var _pT = "pageToken";
42773
- var _s4 = "since";
43947
+ var _s4 = "search";
43948
+ var _si = "since";
42774
43949
  var _st = "status";
42775
43950
  var _u = "until";
42776
43951
  }
@@ -42798,6 +43973,182 @@ var require_AcceptOrganizationInvitationCommand = __commonJS({
42798
43973
  }
42799
43974
  });
42800
43975
 
43976
+ // ../JustWorkflowItApiClient/dist-cjs/commands/AdminCreateRoleCommand.js
43977
+ var require_AdminCreateRoleCommand = __commonJS({
43978
+ "../JustWorkflowItApiClient/dist-cjs/commands/AdminCreateRoleCommand.js"(exports2) {
43979
+ "use strict";
43980
+ Object.defineProperty(exports2, "__esModule", { value: true });
43981
+ exports2.AdminCreateRoleCommand = exports2.$Command = void 0;
43982
+ var Aws_restJson1_1 = require_Aws_restJson1();
43983
+ var middleware_serde_1 = require_dist_cjs5();
43984
+ var smithy_client_1 = require_dist_cjs20();
43985
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
43986
+ return smithy_client_1.Command;
43987
+ } });
43988
+ var AdminCreateRoleCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
43989
+ return [
43990
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
43991
+ ];
43992
+ }).s("JustWorkflowItService", "AdminCreateRole", {}).n("JustWorkflowItClient", "AdminCreateRoleCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_AdminCreateRoleCommand).de(Aws_restJson1_1.de_AdminCreateRoleCommand).build() {
43993
+ };
43994
+ exports2.AdminCreateRoleCommand = AdminCreateRoleCommand;
43995
+ }
43996
+ });
43997
+
43998
+ // ../JustWorkflowItApiClient/dist-cjs/commands/AdminDeleteRoleCommand.js
43999
+ var require_AdminDeleteRoleCommand = __commonJS({
44000
+ "../JustWorkflowItApiClient/dist-cjs/commands/AdminDeleteRoleCommand.js"(exports2) {
44001
+ "use strict";
44002
+ Object.defineProperty(exports2, "__esModule", { value: true });
44003
+ exports2.AdminDeleteRoleCommand = exports2.$Command = void 0;
44004
+ var Aws_restJson1_1 = require_Aws_restJson1();
44005
+ var middleware_serde_1 = require_dist_cjs5();
44006
+ var smithy_client_1 = require_dist_cjs20();
44007
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
44008
+ return smithy_client_1.Command;
44009
+ } });
44010
+ var AdminDeleteRoleCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
44011
+ return [
44012
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
44013
+ ];
44014
+ }).s("JustWorkflowItService", "AdminDeleteRole", {}).n("JustWorkflowItClient", "AdminDeleteRoleCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_AdminDeleteRoleCommand).de(Aws_restJson1_1.de_AdminDeleteRoleCommand).build() {
44015
+ };
44016
+ exports2.AdminDeleteRoleCommand = AdminDeleteRoleCommand;
44017
+ }
44018
+ });
44019
+
44020
+ // ../JustWorkflowItApiClient/dist-cjs/commands/AdminGetOrganizationCommand.js
44021
+ var require_AdminGetOrganizationCommand = __commonJS({
44022
+ "../JustWorkflowItApiClient/dist-cjs/commands/AdminGetOrganizationCommand.js"(exports2) {
44023
+ "use strict";
44024
+ Object.defineProperty(exports2, "__esModule", { value: true });
44025
+ exports2.AdminGetOrganizationCommand = exports2.$Command = void 0;
44026
+ var Aws_restJson1_1 = require_Aws_restJson1();
44027
+ var middleware_serde_1 = require_dist_cjs5();
44028
+ var smithy_client_1 = require_dist_cjs20();
44029
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
44030
+ return smithy_client_1.Command;
44031
+ } });
44032
+ var AdminGetOrganizationCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
44033
+ return [
44034
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
44035
+ ];
44036
+ }).s("JustWorkflowItService", "AdminGetOrganization", {}).n("JustWorkflowItClient", "AdminGetOrganizationCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_AdminGetOrganizationCommand).de(Aws_restJson1_1.de_AdminGetOrganizationCommand).build() {
44037
+ };
44038
+ exports2.AdminGetOrganizationCommand = AdminGetOrganizationCommand;
44039
+ }
44040
+ });
44041
+
44042
+ // ../JustWorkflowItApiClient/dist-cjs/commands/AdminGetRoleCommand.js
44043
+ var require_AdminGetRoleCommand = __commonJS({
44044
+ "../JustWorkflowItApiClient/dist-cjs/commands/AdminGetRoleCommand.js"(exports2) {
44045
+ "use strict";
44046
+ Object.defineProperty(exports2, "__esModule", { value: true });
44047
+ exports2.AdminGetRoleCommand = exports2.$Command = void 0;
44048
+ var Aws_restJson1_1 = require_Aws_restJson1();
44049
+ var middleware_serde_1 = require_dist_cjs5();
44050
+ var smithy_client_1 = require_dist_cjs20();
44051
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
44052
+ return smithy_client_1.Command;
44053
+ } });
44054
+ var AdminGetRoleCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
44055
+ return [
44056
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
44057
+ ];
44058
+ }).s("JustWorkflowItService", "AdminGetRole", {}).n("JustWorkflowItClient", "AdminGetRoleCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_AdminGetRoleCommand).de(Aws_restJson1_1.de_AdminGetRoleCommand).build() {
44059
+ };
44060
+ exports2.AdminGetRoleCommand = AdminGetRoleCommand;
44061
+ }
44062
+ });
44063
+
44064
+ // ../JustWorkflowItApiClient/dist-cjs/commands/AdminListOrganizationsCommand.js
44065
+ var require_AdminListOrganizationsCommand = __commonJS({
44066
+ "../JustWorkflowItApiClient/dist-cjs/commands/AdminListOrganizationsCommand.js"(exports2) {
44067
+ "use strict";
44068
+ Object.defineProperty(exports2, "__esModule", { value: true });
44069
+ exports2.AdminListOrganizationsCommand = exports2.$Command = void 0;
44070
+ var Aws_restJson1_1 = require_Aws_restJson1();
44071
+ var middleware_serde_1 = require_dist_cjs5();
44072
+ var smithy_client_1 = require_dist_cjs20();
44073
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
44074
+ return smithy_client_1.Command;
44075
+ } });
44076
+ var AdminListOrganizationsCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
44077
+ return [
44078
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
44079
+ ];
44080
+ }).s("JustWorkflowItService", "AdminListOrganizations", {}).n("JustWorkflowItClient", "AdminListOrganizationsCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_AdminListOrganizationsCommand).de(Aws_restJson1_1.de_AdminListOrganizationsCommand).build() {
44081
+ };
44082
+ exports2.AdminListOrganizationsCommand = AdminListOrganizationsCommand;
44083
+ }
44084
+ });
44085
+
44086
+ // ../JustWorkflowItApiClient/dist-cjs/commands/AdminListRolesCommand.js
44087
+ var require_AdminListRolesCommand = __commonJS({
44088
+ "../JustWorkflowItApiClient/dist-cjs/commands/AdminListRolesCommand.js"(exports2) {
44089
+ "use strict";
44090
+ Object.defineProperty(exports2, "__esModule", { value: true });
44091
+ exports2.AdminListRolesCommand = exports2.$Command = void 0;
44092
+ var Aws_restJson1_1 = require_Aws_restJson1();
44093
+ var middleware_serde_1 = require_dist_cjs5();
44094
+ var smithy_client_1 = require_dist_cjs20();
44095
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
44096
+ return smithy_client_1.Command;
44097
+ } });
44098
+ var AdminListRolesCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
44099
+ return [
44100
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
44101
+ ];
44102
+ }).s("JustWorkflowItService", "AdminListRoles", {}).n("JustWorkflowItClient", "AdminListRolesCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_AdminListRolesCommand).de(Aws_restJson1_1.de_AdminListRolesCommand).build() {
44103
+ };
44104
+ exports2.AdminListRolesCommand = AdminListRolesCommand;
44105
+ }
44106
+ });
44107
+
44108
+ // ../JustWorkflowItApiClient/dist-cjs/commands/AdminUpdateRoleCommand.js
44109
+ var require_AdminUpdateRoleCommand = __commonJS({
44110
+ "../JustWorkflowItApiClient/dist-cjs/commands/AdminUpdateRoleCommand.js"(exports2) {
44111
+ "use strict";
44112
+ Object.defineProperty(exports2, "__esModule", { value: true });
44113
+ exports2.AdminUpdateRoleCommand = exports2.$Command = void 0;
44114
+ var Aws_restJson1_1 = require_Aws_restJson1();
44115
+ var middleware_serde_1 = require_dist_cjs5();
44116
+ var smithy_client_1 = require_dist_cjs20();
44117
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
44118
+ return smithy_client_1.Command;
44119
+ } });
44120
+ var AdminUpdateRoleCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
44121
+ return [
44122
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
44123
+ ];
44124
+ }).s("JustWorkflowItService", "AdminUpdateRole", {}).n("JustWorkflowItClient", "AdminUpdateRoleCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_AdminUpdateRoleCommand).de(Aws_restJson1_1.de_AdminUpdateRoleCommand).build() {
44125
+ };
44126
+ exports2.AdminUpdateRoleCommand = AdminUpdateRoleCommand;
44127
+ }
44128
+ });
44129
+
44130
+ // ../JustWorkflowItApiClient/dist-cjs/commands/AllowlistMarketplaceListingCommand.js
44131
+ var require_AllowlistMarketplaceListingCommand = __commonJS({
44132
+ "../JustWorkflowItApiClient/dist-cjs/commands/AllowlistMarketplaceListingCommand.js"(exports2) {
44133
+ "use strict";
44134
+ Object.defineProperty(exports2, "__esModule", { value: true });
44135
+ exports2.AllowlistMarketplaceListingCommand = exports2.$Command = void 0;
44136
+ var Aws_restJson1_1 = require_Aws_restJson1();
44137
+ var middleware_serde_1 = require_dist_cjs5();
44138
+ var smithy_client_1 = require_dist_cjs20();
44139
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
44140
+ return smithy_client_1.Command;
44141
+ } });
44142
+ var AllowlistMarketplaceListingCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
44143
+ return [
44144
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
44145
+ ];
44146
+ }).s("JustWorkflowItService", "AllowlistMarketplaceListing", {}).n("JustWorkflowItClient", "AllowlistMarketplaceListingCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_AllowlistMarketplaceListingCommand).de(Aws_restJson1_1.de_AllowlistMarketplaceListingCommand).build() {
44147
+ };
44148
+ exports2.AllowlistMarketplaceListingCommand = AllowlistMarketplaceListingCommand;
44149
+ }
44150
+ });
44151
+
42801
44152
  // ../JustWorkflowItApiClient/dist-cjs/commands/CancelJobCommand.js
42802
44153
  var require_CancelJobCommand = __commonJS({
42803
44154
  "../JustWorkflowItApiClient/dist-cjs/commands/CancelJobCommand.js"(exports2) {
@@ -42886,6 +44237,28 @@ var require_CreateInterestCommand = __commonJS({
42886
44237
  }
42887
44238
  });
42888
44239
 
44240
+ // ../JustWorkflowItApiClient/dist-cjs/commands/CreateMarketplaceListingVersionCommand.js
44241
+ var require_CreateMarketplaceListingVersionCommand = __commonJS({
44242
+ "../JustWorkflowItApiClient/dist-cjs/commands/CreateMarketplaceListingVersionCommand.js"(exports2) {
44243
+ "use strict";
44244
+ Object.defineProperty(exports2, "__esModule", { value: true });
44245
+ exports2.CreateMarketplaceListingVersionCommand = exports2.$Command = void 0;
44246
+ var Aws_restJson1_1 = require_Aws_restJson1();
44247
+ var middleware_serde_1 = require_dist_cjs5();
44248
+ var smithy_client_1 = require_dist_cjs20();
44249
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
44250
+ return smithy_client_1.Command;
44251
+ } });
44252
+ var CreateMarketplaceListingVersionCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
44253
+ return [
44254
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
44255
+ ];
44256
+ }).s("JustWorkflowItService", "CreateMarketplaceListingVersion", {}).n("JustWorkflowItClient", "CreateMarketplaceListingVersionCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_CreateMarketplaceListingVersionCommand).de(Aws_restJson1_1.de_CreateMarketplaceListingVersionCommand).build() {
44257
+ };
44258
+ exports2.CreateMarketplaceListingVersionCommand = CreateMarketplaceListingVersionCommand;
44259
+ }
44260
+ });
44261
+
42889
44262
  // ../JustWorkflowItApiClient/dist-cjs/commands/CreateOrganizationCommand.js
42890
44263
  var require_CreateOrganizationCommand = __commonJS({
42891
44264
  "../JustWorkflowItApiClient/dist-cjs/commands/CreateOrganizationCommand.js"(exports2) {
@@ -42974,6 +44347,28 @@ var require_CreateRoleCommand = __commonJS({
42974
44347
  }
42975
44348
  });
42976
44349
 
44350
+ // ../JustWorkflowItApiClient/dist-cjs/commands/DeleteMarketplaceListingBillingOverrideCommand.js
44351
+ var require_DeleteMarketplaceListingBillingOverrideCommand = __commonJS({
44352
+ "../JustWorkflowItApiClient/dist-cjs/commands/DeleteMarketplaceListingBillingOverrideCommand.js"(exports2) {
44353
+ "use strict";
44354
+ Object.defineProperty(exports2, "__esModule", { value: true });
44355
+ exports2.DeleteMarketplaceListingBillingOverrideCommand = exports2.$Command = void 0;
44356
+ var Aws_restJson1_1 = require_Aws_restJson1();
44357
+ var middleware_serde_1 = require_dist_cjs5();
44358
+ var smithy_client_1 = require_dist_cjs20();
44359
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
44360
+ return smithy_client_1.Command;
44361
+ } });
44362
+ var DeleteMarketplaceListingBillingOverrideCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
44363
+ return [
44364
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
44365
+ ];
44366
+ }).s("JustWorkflowItService", "DeleteMarketplaceListingBillingOverride", {}).n("JustWorkflowItClient", "DeleteMarketplaceListingBillingOverrideCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_DeleteMarketplaceListingBillingOverrideCommand).de(Aws_restJson1_1.de_DeleteMarketplaceListingBillingOverrideCommand).build() {
44367
+ };
44368
+ exports2.DeleteMarketplaceListingBillingOverrideCommand = DeleteMarketplaceListingBillingOverrideCommand;
44369
+ }
44370
+ });
44371
+
42977
44372
  // ../JustWorkflowItApiClient/dist-cjs/commands/DeleteOrganizationCommand.js
42978
44373
  var require_DeleteOrganizationCommand = __commonJS({
42979
44374
  "../JustWorkflowItApiClient/dist-cjs/commands/DeleteOrganizationCommand.js"(exports2) {
@@ -43062,6 +44457,28 @@ var require_GetApiAuthTokenCommand = __commonJS({
43062
44457
  }
43063
44458
  });
43064
44459
 
44460
+ // ../JustWorkflowItApiClient/dist-cjs/commands/GetConsumerListingUsageTimeSeriesCommand.js
44461
+ var require_GetConsumerListingUsageTimeSeriesCommand = __commonJS({
44462
+ "../JustWorkflowItApiClient/dist-cjs/commands/GetConsumerListingUsageTimeSeriesCommand.js"(exports2) {
44463
+ "use strict";
44464
+ Object.defineProperty(exports2, "__esModule", { value: true });
44465
+ exports2.GetConsumerListingUsageTimeSeriesCommand = exports2.$Command = void 0;
44466
+ var Aws_restJson1_1 = require_Aws_restJson1();
44467
+ var middleware_serde_1 = require_dist_cjs5();
44468
+ var smithy_client_1 = require_dist_cjs20();
44469
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
44470
+ return smithy_client_1.Command;
44471
+ } });
44472
+ var GetConsumerListingUsageTimeSeriesCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
44473
+ return [
44474
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
44475
+ ];
44476
+ }).s("JustWorkflowItService", "GetConsumerListingUsageTimeSeries", {}).n("JustWorkflowItClient", "GetConsumerListingUsageTimeSeriesCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_GetConsumerListingUsageTimeSeriesCommand).de(Aws_restJson1_1.de_GetConsumerListingUsageTimeSeriesCommand).build() {
44477
+ };
44478
+ exports2.GetConsumerListingUsageTimeSeriesCommand = GetConsumerListingUsageTimeSeriesCommand;
44479
+ }
44480
+ });
44481
+
43065
44482
  // ../JustWorkflowItApiClient/dist-cjs/commands/GetJobCommand.js
43066
44483
  var require_GetJobCommand = __commonJS({
43067
44484
  "../JustWorkflowItApiClient/dist-cjs/commands/GetJobCommand.js"(exports2) {
@@ -43084,6 +44501,50 @@ var require_GetJobCommand = __commonJS({
43084
44501
  }
43085
44502
  });
43086
44503
 
44504
+ // ../JustWorkflowItApiClient/dist-cjs/commands/GetMarketplaceListingCommand.js
44505
+ var require_GetMarketplaceListingCommand = __commonJS({
44506
+ "../JustWorkflowItApiClient/dist-cjs/commands/GetMarketplaceListingCommand.js"(exports2) {
44507
+ "use strict";
44508
+ Object.defineProperty(exports2, "__esModule", { value: true });
44509
+ exports2.GetMarketplaceListingCommand = exports2.$Command = void 0;
44510
+ var Aws_restJson1_1 = require_Aws_restJson1();
44511
+ var middleware_serde_1 = require_dist_cjs5();
44512
+ var smithy_client_1 = require_dist_cjs20();
44513
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
44514
+ return smithy_client_1.Command;
44515
+ } });
44516
+ var GetMarketplaceListingCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
44517
+ return [
44518
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
44519
+ ];
44520
+ }).s("JustWorkflowItService", "GetMarketplaceListing", {}).n("JustWorkflowItClient", "GetMarketplaceListingCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_GetMarketplaceListingCommand).de(Aws_restJson1_1.de_GetMarketplaceListingCommand).build() {
44521
+ };
44522
+ exports2.GetMarketplaceListingCommand = GetMarketplaceListingCommand;
44523
+ }
44524
+ });
44525
+
44526
+ // ../JustWorkflowItApiClient/dist-cjs/commands/GetMarketplaceListingVersionCommand.js
44527
+ var require_GetMarketplaceListingVersionCommand = __commonJS({
44528
+ "../JustWorkflowItApiClient/dist-cjs/commands/GetMarketplaceListingVersionCommand.js"(exports2) {
44529
+ "use strict";
44530
+ Object.defineProperty(exports2, "__esModule", { value: true });
44531
+ exports2.GetMarketplaceListingVersionCommand = exports2.$Command = void 0;
44532
+ var Aws_restJson1_1 = require_Aws_restJson1();
44533
+ var middleware_serde_1 = require_dist_cjs5();
44534
+ var smithy_client_1 = require_dist_cjs20();
44535
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
44536
+ return smithy_client_1.Command;
44537
+ } });
44538
+ var GetMarketplaceListingVersionCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
44539
+ return [
44540
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
44541
+ ];
44542
+ }).s("JustWorkflowItService", "GetMarketplaceListingVersion", {}).n("JustWorkflowItClient", "GetMarketplaceListingVersionCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_GetMarketplaceListingVersionCommand).de(Aws_restJson1_1.de_GetMarketplaceListingVersionCommand).build() {
44543
+ };
44544
+ exports2.GetMarketplaceListingVersionCommand = GetMarketplaceListingVersionCommand;
44545
+ }
44546
+ });
44547
+
43087
44548
  // ../JustWorkflowItApiClient/dist-cjs/commands/GetMyPermissionsCommand.js
43088
44549
  var require_GetMyPermissionsCommand = __commonJS({
43089
44550
  "../JustWorkflowItApiClient/dist-cjs/commands/GetMyPermissionsCommand.js"(exports2) {
@@ -43194,6 +44655,50 @@ var require_GetPublicInvitationDetailsCommand = __commonJS({
43194
44655
  }
43195
44656
  });
43196
44657
 
44658
+ // ../JustWorkflowItApiClient/dist-cjs/commands/GetPublisherListingConsumerBreakdownCommand.js
44659
+ var require_GetPublisherListingConsumerBreakdownCommand = __commonJS({
44660
+ "../JustWorkflowItApiClient/dist-cjs/commands/GetPublisherListingConsumerBreakdownCommand.js"(exports2) {
44661
+ "use strict";
44662
+ Object.defineProperty(exports2, "__esModule", { value: true });
44663
+ exports2.GetPublisherListingConsumerBreakdownCommand = exports2.$Command = void 0;
44664
+ var Aws_restJson1_1 = require_Aws_restJson1();
44665
+ var middleware_serde_1 = require_dist_cjs5();
44666
+ var smithy_client_1 = require_dist_cjs20();
44667
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
44668
+ return smithy_client_1.Command;
44669
+ } });
44670
+ var GetPublisherListingConsumerBreakdownCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
44671
+ return [
44672
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
44673
+ ];
44674
+ }).s("JustWorkflowItService", "GetPublisherListingConsumerBreakdown", {}).n("JustWorkflowItClient", "GetPublisherListingConsumerBreakdownCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_GetPublisherListingConsumerBreakdownCommand).de(Aws_restJson1_1.de_GetPublisherListingConsumerBreakdownCommand).build() {
44675
+ };
44676
+ exports2.GetPublisherListingConsumerBreakdownCommand = GetPublisherListingConsumerBreakdownCommand;
44677
+ }
44678
+ });
44679
+
44680
+ // ../JustWorkflowItApiClient/dist-cjs/commands/GetPublisherListingUsageTimeSeriesCommand.js
44681
+ var require_GetPublisherListingUsageTimeSeriesCommand = __commonJS({
44682
+ "../JustWorkflowItApiClient/dist-cjs/commands/GetPublisherListingUsageTimeSeriesCommand.js"(exports2) {
44683
+ "use strict";
44684
+ Object.defineProperty(exports2, "__esModule", { value: true });
44685
+ exports2.GetPublisherListingUsageTimeSeriesCommand = exports2.$Command = void 0;
44686
+ var Aws_restJson1_1 = require_Aws_restJson1();
44687
+ var middleware_serde_1 = require_dist_cjs5();
44688
+ var smithy_client_1 = require_dist_cjs20();
44689
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
44690
+ return smithy_client_1.Command;
44691
+ } });
44692
+ var GetPublisherListingUsageTimeSeriesCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
44693
+ return [
44694
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
44695
+ ];
44696
+ }).s("JustWorkflowItService", "GetPublisherListingUsageTimeSeries", {}).n("JustWorkflowItClient", "GetPublisherListingUsageTimeSeriesCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_GetPublisherListingUsageTimeSeriesCommand).de(Aws_restJson1_1.de_GetPublisherListingUsageTimeSeriesCommand).build() {
44697
+ };
44698
+ exports2.GetPublisherListingUsageTimeSeriesCommand = GetPublisherListingUsageTimeSeriesCommand;
44699
+ }
44700
+ });
44701
+
43197
44702
  // ../JustWorkflowItApiClient/dist-cjs/commands/GetResourcePoolCommand.js
43198
44703
  var require_GetResourcePoolCommand = __commonJS({
43199
44704
  "../JustWorkflowItApiClient/dist-cjs/commands/GetResourcePoolCommand.js"(exports2) {
@@ -43260,6 +44765,28 @@ var require_GetSubscriptionPlanCommand = __commonJS({
43260
44765
  }
43261
44766
  });
43262
44767
 
44768
+ // ../JustWorkflowItApiClient/dist-cjs/commands/GetTaggedMarketplaceListingVersionCommand.js
44769
+ var require_GetTaggedMarketplaceListingVersionCommand = __commonJS({
44770
+ "../JustWorkflowItApiClient/dist-cjs/commands/GetTaggedMarketplaceListingVersionCommand.js"(exports2) {
44771
+ "use strict";
44772
+ Object.defineProperty(exports2, "__esModule", { value: true });
44773
+ exports2.GetTaggedMarketplaceListingVersionCommand = exports2.$Command = void 0;
44774
+ var Aws_restJson1_1 = require_Aws_restJson1();
44775
+ var middleware_serde_1 = require_dist_cjs5();
44776
+ var smithy_client_1 = require_dist_cjs20();
44777
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
44778
+ return smithy_client_1.Command;
44779
+ } });
44780
+ var GetTaggedMarketplaceListingVersionCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
44781
+ return [
44782
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
44783
+ ];
44784
+ }).s("JustWorkflowItService", "GetTaggedMarketplaceListingVersion", {}).n("JustWorkflowItClient", "GetTaggedMarketplaceListingVersionCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_GetTaggedMarketplaceListingVersionCommand).de(Aws_restJson1_1.de_GetTaggedMarketplaceListingVersionCommand).build() {
44785
+ };
44786
+ exports2.GetTaggedMarketplaceListingVersionCommand = GetTaggedMarketplaceListingVersionCommand;
44787
+ }
44788
+ });
44789
+
43263
44790
  // ../JustWorkflowItApiClient/dist-cjs/commands/GetTaggedWorkflowVersionCommand.js
43264
44791
  var require_GetTaggedWorkflowVersionCommand = __commonJS({
43265
44792
  "../JustWorkflowItApiClient/dist-cjs/commands/GetTaggedWorkflowVersionCommand.js"(exports2) {
@@ -43370,6 +44897,72 @@ var require_GetWorkflowVersionCommand = __commonJS({
43370
44897
  }
43371
44898
  });
43372
44899
 
44900
+ // ../JustWorkflowItApiClient/dist-cjs/commands/GrantMarketplaceAccessCommand.js
44901
+ var require_GrantMarketplaceAccessCommand = __commonJS({
44902
+ "../JustWorkflowItApiClient/dist-cjs/commands/GrantMarketplaceAccessCommand.js"(exports2) {
44903
+ "use strict";
44904
+ Object.defineProperty(exports2, "__esModule", { value: true });
44905
+ exports2.GrantMarketplaceAccessCommand = exports2.$Command = void 0;
44906
+ var Aws_restJson1_1 = require_Aws_restJson1();
44907
+ var middleware_serde_1 = require_dist_cjs5();
44908
+ var smithy_client_1 = require_dist_cjs20();
44909
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
44910
+ return smithy_client_1.Command;
44911
+ } });
44912
+ var GrantMarketplaceAccessCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
44913
+ return [
44914
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
44915
+ ];
44916
+ }).s("JustWorkflowItService", "GrantMarketplaceAccess", {}).n("JustWorkflowItClient", "GrantMarketplaceAccessCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_GrantMarketplaceAccessCommand).de(Aws_restJson1_1.de_GrantMarketplaceAccessCommand).build() {
44917
+ };
44918
+ exports2.GrantMarketplaceAccessCommand = GrantMarketplaceAccessCommand;
44919
+ }
44920
+ });
44921
+
44922
+ // ../JustWorkflowItApiClient/dist-cjs/commands/IsMarketplaceListingAllowlistedCommand.js
44923
+ var require_IsMarketplaceListingAllowlistedCommand = __commonJS({
44924
+ "../JustWorkflowItApiClient/dist-cjs/commands/IsMarketplaceListingAllowlistedCommand.js"(exports2) {
44925
+ "use strict";
44926
+ Object.defineProperty(exports2, "__esModule", { value: true });
44927
+ exports2.IsMarketplaceListingAllowlistedCommand = exports2.$Command = void 0;
44928
+ var Aws_restJson1_1 = require_Aws_restJson1();
44929
+ var middleware_serde_1 = require_dist_cjs5();
44930
+ var smithy_client_1 = require_dist_cjs20();
44931
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
44932
+ return smithy_client_1.Command;
44933
+ } });
44934
+ var IsMarketplaceListingAllowlistedCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
44935
+ return [
44936
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
44937
+ ];
44938
+ }).s("JustWorkflowItService", "IsMarketplaceListingAllowlisted", {}).n("JustWorkflowItClient", "IsMarketplaceListingAllowlistedCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_IsMarketplaceListingAllowlistedCommand).de(Aws_restJson1_1.de_IsMarketplaceListingAllowlistedCommand).build() {
44939
+ };
44940
+ exports2.IsMarketplaceListingAllowlistedCommand = IsMarketplaceListingAllowlistedCommand;
44941
+ }
44942
+ });
44943
+
44944
+ // ../JustWorkflowItApiClient/dist-cjs/commands/ListAllowlistedMarketplaceListingsCommand.js
44945
+ var require_ListAllowlistedMarketplaceListingsCommand = __commonJS({
44946
+ "../JustWorkflowItApiClient/dist-cjs/commands/ListAllowlistedMarketplaceListingsCommand.js"(exports2) {
44947
+ "use strict";
44948
+ Object.defineProperty(exports2, "__esModule", { value: true });
44949
+ exports2.ListAllowlistedMarketplaceListingsCommand = exports2.$Command = void 0;
44950
+ var Aws_restJson1_1 = require_Aws_restJson1();
44951
+ var middleware_serde_1 = require_dist_cjs5();
44952
+ var smithy_client_1 = require_dist_cjs20();
44953
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
44954
+ return smithy_client_1.Command;
44955
+ } });
44956
+ var ListAllowlistedMarketplaceListingsCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
44957
+ return [
44958
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
44959
+ ];
44960
+ }).s("JustWorkflowItService", "ListAllowlistedMarketplaceListings", {}).n("JustWorkflowItClient", "ListAllowlistedMarketplaceListingsCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_ListAllowlistedMarketplaceListingsCommand).de(Aws_restJson1_1.de_ListAllowlistedMarketplaceListingsCommand).build() {
44961
+ };
44962
+ exports2.ListAllowlistedMarketplaceListingsCommand = ListAllowlistedMarketplaceListingsCommand;
44963
+ }
44964
+ });
44965
+
43373
44966
  // ../JustWorkflowItApiClient/dist-cjs/commands/ListApiAuthTokensCommand.js
43374
44967
  var require_ListApiAuthTokensCommand = __commonJS({
43375
44968
  "../JustWorkflowItApiClient/dist-cjs/commands/ListApiAuthTokensCommand.js"(exports2) {
@@ -43414,6 +45007,94 @@ var require_ListJobsCommand = __commonJS({
43414
45007
  }
43415
45008
  });
43416
45009
 
45010
+ // ../JustWorkflowItApiClient/dist-cjs/commands/ListMarketplaceListingBillingOverridesCommand.js
45011
+ var require_ListMarketplaceListingBillingOverridesCommand = __commonJS({
45012
+ "../JustWorkflowItApiClient/dist-cjs/commands/ListMarketplaceListingBillingOverridesCommand.js"(exports2) {
45013
+ "use strict";
45014
+ Object.defineProperty(exports2, "__esModule", { value: true });
45015
+ exports2.ListMarketplaceListingBillingOverridesCommand = exports2.$Command = void 0;
45016
+ var Aws_restJson1_1 = require_Aws_restJson1();
45017
+ var middleware_serde_1 = require_dist_cjs5();
45018
+ var smithy_client_1 = require_dist_cjs20();
45019
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
45020
+ return smithy_client_1.Command;
45021
+ } });
45022
+ var ListMarketplaceListingBillingOverridesCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
45023
+ return [
45024
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
45025
+ ];
45026
+ }).s("JustWorkflowItService", "ListMarketplaceListingBillingOverrides", {}).n("JustWorkflowItClient", "ListMarketplaceListingBillingOverridesCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_ListMarketplaceListingBillingOverridesCommand).de(Aws_restJson1_1.de_ListMarketplaceListingBillingOverridesCommand).build() {
45027
+ };
45028
+ exports2.ListMarketplaceListingBillingOverridesCommand = ListMarketplaceListingBillingOverridesCommand;
45029
+ }
45030
+ });
45031
+
45032
+ // ../JustWorkflowItApiClient/dist-cjs/commands/ListMarketplaceListingVersionsCommand.js
45033
+ var require_ListMarketplaceListingVersionsCommand = __commonJS({
45034
+ "../JustWorkflowItApiClient/dist-cjs/commands/ListMarketplaceListingVersionsCommand.js"(exports2) {
45035
+ "use strict";
45036
+ Object.defineProperty(exports2, "__esModule", { value: true });
45037
+ exports2.ListMarketplaceListingVersionsCommand = exports2.$Command = void 0;
45038
+ var Aws_restJson1_1 = require_Aws_restJson1();
45039
+ var middleware_serde_1 = require_dist_cjs5();
45040
+ var smithy_client_1 = require_dist_cjs20();
45041
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
45042
+ return smithy_client_1.Command;
45043
+ } });
45044
+ var ListMarketplaceListingVersionsCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
45045
+ return [
45046
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
45047
+ ];
45048
+ }).s("JustWorkflowItService", "ListMarketplaceListingVersions", {}).n("JustWorkflowItClient", "ListMarketplaceListingVersionsCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_ListMarketplaceListingVersionsCommand).de(Aws_restJson1_1.de_ListMarketplaceListingVersionsCommand).build() {
45049
+ };
45050
+ exports2.ListMarketplaceListingVersionsCommand = ListMarketplaceListingVersionsCommand;
45051
+ }
45052
+ });
45053
+
45054
+ // ../JustWorkflowItApiClient/dist-cjs/commands/ListMarketplaceListingsCommand.js
45055
+ var require_ListMarketplaceListingsCommand = __commonJS({
45056
+ "../JustWorkflowItApiClient/dist-cjs/commands/ListMarketplaceListingsCommand.js"(exports2) {
45057
+ "use strict";
45058
+ Object.defineProperty(exports2, "__esModule", { value: true });
45059
+ exports2.ListMarketplaceListingsCommand = exports2.$Command = void 0;
45060
+ var Aws_restJson1_1 = require_Aws_restJson1();
45061
+ var middleware_serde_1 = require_dist_cjs5();
45062
+ var smithy_client_1 = require_dist_cjs20();
45063
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
45064
+ return smithy_client_1.Command;
45065
+ } });
45066
+ var ListMarketplaceListingsCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
45067
+ return [
45068
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
45069
+ ];
45070
+ }).s("JustWorkflowItService", "ListMarketplaceListings", {}).n("JustWorkflowItClient", "ListMarketplaceListingsCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_ListMarketplaceListingsCommand).de(Aws_restJson1_1.de_ListMarketplaceListingsCommand).build() {
45071
+ };
45072
+ exports2.ListMarketplaceListingsCommand = ListMarketplaceListingsCommand;
45073
+ }
45074
+ });
45075
+
45076
+ // ../JustWorkflowItApiClient/dist-cjs/commands/ListMyMarketplaceListingsCommand.js
45077
+ var require_ListMyMarketplaceListingsCommand = __commonJS({
45078
+ "../JustWorkflowItApiClient/dist-cjs/commands/ListMyMarketplaceListingsCommand.js"(exports2) {
45079
+ "use strict";
45080
+ Object.defineProperty(exports2, "__esModule", { value: true });
45081
+ exports2.ListMyMarketplaceListingsCommand = exports2.$Command = void 0;
45082
+ var Aws_restJson1_1 = require_Aws_restJson1();
45083
+ var middleware_serde_1 = require_dist_cjs5();
45084
+ var smithy_client_1 = require_dist_cjs20();
45085
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
45086
+ return smithy_client_1.Command;
45087
+ } });
45088
+ var ListMyMarketplaceListingsCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
45089
+ return [
45090
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
45091
+ ];
45092
+ }).s("JustWorkflowItService", "ListMyMarketplaceListings", {}).n("JustWorkflowItClient", "ListMyMarketplaceListingsCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_ListMyMarketplaceListingsCommand).de(Aws_restJson1_1.de_ListMyMarketplaceListingsCommand).build() {
45093
+ };
45094
+ exports2.ListMyMarketplaceListingsCommand = ListMyMarketplaceListingsCommand;
45095
+ }
45096
+ });
45097
+
43417
45098
  // ../JustWorkflowItApiClient/dist-cjs/commands/ListOrganizationInvitationsForUserCommand.js
43418
45099
  var require_ListOrganizationInvitationsForUserCommand = __commonJS({
43419
45100
  "../JustWorkflowItApiClient/dist-cjs/commands/ListOrganizationInvitationsForUserCommand.js"(exports2) {
@@ -43590,6 +45271,28 @@ var require_ListWorkflowsCommand = __commonJS({
43590
45271
  }
43591
45272
  });
43592
45273
 
45274
+ // ../JustWorkflowItApiClient/dist-cjs/commands/PublishWorkflowToMarketplaceCommand.js
45275
+ var require_PublishWorkflowToMarketplaceCommand = __commonJS({
45276
+ "../JustWorkflowItApiClient/dist-cjs/commands/PublishWorkflowToMarketplaceCommand.js"(exports2) {
45277
+ "use strict";
45278
+ Object.defineProperty(exports2, "__esModule", { value: true });
45279
+ exports2.PublishWorkflowToMarketplaceCommand = exports2.$Command = void 0;
45280
+ var Aws_restJson1_1 = require_Aws_restJson1();
45281
+ var middleware_serde_1 = require_dist_cjs5();
45282
+ var smithy_client_1 = require_dist_cjs20();
45283
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
45284
+ return smithy_client_1.Command;
45285
+ } });
45286
+ var PublishWorkflowToMarketplaceCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
45287
+ return [
45288
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
45289
+ ];
45290
+ }).s("JustWorkflowItService", "PublishWorkflowToMarketplace", {}).n("JustWorkflowItClient", "PublishWorkflowToMarketplaceCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_PublishWorkflowToMarketplaceCommand).de(Aws_restJson1_1.de_PublishWorkflowToMarketplaceCommand).build() {
45291
+ };
45292
+ exports2.PublishWorkflowToMarketplaceCommand = PublishWorkflowToMarketplaceCommand;
45293
+ }
45294
+ });
45295
+
43593
45296
  // ../JustWorkflowItApiClient/dist-cjs/commands/RegisterWorkflowCommand.js
43594
45297
  var require_RegisterWorkflowCommand = __commonJS({
43595
45298
  "../JustWorkflowItApiClient/dist-cjs/commands/RegisterWorkflowCommand.js"(exports2) {
@@ -43722,6 +45425,50 @@ var require_RevokeApiAuthTokenCommand = __commonJS({
43722
45425
  }
43723
45426
  });
43724
45427
 
45428
+ // ../JustWorkflowItApiClient/dist-cjs/commands/RevokeMarketplaceAccessCommand.js
45429
+ var require_RevokeMarketplaceAccessCommand = __commonJS({
45430
+ "../JustWorkflowItApiClient/dist-cjs/commands/RevokeMarketplaceAccessCommand.js"(exports2) {
45431
+ "use strict";
45432
+ Object.defineProperty(exports2, "__esModule", { value: true });
45433
+ exports2.RevokeMarketplaceAccessCommand = exports2.$Command = void 0;
45434
+ var Aws_restJson1_1 = require_Aws_restJson1();
45435
+ var middleware_serde_1 = require_dist_cjs5();
45436
+ var smithy_client_1 = require_dist_cjs20();
45437
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
45438
+ return smithy_client_1.Command;
45439
+ } });
45440
+ var RevokeMarketplaceAccessCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
45441
+ return [
45442
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
45443
+ ];
45444
+ }).s("JustWorkflowItService", "RevokeMarketplaceAccess", {}).n("JustWorkflowItClient", "RevokeMarketplaceAccessCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_RevokeMarketplaceAccessCommand).de(Aws_restJson1_1.de_RevokeMarketplaceAccessCommand).build() {
45445
+ };
45446
+ exports2.RevokeMarketplaceAccessCommand = RevokeMarketplaceAccessCommand;
45447
+ }
45448
+ });
45449
+
45450
+ // ../JustWorkflowItApiClient/dist-cjs/commands/SearchMarketplaceOrganizationsCommand.js
45451
+ var require_SearchMarketplaceOrganizationsCommand = __commonJS({
45452
+ "../JustWorkflowItApiClient/dist-cjs/commands/SearchMarketplaceOrganizationsCommand.js"(exports2) {
45453
+ "use strict";
45454
+ Object.defineProperty(exports2, "__esModule", { value: true });
45455
+ exports2.SearchMarketplaceOrganizationsCommand = exports2.$Command = void 0;
45456
+ var Aws_restJson1_1 = require_Aws_restJson1();
45457
+ var middleware_serde_1 = require_dist_cjs5();
45458
+ var smithy_client_1 = require_dist_cjs20();
45459
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
45460
+ return smithy_client_1.Command;
45461
+ } });
45462
+ var SearchMarketplaceOrganizationsCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
45463
+ return [
45464
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
45465
+ ];
45466
+ }).s("JustWorkflowItService", "SearchMarketplaceOrganizations", {}).n("JustWorkflowItClient", "SearchMarketplaceOrganizationsCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_SearchMarketplaceOrganizationsCommand).de(Aws_restJson1_1.de_SearchMarketplaceOrganizationsCommand).build() {
45467
+ };
45468
+ exports2.SearchMarketplaceOrganizationsCommand = SearchMarketplaceOrganizationsCommand;
45469
+ }
45470
+ });
45471
+
43725
45472
  // ../JustWorkflowItApiClient/dist-cjs/commands/SendJobEventCommand.js
43726
45473
  var require_SendJobEventCommand = __commonJS({
43727
45474
  "../JustWorkflowItApiClient/dist-cjs/commands/SendJobEventCommand.js"(exports2) {
@@ -43744,6 +45491,28 @@ var require_SendJobEventCommand = __commonJS({
43744
45491
  }
43745
45492
  });
43746
45493
 
45494
+ // ../JustWorkflowItApiClient/dist-cjs/commands/SetMarketplaceListingVersionTagCommand.js
45495
+ var require_SetMarketplaceListingVersionTagCommand = __commonJS({
45496
+ "../JustWorkflowItApiClient/dist-cjs/commands/SetMarketplaceListingVersionTagCommand.js"(exports2) {
45497
+ "use strict";
45498
+ Object.defineProperty(exports2, "__esModule", { value: true });
45499
+ exports2.SetMarketplaceListingVersionTagCommand = exports2.$Command = void 0;
45500
+ var Aws_restJson1_1 = require_Aws_restJson1();
45501
+ var middleware_serde_1 = require_dist_cjs5();
45502
+ var smithy_client_1 = require_dist_cjs20();
45503
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
45504
+ return smithy_client_1.Command;
45505
+ } });
45506
+ var SetMarketplaceListingVersionTagCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
45507
+ return [
45508
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
45509
+ ];
45510
+ }).s("JustWorkflowItService", "SetMarketplaceListingVersionTag", {}).n("JustWorkflowItClient", "SetMarketplaceListingVersionTagCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_SetMarketplaceListingVersionTagCommand).de(Aws_restJson1_1.de_SetMarketplaceListingVersionTagCommand).build() {
45511
+ };
45512
+ exports2.SetMarketplaceListingVersionTagCommand = SetMarketplaceListingVersionTagCommand;
45513
+ }
45514
+ });
45515
+
43747
45516
  // ../JustWorkflowItApiClient/dist-cjs/commands/SetWorkflowVersionTagCommand.js
43748
45517
  var require_SetWorkflowVersionTagCommand = __commonJS({
43749
45518
  "../JustWorkflowItApiClient/dist-cjs/commands/SetWorkflowVersionTagCommand.js"(exports2) {
@@ -43788,6 +45557,50 @@ var require_SubmitJobCommand = __commonJS({
43788
45557
  }
43789
45558
  });
43790
45559
 
45560
+ // ../JustWorkflowItApiClient/dist-cjs/commands/UnallowlistMarketplaceListingCommand.js
45561
+ var require_UnallowlistMarketplaceListingCommand = __commonJS({
45562
+ "../JustWorkflowItApiClient/dist-cjs/commands/UnallowlistMarketplaceListingCommand.js"(exports2) {
45563
+ "use strict";
45564
+ Object.defineProperty(exports2, "__esModule", { value: true });
45565
+ exports2.UnallowlistMarketplaceListingCommand = exports2.$Command = void 0;
45566
+ var Aws_restJson1_1 = require_Aws_restJson1();
45567
+ var middleware_serde_1 = require_dist_cjs5();
45568
+ var smithy_client_1 = require_dist_cjs20();
45569
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
45570
+ return smithy_client_1.Command;
45571
+ } });
45572
+ var UnallowlistMarketplaceListingCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
45573
+ return [
45574
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
45575
+ ];
45576
+ }).s("JustWorkflowItService", "UnallowlistMarketplaceListing", {}).n("JustWorkflowItClient", "UnallowlistMarketplaceListingCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_UnallowlistMarketplaceListingCommand).de(Aws_restJson1_1.de_UnallowlistMarketplaceListingCommand).build() {
45577
+ };
45578
+ exports2.UnallowlistMarketplaceListingCommand = UnallowlistMarketplaceListingCommand;
45579
+ }
45580
+ });
45581
+
45582
+ // ../JustWorkflowItApiClient/dist-cjs/commands/UnpublishWorkflowFromMarketplaceCommand.js
45583
+ var require_UnpublishWorkflowFromMarketplaceCommand = __commonJS({
45584
+ "../JustWorkflowItApiClient/dist-cjs/commands/UnpublishWorkflowFromMarketplaceCommand.js"(exports2) {
45585
+ "use strict";
45586
+ Object.defineProperty(exports2, "__esModule", { value: true });
45587
+ exports2.UnpublishWorkflowFromMarketplaceCommand = exports2.$Command = void 0;
45588
+ var Aws_restJson1_1 = require_Aws_restJson1();
45589
+ var middleware_serde_1 = require_dist_cjs5();
45590
+ var smithy_client_1 = require_dist_cjs20();
45591
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
45592
+ return smithy_client_1.Command;
45593
+ } });
45594
+ var UnpublishWorkflowFromMarketplaceCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
45595
+ return [
45596
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
45597
+ ];
45598
+ }).s("JustWorkflowItService", "UnpublishWorkflowFromMarketplace", {}).n("JustWorkflowItClient", "UnpublishWorkflowFromMarketplaceCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_UnpublishWorkflowFromMarketplaceCommand).de(Aws_restJson1_1.de_UnpublishWorkflowFromMarketplaceCommand).build() {
45599
+ };
45600
+ exports2.UnpublishWorkflowFromMarketplaceCommand = UnpublishWorkflowFromMarketplaceCommand;
45601
+ }
45602
+ });
45603
+
43791
45604
  // ../JustWorkflowItApiClient/dist-cjs/commands/UpdateApiAuthTokenCommand.js
43792
45605
  var require_UpdateApiAuthTokenCommand = __commonJS({
43793
45606
  "../JustWorkflowItApiClient/dist-cjs/commands/UpdateApiAuthTokenCommand.js"(exports2) {
@@ -43810,6 +45623,50 @@ var require_UpdateApiAuthTokenCommand = __commonJS({
43810
45623
  }
43811
45624
  });
43812
45625
 
45626
+ // ../JustWorkflowItApiClient/dist-cjs/commands/UpdateMarketplaceListingBillingCommand.js
45627
+ var require_UpdateMarketplaceListingBillingCommand = __commonJS({
45628
+ "../JustWorkflowItApiClient/dist-cjs/commands/UpdateMarketplaceListingBillingCommand.js"(exports2) {
45629
+ "use strict";
45630
+ Object.defineProperty(exports2, "__esModule", { value: true });
45631
+ exports2.UpdateMarketplaceListingBillingCommand = exports2.$Command = void 0;
45632
+ var Aws_restJson1_1 = require_Aws_restJson1();
45633
+ var middleware_serde_1 = require_dist_cjs5();
45634
+ var smithy_client_1 = require_dist_cjs20();
45635
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
45636
+ return smithy_client_1.Command;
45637
+ } });
45638
+ var UpdateMarketplaceListingBillingCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
45639
+ return [
45640
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
45641
+ ];
45642
+ }).s("JustWorkflowItService", "UpdateMarketplaceListingBilling", {}).n("JustWorkflowItClient", "UpdateMarketplaceListingBillingCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_UpdateMarketplaceListingBillingCommand).de(Aws_restJson1_1.de_UpdateMarketplaceListingBillingCommand).build() {
45643
+ };
45644
+ exports2.UpdateMarketplaceListingBillingCommand = UpdateMarketplaceListingBillingCommand;
45645
+ }
45646
+ });
45647
+
45648
+ // ../JustWorkflowItApiClient/dist-cjs/commands/UpdateMarketplaceListingMetadataCommand.js
45649
+ var require_UpdateMarketplaceListingMetadataCommand = __commonJS({
45650
+ "../JustWorkflowItApiClient/dist-cjs/commands/UpdateMarketplaceListingMetadataCommand.js"(exports2) {
45651
+ "use strict";
45652
+ Object.defineProperty(exports2, "__esModule", { value: true });
45653
+ exports2.UpdateMarketplaceListingMetadataCommand = exports2.$Command = void 0;
45654
+ var Aws_restJson1_1 = require_Aws_restJson1();
45655
+ var middleware_serde_1 = require_dist_cjs5();
45656
+ var smithy_client_1 = require_dist_cjs20();
45657
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
45658
+ return smithy_client_1.Command;
45659
+ } });
45660
+ var UpdateMarketplaceListingMetadataCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
45661
+ return [
45662
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
45663
+ ];
45664
+ }).s("JustWorkflowItService", "UpdateMarketplaceListingMetadata", {}).n("JustWorkflowItClient", "UpdateMarketplaceListingMetadataCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_UpdateMarketplaceListingMetadataCommand).de(Aws_restJson1_1.de_UpdateMarketplaceListingMetadataCommand).build() {
45665
+ };
45666
+ exports2.UpdateMarketplaceListingMetadataCommand = UpdateMarketplaceListingMetadataCommand;
45667
+ }
45668
+ });
45669
+
43813
45670
  // ../JustWorkflowItApiClient/dist-cjs/commands/UpdateOrganizationCommand.js
43814
45671
  var require_UpdateOrganizationCommand = __commonJS({
43815
45672
  "../JustWorkflowItApiClient/dist-cjs/commands/UpdateOrganizationCommand.js"(exports2) {
@@ -43898,6 +45755,28 @@ var require_UpdateRoleCommand = __commonJS({
43898
45755
  }
43899
45756
  });
43900
45757
 
45758
+ // ../JustWorkflowItApiClient/dist-cjs/commands/UpsertMarketplaceListingBillingOverrideCommand.js
45759
+ var require_UpsertMarketplaceListingBillingOverrideCommand = __commonJS({
45760
+ "../JustWorkflowItApiClient/dist-cjs/commands/UpsertMarketplaceListingBillingOverrideCommand.js"(exports2) {
45761
+ "use strict";
45762
+ Object.defineProperty(exports2, "__esModule", { value: true });
45763
+ exports2.UpsertMarketplaceListingBillingOverrideCommand = exports2.$Command = void 0;
45764
+ var Aws_restJson1_1 = require_Aws_restJson1();
45765
+ var middleware_serde_1 = require_dist_cjs5();
45766
+ var smithy_client_1 = require_dist_cjs20();
45767
+ Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
45768
+ return smithy_client_1.Command;
45769
+ } });
45770
+ var UpsertMarketplaceListingBillingOverrideCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
45771
+ return [
45772
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
45773
+ ];
45774
+ }).s("JustWorkflowItService", "UpsertMarketplaceListingBillingOverride", {}).n("JustWorkflowItClient", "UpsertMarketplaceListingBillingOverrideCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_UpsertMarketplaceListingBillingOverrideCommand).de(Aws_restJson1_1.de_UpsertMarketplaceListingBillingOverrideCommand).build() {
45775
+ };
45776
+ exports2.UpsertMarketplaceListingBillingOverrideCommand = UpsertMarketplaceListingBillingOverrideCommand;
45777
+ }
45778
+ });
45779
+
43901
45780
  // ../JustWorkflowItApiClient/dist-cjs/JustWorkflowIt.js
43902
45781
  var require_JustWorkflowIt = __commonJS({
43903
45782
  "../JustWorkflowItApiClient/dist-cjs/JustWorkflowIt.js"(exports2) {
@@ -43906,34 +45785,57 @@ var require_JustWorkflowIt = __commonJS({
43906
45785
  exports2.JustWorkflowIt = void 0;
43907
45786
  var JustWorkflowItClient_1 = require_JustWorkflowItClient();
43908
45787
  var AcceptOrganizationInvitationCommand_1 = require_AcceptOrganizationInvitationCommand();
45788
+ var AdminCreateRoleCommand_1 = require_AdminCreateRoleCommand();
45789
+ var AdminDeleteRoleCommand_1 = require_AdminDeleteRoleCommand();
45790
+ var AdminGetOrganizationCommand_1 = require_AdminGetOrganizationCommand();
45791
+ var AdminGetRoleCommand_1 = require_AdminGetRoleCommand();
45792
+ var AdminListOrganizationsCommand_1 = require_AdminListOrganizationsCommand();
45793
+ var AdminListRolesCommand_1 = require_AdminListRolesCommand();
45794
+ var AdminUpdateRoleCommand_1 = require_AdminUpdateRoleCommand();
45795
+ var AllowlistMarketplaceListingCommand_1 = require_AllowlistMarketplaceListingCommand();
43909
45796
  var CancelJobCommand_1 = require_CancelJobCommand();
43910
45797
  var CancelOrganizationInvitationCommand_1 = require_CancelOrganizationInvitationCommand();
43911
45798
  var CreateApiAuthTokenCommand_1 = require_CreateApiAuthTokenCommand();
43912
45799
  var CreateInterestCommand_1 = require_CreateInterestCommand();
45800
+ var CreateMarketplaceListingVersionCommand_1 = require_CreateMarketplaceListingVersionCommand();
43913
45801
  var CreateOrganizationCommand_1 = require_CreateOrganizationCommand();
43914
45802
  var CreateOrganizationInvitationCommand_1 = require_CreateOrganizationInvitationCommand();
43915
45803
  var CreateResourcePoolCommand_1 = require_CreateResourcePoolCommand();
43916
45804
  var CreateRoleCommand_1 = require_CreateRoleCommand();
45805
+ var DeleteMarketplaceListingBillingOverrideCommand_1 = require_DeleteMarketplaceListingBillingOverrideCommand();
43917
45806
  var DeleteOrganizationCommand_1 = require_DeleteOrganizationCommand();
43918
45807
  var DeleteResourcePoolCommand_1 = require_DeleteResourcePoolCommand();
43919
45808
  var DeleteRoleCommand_1 = require_DeleteRoleCommand();
43920
45809
  var GetApiAuthTokenCommand_1 = require_GetApiAuthTokenCommand();
45810
+ var GetConsumerListingUsageTimeSeriesCommand_1 = require_GetConsumerListingUsageTimeSeriesCommand();
43921
45811
  var GetJobCommand_1 = require_GetJobCommand();
45812
+ var GetMarketplaceListingCommand_1 = require_GetMarketplaceListingCommand();
45813
+ var GetMarketplaceListingVersionCommand_1 = require_GetMarketplaceListingVersionCommand();
43922
45814
  var GetMyPermissionsCommand_1 = require_GetMyPermissionsCommand();
43923
45815
  var GetOrganizationCommand_1 = require_GetOrganizationCommand();
43924
45816
  var GetOrganizationInvitationCommand_1 = require_GetOrganizationInvitationCommand();
43925
45817
  var GetOrganizationSubscriptionPlanCommand_1 = require_GetOrganizationSubscriptionPlanCommand();
43926
45818
  var GetPublicInvitationDetailsCommand_1 = require_GetPublicInvitationDetailsCommand();
45819
+ var GetPublisherListingConsumerBreakdownCommand_1 = require_GetPublisherListingConsumerBreakdownCommand();
45820
+ var GetPublisherListingUsageTimeSeriesCommand_1 = require_GetPublisherListingUsageTimeSeriesCommand();
43927
45821
  var GetResourcePoolCommand_1 = require_GetResourcePoolCommand();
43928
45822
  var GetRoleCommand_1 = require_GetRoleCommand();
43929
45823
  var GetSubscriptionPlanCommand_1 = require_GetSubscriptionPlanCommand();
45824
+ var GetTaggedMarketplaceListingVersionCommand_1 = require_GetTaggedMarketplaceListingVersionCommand();
43930
45825
  var GetTaggedWorkflowVersionCommand_1 = require_GetTaggedWorkflowVersionCommand();
43931
45826
  var GetWorkflowCommand_1 = require_GetWorkflowCommand();
43932
45827
  var GetWorkflowMetricTimeSeriesCommand_1 = require_GetWorkflowMetricTimeSeriesCommand();
43933
45828
  var GetWorkflowStateCommand_1 = require_GetWorkflowStateCommand();
43934
45829
  var GetWorkflowVersionCommand_1 = require_GetWorkflowVersionCommand();
45830
+ var GrantMarketplaceAccessCommand_1 = require_GrantMarketplaceAccessCommand();
45831
+ var IsMarketplaceListingAllowlistedCommand_1 = require_IsMarketplaceListingAllowlistedCommand();
45832
+ var ListAllowlistedMarketplaceListingsCommand_1 = require_ListAllowlistedMarketplaceListingsCommand();
43935
45833
  var ListApiAuthTokensCommand_1 = require_ListApiAuthTokensCommand();
43936
45834
  var ListJobsCommand_1 = require_ListJobsCommand();
45835
+ var ListMarketplaceListingBillingOverridesCommand_1 = require_ListMarketplaceListingBillingOverridesCommand();
45836
+ var ListMarketplaceListingVersionsCommand_1 = require_ListMarketplaceListingVersionsCommand();
45837
+ var ListMarketplaceListingsCommand_1 = require_ListMarketplaceListingsCommand();
45838
+ var ListMyMarketplaceListingsCommand_1 = require_ListMyMarketplaceListingsCommand();
43937
45839
  var ListOrganizationInvitationsForUserCommand_1 = require_ListOrganizationInvitationsForUserCommand();
43938
45840
  var ListOrganizationUsersAndInvitationsCommand_1 = require_ListOrganizationUsersAndInvitationsCommand();
43939
45841
  var ListOrganizationsCommand_1 = require_ListOrganizationsCommand();
@@ -43942,51 +45844,83 @@ var require_JustWorkflowIt = __commonJS({
43942
45844
  var ListSubscriptionPlansCommand_1 = require_ListSubscriptionPlansCommand();
43943
45845
  var ListWorkflowVersionsCommand_1 = require_ListWorkflowVersionsCommand();
43944
45846
  var ListWorkflowsCommand_1 = require_ListWorkflowsCommand();
45847
+ var PublishWorkflowToMarketplaceCommand_1 = require_PublishWorkflowToMarketplaceCommand();
43945
45848
  var RegisterWorkflowCommand_1 = require_RegisterWorkflowCommand();
43946
45849
  var RegisterWorkflowVersionCommand_1 = require_RegisterWorkflowVersionCommand();
43947
45850
  var RejectOrganizationInvitationCommand_1 = require_RejectOrganizationInvitationCommand();
43948
45851
  var RemoveOrganizationMembershipCommand_1 = require_RemoveOrganizationMembershipCommand();
43949
45852
  var ResumeJobCommand_1 = require_ResumeJobCommand();
43950
45853
  var RevokeApiAuthTokenCommand_1 = require_RevokeApiAuthTokenCommand();
45854
+ var RevokeMarketplaceAccessCommand_1 = require_RevokeMarketplaceAccessCommand();
45855
+ var SearchMarketplaceOrganizationsCommand_1 = require_SearchMarketplaceOrganizationsCommand();
43951
45856
  var SendJobEventCommand_1 = require_SendJobEventCommand();
45857
+ var SetMarketplaceListingVersionTagCommand_1 = require_SetMarketplaceListingVersionTagCommand();
43952
45858
  var SetWorkflowVersionTagCommand_1 = require_SetWorkflowVersionTagCommand();
43953
45859
  var SubmitJobCommand_1 = require_SubmitJobCommand();
45860
+ var UnallowlistMarketplaceListingCommand_1 = require_UnallowlistMarketplaceListingCommand();
45861
+ var UnpublishWorkflowFromMarketplaceCommand_1 = require_UnpublishWorkflowFromMarketplaceCommand();
43954
45862
  var UpdateApiAuthTokenCommand_1 = require_UpdateApiAuthTokenCommand();
45863
+ var UpdateMarketplaceListingBillingCommand_1 = require_UpdateMarketplaceListingBillingCommand();
45864
+ var UpdateMarketplaceListingMetadataCommand_1 = require_UpdateMarketplaceListingMetadataCommand();
43955
45865
  var UpdateOrganizationCommand_1 = require_UpdateOrganizationCommand();
43956
45866
  var UpdateOrganizationMembershipCommand_1 = require_UpdateOrganizationMembershipCommand();
43957
45867
  var UpdateResourcePoolCommand_1 = require_UpdateResourcePoolCommand();
43958
45868
  var UpdateRoleCommand_1 = require_UpdateRoleCommand();
45869
+ var UpsertMarketplaceListingBillingOverrideCommand_1 = require_UpsertMarketplaceListingBillingOverrideCommand();
43959
45870
  var smithy_client_1 = require_dist_cjs20();
43960
45871
  var commands4 = {
43961
45872
  AcceptOrganizationInvitationCommand: AcceptOrganizationInvitationCommand_1.AcceptOrganizationInvitationCommand,
45873
+ AdminCreateRoleCommand: AdminCreateRoleCommand_1.AdminCreateRoleCommand,
45874
+ AdminDeleteRoleCommand: AdminDeleteRoleCommand_1.AdminDeleteRoleCommand,
45875
+ AdminGetOrganizationCommand: AdminGetOrganizationCommand_1.AdminGetOrganizationCommand,
45876
+ AdminGetRoleCommand: AdminGetRoleCommand_1.AdminGetRoleCommand,
45877
+ AdminListOrganizationsCommand: AdminListOrganizationsCommand_1.AdminListOrganizationsCommand,
45878
+ AdminListRolesCommand: AdminListRolesCommand_1.AdminListRolesCommand,
45879
+ AdminUpdateRoleCommand: AdminUpdateRoleCommand_1.AdminUpdateRoleCommand,
45880
+ AllowlistMarketplaceListingCommand: AllowlistMarketplaceListingCommand_1.AllowlistMarketplaceListingCommand,
43962
45881
  CancelJobCommand: CancelJobCommand_1.CancelJobCommand,
43963
45882
  CancelOrganizationInvitationCommand: CancelOrganizationInvitationCommand_1.CancelOrganizationInvitationCommand,
43964
45883
  CreateApiAuthTokenCommand: CreateApiAuthTokenCommand_1.CreateApiAuthTokenCommand,
43965
45884
  CreateInterestCommand: CreateInterestCommand_1.CreateInterestCommand,
45885
+ CreateMarketplaceListingVersionCommand: CreateMarketplaceListingVersionCommand_1.CreateMarketplaceListingVersionCommand,
43966
45886
  CreateOrganizationCommand: CreateOrganizationCommand_1.CreateOrganizationCommand,
43967
45887
  CreateOrganizationInvitationCommand: CreateOrganizationInvitationCommand_1.CreateOrganizationInvitationCommand,
43968
45888
  CreateResourcePoolCommand: CreateResourcePoolCommand_1.CreateResourcePoolCommand,
43969
45889
  CreateRoleCommand: CreateRoleCommand_1.CreateRoleCommand,
45890
+ DeleteMarketplaceListingBillingOverrideCommand: DeleteMarketplaceListingBillingOverrideCommand_1.DeleteMarketplaceListingBillingOverrideCommand,
43970
45891
  DeleteOrganizationCommand: DeleteOrganizationCommand_1.DeleteOrganizationCommand,
43971
45892
  DeleteResourcePoolCommand: DeleteResourcePoolCommand_1.DeleteResourcePoolCommand,
43972
45893
  DeleteRoleCommand: DeleteRoleCommand_1.DeleteRoleCommand,
43973
45894
  GetApiAuthTokenCommand: GetApiAuthTokenCommand_1.GetApiAuthTokenCommand,
45895
+ GetConsumerListingUsageTimeSeriesCommand: GetConsumerListingUsageTimeSeriesCommand_1.GetConsumerListingUsageTimeSeriesCommand,
43974
45896
  GetJobCommand: GetJobCommand_1.GetJobCommand,
45897
+ GetMarketplaceListingCommand: GetMarketplaceListingCommand_1.GetMarketplaceListingCommand,
45898
+ GetMarketplaceListingVersionCommand: GetMarketplaceListingVersionCommand_1.GetMarketplaceListingVersionCommand,
43975
45899
  GetMyPermissionsCommand: GetMyPermissionsCommand_1.GetMyPermissionsCommand,
43976
45900
  GetOrganizationCommand: GetOrganizationCommand_1.GetOrganizationCommand,
43977
45901
  GetOrganizationInvitationCommand: GetOrganizationInvitationCommand_1.GetOrganizationInvitationCommand,
43978
45902
  GetOrganizationSubscriptionPlanCommand: GetOrganizationSubscriptionPlanCommand_1.GetOrganizationSubscriptionPlanCommand,
43979
45903
  GetPublicInvitationDetailsCommand: GetPublicInvitationDetailsCommand_1.GetPublicInvitationDetailsCommand,
45904
+ GetPublisherListingConsumerBreakdownCommand: GetPublisherListingConsumerBreakdownCommand_1.GetPublisherListingConsumerBreakdownCommand,
45905
+ GetPublisherListingUsageTimeSeriesCommand: GetPublisherListingUsageTimeSeriesCommand_1.GetPublisherListingUsageTimeSeriesCommand,
43980
45906
  GetResourcePoolCommand: GetResourcePoolCommand_1.GetResourcePoolCommand,
43981
45907
  GetRoleCommand: GetRoleCommand_1.GetRoleCommand,
43982
45908
  GetSubscriptionPlanCommand: GetSubscriptionPlanCommand_1.GetSubscriptionPlanCommand,
45909
+ GetTaggedMarketplaceListingVersionCommand: GetTaggedMarketplaceListingVersionCommand_1.GetTaggedMarketplaceListingVersionCommand,
43983
45910
  GetTaggedWorkflowVersionCommand: GetTaggedWorkflowVersionCommand_1.GetTaggedWorkflowVersionCommand,
43984
45911
  GetWorkflowCommand: GetWorkflowCommand_1.GetWorkflowCommand,
43985
45912
  GetWorkflowMetricTimeSeriesCommand: GetWorkflowMetricTimeSeriesCommand_1.GetWorkflowMetricTimeSeriesCommand,
43986
45913
  GetWorkflowStateCommand: GetWorkflowStateCommand_1.GetWorkflowStateCommand,
43987
45914
  GetWorkflowVersionCommand: GetWorkflowVersionCommand_1.GetWorkflowVersionCommand,
45915
+ GrantMarketplaceAccessCommand: GrantMarketplaceAccessCommand_1.GrantMarketplaceAccessCommand,
45916
+ IsMarketplaceListingAllowlistedCommand: IsMarketplaceListingAllowlistedCommand_1.IsMarketplaceListingAllowlistedCommand,
45917
+ ListAllowlistedMarketplaceListingsCommand: ListAllowlistedMarketplaceListingsCommand_1.ListAllowlistedMarketplaceListingsCommand,
43988
45918
  ListApiAuthTokensCommand: ListApiAuthTokensCommand_1.ListApiAuthTokensCommand,
43989
45919
  ListJobsCommand: ListJobsCommand_1.ListJobsCommand,
45920
+ ListMarketplaceListingBillingOverridesCommand: ListMarketplaceListingBillingOverridesCommand_1.ListMarketplaceListingBillingOverridesCommand,
45921
+ ListMarketplaceListingsCommand: ListMarketplaceListingsCommand_1.ListMarketplaceListingsCommand,
45922
+ ListMarketplaceListingVersionsCommand: ListMarketplaceListingVersionsCommand_1.ListMarketplaceListingVersionsCommand,
45923
+ ListMyMarketplaceListingsCommand: ListMyMarketplaceListingsCommand_1.ListMyMarketplaceListingsCommand,
43990
45924
  ListOrganizationInvitationsForUserCommand: ListOrganizationInvitationsForUserCommand_1.ListOrganizationInvitationsForUserCommand,
43991
45925
  ListOrganizationsCommand: ListOrganizationsCommand_1.ListOrganizationsCommand,
43992
45926
  ListOrganizationUsersAndInvitationsCommand: ListOrganizationUsersAndInvitationsCommand_1.ListOrganizationUsersAndInvitationsCommand,
@@ -43995,20 +45929,29 @@ var require_JustWorkflowIt = __commonJS({
43995
45929
  ListSubscriptionPlansCommand: ListSubscriptionPlansCommand_1.ListSubscriptionPlansCommand,
43996
45930
  ListWorkflowsCommand: ListWorkflowsCommand_1.ListWorkflowsCommand,
43997
45931
  ListWorkflowVersionsCommand: ListWorkflowVersionsCommand_1.ListWorkflowVersionsCommand,
45932
+ PublishWorkflowToMarketplaceCommand: PublishWorkflowToMarketplaceCommand_1.PublishWorkflowToMarketplaceCommand,
43998
45933
  RegisterWorkflowCommand: RegisterWorkflowCommand_1.RegisterWorkflowCommand,
43999
45934
  RegisterWorkflowVersionCommand: RegisterWorkflowVersionCommand_1.RegisterWorkflowVersionCommand,
44000
45935
  RejectOrganizationInvitationCommand: RejectOrganizationInvitationCommand_1.RejectOrganizationInvitationCommand,
44001
45936
  RemoveOrganizationMembershipCommand: RemoveOrganizationMembershipCommand_1.RemoveOrganizationMembershipCommand,
44002
45937
  ResumeJobCommand: ResumeJobCommand_1.ResumeJobCommand,
44003
45938
  RevokeApiAuthTokenCommand: RevokeApiAuthTokenCommand_1.RevokeApiAuthTokenCommand,
45939
+ RevokeMarketplaceAccessCommand: RevokeMarketplaceAccessCommand_1.RevokeMarketplaceAccessCommand,
45940
+ SearchMarketplaceOrganizationsCommand: SearchMarketplaceOrganizationsCommand_1.SearchMarketplaceOrganizationsCommand,
44004
45941
  SendJobEventCommand: SendJobEventCommand_1.SendJobEventCommand,
45942
+ SetMarketplaceListingVersionTagCommand: SetMarketplaceListingVersionTagCommand_1.SetMarketplaceListingVersionTagCommand,
44005
45943
  SetWorkflowVersionTagCommand: SetWorkflowVersionTagCommand_1.SetWorkflowVersionTagCommand,
44006
45944
  SubmitJobCommand: SubmitJobCommand_1.SubmitJobCommand,
45945
+ UnallowlistMarketplaceListingCommand: UnallowlistMarketplaceListingCommand_1.UnallowlistMarketplaceListingCommand,
45946
+ UnpublishWorkflowFromMarketplaceCommand: UnpublishWorkflowFromMarketplaceCommand_1.UnpublishWorkflowFromMarketplaceCommand,
44007
45947
  UpdateApiAuthTokenCommand: UpdateApiAuthTokenCommand_1.UpdateApiAuthTokenCommand,
45948
+ UpdateMarketplaceListingBillingCommand: UpdateMarketplaceListingBillingCommand_1.UpdateMarketplaceListingBillingCommand,
45949
+ UpdateMarketplaceListingMetadataCommand: UpdateMarketplaceListingMetadataCommand_1.UpdateMarketplaceListingMetadataCommand,
44008
45950
  UpdateOrganizationCommand: UpdateOrganizationCommand_1.UpdateOrganizationCommand,
44009
45951
  UpdateOrganizationMembershipCommand: UpdateOrganizationMembershipCommand_1.UpdateOrganizationMembershipCommand,
44010
45952
  UpdateResourcePoolCommand: UpdateResourcePoolCommand_1.UpdateResourcePoolCommand,
44011
- UpdateRoleCommand: UpdateRoleCommand_1.UpdateRoleCommand
45953
+ UpdateRoleCommand: UpdateRoleCommand_1.UpdateRoleCommand,
45954
+ UpsertMarketplaceListingBillingOverrideCommand: UpsertMarketplaceListingBillingOverrideCommand_1.UpsertMarketplaceListingBillingOverrideCommand
44012
45955
  };
44013
45956
  var JustWorkflowIt2 = class extends JustWorkflowItClient_1.JustWorkflowItClient {
44014
45957
  };
@@ -44024,34 +45967,57 @@ var require_commands = __commonJS({
44024
45967
  Object.defineProperty(exports2, "__esModule", { value: true });
44025
45968
  var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
44026
45969
  tslib_1.__exportStar(require_AcceptOrganizationInvitationCommand(), exports2);
45970
+ tslib_1.__exportStar(require_AdminCreateRoleCommand(), exports2);
45971
+ tslib_1.__exportStar(require_AdminDeleteRoleCommand(), exports2);
45972
+ tslib_1.__exportStar(require_AdminGetOrganizationCommand(), exports2);
45973
+ tslib_1.__exportStar(require_AdminGetRoleCommand(), exports2);
45974
+ tslib_1.__exportStar(require_AdminListOrganizationsCommand(), exports2);
45975
+ tslib_1.__exportStar(require_AdminListRolesCommand(), exports2);
45976
+ tslib_1.__exportStar(require_AdminUpdateRoleCommand(), exports2);
45977
+ tslib_1.__exportStar(require_AllowlistMarketplaceListingCommand(), exports2);
44027
45978
  tslib_1.__exportStar(require_CancelJobCommand(), exports2);
44028
45979
  tslib_1.__exportStar(require_CancelOrganizationInvitationCommand(), exports2);
44029
45980
  tslib_1.__exportStar(require_CreateApiAuthTokenCommand(), exports2);
44030
45981
  tslib_1.__exportStar(require_CreateInterestCommand(), exports2);
45982
+ tslib_1.__exportStar(require_CreateMarketplaceListingVersionCommand(), exports2);
44031
45983
  tslib_1.__exportStar(require_CreateOrganizationCommand(), exports2);
44032
45984
  tslib_1.__exportStar(require_CreateOrganizationInvitationCommand(), exports2);
44033
45985
  tslib_1.__exportStar(require_CreateResourcePoolCommand(), exports2);
44034
45986
  tslib_1.__exportStar(require_CreateRoleCommand(), exports2);
45987
+ tslib_1.__exportStar(require_DeleteMarketplaceListingBillingOverrideCommand(), exports2);
44035
45988
  tslib_1.__exportStar(require_DeleteOrganizationCommand(), exports2);
44036
45989
  tslib_1.__exportStar(require_DeleteResourcePoolCommand(), exports2);
44037
45990
  tslib_1.__exportStar(require_DeleteRoleCommand(), exports2);
44038
45991
  tslib_1.__exportStar(require_GetApiAuthTokenCommand(), exports2);
45992
+ tslib_1.__exportStar(require_GetConsumerListingUsageTimeSeriesCommand(), exports2);
44039
45993
  tslib_1.__exportStar(require_GetJobCommand(), exports2);
45994
+ tslib_1.__exportStar(require_GetMarketplaceListingCommand(), exports2);
45995
+ tslib_1.__exportStar(require_GetMarketplaceListingVersionCommand(), exports2);
44040
45996
  tslib_1.__exportStar(require_GetMyPermissionsCommand(), exports2);
44041
45997
  tslib_1.__exportStar(require_GetOrganizationCommand(), exports2);
44042
45998
  tslib_1.__exportStar(require_GetOrganizationInvitationCommand(), exports2);
44043
45999
  tslib_1.__exportStar(require_GetOrganizationSubscriptionPlanCommand(), exports2);
44044
46000
  tslib_1.__exportStar(require_GetPublicInvitationDetailsCommand(), exports2);
46001
+ tslib_1.__exportStar(require_GetPublisherListingConsumerBreakdownCommand(), exports2);
46002
+ tslib_1.__exportStar(require_GetPublisherListingUsageTimeSeriesCommand(), exports2);
44045
46003
  tslib_1.__exportStar(require_GetResourcePoolCommand(), exports2);
44046
46004
  tslib_1.__exportStar(require_GetRoleCommand(), exports2);
44047
46005
  tslib_1.__exportStar(require_GetSubscriptionPlanCommand(), exports2);
46006
+ tslib_1.__exportStar(require_GetTaggedMarketplaceListingVersionCommand(), exports2);
44048
46007
  tslib_1.__exportStar(require_GetTaggedWorkflowVersionCommand(), exports2);
44049
46008
  tslib_1.__exportStar(require_GetWorkflowCommand(), exports2);
44050
46009
  tslib_1.__exportStar(require_GetWorkflowMetricTimeSeriesCommand(), exports2);
44051
46010
  tslib_1.__exportStar(require_GetWorkflowStateCommand(), exports2);
44052
46011
  tslib_1.__exportStar(require_GetWorkflowVersionCommand(), exports2);
46012
+ tslib_1.__exportStar(require_GrantMarketplaceAccessCommand(), exports2);
46013
+ tslib_1.__exportStar(require_IsMarketplaceListingAllowlistedCommand(), exports2);
46014
+ tslib_1.__exportStar(require_ListAllowlistedMarketplaceListingsCommand(), exports2);
44053
46015
  tslib_1.__exportStar(require_ListApiAuthTokensCommand(), exports2);
44054
46016
  tslib_1.__exportStar(require_ListJobsCommand(), exports2);
46017
+ tslib_1.__exportStar(require_ListMarketplaceListingBillingOverridesCommand(), exports2);
46018
+ tslib_1.__exportStar(require_ListMarketplaceListingsCommand(), exports2);
46019
+ tslib_1.__exportStar(require_ListMarketplaceListingVersionsCommand(), exports2);
46020
+ tslib_1.__exportStar(require_ListMyMarketplaceListingsCommand(), exports2);
44055
46021
  tslib_1.__exportStar(require_ListOrganizationInvitationsForUserCommand(), exports2);
44056
46022
  tslib_1.__exportStar(require_ListOrganizationsCommand(), exports2);
44057
46023
  tslib_1.__exportStar(require_ListOrganizationUsersAndInvitationsCommand(), exports2);
@@ -44060,20 +46026,61 @@ var require_commands = __commonJS({
44060
46026
  tslib_1.__exportStar(require_ListSubscriptionPlansCommand(), exports2);
44061
46027
  tslib_1.__exportStar(require_ListWorkflowsCommand(), exports2);
44062
46028
  tslib_1.__exportStar(require_ListWorkflowVersionsCommand(), exports2);
46029
+ tslib_1.__exportStar(require_PublishWorkflowToMarketplaceCommand(), exports2);
44063
46030
  tslib_1.__exportStar(require_RegisterWorkflowCommand(), exports2);
44064
46031
  tslib_1.__exportStar(require_RegisterWorkflowVersionCommand(), exports2);
44065
46032
  tslib_1.__exportStar(require_RejectOrganizationInvitationCommand(), exports2);
44066
46033
  tslib_1.__exportStar(require_RemoveOrganizationMembershipCommand(), exports2);
44067
46034
  tslib_1.__exportStar(require_ResumeJobCommand(), exports2);
44068
46035
  tslib_1.__exportStar(require_RevokeApiAuthTokenCommand(), exports2);
46036
+ tslib_1.__exportStar(require_RevokeMarketplaceAccessCommand(), exports2);
46037
+ tslib_1.__exportStar(require_SearchMarketplaceOrganizationsCommand(), exports2);
44069
46038
  tslib_1.__exportStar(require_SendJobEventCommand(), exports2);
46039
+ tslib_1.__exportStar(require_SetMarketplaceListingVersionTagCommand(), exports2);
44070
46040
  tslib_1.__exportStar(require_SetWorkflowVersionTagCommand(), exports2);
44071
46041
  tslib_1.__exportStar(require_SubmitJobCommand(), exports2);
46042
+ tslib_1.__exportStar(require_UnallowlistMarketplaceListingCommand(), exports2);
46043
+ tslib_1.__exportStar(require_UnpublishWorkflowFromMarketplaceCommand(), exports2);
44072
46044
  tslib_1.__exportStar(require_UpdateApiAuthTokenCommand(), exports2);
46045
+ tslib_1.__exportStar(require_UpdateMarketplaceListingBillingCommand(), exports2);
46046
+ tslib_1.__exportStar(require_UpdateMarketplaceListingMetadataCommand(), exports2);
44073
46047
  tslib_1.__exportStar(require_UpdateOrganizationCommand(), exports2);
44074
46048
  tslib_1.__exportStar(require_UpdateOrganizationMembershipCommand(), exports2);
44075
46049
  tslib_1.__exportStar(require_UpdateResourcePoolCommand(), exports2);
44076
46050
  tslib_1.__exportStar(require_UpdateRoleCommand(), exports2);
46051
+ tslib_1.__exportStar(require_UpsertMarketplaceListingBillingOverrideCommand(), exports2);
46052
+ }
46053
+ });
46054
+
46055
+ // ../JustWorkflowItApiClient/dist-cjs/pagination/Interfaces.js
46056
+ var require_Interfaces = __commonJS({
46057
+ "../JustWorkflowItApiClient/dist-cjs/pagination/Interfaces.js"(exports2) {
46058
+ "use strict";
46059
+ Object.defineProperty(exports2, "__esModule", { value: true });
46060
+ }
46061
+ });
46062
+
46063
+ // ../JustWorkflowItApiClient/dist-cjs/pagination/AdminListOrganizationsPaginator.js
46064
+ var require_AdminListOrganizationsPaginator = __commonJS({
46065
+ "../JustWorkflowItApiClient/dist-cjs/pagination/AdminListOrganizationsPaginator.js"(exports2) {
46066
+ "use strict";
46067
+ Object.defineProperty(exports2, "__esModule", { value: true });
46068
+ exports2.paginateAdminListOrganizations = void 0;
46069
+ var JustWorkflowItClient_1 = require_JustWorkflowItClient();
46070
+ var AdminListOrganizationsCommand_1 = require_AdminListOrganizationsCommand();
46071
+ var core_1 = (init_dist_es(), __toCommonJS(dist_es_exports));
46072
+ exports2.paginateAdminListOrganizations = (0, core_1.createPaginator)(JustWorkflowItClient_1.JustWorkflowItClient, AdminListOrganizationsCommand_1.AdminListOrganizationsCommand, "nextToken", "nextToken", "limit");
46073
+ }
46074
+ });
46075
+
46076
+ // ../JustWorkflowItApiClient/dist-cjs/pagination/index.js
46077
+ var require_pagination = __commonJS({
46078
+ "../JustWorkflowItApiClient/dist-cjs/pagination/index.js"(exports2) {
46079
+ "use strict";
46080
+ Object.defineProperty(exports2, "__esModule", { value: true });
46081
+ var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
46082
+ tslib_1.__exportStar(require_Interfaces(), exports2);
46083
+ tslib_1.__exportStar(require_AdminListOrganizationsPaginator(), exports2);
44077
46084
  }
44078
46085
  });
44079
46086
 
@@ -44260,6 +46267,7 @@ var require_dist_cjs79 = __commonJS({
44260
46267
  tslib_1.__exportStar(require_JustWorkflowItClient(), exports2);
44261
46268
  tslib_1.__exportStar(require_JustWorkflowIt(), exports2);
44262
46269
  tslib_1.__exportStar(require_commands(), exports2);
46270
+ tslib_1.__exportStar(require_pagination(), exports2);
44263
46271
  tslib_1.__exportStar(require_models(), exports2);
44264
46272
  var JustWorkflowItServiceException_1 = require_JustWorkflowItServiceException();
44265
46273
  Object.defineProperty(exports2, "JustWorkflowItServiceException", { enumerable: true, get: function() {