@wix/auto_sdk_benefit-programs_pool-definitions 1.0.65 → 1.0.67

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +2 -4
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +8 -12
  5. package/build/cjs/index.typings.js +1 -3
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +3 -3
  8. package/build/cjs/meta.js.map +1 -1
  9. package/build/cjs/schemas.js +28 -24
  10. package/build/cjs/schemas.js.map +1 -1
  11. package/build/es/index.d.mts +1 -1
  12. package/build/es/index.mjs +2 -4
  13. package/build/es/index.mjs.map +1 -1
  14. package/build/es/index.typings.d.mts +8 -12
  15. package/build/es/index.typings.mjs +1 -3
  16. package/build/es/index.typings.mjs.map +1 -1
  17. package/build/es/meta.d.mts +3 -3
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/es/schemas.mjs +28 -24
  20. package/build/es/schemas.mjs.map +1 -1
  21. package/build/internal/cjs/index.d.ts +1 -1
  22. package/build/internal/cjs/index.js +2 -4
  23. package/build/internal/cjs/index.js.map +1 -1
  24. package/build/internal/cjs/index.typings.d.ts +97 -12
  25. package/build/internal/cjs/index.typings.js +1 -3
  26. package/build/internal/cjs/index.typings.js.map +1 -1
  27. package/build/internal/cjs/meta.d.ts +125 -3
  28. package/build/internal/cjs/meta.js.map +1 -1
  29. package/build/internal/cjs/schemas.js +28 -24
  30. package/build/internal/cjs/schemas.js.map +1 -1
  31. package/build/internal/es/index.d.mts +1 -1
  32. package/build/internal/es/index.mjs +2 -4
  33. package/build/internal/es/index.mjs.map +1 -1
  34. package/build/internal/es/index.typings.d.mts +97 -12
  35. package/build/internal/es/index.typings.mjs +1 -3
  36. package/build/internal/es/index.typings.mjs.map +1 -1
  37. package/build/internal/es/meta.d.mts +125 -3
  38. package/build/internal/es/meta.mjs.map +1 -1
  39. package/build/internal/es/schemas.mjs +28 -24
  40. package/build/internal/es/schemas.mjs.map +1 -1
  41. package/package.json +4 -4
@@ -60,6 +60,18 @@ interface PoolDefinition {
60
60
  * @maxSize 20
61
61
  */
62
62
  programDefinitions?: ProgramDefinitionInfo[];
63
+ /**
64
+ * Pool description.
65
+ * @internal
66
+ * @maxLength 450
67
+ */
68
+ description?: string | null;
69
+ /**
70
+ * Monotonic counter incremented on every change, including system/materialization updates that do not bump revision.
71
+ * @internal
72
+ * @readonly
73
+ */
74
+ changesCounter?: string | null;
63
75
  }
64
76
  interface Details {
65
77
  /**
@@ -73,6 +85,19 @@ interface Details {
73
85
  * If this object is empty, you can't set a price for the benefit.
74
86
  */
75
87
  creditConfiguration?: CreditConfiguration;
88
+ /**
89
+ * Defines when benefits can be redeemed.
90
+ *
91
+ * Benefit redemption can be limited by:
92
+ * - **Fixed intervals**: Benefits can be redeemed during specific times of the day or week.
93
+ * - **Rate limited**: Up to a maximum amount of benefits can be redeemed in a specified time period.
94
+ *
95
+ * Expressions can be combined using the *not*, *and*, and *or* operators.
96
+ *
97
+ * Each benefit can override this policy.
98
+ * @internal
99
+ */
100
+ policyExpression?: PolicyExpression;
76
101
  /** Additional information relating to this object. */
77
102
  additionalData?: Record<string, any> | null;
78
103
  }
@@ -96,6 +121,11 @@ interface Benefit {
96
121
  * @decimalValue options { gte:0, maxScale:4 }
97
122
  */
98
123
  price?: string | null;
124
+ /**
125
+ * Overrides the default policy expression in `benefit.details`.
126
+ * @internal
127
+ */
128
+ policyExpression?: PolicyExpression;
99
129
  /** Additional information for this benefit. */
100
130
  additionalData?: Record<string, any> | null;
101
131
  /**
@@ -303,6 +333,12 @@ interface CreditConfiguration {
303
333
  * @maxLength 32
304
334
  */
305
335
  unitDisplayName?: string | null;
336
+ /**
337
+ * Credit unit type.
338
+ * @internal
339
+ * @maxLength 16
340
+ */
341
+ unitType?: string | null;
306
342
  }
307
343
  interface RolloverConfiguration {
308
344
  /** Whether unused credits roll over to a new cycle when a program renews. */
@@ -337,6 +373,18 @@ interface ProgramDefinitionInfo {
337
373
  * @readonly
338
374
  */
339
375
  externalId?: string | null;
376
+ /**
377
+ * Program definition name.
378
+ * @internal
379
+ * @maxLength 64
380
+ */
381
+ displayName?: string | null;
382
+ /**
383
+ * Program definition description.
384
+ * @internal
385
+ * @maxLength 450
386
+ */
387
+ description?: string | null;
340
388
  }
341
389
  interface PoolDefinitionAddedToProgramDefinition {
342
390
  /** PoolDefinition that was added to the program definition */
@@ -489,6 +537,11 @@ interface BulkActionMetadata {
489
537
  interface UpdatePoolDefinitionRequest {
490
538
  /** Pool definition to update. */
491
539
  poolDefinition: PoolDefinition;
540
+ /**
541
+ * Explicit list of fields to update.
542
+ * @internal
543
+ */
544
+ fieldMask?: string[];
492
545
  /** *Required.** Determines when the changes to this pool definition and program definitions containing it will be applied to associated programs and pools. */
493
546
  cascade?: CascadeWithLiterals;
494
547
  }
@@ -574,6 +627,19 @@ interface GetPoolDefinitionResponse {
574
627
  interface QueryPoolDefinitionsRequest {
575
628
  /** Filter, sort, and paging to apply to the query. */
576
629
  query?: CursorQuery;
630
+ /**
631
+ * If true, the response will reflect a consistent snapshot of the data as of the time the request was received.
632
+ * @internal
633
+ */
634
+ consistent?: boolean | null;
635
+ /**
636
+ * HACK FIXME PPNP-4611. Supersedes the page limit provided in the CursorQuery. Provides a way for trusted clients to query large
637
+ * amounts of data because necessary index crashes mysql cluster so the only option is to perform filtering in memory
638
+ * https://wix.slack.com/archives/C0E3MBAGH/p1765097287055939
639
+ * @internal
640
+ * @max 10000
641
+ */
642
+ overrideLimit?: number | null;
577
643
  }
578
644
  interface CursorQuery extends CursorQueryPagingMethodOneOf {
579
645
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
@@ -607,6 +673,20 @@ interface Sorting {
607
673
  * Default: `ASC`
608
674
  */
609
675
  order?: SortOrderWithLiterals;
676
+ /**
677
+ * When `field_name` is a property of repeated field that is marked as `MATCH_ITEMS` and sort should be done by
678
+ * a specific element from a collection, filter can/should be provided to ensure correct sort value is picked.
679
+ *
680
+ * If multiple filters are provided, they are combined with AND operator.
681
+ *
682
+ * Example:
683
+ * Given we have document like {"id": "1", "nestedField": [{"price": 10, "region": "EU"}, {"price": 20, "region": "US"}]}
684
+ * and `nestedField` is marked as `MATCH_ITEMS`, to ensure that sorting is done by correct region, filter should be
685
+ * { fieldName: "nestedField.price", "select_items_by": [{"nestedField.region": "US"}] }
686
+ * @internal
687
+ * @maxSize 10
688
+ */
689
+ selectItemsBy?: Record<string, any>[] | null;
610
690
  }
611
691
  declare enum SortOrder {
612
692
  /** Ascending sort order. */
@@ -724,9 +804,9 @@ interface HealPoolDefinitionRequest {
724
804
  }
725
805
  interface HealPoolDefinitionResponse {
726
806
  }
727
- interface HealPoolDefinitionsTenantRequest {
807
+ interface HealPoolDefinitionTenantRequest {
728
808
  }
729
- interface HealPoolDefinitionsTenantResponse {
809
+ interface HealPoolDefinitionTenantResponse {
730
810
  }
731
811
  interface DomainEvent extends DomainEventBodyOneOf {
732
812
  createdEvent?: EntityCreatedEvent;
@@ -771,8 +851,18 @@ interface DomainEventBodyOneOf {
771
851
  }
772
852
  interface EntityCreatedEvent {
773
853
  entityAsJson?: string;
854
+ /**
855
+ * Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity
856
+ * @internal
857
+ */
858
+ triggeredByUndelete?: boolean | null;
774
859
  /** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
775
860
  restoreInfo?: RestoreInfo;
861
+ /**
862
+ * Optional domain-specific metadata defined by the API owner, encoded as JSON.
863
+ * @internal
864
+ */
865
+ additionalMetadataAsJson?: string | null;
776
866
  }
777
867
  interface RestoreInfo {
778
868
  deletedDate?: Date | null;
@@ -784,10 +874,42 @@ interface EntityUpdatedEvent {
784
874
  * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
785
875
  */
786
876
  currentEntityAsJson?: string;
877
+ /**
878
+ * This field is currently part of the of the EntityUpdatedEvent msg, but scala/node libraries which implements the domain events standard
879
+ * wont populate it / have any reference to it in the API.
880
+ * The main reason for it is that fetching the old entity from the DB will have a performance hit on an update operation so unless truly needed,
881
+ * the developer should send only the new (current) entity.
882
+ * An additional reason is not wanting to send this additional entity over the wire (kafka) since in some cases it can be really big
883
+ * Developers that must reflect the old entity will have to implement their own domain event sender mechanism which will follow the DomainEvent proto message.
884
+ * @internal
885
+ * @deprecated
886
+ */
887
+ previousEntityAsJson?: string | null;
888
+ /**
889
+ * Map of fully qualified field paths to their previous values for fields that changed.
890
+ * For more details please see [AIP](https://dev.wix.com/docs/rnd-general/articles/p13n-guidelines-aips/guidance-aips/design-patterns/7016-events#modified-fields-format)
891
+ * @internal
892
+ */
893
+ modifiedFields?: Record<string, any>;
894
+ /**
895
+ * Optional domain-specific metadata defined by the API owner, encoded as JSON.
896
+ * @internal
897
+ */
898
+ additionalMetadataAsJson?: string | null;
787
899
  }
788
900
  interface EntityDeletedEvent {
901
+ /**
902
+ * Indicates if the entity is sent to trash-bin. only available when trash-bin is enabled
903
+ * @internal
904
+ */
905
+ movedToTrash?: boolean | null;
789
906
  /** Entity that was deleted. */
790
907
  deletedEntityAsJson?: string | null;
908
+ /**
909
+ * Optional domain-specific metadata defined by the API owner, encoded as JSON.
910
+ * @internal
911
+ */
912
+ additionalMetadataAsJson?: string | null;
791
913
  }
792
914
  interface ActionEvent {
793
915
  bodyAsJson?: string;
@@ -936,4 +1058,4 @@ declare function addPoolDefinitionToProgramDefinition(): __PublicMethodMetaInfo<
936
1058
  declare function removePoolDefinitionFromProgramDefinition(): __PublicMethodMetaInfo<'POST', {}, RemovePoolDefinitionFromProgramDefinitionRequest$1, RemovePoolDefinitionFromProgramDefinitionRequest, RemovePoolDefinitionFromProgramDefinitionResponse$1, RemovePoolDefinitionFromProgramDefinitionResponse>;
937
1059
  declare function findPoolDefinitionsByProgramDefinition(): __PublicMethodMetaInfo<'POST', {}, FindPoolDefinitionsByProgramDefinitionRequest$1, FindPoolDefinitionsByProgramDefinitionRequest, FindPoolDefinitionsByProgramDefinitionResponse$1, FindPoolDefinitionsByProgramDefinitionResponse>;
938
1060
 
939
- export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, type AddPoolDefinitionToProgramDefinitionRequest as AddPoolDefinitionToProgramDefinitionRequestOriginal, type AddPoolDefinitionToProgramDefinitionResponse as AddPoolDefinitionToProgramDefinitionResponseOriginal, type AddPoolDefinitionToProgramDefinitionValidationErrors as AddPoolDefinitionToProgramDefinitionValidationErrorsOriginal, type ApplicationError as ApplicationErrorOriginal, type Benefit as BenefitOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkCreatePoolDefinitionsRequest as BulkCreatePoolDefinitionsRequestOriginal, type BulkCreatePoolDefinitionsResponse as BulkCreatePoolDefinitionsResponseOriginal, type BulkDeletePoolDefinitionsRequest as BulkDeletePoolDefinitionsRequestOriginal, type BulkDeletePoolDefinitionsResponse as BulkDeletePoolDefinitionsResponseOriginal, type BulkPoolDefinitionResult as BulkPoolDefinitionResultOriginal, type BulkUpdatePoolDefinitionsRequest as BulkUpdatePoolDefinitionsRequestOriginal, type BulkUpdatePoolDefinitionsResponse as BulkUpdatePoolDefinitionsResponseOriginal, type BulkUpdatePoolDefinitionsValidationErrors as BulkUpdatePoolDefinitionsValidationErrorsOriginal, Cascade as CascadeOriginal, type CascadeWithLiterals as CascadeWithLiteralsOriginal, type CreatePoolDefinitionRequest as CreatePoolDefinitionRequestOriginal, type CreatePoolDefinitionResponse as CreatePoolDefinitionResponseOriginal, type CreditConfiguration as CreditConfigurationOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type CustomPolicy as CustomPolicyOriginal, type DeletePoolDefinitionRequest as DeletePoolDefinitionRequestOriginal, type DeletePoolDefinitionResponse as DeletePoolDefinitionResponseOriginal, type Details as DetailsOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type ExtendedFields as ExtendedFieldsOriginal, type FindPoolDefinitionsByProgramDefinitionRequest as FindPoolDefinitionsByProgramDefinitionRequestOriginal, type FindPoolDefinitionsByProgramDefinitionResponse as FindPoolDefinitionsByProgramDefinitionResponseOriginal, type FixedIntervalPolicy as FixedIntervalPolicyOriginal, type GetPoolDefinitionRequest as GetPoolDefinitionRequestOriginal, type GetPoolDefinitionResponse as GetPoolDefinitionResponseOriginal, type HealPoolDefinitionRequest as HealPoolDefinitionRequestOriginal, type HealPoolDefinitionResponse as HealPoolDefinitionResponseOriginal, type HealPoolDefinitionsTenantRequest as HealPoolDefinitionsTenantRequestOriginal, type HealPoolDefinitionsTenantResponse as HealPoolDefinitionsTenantResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ItemMetadata as ItemMetadataOriginal, type MaskedPoolDefinition as MaskedPoolDefinitionOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type PolicyExpressionAnd as PolicyExpressionAndOriginal, type PolicyExpressionExpressionOneOf as PolicyExpressionExpressionOneOfOriginal, type PolicyExpressionNot as PolicyExpressionNotOriginal, type PolicyExpressionOr as PolicyExpressionOrOriginal, type PolicyExpression as PolicyExpressionOriginal, PolicyExpressionType as PolicyExpressionTypeOriginal, type PolicyExpressionTypeWithLiterals as PolicyExpressionTypeWithLiteralsOriginal, type Policy as PolicyOriginal, type PolicyPolicyOneOf as PolicyPolicyOneOfOriginal, type PoolDefinitionAddedToProgramDefinition as PoolDefinitionAddedToProgramDefinitionOriginal, type PoolDefinitionDeletedProxySupport as PoolDefinitionDeletedProxySupportOriginal, type PoolDefinition as PoolDefinitionOriginal, type PoolDefinitionRemovedFromProgramDefinition as PoolDefinitionRemovedFromProgramDefinitionOriginal, type PoolDefinitionTranslated as PoolDefinitionTranslatedOriginal, type PoolDefinitionTranslationDeleted as PoolDefinitionTranslationDeletedOriginal, type PoolDefinitionUpdatedProxySupport as PoolDefinitionUpdatedProxySupportOriginal, type ProgramDefinitionInfo as ProgramDefinitionInfoOriginal, type QueryPoolDefinitionsRequest as QueryPoolDefinitionsRequestOriginal, type QueryPoolDefinitionsResponse as QueryPoolDefinitionsResponseOriginal, type RateLimitedPolicy as RateLimitedPolicyOriginal, type RemovePoolDefinitionFromProgramDefinitionRequest as RemovePoolDefinitionFromProgramDefinitionRequestOriginal, type RemovePoolDefinitionFromProgramDefinitionResponse as RemovePoolDefinitionFromProgramDefinitionResponseOriginal, type RemovePoolDefinitionFromProgramDefinitionValidationErrors as RemovePoolDefinitionFromProgramDefinitionValidationErrorsOriginal, type RestoreInfo as RestoreInfoOriginal, type RolloverConfiguration as RolloverConfigurationOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, TimePeriod as TimePeriodOriginal, type TimePeriodWithLiterals as TimePeriodWithLiteralsOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UpdatePoolDefinitionRequest as UpdatePoolDefinitionRequestOriginal, type UpdatePoolDefinitionResponse as UpdatePoolDefinitionResponseOriginal, type UpdatePoolDefinitionValidationErrors as UpdatePoolDefinitionValidationErrorsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, WeekDay as WeekDayOriginal, type WeekDayWithLiterals as WeekDayWithLiteralsOriginal, type __PublicMethodMetaInfo, addPoolDefinitionToProgramDefinition, bulkCreatePoolDefinitions, bulkDeletePoolDefinitions, bulkUpdatePoolDefinitions, createPoolDefinition, deletePoolDefinition, findPoolDefinitionsByProgramDefinition, getPoolDefinition, queryPoolDefinitions, removePoolDefinitionFromProgramDefinition, updatePoolDefinition };
1061
+ export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, type AddPoolDefinitionToProgramDefinitionRequest as AddPoolDefinitionToProgramDefinitionRequestOriginal, type AddPoolDefinitionToProgramDefinitionResponse as AddPoolDefinitionToProgramDefinitionResponseOriginal, type AddPoolDefinitionToProgramDefinitionValidationErrors as AddPoolDefinitionToProgramDefinitionValidationErrorsOriginal, type ApplicationError as ApplicationErrorOriginal, type Benefit as BenefitOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkCreatePoolDefinitionsRequest as BulkCreatePoolDefinitionsRequestOriginal, type BulkCreatePoolDefinitionsResponse as BulkCreatePoolDefinitionsResponseOriginal, type BulkDeletePoolDefinitionsRequest as BulkDeletePoolDefinitionsRequestOriginal, type BulkDeletePoolDefinitionsResponse as BulkDeletePoolDefinitionsResponseOriginal, type BulkPoolDefinitionResult as BulkPoolDefinitionResultOriginal, type BulkUpdatePoolDefinitionsRequest as BulkUpdatePoolDefinitionsRequestOriginal, type BulkUpdatePoolDefinitionsResponse as BulkUpdatePoolDefinitionsResponseOriginal, type BulkUpdatePoolDefinitionsValidationErrors as BulkUpdatePoolDefinitionsValidationErrorsOriginal, Cascade as CascadeOriginal, type CascadeWithLiterals as CascadeWithLiteralsOriginal, type CreatePoolDefinitionRequest as CreatePoolDefinitionRequestOriginal, type CreatePoolDefinitionResponse as CreatePoolDefinitionResponseOriginal, type CreditConfiguration as CreditConfigurationOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type CustomPolicy as CustomPolicyOriginal, type DeletePoolDefinitionRequest as DeletePoolDefinitionRequestOriginal, type DeletePoolDefinitionResponse as DeletePoolDefinitionResponseOriginal, type Details as DetailsOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type ExtendedFields as ExtendedFieldsOriginal, type FindPoolDefinitionsByProgramDefinitionRequest as FindPoolDefinitionsByProgramDefinitionRequestOriginal, type FindPoolDefinitionsByProgramDefinitionResponse as FindPoolDefinitionsByProgramDefinitionResponseOriginal, type FixedIntervalPolicy as FixedIntervalPolicyOriginal, type GetPoolDefinitionRequest as GetPoolDefinitionRequestOriginal, type GetPoolDefinitionResponse as GetPoolDefinitionResponseOriginal, type HealPoolDefinitionRequest as HealPoolDefinitionRequestOriginal, type HealPoolDefinitionResponse as HealPoolDefinitionResponseOriginal, type HealPoolDefinitionTenantRequest as HealPoolDefinitionTenantRequestOriginal, type HealPoolDefinitionTenantResponse as HealPoolDefinitionTenantResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ItemMetadata as ItemMetadataOriginal, type MaskedPoolDefinition as MaskedPoolDefinitionOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type PolicyExpressionAnd as PolicyExpressionAndOriginal, type PolicyExpressionExpressionOneOf as PolicyExpressionExpressionOneOfOriginal, type PolicyExpressionNot as PolicyExpressionNotOriginal, type PolicyExpressionOr as PolicyExpressionOrOriginal, type PolicyExpression as PolicyExpressionOriginal, PolicyExpressionType as PolicyExpressionTypeOriginal, type PolicyExpressionTypeWithLiterals as PolicyExpressionTypeWithLiteralsOriginal, type Policy as PolicyOriginal, type PolicyPolicyOneOf as PolicyPolicyOneOfOriginal, type PoolDefinitionAddedToProgramDefinition as PoolDefinitionAddedToProgramDefinitionOriginal, type PoolDefinitionDeletedProxySupport as PoolDefinitionDeletedProxySupportOriginal, type PoolDefinition as PoolDefinitionOriginal, type PoolDefinitionRemovedFromProgramDefinition as PoolDefinitionRemovedFromProgramDefinitionOriginal, type PoolDefinitionTranslated as PoolDefinitionTranslatedOriginal, type PoolDefinitionTranslationDeleted as PoolDefinitionTranslationDeletedOriginal, type PoolDefinitionUpdatedProxySupport as PoolDefinitionUpdatedProxySupportOriginal, type ProgramDefinitionInfo as ProgramDefinitionInfoOriginal, type QueryPoolDefinitionsRequest as QueryPoolDefinitionsRequestOriginal, type QueryPoolDefinitionsResponse as QueryPoolDefinitionsResponseOriginal, type RateLimitedPolicy as RateLimitedPolicyOriginal, type RemovePoolDefinitionFromProgramDefinitionRequest as RemovePoolDefinitionFromProgramDefinitionRequestOriginal, type RemovePoolDefinitionFromProgramDefinitionResponse as RemovePoolDefinitionFromProgramDefinitionResponseOriginal, type RemovePoolDefinitionFromProgramDefinitionValidationErrors as RemovePoolDefinitionFromProgramDefinitionValidationErrorsOriginal, type RestoreInfo as RestoreInfoOriginal, type RolloverConfiguration as RolloverConfigurationOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, TimePeriod as TimePeriodOriginal, type TimePeriodWithLiterals as TimePeriodWithLiteralsOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UpdatePoolDefinitionRequest as UpdatePoolDefinitionRequestOriginal, type UpdatePoolDefinitionResponse as UpdatePoolDefinitionResponseOriginal, type UpdatePoolDefinitionValidationErrors as UpdatePoolDefinitionValidationErrorsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, WeekDay as WeekDayOriginal, type WeekDayWithLiterals as WeekDayWithLiteralsOriginal, type __PublicMethodMetaInfo, addPoolDefinitionToProgramDefinition, bulkCreatePoolDefinitions, bulkDeletePoolDefinitions, bulkUpdatePoolDefinitions, createPoolDefinition, deletePoolDefinition, findPoolDefinitionsByProgramDefinition, getPoolDefinition, queryPoolDefinitions, removePoolDefinitionFromProgramDefinition, updatePoolDefinition };