• Parameters

    • pushObject: {
          propertyName: string;
          value: any;
      }

      The original pushObject to be used.

      • propertyName: string
      • value: any
    • context: HookContext

    Returns Promise<{
        propertyName: string;
        value: any;
    }> | {
        propertyName: string;
        value: any;
    }

    The pushObject to be used instead of the original pushObject specified by the caller. Returning a rejected promise will block the operation and will return a rejected promise to the caller as well as trigger the onFailure() hook.

    A hook that is triggered before push() operation.